diff --git a/packages/react-native-editor/.circleci/config.yml b/packages/react-native-editor/.circleci/config.yml new file mode 100644 index 00000000000000..c62fae508113aa --- /dev/null +++ b/packages/react-native-editor/.circleci/config.yml @@ -0,0 +1,177 @@ +version: 2.1 + +commands: + yarn-install: + steps: + - restore_cache: + name: Restore Yarn Cache + keys: + - yarn-i18n-v4-{{ .Environment.CIRCLE_JOB }}-{{ checksum "yarn.lock" }} + - run: + name: Yarn Install + command: yarn install --frozen-lockfile --prefer-offline + - save_cache: + name: Save Yarn Cache + key: yarn-i18n-v4-{{ .Environment.CIRCLE_JOB }}-{{ checksum "yarn.lock" }} + paths: + - node_modules + - i18n-cache/data + checkout-gutenberg: + steps: + - run: + name: Checkout Gutenberg + command: git submodule update --init --recursive + add-jest-reporter-dir: + steps: + - run: + name: Create reports directory + command: mkdir reports && mkdir reports/test-results + +jobs: + checks: + parameters: + platform: + type: string + default: "" + check-tests: + type: boolean + default: false + check-correctness: + type: boolean + default: false + docker: + - image: circleci/node:8 + steps: + - checkout + - checkout-gutenberg + - yarn-install + - add-jest-reporter-dir + - run: + name: Set Environment Variables + command: | + echo 'export CHECK_CORRECTNESS=<>' >> $BASH_ENV + echo 'export CHECK_TESTS=<>' >> $BASH_ENV + echo 'export TEST_RN_PLATFORM=<>' >> $BASH_ENV + - run: + name: Run Checks + command: bin/ci-checks-js.sh + environment: + JEST_JUNIT_OUTPUT: "reports/test-results/android-test-results.xml" + - store_test_results: + path: ./reports/test-results + android-device-checks: + docker: + - image: circleci/android:api-29-node + steps: + - checkout + - run: + name: Checkout Gutenberg + command: git submodule update --init --recursive + - yarn-install + - add-jest-reporter-dir + - run: + name: Set Environment Variables + command: | + echo 'export TEST_RN_PLATFORM=android' >> $BASH_ENV + echo 'export TEST_ENV=sauce' >> $BASH_ENV + - run: + name: Bundle Android and Generate debug .apk file for testing + command: yarn test:e2e:build-app:android + - run: + name: Upload apk to sauce labs + command: | + source bin/sauce-pre-upload.sh + curl -u "$SAUCE_USERNAME:$SAUCE_ACCESS_KEY" -X POST -H "Content-Type: application/octet-stream" https://saucelabs.com/rest/v1/storage/automattic/Gutenberg-$SAUCE_FILENAME.apk?overwrite=true --data-binary @./android/app/build/outputs/apk/debug/app-debug.apk + - run: + name: Run Device Tests + command: yarn device-tests + environment: + JEST_JUNIT_OUTPUT: "reports/test-results/android-test-results.xml" + - store_test_results: + path: ./reports/test-results + ios-device-checks: + macos: + xcode: "11.2.1" + steps: + - checkout + - checkout-gutenberg + - yarn-install + - add-jest-reporter-dir + - run: + name: Set Environment Variables + command: | + echo 'export TEST_RN_PLATFORM=ios' >> $BASH_ENV + echo 'export TEST_ENV=sauce' >> $BASH_ENV + - run: + name: Prepare build cache key + command: find yarn.lock ios react-native-aztec/ios react-native-gutenberg-bridge/ios -type f -print0 | sort -z | xargs -0 shasum | tee ios-checksums.txt + - restore_cache: + name: Restore Build Cache + keys: + - ios-build-cache-{{ checksum "ios-checksums.txt" }} + - restore_cache: + name: Restore Dependencies Cache + keys: + - dependencies-v2-{{ checksum "react-native-aztec/ios/Cartfile.resolved" }}-{{ + checksum "yarn.lock" }} + - dependencies-v2-{{ checksum "react-native-aztec/ios/Cartfile.resolved" }} + - dependencies-v2- + - run: + name: Yarn preios (if needed) + command: test -e ios/build/gutenberg/Build/Products/Release-iphonesimulator/gutenberg.app || yarn preios + - save_cache: + name: Save Dependencies Cache + key: dependencies-v2-{{ checksum "react-native-aztec/ios/Cartfile.resolved" }}-{{ + checksum "yarn.lock" }} + paths: + - react-native-aztec/ios/Carthage + - ~/.rncache + - run: + name: Build (if needed) + command: test -e ios/build/gutenberg/Build/Products/Release-iphonesimulator/gutenberg.app || yarn react-native run-ios --configuration Release --no-packager + - run: + name: Bundle iOS + command: yarn test:e2e:bundle:ios + - run: + name: Generate .app file for testing + command: WORK_DIR=$(pwd) && cd ./ios/build/gutenberg/Build/Products/Release-iphonesimulator && zip -r $WORK_DIR/ios/Gutenberg.app.zip gutenberg.app + - run: + name: Upload .app to sauce labs + command: | + source bin/sauce-pre-upload.sh + curl -u "$SAUCE_USERNAME:$SAUCE_ACCESS_KEY" -X POST -H "Content-Type: application/octet-stream" https://saucelabs.com/rest/v1/storage/automattic/Gutenberg-$SAUCE_FILENAME.app.zip?overwrite=true --data-binary @./ios/Gutenberg.app.zip + - run: + name: Run Device Tests + command: | + yarn device-tests + environment: + JEST_JUNIT_OUTPUT: "reports/test-results/ios-test-results.xml" + - store_test_results: + path: ./reports/test-results + - run: + name: Prepare build cache + command: rm ios/build/gutenberg/Build/Products/Release-iphonesimulator/gutenberg.app/main.jsbundle + - save_cache: + name: Save Build Cache + key: ios-build-cache-{{ checksum "ios-checksums.txt" }} + paths: + - ios/build/gutenberg/Build/Products/Release-iphonesimulator/gutenberg.app + +workflows: + gutenberg-mobile: + jobs: + - checks: + name: Check Correctness + check-correctness: true + - checks: + name: Test iOS + platform: ios + check-tests: true + - checks: + name: Test Android + platform: android + check-tests: true + - ios-device-checks: + name: Test iOS on Device + - android-device-checks: + name: Test Android on Device diff --git a/packages/react-native-editor/.eslintignore b/packages/react-native-editor/.eslintignore new file mode 100644 index 00000000000000..7b03f0840bfc52 --- /dev/null +++ b/packages/react-native-editor/.eslintignore @@ -0,0 +1,7 @@ +; ignore the submodules +gutenberg +symlinked-packages +symlinked-packages-in-parent +react-native-aztec +bundle +react-native-aztec-old-submodule diff --git a/packages/react-native-editor/.eslintrc.js b/packages/react-native-editor/.eslintrc.js new file mode 100644 index 00000000000000..05d6c8398516dc --- /dev/null +++ b/packages/react-native-editor/.eslintrc.js @@ -0,0 +1,74 @@ +/** + * External dependencies + */ +const { map } = require( 'lodash' ); + +module.exports = { + parser: "babel-eslint", + env: { + browser: true, + "jest/globals": true + }, + globals: { + __DEV__: true + }, + plugins: [ + "react", + "react-native", + "jest", + "flowtype" + ], + extends: [ + "plugin:@wordpress/eslint-plugin/recommended", + "plugin:flowtype/recommended", + ], + settings: { + flowtype: { + onlyFilesWithFlowAnnotation: true, + }, + react: { + pragma: "React", + version: "16.8.3", + flowVersion: "0.92.0", + }, + }, + rules: { + 'no-restricted-syntax': [ + 'error', + // NOTE: We can't include the forward slash in our regex or + // we'll get a `SyntaxError` (Invalid regular expression: \ at end of pattern) + // here. That's why we use \\u002F in the regexes below. + { + selector: 'ImportDeclaration[source.value=/^@wordpress\\u002F.+\\u002F/]', + message: 'Path access on WordPress dependencies is not allowed.', + }, + { + selector: 'CallExpression[callee.name=/^(__|_x|_n|_nx)$/] Literal[value=/\\.{3}/]', + message: 'Use ellipsis character (…) in place of three dots', + }, + { + selector: 'ImportDeclaration[source.value="lodash"] Identifier.imported[name="memoize"]', + message: 'Use memize instead of Lodash’s memoize', + }, + { + selector: 'CallExpression[callee.object.name="page"][callee.property.name="waitFor"]', + message: 'Prefer page.waitForSelector instead.', + }, + { + selector: 'JSXAttribute[name.name="id"][value.type="Literal"]', + message: 'Do not use string literals for IDs; use withInstanceId instead.', + }, + { + // Discourage the usage of `Math.random()` as it's a code smell + // for UUID generation, for which we already have a higher-order + // component: `withInstanceId`. + selector: 'CallExpression[callee.object.name="Math"][callee.property.name="random"]', + message: 'Do not use Math.random() to generate unique IDs; use withInstanceId instead. (If you’re not generating unique IDs: ignore this message.)', + }, + { + selector: 'CallExpression[callee.name="withDispatch"] > :function > BlockStatement > :not(VariableDeclaration,ReturnStatement)', + message: 'withDispatch must return an object with consistent keys. Avoid performing logic in `mapDispatchToProps`.', + }, + ], + }, +} diff --git a/packages/react-native-editor/.flowconfig b/packages/react-native-editor/.flowconfig new file mode 100644 index 00000000000000..722fb3f28dd9ab --- /dev/null +++ b/packages/react-native-editor/.flowconfig @@ -0,0 +1,115 @@ +[ignore] +; We fork some components by platform +.*/*[.]android.js + +; Ignore templates for 'react-native init' +/node_modules/react-native/local-cli/templates/.* + +; Ignore RN jest +/node_modules/react-native/jest/.* + +; Ignore RNTester +/node_modules/react-native/RNTester/.* + +; Ignore the website subdir +/node_modules/react-native/website/.* + +; Ignore the Dangerfile +/node_modules/react-native/danger/dangerfile.js + +; Ignore Fbemitter +/node_modules/fbemitter/.* + +; Ignore "BUCK" generated dirs +/node_modules/react-native/\.buckd/ + +; Ignore unexpected extra "@providesModule" +.*/node_modules/.*/node_modules/fbjs/.* + +; Ignore polyfills +/node_modules/react-native/Libraries/polyfills/.* + +; Ignore various node_modules +/node_modules/react-native-gesture-handler/.* +/node_modules/expo/.* +/node_modules/react-navigation/.* +/node_modules/xdl/.* +/node_modules/reqwest/.* +/node_modules/metro-bundler/.* +/node_modules/fbjs/.* +/node_modules/graphql/.* +/node_modules/prettier/.* +/node_modules/jsx-to-string/.* +/node_modules/jest-enzyme/.* +/node_modules/enzyme-matchers/.* + +; Ignore react-native-recyclerview-list example app +/node_modules/react-native-recyclerview-list/example + +; Ignore immutable-js. See https://github.com/facebook/immutable-js/issues/1308 +/node_modules/immutable/.* + +; Gutenberg tools +/gutenberg/node_modules/findup/.* +/gutenberg/node_modules/cypress/.* +/gutenberg/node_modules/config-chain/.* +/gutenberg/node_modules/editions/es2015/.* +/gutenberg/node_modules/@parcel/.* + +; Mirror some ignores from Gutenberg tools +/node_modules/config-chain/.* + +; Hack to make Flow works on OS X with a RN project +/node_modules/metro/.* +/node_modules/react-native/.* + +; Ignore the node_modules folders in GB packages +/gutenberg/packages/element/node_modules/.* + +[include] + +[libs] +node_modules/react-native/Libraries/react-native/react-native-interface.js +node_modules/react-native/flow/ +node_modules/expo/flow/ +libdefs.js + +[options] +emoji=true + +module.system=haste +module.system.node.resolve_dirname=node_modules +module.system.node.resolve_dirname=symlinked-packages + +module.file_ext=.js +module.file_ext=.jsx +module.file_ext=.json +module.file_ext=.ios.js +module.file_ext=.scss + +munge_underscores=true + +module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' + +; mock/ignore style files +module.name_mapper='.*\(.scss\)' -> 'empty/object' + +server.max_workers=4 + +suppress_type=$FlowIssue +suppress_type=$FlowFixMe +suppress_type=$FlowFixMeProps +suppress_type=$FlowFixMeState +suppress_type=$FixMe + +suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\) +suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\)?:? #[0-9]+ +suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy +suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError + +[untyped] +/node_modules/react-native-keyboard-aware-scroll-view/.* +/node_modules/react-native-safe-area/.* + +[version] +^0.92.0 diff --git a/packages/react-native-editor/.gitattributes b/packages/react-native-editor/.gitattributes new file mode 100644 index 00000000000000..49ff260043bc41 --- /dev/null +++ b/packages/react-native-editor/.gitattributes @@ -0,0 +1 @@ +RELEASE-NOTES.txt merge=union diff --git a/packages/react-native-editor/.github/ISSUE_TEMPLATE/bug_report.md b/packages/react-native-editor/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000000000..65bba1987de683 --- /dev/null +++ b/packages/react-native-editor/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6, Pixel 4] + - OS: [e.g. iOS 8.1, Android X] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/packages/react-native-editor/.github/ISSUE_TEMPLATE/feature_request.md b/packages/react-native-editor/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000000000..bbcbbe7d61558a --- /dev/null +++ b/packages/react-native-editor/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/packages/react-native-editor/.github/PULL_REQUEST_TEMPLATE.md b/packages/react-native-editor/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000000000..105a199b831cd2 --- /dev/null +++ b/packages/react-native-editor/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ +Fixes # + +To test: + +PR submission checklist: + +- [ ] I have considered adding unit tests where possible. +- [ ] I have considered if this change warrants user-facing release notes and have added them to `RELEASE-NOTES.txt` if necessary. diff --git a/packages/react-native-editor/.gitignore b/packages/react-native-editor/.gitignore new file mode 100644 index 00000000000000..3002525057798f --- /dev/null +++ b/packages/react-native-editor/.gitignore @@ -0,0 +1,109 @@ +# See https://help.github.com/ignore-files/ for more about ignoring files. + +# expo +.expo/ + +# dependencies +/node_modules + +# misc +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# OS X +.DS_Store + +# Android builds +*.apk +*.ap_ +.gradle/ +android/app/src/main/assets/ + +# iOS builds +*.app.zip + +# files for the dex VM +*.dex + +# Java class files +*.class + +# generated files +gen/ +build/ +build.log + +# Local configuration file (sdk path, etc) +local.properties + +# XCode +build/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +*.moved-aside +DerivedData +*.xcuserstatee + +# Android/IntelliJ +# +build/ +.idea +.gradle +local.properties +*.iml + +# node.js +# +node_modules/ +npm-debug.log +yarn-error.log + +# BUCK +buck-out/ +\.buckd/ +*.keystore + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://docs.fastlane.tools/best-practices/source-control/ + +*/fastlane/report.xml +*/fastlane/Preview.html +*/fastlane/screenshots + +# Bundle artifact +*.jsbundle + +# VSCode local config dir +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +*.pot + +# e2e output log +appium-out.log + +bin/wp-cli.phar + +# Report generated from jest-junit +/junit.xml diff --git a/packages/react-native-editor/.gitmodules b/packages/react-native-editor/.gitmodules new file mode 100644 index 00000000000000..062b5e5a052ec4 --- /dev/null +++ b/packages/react-native-editor/.gitmodules @@ -0,0 +1,6 @@ +[submodule "gutenberg"] + path = gutenberg + url = ../../WordPress/gutenberg.git +[submodule "react-native-aztec"] + path = react-native-aztec-old-submodule + url = ../react-native-aztec.git diff --git a/packages/react-native-editor/.prettierignore b/packages/react-native-editor/.prettierignore new file mode 100644 index 00000000000000..6247acc2815865 --- /dev/null +++ b/packages/react-native-editor/.prettierignore @@ -0,0 +1 @@ +**/gutenberg/ \ No newline at end of file diff --git a/packages/react-native-editor/.vscode/extensions.json b/packages/react-native-editor/.vscode/extensions.json new file mode 100644 index 00000000000000..60a2e524c9eb1a --- /dev/null +++ b/packages/react-native-editor/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "gcazaciuc.vscode-flow-ide", + "msjsdiag.vscode-react-native" + ] +} diff --git a/packages/react-native-editor/.vscode/launch.json b/packages/react-native-editor/.vscode/launch.json new file mode 100644 index 00000000000000..27c9545b33692c --- /dev/null +++ b/packages/react-native-editor/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Attach to packager", + "cwd": "${workspaceFolder}", + "type": "reactnative", + "request": "attach" + }, + ] +} \ No newline at end of file diff --git a/packages/react-native-editor/.vscode/settings.json b/packages/react-native-editor/.vscode/settings.json new file mode 100644 index 00000000000000..9a0d2c44f8850e --- /dev/null +++ b/packages/react-native-editor/.vscode/settings.json @@ -0,0 +1,9 @@ +{ + "javascript.validate.enable": false, + + // Enable/disable default JavaScript formatter (For Prettier) + "javascript.format.enable": false, + + // Use 'prettier-eslint' instead of 'prettier'. Other settings will only be fallbacks in case they could not be inferred from eslint rules. + "prettier.eslintIntegration": true, +} \ No newline at end of file diff --git a/packages/react-native-editor/.watchmanconfig b/packages/react-native-editor/.watchmanconfig new file mode 100644 index 00000000000000..0967ef424bce67 --- /dev/null +++ b/packages/react-native-editor/.watchmanconfig @@ -0,0 +1 @@ +{} diff --git a/packages/react-native-editor/DependencyGraph.js.patched b/packages/react-native-editor/DependencyGraph.js.patched new file mode 100644 index 00000000000000..c14fa779d0db9a --- /dev/null +++ b/packages/react-native-editor/DependencyGraph.js.patched @@ -0,0 +1,297 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + * + * + * @format + */ +"use strict"; + +function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { + try { + var info = gen[key](arg); + var value = info.value; + } catch (error) { + reject(error); + return; + } + if (info.done) { + resolve(value); + } else { + Promise.resolve(value).then(_next, _throw); + } +} + +function _asyncToGenerator(fn) { + return function() { + var self = this, + args = arguments; + return new Promise(function(resolve, reject) { + var gen = fn.apply(self, args); + function _next(value) { + asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); + } + function _throw(err) { + asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); + } + _next(undefined); + }); + }; +} + +function _defineProperty(obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + return obj; +} + +const AssetResolutionCache = require("./AssetResolutionCache"); + +const DependencyGraphHelpers = require("./DependencyGraph/DependencyGraphHelpers"); + +const JestHasteMap = require("jest-haste-map"); + +const Module = require("./Module"); + +const ModuleCache = require("./ModuleCache"); + +const ResolutionRequest = require("./DependencyGraph/ResolutionRequest"); + +const fs = require("fs"); + +const path = require("path"); + +const _require = require("./DependencyGraph/ModuleResolution"), + ModuleResolver = _require.ModuleResolver; + +const _require2 = require("events"), + EventEmitter = _require2.EventEmitter; + +const _require3 = require("metro-core"), + _require3$Logger = _require3.Logger, + createActionStartEntry = _require3$Logger.createActionStartEntry, + createActionEndEntry = _require3$Logger.createActionEndEntry, + log = _require3$Logger.log; + +const JEST_HASTE_MAP_CACHE_BREAKER = 4; + +class DependencyGraph extends EventEmitter { + constructor(_ref) { + let config = _ref.config, + haste = _ref.haste, + initialHasteFS = _ref.initialHasteFS, + initialModuleMap = _ref.initialModuleMap; + super(); + + _defineProperty(this, "_doesFileExist", filePath => { + return this._hasteFS.exists(filePath); + }); + + this._config = config; + this._assetResolutionCache = new AssetResolutionCache({ + assetExtensions: new Set(config.resolver.assetExts), + getDirFiles: dirPath => fs.readdirSync(dirPath), + platforms: new Set(config.resolver.platforms) + }); + this._haste = haste; + this._hasteFS = initialHasteFS; + this._moduleMap = initialModuleMap; + this._helpers = new DependencyGraphHelpers({ + assetExts: config.resolver.assetExts, + providesModuleNodeModules: config.resolver.providesModuleNodeModules + }); + + this._haste.on("change", this._onHasteChange.bind(this)); + + this._moduleCache = this._createModuleCache(); + + this._createModuleResolver(); + } + + static _createHaste(config) { + return new JestHasteMap({ + computeDependencies: false, + computeSha1: true, + extensions: config.resolver.sourceExts.concat(config.resolver.assetExts), + forceNodeFilesystemAPI: !config.resolver.useWatchman, + hasteImplModulePath: config.resolver.hasteImplModulePath, + ignorePattern: config.resolver.blacklistRE || / ^/, + mapper: config.resolver.virtualMapper, + maxWorkers: config.maxWorkers, + mocksPattern: "", + name: "metro-" + JEST_HASTE_MAP_CACHE_BREAKER, + platforms: config.resolver.platforms, + providesModuleNodeModules: config.resolver.providesModuleNodeModules, + retainAllFiles: true, + resetCache: config.resetCache, + rootDir: config.projectRoot, + roots: config.watchFolders, + throwOnModuleCollision: true, + useWatchman: config.resolver.useWatchman, + watch: false + }); + } + + static load(config) { + return _asyncToGenerator(function*() { + const initializingMetroLogEntry = log( + createActionStartEntry("Initializing Metro") + ); + config.reporter.update({ + type: "dep_graph_loading" + }); + + const haste = DependencyGraph._createHaste(config); + + const _ref2 = yield haste.build(), + hasteFS = _ref2.hasteFS, + moduleMap = _ref2.moduleMap; + + log(createActionEndEntry(initializingMetroLogEntry)); + config.reporter.update({ + type: "dep_graph_loaded" + }); + return new DependencyGraph({ + haste, + initialHasteFS: hasteFS, + initialModuleMap: moduleMap, + config + }); + })(); + } + + _getClosestPackage(filePath) { + const parsedPath = path.parse(filePath); + const root = parsedPath.root; + let dir = parsedPath.dir; + + do { + const candidate = path.join(dir, "package.json"); + + if (this._hasteFS.exists(candidate)) { + return candidate; + } + + dir = path.dirname(dir); + } while (dir !== "." && dir !== root); + + return null; + } + + _onHasteChange(_ref3) { + let eventsQueue = _ref3.eventsQueue, + hasteFS = _ref3.hasteFS, + moduleMap = _ref3.moduleMap; + this._hasteFS = hasteFS; + + this._assetResolutionCache.clear(); + + this._moduleMap = moduleMap; + eventsQueue.forEach(_ref4 => { + let type = _ref4.type, + filePath = _ref4.filePath; + return this._moduleCache.processFileChange(type, filePath); + }); + + this._createModuleResolver(); + + this.emit("change"); + } + + _createModuleResolver() { + this._moduleResolver = new ModuleResolver({ + allowPnp: this._config.resolver.allowPnp, + dirExists: filePath => { + try { + return fs.lstatSync(filePath).isDirectory(); + } catch (e) {} + + return false; + }, + doesFileExist: this._doesFileExist, + extraNodeModules: this._config.resolver.extraNodeModules, + isAssetFile: filePath => this._helpers.isAssetFile(filePath), + mainFields: this._config.resolver.resolverMainFields, + moduleCache: this._moduleCache, + moduleMap: this._moduleMap, + preferNativePlatform: true, + resolveAsset: (dirPath, assetName, platform) => + this._assetResolutionCache.resolve(dirPath, assetName, platform), + resolveRequest: this._config.resolver.resolveRequest, + sourceExts: this._config.resolver.sourceExts + }); + } + + _createModuleCache() { + return new ModuleCache({ + getClosestPackage: this._getClosestPackage.bind(this) + }); + } + + getSha1(filename) { + // TODO If it looks like we're trying to get the sha1 from a file located + // within a Zip archive, then we instead compute the sha1 for what looks + // like the Zip archive itself. + const splitIndex = filename.indexOf(".zip/"); + const containerName = + splitIndex !== -1 ? filename.slice(0, splitIndex + 4) : filename; // TODO Calling realpath allows us to get a hash for a given path even when + // it's a symlink to a file, which prevents Metro from crashing in such a + // case. However, it doesn't allow Metro to track changes to the target file + // of the symlink. We should fix this by implementing a symlink map into + // Metro (or maybe by implementing those "extra transformation sources" we've + // been talking about for stuff like CSS or WASM). + + const resolvedPath = fs.realpathSync(containerName); + + const sha1 = this._hasteFS.getSha1(resolvedPath); + + if (!sha1) { + throw new ReferenceError( + `SHA-1 for file ${filename} (${resolvedPath}) is not computed` + ); + } + + return sha1; + } + + getWatcher() { + return this._haste; + } + + end() { + this._haste.end(); + } + + resolveDependency(from, to, platform) { + const req = new ResolutionRequest({ + moduleResolver: this._moduleResolver, + entryPath: from, + helpers: this._helpers, + platform: platform || null, + moduleCache: this._moduleCache + }); + return req.resolveDependency(this._moduleCache.getModule(from), to).path; + } + + getHasteName(filePath) { + const hasteName = this._hasteFS.getModuleName(filePath); + + if (hasteName) { + return hasteName; + } + + return path.relative(this._config.projectRoot, filePath); + } +} + +module.exports = DependencyGraph; diff --git a/packages/react-native-editor/Gutenberg.podspec b/packages/react-native-editor/Gutenberg.podspec new file mode 100644 index 00000000000000..bd6db8bbb9189a --- /dev/null +++ b/packages/react-native-editor/Gutenberg.podspec @@ -0,0 +1,26 @@ +package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) +# Use the same RN version that the JS tools use +react_native_version = package['dependencies']['react-native'] +# Extract the tagged version if package.json points to a tag +react_native_version = react_native_version.split("#v").last if react_native_version.include? "#v" + +Pod::Spec.new do |s| + s.name = 'Gutenberg' + s.version = package['version'] + s.summary = 'Printing since 1440' + s.homepage = 'https://github.com/wordpress-mobile/gutenberg-mobile' + s.license = package['license'] + s.authors = 'Automattic' + s.platform = :ios, '11.0' + s.source = { :git => 'https://github.com/wordpress-mobile/gutenberg-mobile.git' } + s.source_files = 'react-native-gutenberg-bridge/ios/*.{h,m,swift}' + s.requires_arc = true + s.preserve_paths = 'bundle/ios/*' + s.swift_version = '5.0' + + s.dependency 'React', react_native_version + s.dependency 'React-RCTImage', react_native_version + + s.dependency 'WordPress-Aztec-iOS' + s.dependency 'RNTAztecView' +end diff --git a/packages/react-native-editor/LICENSE b/packages/react-native-editor/LICENSE new file mode 100644 index 00000000000000..d159169d105089 --- /dev/null +++ b/packages/react-native-editor/LICENSE @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/packages/react-native-editor/README.md b/packages/react-native-editor/README.md new file mode 100644 index 00000000000000..762f601ac811f7 --- /dev/null +++ b/packages/react-native-editor/README.md @@ -0,0 +1,168 @@ +# Mobile Gutenberg + +This is the mobile version of [Gutenberg](https://github.com/WordPress/gutenberg), targeting Android and iOS. It's a React Native library bootstrapped by CRNA and now ejected. + +## Getting Started + +### Prerequisites + +For a developer experience closer to the one the project maintainers current have, make sure you have the following tools installed: + +* git +* [nvm](https://github.com/creationix/nvm) +* Node.js and npm (use nvm to install them) +* yarn (`npm install -g yarn`) +* [AndroidStudio](https://developer.android.com/studio/) to be able to compile the Android version of the app +* [Xcode](https://developer.apple.com/xcode/) to be able to compile the iOS app +* [Carthage](https://github.com/Carthage/Carthage#installing-carthage) needed for fetching the Aztec dependency. + + +Note that the OS platform used by the maintainers is macOS but the tools and setup should be usable in other platforms too. + +### Clone the project + +* Clone the project and submodules: +``` +git clone --recurse-submodules https://github.com/wordpress-mobile/gutenberg-mobile.git +``` + +* Or if you already have the project cloned, initialize and update the submodules: +``` +git submodule init +git submodule update +``` + +## Set up + +Before running the demo app, you need to download and install the project dependencies. This is done via the following command: + +``` +nvm install --latest-npm +yarn install +``` + +## Run + +``` +yarn start +``` + +Runs the packager (Metro) in development mode. The packager stays running to serve the app bundle to the clients that request it. + +With the packager running, open another terminal window and use the following command to compile and run the Android app: + +``` +yarn android +``` + +The app should now open in a connected device or a running emulator and fetch the JavaScript code from the running packager. + +To compile and run the iOS variant of the app using the _default_ simulator device, use: + +``` +yarn ios +``` + +which will attempt to open your app in the iOS Simulator if you're on a Mac and have it installed. + +### Running on Other iOS Device Simulators + +To compile and run the app using a different device simulator, use: + +``` +yarn ios --simulator="DEVICE_NAME" +``` + +For example, if you'd like to run in an iPhone Xs Max, try: + +``` +yarn ios --simulator="iPhone Xs Max" +``` + +To see a list of all of your available iOS devices, use `xcrun simctl list devices`. + +### When things seem crazy + +Some times, and especially when tweaking anything in the `package.json`, Babel configuration (`.babelrc`) or the Jest configuration (`jest.config.js`), your changes might seem to not take effect as expected. On those times, you might need to clean various caches before starting the packager. To do that, run the script: `yarn start:reset`. Other times, you might want to reinstall the NPM packages from scratch and the `yarn clean:install` script can be handy. + +## Developing with Visual Studio Code + +Although you're not required to use Visual Studio Code for developing gutenberg-mobile, it is the recommended IDE and we have some configuration for it. + +When you first open the project in Visual Studio, you will be prompted to install some recommended extensions. This will help with some things like type checking and debugging. + +![Prompt to install recommended extensions](images/recommended-extensions.png) + +One of the extensions we are using is the [React Native Tools](https://marketplace.visualstudio.com/items?itemName=vsmobile.vscode-react-native). This allows you to run the packager from VSCode or launch the application on iOS or Android. It also adds some debug configurations so you can set breakpoints and debug the application directly from VSCode. Take a look at the [extension documentation](https://marketplace.visualstudio.com/items?itemName=vsmobile.vscode-react-native) for more details. + +## Unit Tests + +Use the following command to run the test suite: + +``` +yarn test +``` + +It will run the [jest](https://github.com/facebook/jest) test runner on your tests. The tests are running on the desktop against Node.js. + +To run the tests with debugger support, start it with the following CLI command: + +``` +yarn test:debug +``` + +Then, open `chrome://inspect` in Chrome to attach the debugger (look into the "Remote Target" section). While testing/developing, feel free to springle `debugger` statements anywhere in the code that you'd like the debugger to break. + +## Writing and Running Unit Tests + +This project is set up to use [jest](https://facebook.github.io/jest/) for tests. You can configure whatever testing strategy you like, but jest works out of the box. Create test files in directories called `__tests__` or with the `.test.js` extension to have the files loaded by jest. See an example test [here](https://github.com/wordpress-mobile/gutenberg-mobile/blob/develop/src/app/App.test.js). The [jest documentation](https://facebook.github.io/jest/docs/en/getting-started.html) is also a wonderful resource, as is the [React Native testing tutorial](https://facebook.github.io/jest/docs/en/tutorial-react-native.html). + +## UI Tests + +This repository uses Appium to run UI tests. The tests live in `__device-tests__` and are written using Appium to run tests against simulators and real devices. To run these you'll need to check off a few things: + +* For now when running the tests you'll need to ensure the metro bundler is not running. +* [Appium cli](https://github.com/appium/appium/blob/master/docs/en/about-appium/getting-started.md) installed and available globally, I'd also recommend using [appium doctor](https://github.com/appium/appium-doctor) to ensure all of Appium's dependencies are good to go. You don't have to worry about starting the server yourself, the tests handle starting the server on port 4723, just be sure that the port is free or feel free to change the port number in the test file. +* For iOS a simulator should automatically launch but for Android you'll need to have an emulator *with at least platform version 8.0* fired up and running. + +After those are checked off to run the UI tests on iOS run + +`yarn test:e2e:ios:local` + +and for android run, + +`yarn test:e2e:android:local` + +Note, you might experience problems that seem to be related to the tests starting the Appium server, for example errors that say `Connection Refused`, `Connection Reset` or `The requested environment is not available`. Sorry about that this is still a WIP, you can manually start the Appium server via [appium desktop](https://github.com/appium/appium-desktop) or the cli, then change the port number in the tests while optionally commenting out related code in the `beforeAll` and `afterAll` block. + +For a more detailed outline of the UI tests and how to get started writing one please visit the [UI Test documentation](https://github.com/wordpress-mobile/gutenberg-mobile/blob/develop/__device-tests__/README.md) and our [contributing guide](https://github.com/wordpress-mobile/gutenberg-mobile/blob/develop/__device-tests__/CONTRIBUTING.md). + +## Static analysis and code style + +The project includes a linter (`eslint`) to perform codestyle and static analysis of the code. The configuration used is the same as [the one in the Gutenberg project](https://github.com/WordPress/gutenberg/blob/master/eslint/config.js). To perform the check, run: + +``` +yarn lint +``` + +To have the linter also _fix_ the violations run: `yarn lint:fix`. + +In parallel to `eslint` the project uses `Prettier` for codestyling. Run: + +``` +yarn prettier +``` +to enforce the style. This will modify the source files to make them conform to the rules. + +`Flow` is used as a static type checker for JavaScript code. Flow checks JavaScript code for errors through static type annotations. These types allow you to tell Flow how you want your code to work, and Flow will make sure it does work that way. To perform the check run: + +``` +yarn flow +``` + +You might want to use Visual Studio Code as an editor. The project includes the configuration needed to use the above codestyle and lint tools automatically. + +## License + +Gutenberg Mobile is an Open Source project covered by the [GNU General Public License version 2](LICENSE). + diff --git a/packages/react-native-editor/RELEASE-NOTES.txt b/packages/react-native-editor/RELEASE-NOTES.txt new file mode 100644 index 00000000000000..45937ac9041a91 --- /dev/null +++ b/packages/react-native-editor/RELEASE-NOTES.txt @@ -0,0 +1,102 @@ +1.20.0 +------ +* Fix bug where image placeholders would sometimes not be shown + +1.19.0 +------ +* Add support for changing Settings in List Block. +* [iOS] Fix crash dismissing bottom-sheet after device rotation. +* [Android] Add support for Preformatted block. +* New block: Gallery. You can now create image galleries using WordPress Media library. Upload feature is coming soon. +* Add support for Video block settings + +1.18.0 +------ +* [iOS] Added native fullscreen preview when clicking image from Image Block +* New block: Spacer + +1.17.0 +------ +* Include block title in Unsupported block's UI +* Show new-block-indicator when no blocks at all and when at the last block +* Use existing links in the clipboard to prefill url field when inserting new link. +* Media & Text block alignment options +* Add alignment controls for paragraph blocks +* [iOS] Fix issue where the keyboard would not capitalize sentences correctly on some cases. +* [iOS] Support for Pexels image library +* [Android] Added native fullscreen preview when clicking image from Image Block +* [iOS] Add support for Preformatted block. +* [Android] Fix issue when removing image/page break block crashes the app + +1.16.1 +------ +* [iOS] Fix tap on links bug that reappear on iOS 13.2 + +1.16.0 +------ +* [Android] Add support for pexels images +* Add left, center, and right image alignment controls +1.15.3 +------ +* [iOS] Fix a layout bug in RCTAztecView in iOS 13.2 + +1.15.2 +------ +* Fix issue when copy/paste photos from other apps, was not inserting an image on the post. +* Fix issue where the block inserter layout wasn't correct after device rotation. + +1.15.0 +------ +* Fix issue when multiple media selection adds only one image or video block on Android +* Fix issue when force Touch app shortcut doesn't work properly selecting "New Photo Post" on iOS +* Add Link Target (Open in new tab) to Image Block. +* [iOS] DarkMode improvements. +* [iOS] Update to iOS 11 and Swift 5 +* New block: Media & Text + +1.14.0 +------ +* Fix a bug on iOS 13.0 were tapping on a link opens Safari +* Fix a link editing issue, where trying to add a empty link at the start of another link would remove the existing link. +* Fix missing content on long posts in html mode on Android + +1.12.0 +------ +* Add rich text styling to video captions +* Prevent keyboard dismissal when switching between caption and text block on Android +* Blocks that would be replaced are now hidden when add block bottom sheet displays +* Tapping on empty editor area now always inserts new block at end of post + +1.11.0 +------ +* Toolbar scroll position now resets when its content changes. +* Dark Mode for iOS. + +1.10.0 +------ +* Adding a block from the post title now shows the add block here indicator. +* Deselect post title any time a block is added +* Fix loss of center alignment in image captions on Android + +1.9.0 +------ +* Enable video block on Android platform +* Tapping on an empty editor area will create a new paragraph block +* Fix content loss issue when loading unsupported blocks containing inner blocks. +* Adding a block from the Post Title now inserts the block at the top of the Post. + +1.8.0 +------ +* Fix pasting simple text on Post Title +* Remove editable empty line after list on the List block +* Performance improvements on rich text editing + +1.7.0 +------ +* Fixed keyboard flickering issue after pressing Enter repeatedly on the Post Title. +* New blocks are available: video/quote/more + +1.6.0 +------ +* Fixed issue with link settings where “Open in New Tab” was always OFF on open. +* Added UI to display a warning when a block has invalid content. diff --git a/packages/react-native-editor/RNTAztecView.podspec b/packages/react-native-editor/RNTAztecView.podspec new file mode 100644 index 00000000000000..2ea3d382465f2b --- /dev/null +++ b/packages/react-native-editor/RNTAztecView.podspec @@ -0,0 +1,23 @@ +require 'json' + +package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) + +Pod::Spec.new do |s| + s.name = 'RNTAztecView' + s.version = package['version'] + s.summary = 'Aztec editor for React Native' + s.license = package['license'] + s.homepage = 'https://github.com/wordpress-mobile/gutenberg-mobile' + s.authors = 'Automattic' + s.source = { :git => 'https://github.com/wordpress-mobile/gutenberg-mobile.git' } + s.source_files = 'react-native-aztec/ios/RNTAztecView/*.{h,m,swift}' + s.public_header_files = 'react-native-aztec/ios/RNTAztecView/*.h' + s.requires_arc = true + s.platforms = { :ios => "11.0" } + s.swift_version = '5.0' + s.xcconfig = {'OTHER_LDFLAGS' => '-lxml2', + 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2'} + s.dependency 'React-Core' + s.dependency 'WordPress-Aztec-iOS' + +end diff --git a/packages/react-native-editor/__device-tests__/CONTRIBUTING.md b/packages/react-native-editor/__device-tests__/CONTRIBUTING.md new file mode 100644 index 00000000000000..057cbfc84a36db --- /dev/null +++ b/packages/react-native-editor/__device-tests__/CONTRIBUTING.md @@ -0,0 +1,44 @@ +Writing a UI test? Great! 😬 This guide is here to help fill in some of the blanks of how the tests are written now and how you can add a new one. + +You can find our on-device UI tests in the `__device-tests__` folder and that's where all of the code for that really lives. +The test suite follows a sort of [Page Object Pattern](https://webdriver.io/docs/pageobjects.html), the `__device-tests__/pages/editor-page.js` manages all interactions with the pages and the `__device-tests__/gutenberg-editor.test.js` actually uses the functions made available via the Page Object `EditorPage` to drive the test cases. At the time of writing this, all the tests live there but as the suite gets large it might be better to manage different classes of tests in different files. + +So what does the process for writing a test look like? Here are some steps that I hope can help make this easier, + +### First, define the scenario + +- What are the actions that need to take place here? Walk through the scenario and manually to have an idea of what the test steps will need to do, the elements you'll need to interact with and how you're going to need to interact with them. I found it helps to properly define the steps taken in the scenario and the different user interactions that are needed to accomplish it. + +You'd just add a new scenario to the test file as well that would look something like, + +```javscript +it( 'should be able to do something', async () => { + // Code to do something... +} ); +``` + +That first parameter in the block above is where you'd put a short description of the scenario while the next parameter is the code you'd like to execute. + +### Second, figure out how to find the elements + +- The UI tests rely on locator strategies to identify elements... There's a number of locator strategies available to use and [this blog post](https://saucelabs.com/blog/advanced-locator-strategies) describes in a little more detail what a few of these are and how to use them. You'll need to start thinking about what locator strategy you'll need to use to find the elements you need if it isn't already available. +- The preferred strategy is the accessibility identifier and in a lot of cases this might not be possible and you'll have to resort to other less robust alternatives such as XPath. + +There's a few tools you have available to figure out what you need. + +For Android, you can fire up the app and then within Android Studio select `Tools -> Layout Inspector` which will then open up a `.li` file which you can then use to inspect various areas of the app, here's a [screenshot](https://d.pr/free/i/anU50R) of what that looks like. + +For iOS, you can also fire up and use the accessibility inspector, which is an app that should come available on your OSX machine. From there you can choose the process running your simulator and inspect various areas of the app. + +Alternative for both of these platforms and for an interface to simulate the commands I'd recommend [Appium Desktop](https://github.com/appium/appium-desktop/releases/tag/v1.12.1). A great tool for inspecting the view hierarchy and interacting with elements on screen as your test would. Here's a [screenshot](https://d.pr/free/i/GziQ5Q) of what that would look like. + +Using one or a combination of these tools will make it much easier to identify what locator strategy you're going to use or which elements need accessibility identifiers to ease the search process without affecting VoiceOver features. + +### Finally, once you've figured out how you're going to find the elements + +- You'll write any functions needed to interact with the page in the `EditorPage` page object and then call those interactions within the test. The code you'll need to write to actually do the finding will use a combination of + +- Appium's spec http://appium.io/docs/en/about-appium/intro/ which you can find examples of a variety of functions under the commands tab +- WebDriver I/O Appium protocols https://webdriver.io/docs/api/appium.html which provides examples and descriptions of what those look like. + +It takes some getting use to but looking at the existing code should be helpful in identifying common commands that it'd help to be familiar with. diff --git a/packages/react-native-editor/__device-tests__/README.md b/packages/react-native-editor/__device-tests__/README.md new file mode 100644 index 00000000000000..28bead00f73fe3 --- /dev/null +++ b/packages/react-native-editor/__device-tests__/README.md @@ -0,0 +1,56 @@ +# Overview + +We use [appium](http://appium.io/) combined with [SauceLabs](https://saucelabs.com/) as an on-device testing solution for covering writing flows using Gutenberg blocks. + +Appium is built on the idea that testing native apps shouldn't require including an SDK or recompiling your app. And that you should be able to use your preferred test practices, frameworks, and tools. Appium is an open source project and has made design and tool decisions to encourage a vibrant contributing community. + +SauceLabs is a cloud hosting platform that provides access to a variety of simulators, emulators and real devices. + +## Getting set up to run the tests + +### Emulators && Simulators + +iOS: Once you've already set up XCode and the simulators you should be good to go to run the tests on an iOS simulator. + +Android: You'll need to have created the emulator images and fired up the desired emulator before running the tests against an Android emulator. + +### Real Devices + +TBA + +## Running the tests locally + +TLDR; to run the tests locally ensure metro isn't running and then run `yarn test:e2e:ios:local` and `yarn test:e2e:android:local` for the desired platform. + +Those commands include the process to build a testable version of the app, if it's the case you don't want to run the +full suite and want to run a specific file or files you can use the e2e build commands that can be found in the package.json for the respective platform and then +run `TEST_RN_PLATFORM=android yarn device-tests ` where the pattern can just be the file path. + +### Starting the Appium Server + +One of the Caveats to using Appium is the need for the Appium server to be running to interact with the Simulator or Device through Webdriver, as a result the appium server will need to be started before running the tests. To make the entire process easier in the `beforeAll` block of the tests an Appium instance is fired up on a default port of 4723. If you already have something running on that port and would rather not stop that you can change the port within the code that starts that up. At the moment that port number is referenced from the config located at `__device-tests__/helpers/serverConfigs.js`. The process is killed in the `afterAll` block but at the time of writing this there's a small chance some errors might cause it not to get there so it might be best to kill the process yourself if you think something is up. The server output when running the tests are written to `appium-out.log`, this can provide useful information when debugging the issues with the tests. + +### WebDriver capabilities + +Appium uses a config object that contains `capabilities` to define how it will connect to a simulator or device, this object is currently located in `__device-tests__/helpers/caps.js` and then referenced when firing up the driver. There are two values that I think are important to know and that's + +- `platformVersion` which is the platform version of a connected adb device. e.g `9.0` for Android or `12.2` for iOS. The version used here is upper bounded by the max allowed on CI but feel free to change this value locally as needed. +- `app` which is the absolute path to the `.app` or `.apk` file or the path relative to the **Appium root**. It's important to note that that when using the relative paths it's not to the project folder but to the appium server, since by default we start up appium in the project root when running the paths appear relative to the root but if you were using another instance of the Appium server the relative path would need to come from there. + +A full spec on the capabilities can be found [here](http://appium.io/docs/en/writing-running-appium/caps/). If you'd like to change configurations like +what port appium runs on or what device or emulator the tests should be executed on that file would be where you'd like to make that update. + +## The run process + +At the moment when running locally, the app attempts to fire up an appium server and then connects to it via webdriver. Then + +* on Android, a debug version of the app is bundled, built, and used. +* on iOS a release version is bundled built and used. + +**It's important to ensure that **metro is not running.** This would cause the value of the `__DEV__` variable to be true and load up the sample blocks.** + +After the build is complete, an appium server is fired up on port 4723 and the device tests are ran on the connected device/simulator. + +----- + +To read more about writing your own tests please read the [contributing guide](https://github.com/wordpress-mobile/gutenberg-mobile/blob/develop/__device-tests__/CONTRIBUTING.md) diff --git a/packages/react-native-editor/__device-tests__/gutenberg-editor-block-insertion.test.js b/packages/react-native-editor/__device-tests__/gutenberg-editor-block-insertion.test.js new file mode 100644 index 00000000000000..d4434bbaa8cda1 --- /dev/null +++ b/packages/react-native-editor/__device-tests__/gutenberg-editor-block-insertion.test.js @@ -0,0 +1,124 @@ +/** + * @format + * */ + +/** + * Internal dependencies + */ +import EditorPage from './pages/editor-page'; +import { + setupDriver, + isLocalEnvironment, + stopDriver, + isAndroid, + swipeDown, + clickMiddleOfElement, +} from './helpers/utils'; +import testData from './helpers/test-data'; + +jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000000; + +describe( 'Gutenberg Editor tests for Block insertion', () => { + let driver; + let editorPage; + let allPassed = true; + + // Use reporter for setting status for saucelabs Job + if ( ! isLocalEnvironment() ) { + const reporter = { + specDone: async ( result ) => { + allPassed = allPassed && result.status !== 'failed'; + }, + }; + + jasmine.getEnv().addReporter( reporter ); + } + + beforeAll( async () => { + driver = await setupDriver(); + editorPage = new EditorPage( driver ); + } ); + + it( 'should be able to see visual editor', async () => { + // wait for the block editor to load + await expect( editorPage.getBlockList() ).resolves.toBe( true ); + } ); + + it( 'should be able to insert block into post', async () => { + await editorPage.addNewParagraphBlock(); + let paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 1 ); + if ( isAndroid() ) { + await paragraphBlockElement.click(); + } + await editorPage.sendTextToParagraphBlockAtPosition( 1, testData.longText ); + // Should have 3 paragraph blocks at this point + + paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 2 ); + await paragraphBlockElement.click(); + + await editorPage.addNewParagraphBlock(); + paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 3 ); + await paragraphBlockElement.click(); + await editorPage.sendTextToParagraphBlockAtPosition( 3, testData.mediumText ); + + await editorPage.verifyHtmlContent( testData.blockInsertionHtml ); + + // wait for the block editor to load and for accessibility ids to update + await driver.sleep( 3000 ); + + // Workaround for now since deleting the first element causes a crash on CI for Android + if ( isAndroid() ) { + paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 3, { autoscroll: true } ); + await paragraphBlockElement.click(); + await editorPage.removeParagraphBlockAtPosition( 3 ); + for ( let i = 3; i > 0; i-- ) { + // wait for accessibility ids to update + await driver.sleep( 1000 ); + paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( i, { autoscroll: true } ); + await paragraphBlockElement.click(); + await editorPage.removeParagraphBlockAtPosition( i ); + } + } else { + for ( let i = 4; i > 0; i-- ) { + // wait for accessibility ids to update + await driver.sleep( 1000 ); + paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 1 ); + await clickMiddleOfElement( driver, paragraphBlockElement ); + await editorPage.removeParagraphBlockAtPosition( 1 ); + } + } + } ); + + it( 'should be able to insert block at the beginning of post from the title', async () => { + await editorPage.addNewParagraphBlock(); + let paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 1 ); + if ( isAndroid() ) { + await paragraphBlockElement.click(); + } + await editorPage.sendTextToParagraphBlockAtPosition( 1, testData.longText ); + // Should have 3 paragraph blocks at this point + + if ( isAndroid() ) { + await editorPage.dismissKeyboard(); + } + + await swipeDown( driver ); + const titleElement = await editorPage.getTitleElement( { autoscroll: true } ); + await titleElement.click(); + await titleElement.click(); + + await editorPage.addNewParagraphBlock(); + paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 1 ); + await clickMiddleOfElement( driver, paragraphBlockElement ); + await editorPage.sendTextToParagraphBlockAtPosition( 1, testData.mediumText ); + await paragraphBlockElement.click(); + await editorPage.verifyHtmlContent( testData.blockInsertionHtmlFromTitle ); + } ); + + afterAll( async () => { + if ( ! isLocalEnvironment() ) { + driver.sauceJobStatus( allPassed ); + } + await stopDriver( driver ); + } ); +} ); diff --git a/packages/react-native-editor/__device-tests__/gutenberg-editor-heading.test.js b/packages/react-native-editor/__device-tests__/gutenberg-editor-heading.test.js new file mode 100644 index 00000000000000..c3d62168c42b29 --- /dev/null +++ b/packages/react-native-editor/__device-tests__/gutenberg-editor-heading.test.js @@ -0,0 +1,76 @@ +/** + * @format + * */ + +/** + * Internal dependencies + */ +import EditorPage from './pages/editor-page'; +import { + setupDriver, + isLocalEnvironment, + stopDriver, + isAndroid, +} from './helpers/utils'; +import testData from './helpers/test-data'; + +jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000000; + +describe( 'Gutenberg Editor tests', () => { + let driver; + let editorPage; + let allPassed = true; + + // Use reporter for setting status for saucelabs Job + if ( ! isLocalEnvironment() ) { + const reporter = { + specDone: async ( result ) => { + allPassed = allPassed && result.status !== 'failed'; + }, + }; + + jasmine.getEnv().addReporter( reporter ); + } + + beforeAll( async () => { + driver = await setupDriver(); + editorPage = new EditorPage( driver ); + } ); + + it( 'should be able to see visual editor', async () => { + await expect( editorPage.getBlockList() ).resolves.toBe( true ); + } ); + + it( 'should be able to create a post with heading and paragraph blocks', async () => { + await editorPage.addNewHeadingBlock(); + let headingBlockElement = await editorPage.getHeadingBlockAtPosition( 1 ); + + if ( isAndroid() ) { + await headingBlockElement.click(); + } + await editorPage.sendTextToHeadingBlock( headingBlockElement, testData.heading ); + + await editorPage.addNewParagraphBlock(); + let paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 2 ); + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, testData.mediumText ); + + await editorPage.addNewParagraphBlock(); + paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 3 ); + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, testData.mediumText ); + + await editorPage.addNewHeadingBlock(); + headingBlockElement = await editorPage.getHeadingBlockAtPosition( 4 ); + await editorPage.sendTextToHeadingBlock( headingBlockElement, testData.heading ); + + await editorPage.addNewParagraphBlock(); + paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 5 ); + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, testData.mediumText ); + } ); + + afterAll( async () => { + if ( ! isLocalEnvironment() ) { + driver.sauceJobStatus( allPassed ); + } + await stopDriver( driver ); + } ); +} ); diff --git a/packages/react-native-editor/__device-tests__/gutenberg-editor-image.test.js b/packages/react-native-editor/__device-tests__/gutenberg-editor-image.test.js new file mode 100644 index 00000000000000..e50480715653f5 --- /dev/null +++ b/packages/react-native-editor/__device-tests__/gutenberg-editor-image.test.js @@ -0,0 +1,107 @@ +/** + * @format + * */ + +/** + * Internal dependencies + */ +import EditorPage from './pages/editor-page'; +import { + setupDriver, + isLocalEnvironment, + stopDriver, + isAndroid, + clickMiddleOfElement, + swipeUp, +} from './helpers/utils'; +import testData from './helpers/test-data'; + +jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000000; + +describe( 'Gutenberg Editor Image Block tests', () => { + let driver; + let editorPage; + let allPassed = true; + + // Use reporter for setting status for saucelabs Job + if ( ! isLocalEnvironment() ) { + const reporter = { + specDone: async ( result ) => { + allPassed = allPassed && result.status !== 'failed'; + }, + }; + + jasmine.getEnv().addReporter( reporter ); + } + + beforeAll( async () => { + driver = await setupDriver(); + editorPage = new EditorPage( driver ); + } ); + + it( 'should be able to see visual editor', async () => { + await expect( editorPage.getBlockList() ).resolves.toBe( true ); + } ); + + it( 'should be able to add an image block', async () => { + await editorPage.addNewImageBlock(); + let imageBlock = await editorPage.getImageBlockAtPosition( 1 ); + + // Can only add image from media library on iOS + if ( ! isAndroid() ) { + await editorPage.selectEmptyImageBlock( imageBlock ); + await editorPage.chooseMediaLibrary(); + + // Workaround because of #952 + const titleElement = await editorPage.getTitleElement(); + await clickMiddleOfElement( driver, titleElement ); + await editorPage.dismissKeyboard(); + // end workaround + + imageBlock = await editorPage.getImageBlockAtPosition( 1 ); + await imageBlock.click(); + await swipeUp( driver, imageBlock ); + await editorPage.enterCaptionToSelectedImageBlock( testData.imageCaption ); + await editorPage.dismissKeyboard(); + imageBlock = await editorPage.getImageBlockAtPosition( 1 ); + await imageBlock.click(); + } + await editorPage.removeImageBlockAtPosition( 1 ); + } ); + + it( 'should be able to add an image block with multiple paragraph blocks', async () => { + await editorPage.addNewImageBlock(); + let imageBlock = await editorPage.getImageBlockAtPosition( 1 ); + + // Can only add image from media library on iOS + if ( ! isAndroid() ) { + await editorPage.selectEmptyImageBlock( imageBlock ); + await editorPage.chooseMediaLibrary(); + + imageBlock = await editorPage.getImageBlockAtPosition( 1 ); + await imageBlock.click(); + await swipeUp( driver, imageBlock ); + await editorPage.enterCaptionToSelectedImageBlock( testData.imageCaption ); + await editorPage.dismissKeyboard(); + } + + await editorPage.addNewParagraphBlock(); + const paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 2 ); + if ( isAndroid() ) { + await paragraphBlockElement.click(); + } + await editorPage.sendTextToParagraphBlockAtPosition( 2, testData.longText ); + + // skip HTML check for Android since we couldn't add image from media library + if ( ! isAndroid() ) { + await editorPage.verifyHtmlContent( testData.imageCompletehtml ); + } + } ); + + afterAll( async () => { + if ( ! isLocalEnvironment() ) { + driver.sauceJobStatus( allPassed ); + } + await stopDriver( driver ); + } ); +} ); diff --git a/packages/react-native-editor/__device-tests__/gutenberg-editor-lists-end.test.js b/packages/react-native-editor/__device-tests__/gutenberg-editor-lists-end.test.js new file mode 100644 index 00000000000000..ad6cc223729098 --- /dev/null +++ b/packages/react-native-editor/__device-tests__/gutenberg-editor-lists-end.test.js @@ -0,0 +1,71 @@ +/** + * @format + * */ + +/** + * Internal dependencies + */ +import EditorPage from './pages/editor-page'; +import { + setupDriver, + isLocalEnvironment, + stopDriver, + isAndroid, +} from './helpers/utils'; +import testData from './helpers/test-data'; + +jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000000; + +describe( 'Gutenberg Editor tests for List block (end)', () => { + let driver; + let editorPage; + let allPassed = true; + + // Use reporter for setting status for saucelabs Job + if ( ! isLocalEnvironment() ) { + const reporter = { + specDone: async ( result ) => { + allPassed = allPassed && result.status !== 'failed'; + }, + }; + + jasmine.getEnv().addReporter( reporter ); + } + + beforeAll( async () => { + driver = await setupDriver(); + editorPage = new EditorPage( driver ); + } ); + + it( 'should be able to see visual editor', async () => { + await expect( editorPage.getBlockList() ).resolves.toBe( true ); + } ); + + it( 'should be able to end a List block', async () => { + await editorPage.addNewListBlock(); + const listBlockElement = await editorPage.getListBlockAtPosition( 1 ); + + // Click List block on Android to force EditText focus + if ( isAndroid() ) { + await listBlockElement.click(); + } + + // Send the first list item text + await editorPage.sendTextToListBlock( listBlockElement, testData.listItem1 ); + + // send an Enter + await editorPage.sendTextToListBlock( listBlockElement, '\n' ); + + // send an Enter + await editorPage.sendTextToListBlock( listBlockElement, '\n' ); + + await editorPage.verifyHtmlContent( testData.listEndedHtml ); + } ); + + afterAll( async () => { + if ( ! isLocalEnvironment() ) { + driver.sauceJobStatus( allPassed ); + } + await stopDriver( driver ); + } ); +} ); diff --git a/packages/react-native-editor/__device-tests__/gutenberg-editor-lists.test.js b/packages/react-native-editor/__device-tests__/gutenberg-editor-lists.test.js new file mode 100644 index 00000000000000..ad708491e1f530 --- /dev/null +++ b/packages/react-native-editor/__device-tests__/gutenberg-editor-lists.test.js @@ -0,0 +1,72 @@ +/** + * @format + * */ + +/** + * Internal dependencies + */ +import EditorPage from './pages/editor-page'; +import { + setupDriver, + isLocalEnvironment, + stopDriver, + isAndroid, +} from './helpers/utils'; +import testData from './helpers/test-data'; + +jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000000; + +describe( 'Gutenberg Editor tests for List block', () => { + let driver; + let editorPage; + let allPassed = true; + + // Use reporter for setting status for saucelabs Job + if ( ! isLocalEnvironment() ) { + const reporter = { + specDone: async ( result ) => { + allPassed = allPassed && result.status !== 'failed'; + }, + }; + + jasmine.getEnv().addReporter( reporter ); + } + + beforeAll( async () => { + driver = await setupDriver(); + editorPage = new EditorPage( driver ); + } ); + + it( 'should be able to see visual editor', async () => { + await expect( editorPage.getBlockList() ).resolves.toBe( true ); + } ); + + it( 'should be able to add a new List block', async () => { + await editorPage.addNewListBlock(); + const listBlockElement = await editorPage.getListBlockAtPosition( 1 ); + + // Click List block on Android to force EditText focus + if ( isAndroid() ) { + await listBlockElement.click(); + } + + // Send the first list item text + await editorPage.sendTextToListBlock( listBlockElement, testData.listItem1 ); + + // send an Enter + await editorPage.sendTextToListBlock( listBlockElement, '\n' ); + + // Send the second list item text + await editorPage.sendTextToListBlock( listBlockElement, testData.listItem2 ); + + // switch to html and verify html + await editorPage.verifyHtmlContent( testData.listHtml ); + } ); + + afterAll( async () => { + if ( ! isLocalEnvironment() ) { + driver.sauceJobStatus( allPassed ); + } + await stopDriver( driver ); + } ); +} ); diff --git a/packages/react-native-editor/__device-tests__/gutenberg-editor-paragraph.test.js b/packages/react-native-editor/__device-tests__/gutenberg-editor-paragraph.test.js new file mode 100644 index 00000000000000..770b0368d3dd09 --- /dev/null +++ b/packages/react-native-editor/__device-tests__/gutenberg-editor-paragraph.test.js @@ -0,0 +1,128 @@ +/** + * @format + * */ + +/** + * Internal dependencies + */ +import EditorPage from './pages/editor-page'; +import { + setupDriver, + isLocalEnvironment, + clickMiddleOfElement, + clickBeginningOfElement, + stopDriver, + isAndroid, +} from './helpers/utils'; +import testData from './helpers/test-data'; + +jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000000; + +describe( 'Gutenberg Editor tests for Paragraph Block', () => { + let driver; + let editorPage; + let allPassed = true; + + // Use reporter for setting status for saucelabs Job + if ( ! isLocalEnvironment() ) { + const reporter = { + specDone: async ( result ) => { + allPassed = allPassed && result.status !== 'failed'; + }, + }; + + jasmine.getEnv().addReporter( reporter ); + } + + beforeAll( async () => { + driver = await setupDriver(); + editorPage = new EditorPage( driver ); + } ); + + it( 'should be able to see visual editor', async () => { + await expect( editorPage.getBlockList() ).resolves.toBe( true ); + } ); + + it( 'should be able to add a new Paragraph block', async () => { + await editorPage.addNewParagraphBlock(); + const paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 1 ); + if ( isAndroid() ) { + await paragraphBlockElement.click(); + } + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, testData.shortText ); + await editorPage.removeParagraphBlockAtPosition( 1 ); + } ); + + it( 'should be able to split one paragraph block into two', async () => { + await editorPage.addNewParagraphBlock(); + const paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 1 ); + if ( isAndroid() ) { + await paragraphBlockElement.click(); + } + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, testData.shortText ); + const textViewElement = await editorPage.getTextViewForParagraphBlock( paragraphBlockElement ); + await clickMiddleOfElement( driver, textViewElement ); + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, '\n' ); + expect( await editorPage.hasParagraphBlockAtPosition( 1 ) && await editorPage.hasParagraphBlockAtPosition( 2 ) ) + .toBe( true ); + + const text0 = await editorPage.getTextForParagraphBlockAtPosition( 1 ); + const text1 = await editorPage.getTextForParagraphBlockAtPosition( 2 ); + expect( text0 ).not.toBe( '' ); + expect( text1 ).not.toBe( '' ); + expect( testData.shortText ).toMatch( new RegExp( `${ text0 + text1 }|${ text0 } ${ text1 }` ) ); + + await editorPage.removeParagraphBlockAtPosition( 2 ); + await editorPage.removeParagraphBlockAtPosition( 1 ); + } ); + + it( 'should be able to merge 2 paragraph blocks into 1', async () => { + await editorPage.addNewParagraphBlock(); + let paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 1 ); + if ( isAndroid() ) { + await paragraphBlockElement.click(); + } + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, testData.shortText ); + let textViewElement = await editorPage.getTextViewForParagraphBlock( paragraphBlockElement ); + await clickMiddleOfElement( driver, textViewElement ); + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, '\n' ); + expect( await editorPage.hasParagraphBlockAtPosition( 1 ) && await editorPage.hasParagraphBlockAtPosition( 2 ) ) + .toBe( true ); + + const text0 = await editorPage.getTextForParagraphBlockAtPosition( 1 ); + const text1 = await editorPage.getTextForParagraphBlockAtPosition( 2 ); + paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 2 ); + if ( isAndroid() ) { + await paragraphBlockElement.click(); + } + textViewElement = await editorPage.getTextViewForParagraphBlock( paragraphBlockElement ); + await clickBeginningOfElement( driver, textViewElement ); + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, '\u0008' ); + + const text = await editorPage.getTextForParagraphBlockAtPosition( 1 ); + expect( text0 + text1 ).toMatch( text ); + + expect( await editorPage.hasParagraphBlockAtPosition( 2 ) ).toBe( false ); + await editorPage.removeParagraphBlockAtPosition( 1 ); + } ); + + it( 'should be able to create a post with multiple paragraph blocks', async () => { + await editorPage.addNewParagraphBlock(); + const paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 1 ); + if ( isAndroid() ) { + await paragraphBlockElement.click(); + } + await editorPage.sendTextToParagraphBlockAtPosition( 1, testData.longText ); + + for ( let i = 3; i > 0; i-- ) { + await editorPage.removeParagraphBlockAtPosition( i ); + } + } ); + + afterAll( async () => { + if ( ! isLocalEnvironment() ) { + driver.sauceJobStatus( allPassed ); + } + await stopDriver( driver ); + } ); +} ); diff --git a/packages/react-native-editor/__device-tests__/gutenberg-editor-paste.test.js b/packages/react-native-editor/__device-tests__/gutenberg-editor-paste.test.js new file mode 100644 index 00000000000000..4b5926bd6419a2 --- /dev/null +++ b/packages/react-native-editor/__device-tests__/gutenberg-editor-paste.test.js @@ -0,0 +1,126 @@ +/** + * @format + * */ + +/** + * Internal dependencies + */ +import EditorPage from './pages/editor-page'; +import { + setupDriver, + isLocalEnvironment, + longPressMiddleOfElement, + tapSelectAllAboveElement, + tapCopyAboveElement, + tapPasteAboveElement, + stopDriver, + isAndroid, +} from './helpers/utils'; +import testData from './helpers/test-data'; + +jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000000; + +describe( 'Gutenberg Editor paste tests', () => { + // skip iOS for now + if ( ! isAndroid() ) { + it( 'skips the tests on any platform other than Android', async () => { + } ); + return; + } + + let driver; + let editorPage; + let allPassed = true; + + // Use reporter for setting status for saucelabs Job + if ( ! isLocalEnvironment() ) { + const reporter = { + specDone: async ( result ) => { + allPassed = allPassed && result.status !== 'failed'; + }, + }; + + jasmine.getEnv().addReporter( reporter ); + } + + beforeAll( async () => { + driver = await setupDriver(); + await driver.setClipboard( '', 'plaintext' ); + editorPage = new EditorPage( driver ); + } ); + + it( 'copies plain text from one paragraph block and pastes in another', async () => { + await editorPage.addNewParagraphBlock(); + const paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 1 ); + + if ( isAndroid() ) { + await paragraphBlockElement.click(); + } + + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, testData.pastePlainText ); + const textViewElement = await editorPage.getTextViewForParagraphBlock( paragraphBlockElement ); + + // copy content to clipboard + await longPressMiddleOfElement( driver, textViewElement ); + await tapSelectAllAboveElement( driver, textViewElement ); + await tapCopyAboveElement( driver, textViewElement ); + + // create another paragraph block + await editorPage.addNewParagraphBlock(); + const paragraphBlockElement2 = await editorPage.getParagraphBlockAtPosition( 2 ); + + if ( isAndroid() ) { + await paragraphBlockElement2.click(); + } + + const textViewElement2 = await editorPage.getTextViewForParagraphBlock( paragraphBlockElement2 ); + + // paste into second paragraph block + await longPressMiddleOfElement( driver, textViewElement2 ); + await tapPasteAboveElement( driver, textViewElement2 ); + + const text = await editorPage.getTextForParagraphBlockAtPosition( 2 ); + expect( text ).toBe( testData.pastePlainText ); + } ); + + it( 'copies styled text from one paragraph block and pastes in another', async () => { + // create paragraph block with styled text by editing html + await editorPage.setHtmlContentAndroid( testData.pasteHtmlText ); + const paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 1 ); + + if ( isAndroid() ) { + await paragraphBlockElement.click(); + } + + const textViewElement = await editorPage.getTextViewForParagraphBlock( paragraphBlockElement ); + + // copy content to clipboard + await longPressMiddleOfElement( driver, textViewElement ); + await tapSelectAllAboveElement( driver, textViewElement ); + await tapCopyAboveElement( driver, textViewElement ); + + // create another paragraph block + await editorPage.addNewParagraphBlock(); + const paragraphBlockElement2 = await editorPage.getParagraphBlockAtPosition( 2 ); + + if ( isAndroid() ) { + await paragraphBlockElement2.click(); + } + + const textViewElement2 = await editorPage.getTextViewForParagraphBlock( paragraphBlockElement2 ); + + // paste into second paragraph block + await longPressMiddleOfElement( driver, textViewElement2 ); + await tapPasteAboveElement( driver, textViewElement2 ); + + // check styled text by verifying html contents + await editorPage.verifyHtmlContent( testData.pasteHtmlTextResult ); + } ); + + afterAll( async () => { + if ( ! isLocalEnvironment() ) { + driver.sauceJobStatus( allPassed ); + } + await stopDriver( driver ); + } ); +} ); diff --git a/packages/react-native-editor/__device-tests__/gutenberg-editor-rotation.test.js b/packages/react-native-editor/__device-tests__/gutenberg-editor-rotation.test.js new file mode 100644 index 00000000000000..11e1c6495d2f48 --- /dev/null +++ b/packages/react-native-editor/__device-tests__/gutenberg-editor-rotation.test.js @@ -0,0 +1,83 @@ +/** + * @format + * */ + +/** + * Internal dependencies + */ +import EditorPage from './pages/editor-page'; +import { + setupDriver, + isLocalEnvironment, + stopDriver, + isAndroid, + toggleOrientation, +} from './helpers/utils'; +import testData from './helpers/test-data'; + +jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000000; + +describe( 'Gutenberg Editor tests', () => { + let driver; + let editorPage; + let allPassed = true; + + // Use reporter for setting status for saucelabs Job + if ( ! isLocalEnvironment() ) { + const reporter = { + specDone: async ( result ) => { + allPassed = allPassed && result.status !== 'failed'; + }, + }; + + jasmine.getEnv().addReporter( reporter ); + } + + beforeAll( async () => { + driver = await setupDriver(); + editorPage = new EditorPage( driver ); + } ); + + it( 'should be able to see visual editor', async () => { + await expect( editorPage.getBlockList() ).resolves.toBe( true ); + } ); + + it( 'should be able to add blocks , rotate device and continue adding blocks', async () => { + await editorPage.addNewParagraphBlock(); + let paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 1 ); + if ( isAndroid() ) { + await paragraphBlockElement.click(); + } + + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, testData.mediumText ); + + await toggleOrientation( driver ); + // On Android the keyboard hides the add block button, let's hide it after rotation + if ( isAndroid() ) { + await driver.hideDeviceKeyboard(); + } + + await editorPage.addNewParagraphBlock(); + + if ( isAndroid() ) { + await driver.hideDeviceKeyboard(); + } + + paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 2 ); + while ( ! paragraphBlockElement ) { + await driver.hideDeviceKeyboard(); + paragraphBlockElement = await editorPage.getParagraphBlockAtPosition( 2 ); + } + await editorPage.sendTextToParagraphBlock( paragraphBlockElement, testData.mediumText ); + await toggleOrientation( driver ); + + await editorPage.verifyHtmlContent( testData.deviceRotationHtml ); + } ); + + afterAll( async () => { + if ( ! isLocalEnvironment() ) { + driver.sauceJobStatus( allPassed ); + } + await stopDriver( driver ); + } ); +} ); diff --git a/packages/react-native-editor/__device-tests__/helpers/appium-local.js b/packages/react-native-editor/__device-tests__/helpers/appium-local.js new file mode 100644 index 00000000000000..31f7f878276cf0 --- /dev/null +++ b/packages/react-native-editor/__device-tests__/helpers/appium-local.js @@ -0,0 +1,49 @@ +/** + * @flow + * @format + * */ + +/** + * External dependencies + */ +import childProcess from 'child_process'; + +// Spawns an appium process +export const start = ( localAppiumPort: number ) => new Promise < childProcess.ChildProcess > ( ( resolve, reject ) => { + const appium = childProcess.spawn( 'appium', [ + '--port', localAppiumPort.toString(), + '--log', './appium-out.log', + '--log-no-colors', + '--relaxed-security', // Needed for mobile:shell commend for text entry on Android + ] ); + + let appiumOutputBuffer = ''; + let resolved = false; + appium.stdout.on( 'data', ( data ) => { + if ( ! resolved ) { + appiumOutputBuffer += data.toString(); + if ( appiumOutputBuffer.indexOf( 'Appium REST http interface listener started' ) >= 0 ) { + resolved = true; + resolve( appium ); + } + } + } ); + + appium.on( 'close', ( code ) => { + if ( ! resolved ) { + reject( new Error( `Appium process exited with code ${ code }` ) ); + } + } ); +} ); + +export const stop = async ( appium: ?childProcess.ChildProcess ) => { + if ( ! appium ) { + return; + } + await appium.kill( 'SIGINT' ); +}; + +export default { + start, + stop, +}; diff --git a/packages/react-native-editor/__device-tests__/helpers/caps.js b/packages/react-native-editor/__device-tests__/helpers/caps.js new file mode 100644 index 00000000000000..446eb50328b44a --- /dev/null +++ b/packages/react-native-editor/__device-tests__/helpers/caps.js @@ -0,0 +1,25 @@ +exports.ios = { + browserName: '', + platformName: 'iOS', + platformVersion: '13.0', + deviceName: 'iPhone 11 Simulator', + os: 'iOS', + deviceOrientation: 'portrait', + automationName: 'XCUITest', + appiumVersion: '1.15.0', // SauceLabs requires appiumVersion to be specified. + app: undefined, // will be set later, locally this is relative to root of project +}; + +exports.android8 = { + browserName: '', + platformName: 'Android', + platformVersion: '9.0', + deviceName: 'Google Pixel 3 XL GoogleAPI Emulator', + automationName: 'UiAutomator2', + os: 'Android', + appPackage: 'com.gutenberg', + appActivity: 'com.gutenberg.MainActivity', + deviceOrientation: 'portrait', + appiumVersion: '1.15.0', + app: undefined, +}; diff --git a/packages/react-native-editor/__device-tests__/helpers/serverConfigs.js b/packages/react-native-editor/__device-tests__/helpers/serverConfigs.js new file mode 100644 index 00000000000000..d675a65229edcb --- /dev/null +++ b/packages/react-native-editor/__device-tests__/helpers/serverConfigs.js @@ -0,0 +1,10 @@ +exports.local = { + host: 'localhost', + port: 4723, // Port for local Appium runs +}; + +exports.sauce = { + host: 'ondemand.saucelabs.com', + port: 80, + auth: process.env.SAUCE_USERNAME + ':' + process.env.SAUCE_ACCESS_KEY, +}; diff --git a/packages/react-native-editor/__device-tests__/helpers/test-data.js b/packages/react-native-editor/__device-tests__/helpers/test-data.js new file mode 100644 index 00000000000000..817c94abdbc6b1 --- /dev/null +++ b/packages/react-native-editor/__device-tests__/helpers/test-data.js @@ -0,0 +1,89 @@ +exports.shortText = `Rock music approaches at high velocity.`; + +exports.mediumText = `The finer continuum interprets the polynomial rabbit. When can the geology runs? An astronomer runs. Should a communist consent?`; + +exports.longText = `Beneath the busy continuum blinks the ineffective husband. Why a metric now outside the official subway? How can the prompt crop exhaust his tree +Does this chord crowd my emptied search? A theory bubbles under the cartoon. The discontinued speaker cracks every thick epic. extraordinary twin shifts behind +The finer continuum interprets the polynomial rabbit. When can the geology runs? An astronomer runs. Should a communist consent?`; + +exports.listItem1 = `Milk`; +exports.listItem2 = `Honey`; +exports.listHtml = ` +
  • Milk
  • Honey
+`; +exports.listEndedHtml = ` +
  • Milk
+ + + +

+`; +exports.heading = 'Lorem Ipsum'; + +exports.pastePlainText = `Hello paste`; + +const pastedHtmlText = ` +

Hello paste

+`; + +exports.pasteHtmlText = pastedHtmlText; + +exports.pasteHtmlTextResult = `${ pastedHtmlText }\n\n${ pastedHtmlText }`; + +exports.deviceRotationHtml = ` +

The finer continuum interprets the polynomial rabbit. When can the geology runs? An astronomer runs. Should a communist consent?

+ + + +

The finer continuum interprets the polynomial rabbit. When can the geology runs? An astronomer runs. Should a communist consent?

+`; + +exports.blockInsertionHtml = ` +

Beneath the busy continuum blinks the ineffective husband. Why a metric now outside the official subway? How can the prompt crop exhaust his tree

+ + + +

Does this chord crowd my emptied search? A theory bubbles under the cartoon. The discontinued speaker cracks every thick epic. extraordinary twin shifts behind

+ + + +

The finer continuum interprets the polynomial rabbit. When can the geology runs? An astronomer runs. Should a communist consent?

+ + + +

The finer continuum interprets the polynomial rabbit. When can the geology runs? An astronomer runs. Should a communist consent?

+`; + +exports.blockInsertionHtmlFromTitle = ` +

The finer continuum interprets the polynomial rabbit. When can the geology runs? An astronomer runs. Should a communist consent?

+ + + +

Beneath the busy continuum blinks the ineffective husband. Why a metric now outside the official subway? How can the prompt crop exhaust his tree

+ + + +

Does this chord crowd my emptied search? A theory bubbles under the cartoon. The discontinued speaker cracks every thick epic. extraordinary twin shifts behind

+ + + +

The finer continuum interprets the polynomial rabbit. When can the geology runs? An astronomer runs. Should a communist consent?

+`; + +exports.imageCaption = `C'est la vie my friends`; + +exports.imageCompletehtml = ` +
C'est la vie my friends
+ + + +

Beneath the busy continuum blinks the ineffective husband. Why a metric now outside the official subway? How can the prompt crop exhaust his tree

+ + + +

Does this chord crowd my emptied search? A theory bubbles under the cartoon. The discontinued speaker cracks every thick epic. extraordinary twin shifts behind

+ + + +

The finer continuum interprets the polynomial rabbit. When can the geology runs? An astronomer runs. Should a communist consent?

+`; diff --git a/packages/react-native-editor/__device-tests__/helpers/utils.js b/packages/react-native-editor/__device-tests__/helpers/utils.js new file mode 100644 index 00000000000000..525c726d99eadb --- /dev/null +++ b/packages/react-native-editor/__device-tests__/helpers/utils.js @@ -0,0 +1,352 @@ +/** + * @flow + * @format + * */ + +/** + * External dependencies + */ +import childProcess from 'child_process'; +import wd from 'wd'; +import crypto from 'crypto'; +import path from 'path'; + +/** + * Internal dependencies + */ +import serverConfigs from './serverConfigs'; +import { ios, android8 } from './caps'; +import AppiumLocal from './appium-local'; +import _ from 'underscore'; + +// Platform setup +const defaultPlatform = 'android'; +const rnPlatform = process.env.TEST_RN_PLATFORM || defaultPlatform; + +// Environment setup, local environment or Sauce Labs +const defaultEnvironment = 'local'; +const testEnvironment = process.env.TEST_ENV || defaultEnvironment; + +// Local App Paths +const defaultAndroidAppPath = './android/app/build/outputs/apk/debug/app-debug.apk'; +const defaultIOSAppPath = './ios/build/gutenberg/Build/Products/Release-iphonesimulator/gutenberg.app'; + +const localAndroidAppPath = process.env.ANDROID_APP_PATH || defaultAndroidAppPath; +const localIOSAppPath = process.env.IOS_APP_PATH || defaultIOSAppPath; + +const localAppiumPort = serverConfigs.local.port; // Port to spawn appium process for local runs +let appiumProcess: ?childProcess.ChildProcess; + +// Used to map unicode and special values to keycodes on Android +// Docs for keycode values: https://developer.android.com/reference/android/view/KeyEvent.html +const strToKeycode = { + '\n': 66, + '\u0008': 67, +}; + +const timer = ( ms: number ) => new Promise < {} > ( ( res ) => setTimeout( res, ms ) ); + +const isAndroid = () => { + return rnPlatform.toLowerCase() === 'android'; +}; + +const isLocalEnvironment = () => { + return testEnvironment.toLowerCase() === 'local'; +}; + +// Initialises the driver and desired capabilities for appium +const setupDriver = async () => { + const branch = process.env.CIRCLE_BRANCH || ''; + const safeBranchName = branch.replace( /\//g, '-' ); + if ( isLocalEnvironment() ) { + try { + appiumProcess = await AppiumLocal.start( localAppiumPort ); + } catch ( err ) { + // Ignore error here, Appium is probably already running (Appium desktop has its own server for instance) + // eslint-disable-next-line no-console + await console.log( 'Could not start Appium server', err.toString() ); + } + } + + const serverConfig = isLocalEnvironment() ? serverConfigs.local : serverConfigs.sauce; + const driver = wd.promiseChainRemote( serverConfig ); + + let desiredCaps; + if ( isAndroid() ) { + desiredCaps = _.clone( android8 ); + if ( isLocalEnvironment() ) { + desiredCaps.app = path.resolve( localAndroidAppPath ); + try { + const androidVersion = childProcess + .execSync( 'adb shell getprop ro.build.version.release' ) + .toString() + .replace( /^\s+|\s+$/g, '' ); + delete desiredCaps.platformVersion; + desiredCaps.deviceName = 'Android Emulator'; + // eslint-disable-next-line no-console + console.log( 'Detected Android device running Android %s', androidVersion ); + } catch ( error ) { + // ignore error + } + } else { + desiredCaps.app = `sauce-storage:Gutenberg-${ safeBranchName }.apk`; // App should be preloaded to sauce storage, this can also be a URL + } + } else { + desiredCaps = _.clone( ios ); + if ( isLocalEnvironment() ) { + desiredCaps.app = path.resolve( localIOSAppPath ); + delete desiredCaps.platformVersion; + desiredCaps.deviceName = 'iPhone 11'; + } else { + desiredCaps.app = `sauce-storage:Gutenberg-${ safeBranchName }.app.zip`; // App should be preloaded to sauce storage, this can also be a URL + } + } + + if ( ! isLocalEnvironment() ) { + desiredCaps.name = `Gutenberg Editor Tests[${ rnPlatform }]-${ branch }`; + desiredCaps.tags = [ 'Gutenberg', branch ]; + } + + await driver.init( desiredCaps ); + + const status = await driver.status(); + // Display the driver status + // eslint-disable-next-line no-console + console.log( status ); + + await driver.setImplicitWaitTimeout( 2000 ); + await timer( 3000 ); + await driver.setOrientation( 'PORTRAIT' ); + + // Proxy driver to patch functions on Android + // This is needed to adapt to changes in the way accessibility ids are being + // assigned after migrating to AndroidX and React Native 0.60. See: + // https://github.com/wordpress-mobile/gutenberg-mobile/pull/1112#issuecomment-501165250 + // for more details. + return new Proxy( driver, { + get: ( original, property ) => { + const propertiesToPatch = [ + 'elementByAccessibilityId', + 'hasElementByAccessibilityId', + ]; + if ( isAndroid() && ( propertiesToPatch.includes( property ) ) ) { + return async function( value, cb ) { + // Add a comma and a space to all ids + return await original[ property ]( `${ value }, `, cb ); + }; + } + return original[ property ]; + }, + } ); +}; + +const stopDriver = async ( driver: wd.PromiseChainWebdriver ) => { + if ( ! isLocalEnvironment() ) { + const jobID = driver.sessionID; + + const hash = crypto.createHmac( 'md5', jobID ) + .update( serverConfigs.sauce.auth ) + .digest( 'hex' ); + const jobURL = `https://saucelabs.com/jobs/${ jobID }?auth=${ hash }.`; + // eslint-disable-next-line no-console + console.log( `You can view the video of this test run at ${ jobURL }` ); + } + if ( driver === undefined ) { + return; + } + await driver.quit(); + + if ( appiumProcess !== undefined ) { + await AppiumLocal.stop( appiumProcess ); + } +}; + +const typeString = async ( driver: wd.PromiseChainWebdriver, element: wd.PromiseChainWebdriver.Element, str: string, clear: boolean = false ) => { + if ( clear ) { + await element.clear(); + } + + if ( isAndroid() ) { + const paragraphs = str.split( '\n' ); + + for ( let i = 0; i < paragraphs.length; i++ ) { + const paragraph = paragraphs[ i ].replace( /[ ]/g, '%s' ); + if ( paragraph in strToKeycode ) { + await driver.pressKeycode( strToKeycode[ paragraph ] ); + } else { + // Execute with adb shell input since normal type auto clears field on Android + await driver.execute( 'mobile: shell', { command: 'input', args: [ 'text', paragraph ] } ); + } + if ( i !== paragraphs.length - 1 ) { + await driver.pressKeycode( strToKeycode[ '\n' ] ); + } + } + } else { + return await element.type( str ); + } +}; + +// Calculates middle x,y and clicks that position +const clickMiddleOfElement = async ( driver: wd.PromiseChainWebdriver, element: wd.PromiseChainWebdriver.Element ) => { + const location = await element.getLocation(); + const size = await element.getSize(); + + const action = await new wd.TouchAction( driver ); + action.press( { x: location.x + ( size.width / 2 ), y: location.y } ); + action.release(); + await action.perform(); +}; + +// Clicks in the top left of an element +const clickBeginningOfElement = async ( driver: wd.PromiseChainWebdriver, element: wd.PromiseChainWebdriver.Element ) => { + const location = await element.getLocation(); + const action = await new wd.TouchAction( driver ); + action.press( { x: location.x, y: location.y } ); + action.release(); + await action.perform(); +}; + +// long press to activate context menu +const longPressMiddleOfElement = async ( driver: wd.PromiseChainWebdriver, element: wd.PromiseChainWebdriver.Element ) => { + const location = await element.getLocation(); + const size = await element.getSize(); + + const action = await new wd.TouchAction( driver ); + const x = location.x + ( size.width / 2 ); + const y = location.y + ( size.height / 2 ); + action.press( { x, y } ); + action.wait( 2000 ); + action.release(); + await action.perform(); +}; + +// press "Select All" in floating context menu +const tapSelectAllAboveElement = async ( driver: wd.PromiseChainWebdriver, element: wd.PromiseChainWebdriver.Element ) => { + const location = await element.getLocation(); + const action = await new wd.TouchAction( driver ); + const x = location.x + 300; + const y = location.y - 50; + action.press( { x, y } ); + action.release(); + await action.perform(); +}; + +// press "Copy" in floating context menu +const tapCopyAboveElement = async ( driver: wd.PromiseChainWebdriver, element: wd.PromiseChainWebdriver.Element ) => { + const location = await element.getLocation(); + const action = await new wd.TouchAction( driver ); + const x = location.x + 220; + const y = location.y - 50; + action.wait( 2000 ); + action.press( { x, y } ); + action.wait( 2000 ); + action.release(); + await action.perform(); +}; + +// press "Paste" in floating context menu +const tapPasteAboveElement = async ( driver: wd.PromiseChainWebdriver, element: wd.PromiseChainWebdriver.Element ) => { + const location = await element.getLocation(); + const action = await new wd.TouchAction( driver ); + action.wait( 2000 ); + action.press( { x: location.x + 100, y: location.y - 50 } ); + action.wait( 2000 ); + action.release(); + await action.perform(); +}; + +// Starts from the middle of the screen or the element(if specified) +// and swipes upwards +const swipeUp = async ( driver: wd.PromiseChainWebdriver, element: wd.PromiseChainWebdriver.Element = undefined ) => { + let size = await driver.getWindowSize(); + let y = 0; + if ( element !== undefined ) { + size = await element.getSize(); + const location = await element.getLocation(); + y = location.y; + } + + const startX = size.width / 2; + const startY = y + ( size.height / 3 ); + const endX = startX; + const endY = startY + ( startY * -1 * 0.5 ); + + const action = await new wd.TouchAction( driver ); + action.press( { x: startX, y: startY } ); + action.wait( 3000 ); + action.moveTo( { x: endX, y: endY } ); + action.release(); + await action.perform(); +}; + +// Starts from the middle of the screen and swipes downwards +const swipeDown = async ( driver: wd.PromiseChainWebdriver ) => { + const size = await driver.getWindowSize(); + const y = 0; + + const startX = size.width / 2; + const startY = y + ( size.height / 3 ); + const endX = startX; + const endY = startY - ( startY * -1 * 0.5 ); + + const action = await new wd.TouchAction( driver ); + action.press( { x: startX, y: startY } ); + action.wait( 3000 ); + action.moveTo( { x: endX, y: endY } ); + action.release(); + await action.perform(); +}; + +const toggleHtmlMode = async ( driver: wd.PromiseChainWebdriver, toggleOn: boolean ) => { + if ( isAndroid() ) { + // Hit the "Menu" key + await driver.pressKeycode( 82 ); + + // Go at the end of the popup to hit the "Show html" + // TODO: c'mon, find a more robust way to hit that item! :( + for ( let i = 0; i < 10; i++ ) { + await driver.pressKeycode( 20 ); + } + + // hit Enter + await driver.pressKeycode( 66 ); + } else { + const menuButton = await driver.elementByAccessibilityId( '...' ); + await menuButton.click(); + let toggleHtmlButton; + if ( toggleOn ) { + toggleHtmlButton = await driver.elementByAccessibilityId( 'Switch to HTML' ); + } else { + toggleHtmlButton = await driver.elementByAccessibilityId( 'Switch To Visual' ); + } + await toggleHtmlButton.click(); + } +}; + +const toggleOrientation = async ( driver: wd.PromiseChainWebdriver ) => { + const orientation = await driver.getOrientation(); + if ( orientation === 'LANDSCAPE' ) { + await driver.setOrientation( 'PORTRAIT' ); + } else { + await driver.setOrientation( 'LANDSCAPE' ); + } +}; + +module.exports = { + timer, + setupDriver, + isLocalEnvironment, + isAndroid, + typeString, + clickMiddleOfElement, + clickBeginningOfElement, + longPressMiddleOfElement, + tapSelectAllAboveElement, + tapCopyAboveElement, + tapPasteAboveElement, + swipeDown, + swipeUp, + stopDriver, + toggleHtmlMode, + toggleOrientation, +}; diff --git a/packages/react-native-editor/__device-tests__/pages/editor-page.js b/packages/react-native-editor/__device-tests__/pages/editor-page.js new file mode 100644 index 00000000000000..bbb4a5b74a55fb --- /dev/null +++ b/packages/react-native-editor/__device-tests__/pages/editor-page.js @@ -0,0 +1,417 @@ +/** + * @flow + * @format + * */ +/** + * External dependencies + */ +import wd from 'wd'; + +/** + * Internal dependencies + */ +import { isAndroid, swipeUp, swipeDown, typeString, toggleHtmlMode } from '../helpers/utils'; + +export default class EditorPage { + driver: wd.PromiseChainWebdriver; + accessibilityIdKey: string; + accessibilityIdXPathAttrib: string; + paragraphBlockName = 'Paragraph'; + listBlockName = 'List'; + headingBlockName = 'Heading'; + imageBlockName = 'Image'; + + // This is needed to adapt to changes in the way accessibility ids are being + // assigned after migrating to AndroidX and React Native 0.60. See: + // https://github.com/wordpress-mobile/gutenberg-mobile/pull/1112#issuecomment-501165250 + // for more details. + accessibilityIdSuffix = ''; + + constructor( driver: wd.PromiseChainWebdriver ) { + this.driver = driver; + this.accessibilityIdKey = 'name'; + this.accessibilityIdXPathAttrib = 'name'; + + if ( isAndroid() ) { + this.accessibilityIdXPathAttrib = 'content-desc'; + this.accessibilityIdKey = 'contentDescription'; + this.accessibilityIdSuffix = ', '; + } + } + + async getBlockList() { + return await this.driver.hasElementByAccessibilityId( 'block-list' ); + } + + // Finds the wd element for new block that was added and sets the element attribute + // and accessibilityId attributes on this object and selects the block + // position uses one based numbering + async getBlockAtPosition( position: number, blockName: string, options: { autoscroll: boolean } = { autoscroll: false } ) { + const blockLocator = `//*[contains(@${ this.accessibilityIdXPathAttrib }, "${ blockName } Block. Row ${ position }.")]`; + const elements = await this.driver.elementsByXPath( blockLocator ); + const lastElementFound = elements[ elements.length - 1 ]; + if ( elements.length === 0 && options.autoscroll ) { + const firstBlockVisible = await this.getFirstBlockVisible(); + const lastBlockVisible = await this.getLastBlockVisible(); + // exit if no block is found + if ( ! firstBlockVisible || ! lastBlockVisible ) { + return lastElementFound; + } + const firstBlockAccessibilityId = await firstBlockVisible.getAttribute( this.accessibilityIdKey ); + const firstBlockRowMatch = /Row (\d+)\./.exec( firstBlockAccessibilityId ); + const firstBlockRow = firstBlockRowMatch && Number( firstBlockRowMatch[ 1 ] ); + const lastBlockAccessibilityId = await lastBlockVisible.getAttribute( this.accessibilityIdKey ); + const lastBlockRowMatch = /Row (\d+)\./.exec( lastBlockAccessibilityId ); + const lastBlockRow = lastBlockRowMatch && Number( lastBlockRowMatch[ 1 ] ); + if ( firstBlockRow && position < firstBlockRow ) { + if ( firstBlockRow === 1 ) { // we're at the top already stop recursing + return lastElementFound; + } + // scroll up + await swipeDown( this.driver ); + } else if ( lastBlockRow && position > lastBlockRow ) { + // scroll down + await swipeUp( this.driver ); + } + return this.getBlockAtPosition( position, blockName, options ); + } + return lastElementFound; + } + + async getFirstBlockVisible() { + const firstBlockLocator = `//*[contains(@${ this.accessibilityIdXPathAttrib }, " Block. Row ")]`; + const elements = await this.driver.elementsByXPath( firstBlockLocator ); + return elements[ 0 ]; + } + + async getLastBlockVisible() { + const firstBlockLocator = `//*[contains(@${ this.accessibilityIdXPathAttrib }, " Block. Row ")]`; + const elements = await this.driver.elementsByXPath( firstBlockLocator ); + return elements[ elements.length - 1 ]; + } + + async hasBlockAtPosition( position: number, blockName: string = '' ) { + return undefined !== await this.getBlockAtPosition( position, blockName ); + } + + async getTitleElement( options: { autoscroll: boolean } = { autoscroll: false } ) { + //TODO: Improve the identifier for this element + const elements = await this.driver.elementsByXPath( `//*[contains(@${ this.accessibilityIdXPathAttrib }, "Post title.")]` ); + if ( elements.length === 0 && options.autoscroll ) { + await swipeDown( this.driver ); + return this.getTitleElement( options ); + } + return elements[ elements.length - 1 ]; + } + + async getTextViewForHtmlViewContent() { + const accessibilityId = `html-view-content${ this.accessibilityIdSuffix }`; + let blockLocator = `//*[@${ this.accessibilityIdXPathAttrib }="${ accessibilityId }"]`; + + if ( ! isAndroid() ) { + blockLocator += '//XCUIElementTypeTextView'; + } + return await this.driver.elementByXPath( blockLocator ); + } + + // Converts to lower case and checks for a match to lowercased html content + // Ensure to take additional steps to handle text being changed by auto correct + async verifyHtmlContent( html: string ) { + await toggleHtmlMode( this.driver, true ); + + const htmlContentView = await this.getTextViewForHtmlViewContent(); + const text = await htmlContentView.text(); + expect( text.toLowerCase() ).toBe( html.toLowerCase() ); + + await toggleHtmlMode( this.driver, false ); + } + + // set html editor content explicitly + async setHtmlContentAndroid( html: string ) { + await toggleHtmlMode( this.driver, true ); + + const htmlContentView = await this.getTextViewForHtmlViewContent(); + await htmlContentView.setText( html ); + + await toggleHtmlMode( this.driver, false ); + } + + async dismissKeyboard() { + await this.driver.sleep( 1000 ); /// wait for any keyboard animations + const keyboardShown = await this.driver.isKeyboardShown(); + if ( ! keyboardShown ) { + return; + } + if ( isAndroid() ) { + return await this.driver.hideDeviceKeyboard(); + } + const hideKeyboardToolbarButton = await this.driver.elementByXPath( '//XCUIElementTypeButton[@name="Hide keyboard"]' ); + await hideKeyboardToolbarButton.click(); + } + + // ========================= + // Block toolbar functions + // ========================= + + async addNewBlock( blockName: string ) { + // Click add button + let identifier = 'Add block'; + if ( isAndroid() ) { + identifier = 'Add block, Double tap to add a block'; + } + const addButton = await this.driver.elementByAccessibilityId( identifier ); + await addButton.click(); + + // Click on block of choice + const blockButton = await this.driver.elementByAccessibilityId( blockName ); + await blockButton.click(); + } + + // ========================= + // Inline toolbar functions + // ========================= + + // position of the block to move up + async moveBlockUpAtPosition( position: number, blockName: string = '' ) { + if ( ! await this.hasBlockAtPosition( position, blockName ) ) { + throw Error( `No Block at position ${ position }` ); + } + const parentId = `${ blockName } Block. Row ${ position }.${ this.accessibilityIdSuffix }`; + const parentLocator = `//*[@${ this.accessibilityIdXPathAttrib }="${ parentId }"]`; + + const blockId = `Move block up from row ${ position } to row ${ position - 1 }${ this.accessibilityIdSuffix }`; + let blockLocator = `${ parentLocator }/following-sibling::*`; + blockLocator += isAndroid() ? '' : '//*'; + blockLocator += `[@${ this.accessibilityIdXPathAttrib }="${ blockId }"]`; + const moveUpButton = await this.driver.elementByXPath( blockLocator ); + await moveUpButton.click(); + } + + // position of the block to move down + async moveBlockDownAtPosition( position: number, blockName: string = '' ) { + if ( ! await this.hasBlockAtPosition( position, blockName ) ) { + throw Error( `No Block at position ${ position }` ); + } + + const parentId = `${ blockName } Block. Row ${ position }.`; + const parentLocator = `//*[contains(@${ this.accessibilityIdXPathAttrib }, "${ parentId }")]`; + + const blockId = `Move block down from row ${ position } to row ${ position + 1 }${ this.accessibilityIdSuffix }`; + let blockLocator = `${ parentLocator }/following-sibling::*`; + blockLocator += isAndroid() ? '' : '//*'; + blockLocator += `[@${ this.accessibilityIdXPathAttrib }="${ blockId }"]`; + const moveDownButton = await this.driver.elementByXPath( blockLocator ); + await moveDownButton.click(); + } + + // position of the block to remove + // Block will no longer be present if this succeeds + async removeBlockAtPosition( position: number, blockName: string = '' ) { + if ( ! await this.hasBlockAtPosition( position, blockName ) ) { + throw Error( `No Block at position ${ position }` ); + } + + const parentId = `${ blockName } Block. Row ${ position }.`; + const parentLocator = `//*[contains(@${ this.accessibilityIdXPathAttrib }, "${ parentId }")]`; + let removeBlockLocator = `${ parentLocator }`; + removeBlockLocator += isAndroid() ? '//*' : '//XCUIElementTypeButton'; + let removeButtonIdentifier = `Remove block at row ${ position }`; + + if ( isAndroid() ) { + removeButtonIdentifier += `, Double tap to remove the block${ this.accessibilityIdSuffix }`; + const block = await this.getBlockAtPosition( position, blockName ); + let checkList = await this.driver.elementsByXPath( removeBlockLocator ); + while ( checkList.length === 0 ) { + await swipeUp( this.driver, block ); // Swipe up to show remove icon at the bottom + checkList = await this.driver.elementsByXPath( removeBlockLocator ); + } + } + + removeBlockLocator += `[@${ this.accessibilityIdXPathAttrib }="${ removeButtonIdentifier }"]`; + const removeButton = await this.driver.elementByXPath( removeBlockLocator ); + await removeButton.click(); + } + + // ========================= + // Paragraph Block functions + // ========================= + + async addNewParagraphBlock() { + await this.addNewBlock( this.paragraphBlockName ); + } + + async getParagraphBlockAtPosition( position: number, options: { autoscroll: boolean } = { autoscroll: false } ) { + return this.getBlockAtPosition( position, this.paragraphBlockName, options ); + } + + async hasParagraphBlockAtPosition( position: number ) { + return this.hasBlockAtPosition( position, this.paragraphBlockName ); + } + + async getTextViewForParagraphBlock( block: wd.PromiseChainWebdriver.Element ) { + let textViewElementName = 'XCUIElementTypeTextView'; + if ( isAndroid() ) { + textViewElementName = 'android.widget.EditText'; + } + + const accessibilityId = await block.getAttribute( this.accessibilityIdKey ); + const blockLocator = `//*[@${ this.accessibilityIdXPathAttrib }=${ JSON.stringify( accessibilityId ) }]//${ textViewElementName }`; + return await this.driver.elementByXPath( blockLocator ); + } + + async sendTextToParagraphBlock( block: wd.PromiseChainWebdriver.Element, text: string ) { + const textViewElement = await this.getTextViewForParagraphBlock( block ); + await typeString( this.driver, textViewElement, text ); + await this.driver.sleep( 1000 ); // Give time for the block to rerender (such as for accessibility) + } + + async sendTextToParagraphBlockAtPosition( position: number, text: string ) { + const paragraphs = text.split( '\n' ); + for ( let i = 0; i < paragraphs.length; i++ ) { + // Select block first + const block = await this.getParagraphBlockAtPosition( position + i ); + await block.click(); + + await this.sendTextToParagraphBlock( block, paragraphs[ i ] ); + if ( i !== paragraphs.length - 1 ) { + await this.sendTextToParagraphBlock( block, '\n' ); + } + } + } + + async getTextForParagraphBlock( block: wd.PromiseChainWebdriver.Element ) { + const textViewElement = await this.getTextViewForParagraphBlock( block ); + const text = await textViewElement.text(); + return text.toString(); + } + + async removeParagraphBlockAtPosition( position: number ) { + await this.removeBlockAtPosition( position, this.paragraphBlockName ); + } + + async getTextForParagraphBlockAtPosition( position: number ) { + // Select block first + let block = await this.getParagraphBlockAtPosition( position ); + await block.click(); + + block = await this.getParagraphBlockAtPosition( position ); + const text = await this.getTextForParagraphBlock( block ); + return text.toString(); + } + + // ========================= + // List Block functions + // ========================= + + async addNewListBlock() { + await this.addNewBlock( this.listBlockName ); + } + + async getListBlockAtPosition( position: number ) { + return this.getBlockAtPosition( position, this.listBlockName ); + } + + async hasListBlockAtPosition( position: number ) { + return await this.hasBlockAtPosition( position, this.listBlockName ); + } + + async getTextViewForListBlock( block: wd.PromiseChainWebdriver.Element ) { + let textViewElementName = 'XCUIElementTypeTextView'; + if ( isAndroid() ) { + textViewElementName = 'android.widget.EditText'; + } + + const accessibilityId = await block.getAttribute( this.accessibilityIdKey ); + const blockLocator = `//*[@${ this.accessibilityIdXPathAttrib }=${ JSON.stringify( accessibilityId ) }]//${ textViewElementName }`; + return await this.driver.elementByXPath( blockLocator ); + } + + async sendTextToListBlock( block: wd.PromiseChainWebdriver.Element, text: string ) { + const textViewElement = await this.getTextViewForListBlock( block ); + return await typeString( this.driver, textViewElement, text ); + } + + async getTextForListBlock( block: wd.PromiseChainWebdriver.Element ) { + const textViewElement = await this.getTextViewForListBlock( block ); + const text = await textViewElement.text(); + return text.toString(); + } + + async removeListBlockAtPosition( position: number ) { + return await this.removeBlockAtPosition( position, this.listBlockName ); + } + + async getTextForListBlockAtPosition( position: number ) { + const block = await this.getListBlockAtPosition( position ); + const text = await this.getTextForListBlock( block ); + return text.toString(); + } + + // ========================= + // Image Block functions + // ========================= + + async addNewImageBlock() { + await this.addNewBlock( this.imageBlockName ); + } + + async getImageBlockAtPosition( position: number ) { + return this.getBlockAtPosition( position, this.imageBlockName ); + } + + async selectEmptyImageBlock( block: wd.PromiseChainWebdriver.Element ) { + const accessibilityId = await block.getAttribute( this.accessibilityIdKey ); + const blockLocator = `//*[@${ this.accessibilityIdXPathAttrib }="${ accessibilityId }"]//XCUIElementTypeButton[@name="Image block. Empty"]`; + const imageBlockInnerElement = await this.driver.elementByXPath( blockLocator ); + await imageBlockInnerElement.click(); + } + + async chooseMediaLibrary() { + const mediaLibraryButton = await this.driver.elementByAccessibilityId( 'WordPress Media Library' ); + await mediaLibraryButton.click(); + } + + async enterCaptionToSelectedImageBlock( caption: string ) { + const imageBlockCaptionField = await this.driver.elementByXPath( '//XCUIElementTypeButton[@name="Image caption. Empty"]' ); + await imageBlockCaptionField.click(); + await typeString( this.driver, imageBlockCaptionField, caption ); + } + + async removeImageBlockAtPosition( position: number ) { + return await this.removeBlockAtPosition( position, this.imageBlockName ); + } + + // ========================= + // Heading Block functions + // ========================= + async addNewHeadingBlock() { + await this.addNewBlock( this.headingBlockName ); + } + + async getHeadingBlockAtPosition( position: number ) { + return this.getBlockAtPosition( position, this.headingBlockName ); + } + + // Inner element changes on iOS if Heading Block is empty + async getTextViewForHeadingBlock( block: wd.PromiseChainWebdriver.Element, empty: boolean ) { + let textViewElementName = empty ? 'XCUIElementTypeStaticText' : 'XCUIElementTypeTextView'; + if ( isAndroid() ) { + textViewElementName = 'android.widget.EditText'; + } + + const accessibilityId = await block.getAttribute( this.accessibilityIdKey ); + const blockLocator = `//*[@${ this.accessibilityIdXPathAttrib }="${ accessibilityId }"]//${ textViewElementName }`; + return await this.driver.elementByXPath( blockLocator ); + } + + async sendTextToHeadingBlock( block: wd.PromiseChainWebdriver.Element, text: string ) { + const textViewElement = await this.getTextViewForHeadingBlock( block, true ); + return await typeString( this.driver, textViewElement, text ); + } + + async getTextForHeadingBlock( block: wd.PromiseChainWebdriver.Element ) { + const textViewElement = await this.getTextViewForHeadingBlock( block, false ); + const text = await textViewElement.text(); + return text.toString(); + } +} diff --git a/packages/react-native-editor/android/app/BUCK b/packages/react-native-editor/android/app/BUCK new file mode 100644 index 00000000000000..bd517c4b3f0328 --- /dev/null +++ b/packages/react-native-editor/android/app/BUCK @@ -0,0 +1,55 @@ +# To learn about Buck see [Docs](https://buckbuild.com/). +# To run your application with Buck: +# - install Buck +# - `npm start` - to start the packager +# - `cd android` +# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` +# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck +# - `buck install -r android/app` - compile, install and run application +# + +load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") + +lib_deps = [] + +create_aar_targets(glob(["libs/*.aar"])) + +create_jar_targets(glob(["libs/*.jar"])) + +android_library( + name = "all-libs", + exported_deps = lib_deps, +) + +android_library( + name = "app-code", + srcs = glob([ + "src/main/java/**/*.java", + ]), + deps = [ + ":all-libs", + ":build_config", + ":res", + ], +) + +android_build_config( + name = "build_config", + package = "com.gutenberg", +) + +android_resource( + name = "res", + package = "com.gutenberg", + res = "src/main/res", +) + +android_binary( + name = "app", + keystore = "//android/keystores:debug", + manifest = "src/main/AndroidManifest.xml", + package_type = "debug", + deps = [ + ":app-code", + ], +) diff --git a/packages/react-native-editor/android/app/build.gradle b/packages/react-native-editor/android/app/build.gradle new file mode 100644 index 00000000000000..05ddeee546995d --- /dev/null +++ b/packages/react-native-editor/android/app/build.gradle @@ -0,0 +1,164 @@ +apply plugin: "com.android.application" + +import com.android.build.OutputFile + +/** + * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets + * and bundleReleaseJsAndAssets). + * These basically call `react-native bundle` with the correct arguments during the Android build + * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the + * bundle directly from the development server. Below you can see all the possible configurations + * and their defaults. If you decide to add a configuration block, make sure to add it before the + * `apply from: "../../node_modules/react-native/react.gradle"` line. + * + * project.ext.react = [ + * // the name of the generated asset file containing your JS bundle + * bundleAssetName: "index.android.bundle", + * + * // the entry file for bundle generation + * entryFile: "index.android.js", + * + * // whether to bundle JS and assets in debug mode + * bundleInDebug: false, + * + * // whether to bundle JS and assets in release mode + * bundleInRelease: true, + * + * // whether to bundle JS and assets in another build variant (if configured). + * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants + * // The configuration property can be in the following formats + * // 'bundleIn${productFlavor}${buildType}' + * // 'bundleIn${buildType}' + * // bundleInFreeDebug: true, + * // bundleInPaidRelease: true, + * // bundleInBeta: true, + * + * // whether to disable dev mode in custom build variants (by default only disabled in release) + * // for example: to disable dev mode in the staging build type (if configured) + * devDisabledInStaging: true, + * // The configuration property can be in the following formats + * // 'devDisabledIn${productFlavor}${buildType}' + * // 'devDisabledIn${buildType}' + * + * // the root of your project, i.e. where "package.json" lives + * root: "../../", + * + * // where to put the JS bundle asset in debug mode + * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", + * + * // where to put the JS bundle asset in release mode + * jsBundleDirRelease: "$buildDir/intermediates/assets/release", + * + * // where to put drawable resources / React Native assets, e.g. the ones you use via + * // require('./image.png')), in debug mode + * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", + * + * // where to put drawable resources / React Native assets, e.g. the ones you use via + * // require('./image.png')), in release mode + * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", + * + * // by default the gradle tasks are skipped if none of the JS files or assets change; this means + * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to + * // date; if you have any other folders that you want to ignore for performance reasons (gradle + * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ + * // for example, you might want to remove it from here. + * inputExcludes: ["android/**", "ios/**"], + * + * // override which node gets called and with what additional arguments + * nodeExecutableAndArgs: ["node"], + * + * // supply additional arguments to the packager + * extraPackagerArgs: [] + * ] + */ + +project.ext.react = [ + entryFile: "index.js" +] + +apply from: "../../node_modules/react-native/react.gradle" + +/** + * Set this to true to create two separate APKs instead of one: + * - An APK that only works on ARM devices + * - An APK that only works on x86 devices + * The advantage is the size of the APK is reduced by about 4MB. + * Upload all the APKs to the Play Store and people will download + * the correct one based on the CPU architecture of their device. + */ +def enableSeparateBuildPerCPUArchitecture = false + +/** + * Run Proguard to shrink the Java bytecode in release builds. + */ +def enableProguardInReleaseBuilds = false + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + defaultConfig { + applicationId "com.gutenberg" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode 1 + versionName "1.0" + } + splits { + abi { + reset() + enable enableSeparateBuildPerCPUArchitecture + universalApk false // If true, also generate a universal APK + include "armeabi-v7a", "x86", "arm64-v8a", "x86-64" + } + } + buildTypes { + release { + minifyEnabled enableProguardInReleaseBuilds + proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" + } + } + // applicationVariants are e.g. debug, release + applicationVariants.all { variant -> + variant.outputs.each { output -> + // For each separate APK per architecture, set a unique version code as described here: + // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits + def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86-64": 4] + def abi = output.getFilter(OutputFile.ABI) + if (abi != null) { // null for the universal-debug, universal-release variants + output.versionCodeOverride = + versionCodes.get(abi) * 1048576 + defaultConfig.versionCode + } + } + } +} + +repositories { + google() + jcenter() + maven { url "https://jitpack.io" } +} + + +dependencies { + implementation project(':@react-native-community_slider') + implementation project(':react-native-video') + implementation project(':react-native-svg') + implementation project(':react-native-aztec') + implementation project(':react-native-recyclerview-list') + implementation project(':react-native-gutenberg-bridge') + implementation "org.wordpress:utils:$wordpressUtilsVersion" + implementation 'androidx.appcompat:appcompat:1.0.0' + implementation "com.facebook.react:react-native:+" // From node_modules +} + +// Run this once to be able to run the application with BUCK +// puts all compile dependencies into folder libs for BUCK to use +task copyDownloadableDepsToLibs(type: Copy) { + from configurations.compile + into 'libs' +} diff --git a/packages/react-native-editor/android/app/build_defs.bzl b/packages/react-native-editor/android/app/build_defs.bzl new file mode 100644 index 00000000000000..fff270f8d1d484 --- /dev/null +++ b/packages/react-native-editor/android/app/build_defs.bzl @@ -0,0 +1,19 @@ +"""Helper definitions to glob .aar and .jar targets""" + +def create_aar_targets(aarfiles): + for aarfile in aarfiles: + name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] + lib_deps.append(":" + name) + android_prebuilt_aar( + name = name, + aar = aarfile, + ) + +def create_jar_targets(jarfiles): + for jarfile in jarfiles: + name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] + lib_deps.append(":" + name) + prebuilt_jar( + name = name, + binary_jar = jarfile, + ) diff --git a/packages/react-native-editor/android/app/proguard-rules.pro b/packages/react-native-editor/android/app/proguard-rules.pro new file mode 100644 index 00000000000000..a92fa177ee49f0 --- /dev/null +++ b/packages/react-native-editor/android/app/proguard-rules.pro @@ -0,0 +1,17 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} diff --git a/packages/react-native-editor/android/app/src/debug/AndroidManifest.xml b/packages/react-native-editor/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 00000000000000..1fce564881ff37 --- /dev/null +++ b/packages/react-native-editor/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/packages/react-native-editor/android/app/src/debug/res/xml/react_native_config.xml b/packages/react-native-editor/android/app/src/debug/res/xml/react_native_config.xml new file mode 100644 index 00000000000000..ba4b23070be6cc --- /dev/null +++ b/packages/react-native-editor/android/app/src/debug/res/xml/react_native_config.xml @@ -0,0 +1,8 @@ + + + + localhost + 10.0.2.2 + 10.0.3.2 + + diff --git a/packages/react-native-editor/android/app/src/main/AndroidManifest.xml b/packages/react-native-editor/android/app/src/main/AndroidManifest.xml new file mode 100644 index 00000000000000..3678735b5c2b50 --- /dev/null +++ b/packages/react-native-editor/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + diff --git a/packages/react-native-editor/android/app/src/main/java/com/gutenberg/MainActivity.java b/packages/react-native-editor/android/app/src/main/java/com/gutenberg/MainActivity.java new file mode 100644 index 00000000000000..f5f8ff7b247d06 --- /dev/null +++ b/packages/react-native-editor/android/app/src/main/java/com/gutenberg/MainActivity.java @@ -0,0 +1,15 @@ +package com.gutenberg; + +import com.facebook.react.ReactActivity; + +public class MainActivity extends ReactActivity { + + /** + * Returns the name of the main component registered from JavaScript. + * This is used to schedule rendering of the component. + */ + @Override + protected String getMainComponentName() { + return "gutenberg"; + } +} diff --git a/packages/react-native-editor/android/app/src/main/java/com/gutenberg/MainApplication.java b/packages/react-native-editor/android/app/src/main/java/com/gutenberg/MainApplication.java new file mode 100644 index 00000000000000..18b177c2201868 --- /dev/null +++ b/packages/react-native-editor/android/app/src/main/java/com/gutenberg/MainApplication.java @@ -0,0 +1,171 @@ +package com.gutenberg; + +import android.app.Application; +import android.util.Log; + +import androidx.core.util.Consumer; + +import com.facebook.react.ReactApplication; +import com.reactnativecommunity.slider.ReactSliderPackage; +import com.brentvatne.react.ReactVideoPackage; +import com.facebook.react.bridge.ReadableArray; +import com.facebook.react.devsupport.interfaces.DevOptionHandler; +import com.facebook.react.devsupport.interfaces.DevSupportManager; +import com.horcrux.svg.SvgPackage; + +import org.wordpress.mobile.ReactNativeAztec.ReactAztecPackage; +import org.wordpress.mobile.ReactNativeGutenbergBridge.GutenbergBridgeJS2Parent; +import org.wordpress.mobile.ReactNativeGutenbergBridge.RNReactNativeGutenbergBridgePackage; + +import com.github.godness84.RNRecyclerViewList.RNRecyclerviewListPackage; +import com.facebook.react.ReactNativeHost; +import com.facebook.react.ReactPackage; +import com.facebook.react.shell.MainReactPackage; +import com.facebook.soloader.SoLoader; + +import java.util.Arrays; +import java.util.List; + +public class MainApplication extends Application implements ReactApplication { + + private static final String TAG = "MainApplication"; + + private ReactNativeHost mReactNativeHost; + private RNReactNativeGutenbergBridgePackage mRnReactNativeGutenbergBridgePackage; + + private ReactNativeHost createReactNativeHost() { + mRnReactNativeGutenbergBridgePackage = new RNReactNativeGutenbergBridgePackage(new GutenbergBridgeJS2Parent() { + @Override + public void responseHtml(String title, String html, boolean changed) { + } + + @Override + public void requestMediaImport(String url, MediaUploadCallback mediaUploadCallback) { + } + + @Override + public void requestMediaPickerFromDeviceCamera(MediaUploadCallback mediaUploadCallback, MediaType mediaType) { + } + + @Override + public void requestMediaPickFromDeviceLibrary(MediaUploadCallback mediaUploadCallback, Boolean allowMultipleSelection, MediaType mediaType) { + } + + @Override + public void requestMediaPickFromMediaLibrary(MediaUploadCallback mediaUploadCallback, Boolean allowMultipleSelection, MediaType mediaType) { + } + + + @Override + public void mediaUploadSync(MediaUploadCallback mediaUploadCallback) { + } + + @Override + public void requestImageFailedRetryDialog(int mediaId) { + } + + @Override + public void requestImageUploadCancelDialog(int mediaId) { + } + + @Override + public void requestImageUploadCancel(int mediaId) { + } + + @Override + public void editorDidMount(ReadableArray unsupportedBlockNames) { + } + + @Override + public void editorDidAutosave() { + } + + @Override + public void getOtherMediaPickerOptions(OtherMediaOptionsReceivedCallback otherMediaOptionsReceivedCallback, MediaType mediaType) { + + } + + @Override + public void requestMediaPickFrom(String mediaSource, MediaUploadCallback mediaUploadCallback, Boolean allowMultipleSelection) { + + } + + @Override + public void requestImageFullscreenPreview(String mediaUrl) { + + } + + @Override + public void editorDidEmitLog(String message, LogLevel logLevel) { + switch (logLevel) { + case TRACE: + Log.d(TAG, message); + break; + case INFO: + Log.i(TAG, message); + break; + case WARN: + Log.w(TAG, message); + break; + case ERROR: + Log.e(TAG, message); + break; + } + } + + @Override + public void performRequest(String path, Consumer onSuccess, Consumer onError) {} + }); + + return new ReactNativeHost(this) { + @Override + public boolean getUseDeveloperSupport() { + return BuildConfig.DEBUG; + } + + @Override + protected List getPackages() { + return Arrays.asList( + new MainReactPackage(), + new ReactSliderPackage(), + new ReactVideoPackage(), + new SvgPackage(), + new ReactAztecPackage(), + new RNRecyclerviewListPackage(), + mRnReactNativeGutenbergBridgePackage); + } + + @Override + protected String getJSMainModuleName() { + return "index"; + } + }; + } + + @Override + public ReactNativeHost getReactNativeHost() { + if (mReactNativeHost == null) { + mReactNativeHost = createReactNativeHost(); + createCustomDevOptions(mReactNativeHost); + } + + return mReactNativeHost; + } + + @Override + public void onCreate() { + super.onCreate(); + SoLoader.init(this, /* native exopackage */ false); + } + + private void createCustomDevOptions(ReactNativeHost reactNativeHost) { + DevSupportManager devSupportManager = reactNativeHost.getReactInstanceManager().getDevSupportManager(); + + devSupportManager.addCustomDevOption("Show html", new DevOptionHandler() { + @Override + public void onOptionSelected() { + mRnReactNativeGutenbergBridgePackage.getRNReactNativeGutenbergBridgeModule().toggleEditorMode(); + } + }); + } +} diff --git a/packages/react-native-editor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/packages/react-native-editor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 00000000000000..a2f5908281d070 Binary files /dev/null and b/packages/react-native-editor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/packages/react-native-editor/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/packages/react-native-editor/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 00000000000000..1b523998081149 Binary files /dev/null and b/packages/react-native-editor/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/packages/react-native-editor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/packages/react-native-editor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 00000000000000..ff10afd6e182ed Binary files /dev/null and b/packages/react-native-editor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/packages/react-native-editor/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/packages/react-native-editor/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 00000000000000..115a4c768a20c9 Binary files /dev/null and b/packages/react-native-editor/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/packages/react-native-editor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/packages/react-native-editor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 00000000000000..dcd3cd80833582 Binary files /dev/null and b/packages/react-native-editor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/packages/react-native-editor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/packages/react-native-editor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 00000000000000..459ca609d3ae0d Binary files /dev/null and b/packages/react-native-editor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/packages/react-native-editor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/packages/react-native-editor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 00000000000000..8ca12fe024be86 Binary files /dev/null and b/packages/react-native-editor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/packages/react-native-editor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/packages/react-native-editor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 00000000000000..8e19b410a1b15f Binary files /dev/null and b/packages/react-native-editor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/packages/react-native-editor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/packages/react-native-editor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 00000000000000..b824ebdd48db91 Binary files /dev/null and b/packages/react-native-editor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/packages/react-native-editor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/packages/react-native-editor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 00000000000000..4c19a13c239cb6 Binary files /dev/null and b/packages/react-native-editor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/packages/react-native-editor/android/app/src/main/res/values/strings.xml b/packages/react-native-editor/android/app/src/main/res/values/strings.xml new file mode 100644 index 00000000000000..29e2e4d13944c2 --- /dev/null +++ b/packages/react-native-editor/android/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Gutenberg + diff --git a/packages/react-native-editor/android/app/src/main/res/values/styles.xml b/packages/react-native-editor/android/app/src/main/res/values/styles.xml new file mode 100644 index 00000000000000..319eb0ca100b5a --- /dev/null +++ b/packages/react-native-editor/android/app/src/main/res/values/styles.xml @@ -0,0 +1,8 @@ + + + + + + diff --git a/packages/react-native-editor/android/build.gradle b/packages/react-native-editor/android/build.gradle new file mode 100644 index 00000000000000..00832c500b3e47 --- /dev/null +++ b/packages/react-native-editor/android/build.gradle @@ -0,0 +1,39 @@ +buildscript { + ext { + gradlePluginVersion = '3.3.1' + kotlinVersion = '1.3.11' + buildToolsVersion = "28.0.3" + minSdkVersion = 21 + compileSdkVersion = 28 + targetSdkVersion = 28 + supportLibVersion = '28.0.0' + wordpressUtilsVersion = '1.22' + } + repositories { + google() + jcenter() + } + dependencies { + classpath "com.android.tools.build:gradle:$gradlePluginVersion" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" + } +} + +// Load the "build from source" flag value but default to `true` since this is the demo gutenberg-mobile project so +project.ext.buildGutenbergFromSource = project.properties.getOrDefault('wp.BUILD_GUTENBERG_FROM_SOURCE', true).toBoolean() + +allprojects { + repositories { + mavenLocal() + google() + jcenter() + maven { + // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm + url "$rootDir/../node_modules/react-native/android" + } + maven { + // Local Maven repo containing AARs with JSC library built for Android + url "$rootDir/../node_modules/jsc-android/dist" + } + } +} diff --git a/packages/react-native-editor/android/gradle.properties b/packages/react-native-editor/android/gradle.properties new file mode 100644 index 00000000000000..915f0e66f94853 --- /dev/null +++ b/packages/react-native-editor/android/gradle.properties @@ -0,0 +1,20 @@ +# Project-wide Gradle settings. + +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. + +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html + +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +# Default value: -Xmx10248m -XX:MaxPermSize=256m +# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 + +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. More details, visit +# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects +# org.gradle.parallel=true +android.enableJetifier=true +android.useAndroidX=true \ No newline at end of file diff --git a/packages/react-native-editor/android/gradle/wrapper/gradle-wrapper.jar b/packages/react-native-editor/android/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 00000000000000..01b8bf6b1f99ca Binary files /dev/null and b/packages/react-native-editor/android/gradle/wrapper/gradle-wrapper.jar differ diff --git a/packages/react-native-editor/android/gradle/wrapper/gradle-wrapper.properties b/packages/react-native-editor/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000000000..6e5b214208f7ba --- /dev/null +++ b/packages/react-native-editor/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Mon Jun 10 13:39:31 EDT 2019 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip diff --git a/packages/react-native-editor/android/gradlew b/packages/react-native-editor/android/gradlew new file mode 100755 index 00000000000000..cccdd3d517fc52 --- /dev/null +++ b/packages/react-native-editor/android/gradlew @@ -0,0 +1,172 @@ +#!/usr/bin/env sh + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=$(save "$@") + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then + cd "$(dirname "$0")" +fi + +exec "$JAVACMD" "$@" diff --git a/packages/react-native-editor/android/gradlew.bat b/packages/react-native-editor/android/gradlew.bat new file mode 100644 index 00000000000000..e95643d6a2ca62 --- /dev/null +++ b/packages/react-native-editor/android/gradlew.bat @@ -0,0 +1,84 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/packages/react-native-editor/android/keystores/BUCK b/packages/react-native-editor/android/keystores/BUCK new file mode 100644 index 00000000000000..88e4c31b28d497 --- /dev/null +++ b/packages/react-native-editor/android/keystores/BUCK @@ -0,0 +1,8 @@ +keystore( + name = "debug", + properties = "debug.keystore.properties", + store = "debug.keystore", + visibility = [ + "PUBLIC", + ], +) diff --git a/packages/react-native-editor/android/keystores/debug.keystore.properties b/packages/react-native-editor/android/keystores/debug.keystore.properties new file mode 100644 index 00000000000000..121bfb49f0dfda --- /dev/null +++ b/packages/react-native-editor/android/keystores/debug.keystore.properties @@ -0,0 +1,4 @@ +key.store=debug.keystore +key.alias=androiddebugkey +key.store.password=android +key.alias.password=android diff --git a/packages/react-native-editor/android/settings.gradle b/packages/react-native-editor/android/settings.gradle new file mode 100644 index 00000000000000..2bfa8086d673cd --- /dev/null +++ b/packages/react-native-editor/android/settings.gradle @@ -0,0 +1,15 @@ +rootProject.name = 'gutenberg' +include ':@react-native-community_slider' +project(':@react-native-community_slider').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/slider/src/android') +include ':react-native-video' +project(':react-native-video').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android-exoplayer') +include ':react-native-svg' +project(':react-native-svg').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-svg/android') +include ':react-native-aztec' +project(':react-native-aztec').projectDir = new File(rootProject.projectDir, '../react-native-aztec/android') +include ':react-native-recyclerview-list' +project(':react-native-recyclerview-list').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-recyclerview-list/android') +include ':react-native-gutenberg-bridge' +project(':react-native-gutenberg-bridge').projectDir = new File(rootProject.projectDir, '../react-native-gutenberg-bridge/android') + +include ':app' diff --git a/packages/react-native-editor/app.json b/packages/react-native-editor/app.json new file mode 100644 index 00000000000000..46dfa4ac079459 --- /dev/null +++ b/packages/react-native-editor/app.json @@ -0,0 +1,7 @@ +{ + "expo": { + "sdkVersion": "25.0.0" + }, + "name": "gutenberg", + "displayName": "Gutenberg" +} diff --git a/packages/react-native-editor/babel.config.js b/packages/react-native-editor/babel.config.js new file mode 100644 index 00000000000000..a4e2e8b8efc94c --- /dev/null +++ b/packages/react-native-editor/babel.config.js @@ -0,0 +1,53 @@ +/** @format */ + +module.exports = function( api ) { + api.cache( true ); + return { + presets: [ 'module:metro-react-native-babel-preset' ], + plugins: [ + '@babel/plugin-proposal-async-generator-functions', + '@babel/plugin-transform-runtime', + [ + 'react-native-platform-specific-extensions', + { + extensions: [ 'css', 'scss', 'sass' ], + }, + ], + ], + overrides: [ + { + // Transforms JSX into JS function calls and use `createElement` instead of the default `React.createElement` + plugins: [ + [ + '@babel/plugin-transform-react-jsx', + { + pragma: 'createElement', + pragmaFrag: 'Fragment', + }, + ], + ], + exclude: /node_modules\/(react-native|@react-native-community)/, + }, + { + // Auto-add `import { createElement } from '@wordpress/element';` when JSX is found + plugins: [ + [ + './gutenberg/packages/babel-plugin-import-jsx-pragma', + { + scopeVariable: 'createElement', + scopeVariableFrag: 'Fragment', + source: '@wordpress/element', + isDefault: false, + }, + ], + ], + exclude: /node_modules\/(react-native|@react-native-community)/, + }, + ], + env: { + development: { + plugins: [ '@babel/transform-react-jsx-source' ], + }, + }, + }; +}; diff --git a/packages/react-native-editor/bin/ci-checks-js.sh b/packages/react-native-editor/bin/ci-checks-js.sh new file mode 100755 index 00000000000000..6700012e58c58e --- /dev/null +++ b/packages/react-native-editor/bin/ci-checks-js.sh @@ -0,0 +1,36 @@ +function pOk() { + echo "[$(tput setaf 2)OK$(tput sgr0)]" +} + +function pFail() { + echo "[$(tput setaf 1)KO$(tput sgr0)]" + exit 1 +} + +# if both env variables are missing then force them to `true`. Otherwise will respect the combination passed externally +if [[ -z "${CHECK_CORRECTNESS}" ]] && [[ -z "${CHECK_TESTS}" ]] ; then + CHECK_CORRECTNESS=true + CHECK_TESTS=true +fi + +if [ "$CHECK_CORRECTNESS" = true ] ; then + yarn flow || pFail + yarn lint || pFail + yarn prettier:check || pFail +fi + +if [ "$GUTENBERG_AS_PARENT" = true ] ; then + TEST_SCRIPT_NAME='test:inside-gb' +else + TEST_SCRIPT_NAME='test' +fi + +if [ "$CHECK_TESTS" = true ] ; then + # we'll run the tests twich (once for each platform) if the platform env var is not set + if [[ -z "${TEST_RN_PLATFORM}" ]] ; then + TEST_RN_PLATFORM=android yarn ${TEST_SCRIPT_NAME} --maxWorkers=4 || pFail + TEST_RN_PLATFORM=ios yarn ${TEST_SCRIPT_NAME} --maxWorkers=4 || pFail + else + yarn ${TEST_SCRIPT_NAME} --maxWorkers=4 || pFail + fi +fi diff --git a/packages/react-native-editor/bin/generate-podspecs.sh b/packages/react-native-editor/bin/generate-podspecs.sh new file mode 100755 index 00000000000000..c35ea26161bdcd --- /dev/null +++ b/packages/react-native-editor/bin/generate-podspecs.sh @@ -0,0 +1,55 @@ +#!/bin/sh + +# Exit if any command fails +set -e + +# Change to the expected directory. +cd "$( dirname $0 )" +cd .. + +# Check for cocoapods & jq +command -v pod > /dev/null || ( echo Cocoapods is required to generate podspecs; exit 1 ) +command -v jq > /dev/null || ( echo jq is required to generate podspecs; exit 1 ) + +WD=$(pwd) +DEST="${WD}/react-native-gutenberg-bridge/third-party-podspecs" + +# Generate the external (non-RN podspecs) +EXTERNAL_PODSPECS=$(find "node_modules/react-native/third-party-podspecs" \ + "node_modules/react-native-svg" \ + "node_modules/react-native-keyboard-aware-scroll-view" \ + "node_modules/react-native-recyclerview-list" \ + "node_modules/react-native-safe-area" \ + "node_modules/react-native-dark-mode" -type f -name "*.podspec" -print) + +for podspec in $EXTERNAL_PODSPECS +do + pod=$(basename "$podspec" .podspec) + + echo "Generating podspec for $pod" + pod ipc spec $podspec > "$DEST/$pod.podspec.json" +done + +# Generate the React Native podspecs +# Change to the React Native directory to get relative paths for the RN podspecs +cd "node_modules/react-native" + +RN_PODSPECS=$(find * -type f -name "*.podspec" -not -path "third-party-podspecs/*" -print) +TMP_DEST=$(mktemp -d) + +for podspec in $RN_PODSPECS +do + pod=$(basename "$podspec" .podspec) + path=$(dirname "$podspec") + + echo "Generating podspec for $pod with path $path" + pod ipc spec $podspec > "$TMP_DEST/$pod.podspec.json" + cat "$TMP_DEST/$pod.podspec.json" | jq > "$DEST/$pod.podspec.json" + + # Add a "prepare_command" entry to each podspec so that 'pod install' will fetch sources from the correct directory + # and retains the existing prepare_command if it exists + prepare_command="TMP_DIR=\$(mktemp -d); mv * \$TMP_DIR; cp -R \"\$TMP_DIR/${path}\"/* ." + cat "$TMP_DEST/$pod.podspec.json" | jq --arg CMD "$prepare_command" '.prepare_command = "\($CMD) && \(.prepare_command // true)" + # Point to React Native fork. To be removed once https://github.com/facebook/react-native/issues/25349 is closed + | .source.git = "https://github.com/jtreanor/react-native.git"' > "$DEST/$pod.podspec.json" +done diff --git a/packages/react-native-editor/bin/po2android.js b/packages/react-native-editor/bin/po2android.js new file mode 100755 index 00000000000000..0158b59915e2f9 --- /dev/null +++ b/packages/react-native-editor/bin/po2android.js @@ -0,0 +1,118 @@ +#!/usr/bin/env node + +const gettextParser = require( 'gettext-parser' ), + fs = require( 'fs' ), + crypto = require( 'crypto' ); + +const indent = ' '; + +/** + * Encode a raw string into an Android-compatible value + * + * See: https://tekeye.uk/android/examples/android-string-resources-gotchas + * @param {string} unsafeXMLValue input string to be escaped + * @return {string} Escaped string to be copied into the XML node + */ +function escapeResourceXML( unsafeXMLValue ) { + // Let's first replace XML special characters that JSON.stringify does not escape: <, > and & + // Then let's use JSON.stringify to handle pre and post spaces as well as escaping ", \, \t and \n + return JSON.stringify( unsafeXMLValue.replace( /[<>&]/g, function( character ) { + switch ( character ) { + case '<': return '<'; + case '>': return '>'; + case '&': return '&'; + } + } ) ); +} + +/** + * Generate a unique string identifier to use as the `name` property in our xml. + * Try using the string first by stripping any non-alphanumeric characters and cropping it + * Then try hashing the string and appending it to the the sanatized string + * If none of the above makes a unique ref for our string throw an error + * + * @param {string} str raw string + * @param {string} prefix Optional prefix to add to the name + * @return {string} A unique name for this string + */ +const getUniqueName = ( function() { + const names = {}; + const ANDROID_MAX_NAME_LENGTH = 100; + const HASH_LENGTH = 8; + return ( str, prefix = 'gutenberg_native_' ) => { + const maxNameLength = ANDROID_MAX_NAME_LENGTH - prefix.length - HASH_LENGTH - 10; // leave some margin just in case + let name = str.replace( /\W+/g, '_' ).toLocaleLowerCase().substring( 0, maxNameLength ); + // trim underscores left and right + name = name.replace( /^_+|_+$/g, '' ); + // if name exists, use name + hash of the full string + if ( name in names ) { + const strHashShort = crypto.createHash( 'sha1' ).update( str ).digest( 'hex' ).substring( 0, HASH_LENGTH ); + name = `${ name }_${ strHashShort }`; + } + // if name still exists + if ( name in names ) { + throw new Error( `Could not generate a unique name for string "${ str }"` ); + } + names[ name ] = true; + return `${ prefix }${ name }`; + }; +}() ); + +function po2Android( poInput ) { + const po = gettextParser.po.parse( poInput ); + const translations = po.translations[ '' ]; + const androidResourcesMap = Object.values( translations ).reduce( ( result, translation ) => { + if ( ! translation.msgid ) { + return result; + } + const uniqueName = getUniqueName( translation.msgid ); + const escapedValue = escapeResourceXML( translation.msgid ); + const escapedValuePlural = escapeResourceXML( translation.msgid_plural || '' ); + const comment = translation.comments.extracted || ''; + let localizedEntry = ''; + if ( comment ) { + localizedEntry += `${ indent }\n`; + } + if ( translation.msgid_plural ) { + localizedEntry += `${ indent } +${ indent }${ indent }${ escapedValue } +${ indent }${ indent }${ escapedValuePlural } +${ indent } +`; + } else { + localizedEntry += `${ indent }${ escapedValue }\n`; + } + result[ uniqueName ] = localizedEntry; + return result; + }, {} ); + // try to minimize changes in diffs by sorting strings + const androidResourcesSortedList = Object.entries( androidResourcesMap ) + .sort( ( left, right ) => left[ 0 ].localeCompare( right[ 0 ] ) ) + .map( ( entry ) => entry[ 1 ] ); + return `\n\n${ androidResourcesSortedList.join( '' ) }\n`; +} + +if ( require.main === module ) { + if ( process.stdin.isTTY ) { + const potFileName = process.argv[ 2 ]; + const destination = process.argv[ 3 ]; + const potFileContent = fs.readFileSync( potFileName ); + const xmlOutput = po2Android( potFileContent, process.argv[ 3 ] ); + fs.writeFileSync( destination, xmlOutput ); + } else { + let inputData = ''; + process.stdin.on( 'readable', function() { + const chunk = this.read(); + if ( chunk !== null ) { + inputData += chunk; + } + } ); + process.stdin.on( 'end', function() { + process.stdout.write( po2Android( inputData ) ); + } ); + } + return; +} + +module.exports = po2Android; + diff --git a/packages/react-native-editor/bin/po2swift.js b/packages/react-native-editor/bin/po2swift.js new file mode 100755 index 00000000000000..05bb8029f8b51e --- /dev/null +++ b/packages/react-native-editor/bin/po2swift.js @@ -0,0 +1,47 @@ +#!/usr/bin/env node + +const gettextParser = require( 'gettext-parser' ), + fs = require( 'fs' ); + +function po2Swift( poInput ) { + const po = gettextParser.po.parse( poInput ); + const translations = po.translations[ '' ]; + const swiftStringsMap = Object.values( translations ).reduce( ( result, translation ) => { + if ( ! translation.msgid ) { + return result; + } + const encodedValue = JSON.stringify( translation.msgid ); + const encodedComment = JSON.stringify( translation.comments.extracted || '' ); + result[ translation.msgid ] = `_ = NSLocalizedString(${ encodedValue }, comment: ${ encodedComment })`; + return result; + }, {} ); + const swiftStringsSortedList = Object.entries( swiftStringsMap ) + .sort( ( left, right ) => left[ 0 ].localeCompare( right[ 0 ] ) ) + .map( ( entry ) => entry[ 1 ] ); + return `import Foundation\n\nprivate func dummy() {\n ${ swiftStringsSortedList.join( '\n ' ) }\n`; +} + +if ( require.main === module ) { + if ( process.stdin.isTTY ) { + const potFileName = process.argv[ 2 ]; + const destination = process.argv[ 3 ]; + const potFileContent = fs.readFileSync( potFileName ); + const swiftOutput = po2Swift( potFileContent, process.argv[ 3 ] ); + fs.writeFileSync( destination, swiftOutput ); + } else { + let inputData = ''; + process.stdin.on( 'readable', function() { + const chunk = this.read(); + if ( chunk !== null ) { + inputData += chunk; + } + } ); + process.stdin.on( 'end', function() { + process.stdout.write( po2Swift( inputData ) ); + } ); + } + return; +} + +module.exports = po2Swift; + diff --git a/packages/react-native-editor/bin/sauce-pre-upload.sh b/packages/react-native-editor/bin/sauce-pre-upload.sh new file mode 100755 index 00000000000000..234f013081f838 --- /dev/null +++ b/packages/react-native-editor/bin/sauce-pre-upload.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# check if CIRCLE_BRANCH variable is set +if [[ -n "$CIRCLE_BRANCH" ]] ; then + # replace / with - and assign to new var SAUCE_FILENAME + export SAUCE_FILENAME=${CIRCLE_BRANCH//[\/]/-}; + else + echo "Expected CIRCLE_BRANCH env variable"; +fi diff --git a/packages/react-native-editor/bin/update-bintray-repo.sh b/packages/react-native-editor/bin/update-bintray-repo.sh new file mode 100755 index 00000000000000..84b6ec57d6eab7 --- /dev/null +++ b/packages/react-native-editor/bin/update-bintray-repo.sh @@ -0,0 +1,77 @@ +#!/bin/sh + +# Check for jfrog-cli-go +command -v jfrog > /dev/null || { echo "jfrog-cli-go is required to update the repo. Install it with 'brew install jfrog-cli-go'" >&2; exit 1; } +# Check for xmlstarlet +command -v xmlstarlet > /dev/null || { echo "xmlstarlet is required to update the repo. Install it with 'brew install xmlstarlet'" >&2; exit 1; } + +# Exit if any command fails +set -e + +# Change to the expected directory. +cd "$( dirname $0 )" +cd .. + +TMP_WORKING_DIRECTORY=$(mktemp -d) + +BINTRAY_REPO="wordpress-mobile/react-native-mirror" +PACKAGE_PATHS=("node_modules/react-native/android/com/facebook/react/react-native" "node_modules/jsc-android/dist/org/webkit/android-jsc") + +package_name () { + local PACKAGE_PATH="$1" + xmlstarlet sel -t -v "/metadata/artifactId" "$PACKAGE_PATH/maven-metadata.xml" +} + +package_version () { + local PACKAGE_PATH="$1" + xmlstarlet sel -t -v "/metadata/versioning/versions/version" "$PACKAGE_PATH/maven-metadata.xml" +} + +check_bintray_version () { + local PACKAGE_NAME="$1" + local PACKAGE_VERSION="$2" + + jfrog bt version-show "${BINTRAY_REPO}/${PACKAGE_NAME}/${PACKAGE_VERSION}" &> /dev/null && echo "0" || echo "1" +} + +create_bintray_version () { + local PACKAGE_NAME="$1" + local PACKAGE_VERSION="$2" + local PACKAGE_PATH="$3" + + local BINTRAY_VERSION="${BINTRAY_REPO}/${PACKAGE_NAME}/${PACKAGE_VERSION}" + local GROUP_PATH=$(xmlstarlet sel -t -v "/metadata/groupId" "$PACKAGE_PATH/maven-metadata.xml" | tr "." "/") + + jfrog bt version-create "${BINTRAY_VERSION}" + jfrog bt upload "${PACKAGE_PATH}/${PACKAGE_VERSION}/*" "${BINTRAY_VERSION}" "${GROUP_PATH}/${PACKAGE_NAME}/${PACKAGE_VERSION}/" + jfrog bt version-publish "${BINTRAY_VERSION}" +} + +# Sign into Bintray +echo "Please sign into Bintray..." +echo "You can find your Bintray API key here: https://bintray.com/profile/edit" +jfrog bt config + +# Yarn install +echo "Running yarn install in '${TMP_WORKING_DIRECTORY}'..." +cp "package.json" "${TMP_WORKING_DIRECTORY}/" +cp "yarn.lock" "${TMP_WORKING_DIRECTORY}/" +cp -Ra "i18n-cache" "${TMP_WORKING_DIRECTORY}/" +cd "${TMP_WORKING_DIRECTORY}" +yarn install --silent + +# Find local packages in node_modules/ +echo "Getting local package details..." +for PACKAGE_PATH in "${PACKAGE_PATHS[@]}"; do + PACKAGE_NAME=$(package_name "${PACKAGE_PATH}") + PACKAGE_VERSION=$(package_version "${PACKAGE_PATH}") + + echo "Checking ${PACKAGE_NAME}@${PACKAGE_VERSION} on Bintray..." + NEEDS_UPDATE=$(check_bintray_version "${PACKAGE_NAME}" "${PACKAGE_VERSION}") + if [ "$NEEDS_UPDATE" == "0" ]; then + echo "${PACKAGE_NAME}@${PACKAGE_VERSION} is already up to date on Bintray" + else + echo "Uploading ${PACKAGE_NAME}@${PACKAGE_VERSION} to Bintray..." + create_bintray_version "${PACKAGE_NAME}" "${PACKAGE_VERSION}" "${PACKAGE_PATH}" + fi +done diff --git a/packages/react-native-editor/bundle/android/App.js b/packages/react-native-editor/bundle/android/App.js new file mode 100644 index 00000000000000..a60fb2b09b4df1 --- /dev/null +++ b/packages/react-native-editor/bundle/android/App.js @@ -0,0 +1,1800 @@ +var __DEV__=false,__BUNDLE_START_TIME__=this.nativePerformanceNow?nativePerformanceNow():Date.now(),process=this.process||{};process.env=process.env||{};process.env.NODE_ENV="production"; +!(function(r){"use strict";r.__r=o,r.__d=function(r,n,i){if(null!=e[n])return;e[n]={dependencyMap:i,factory:r,hasError:!1,importedAll:t,importedDefault:t,isInitialized:!1,publicModule:{exports:{}}}},r.__c=i,r.__registerSegment=function(r,e){v[r]=e};var e=i(),t={},n={}.hasOwnProperty;function i(){return e=Object.create(null)}function o(r){var t=r,n=e[t];return n&&n.isInitialized?n.publicModule.exports:d(t,n)}function l(r){var n=r;if(e[n]&&e[n].importedDefault!==t)return e[n].importedDefault;var i=o(n),l=i&&i.__esModule?i.default:i;return e[n].importedDefault=l}function u(r){var i=r;if(e[i]&&e[i].importedAll!==t)return e[i].importedAll;var l,u=o(i);if(u&&u.__esModule)l=u;else{if(l={},u)for(var a in u)n.call(u,a)&&(l[a]=u[a]);l.default=u}return e[i].importedAll=l}o.importDefault=l,o.importAll=u;var a=!1;function d(e,t){if(!a&&r.ErrorUtils){var n;a=!0;try{n=h(e,t)}catch(e){r.ErrorUtils.reportFatalError(e)}return a=!1,n}return h(e,t)}var c=16,f=65535;function p(r){return{segmentId:r>>>c,localId:r&f}}o.unpackModuleId=p,o.packModuleId=function(r){return(r.segmentId<0){var i=p(t),a=i.segmentId,d=i.localId,c=v[a];null!=c&&(c(d),n=e[t])}var f=r.nativeRequire;if(!n&&f){var h=p(t),g=h.segmentId;f(h.localId,g),n=e[t]}if(!n)throw Error('Requiring unknown module "'+t+'".');if(n.hasError)throw m(t,n.error);n.isInitialized=!0;var I=n,_=I.factory,w=I.dependencyMap;try{var y=n.publicModule;if(y.id=t,s.length>0)for(var M=0;M=0||f.indexOf('description')>=0))return o(e);if(0===f.length){if(h(e)){var s=e.name?': '+e.name:'';return n.stylize('[Function'+s+']','special')}if(p(e))return n.stylize(RegExp.prototype.toString.call(e),'regexp');if(y(e))return n.stylize(Date.prototype.toString.call(e),'date');if(v(e))return o(e)}var d,b,j='',m=!1,z=['{','}'];(d=e,Array.isArray(d)&&(m=!0,z=['[',']']),h(e))&&(j=' [Function'+(e.name?': '+e.name:'')+']');return p(e)&&(j=' '+RegExp.prototype.toString.call(e)),y(e)&&(j=' '+Date.prototype.toUTCString.call(e)),v(e)&&(j=' '+o(e)),0!==f.length||m&&0!=e.length?l<0?p(e)?n.stylize(RegExp.prototype.toString.call(e),'regexp'):n.stylize('[Object]','special'):(n.seen.push(e),b=m?i(n,e,l,g,f):f.map(function(r){return u(n,e,l,g,r,m)}),n.seen.pop(),a(b,j,z)):z[0]+j+z[1]}function t(n,r){if(g(r))return n.stylize('undefined','undefined');if('string'==typeof r){var e="'"+JSON.stringify(r).replace(/^"|"$/g,'').replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return n.stylize(e,'string')}return f(r)?n.stylize(''+r,'number'):l(r)?n.stylize(''+r,'boolean'):c(r)?n.stylize('null','null'):void 0}function o(n){return'['+Error.prototype.toString.call(n)+']'}function i(n,r,e,t,o){for(var i=[],a=0,l=r.length;a-1&&(l=u?l.split('\n').map(function(n){return' '+n}).join('\n').substr(2):'\n'+l.split('\n').map(function(n){return' '+n}).join('\n')):l=n.stylize('[Circular]','special')),g(a)){if(u&&i.match(/^\d+$/))return l;(a=JSON.stringify(''+i)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.substr(1,a.length-2),a=n.stylize(a,'name')):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=n.stylize(a,'string'))}return a+': '+l}function a(n,r,e){return n.reduce(function(n,r){return 0,r.indexOf('\n')>=0&&0,n+r.replace(/\u001b\[\d\d?m/g,'').length+1},0)>60?e[0]+(''===r?'':r+'\n ')+' '+n.join(',\n ')+' '+e[1]:e[0]+r+' '+n.join(', ')+' '+e[1]}function l(n){return'boolean'==typeof n}function c(n){return null===n}function f(n){return'number'==typeof n}function g(n){return void 0===n}function p(n){return s(n)&&'[object RegExp]'===d(n)}function s(n){return'object'==typeof n&&null!==n}function y(n){return s(n)&&'[object Date]'===d(n)}function v(n){return s(n)&&('[object Error]'===d(n)||n instanceof Error)}function h(n){return'function'==typeof n}function d(n){return Object.prototype.toString.call(n)}function b(n,r){return Object.prototype.hasOwnProperty.call(n,r)}return function(r,t){return e({seen:[],stylize:n},r,t.depth)}})(),e='(index)',t={trace:0,info:1,warn:2,error:3},o=[];o[t.trace]='debug',o[t.info]='log',o[t.warn]='warning',o[t.error]='error';var i=1;function u(e){return function(){var u;u=1===arguments.length&&'string'==typeof arguments[0]?arguments[0]:Array.prototype.map.call(arguments,function(n){return r(n,{depth:10})}).join(', ');var a=e;'Warning: '===u.slice(0,9)&&a>=t.error&&(a=t.warn),n.__inspectorLog&&n.__inspectorLog(o[a],u,[].slice.call(arguments),i),g.length&&(u=p('',u)),n.nativeLoggingHook(u,a)}}function a(n,r){return Array.apply(null,Array(r)).map(function(){return n})}var l="\u2502",c="\u2510",f="\u2518",g=[];function p(n,r){return g.join('')+n+' '+(r||'')}if(n.nativeLoggingHook){n.console;n.console={error:u(t.error),info:u(t.info),log:u(t.info),warn:u(t.warn),trace:u(t.trace),debug:u(t.trace),table:function(r){if(!Array.isArray(r)){var o=r;for(var i in r=[],o)if(o.hasOwnProperty(i)){var u=o[i];u[e]=i,r.push(u)}}if(0!==r.length){var l=Object.keys(r[0]).sort(),c=[],f=[];l.forEach(function(n,e){f[e]=n.length;for(var t=0;t',function(){return u.applyWithGuard(n,t||this,arguments,null,r)}}};n.ErrorUtils=u})('undefined'!=typeof global?global:'undefined'!=typeof window?window:this); +'undefined'!=typeof global?global:'undefined'!=typeof window&&window,(function(){'use strict';var e=Object.prototype.hasOwnProperty;'function'!=typeof Object.entries&&(Object.entries=function(n){if(null==n)throw new TypeError('Object.entries called on non-object');var t=[];for(var o in n)e.call(n,o)&&t.push([o,n[o]]);return t}),'function'!=typeof Object.values&&(Object.values=function(n){if(null==n)throw new TypeError('Object.values called on non-object');var t=[];for(var o in n)e.call(n,o)&&t.push(n[o]);return t})})(); +__d(function(g,r,i,a,m,e,d){(0,r(d[0]).registerApp)()},0,[1]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.registerApp=function(){console.disableYellowBox=!0,b(),f.AppRegistry.registerComponent('gutenberg',function(){return E})},e.RootComponent=void 0;var n=r(d[1]),o=t(r(d[2])),l=t(r(d[3])),s=t(r(d[4])),u=t(r(d[5])),p=t(r(d[6])),c=t(r(d[7])),f=r(d[8]),v=t(r(d[9])),T=r(d[10]);r(d[11]);var _=r(d[12]),h=(t(r(d[13])),t(r(d[14]))),b=function(){var t=r(d[15]);t.use(t.plugins.persistence,{storageKey:"WP_DATA_USER_1"})},y=function(t,n){f.I18nManager.forceRTL(!1);var o=(0,_.getTranslation)(t);t&&!o&&(t=t.replace(/[-_][A-Za-z]+$/,''),o=(0,_.getTranslation)(t));var l=(0,c.default)({},o,n);console.log('locale',t,l),(o||n)&&(0,T.setLocaleData)(l)},E=(function(t){function c(t){var n;return(0,o.default)(this,c),n=(0,s.default)(this,(0,u.default)(c).call(this,t)),y(t.locale,t.translations),(0,h.default)(),r(d[16]).initializeEditor(),n}return(0,p.default)(c,t),(0,l.default)(c,[{key:"render",value:function(){var t=this.props.initialHtmlModeEnabled,o=this.props.initialData,l=this.props.initialTitle,s=this.props.postType;void 0===l&&(l='Welcome to Gutenberg!'),void 0===s&&(s='post');var u=r(d[16]).Editor;return(0,n.createElement)(u,{initialHtml:o,initialHtmlModeEnabled:t,initialTitle:l,postType:s})}}]),c})(v.default.Component);e.RootComponent=E},1,[2,3,34,35,42,45,48,16,25,13,347,355,823,873,874,911,1022]); +__d(function(g,r,i,a,m,e,d){m.exports=function(n){return n&&n.__esModule?n:{default:n}}},2,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0});var n={__experimentalCreateInterpolateElement:!0,Platform:!0,renderToString:!0,RawHTML:!0};Object.defineProperty(e,"__experimentalCreateInterpolateElement",{enumerable:!0,get:function(){return o.default}}),Object.defineProperty(e,"Platform",{enumerable:!0,get:function(){return f.default}}),Object.defineProperty(e,"renderToString",{enumerable:!0,get:function(){return b.default}}),Object.defineProperty(e,"RawHTML",{enumerable:!0,get:function(){return p.default}});var o=t(r(d[1])),u=r(d[2]);Object.keys(u).forEach(function(t){"default"!==t&&"__esModule"!==t&&(Object.prototype.hasOwnProperty.call(n,t)||Object.defineProperty(e,t,{enumerable:!0,get:function(){return u[t]}}))});var l=r(d[3]);Object.keys(l).forEach(function(t){"default"!==t&&"__esModule"!==t&&(Object.prototype.hasOwnProperty.call(n,t)||Object.defineProperty(e,t,{enumerable:!0,get:function(){return l[t]}}))});var c=r(d[4]);Object.keys(c).forEach(function(t){"default"!==t&&"__esModule"!==t&&(Object.prototype.hasOwnProperty.call(n,t)||Object.defineProperty(e,t,{enumerable:!0,get:function(){return c[t]}}))});var f=t(r(d[5])),b=t(r(d[6])),p=t(r(d[7]))},3,[2,4,17,22,23,24,343,346]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n,l,u,s,o=t(r(d[1])),f=t(r(d[2])),c=r(d[3]),p=/<(\/)?(\w+)\s*(\/)?>/g;function v(t,n,l,u,s){return{element:t,tokenStart:n,tokenLength:l,prevOffset:u,leadingTextStart:s,children:[]}}var h=function(t){var n='object'==typeof t,l=n&&Object.values(t);return n&&l.length&&l.every(function(t){return(0,c.isValidElement)(t)})};function b(t){var f=O(),c=(0,o.default)(f,4),p=c[0],h=c[1],b=c[2],y=c[3],x=s.length,E=b>l?l:null;if(!t[h])return k(),!1;switch(p){case'no-more-tokens':if(0!==x){var T=s.pop(),j=T.leadingTextStart,_=T.tokenStart;u.push(n.substr(j,_))}return k(),!1;case'self-closed':return 0===x?(null!==E&&u.push(n.substr(E,b-E)),u.push(t[h]),l=b+y,!0):(w(new v(t[h],b,y)),l=b+y,!0);case'opener':return s.push(new v(t[h],b,y,b+y,E)),l=b+y,!0;case'closer':if(1===x)return S(b),l=b+y,!0;var L=s.pop(),I=n.substr(L.prevOffset,b-L.prevOffset);L.children.push(I),L.prevOffset=b+y;var M=new v(L.element,L.tokenStart,L.tokenLength,b+y);return M.children=L.children,w(M),l=b+y,!0;default:return k(),!1}}function O(){var t=p.exec(n);if(null===t)return['no-more-tokens'];var l=t.index,u=(0,o.default)(t,4),s=u[0],f=u[1],c=u[2],v=u[3],h=s.length;return v?['self-closed',c,l,h]:f?['closer',c,l,h]:['opener',c,l,h]}function k(){var t=n.length-l;0!==t&&u.push(n.substr(l,t))}function w(t){var l=t.element,u=t.tokenStart,o=t.tokenLength,p=t.prevOffset,v=t.children,h=s[s.length-1],b=n.substr(h.prevOffset,u-h.prevOffset);b&&h.children.push(b),h.children.push(c.cloneElement.apply(void 0,[l,null].concat((0,f.default)(v)))),h.prevOffset=p||u+o}function S(t){var l=s.pop(),o=l.element,p=l.leadingTextStart,v=l.prevOffset,h=l.tokenStart,b=l.children,O=t?n.substr(v,t-v):n.substr(v);O&&b.push(O),null!==p&&u.push(n.substr(p,h-p)),u.push(c.cloneElement.apply(void 0,[o,null].concat((0,f.default)(b))))}var y=function(t,o){if(n=t,l=0,u=[],s=[],p.lastIndex=0,!h(o))throw new TypeError('The conversionMap provided is not valid. It must be an object with values that are WPElements');do{}while(b(o));return c.createElement.apply(void 0,[c.Fragment,null].concat((0,f.default)(u)))};e.default=y},4,[2,5,9,13]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=r(d[1]),o=r(d[2]);m.exports=function(u,c){return n(u)||t(u,c)||o()}},5,[6,7,8]); +__d(function(g,r,i,a,m,e,d){m.exports=function(n){if(Array.isArray(n))return n}},6,[]); +__d(function(g,r,i,a,m,e,d){m.exports=function(t,n){var o=[],l=!0,u=!1,f=void 0;try{for(var y,c=t["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();!(l=(y=c.next()).done)&&(o.push(y.value),!n||o.length!==n);l=!0);}catch(t){u=!0,f=t}finally{try{l||null==c.return||c.return()}finally{if(u)throw f}}return o}},7,[]); +__d(function(g,r,i,a,m,e,d){m.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}},8,[]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=r(d[1]),o=r(d[2]);m.exports=function(u){return n(u)||t(u)||o()}},9,[10,11,12]); +__d(function(g,r,i,a,m,e,d){m.exports=function(n){if(Array.isArray(n)){for(var t=0,f=new Array(n.length);tV.length&&V.push(t)}function N(t,n,f,l){var c=typeof t;"undefined"!==c&&"boolean"!==c||(t=null);var p=!1;if(null===t)p=!0;else switch(c){case"string":case"number":p=!0;break;case"object":switch(t.$$typeof){case o:case u:p=!0}}if(p)return f(l,t,""===n?"."+B(t,0):n),1;if(p=0,n=""===n?".":n+":",Array.isArray(t))for(var y=0;y=0||Object.prototype.propertyIsEnumerable.call(n,l)&&(b[l]=n[l])}return b}},19,[20]); +__d(function(g,r,i,a,m,e,d){m.exports=function(n,t){if(null==n)return{};var f,u,o={},c=Object.keys(n);for(u=0;u=0||(o[f]=n[f]);return o}},20,[]); +__d(function(n,t,r,e,u,i,o){(function(){var t,r=200,e='Unsupported core-js use. Try https://npms.io/search?q=ponyfill.',o='Expected a function',f='__lodash_hash_undefined__',a=500,c='__lodash_placeholder__',l=1,s=2,h=4,p=1,v=2,_=1,g=2,d=4,y=8,x=16,b=32,w=64,m=128,j=256,A=512,k=30,z='...',O=800,I=16,R=1,E=2,S=1/0,L=9007199254740991,W=1.7976931348623157e308,C=NaN,T=4294967295,U=4294967294,B=2147483647,$=[['ary',m],['bind',_],['bindKey',g],['curry',y],['curryRight',x],['flip',A],['partial',b],['partialRight',w],['rearg',j]],D='[object Arguments]',M='[object Array]',F='[object AsyncFunction]',N='[object Boolean]',P='[object Date]',Z='[object DOMException]',q='[object Error]',K='[object Function]',V='[object GeneratorFunction]',G='[object Map]',H='[object Number]',J='[object Null]',Y='[object Object]',Q='[object Proxy]',X='[object RegExp]',nn='[object Set]',tn='[object String]',rn='[object Symbol]',en='[object Undefined]',un='[object WeakMap]',on='[object WeakSet]',fn='[object ArrayBuffer]',an='[object DataView]',cn='[object Float32Array]',ln='[object Float64Array]',sn='[object Int8Array]',hn='[object Int16Array]',pn='[object Int32Array]',vn='[object Uint8Array]',_n='[object Uint8ClampedArray]',gn='[object Uint16Array]',dn='[object Uint32Array]',yn=/\b__p \+= '';/g,xn=/\b(__p \+=) '' \+/g,bn=/(__e\(.*?\)|\b__t\)) \+\n'';/g,wn=/&(?:amp|lt|gt|quot|#39);/g,mn=/[&<>"']/g,jn=RegExp(wn.source),An=RegExp(mn.source),kn=/<%-([\s\S]+?)%>/g,zn=/<%([\s\S]+?)%>/g,On=/<%=([\s\S]+?)%>/g,In=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Rn=/^\w*$/,En=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Sn=/[\\^$.*+?()[\]{}|]/g,Ln=RegExp(Sn.source),Wn=/^\s+|\s+$/g,Cn=/^\s+/,Tn=/\s+$/,Un=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Bn=/\{\n\/\* \[wrapped with (.+)\] \*/,$n=/,? & /,Dn=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Mn=/\\(\\)?/g,Fn=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Nn=/\w*$/,Pn=/^[-+]0x[0-9a-f]+$/i,Zn=/^0b[01]+$/i,qn=/^\[object .+?Constructor\]$/,Kn=/^0o[0-7]+$/i,Vn=/^(?:0|[1-9]\d*)$/,Gn=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Hn=/($^)/,Jn=/['\n\r\u2028\u2029\\]/g,Yn="[\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000]",Qn="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",Xn="(?:\\ud83c[\\udde6-\\uddff]){2}",nt="[\\ud800-\\udbff][\\udc00-\\udfff]",tt="[\\ufe0e\\ufe0f]?(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?"+("(?:\\u200d(?:"+["[^\\ud800-\\udfff]",Xn,nt].join('|')+")[\\ufe0e\\ufe0f]?(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?)*"),rt='(?:'+["[\\u2700-\\u27bf]",Xn,nt].join('|')+')'+tt,et='(?:'+["[^\\ud800-\\udfff][\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]?",Qn,Xn,nt,"[\\ud800-\\udfff]"].join('|')+')',ut=RegExp("['\u2019]",'g'),it=RegExp(Qn,'g'),ot=RegExp("\\ud83c[\\udffb-\\udfff](?=\\ud83c[\\udffb-\\udfff])|"+et+tt,'g'),ft=RegExp(["[A-Z\\xc0-\\xd6\\xd8-\\xde]?[a-z\\xdf-\\xf6\\xf8-\\xff]+(?:['\u2019](?:d|ll|m|re|s|t|ve))?(?="+[Yn,"[A-Z\\xc0-\\xd6\\xd8-\\xde]",'$'].join('|')+')',"(?:[A-Z\\xc0-\\xd6\\xd8-\\xde]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['\u2019](?:D|LL|M|RE|S|T|VE))?(?="+[Yn,"[A-Z\\xc0-\\xd6\\xd8-\\xde](?:[a-z\\xdf-\\xf6\\xf8-\\xff]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])",'$'].join('|')+')',"[A-Z\\xc0-\\xd6\\xd8-\\xde]?(?:[a-z\\xdf-\\xf6\\xf8-\\xff]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['\u2019](?:d|ll|m|re|s|t|ve))?","[A-Z\\xc0-\\xd6\\xd8-\\xde]+(?:['\u2019](?:D|LL|M|RE|S|T|VE))?",'\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])','\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])','\\d+',rt].join('|'),'g'),at=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]"),ct=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,lt=['Array','Buffer','DataView','Date','Error','Float32Array','Float64Array','Function','Int8Array','Int16Array','Int32Array','Map','Math','Object','Promise','RegExp','Set','String','Symbol','TypeError','Uint8Array','Uint8ClampedArray','Uint16Array','Uint32Array','WeakMap','_','clearTimeout','isFinite','parseInt','setTimeout'],st=-1,ht={};ht[cn]=ht[ln]=ht[sn]=ht[hn]=ht[pn]=ht[vn]=ht[_n]=ht[gn]=ht[dn]=!0,ht[D]=ht[M]=ht[fn]=ht[N]=ht[an]=ht[P]=ht[q]=ht[K]=ht[G]=ht[H]=ht[Y]=ht[X]=ht[nn]=ht[tn]=ht[un]=!1;var pt={};pt[D]=pt[M]=pt[fn]=pt[an]=pt[N]=pt[P]=pt[cn]=pt[ln]=pt[sn]=pt[hn]=pt[pn]=pt[G]=pt[H]=pt[Y]=pt[X]=pt[nn]=pt[tn]=pt[rn]=pt[vn]=pt[_n]=pt[gn]=pt[dn]=!0,pt[q]=pt[K]=pt[un]=!1;var vt={'\\':'\\',"'":"'",'\n':'n','\r':'r',"\u2028":'u2028',"\u2029":'u2029'},_t=parseFloat,gt=parseInt,dt='object'==typeof n&&n&&n.Object===Object&&n,yt='object'==typeof self&&self&&self.Object===Object&&self,xt=dt||yt||Function('return this')(),bt='object'==typeof i&&i&&!i.nodeType&&i,wt=bt&&'object'==typeof u&&u&&!u.nodeType&&u,mt=wt&&wt.exports===bt,jt=mt&&dt.process,At=(function(){try{var n=wt&&wt.require&&wt.require('util').types;return n||jt&&jt.binding&&jt.binding('util')}catch(n){}})(),kt=At&&At.isArrayBuffer,zt=At&&At.isDate,Ot=At&&At.isMap,It=At&&At.isRegExp,Rt=At&&At.isSet,Et=At&&At.isTypedArray;function St(n,t,r){switch(r.length){case 0:return n.call(t);case 1:return n.call(t,r[0]);case 2:return n.call(t,r[0],r[1]);case 3:return n.call(t,r[0],r[1],r[2])}return n.apply(t,r)}function Lt(n,t,r,e){for(var u=-1,i=null==n?0:n.length;++u-1}function $t(n,t,r){for(var e=-1,u=null==n?0:n.length;++e-1;);return r}function lr(n,t){for(var r=n.length;r--&&Ht(t,n[r],0)>-1;);return r}function sr(n,t){for(var r=n.length,e=0;r--;)n[r]===t&&++e;return e}var hr=nr({'\xc0':'A','\xc1':'A','\xc2':'A','\xc3':'A','\xc4':'A','\xc5':'A','\xe0':'a','\xe1':'a','\xe2':'a','\xe3':'a','\xe4':'a','\xe5':'a','\xc7':'C','\xe7':'c','\xd0':'D','\xf0':'d','\xc8':'E','\xc9':'E','\xca':'E','\xcb':'E','\xe8':'e','\xe9':'e','\xea':'e','\xeb':'e','\xcc':'I','\xcd':'I','\xce':'I','\xcf':'I','\xec':'i','\xed':'i','\xee':'i','\xef':'i','\xd1':'N','\xf1':'n','\xd2':'O','\xd3':'O','\xd4':'O','\xd5':'O','\xd6':'O','\xd8':'O','\xf2':'o','\xf3':'o','\xf4':'o','\xf5':'o','\xf6':'o','\xf8':'o','\xd9':'U','\xda':'U','\xdb':'U','\xdc':'U','\xf9':'u','\xfa':'u','\xfb':'u','\xfc':'u','\xdd':'Y','\xfd':'y','\xff':'y','\xc6':'Ae','\xe6':'ae','\xde':'Th','\xfe':'th','\xdf':'ss',"\u0100":'A',"\u0102":'A',"\u0104":'A',"\u0101":'a',"\u0103":'a',"\u0105":'a',"\u0106":'C',"\u0108":'C',"\u010a":'C',"\u010c":'C',"\u0107":'c',"\u0109":'c',"\u010b":'c',"\u010d":'c',"\u010e":'D',"\u0110":'D',"\u010f":'d',"\u0111":'d',"\u0112":'E',"\u0114":'E',"\u0116":'E',"\u0118":'E',"\u011a":'E',"\u0113":'e',"\u0115":'e',"\u0117":'e',"\u0119":'e',"\u011b":'e',"\u011c":'G',"\u011e":'G',"\u0120":'G',"\u0122":'G',"\u011d":'g',"\u011f":'g',"\u0121":'g',"\u0123":'g',"\u0124":'H',"\u0126":'H',"\u0125":'h',"\u0127":'h',"\u0128":'I',"\u012a":'I',"\u012c":'I',"\u012e":'I',"\u0130":'I',"\u0129":'i',"\u012b":'i',"\u012d":'i',"\u012f":'i',"\u0131":'i',"\u0134":'J',"\u0135":'j',"\u0136":'K',"\u0137":'k',"\u0138":'k',"\u0139":'L',"\u013b":'L',"\u013d":'L',"\u013f":'L',"\u0141":'L',"\u013a":'l',"\u013c":'l',"\u013e":'l',"\u0140":'l',"\u0142":'l',"\u0143":'N',"\u0145":'N',"\u0147":'N',"\u014a":'N',"\u0144":'n',"\u0146":'n',"\u0148":'n',"\u014b":'n',"\u014c":'O',"\u014e":'O',"\u0150":'O',"\u014d":'o',"\u014f":'o',"\u0151":'o',"\u0154":'R',"\u0156":'R',"\u0158":'R',"\u0155":'r',"\u0157":'r',"\u0159":'r',"\u015a":'S',"\u015c":'S',"\u015e":'S',"\u0160":'S',"\u015b":'s',"\u015d":'s',"\u015f":'s',"\u0161":'s',"\u0162":'T',"\u0164":'T',"\u0166":'T',"\u0163":'t',"\u0165":'t',"\u0167":'t',"\u0168":'U',"\u016a":'U',"\u016c":'U',"\u016e":'U',"\u0170":'U',"\u0172":'U',"\u0169":'u',"\u016b":'u',"\u016d":'u',"\u016f":'u',"\u0171":'u',"\u0173":'u',"\u0174":'W',"\u0175":'w',"\u0176":'Y',"\u0177":'y',"\u0178":'Y',"\u0179":'Z',"\u017b":'Z',"\u017d":'Z',"\u017a":'z',"\u017c":'z',"\u017e":'z',"\u0132":'IJ',"\u0133":'ij',"\u0152":'Oe',"\u0153":'oe',"\u0149":"'n","\u017f":'s'}),pr=nr({'&':'&','<':'<','>':'>','"':'"',"'":'''});function vr(n){return'\\'+vt[n]}function _r(n,r){return null==n?t:n[r]}function gr(n){return at.test(n)}function dr(n){return ct.test(n)}function yr(n){for(var t,r=[];!(t=n.next()).done;)r.push(t.value);return r}function xr(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function br(n,t){return function(r){return n(t(r))}}function wr(n,t){for(var r=-1,e=n.length,u=0,i=[];++r','"':'"',''':"'"});function Rr(n){for(var t=ot.lastIndex=0;ot.test(n);)++t;return t}function Er(n){return n.match(ot)||[]}function Sr(n){return n.match(ft)||[]}var Lr=(function n(u){var i,Dn=(u=null==u?xt:Lr.defaults(xt.Object(),u,Lr.pick(xt,lt))).Array,Yn=u.Date,Qn=u.Error,Xn=u.Function,nt=u.Math,tt=u.Object,rt=u.RegExp,et=u.String,ot=u.TypeError,ft=Dn.prototype,at=Xn.prototype,ct=tt.prototype,vt=u['__core-js_shared__'],dt=at.toString,yt=ct.hasOwnProperty,bt=0,wt=(i=/[^.]+$/.exec(vt&&vt.keys&&vt.keys.IE_PROTO||''))?'Symbol(src)_1.'+i:'',jt=ct.toString,At=dt.call(tt),Zt=xt._,qt=rt('^'+dt.call(yt).replace(Sn,'\\$&').replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,'$1.*?')+'$'),nr=mt?u.Buffer:t,Ar=u.Symbol,Rr=u.Uint8Array,Er=nr?nr.allocUnsafe:t,Wr=br(tt.getPrototypeOf,tt),Cr=tt.create,Tr=ct.propertyIsEnumerable,Ur=ft.splice,Br=Ar?"function"==typeof Ar?Ar.isConcatSpreadable:"@@isConcatSpreadable":t,$r=Ar?"function"==typeof Ar?Ar.iterator:"@@iterator":t,Dr=Ar?"function"==typeof Ar?Ar.toStringTag:"@@toStringTag":t,Mr=(function(){try{var n=co(tt,'defineProperty');return n({},'',{}),n}catch(n){}})(),Fr=u.clearTimeout!==xt.clearTimeout&&u.clearTimeout,Nr=Yn&&Yn.now!==xt.Date.now&&Yn.now,Pr=u.setTimeout!==xt.setTimeout&&u.setTimeout,Zr=nt.ceil,qr=nt.floor,Kr=tt.getOwnPropertySymbols,Vr=nr?nr.isBuffer:t,Gr=u.isFinite,Hr=ft.join,Jr=br(tt.keys,tt),Yr=nt.max,Qr=nt.min,Xr=Yn.now,ne=u.parseInt,te=nt.random,re=ft.reverse,ee=co(u,'DataView'),ue=co(u,'Map'),ie=co(u,'Promise'),oe=co(u,'Set'),fe=co(u,'WeakMap'),ae=co(tt,'create'),ce=fe&&new fe,le={},se=Ko(ee),he=Ko(ue),pe=Ko(ie),ve=Ko(oe),_e=Ko(fe),ge=Ar?"function"==typeof Ar?Ar.prototype:"@@prototype":t,de=ge?ge.valueOf:t,ye=ge?ge.toString:t;function xe(n){if(sa(n)&&!na(n)&&!(n instanceof je)){if(n instanceof me)return n;if(yt.call(n,'__wrapped__'))return Go(n)}return new me(n)}var be=(function(){function n(){}return function(r){if(!la(r))return{};if(Cr)return Cr(r);n.prototype=r;var e=new n;return n.prototype=t,e}})();function we(){}function me(n,r){this.__wrapped__=n,this.__actions__=[],this.__chain__=!!r,this.__index__=0,this.__values__=t}function je(n){this.__wrapped__=n,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=T,this.__views__=[]}function Ae(n){var t=-1,r=null==n?0:n.length;for(this.clear();++t=r?n:r)),n}function Ne(n,r,e,u,i,o){var f,a=r&l,c=r&s,p=r&h;if(e&&(f=i?e(n,u,i,o):e(n)),f!==t)return f;if(!la(n))return n;var v=na(n);if(v){if(f=yo(n),!a)return bi(n,f)}else{var _=po(n),g=_==K||_==V;if(ua(n))return hi(n,a);if(_==Y||_==D||g&&!i){if(f=c||g?{}:xo(n),!a)return c?ji(n,$e(f,n)):mi(n,Be(f,n))}else{if(!pt[_])return i?n:{};f=bo(n,_,a)}}o||(o=new Ie);var d=o.get(n);if(d)return d;o.set(n,f),ga(n)?n.forEach(function(t){f.add(Ne(t,r,e,t,n,o))}):ha(n)&&n.forEach(function(t,u){f.set(u,Ne(t,r,e,u,n,o))});var y=v?t:(p?c?ro:to:c?Na:Fa)(n);return Wt(y||n,function(t,u){y&&(t=n[u=t]),Ce(f,u,Ne(t,r,e,u,n,o))}),f}function Pe(n){var t=Fa(n);return function(r){return Ze(r,n,t)}}function Ze(n,r,e){var u=e.length;if(null==n)return!u;for(n=tt(n);u--;){var i=e[u],o=r[i],f=n[i];if(f===t&&!(i in n)||!o(f))return!1}return!0}function qe(n,r,e){if('function'!=typeof n)throw new ot(o);return Do(function(){n.apply(t,e)},r)}function Ke(n,t,e,u){var i=-1,o=Bt,f=!0,a=n.length,c=[],l=t.length;if(!a)return c;e&&(t=Dt(t,or(e))),u?(o=$t,f=!1):t.length>=r&&(o=ar,f=!1,t=new Oe(t));n:for(;++i-1},ke.prototype.set=function(n,t){var r=this.__data__,e=Te(r,n);return e<0?(++this.size,r.push([n,t])):r[e][1]=t,this},ze.prototype.clear=function(){this.size=0,this.__data__={hash:new Ae,map:new(ue||ke),string:new Ae}},ze.prototype.delete=function(n){var t=fo(this,n).delete(n);return this.size-=t?1:0,t},ze.prototype.get=function(n){return fo(this,n).get(n)},ze.prototype.has=function(n){return fo(this,n).has(n)},ze.prototype.set=function(n,t){var r=fo(this,n),e=r.size;return r.set(n,t),this.size+=r.size==e?0:1,this},Oe.prototype.add=Oe.prototype.push=function(n){return this.__data__.set(n,f),this},Oe.prototype.has=function(n){return this.__data__.has(n)},Ie.prototype.clear=function(){this.__data__=new ke,this.size=0},Ie.prototype.delete=function(n){var t=this.__data__,r=t.delete(n);return this.size=t.size,r},Ie.prototype.get=function(n){return this.__data__.get(n)},Ie.prototype.has=function(n){return this.__data__.has(n)},Ie.prototype.set=function(n,t){var r=this.__data__;if(r instanceof ke){var e=r.__data__;if(!ue||e.length<199)return e.push([n,t]),this.size=++r.size,this;r=this.__data__=new ze(e)}return r.set(n,t),this.size=r.size,this};var Ve=zi(ru),Ge=zi(eu,!0);function He(n,t){var r=!0;return Ve(n,function(n,e,u){return r=!!t(n,e,u)}),r}function Je(n,r,e){for(var u=-1,i=n.length;++ui?0:i+e),(u=u===t||u>i?i:Aa(u))<0&&(u+=i),u=e>u?0:ka(u);e0&&r(f)?t>1?Xe(f,t-1,r,e,u):Mt(u,f):e||(u[u.length]=f)}return u}var nu=Oi(),tu=Oi(!0);function ru(n,t){return n&&nu(n,t,Fa)}function eu(n,t){return n&&tu(n,t,Fa)}function uu(n,t){return Ut(t,function(t){return fa(n[t])})}function iu(n,r){for(var e=0,u=(r=ai(r,n)).length;null!=n&&et}function cu(n,t){return null!=n&&yt.call(n,t)}function lu(n,t){return null!=n&&t in tt(n)}function su(n,t,r){return n>=Qr(t,r)&&n=120&&s.length>=120)?new Oe(f&&s):t}s=n[0];var h=-1,p=a[0];n:for(;++h-1;)f!==n&&Ur.call(f,a,1),Ur.call(n,a,1);return n}function Tu(n,t){for(var r=n?t.length:0,e=r-1;r--;){var u=t[r];if(r==e||u!==i){var i=u;jo(u)?Ur.call(n,u,1):ni(n,u)}}return n}function Uu(n,t){return n+qr(te()*(t-n+1))}function Bu(n,t,r,e){for(var u=-1,i=Yr(Zr((t-n)/(r||1)),0),o=Dn(i);i--;)o[e?i:++u]=n,n+=r;return o}function $u(n,t){var r='';if(!n||t<1||t>L)return r;do{t%2&&(r+=n),(t=qr(t/2))&&(n+=n)}while(t);return r}function Du(n,t){return Mo(Co(n,t,pc),n+'')}function Mu(n){return Ee(Ja(n))}function Fu(n,t){var r=Ja(n);return Po(r,Fe(t,0,r.length))}function Nu(n,r,e,u){if(!la(n))return n;for(var i=-1,o=(r=ai(r,n)).length,f=o-1,a=n;null!=a&&++iu?0:u+t),(r=r>u?u:r)<0&&(r+=u),u=t>r?0:r-t>>>0,t>>>=0;for(var i=Dn(u);++e>>1,o=n[i];null!==o&&!ya(o)&&(r?o<=t:o=r){var l=t?null:qi(n);if(l)return mr(l);f=!1,i=ar,c=new Oe}else c=t?[]:a;n:for(;++u=u?n:Ku(n,r,e)}var si=Fr||function(n){return xt.clearTimeout(n)};function hi(n,t){if(t)return n.slice();var r=n.length,e=Er?Er(r):new n.constructor(r);return n.copy(e),e}function pi(n){var t=new n.constructor(n.byteLength);return new Rr(t).set(new Rr(n)),t}function vi(n,t){var r=t?pi(n.buffer):n.buffer;return new n.constructor(r,n.byteOffset,n.byteLength)}function _i(n,t){var r=t?pi(n.buffer):n.buffer;return new n.constructor(r,n.byteOffset,n.length)}function gi(n,r){if(n!==r){var e=n!==t,u=null===n,i=n==n,o=ya(n),f=r!==t,a=null===r,c=r==r,l=ya(r);if(!a&&!l&&!o&&n>r||o&&f&&c&&!a&&!l||u&&f&&c||!e&&c||!i)return 1;if(!u&&!o&&!l&&n=f?a:a*('desc'==r[e]?-1:1)}return n.index-t.index}function yi(n,t,r,e){for(var u=-1,i=n.length,o=r.length,f=-1,a=t.length,c=Yr(i-o,0),l=Dn(a+c),s=!e;++f1?e[i-1]:t,f=i>2?e[2]:t;for(o=n.length>3&&'function'==typeof o?(i--,o):t,f&&Ao(e[0],e[1],f)&&(o=i<3?t:o,i=1),r=tt(r);++u-1?i[o?r[f]:f]:t}}function Ci(n){return no(function(r){var e=r.length,u=e,i=me.prototype.thru;for(n&&r.reverse();u--;){var f=r[u];if('function'!=typeof f)throw new ot(o);if(i&&!a&&'wrapper'==uo(f))var a=new me([],!0)}for(u=a?u:e;++u1&&g.reverse(),s&&c<_&&(g.length=c),this&&this!==xt&&this instanceof t&&(A=y||Si(A)),A.apply(j,g)}}function Ui(n,t){return function(r,e){return pu(r,n,t(e),{})}}function Bi(n,r){return function(e,u){var i;if(e===t&&u===t)return r;if(e!==t&&(i=e),u!==t){if(i===t)return u;'string'==typeof e||'string'==typeof u?(e=Qu(e),u=Qu(u)):(e=Yu(e),u=Yu(u)),i=n(e,u)}return i}}function $i(n){return no(function(t){return t=Dt(t,or(oo())),Du(function(r){var e=this;return n(t,function(n){return St(n,e,r)})})})}function Di(n,r){var e=(r=r===t?' ':Qu(r)).length;if(e<2)return e?$u(r,n):r;var u=$u(r,Zr(n/zr(r)));return gr(r)?li(Or(u),0,n).join(''):u.slice(0,n)}function Mi(n,t,r,e){var u=t&_,i=Si(n);return function t(){for(var o=-1,f=arguments.length,a=-1,c=e.length,l=Dn(c+f),s=this&&this!==xt&&this instanceof t?i:n;++aa))return!1;var l=o.get(n);if(l&&o.get(r))return l==r;var s=-1,h=!0,_=e&v?new Oe:t;for(o.set(n,r),o.set(r,n);++s1?'& ':'')+t[e],t=t.join(r>2?', ':' '),n.replace(Un,'{\n/* [wrapped with '+t+'] */\n')}function mo(n){return na(n)||Xf(n)||!!(Br&&n&&n[Br])}function jo(n,t){var r=typeof n;return!!(t=null==t?L:t)&&('number'==r||'symbol'!=r&&Vn.test(n))&&n>-1&&n%1==0&&n0){if(++r>=O)return arguments[0]}else r=0;return n.apply(t,arguments)}}function Po(n,r){var e=-1,u=n.length,i=u-1;for(r=r===t?u:r;++e1?n[r-1]:t;return _f(n,e='function'==typeof e?(n.pop(),e):t)});function mf(n){var t=xe(n);return t.__chain__=!0,t}function jf(n,t){return t(n)}var Af=no(function(n){var r=n.length,e=r?n[0]:0,u=this.__wrapped__,i=function(t){return Me(t,n)};return!(r>1||this.__actions__.length)&&u instanceof je&&jo(e)?((u=u.slice(e,+e+(r?1:0))).__actions__.push({func:jf,args:[i],thisArg:t}),new me(u,this.__chain__).thru(function(n){return r&&!n.length&&n.push(t),n})):this.thru(i)});var kf=Ai(function(n,t,r){yt.call(n,r)?++n[r]:De(n,r,1)});var zf=Wi(Qo),Of=Wi(Xo);function If(n,t){return(na(n)?Wt:Ve)(n,oo(t,3))}function Rf(n,t){return(na(n)?Ct:Ge)(n,oo(t,3))}var Ef=Ai(function(n,t,r){yt.call(n,r)?n[r].push(t):De(n,r,[t])});var Sf=Du(function(n,t,r){var e=-1,u='function'==typeof t,i=ra(n)?Dn(n.length):[];return Ve(n,function(n){i[++e]=u?St(t,n,r):vu(n,t,r)}),i}),Lf=Ai(function(n,t,r){De(n,r,t)});function Wf(n,t){return(na(n)?Dt:Au)(n,oo(t,3))}var Cf=Ai(function(n,t,r){n[r?0:1].push(t)},function(){return[[],[]]});var Tf=Du(function(n,t){if(null==n)return[];var r=t.length;return r>1&&Ao(n,t[0],t[1])?t=[]:r>2&&Ao(t[0],t[1],t[2])&&(t=[t[0]]),Eu(n,Xe(t,1),[])}),Uf=Nr||function(){return xt.Date.now()};function Bf(n,r,e){return r=e?t:r,r=n&&null==r?n.length:r,Vi(n,m,t,t,t,t,r)}function $f(n,r){var e;if('function'!=typeof r)throw new ot(o);return n=Aa(n),function(){return--n>0&&(e=r.apply(this,arguments)),n<=1&&(r=t),e}}var Df=Du(function(n,t,r){var e=_;if(r.length){var u=wr(r,io(Df));e|=b}return Vi(n,e,t,r,u)}),Mf=Du(function(n,t,r){var e=3;if(r.length){var u=wr(r,io(Mf));e|=b}return Vi(t,e,n,r,u)});function Ff(n,r,e){var u,i,f,a,c,l,s=0,h=!1,p=!1,v=!0;if('function'!=typeof n)throw new ot(o);function _(r){var e=u,o=i;return u=i=t,s=r,a=n.apply(o,e)}function g(n){return s=n,c=Do(x,r),h?_(n):a}function d(n){var t=r-(n-l);return p?Qr(t,f-(n-s)):t}function y(n){var e=n-l;return l===t||e>=r||e<0||p&&n-s>=f}function x(){var n=Uf();if(y(n))return b(n);c=Do(x,d(n))}function b(n){return c=t,v&&u?_(n):(u=i=t,a)}function w(){var n=Uf(),e=y(n);if(u=arguments,i=this,l=n,e){if(c===t)return g(l);if(p)return si(c),c=Do(x,r),_(l)}return c===t&&(c=Do(x,r)),a}return r=za(r)||0,la(e)&&(h=!!e.leading,f=(p='maxWait'in e)?Yr(za(e.maxWait)||0,r):f,v='trailing'in e?!!e.trailing:v),w.cancel=function(){c!==t&&si(c),s=0,u=l=i=c=t},w.flush=function(){return c===t?a:b(Uf())},w}var Nf=Du(function(n,t){return qe(n,1,t)}),Pf=Du(function(n,t,r){return qe(n,za(t)||0,r)});function Zf(n,t){if('function'!=typeof n||null!=t&&'function'!=typeof t)throw new ot(o);var r=function r(){var e=arguments,u=t?t.apply(this,e):e[0],i=r.cache;if(i.has(u))return i.get(u);var o=n.apply(this,e);return r.cache=i.set(u,o)||i,o};return r.cache=new(Zf.Cache||ze),r}function qf(n){if('function'!=typeof n)throw new ot(o);return function(){var t=arguments;switch(t.length){case 0:return!n.call(this);case 1:return!n.call(this,t[0]);case 2:return!n.call(this,t[0],t[1]);case 3:return!n.call(this,t[0],t[1],t[2])}return!n.apply(this,t)}}Zf.Cache=ze;var Kf=ci(function(n,t){var r=(t=1==t.length&&na(t[0])?Dt(t[0],or(oo())):Dt(Xe(t,1),or(oo()))).length;return Du(function(e){for(var u=-1,i=Qr(e.length,r);++u=t}),Xf=_u((function(){return arguments})())?_u:function(n){return sa(n)&&yt.call(n,'callee')&&!Tr.call(n,'callee')},na=Dn.isArray,ta=kt?or(kt):function(n){return sa(n)&&fu(n)==fn};function ra(n){return null!=n&&ca(n.length)&&!fa(n)}function ea(n){return sa(n)&&ra(n)}var ua=Vr||zc,ia=zt?or(zt):function(n){return sa(n)&&fu(n)==P};function oa(n){if(!sa(n))return!1;var t=fu(n);return t==q||t==Z||'string'==typeof n.message&&'string'==typeof n.name&&!va(n)}function fa(n){if(!la(n))return!1;var t=fu(n);return t==K||t==V||t==F||t==Q}function aa(n){return'number'==typeof n&&n==Aa(n)}function ca(n){return'number'==typeof n&&n>-1&&n%1==0&&n<=L}function la(n){var t=typeof n;return null!=n&&('object'==t||'function'==t)}function sa(n){return null!=n&&'object'==typeof n}var ha=Ot?or(Ot):function(n){return sa(n)&&po(n)==G};function pa(n){return'number'==typeof n||sa(n)&&fu(n)==H}function va(n){if(!sa(n)||fu(n)!=Y)return!1;var t=Wr(n);if(null===t)return!0;var r=yt.call(t,'constructor')&&t.constructor;return'function'==typeof r&&r instanceof r&&dt.call(r)==At}var _a=It?or(It):function(n){return sa(n)&&fu(n)==X};var ga=Rt?or(Rt):function(n){return sa(n)&&po(n)==nn};function da(n){return'string'==typeof n||!na(n)&&sa(n)&&fu(n)==tn}function ya(n){return'symbol'==typeof n||sa(n)&&fu(n)==rn}var xa=Et?or(Et):function(n){return sa(n)&&ca(n.length)&&!!ht[fu(n)]};var ba=Ni(ju),wa=Ni(function(n,t){return n<=t});function ma(n){if(!n)return[];if(ra(n))return da(n)?Or(n):bi(n);if($r&&n[$r])return yr(n[$r]());var t=po(n);return(t==G?xr:t==nn?mr:Ja)(n)}function ja(n){return n?(n=za(n))===S||n===-1/0?(n<0?-1:1)*W:n==n?n:0:0===n?n:0}function Aa(n){var t=ja(n),r=t%1;return t==t?r?t-r:t:0}function ka(n){return n?Fe(Aa(n),0,T):0}function za(n){if('number'==typeof n)return n;if(ya(n))return C;if(la(n)){var t='function'==typeof n.valueOf?n.valueOf():n;n=la(t)?t+'':t}if('string'!=typeof n)return 0===n?n:+n;n=n.replace(Wn,'');var r=Zn.test(n);return r||Kn.test(n)?gt(n.slice(2),r?2:8):Pn.test(n)?C:+n}function Oa(n){return wi(n,Na(n))}function Ia(n){return null==n?'':Qu(n)}var Ra=ki(function(n,t){if(Io(t)||ra(t))wi(t,Fa(t),n);else for(var r in t)yt.call(t,r)&&Ce(n,r,t[r])}),Ea=ki(function(n,t){wi(t,Na(t),n)}),Sa=ki(function(n,t,r,e){wi(t,Na(t),n,e)}),La=ki(function(n,t,r,e){wi(t,Fa(t),n,e)}),Wa=no(Me);var Ca=Du(function(n,r){n=tt(n);var e=-1,u=r.length,i=u>2?r[2]:t;for(i&&Ao(r[0],r[1],i)&&(u=1);++e1),t}),wi(n,ro(n),r),e&&(r=Ne(r,7,Ji));for(var u=t.length;u--;)ni(r,t[u]);return r});var Ka=no(function(n,t){return null==n?{}:Su(n,t)});function Va(n,t){if(null==n)return{};var r=Dt(ro(n),function(n){return[n]});return t=oo(t),Lu(n,r,function(n,r){return t(n,r[0])})}var Ga=Ki(Fa),Ha=Ki(Na);function Ja(n){return null==n?[]:fr(n,Fa(n))}var Ya=Ei(function(n,t,r){return t=t.toLowerCase(),n+(r?Qa(t):t)});function Qa(n){return oc(Ia(n).toLowerCase())}function Xa(n){return(n=Ia(n))&&n.replace(Gn,hr).replace(it,'')}var nc=Ei(function(n,t,r){return n+(r?'-':'')+t.toLowerCase()}),tc=Ei(function(n,t,r){return n+(r?' ':'')+t.toLowerCase()}),rc=Ri('toLowerCase');var ec=Ei(function(n,t,r){return n+(r?'_':'')+t.toLowerCase()});var uc=Ei(function(n,t,r){return n+(r?' ':'')+oc(t)});var ic=Ei(function(n,t,r){return n+(r?' ':'')+t.toUpperCase()}),oc=Ri('toUpperCase');function fc(n,r,e){return n=Ia(n),(r=e?t:r)===t?dr(n)?Sr(n):Kt(n):n.match(r)||[]}var ac=Du(function(n,r){try{return St(n,t,r)}catch(n){return oa(n)?n:new Qn(n)}}),cc=no(function(n,t){return Wt(t,function(t){t=qo(t),De(n,t,Df(n[t],n))}),n});function lc(n){return function(){return n}}var sc=Ci(),hc=Ci(!0);function pc(n){return n}function vc(n){return bu('function'==typeof n?n:Ne(n,l))}var _c=Du(function(n,t){return function(r){return vu(r,n,t)}}),gc=Du(function(n,t){return function(r){return vu(n,r,t)}});function dc(n,t,r){var e=Fa(t),u=uu(t,e);null!=r||la(t)&&(u.length||!e.length)||(r=t,t=n,n=this,u=uu(t,Fa(t)));var i=!(la(r)&&'chain'in r&&!r.chain),o=fa(n);return Wt(u,function(r){var e=t[r];n[r]=e,o&&(n.prototype[r]=function(){var t=this.__chain__;if(i||t){var r=n(this.__wrapped__);return(r.__actions__=bi(this.__actions__)).push({func:e,args:arguments,thisArg:n}),r.__chain__=t,r}return e.apply(n,Mt([this.value()],arguments))})}),n}function yc(){}var xc=$i(Dt),bc=$i(Tt),wc=$i(Pt);function mc(n){return ko(n)?Xt(qo(n)):Wu(n)}var jc=Fi(),Ac=Fi(!0);function kc(){return[]}function zc(){return!1}var Oc=Bi(function(n,t){return n+t},0),Ic=Zi('ceil'),Rc=Bi(function(n,t){return n/t},1),Ec=Zi('floor');var Sc,Lc=Bi(function(n,t){return n*t},1),Wc=Zi('round'),Cc=Bi(function(n,t){return n-t},0);return xe.after=function(n,t){if('function'!=typeof t)throw new ot(o);return n=Aa(n),function(){if(--n<1)return t.apply(this,arguments)}},xe.ary=Bf,xe.assign=Ra,xe.assignIn=Ea,xe.assignInWith=Sa,xe.assignWith=La,xe.at=Wa,xe.before=$f,xe.bind=Df,xe.bindAll=cc,xe.bindKey=Mf,xe.castArray=function(){if(!arguments.length)return[];var n=arguments[0];return na(n)?n:[n]},xe.chain=mf,xe.chunk=function(n,r,e){r=(e?Ao(n,r,e):r===t)?1:Yr(Aa(r),0);var u=null==n?0:n.length;if(!u||r<1)return[];for(var i=0,o=0,f=Dn(Zr(u/r));i>>0)?(n=Ia(n))&&('string'==typeof r||null!=r&&!_a(r))&&!(r=Qu(r))&&gr(n)?li(Or(n),0,e):n.split(r,e):[]},xe.spread=function(n,t){if('function'!=typeof n)throw new ot(o);return t=null==t?0:Yr(Aa(t),0),Du(function(r){var e=r[t],u=li(r,0,t);return e&&Mt(u,e),St(n,this,u)})},xe.tail=function(n){var t=null==n?0:n.length;return t?Ku(n,1,t):[]},xe.take=function(n,r,e){return n&&n.length?Ku(n,0,(r=e||r===t?1:Aa(r))<0?0:r):[]},xe.takeRight=function(n,r,e){var u=null==n?0:n.length;return u?Ku(n,(r=u-(r=e||r===t?1:Aa(r)))<0?0:r,u):[]},xe.takeRightWhile=function(n,t){return n&&n.length?ri(n,oo(t,3),!1,!0):[]},xe.takeWhile=function(n,t){return n&&n.length?ri(n,oo(t,3)):[]},xe.tap=function(n,t){return t(n),n},xe.throttle=function(n,t,r){var e=!0,u=!0;if('function'!=typeof n)throw new ot(o);return la(r)&&(e='leading'in r?!!r.leading:e,u='trailing'in r?!!r.trailing:u),Ff(n,t,{leading:e,maxWait:t,trailing:u})},xe.thru=jf,xe.toArray=ma,xe.toPairs=Ga,xe.toPairsIn=Ha,xe.toPath=function(n){return na(n)?Dt(n,qo):ya(n)?[n]:bi(Zo(Ia(n)))},xe.toPlainObject=Oa,xe.transform=function(n,t,r){var e=na(n),u=e||ua(n)||xa(n);if(t=oo(t,4),null==r){var i=n&&n.constructor;r=u?e?new i:[]:la(n)&&fa(i)?be(Wr(n)):{}}return(u?Wt:ru)(n,function(n,e,u){return t(r,n,e,u)}),r},xe.unary=function(n){return Bf(n,1)},xe.union=sf,xe.unionBy=hf,xe.unionWith=pf,xe.uniq=function(n){return n&&n.length?Xu(n):[]},xe.uniqBy=function(n,t){return n&&n.length?Xu(n,oo(t,2)):[]},xe.uniqWith=function(n,r){return r='function'==typeof r?r:t,n&&n.length?Xu(n,t,r):[]},xe.unset=function(n,t){return null==n||ni(n,t)},xe.unzip=vf,xe.unzipWith=_f,xe.update=function(n,t,r){return null==n?n:ti(n,t,fi(r))},xe.updateWith=function(n,r,e,u){return u='function'==typeof u?u:t,null==n?n:ti(n,r,fi(e),u)},xe.values=Ja,xe.valuesIn=function(n){return null==n?[]:fr(n,Na(n))},xe.without=gf,xe.words=fc,xe.wrap=function(n,t){return Vf(fi(t),n)},xe.xor=df,xe.xorBy=yf,xe.xorWith=xf,xe.zip=bf,xe.zipObject=function(n,t){return ii(n||[],t||[],Ce)},xe.zipObjectDeep=function(n,t){return ii(n||[],t||[],Nu)},xe.zipWith=wf,xe.entries=Ga,xe.entriesIn=Ha,xe.extend=Ea,xe.extendWith=Sa,dc(xe,xe),xe.add=Oc,xe.attempt=ac,xe.camelCase=Ya,xe.capitalize=Qa,xe.ceil=Ic,xe.clamp=function(n,r,e){return e===t&&(e=r,r=t),e!==t&&(e=(e=za(e))==e?e:0),r!==t&&(r=(r=za(r))==r?r:0),Fe(za(n),r,e)},xe.clone=function(n){return Ne(n,h)},xe.cloneDeep=function(n){return Ne(n,5)},xe.cloneDeepWith=function(n,r){return Ne(n,5,r='function'==typeof r?r:t)},xe.cloneWith=function(n,r){return Ne(n,h,r='function'==typeof r?r:t)},xe.conformsTo=function(n,t){return null==t||Ze(n,t,Fa(t))},xe.deburr=Xa,xe.defaultTo=function(n,t){return null==n||n!=n?t:n},xe.divide=Rc,xe.endsWith=function(n,r,e){n=Ia(n),r=Qu(r);var u=n.length,i=e=e===t?u:Fe(Aa(e),0,u);return(e-=r.length)>=0&&n.slice(e,i)==r},xe.eq=Jf,xe.escape=function(n){return(n=Ia(n))&&An.test(n)?n.replace(mn,pr):n},xe.escapeRegExp=function(n){return(n=Ia(n))&&Ln.test(n)?n.replace(Sn,'\\$&'):n},xe.every=function(n,r,e){var u=na(n)?Tt:He;return e&&Ao(n,r,e)&&(r=t),u(n,oo(r,3))},xe.find=zf,xe.findIndex=Qo,xe.findKey=function(n,t){return Vt(n,oo(t,3),ru)},xe.findLast=Of,xe.findLastIndex=Xo,xe.findLastKey=function(n,t){return Vt(n,oo(t,3),eu)},xe.floor=Ec,xe.forEach=If,xe.forEachRight=Rf,xe.forIn=function(n,t){return null==n?n:nu(n,oo(t,3),Na)},xe.forInRight=function(n,t){return null==n?n:tu(n,oo(t,3),Na)},xe.forOwn=function(n,t){return n&&ru(n,oo(t,3))},xe.forOwnRight=function(n,t){return n&&eu(n,oo(t,3))},xe.get=Ua,xe.gt=Yf,xe.gte=Qf,xe.has=function(n,t){return null!=n&&go(n,t,cu)},xe.hasIn=Ba,xe.head=tf,xe.identity=pc,xe.includes=function(n,t,r,e){n=ra(n)?n:Ja(n),r=r&&!e?Aa(r):0;var u=n.length;return r<0&&(r=Yr(u+r,0)),da(n)?r<=u&&n.indexOf(t,r)>-1:!!u&&Ht(n,t,r)>-1},xe.indexOf=function(n,t,r){var e=null==n?0:n.length;if(!e)return-1;var u=null==r?0:Aa(r);return u<0&&(u=Yr(e+u,0)),Ht(n,t,u)},xe.inRange=function(n,r,e){return r=ja(r),e===t?(e=r,r=0):e=ja(e),su(n=za(n),r,e)},xe.invoke=Ma,xe.isArguments=Xf,xe.isArray=na,xe.isArrayBuffer=ta,xe.isArrayLike=ra,xe.isArrayLikeObject=ea,xe.isBoolean=function(n){return!0===n||!1===n||sa(n)&&fu(n)==N},xe.isBuffer=ua,xe.isDate=ia,xe.isElement=function(n){return sa(n)&&1===n.nodeType&&!va(n)},xe.isEmpty=function(n){if(null==n)return!0;if(ra(n)&&(na(n)||'string'==typeof n||'function'==typeof n.splice||ua(n)||xa(n)||Xf(n)))return!n.length;var t=po(n);if(t==G||t==nn)return!n.size;if(Io(n))return!wu(n).length;for(var r in n)if(yt.call(n,r))return!1;return!0},xe.isEqual=function(n,t){return gu(n,t)},xe.isEqualWith=function(n,r,e){var u=(e='function'==typeof e?e:t)?e(n,r):t;return u===t?gu(n,r,t,e):!!u},xe.isError=oa,xe.isFinite=function(n){return'number'==typeof n&&Gr(n)},xe.isFunction=fa,xe.isInteger=aa,xe.isLength=ca,xe.isMap=ha,xe.isMatch=function(n,t){return n===t||yu(n,t,ao(t))},xe.isMatchWith=function(n,r,e){return e='function'==typeof e?e:t,yu(n,r,ao(r),e)},xe.isNaN=function(n){return pa(n)&&n!=+n},xe.isNative=function(n){if(Oo(n))throw new Qn(e);return xu(n)},xe.isNil=function(n){return null==n},xe.isNull=function(n){return null===n},xe.isNumber=pa,xe.isObject=la,xe.isObjectLike=sa,xe.isPlainObject=va,xe.isRegExp=_a,xe.isSafeInteger=function(n){return aa(n)&&n>=-9007199254740991&&n<=L},xe.isSet=ga,xe.isString=da,xe.isSymbol=ya,xe.isTypedArray=xa,xe.isUndefined=function(n){return n===t},xe.isWeakMap=function(n){return sa(n)&&po(n)==un},xe.isWeakSet=function(n){return sa(n)&&fu(n)==on},xe.join=function(n,t){return null==n?'':Hr.call(n,t)},xe.kebabCase=nc,xe.last=of,xe.lastIndexOf=function(n,r,e){var u=null==n?0:n.length;if(!u)return-1;var i=u;return e!==t&&(i=(i=Aa(e))<0?Yr(u+i,0):Qr(i,u-1)),r==r?kr(n,r,i):Gt(n,Yt,i,!0)},xe.lowerCase=tc,xe.lowerFirst=rc,xe.lt=ba,xe.lte=wa,xe.max=function(n){return n&&n.length?Je(n,pc,au):t},xe.maxBy=function(n,r){return n&&n.length?Je(n,oo(r,2),au):t},xe.mean=function(n){return Qt(n,pc)},xe.meanBy=function(n,t){return Qt(n,oo(t,2))},xe.min=function(n){return n&&n.length?Je(n,pc,ju):t},xe.minBy=function(n,r){return n&&n.length?Je(n,oo(r,2),ju):t},xe.stubArray=kc,xe.stubFalse=zc,xe.stubObject=function(){return{}},xe.stubString=function(){return''},xe.stubTrue=function(){return!0},xe.multiply=Lc,xe.nth=function(n,r){return n&&n.length?Ru(n,Aa(r)):t},xe.noConflict=function(){return xt._===this&&(xt._=Zt),this},xe.noop=yc,xe.now=Uf,xe.pad=function(n,t,r){n=Ia(n);var e=(t=Aa(t))?zr(n):0;if(!t||e>=t)return n;var u=(t-e)/2;return Di(qr(u),r)+n+Di(Zr(u),r)},xe.padEnd=function(n,t,r){n=Ia(n);var e=(t=Aa(t))?zr(n):0;return t&&er){var u=n;n=r,r=u}if(e||n%1||r%1){var i=te();return Qr(n+i*(r-n+_t('1e-'+((i+'').length-1))),r)}return Uu(n,r)},xe.reduce=function(n,t,r){var e=na(n)?Ft:tr,u=arguments.length<3;return e(n,oo(t,4),r,u,Ve)},xe.reduceRight=function(n,t,r){var e=na(n)?Nt:tr,u=arguments.length<3;return e(n,oo(t,4),r,u,Ge)},xe.repeat=function(n,r,e){return r=(e?Ao(n,r,e):r===t)?1:Aa(r),$u(Ia(n),r)},xe.replace=function(){var n=arguments,t=Ia(n[0]);return n.length<3?t:t.replace(n[1],n[2])},xe.result=function(n,r,e){var u=-1,i=(r=ai(r,n)).length;for(i||(i=1,n=t);++uL)return[];var r=T,e=Qr(n,T);t=oo(t),n-=T;for(var u=ur(e,t);++r=o)return n;var a=e-zr(u);if(a<1)return u;var c=f?li(f,0,a).join(''):n.slice(0,a);if(i===t)return c+u;if(f&&(a+=c.length-a),_a(i)){if(n.slice(a).search(i)){var l,s=c;for(i.global||(i=rt(i.source,Ia(Nn.exec(i))+'g')),i.lastIndex=0;l=i.exec(s);)var h=l.index;c=c.slice(0,h===t?a:h)}}else if(n.indexOf(Qu(i),a)!=a){var p=c.lastIndexOf(i);p>-1&&(c=c.slice(0,p))}return c+u},xe.unescape=function(n){return(n=Ia(n))&&jn.test(n)?n.replace(wn,Ir):n},xe.uniqueId=function(n){var t=++bt;return Ia(n)+t},xe.upperCase=ic,xe.upperFirst=oc,xe.each=If,xe.eachRight=Rf,xe.first=tf,dc(xe,(Sc={},ru(xe,function(n,t){yt.call(xe.prototype,t)||(Sc[t]=n)}),Sc),{chain:!1}),xe.VERSION="4.17.14",Wt(['bind','bindKey','curry','curryRight','partial','partialRight'],function(n){xe[n].placeholder=xe}),Wt(['drop','take'],function(n,r){je.prototype[n]=function(e){e=e===t?1:Yr(Aa(e),0);var u=this.__filtered__&&!r?new je(this):this.clone();return u.__filtered__?u.__takeCount__=Qr(e,u.__takeCount__):u.__views__.push({size:Qr(e,T),type:n+(u.__dir__<0?'Right':'')}),u},je.prototype[n+'Right']=function(t){return this.reverse()[n](t).reverse()}}),Wt(['filter','map','takeWhile'],function(n,t){var r=t+1,e=r==R||3==r;je.prototype[n]=function(n){var t=this.clone();return t.__iteratees__.push({iteratee:oo(n,3),type:r}),t.__filtered__=t.__filtered__||e,t}}),Wt(['head','last'],function(n,t){var r='take'+(t?'Right':'');je.prototype[n]=function(){return this[r](1).value()[0]}}),Wt(['initial','tail'],function(n,t){var r='drop'+(t?'':'Right');je.prototype[n]=function(){return this.__filtered__?new je(this):this[r](1)}}),je.prototype.compact=function(){return this.filter(pc)},je.prototype.find=function(n){return this.filter(n).head()},je.prototype.findLast=function(n){return this.reverse().find(n)},je.prototype.invokeMap=Du(function(n,t){return'function'==typeof n?new je(this):this.map(function(r){return vu(r,n,t)})}),je.prototype.reject=function(n){return this.filter(qf(oo(n)))},je.prototype.slice=function(n,r){n=Aa(n);var e=this;return e.__filtered__&&(n>0||r<0)?new je(e):(n<0?e=e.takeRight(-n):n&&(e=e.drop(n)),r!==t&&(e=(r=Aa(r))<0?e.dropRight(-r):e.take(r-n)),e)},je.prototype.takeRightWhile=function(n){return this.reverse().takeWhile(n).reverse()},je.prototype.toArray=function(){return this.take(T)},ru(je.prototype,function(n,r){var e=/^(?:filter|find|map|reject)|While$/.test(r),u=/^(?:head|last)$/.test(r),i=xe[u?'take'+('last'==r?'Right':''):r],o=u||/^find/.test(r);i&&(xe.prototype[r]=function(){var r=this.__wrapped__,f=u?[1]:arguments,a=r instanceof je,c=f[0],l=a||na(r),s=function(n){var t=i.apply(xe,Mt([n],f));return u&&h?t[0]:t};l&&e&&'function'==typeof c&&1!=c.length&&(a=l=!1);var h=this.__chain__,p=!!this.__actions__.length,v=o&&!h,_=a&&!p;if(!o&&l){r=_?r:new je(this);var g=n.apply(r,f);return g.__actions__.push({func:jf,args:[s],thisArg:t}),new me(g,h)}return v&&_?n.apply(this,f):(g=this.thru(s),v?u?g.value()[0]:g.value():g)})}),Wt(['pop','push','shift','sort','splice','unshift'],function(n){var t=ft[n],r=/^(?:push|sort|unshift)$/.test(n)?'tap':'thru',e=/^(?:pop|shift)$/.test(n);xe.prototype[n]=function(){var n=arguments;if(e&&!this.__chain__){var u=this.value();return t.apply(na(u)?u:[],n)}return this[r](function(r){return t.apply(na(r)?r:[],n)})}}),ru(je.prototype,function(n,t){var r=xe[t];if(r){var e=r.name+'';yt.call(le,e)||(le[e]=[]),le[e].push({name:t,func:r})}}),le[Ti(t,g).name]=[{name:'wrapper',func:t}],je.prototype.clone=function(){var n=new je(this.__wrapped__);return n.__actions__=bi(this.__actions__),n.__dir__=this.__dir__,n.__filtered__=this.__filtered__,n.__iteratees__=bi(this.__iteratees__),n.__takeCount__=this.__takeCount__,n.__views__=bi(this.__views__),n},je.prototype.reverse=function(){if(this.__filtered__){var n=new je(this);n.__dir__=-1,n.__filtered__=!0}else(n=this.clone()).__dir__*=-1;return n},je.prototype.value=function(){var n=this.__wrapped__.value(),t=this.__dir__,r=na(n),e=t<0,u=r?n.length:0,i=vo(0,u,this.__views__),o=i.start,f=i.end,a=f-o,c=e?f:o-1,l=this.__iteratees__,s=l.length,h=0,p=Qr(a,this.__takeCount__);if(!r||!e&&u==a&&p==a)return ei(n,this.__actions__);var v=[];n:for(;a--&&h=this.__values__.length;return{done:n,value:n?t:this.__values__[this.__index__++]}},xe.prototype.plant=function(n){for(var r,e=this;e instanceof we;){var u=Go(e);u.__index__=0,u.__values__=t,r?i.__wrapped__=u:r=u;var i=u;e=e.__wrapped__}return i.__wrapped__=n,r},xe.prototype.reverse=function(){var n=this.__wrapped__;if(n instanceof je){var r=n;return this.__actions__.length&&(r=new je(this)),(r=r.reverse()).__actions__.push({func:jf,args:[lf],thisArg:t}),new me(r,this.__chain__)}return this.thru(lf)},xe.prototype.toJSON=xe.prototype.valueOf=xe.prototype.value=function(){return ei(this.__wrapped__,this.__actions__)},xe.prototype.first=xe.prototype.head,$r&&(xe.prototype[$r]=function(){return this}),xe})();'function'==typeof define&&'object'==typeof define.amd&&define.amd?(xt._=Lr,define(function(){return Lr})):wt?((wt.exports=Lr)._=Lr,bt._=Lr):xt._=Lr}).call(this)},21,[]); +__d(function(g,r,i,a,m,e,d){},22,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isEmptyElement=void 0;var t=r(d[0]);e.isEmptyElement=function(n){return!(0,t.isNumber)(n)&&((0,t.isString)(n)||(0,t.isArray)(n)?!n.length:!n)}},23,[21]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1]));function o(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}var c=(function(t){for(var c=1;c0?s[s.length-1]:null,h=s.length>1?s[s.length-2]:null,y='function'==typeof v,C='function'==typeof h;C&&l(y,'Cannot have a non-function arg after a function arg.');var p=y?v:null,M=C?h:null,b=y+C;if(s=s.slice(0,s.length-b),'sync'===o)return u.callNativeSyncHook(n,t,s,M,p);u.enqueueNativeCall(n,t,s,M,p)}).type=o,f}function v(n,t){return-1!==n.indexOf(t)}function h(o){var u=o||{},l=u.message,f=n(u,["message"]),s=new Error(l);return s.framesToPop=1,t(s,f)}g.__fbGenNativeModule=f;var y={};if(g.nativeModuleProxy)y=g.nativeModuleProxy;else if(!g.nativeExtensions){var C=g.__fbBatchedBridgeConfig;l(C,'__fbBatchedBridgeConfig is not set, cannot invoke native modules');var p=r(d[5]);(C.remoteModuleConfig||[]).forEach(function(n,t){var o=f(n,t);o&&(o.module?y[o.name]=o.module:p(y,o.name,{get:function(){return s(o.name,t)}}))})}m.exports=y},31,[19,16,5,32,26,40]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=new(r(d[0]));Object.defineProperty(g,'__fbBatchedBridge',{configurable:!0,value:t}),m.exports=t},32,[33]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),l=r(d[1]),u=r(d[2]),s=r(d[3]),n=r(d[4]),h=(r(d[5]),r(d[6])),o=r(d[7]),c=(function(){function c(){l(this,c),this._lazyCallableModules={},this._queue=[[],[],[],0],this._successCallbacks={},this._failureCallbacks={},this._callID=0,this._lastFlush=0,this._eventLoopStartTime=Date.now(),this._immediatesCallback=null,this.callFunctionReturnFlushedQueue=this.callFunctionReturnFlushedQueue.bind(this),this.callFunctionReturnResultAndFlushedQueue=this.callFunctionReturnResultAndFlushedQueue.bind(this),this.flushedQueue=this.flushedQueue.bind(this),this.invokeCallbackAndReturnFlushedQueue=this.invokeCallbackAndReturnFlushedQueue.bind(this)}return u(c,[{key:"callFunctionReturnFlushedQueue",value:function(t,l,u){var s=this;return this.__guard(function(){s.__callFunction(t,l,u)}),this.flushedQueue()}},{key:"callFunctionReturnResultAndFlushedQueue",value:function(t,l,u){var s,n=this;return this.__guard(function(){s=n.__callFunction(t,l,u)}),[s,this.flushedQueue()]}},{key:"invokeCallbackAndReturnFlushedQueue",value:function(t,l){var u=this;return this.__guard(function(){u.__invokeCallback(t,l)}),this.flushedQueue()}},{key:"flushedQueue",value:function(){var t=this;this.__guard(function(){t.__callImmediates()});var l=this._queue;return this._queue=[[],[],[],this._callID],l[0].length?l:null}},{key:"getEventLoopRunningTime",value:function(){return Date.now()-this._eventLoopStartTime}},{key:"registerCallableModule",value:function(t,l){this._lazyCallableModules[t]=function(){return l}}},{key:"registerLazyCallableModule",value:function(t,l){var u,s=l;this._lazyCallableModules[t]=function(){return s&&(u=s(),s=null),u}}},{key:"getCallableModule",value:function(t){var l=this._lazyCallableModules[t];return l?l():null}},{key:"callNativeSyncHook",value:function(t,l,u,s,n){return this.processCallbacks(t,l,u,s,n),g.nativeCallSyncHook(t,l,u)}},{key:"processCallbacks",value:function(t,l,u,s,n){(s||n)&&(s&&u.push(this._callID<<1),n&&u.push(this._callID<<1|1),this._successCallbacks[this._callID]=n,this._failureCallbacks[this._callID]=s),this._callID++}},{key:"enqueueNativeCall",value:function(t,l,u,s,h){this.processCallbacks(t,l,u,s,h),this._queue[0].push(t),this._queue[1].push(l),this._queue[2].push(u);var o=Date.now();if(g.nativeFlushQueueImmediate&&o-this._lastFlush>=5){var c=this._queue;this._queue=[[],[],[],this._callID],this._lastFlush=o,g.nativeFlushQueueImmediate(c)}n.counterEvent('pending_js_to_native_queue',this._queue[0].length),this.__spy&&this.__spy({type:1,module:t+'',method:l,args:u})}},{key:"createDebugLookup",value:function(t,l,u){}},{key:"setImmediatesCallback",value:function(t){this._immediatesCallback=t}},{key:"__guard",value:function(t){if(this.__shouldPauseOnThrow())t();else try{t()}catch(t){s.reportFatalError(t)}}},{key:"__shouldPauseOnThrow",value:function(){return'undefined'!=typeof DebuggerInternal&&!0===DebuggerInternal.shouldPauseOnThrow}},{key:"__callImmediates",value:function(){n.beginEvent('JSTimers.callImmediates()'),null!=this._immediatesCallback&&this._immediatesCallback(),n.endEvent()}},{key:"__callFunction",value:function(t,l,u){this._lastFlush=Date.now(),this._eventLoopStartTime=this._lastFlush,this.__spy?n.beginEvent(t+"."+l+"("+o(u)+")"):n.beginEvent(t+"."+l+"(...)"),this.__spy&&this.__spy({type:0,module:t,method:l,args:u});var s=this.getCallableModule(t);h(!!s,'Module %s is not a registered callable module (calling %s)',t,l),h(!!s[l],'Method %s does not exist on module %s',l,t);var c=s[l].apply(s,u);return n.endEvent(),c}},{key:"__invokeCallback",value:function(l,u){this._lastFlush=Date.now(),this._eventLoopStartTime=this._lastFlush;var s=l>>>1,n=1&l?this._successCallbacks[s]:this._failureCallbacks[s];n&&(delete this._successCallbacks[s],delete this._failureCallbacks[s],n.apply(void 0,t(u)))}}],[{key:"spy",value:function(t){c.prototype.__spy=!0===t?function(t){console.log((0===t.type?'N->JS':'JS->N')+" : "+(t.module?t.module+'.':'')+t.method+"("+JSON.stringify(t.args)+")")}:!1===t?null:t}}]),c})();m.exports=c},33,[9,34,35,36,37,38,26,39]); +__d(function(g,r,i,a,m,e,d){m.exports=function(n,o){if(!(n instanceof o))throw new TypeError("Cannot call a class as a function")}},34,[]); +__d(function(g,r,i,a,m,e,d){function n(n,t){for(var o=0;o2?o-2:0),u=2;u1&&(t-=1),t<.16666666666666666?l+6*(n-l)*t:t<.5?n:t<.6666666666666666?l+(n-l)*(.6666666666666666-t)*6:l}function n(n,t,o){var u=o<.5?o*(1+t):o+t-o*t,s=2*o-u,h=l(s,u,n+.3333333333333333),c=l(s,u,n),b=l(s,u,n-.3333333333333333);return Math.round(255*h)<<24|Math.round(255*c)<<16|Math.round(255*b)<<8}var t,o='[-+]?\\d*\\.?\\d+',u="[-+]?\\d*\\.?\\d+%";function s(){for(var l=arguments.length,n=new Array(l),t=0;t255?255:n}function c(l){return(parseFloat(l)%360+360)%360/360}function b(l){var n=parseFloat(l);return n<0?0:n>1?255:Math.round(255*n)}function p(l){var n=parseFloat(l);return n<0?0:n>100?1:n/100}var y={transparent:0,aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,burntsienna:3934150143,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199};m.exports=function(l){var k,f=(void 0===t&&(t={rgb:new RegExp('rgb'+s(o,o,o)),rgba:new RegExp('rgba'+s(o,o,o,o)),hsl:new RegExp('hsl'+s(o,u,u)),hsla:new RegExp('hsla'+s(o,u,u,o)),hex3:/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex4:/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#([0-9a-fA-F]{6})$/,hex8:/^#([0-9a-fA-F]{8})$/}),t);return'number'==typeof l?l>>>0===l&&l>=0&&l<=4294967295?l:null:(k=f.hex6.exec(l))?parseInt(k[1]+'ff',16)>>>0:y.hasOwnProperty(l)?y[l]:(k=f.rgb.exec(l))?(h(k[1])<<24|h(k[2])<<16|h(k[3])<<8|255)>>>0:(k=f.rgba.exec(l))?(h(k[1])<<24|h(k[2])<<16|h(k[3])<<8|b(k[4]))>>>0:(k=f.hex3.exec(l))?parseInt(k[1]+k[1]+k[2]+k[2]+k[3]+k[3]+'ff',16)>>>0:(k=f.hex8.exec(l))?parseInt(k[1],16)>>>0:(k=f.hex4.exec(l))?parseInt(k[1]+k[1]+k[2]+k[2]+k[3]+k[3]+k[4]+k[4],16)>>>0:(k=f.hsl.exec(l))?(255|n(c(k[1]),p(k[2]),p(k[3])))>>>0:(k=f.hsla.exec(l))?(n(c(k[1]),p(k[2]),p(k[3]))|b(k[4]))>>>0:null}},65,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]),t={display:n.oneOf(['none','flex']),width:n.oneOfType([n.number,n.string]),height:n.oneOfType([n.number,n.string]),start:n.oneOfType([n.number,n.string]),end:n.oneOfType([n.number,n.string]),top:n.oneOfType([n.number,n.string]),left:n.oneOfType([n.number,n.string]),right:n.oneOfType([n.number,n.string]),bottom:n.oneOfType([n.number,n.string]),minWidth:n.oneOfType([n.number,n.string]),maxWidth:n.oneOfType([n.number,n.string]),minHeight:n.oneOfType([n.number,n.string]),maxHeight:n.oneOfType([n.number,n.string]),margin:n.oneOfType([n.number,n.string]),marginVertical:n.oneOfType([n.number,n.string]),marginHorizontal:n.oneOfType([n.number,n.string]),marginTop:n.oneOfType([n.number,n.string]),marginBottom:n.oneOfType([n.number,n.string]),marginLeft:n.oneOfType([n.number,n.string]),marginRight:n.oneOfType([n.number,n.string]),marginStart:n.oneOfType([n.number,n.string]),marginEnd:n.oneOfType([n.number,n.string]),padding:n.oneOfType([n.number,n.string]),paddingVertical:n.oneOfType([n.number,n.string]),paddingHorizontal:n.oneOfType([n.number,n.string]),paddingTop:n.oneOfType([n.number,n.string]),paddingBottom:n.oneOfType([n.number,n.string]),paddingLeft:n.oneOfType([n.number,n.string]),paddingRight:n.oneOfType([n.number,n.string]),paddingStart:n.oneOfType([n.number,n.string]),paddingEnd:n.oneOfType([n.number,n.string]),borderWidth:n.number,borderTopWidth:n.number,borderStartWidth:n.number,borderEndWidth:n.number,borderRightWidth:n.number,borderBottomWidth:n.number,borderLeftWidth:n.number,position:n.oneOf(['absolute','relative']),flexDirection:n.oneOf(['row','row-reverse','column','column-reverse']),flexWrap:n.oneOf(['wrap','nowrap','wrap-reverse']),justifyContent:n.oneOf(['flex-start','flex-end','center','space-between','space-around','space-evenly']),alignItems:n.oneOf(['flex-start','flex-end','center','stretch','baseline']),alignSelf:n.oneOf(['auto','flex-start','flex-end','center','stretch','baseline']),alignContent:n.oneOf(['flex-start','flex-end','center','stretch','space-between','space-around']),overflow:n.oneOf(['visible','hidden','scroll']),flex:n.number,flexGrow:n.number,flexShrink:n.number,flexBasis:n.oneOfType([n.number,n.string]),aspectRatio:n.number,zIndex:n.number,direction:n.oneOf(['inherit','ltr','rtl'])};m.exports=t},66,[67]); +__d(function(g,r,i,a,m,e,d){m.exports=r(d[0])()},67,[68]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]);function t(){}function o(){}o.resetWarningCache=t,m.exports=function(){function p(t,o,p,c,s,y){if(y!==n){var f=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw f.name='Invariant Violation',f}}function c(){return p}p.isRequired=p;var s={array:p,bool:p,func:p,number:p,object:p,string:p,symbol:p,any:p,arrayOf:c,element:p,elementType:p,instanceOf:c,node:p,objectOf:c,oneOf:c,oneOfType:c,shape:c,exact:c,checkPropTypes:o,resetWarningCache:t};return s.PropTypes=s,s}},68,[69]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports='SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED'},69,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var s=r(d[0]),h=r(d[1]),o={shadowColor:s,shadowOffset:h.shape({width:h.number,height:h.number}),shadowOpacity:h.number,shadowRadius:h.number};m.exports=o},70,[64,67]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),s=r(d[1]),n={transform:t.arrayOf(t.oneOfType([t.shape({perspective:t.number}),t.shape({rotate:t.string}),t.shape({rotateX:t.string}),t.shape({rotateY:t.string}),t.shape({rotateZ:t.string}),t.shape({scale:t.number}),t.shape({scaleX:t.number}),t.shape({scaleY:t.number}),t.shape({translateX:t.number}),t.shape({translateY:t.number}),t.shape({skewX:t.string}),t.shape({skewY:t.string})])),transformMatrix:function(t,s,n){if(t[s])return new Error("The transformMatrix style property is deprecated. Use `transform: [{ matrix: ... }]` instead.")},decomposedMatrix:function(t,s,n){if(t[s])return new Error("The decomposedMatrix style property is deprecated. Use `transform: [...]` instead.")},scaleX:s(t.number,'Use the transform prop instead.'),scaleY:s(t.number,'Use the transform prop instead.'),rotation:s(t.number,'Use the transform prop instead.'),translateX:s(t.number,'Use the transform prop instead.'),translateY:s(t.number,'Use the transform prop instead.')};m.exports=n},71,[67,72]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]);m.exports=function(t,o){return function(c,u,p){n.getViewManagerConfig(p)||void 0===c[u]||console.warn("`"+u+"` supplied to `"+p+"` has been deprecated. "+o);for(var s=arguments.length,f=new Array(s>3?s-3:0),l=3;l>>8)>>>0,u|=0):void 0}},75,[55,65]); +__d(function(g,r,i,a,m,e,d){'use strict';r(d[0]),r(d[1]),r(d[2]),r(d[3]);m.exports=function(t){return t}},76,[77,55,26,39]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o={createIdentityMatrix:function(){return[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},createCopy:function(t){return[t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8],t[9],t[10],t[11],t[12],t[13],t[14],t[15]]},createOrthographic:function(t,n,o,u,s,c){return[2/(n-t),0,0,0,0,2/(u-o),0,0,0,0,-2/(c-s),0,-(n+t)/(n-t),-(u+o)/(u-o),-(c+s)/(c-s),1]},createFrustum:function(t,n,o,u,s,c){var v=1/(n-t),f=1/(u-o),h=1/(s-c);return[s*v*2,0,0,0,0,s*f*2,0,0,(n+t)*v,(u+o)*f,(c+s)*h,-1,0,0,c*s*h*2,0]},createPerspective:function(t,n,o,u){var s=1/Math.tan(t/2),c=1/(o-u);return[s/n,0,0,0,0,s,0,0,0,0,(u+o)*c,-1,0,0,u*o*c*2,0]},createTranslate2d:function(t,n){var u=o.createIdentityMatrix();return o.reuseTranslate2dCommand(u,t,n),u},reuseTranslate2dCommand:function(t,n,o){t[12]=n,t[13]=o},reuseTranslate3dCommand:function(t,n,o,u){t[12]=n,t[13]=o,t[14]=u},createScale:function(t){var n=o.createIdentityMatrix();return o.reuseScaleCommand(n,t),n},reuseScaleCommand:function(t,n){t[0]=n,t[5]=n},reuseScale3dCommand:function(t,n,o,u){t[0]=n,t[5]=o,t[10]=u},reusePerspectiveCommand:function(t,n){t[11]=-1/n},reuseScaleXCommand:function(t,n){t[0]=n},reuseScaleYCommand:function(t,n){t[5]=n},reuseScaleZCommand:function(t,n){t[10]=n},reuseRotateXCommand:function(t,n){t[5]=Math.cos(n),t[6]=Math.sin(n),t[9]=-Math.sin(n),t[10]=Math.cos(n)},reuseRotateYCommand:function(t,n){t[0]=Math.cos(n),t[2]=-Math.sin(n),t[8]=Math.sin(n),t[10]=Math.cos(n)},reuseRotateZCommand:function(t,n){t[0]=Math.cos(n),t[1]=Math.sin(n),t[4]=-Math.sin(n),t[5]=Math.cos(n)},createRotateZ:function(t){var n=o.createIdentityMatrix();return o.reuseRotateZCommand(n,t),n},reuseSkewXCommand:function(t,n){t[4]=Math.tan(n)},reuseSkewYCommand:function(t,n){t[1]=Math.tan(n)},multiplyInto:function(t,n,o){var u=n[0],s=n[1],c=n[2],v=n[3],f=n[4],h=n[5],M=n[6],l=n[7],C=n[8],p=n[9],x=n[10],T=n[11],y=n[12],S=n[13],D=n[14],P=n[15],q=o[0],X=o[1],Y=o[2],I=o[3];t[0]=q*u+X*f+Y*C+I*y,t[1]=q*s+X*h+Y*p+I*S,t[2]=q*c+X*M+Y*x+I*D,t[3]=q*v+X*l+Y*T+I*P,q=o[4],X=o[5],Y=o[6],I=o[7],t[4]=q*u+X*f+Y*C+I*y,t[5]=q*s+X*h+Y*p+I*S,t[6]=q*c+X*M+Y*x+I*D,t[7]=q*v+X*l+Y*T+I*P,q=o[8],X=o[9],Y=o[10],I=o[11],t[8]=q*u+X*f+Y*C+I*y,t[9]=q*s+X*h+Y*p+I*S,t[10]=q*c+X*M+Y*x+I*D,t[11]=q*v+X*l+Y*T+I*P,q=o[12],X=o[13],Y=o[14],I=o[15],t[12]=q*u+X*f+Y*C+I*y,t[13]=q*s+X*h+Y*p+I*S,t[14]=q*c+X*M+Y*x+I*D,t[15]=q*v+X*l+Y*T+I*P},determinant:function(n){var o=t(n,16),u=o[0],s=o[1],c=o[2],v=o[3],f=o[4],h=o[5],M=o[6],l=o[7],C=o[8],p=o[9],x=o[10],T=o[11],y=o[12],S=o[13],D=o[14],P=o[15];return v*M*p*y-c*l*p*y-v*h*x*y+s*l*x*y+c*h*T*y-s*M*T*y-v*M*C*S+c*l*C*S+v*f*x*S-u*l*x*S-c*f*T*S+u*M*T*S+v*h*C*D-s*l*C*D-v*f*p*D+u*l*p*D+s*f*T*D-u*h*T*D-c*h*C*P+s*M*C*P+c*f*p*P-u*M*p*P-s*f*x*P+u*h*x*P},inverse:function(n){var u=o.determinant(n);if(!u)return n;var s=t(n,16),c=s[0],v=s[1],f=s[2],h=s[3],M=s[4],l=s[5],C=s[6],p=s[7],x=s[8],T=s[9],y=s[10],S=s[11],D=s[12],P=s[13],q=s[14],X=s[15];return[(C*S*P-p*y*P+p*T*q-l*S*q-C*T*X+l*y*X)/u,(h*y*P-f*S*P-h*T*q+v*S*q+f*T*X-v*y*X)/u,(f*p*P-h*C*P+h*l*q-v*p*q-f*l*X+v*C*X)/u,(h*C*T-f*p*T-h*l*y+v*p*y+f*l*S-v*C*S)/u,(p*y*D-C*S*D-p*x*q+M*S*q+C*x*X-M*y*X)/u,(f*S*D-h*y*D+h*x*q-c*S*q-f*x*X+c*y*X)/u,(h*C*D-f*p*D-h*M*q+c*p*q+f*M*X-c*C*X)/u,(f*p*x-h*C*x+h*M*y-c*p*y-f*M*S+c*C*S)/u,(l*S*D-p*T*D+p*x*P-M*S*P-l*x*X+M*T*X)/u,(h*T*D-v*S*D-h*x*P+c*S*P+v*x*X-c*T*X)/u,(v*p*D-h*l*D+h*M*P-c*p*P-v*M*X+c*l*X)/u,(h*l*x-v*p*x-h*M*T+c*p*T+v*M*S-c*l*S)/u,(C*T*D-l*y*D-C*x*P+M*y*P+l*x*q-M*T*q)/u,(v*y*D-f*T*D+f*x*P-c*y*P-v*x*q+c*T*q)/u,(f*l*D-v*C*D-f*M*P+c*C*P+v*M*q-c*l*q)/u,(v*C*x-f*l*x+f*M*T-c*C*T-v*M*y+c*l*y)/u]},transpose:function(t){return[t[0],t[4],t[8],t[12],t[1],t[5],t[9],t[13],t[2],t[6],t[10],t[14],t[3],t[7],t[11],t[15]]},multiplyVectorByMatrix:function(n,o){var u=t(n,4),s=u[0],c=u[1],v=u[2],f=u[3];return[s*o[0]+c*o[4]+v*o[8]+f*o[12],s*o[1]+c*o[5]+v*o[9]+f*o[13],s*o[2]+c*o[6]+v*o[10]+f*o[14],s*o[3]+c*o[7]+v*o[11]+f*o[15]]},v3Length:function(t){return Math.sqrt(t[0]*t[0]+t[1]*t[1]+t[2]*t[2])},v3Normalize:function(t,n){var u=1/(n||o.v3Length(t));return[t[0]*u,t[1]*u,t[2]*u]},v3Dot:function(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]},v3Combine:function(t,n,o,u){return[o*t[0]+u*n[0],o*t[1]+u*n[1],o*t[2]+u*n[2]]},v3Cross:function(t,n){return[t[1]*n[2]-t[2]*n[1],t[2]*n[0]-t[0]*n[2],t[0]*n[1]-t[1]*n[0]]},quaternionToDegreesXYZ:function(n,u,s){var c=t(n,4),v=c[0],f=c[1],h=c[2],M=c[3],l=v*v,C=f*f,p=h*h,x=v*f+h*M,T=M*M+l+C+p,y=180/Math.PI;return x>.49999*T?[0,2*Math.atan2(v,M)*y,90]:x<-.49999*T?[0,-2*Math.atan2(v,M)*y,-90]:[o.roundTo3Places(Math.atan2(2*v*M-2*f*h,1-2*l-2*p)*y),o.roundTo3Places(Math.atan2(2*f*M-2*v*h,1-2*C-2*p)*y),o.roundTo3Places(Math.asin(2*v*f+2*h*M)*y)]},roundTo3Places:function(t){var n=t.toString().split('e');return.001*Math.round(n[0]+'e'+(n[1]?+n[1]-3:3))},decomposeMatrix:function(t){n(16===t.length,'Matrix decomposition needs a list of 3d matrix values, received %s',t);var u=[],s=[],c=[],v=[],f=[];if(t[15]){for(var h=[],M=[],l=0;l<4;l++){h.push([]);for(var C=0;C<4;C++){var p=t[4*l+C]/t[15];h[l].push(p),M.push(3===C?0:p)}}if(M[15]=1,o.determinant(M)){if(0!==h[0][3]||0!==h[1][3]||0!==h[2][3]){var x=[h[0][3],h[1][3],h[2][3],h[3][3]],T=o.inverse(M),y=o.transpose(T);u=o.multiplyVectorByMatrix(x,y)}else u[0]=u[1]=u[2]=0,u[3]=1;for(var S=0;S<3;S++)f[S]=h[3][S];for(var D=[],P=0;P<3;P++)D[P]=[h[P][0],h[P][1],h[P][2]];c[0]=o.v3Length(D[0]),D[0]=o.v3Normalize(D[0],c[0]),v[0]=o.v3Dot(D[0],D[1]),D[1]=o.v3Combine(D[1],D[0],1,-v[0]),v[0]=o.v3Dot(D[0],D[1]),D[1]=o.v3Combine(D[1],D[0],1,-v[0]),c[1]=o.v3Length(D[1]),D[1]=o.v3Normalize(D[1],c[1]),v[0]/=c[1],v[1]=o.v3Dot(D[0],D[2]),D[2]=o.v3Combine(D[2],D[0],1,-v[1]),v[2]=o.v3Dot(D[1],D[2]),D[2]=o.v3Combine(D[2],D[1],1,-v[2]),c[2]=o.v3Length(D[2]),D[2]=o.v3Normalize(D[2],c[2]),v[1]/=c[2],v[2]/=c[2];var q,X=o.v3Cross(D[1],D[2]);if(o.v3Dot(D[0],X)<0)for(var Y=0;Y<3;Y++)c[Y]*=-1,D[Y][0]*=-1,D[Y][1]*=-1,D[Y][2]*=-1;return s[0]=.5*Math.sqrt(Math.max(1+D[0][0]-D[1][1]-D[2][2],0)),s[1]=.5*Math.sqrt(Math.max(1-D[0][0]+D[1][1]-D[2][2],0)),s[2]=.5*Math.sqrt(Math.max(1-D[0][0]-D[1][1]+D[2][2],0)),s[3]=.5*Math.sqrt(Math.max(1+D[0][0]+D[1][1]+D[2][2],0)),D[2][1]>D[1][2]&&(s[0]=-s[0]),D[0][2]>D[2][0]&&(s[1]=-s[1]),D[1][0]>D[0][1]&&(s[2]=-s[2]),{rotationDegrees:q=s[0]<.001&&s[0]>=0&&s[1]<.001&&s[1]>=0?[0,0,o.roundTo3Places(180*Math.atan2(D[0][1],D[0][0])/Math.PI)]:o.quaternionToDegreesXYZ(s,h,D),perspective:u,quaternion:s,scale:c,skew:v,translation:f,rotate:q[2],rotateX:q[0],rotateY:q[1],scaleX:c[0],scaleY:c[1],translateX:f[0],translateY:f[1]}}}}};m.exports=o},77,[5,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t={width:void 0,height:void 0};m.exports=function(h,n){return(h=h||t)!==(n=n||t)&&(h.width!==n.width||h.height!==n.height)}},78,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),u=(r(d[2]),r(d[3]),r(d[4]),r(d[5]),(function(){function u(){t(this,u)}return n(u,null,[{key:"validateStyleProp",value:function(t,n,u){}},{key:"validateStyle",value:function(t,n){}},{key:"addValidStylePropTypes",value:function(t){}}]),u})());m.exports=u},79,[34,35,63,73,74,26]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports=function t(n){if(null!==n&&'object'==typeof n){if(!Array.isArray(n))return n;for(var f={},o=0,u=n.length;othis.eventPool.length&&this.eventPool.push(e)}function ne(e){e.eventPool=[],e.getPooled=ee,e.release=te}o(Z.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=J)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=J)},persist:function(){this.isPersistent=J},isPersistent:K,destructor:function(){var e,t=this.constructor.Interface;for(e in t)this[e]=null;this.nativeEvent=this._targetInst=this.dispatchConfig=null,this.isPropagationStopped=this.isDefaultPrevented=K,this._dispatchInstances=this._dispatchListeners=null}}),Z.Interface={type:null,target:null,currentTarget:function(){return null},eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null},Z.extend=function(e){function t(){}function n(){return r.apply(this,arguments)}var r=this;t.prototype=r.prototype;var i=new t;return o(i,n.prototype),n.prototype=i,n.prototype.constructor=n,n.Interface=o({},r.Interface,e),n.extend=r.extend,ne(n),n},ne(Z);var re=Z.extend({touchHistory:function(){return null}});function ie(e){return"topTouchStart"===e}function ae(e){return"topTouchMove"===e}var le=["topTouchStart"],oe=["topTouchMove"],ue=["topTouchCancel","topTouchEnd"],ce=[],se={touchBank:ce,numberActiveTouches:0,indexOfSingleActiveTouch:-1,mostRecentTimeStamp:0};function fe(e){return e.timeStamp||e.timestamp}function de(e){if(null==(e=e.identifier))throw v("Touch object is missing identifier.");return e}function pe(e){var t=de(e),n=ce[t];n?(n.touchActive=!0,n.startPageX=e.pageX,n.startPageY=e.pageY,n.startTimeStamp=fe(e),n.currentPageX=e.pageX,n.currentPageY=e.pageY,n.currentTimeStamp=fe(e),n.previousPageX=e.pageX,n.previousPageY=e.pageY,n.previousTimeStamp=fe(e)):(n={touchActive:!0,startPageX:e.pageX,startPageY:e.pageY,startTimeStamp:fe(e),currentPageX:e.pageX,currentPageY:e.pageY,currentTimeStamp:fe(e),previousPageX:e.pageX,previousPageY:e.pageY,previousTimeStamp:fe(e)},ce[t]=n),se.mostRecentTimeStamp=fe(e)}function he(e){var t=ce[de(e)];t?(t.touchActive=!0,t.previousPageX=t.currentPageX,t.previousPageY=t.currentPageY,t.previousTimeStamp=t.currentTimeStamp,t.currentPageX=e.pageX,t.currentPageY=e.pageY,t.currentTimeStamp=fe(e),se.mostRecentTimeStamp=fe(e)):console.error("Cannot record touch move without a touch start.\nTouch Move: %s\n","Touch Bank: %s",ge(e),ve())}function me(e){var t=ce[de(e)];t?(t.touchActive=!1,t.previousPageX=t.currentPageX,t.previousPageY=t.currentPageY,t.previousTimeStamp=t.currentTimeStamp,t.currentPageX=e.pageX,t.currentPageY=e.pageY,t.currentTimeStamp=fe(e),se.mostRecentTimeStamp=fe(e)):console.error("Cannot record touch end without a touch start.\nTouch End: %s\n","Touch Bank: %s",ge(e),ve())}function ge(e){return JSON.stringify({identifier:e.identifier,pageX:e.pageX,pageY:e.pageY,timestamp:fe(e)})}function ve(){var e=JSON.stringify(ce.slice(0,20));return 20l||(a=l),Fe(a,e,i)}}}),I=function(e){return Pe[e._nativeTag]||null},A=Ce,M=function(e){var t=e.stateNode._nativeTag;if(void 0===t&&(t=e.stateNode.canonical._nativeTag),!t)throw v("All native instances should have a tag.");return t},ke.injection.injectGlobalResponderHandler({onChange:function(e,t,n){null!==t?c.setJSResponder(t.stateNode._nativeTag,n):c.clearJSResponder()}});var Oe=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;Oe.hasOwnProperty("ReactCurrentDispatcher")||(Oe.ReactCurrentDispatcher={current:null});var je="function"==typeof Symbol&&("function"==typeof Symbol?Symbol.for:"@@for"),We=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.element"):60103,He=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.portal"):60106,Qe=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.fragment"):60107,Be=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.strict_mode"):60108,Le=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.profiler"):60114,Ve=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.provider"):60109,Ye=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.context"):60110,Xe=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.concurrent_mode"):60111,$e=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.forward_ref"):60112,qe=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.suspense"):60113,Ge=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.memo"):60115,Je=je?("function"==typeof Symbol?Symbol.for:"@@for")("react.lazy"):60116;je&&("function"==typeof Symbol?Symbol.for:"@@for")("react.event_component"),je&&("function"==typeof Symbol?Symbol.for:"@@for")("react.event_target"),je&&("function"==typeof Symbol?Symbol.for:"@@for")("react.event_target.touch_hit");var Ke="function"==typeof Symbol&&("function"==typeof Symbol?Symbol.iterator:"@@iterator");function Ze(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=Ke&&e[Ke]||e["@@iterator"])?e:null}function et(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case Xe:return"ConcurrentMode";case Qe:return"Fragment";case He:return"Portal";case Le:return"Profiler";case Be:return"StrictMode";case qe:return"Suspense"}if("object"==typeof e)switch(e.$$typeof){case Ye:return"Context.Consumer";case Ve:return"Context.Provider";case $e:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case Ge:return et(e.type);case Je:if(e=1===e._status?e._result:null)return et(e)}return null}function tt(e){var t=e;if(e.alternate)for(;t.return;)t=t.return;else{if(0!=(2&t.effectTag))return 1;for(;t.return;)if(0!=(2&(t=t.return).effectTag))return 1}return 3===t.tag?2:3}function nt(e){if(2!==tt(e))throw v("Unable to find node on an unmounted component.")}function rt(e){var t=e.alternate;if(!t){if(3===(t=tt(e)))throw v("Unable to find node on an unmounted component.");return 1===t?null:e}for(var n=e,r=t;;){var i=n.return;if(null===i)break;var a=i.alternate;if(null===a){if(null!==(r=i.return)){n=r;continue}break}if(i.child===a.child){for(a=i.child;a;){if(a===n)return nt(i),e;if(a===r)return nt(i),t;a=a.sibling}throw v("Unable to find node on an unmounted component.")}if(n.return!==r.return)n=i,r=a;else{for(var l=!1,o=i.child;o;){if(o===n){l=!0,n=i,r=a;break}if(o===r){l=!0,r=i,n=a;break}o=o.sibling}if(!l){for(o=a.child;o;){if(o===n){l=!0,n=a,r=i;break}if(o===r){l=!0,r=a,n=i;break}o=o.sibling}if(!l)throw v("Child was not found in either parent set. This indicates a bug in React related to the return pointer. Please file an issue.")}}if(n.alternate!==r)throw v("Return fibers should always be each others' alternates. This error is likely caused by a bug in React. Please file an issue.")}if(3!==n.tag)throw v("Unable to find node on an unmounted component.");return n.stateNode.current===n?e:t}function it(e){if(!(e=rt(e)))return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}var at={},lt=null,ot=0;function ut(e,t,n){if(Array.isArray(t))for(var r=t.length;r--&&0_t||(e.current=Et[_t],Et[_t]=null,_t--)}function Ct(e,t){Et[++_t]=e.current,e.current=t}var Rt={},Nt={current:Rt},zt={current:!1},Ut=Rt;function It(e,t){var n=e.type.contextTypes;if(!n)return Rt;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i,a={};for(i in n)a[i]=t[i];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=a),a}function At(e){return null!==(e=e.childContextTypes)&&void 0!==e}function Mt(e){Pt(zt),Pt(Nt)}function Dt(e){Pt(zt),Pt(Nt)}function Ft(e,t,n){if(Nt.current!==Rt)throw v("Unexpected context found on stack. This error is likely caused by a bug in React. Please file an issue.");Ct(Nt,t),Ct(zt,n)}function Ot(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var i in r=r.getChildContext())if(!(i in e))throw v((et(t)||"Unknown")+'.getChildContext(): key "'+i+'" is not defined in childContextTypes.');return o({},n,r)}function jt(e){var t=e.stateNode;return t=t&&t.__reactInternalMemoizedMergedChildContext||Rt,Ut=Nt.current,Ct(Nt,t),Ct(zt,zt.current),!0}function Wt(e,t,n){var r=e.stateNode;if(!r)throw v("Expected to have an instance by this point. This error is likely caused by a bug in React. Please file an issue.");n?(t=Ot(e,t,Ut),r.__reactInternalMemoizedMergedChildContext=t,Pt(zt),Pt(Nt),Ct(Nt,t)):Pt(zt),Ct(zt,n)}var Ht=null,Qt=null;function Bt(e){return function(t){try{return e(t)}catch(e){}}}function Lt(e){if("undefined"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)return!1;var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)return!0;try{var n=t.inject(e);Ht=Bt(function(e){return t.onCommitFiberRoot(n,e)}),Qt=Bt(function(e){return t.onCommitFiberUnmount(n,e)})}catch(e){}return!0}var Vt=m.unstable_runWithPriority,Yt=m.unstable_scheduleCallback,Xt=m.unstable_cancelCallback,$t=m.unstable_now,qt=m.unstable_getCurrentPriorityLevel,Gt=m.unstable_ImmediatePriority,Jt=m.unstable_UserBlockingPriority,Kt=m.unstable_NormalPriority,Zt=m.unstable_LowPriority,en=m.unstable_IdlePriority,tn={},nn=m.unstable_shouldYield,rn=null,an=null,ln=!1,on=$t(),un=1e4>on?$t:function(){return $t()-on};function cn(){switch(qt()){case Gt:return 99;case Jt:return 98;case Kt:return 97;case Zt:return 96;case en:return 95;default:throw v("Unknown priority level.")}}function sn(e){switch(e){case 99:return Gt;case 98:return Jt;case 97:return Kt;case 96:return Zt;case 95:return en;default:throw v("Unknown priority level.")}}function fn(e,t,n){return 99===e?(null===rn?(rn=[t],an=Yt(Gt,pn)):rn.push(t),tn):(e=sn(e),Yt(e,t,n))}function dn(){null!==an&&Xt(an),pn()}function pn(){if(!ln&&null!==rn){ln=!0;var e=0;try{for(;e=(e=10*(1073741822-t)-10*(1073741822-e))?99:250>=e?98:5250>=e?97:95}function mn(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.contextDependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.effectTag=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childExpirationTime=this.expirationTime=0,this.alternate=null}function gn(e,t,n,r){return new mn(e,t,n,r)}function vn(e){return!(!(e=e.prototype)||!e.isReactComponent)}function yn(e){if("function"==typeof e)return vn(e)?1:0;if(void 0!==e&&null!==e){if((e=e.$$typeof)===$e)return 11;if(e===Ge)return 14}return 2}function bn(e,t){var n=e.alternate;return null===n?((n=gn(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.effectTag=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childExpirationTime=e.childExpirationTime,n.expirationTime=e.expirationTime,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,n.contextDependencies=e.contextDependencies,n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Tn(e,t,n,r,i,a){var l=2;if(r=e,"function"==typeof e)vn(e)&&(l=1);else if("string"==typeof e)l=5;else e:switch(e){case Qe:return xn(n.children,i,a,t);case Xe:return Sn(n,3|i,a,t);case Be:return Sn(n,2|i,a,t);case Le:return(e=gn(12,n,t,4|i)).elementType=Le,e.type=Le,e.expirationTime=a,e;case qe:return(e=gn(13,n,t,i)).elementType=qe,e.type=qe,e.expirationTime=a,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case Ve:l=10;break e;case Ye:l=9;break e;case $e:l=11;break e;case Ge:l=14;break e;case Je:l=16,r=null;break e}throw v("Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: "+(null==e?e:typeof e)+".")}return(t=gn(l,n,t,i)).elementType=e,t.type=r,t.expirationTime=a,t}function xn(e,t,n,r){return(e=gn(7,e,r,t)).expirationTime=n,e}function Sn(e,t,n,r){return e=gn(8,e,r,t),t=0==(1&t)?Be:Xe,e.elementType=t,e.type=t,e.expirationTime=n,e}function wn(e,t,n){return(e=gn(6,e,null,t)).expirationTime=n,e}function kn(e,t,n){return(t=gn(4,null!==e.children?e.children:[],e.key,t)).expirationTime=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function En(e,t){this.current=null,this.containerInfo=e,this.pingCache=this.pendingChildren=null,this.pendingCommitExpirationTime=0,this.finishedWork=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=t,this.callbackNode=this.firstBatch=null,this.pingTime=this.lastPendingTime=this.firstPendingTime=this.callbackExpirationTime=0}function _n(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t}var Pn=Object.prototype.hasOwnProperty;function Cn(e,t){if(_n(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r=t&&(fi=!0),e.contextDependencies=null}function jn(e,t){if(An!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(An=e,t=1073741823),t={context:e,observedBits:t,next:null},null===In){if(null===Un)throw v("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().");In=t,Un.contextDependencies={first:t,expirationTime:0}}else In=In.next=t;return e._currentValue}var Wn=!1;function Hn(e){return{baseState:e,firstUpdate:null,lastUpdate:null,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function Qn(e){return{baseState:e.baseState,firstUpdate:e.firstUpdate,lastUpdate:e.lastUpdate,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function Bn(e){return{expirationTime:e,tag:0,payload:null,callback:null,next:null,nextEffect:null}}function Ln(e,t){null===e.lastUpdate?e.firstUpdate=e.lastUpdate=t:(e.lastUpdate.next=t,e.lastUpdate=t)}function Vn(e,t){var n=e.alternate;if(null===n){var r=e.updateQueue,i=null;null===r&&(r=e.updateQueue=Hn(e.memoizedState))}else r=e.updateQueue,i=n.updateQueue,null===r?null===i?(r=e.updateQueue=Hn(e.memoizedState),i=n.updateQueue=Hn(n.memoizedState)):r=e.updateQueue=Qn(i):null===i&&(i=n.updateQueue=Qn(r));null===i||r===i?Ln(r,t):null===r.lastUpdate||null===i.lastUpdate?(Ln(r,t),Ln(i,t)):(Ln(r,t),i.lastUpdate=t)}function Yn(e,t){var n=e.updateQueue;null===(n=null===n?e.updateQueue=Hn(e.memoizedState):Xn(e,n)).lastCapturedUpdate?n.firstCapturedUpdate=n.lastCapturedUpdate=t:(n.lastCapturedUpdate.next=t,n.lastCapturedUpdate=t)}function Xn(e,t){var n=e.alternate;return null!==n&&t===n.updateQueue&&(t=e.updateQueue=Qn(t)),t}function $n(e,t,n,r,i,a){switch(n.tag){case 1:return"function"==typeof(e=n.payload)?e.call(a,r,i):e;case 3:e.effectTag=-2049&e.effectTag|64;case 0:if(null===(i="function"==typeof(e=n.payload)?e.call(a,r,i):e)||void 0===i)break;return o({},r,i);case 2:Wn=!0}return r}function qn(e,t,n,r,i){Wn=!1;for(var a=(t=Xn(e,t)).baseState,l=null,o=0,u=t.firstUpdate,c=a;null!==u;){var s=u.expirationTime;sm?(g=h,h=null):g=h.sibling;var v=d(i,h,o[m],u);if(null===v){null===h&&(h=g);break}e&&h&&null===v.alternate&&t(i,h),l=a(v,l,m),null===s?c=v:s.sibling=v,s=v,h=g}if(m===o.length)return n(i,h),c;if(null===h){for(;mm?(g=h,h=null):g=h.sibling;var b=d(i,h,y.value,u);if(null===b){null===h&&(h=g);break}e&&h&&null===b.alternate&&t(i,h),l=a(b,l,m),null===s?c=b:s.sibling=b,s=b,h=g}if(y.done)return n(i,h),c;if(null===h){for(;!y.done;m++,y=o.next())null!==(y=f(i,y.value,u))&&(l=a(y,l,m),null===s?c=y:s.sibling=y,s=y);return c}for(h=r(i,h);!y.done;m++,y=o.next())null!==(y=p(h,i,m,y.value,u))&&(e&&null!==y.alternate&&h.delete(null===y.key?m:y.key),l=a(y,l,m),null===s?c=y:s.sibling=y,s=y);return e&&h.forEach(function(e){return t(i,e)}),c}return function(e,r,a,o){var u="object"==typeof a&&null!==a&&a.type===Qe&&null===a.key;u&&(a=a.props.children);var c="object"==typeof a&&null!==a;if(c)switch(a.$$typeof){case We:e:{for(c=a.key,u=r;null!==u;){if(u.key===c){if(7===u.tag?a.type===Qe:u.elementType===a.type){n(e,u.sibling),(r=i(u,a.type===Qe?a.props.children:a.props)).ref=lr(e,u,a),r.return=e,e=r;break e}n(e,u);break}t(e,u),u=u.sibling}a.type===Qe?((r=xn(a.props.children,e.mode,o,a.key)).return=e,e=r):((o=Tn(a.type,a.key,a.props,null,e.mode,o)).ref=lr(e,r,a),o.return=e,e=o)}return l(e);case He:e:{for(u=a.key;null!==r;){if(r.key===u){if(4===r.tag&&r.stateNode.containerInfo===a.containerInfo&&r.stateNode.implementation===a.implementation){n(e,r.sibling),(r=i(r,a.children||[])).return=e,e=r;break e}n(e,r);break}t(e,r),r=r.sibling}(r=kn(a,e.mode,o)).return=e,e=r}return l(e)}if("string"==typeof a||"number"==typeof a)return a=""+a,null!==r&&6===r.tag?(n(e,r.sibling),(r=i(r,a)).return=e,e=r):(n(e,r),(r=wn(a,e.mode,o)).return=e,e=r),l(e);if(ar(a))return h(e,r,a,o);if(Ze(a))return m(e,r,a,o);if(c&&or(e,a),void 0===a&&!u)switch(e.tag){case 1:case 0:throw v(((e=e.type).displayName||e.name||"Component")+"(...): Nothing was returned from render. This usually means a return statement is missing. Or, to render nothing, return null.")}return n(e,r)}}var cr=ur(!0),sr=ur(!1),fr={},dr={current:fr},pr={current:fr},hr={current:fr};function mr(e){if(e===fr)throw v("Expected host context to exist. This error is likely caused by a bug in React. Please file an issue.");return e}function gr(e,t){Ct(hr,t),Ct(pr,e),Ct(dr,fr),Pt(dr),Ct(dr,{isInAParentText:!1})}function vr(e){Pt(dr),Pt(pr),Pt(hr)}function yr(e){mr(hr.current);var t=mr(dr.current),n=e.type;n="AndroidTextInput"===n||"RCTMultilineTextInputView"===n||"RCTSinglelineTextInputView"===n||"RCTText"===n||"RCTVirtualText"===n,t!==(n=t.isInAParentText!==n?{isInAParentText:n}:t)&&(Ct(pr,e),Ct(dr,n))}function br(e){pr.current===e&&(Pt(dr),Pt(pr))}var Tr=0,xr=2,Sr=4,wr=8,kr=16,Er=32,_r=64,Pr=128,Cr=Oe.ReactCurrentDispatcher,Rr=0,Nr=null,zr=null,Ur=null,Ir=null,Ar=null,Mr=null,Dr=0,Fr=null,Or=0,jr=!1,Wr=null,Hr=0;function Qr(){throw v("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem.")}function Br(e,t){if(null===t)return!1;for(var n=0;nDr&&(Dr=s)):(sHr))throw v("Too many re-renders. React limits the number of renders to prevent an infinite loop.");var r=e.alternate;if(e===Nr||null!==r&&r===Nr)if(jr=!0,e={expirationTime:Rr,action:n,eagerReducer:null,eagerState:null,next:null},null===Wr&&(Wr=new Map),void 0===(n=Wr.get(t)))Wr.set(t,e);else{for(t=n;null!==t.next;)t=t.next;t.next=e}else{Na();var i=ga(),a={expirationTime:i=va(i,e),action:n,eagerReducer:null,eagerState:null,next:null},l=t.last;if(null===l)a.next=a;else{var o=l.next;null!==o&&(a.next=o),l.next=a}if(t.last=a,0===e.expirationTime&&(null===r||0===r.expirationTime)&&null!==(r=t.lastRenderedReducer))try{var u=t.lastRenderedState,c=r(u,n);if(a.eagerReducer=r,a.eagerState=c,_n(c,u))return}catch(e){}ya(e,i)}}var ni={readContext:jn,useCallback:Qr,useContext:Qr,useEffect:Qr,useImperativeHandle:Qr,useLayoutEffect:Qr,useMemo:Qr,useReducer:Qr,useRef:Qr,useState:Qr,useDebugValue:Qr},ri={readContext:jn,useCallback:function(e,t){return Yr().memoizedState=[e,void 0===t?null:t],e},useContext:jn,useEffect:function(e,t){return Jr(516,192,e,t)},useImperativeHandle:function(e,t,n){return n=null!==n&&void 0!==n?n.concat([e]):null,Jr(4,36,Zr.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Jr(4,36,e,t)},useMemo:function(e,t){var n=Yr();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Yr();return t=void 0!==n?n(t):t,r.memoizedState=r.baseState=t,e=(e=r.queue={last:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=ti.bind(null,Nr,e),[r.memoizedState,e]},useRef:function(e){return e={current:e},Yr().memoizedState=e},useState:function(e){var t=Yr();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={last:null,dispatch:null,lastRenderedReducer:$r,lastRenderedState:e}).dispatch=ti.bind(null,Nr,e),[t.memoizedState,e]},useDebugValue:ei},ii={readContext:jn,useCallback:function(e,t){var n=Xr();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Br(t,r[1])?r[0]:(n.memoizedState=[e,t],e)},useContext:jn,useEffect:function(e,t){return Kr(516,192,e,t)},useImperativeHandle:function(e,t,n){return n=null!==n&&void 0!==n?n.concat([e]):null,Kr(4,36,Zr.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Kr(4,36,e,t)},useMemo:function(e,t){var n=Xr();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Br(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)},useReducer:qr,useRef:function(){return Xr().memoizedState},useState:function(e){return qr($r)},useDebugValue:ei},ai=null,li=null,oi=!1;function ui(e,t){switch(e.tag){case 5:return null!==(t=mt(e.type,e.pendingProps))&&(e.stateNode=t,!0);case 6:return null!==(t=mt(e.pendingProps))&&(e.stateNode=t,!0);case 13:default:return!1}}function ci(e){if(oi){var t=li;if(t){var n=t;if(!ui(e,t)){if(!(t=mt())||!ui(e,t))return e.effectTag|=2,oi=!1,void(ai=e);var r=ai,i=gn(5,null,null,0);i.elementType="DELETED",i.type="DELETED",i.stateNode=n,i.return=r,i.effectTag=8,null!==r.lastEffect?(r.lastEffect.nextEffect=i,r.lastEffect=i):r.firstEffect=r.lastEffect=i}ai=e,li=mt()}else e.effectTag|=2,oi=!1,ai=e}}var si=Oe.ReactCurrentOwner,fi=!1;function di(e,t,n,r){t.child=null===e?sr(t,null,n,r):cr(t,e.child,n,r)}function pi(e,t,n,r,i){n=n.render;var a=t.ref;return On(t,i),r=Lr(e,t,n,r,a,i),null===e||fi?(t.effectTag|=1,di(e,t,r,i),t.child):(t.updateQueue=e.updateQueue,t.effectTag&=-517,e.expirationTime<=i&&(e.expirationTime=0),Si(e,t,i))}function hi(e,t,n,r,i,a){if(null===e){var l=n.type;return"function"!=typeof l||vn(l)||void 0!==l.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=Tn(n.type,null,r,null,t.mode,a)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=l,mi(e,t,l,r,i,a))}return l=e.child,it)&&da.set(e,t)}Ta(e,n,t)}}function ba(e,t){e.expirationTimei.firstPendingTime&&(i.firstPendingTime=t),0===(e=i.lastPendingTime)||t=t)&&(e.finishedWork=e.current.alternate,e.pendingCommitExpirationTime=t,fn(97,function(){return n._onComplete(),null}),!0)}function wa(){if(null!==da){var e=da;da=null,e.forEach(function(e,t){fn(99,Ea.bind(null,t,e))}),dn()}}function ka(e,t){e.pendingCommitExpirationTime=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,St(n)),null!==na)for(n=na.return;null!==n;){var r=n;switch(r.tag){case 1:var i=r.type.childContextTypes;null!==i&&void 0!==i&&Mt();break;case 3:vr(),Dt();break;case 5:br(r);break;case 4:vr();break;case 10:Fn(r)}n=n.return}ta=e,na=bn(e.current,null),ra=t,ia=Gi,aa=1073741823}function Ea(e,t,n){if(ea===$i||ea===qi)throw v("Should not already be working.");if(e.firstPendingTime component higher in the tree to provide a loading indicator or placeholder to display."+kt(u))}ia!==Gi&&ia!==Ki||(ia=Ji),c=Pi(c,u),u=o;do{switch(u.tag){case 3:u.effectTag|=2048,u.expirationTime=s,Yn(u,s=Hi(u,c,s));break e;case 1:if(f=c,l=u.type,o=u.stateNode,0==(64&u.effectTag)&&("function"==typeof l.getDerivedStateFromError||null!==o&&"function"==typeof o.componentDidCatch&&(null===ca||!ca.has(o)))){u.effectTag|=2048,u.expirationTime=s,Yn(u,s=Qi(u,f,s));break e}}u=u.return}while(null!==u)}na=Pa(a)}if(ea=r,Mn(),Vi.current=i,null!==na)return Ea.bind(null,e,t)}if(Sa(e,t))return null;switch(ta=null,ia){case Gi:throw v("Should have a work-in-progress.");case Ji:return r=e.lastPendingTime,e.lastPendingTimer?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*Li(r/1960))-r)&&(r=n),10<(n=r)))return e.timeoutHandle=xt(Ca.bind(null,e,t),n),null}return Ca.bind(null,e,t);case Zi:return Ca.bind(null,e,t);default:throw v("Unknown root exit status.")}}function _a(e){var t=Ma(e.alternate,e,ra);return e.memoizedProps=e.pendingProps,null===t&&(t=Pa(e)),Yi.current=null,t}function Pa(e){na=e;do{var t=na.alternate;if(e=na.return,0==(1024&na.effectTag)){e:{var n=t,r=ra,i=(t=na).pendingProps;switch(t.tag){case 2:case 16:break;case 15:case 0:break;case 1:At(t.type)&&Mt();break;case 3:vr(),Dt(),(i=t.stateNode).pendingContext&&(i.context=i.pendingContext,i.pendingContext=null),null!==n&&null!==n.child||(t.effectTag&=-3),ki(t);break;case 5:br(t),r=mr(hr.current);var a=t.type;if(null!==n&&null!=t.stateNode)Ei(n,t,a,i,r),n.ref!==t.ref&&(t.effectTag|=128);else if(i){n=mr(dr.current);var l=a,o=i,s=r,f=t,d=yt();l=u.get(l);var p=dt(null,at,o,l.validAttributes);c.createView(d,l.uiViewClassName,s,p),s=new ht(d,l),_e[d]=f,Pe[d]=o,wi(o=s,t,!1,!1),Tt(o)&&(t.effectTag|=4),t.stateNode=o,null!==t.ref&&(t.effectTag|=128)}else if(null===t.stateNode)throw v("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");break;case 6:if(n&&null!=t.stateNode)_i(n,t,n.memoizedProps,i);else{if("string"!=typeof i&&null===t.stateNode)throw v("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");if(n=mr(hr.current),r=t,!(a=mr(dr.current)).isInAParentText)throw v("Text strings must be rendered within a component.");a=yt(),c.createView(a,"RCTRawText",n,{text:i}),_e[a]=t,r.stateNode=a}break;case 11:break;case 13:if(i=t.memoizedState,0!=(64&t.effectTag)){t.expirationTime=r;break e}i=null!==i,r=!1,null!==n&&(r=null!==(a=n.memoizedState),i||null===a||((a=a.fallbackExpirationTime)r&&(r=n),o>r&&(r=o),a=a.sibling;i.childExpirationTime=r}if(null!==t)return t;null!==e&&0==(1024&e.effectTag)&&(null===e.firstEffect&&(e.firstEffect=na.firstEffect),null!==na.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=na.firstEffect),e.lastEffect=na.lastEffect),1r?i:r,e.firstPendingTime=r,r=n?xi(e,t,n):null!==(t=Si(e,t,n))?t.sibling:null}return Si(e,t,n)}}else fi=!1;switch(t.expirationTime=0,t.tag){case 2:r=t.elementType,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps;var i=It(t,Nt.current);if(On(t,n),i=Lr(null,t,r,e,i,n),t.effectTag|=1,"object"==typeof i&&null!==i&&"function"==typeof i.render&&void 0===i.$$typeof){if(t.tag=1,Vr(),At(r)){var a=!0;jt(t)}else a=!1;t.memoizedState=null!==i.state&&void 0!==i.state?i.state:null;var l=r.getDerivedStateFromProps;"function"==typeof l&&Zn(t,r,l,e),i.updater=er,t.stateNode=i,i._reactInternalFiber=t,ir(t,r,e,n),t=bi(null,t,r,!0,a,n)}else t.tag=0,di(null,t,i,n),t=t.child;return t;case 16:switch(i=t.elementType,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,i=Nn(i),t.type=i,a=t.tag=yn(i),e=Rn(i,e),a){case 0:t=vi(null,t,i,e,n);break;case 1:t=yi(null,t,i,e,n);break;case 11:t=pi(null,t,i,e,n);break;case 14:t=hi(null,t,i,Rn(i.type,e),r,n);break;default:throw v("Element type is invalid. Received a promise that resolves to: "+i+". Lazy element type must resolve to a class or function.")}return t;case 0:return r=t.type,i=t.pendingProps,vi(e,t,r,i=t.elementType===r?i:Rn(r,i),n);case 1:return r=t.type,i=t.pendingProps,yi(e,t,r,i=t.elementType===r?i:Rn(r,i),n);case 3:if(Ti(t),null===(r=t.updateQueue))throw v("If the root does not have an updateQueue, we should have already bailed out. This error is likely caused by a bug in React. Please file an issue.");return i=null!==(i=t.memoizedState)?i.element:null,qn(t,r,t.pendingProps,null,n),(r=t.memoizedState.element)===i?t=Si(e,t,n):(di(e,t,r,n),t=t.child),t;case 5:return yr(t),null===e&&ci(t),r=t.pendingProps.children,gi(e,t),di(e,t,r,n),t.child;case 6:return null===e&&ci(t),null;case 13:return xi(e,t,n);case 4:return gr(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=cr(t,null,r,n):di(e,t,r,n),t.child;case 11:return r=t.type,i=t.pendingProps,pi(e,t,r,i=t.elementType===r?i:Rn(r,i),n);case 7:return di(e,t,t.pendingProps,n),t.child;case 8:case 12:return di(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,i=t.pendingProps,l=t.memoizedProps,Dn(t,a=i.value),null!==l){var o=l.value;if(0===(a=_n(o,a)?0:0|("function"==typeof r._calculateChangedBits?r._calculateChangedBits(o,a):1073741823))){if(l.children===i.children&&!zt.current){t=Si(e,t,n);break e}}else for(null!==(o=t.child)&&(o.return=t);null!==o;){var u=o.contextDependencies;if(null!==u){l=o.child;for(var c=u.first;null!==c;){if(c.context===r&&0!=(c.observedBits&a)){1===o.tag&&((c=Bn(n)).tag=2,Vn(o,c)),o.expirationTime=o?(this._iteratedObject=void 0,h(void 0,!0)):(this._nextIndex=u+1,"key"===s?h(u,!1):"value"===s?h(n[u],!1):"key+value"===s?h([u,n[u]],!1):void 0)}},{key:'@@iterator',value:function(){return this}}]),t})(),s=(function(){function t(o){if(n(this,t),'string'!=typeof o)throw new TypeError('Object is not a string');this._iteratedString=o,this._nextIndex=0}return o(t,[{key:"next",value:function(){if(!this instanceof t)throw new TypeError('Object is not a StringIterator');if(null==this._iteratedString)return h(void 0,!0);var n,o=this._nextIndex,u=this._iteratedString,s=u.length;if(o>=s)return this._iteratedString=void 0,h(void 0,!0);var c=u.charCodeAt(o);if(c<55296||c>56319||o+1===s)n=u[o];else{var f=u.charCodeAt(o+1);n=f<56320||f>57343?u[o]:u[o]+u[o+1]}return this._nextIndex=o+n.length,h(n,!1)}},{key:'@@iterator',value:function(){return this}}]),t})();function h(t,n){return{value:t,done:n}}return function(n,o){return'string'==typeof n?new s(n):Array.isArray(n)?new t(n,o||"value"):n[u]()}})();t(s,{KIND_KEY:"key",KIND_VALUE:"value",KIND_KEY_VAL:"key+value",ITERATOR_SYMBOL:u}),m.exports=s},92,[16,34,35]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),s=r(d[2]),u=r(d[3]),o=r(d[4]);m.exports=(function(h){if(!u('Set'))return h.Set;var l=(function(){function s(n){if(t(this,s),null==this||'object'!=typeof this&&'function'!=typeof this)throw new TypeError('Wrong set object type.');if(p(this),null!=n)for(var u,h=o(n);!(u=h.next()).done;)this.add(u.value)}return n(s,[{key:"add",value:function(t){return this._map.set(t,t),this.size=this._map.size,this}},{key:"clear",value:function(){p(this)}},{key:"delete",value:function(t){var n=this._map.delete(t);return this.size=this._map.size,n}},{key:"entries",value:function(){return this._map.entries()}},{key:"forEach",value:function(t){for(var n,s=arguments[1],u=this._map.keys();!(n=u.next()).done;)t.call(s,n.value,n.value,this)}},{key:"has",value:function(t){return this._map.has(t)}},{key:"values",value:function(){return this._map.values()}}]),s})();function p(t){t._map=new s,t.size=t._map.size}return l.prototype[o.ITERATOR_SYMBOL]=l.prototype.values,l.prototype.keys=l.prototype.values,l})(Function('return this')())},93,[34,35,90,89,92]); +__d(function(g,r,i,a,m,e,d){'use strict';if(g.__RCTProfileIsProfiling){var t=r(d[0]);t.installReactHook(),t.setEnabled(!0)}},94,[37]); +__d(function(g,r,i,a,m,e,d){'use strict';var o=r(d[0]);if(o.installConsoleErrorReporter(),!g.__fbDisableExceptionsManager){r(d[1]).setGlobalHandler(function(t,n){try{o.handleException(t,n)}catch(o){throw console.log('Failed to print error: ',o.message),t}})}},95,[96,36]); +__d(function(g,r,i,a,m,e,d){'use strict';new RegExp(['/Libraries/Renderer/oss/ReactNativeRenderer-dev\\.js$','/Libraries/BatchedBridge/MessageQueue\\.js$'].join('|'));var o=0;function n(n,s){var c=r(d[0]).ExceptionsManager;if(c){var l=r(d[1])(n),t=++o,p=null==n.jsEngine?n.message:n.message+", js engine: "+n.jsEngine;s?c.reportFatalException(p,l,t):c.reportSoftException(p,l,t)}}function s(){if(console._errorOriginal.apply(console,arguments),console.reportErrorsAsExceptions)if(arguments[0]&&arguments[0].stack)n(arguments[0],!1);else{var o=r(d[2]),s=Array.prototype.map.call(arguments,o).join(', ');if('"Warning: '===s.slice(0,10))return;var c=new Error('console.error: '+s);c.framesToPop=1,n(c,!1)}}m.exports={handleException:function(o,s){o.message||(o=new Error(o)),console._errorOriginal?console._errorOriginal(o.message):console.error(o.message),n(o,s)},installConsoleErrorReporter:function(){console._errorOriginal||(console._errorOriginal=console.error.bind(console),console.error=s,void 0===console.reportErrorsAsExceptions&&(console.reportErrorsAsExceptions=!0))}}},96,[31,97,39]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports=function(t){if(!t||!t.stack)return[];for(var s=r(d[0]),o=Array.isArray(t.stack)?t.stack:s.parse(t.stack),f='number'==typeof t.framesToPop?t.framesToPop:0;f--;)o.shift();return o}},97,[98]); +__d(function(g,r,i,a,m,e,d){var n,l;n=this,l=function(n){'use strict';var l='';var u=/^\s*at (.*?) ?\(((?:file|https?|blob|chrome-extension|native|eval|webpack||\/).*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i,t=/\((\S*)(?::(\d+))(?::(\d+))\)/;function o(n){var o=u.exec(n);if(!o)return null;var c=o[2]&&0===o[2].indexOf('native'),s=o[2]&&0===o[2].indexOf('eval'),f=t.exec(o[2]);return s&&null!=f&&(o[2]=f[1],o[3]=f[2],o[4]=f[3]),{file:c?null:o[2],methodName:o[1]||l,arguments:c?[o[2]]:[],lineNumber:o[3]?+o[3]:null,column:o[4]?+o[4]:null}}var c=/^\s*at (?:((?:\[object object\])?.+) )?\(?((?:file|ms-appx|https?|webpack|blob):.*?):(\d+)(?::(\d+))?\)?\s*$/i;function s(n){var u=c.exec(n);return u?{file:u[2],methodName:u[1]||l,arguments:[],lineNumber:+u[3],column:u[4]?+u[4]:null}:null}var f=/^\s*(.*?)(?:\((.*?)\))?(?:^|@)((?:file|https?|blob|chrome|webpack|resource|\[native).*?|[^@]*bundle)(?::(\d+))?(?::(\d+))?\s*$/i,v=/(\S+) line (\d+)(?: > eval line \d+)* > eval/i;function b(n){var u=f.exec(n);if(!u)return null;var t=u[3]&&u[3].indexOf(' > eval')>-1,o=v.exec(u[3]);return t&&null!=o&&(u[3]=o[1],u[4]=o[2],u[5]=null),{file:u[3],methodName:u[1]||l,arguments:u[2]?u[2].split(','):[],lineNumber:u[4]?+u[4]:null,column:u[5]?+u[5]:null}}var p=/^(?:\s*([^@]*)(?:\((.*?)\))?@)?(\S.*?):(\d+)(?::(\d+))?\s*$/i;function x(n){var u=p.exec(n);return u?{file:u[3],methodName:u[1]||l,arguments:[],lineNumber:+u[4],column:u[5]?+u[5]:null}:null}var h=/^\s*at (?:((?:\[object object\])?\S+(?: \[as \S+\])?) )?\(?(.*?):(\d+)(?::(\d+))?\)?\s*$/i;function N(n){var u=h.exec(n);return u?{file:u[2],methodName:u[1]||l,arguments:[],lineNumber:+u[3],column:u[4]?+u[4]:null}:null}n.parse=function(n){return n.split('\n').reduce(function(n,l){var u=o(l)||s(l)||b(l)||x(l)||N(l);return u&&n.push(u),n},[])},Object.defineProperty(n,'__esModule',{value:!0})},'object'==typeof e&&void 0!==m?l(e):'function'==typeof define&&define.amd?define(['exports'],l):l((n=n||self).stackTraceParser={})},98,[]); +__d(function(g,r,i,a,m,e,d){'use strict';(0,r(d[0]).polyfillGlobal)('Promise',function(){return r(d[1])})},99,[88,100]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);r(d[1]),r(d[2]),m.exports=t},100,[101,103,104]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]);m.exports=n;var t=h(!0),o=h(!1),f=h(null),u=h(void 0),c=h(0),l=h('');function h(t){var o=new n(n._61);return o._65=1,o._55=t,o}n.resolve=function(v){if(v instanceof n)return v;if(null===v)return f;if(void 0===v)return u;if(!0===v)return t;if(!1===v)return o;if(0===v)return c;if(''===v)return l;if('object'==typeof v||'function'==typeof v)try{var p=v.then;if('function'==typeof p)return new n(p.bind(v))}catch(t){return new n(function(n,o){o(t)})}return h(v)},n.all=function(t){var o=Array.prototype.slice.call(t);return new n(function(t,f){if(0===o.length)return t([]);var u=o.length;function c(l,h){if(h&&('object'==typeof h||'function'==typeof h)){if(h instanceof n&&h.then===n.prototype.then){for(;3===h._65;)h=h._55;return 1===h._65?c(l,h._55):(2===h._65&&f(h._55),void h.then(function(n){c(l,n)},f))}var v=h.then;if('function'==typeof v)return void new n(v.bind(h)).then(function(n){c(l,n)},f)}o[l]=h,0==--u&&t(o)}for(var l=0;l=0;--h){var f=this.tryEntries[h],s=f.completion;if("root"===f.tryLoc)return u("end");if(f.tryLoc<=this.prev){var l=c.call(f,"catchLoc"),p=c.call(f,"finallyLoc");if(l&&p){if(this.prev=0;--o){var u=this.tryEntries[o];if(u.tryLoc<=this.prev&&c.call(u,"finallyLoc")&&this.prev=0;--n){var o=this.tryEntries[n];if(o.finallyLoc===t)return this.complete(o.completion,o.afterLoc),I(o),x}},catch:function(t){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc===t){var c=o.completion;if("throw"===c.type){var u=c.arg;I(o)}return u}}throw new Error("illegal catch attempt")},delegateYield:function(t,o,c){return this.delegate={iterator:R(t),resultName:o,nextLoc:c},"next"===this.method&&(this.arg=n),x}},t})("object"==typeof m?m.exports:{});try{regeneratorRuntime=t}catch(n){Function("r","regeneratorRuntime = r")(t)}},106,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).polyfillGlobal,l=function(l){t(l,function(){return r(d[1])[l]})};l('setTimeout'),l('setInterval'),l('setImmediate'),l('clearTimeout'),l('clearInterval'),l('clearImmediate'),l('requestAnimationFrame'),l('cancelAnimationFrame'),l('requestIdleCallback'),l('cancelIdleCallback')},107,[88,108]); +__d(function(g,r,i,a,m,e,d){'use strict';r(d[0]),r(d[1]);var t=r(d[2]),n=r(d[3]).Timing,l=r(d[4]),u=null;function o(){return u||(u=r(d[5])),u()}var c=16.666666666666668,s=[],f=[],v=[],h=[],I=[],T={},p=[],w=1,b=null,k=!1;function q(){var t=v.indexOf(null);return-1===t&&(t=v.length),t}function x(t,n){var l=w++,u=q();return v[u]=l,s[u]=t,f[u]=n,l}function y(t,n,l){r(d[6])(t<=w,'Tried to call timer with ID %s but no such timer exists.',t);var u=v.indexOf(t);if(-1!==u){var h=f[u],I=s[u];if(I&&h){'setTimeout'!==h&&'setImmediate'!==h&&'requestAnimationFrame'!==h&&'requestIdleCallback'!==h||A(u);try{'setTimeout'===h||'setInterval'===h||'setImmediate'===h?I():'requestAnimationFrame'===h?I(o()):'requestIdleCallback'===h?I({timeRemaining:function(){return Math.max(0,c-(o()-n))},didTimeout:!!l}):console.error('Tried to call a callback with invalid type: '+h)}catch(t){b?b.push(t):b=[t]}}else console.error('No callback found for timerID '+t)}}function C(){if(h.length>0){var t=h.slice();h=[];for(var n=0;n0}function A(t){v[t]=null,s[t]=null,f[t]=null,p[t]=null}function D(t){if(null!=t){var l=v.indexOf(t);if(-1!==l){A(l);var u=f[l];'setImmediate'!==u&&'requestIdleCallback'!==u&&n.deleteTimer(t)}}}var E,O={setTimeout:function(t,l){for(var u=arguments.length,o=new Array(u>2?u-2:0),c=2;c2?u-2:0),c=2;c1?n-1:0),u=1;u-1&&(I.splice(t,1),y(c,o(),!0)),delete T[c],0===I.length&&n.setSendIdleEvents(!1)},u);T[c]=s}return c},cancelIdleCallback:function(t){D(t);var l=I.indexOf(t);-1!==l&&I.splice(l,1);var u=T[t];u&&(O.clearTimeout(u),delete T[t]),0===I.length&&n.setSendIdleEvents(!1)},clearTimeout:function(t){D(t)},clearInterval:function(t){D(t)},clearImmediate:function(t){D(t);var n=h.indexOf(t);-1!==n&&h.splice(n,1)},cancelAnimationFrame:function(t){D(t)},callTimers:function(n){t(0!==n.length,'Cannot call `callTimers` with an empty list of IDs.'),b=null;for(var l=0;l1)for(var o=1;o0){var l=I.slice();I=[];for(var u=0;u=0,loaded:s,total:n})}},{key:"__didCompleteResponse",value:function(t,s,n){t===this._requestId&&(s&&(''!==this._responseType&&'text'!==this._responseType||(this._response=s),this._hasError=!0,n&&(this._timedOut=!0)),this._clearSubscriptions(),this._requestId=null,this.setReadyState(this.DONE),s?S._interceptor&&S._interceptor.loadingFailed(t,s):S._interceptor&&S._interceptor.loadingFinished(t,this._response.length))}},{key:"_clearSubscriptions",value:function(){(this._subscriptions||[]).forEach(function(t){t&&t.remove()}),this._subscriptions=[]}},{key:"getAllResponseHeaders",value:function(){if(!this.responseHeaders)return null;var t=this.responseHeaders||{};return Object.keys(t).map(function(s){return s+': '+t[s]}).join('\r\n')}},{key:"getResponseHeader",value:function(t){var s=this._lowerCaseResponseHeaders[t.toLowerCase()];return void 0!==s?s:null}},{key:"setRequestHeader",value:function(t,s){if(this.readyState!==this.OPENED)throw new Error('Request has not been opened');this._headers[t.toLowerCase()]=String(s)}},{key:"setTrackingName",value:function(t){return this._trackingName=t,this}},{key:"open",value:function(t,s,n){if(this.readyState!==this.UNSENT)throw new Error('Cannot open, already sending');if(void 0!==n&&!n)throw new Error('Synchronous http requests are not supported');if(!s)throw new Error('Cannot load an empty url');this._method=t.toUpperCase(),this._url=s,this._aborted=!1,this.setReadyState(this.OPENED)}},{key:"send",value:function(s){var n=this;if(this.readyState!==this.OPENED)throw new Error('Request has not been opened');if(this._sent)throw new Error('Request has already been sent');this._sent=!0;var o=this._incrementalEvents||!!this.onreadystatechange||!!this.onprogress;this._subscriptions.push(c.addListener('didSendNetworkData',function(s){return n.__didUploadProgress.apply(n,t(s))})),this._subscriptions.push(c.addListener('didReceiveNetworkResponse',function(s){return n.__didReceiveResponse.apply(n,t(s))})),this._subscriptions.push(c.addListener('didReceiveNetworkData',function(s){return n.__didReceiveData.apply(n,t(s))})),this._subscriptions.push(c.addListener('didReceiveNetworkIncrementalData',function(s){return n.__didReceiveIncrementalData.apply(n,t(s))})),this._subscriptions.push(c.addListener('didReceiveNetworkDataProgress',function(s){return n.__didReceiveDataProgress.apply(n,t(s))})),this._subscriptions.push(c.addListener('didCompleteNetworkResponse',function(s){return n.__didCompleteResponse.apply(n,t(s))}));var h='text';'arraybuffer'===this._responseType&&(h='base64'),'blob'===this._responseType&&(h='blob'),y(this._method,'Request method needs to be defined.'),y(this._url,'Request URL needs to be defined.'),c.sendRequest(this._method,this._trackingName,this._url,this._headers,s,h,o,this.timeout,this.__didCreateRequest.bind(this),this.withCredentials)}},{key:"abort",value:function(){this._aborted=!0,this._requestId&&c.abortRequest(this._requestId),this.readyState===this.UNSENT||this.readyState===this.OPENED&&!this._sent||this.readyState===this.DONE||(this._reset(),this.setReadyState(this.DONE)),this._reset()}},{key:"setResponseHeaders",value:function(t){this.responseHeaders=t||null;var s=t||{};this._lowerCaseResponseHeaders=Object.keys(s).reduce(function(t,n){return t[n.toLowerCase()]=s[n],t},{})}},{key:"setReadyState",value:function(t){this.readyState=t,this.dispatchEvent({type:'readystatechange'}),t===this.DONE&&(this._aborted?this.dispatchEvent({type:'abort'}):this._hasError?this._timedOut?this.dispatchEvent({type:'timeout'}):this.dispatchEvent({type:'error'}):this.dispatchEvent({type:'load'}),this.dispatchEvent({type:'loadend'}))}},{key:"addEventListener",value:function(t,n){'readystatechange'!==t&&'progress'!==t||(this._incrementalEvents=!0),s(p(S.prototype),"addEventListener",this).call(this,t,n)}},{key:"responseType",get:function(){return this._responseType},set:function(t){if(this._sent)throw new Error("Failed to set the 'responseType' property on 'XMLHttpRequest': The response type cannot be set after the request has been sent.");w.hasOwnProperty(t)?(y(w[t]||'document'===t,"The provided value '"+t+"' is unsupported in this environment."),'blob'===t&&y(f.isAvailable,'Native module BlobModule is required for blob support'),this._responseType=t):v(!1,"The provided value '"+t+"' is not a valid 'responseType'.")}},{key:"responseText",get:function(){if(''!==this._responseType&&'text'!==this._responseType)throw new Error("The 'responseText' property is only available if 'responseType' is set to '' or 'text', but it is '"+this._responseType+"'.");return this.readyState0){for(var t=new Array(arguments.length),n=0;n0?c-4:c,l=0;l>16&255,y[s++]=h>>8&255,y[s++]=255&h;2===C&&(h=n[t.charCodeAt(l)]<<2|n[t.charCodeAt(l+1)]>>4,y[s++]=255&h);1===C&&(h=n[t.charCodeAt(l)]<<10|n[t.charCodeAt(l+1)]<<4|n[t.charCodeAt(l+2)]>>2,y[s++]=h>>8&255,y[s++]=255&h);return y},e.fromByteArray=function(n){for(var o,h=n.length,u=h%3,c=[],f=0,A=h-u;fA?A:f+16383));1===u?(o=n[h-1],c.push(t[o>>2]+t[o<<4&63]+'==')):2===u&&(o=(n[h-2]<<8)+n[h-1],c.push(t[o>>10]+t[o>>4&63]+t[o<<2&63]+'='));return c.join('')};for(var t=[],n=[],o='undefined'!=typeof Uint8Array?Uint8Array:Array,h='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/',u=0,c=h.length;u0)throw new Error('Invalid string. Length must be a multiple of 4');var o=t.indexOf('=');return-1===o&&(o=n),[o,o===n?0:4-o%4]}function A(t,n,o){return 3*(n+o)/4-o}function C(n,o,h){for(var u,c,f=[],A=o;A>18&63]+t[c>>12&63]+t[c>>6&63]+t[63&c]);return f.join('')}n['-'.charCodeAt(0)]=62,n['_'.charCodeAt(0)]=63},119,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),s=(function(){function s(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],o=arguments.length>1?arguments[1]:void 0;t(this,s);var u=r(d[2]);this.data=u.createFromParts(n,o).data}return n(s,[{key:"slice",value:function(t,n){var s=r(d[2]),o=this.data,u=o.offset,l=o.size;return'number'==typeof t&&(t>l&&(t=l),u+=t,l-=t,'number'==typeof n&&(n<0&&(n=this.size+n),l=n-t)),s.createFromOptions({blobId:this.data.blobId,offset:u,size:l})}},{key:"close",value:function(){r(d[2]).release(this.data.blobId),this.data=null}},{key:"data",set:function(t){this._data=t},get:function(){if(!this._data)throw new Error('Blob has been closed and is no longer available');return this._data}},{key:"size",get:function(){return this.data.size}},{key:"type",get:function(){return this.data.type||''}}]),s})();m.exports=s},120,[34,35,121]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),c=r(d[3]);function l(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function u(n){for(var o=1;o0}}},122,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]);function c(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function p(n){for(var o=1;o-1};function f(t){if('string'!=typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.^_`|~]/i.test(t))throw new TypeError('Invalid character in header field name');return t.toLowerCase()}function h(t){return'string'!=typeof t&&(t=String(t)),t}function u(t){var n={next:function(){var o=t.shift();return{done:void 0===o,value:o}}};return o.iterable&&(n["function"==typeof Symbol?Symbol.iterator:"@@iterator"]=function(){return n}),n}function c(t){this.map={},t instanceof c?t.forEach(function(t,o){this.append(o,t)},this):Array.isArray(t)?t.forEach(function(t){this.append(t[0],t[1])},this):t&&Object.getOwnPropertyNames(t).forEach(function(o){this.append(o,t[o])},this)}function y(t){if(t.bodyUsed)return Promise.reject(new TypeError('Already read'));t.bodyUsed=!0}function l(t){return new Promise(function(o,n){t.onload=function(){o(t.result)},t.onerror=function(){n(t.error)}})}function p(t){var o=new FileReader,n=l(o);return o.readAsArrayBuffer(t),n}function b(t){for(var o=new Uint8Array(t),n=new Array(o.length),s=0;s-1?s:n),this.mode=o.mode||this.mode||null,this.signal=o.signal||this.signal,this.referrer=null,('GET'===this.method||'HEAD'===this.method)&&f)throw new TypeError('Body not allowed for GET or HEAD requests');this._initBody(f)}function A(t){var o=new FormData;return t.trim().split('&').forEach(function(t){if(t){var n=t.split('='),s=n.shift().replace(/\+/g,' '),f=n.join('=').replace(/\+/g,' ');o.append(decodeURIComponent(s),decodeURIComponent(f))}}),o}function x(t,o){o||(o={}),this.type='default',this.status=void 0===o.status?200:o.status,this.ok=this.status>=200&&this.status<300,this.statusText='statusText'in o?o.statusText:'OK',this.headers=new c(o.headers),this.url=o.url||'',this._initBody(t)}_.prototype.clone=function(){return new _(this,{body:this._bodyInit})},v.call(_.prototype),v.call(x.prototype),x.prototype.clone=function(){return new x(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new c(this.headers),url:this.url})},x.error=function(){var t=new x(null,{status:0,statusText:''});return t.type='error',t};var B=[301,302,303,307,308];x.redirect=function(t,o){if(-1===B.indexOf(o))throw new RangeError('Invalid status code');return new x(null,{status:o,headers:{location:t}})},t.DOMException=self.DOMException;try{new t.DOMException}catch(o){t.DOMException=function(t,o){this.message=t,this.name=o;var n=Error(t);this.stack=n.stack},t.DOMException.prototype=Object.create(Error.prototype),t.DOMException.prototype.constructor=t.DOMException}function T(n,s){return new Promise(function(f,h){var u=new _(n,s);if(u.signal&&u.signal.aborted)return h(new t.DOMException('Aborted','AbortError'));var y=new XMLHttpRequest;function l(){y.abort()}y.onload=function(){var t,o,n={status:y.status,statusText:y.statusText,headers:(t=y.getAllResponseHeaders()||'',o=new c,t.replace(/\r?\n[\t ]+/g,' ').split(/\r?\n/).forEach(function(t){var n=t.split(':'),s=n.shift().trim();if(s){var f=n.join(':').trim();o.append(s,f)}}),o)};n.url='responseURL'in y?y.responseURL:n.headers.get('X-Request-URL');var s='response'in y?y.response:y.responseText;f(new x(s,n))},y.onerror=function(){h(new TypeError('Network request failed'))},y.ontimeout=function(){h(new TypeError('Network request failed'))},y.onabort=function(){h(new t.DOMException('Aborted','AbortError'))},y.open(u.method,u.url,!0),'include'===u.credentials?y.withCredentials=!0:'omit'===u.credentials&&(y.withCredentials=!1),'responseType'in y&&o.blob&&(y.responseType='blob'),u.headers.forEach(function(t,o){y.setRequestHeader(o,t)}),u.signal&&(u.signal.addEventListener('abort',l),y.onreadystatechange=function(){4===y.readyState&&u.signal.removeEventListener('abort',l)}),y.send(void 0===u._bodyInit?null:u._bodyInit)})}T.polyfill=!0,self.fetch||(self.fetch=T,self.Headers=c,self.Request=_,self.Response=x),t.Headers=c,t.Request=_,t.Response=x,t.fetch=T,Object.defineProperty(t,'__esModule',{value:!0})},'object'==typeof e&&void 0!==m?o(e):'function'==typeof define&&define.amd?define(['exports'],o):o(t.WHATWGFetch={})},125,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),s=r(d[1]),n=r(d[2]),o=r(d[3]),c=r(d[4]),u=r(d[5]),h=r(d[6]),l=r(d[7]),b=r(d[8]),y=r(d[9]),f=r(d[10]),p=(r(d[11]),r(d[12])),v=r(d[13]),_=r(d[14]),E=r(d[15]),k=f.WebSocketModule,S=0,I=1,N=2,w=3,O=0,C=(function(l){function f(n,u,h){var l;s(this,f),(l=o(this,c(f).call(this))).CONNECTING=S,l.OPEN=I,l.CLOSING=N,l.CLOSED=w,l.readyState=S,'string'==typeof u&&(u=[u]);var y=h||{},p=y.headers,v=void 0===p?{}:p,_=t(y,["headers"]);return _&&'string'==typeof _.origin&&(console.warn('Specifying `origin` as a WebSocket connection option is deprecated. Include it under `headers` instead.'),v.origin=_.origin,delete _.origin),Object.keys(_).length>0&&console.warn('Unrecognized WebSocket connection option(s) `'+Object.keys(_).join('`, `')+"`. Did you mean to put these under `headers`?"),Array.isArray(u)||(u=null),l._eventEmitter=new b(k),l._socketId=O++,l._registerEvents(),k.connect(n,u,{headers:v},l._socketId),l}return u(f,l),n(f,[{key:"close",value:function(t,s){this.readyState!==this.CLOSING&&this.readyState!==this.CLOSED&&(this.readyState=this.CLOSING,this._close(t,s))}},{key:"send",value:function(t){if(this.readyState===this.CONNECTING)throw new Error('INVALID_STATE_ERR');if(t instanceof h)return E(y.isAvailable,'Native module BlobModule is required for blob support'),void y.sendOverSocket(t,this._socketId);if('string'!=typeof t){if(!(t instanceof ArrayBuffer||ArrayBuffer.isView(t)))throw new Error('Unsupported data type');k.sendBinary(_(t),this._socketId)}else k.send(t,this._socketId)}},{key:"ping",value:function(){if(this.readyState===this.CONNECTING)throw new Error('INVALID_STATE_ERR');k.ping(this._socketId)}},{key:"_close",value:function(t,s){var n='number'==typeof t?t:1e3,o='string'==typeof s?s:'';k.close(n,o,this._socketId),y.isAvailable&&'blob'===this._binaryType&&y.removeWebSocketHandler(this._socketId)}},{key:"_unregisterEvents",value:function(){this._subscriptions.forEach(function(t){return t.remove()}),this._subscriptions=[]}},{key:"_registerEvents",value:function(){var t=this;this._subscriptions=[this._eventEmitter.addListener('websocketMessage',function(s){if(s.id===t._socketId){var n=s.data;switch(s.type){case'binary':n=v.toByteArray(s.data).buffer;break;case'blob':n=y.createFromOptions(s.data)}t.dispatchEvent(new p('message',{data:n}))}}),this._eventEmitter.addListener('websocketOpen',function(s){s.id===t._socketId&&(t.readyState=t.OPEN,t.dispatchEvent(new p('open')))}),this._eventEmitter.addListener('websocketClosed',function(s){s.id===t._socketId&&(t.readyState=t.CLOSED,t.dispatchEvent(new p('close',{code:s.code,reason:s.reason})),t._unregisterEvents(),t.close())}),this._eventEmitter.addListener('websocketFailed',function(s){s.id===t._socketId&&(t.readyState=t.CLOSED,t.dispatchEvent(new p('error',{message:s.message})),t.dispatchEvent(new p('close',{message:s.message})),t._unregisterEvents(),t.close())})]}},{key:"binaryType",get:function(){return this._binaryType},set:function(t){if('blob'!==t&&'arraybuffer'!==t)throw new Error("binaryType must be either 'blob' or 'arraybuffer'");'blob'!==this._binaryType&&'blob'!==t||(E(y.isAvailable,'Native module BlobModule is required for blob support'),'blob'===t?y.addWebSocketHandler(this._socketId):y.removeWebSocketHandler(this._socketId)),this._binaryType=t}}]),f})(l.apply(void 0,['close','error','message','open']));C.CONNECTING=S,C.OPEN=I,C.CLOSING=N,C.CLOSED=w,m.exports=C},126,[19,34,35,42,45,48,120,114,116,121,31,55,127,119,118,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),s=r(d[1]);m.exports=function n(o,c){s(this,n),this.type=o.toString(),t(this,c)}},127,[16,34]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),s=r(d[2]),u=r(d[3]),l=r(d[4]),o=r(d[5]),c=r(d[6]),h=(function(h){function f(n,l,o){var h;return t(this,f),c(null!=n&&null!=l,'Failed to construct `File`: Must pass both `parts` and `name` arguments.'),(h=s(this,u(f).call(this,n,o))).data.name=l,h}return l(f,o),n(f,[{key:"name",get:function(){return c(null!=this.data.name,'Files must have a name set.'),this.data.name}},{key:"lastModified",get:function(){return this.data.lastModified||0}}]),f})();m.exports=h},128,[34,35,42,45,48,120,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),s=r(d[1]),n=r(d[2]),o=r(d[3]),u=r(d[4]),h=r(d[5]),_=(r(d[6]),r(d[7]).FileReaderModule),c=0,y=1,l=2,f=(function(h){function f(){var s;return t(this,f),(s=n(this,o(f).call(this))).EMPTY=c,s.LOADING=y,s.DONE=l,s._aborted=!1,s._subscriptions=[],s._reset(),s}return u(f,h),s(f,[{key:"_reset",value:function(){this._readyState=c,this._error=null,this._result=null}},{key:"_clearSubscriptions",value:function(){this._subscriptions.forEach(function(t){return t.remove()}),this._subscriptions=[]}},{key:"_setReadyState",value:function(t){this._readyState=t,this.dispatchEvent({type:'readystatechange'}),t===l&&(this._aborted?this.dispatchEvent({type:'abort'}):this._error?this.dispatchEvent({type:'error'}):this.dispatchEvent({type:'load'}),this.dispatchEvent({type:'loadend'}))}},{key:"readAsArrayBuffer",value:function(){throw new Error('FileReader.readAsArrayBuffer is not implemented')}},{key:"readAsDataURL",value:function(t){var s=this;this._aborted=!1,_.readAsDataURL(t.data).then(function(t){s._aborted||(s._result=t,s._setReadyState(l))},function(t){s._aborted||(s._error=t,s._setReadyState(l))})}},{key:"readAsText",value:function(t){var s=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:'UTF-8';this._aborted=!1,_.readAsText(t.data,n).then(function(t){s._aborted||(s._result=t,s._setReadyState(l))},function(t){s._aborted||(s._error=t,s._setReadyState(l))})}},{key:"abort",value:function(){this._aborted=!0,this._readyState!==c&&this._readyState!==l&&(this._reset(),this._setReadyState(l)),this._reset()}},{key:"readyState",get:function(){return this._readyState}},{key:"error",get:function(){return this._error}},{key:"result",get:function(){return this._result}}]),f})(h.apply(void 0,['abort','error','load','loadstart','loadend','progress']));f.EMPTY=c,f.LOADING=y,f.DONE=l,m.exports=f},129,[34,35,42,45,48,114,120,31]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.URL=e.URLSearchParams=void 0;var n,o=t(r(d[1])),u=t(r(d[2])),s=(r(d[3]),r(d[4]).BlobModule),f=null;s&&'string'==typeof s.BLOB_URI_SCHEME&&(f=s.BLOB_URI_SCHEME+':','string'==typeof s.BLOB_URI_HOST&&(f+="//"+s.BLOB_URI_HOST+"/")),n=Symbol.iterator;var h=(function(){function t(n){var u=this;(0,o.default)(this,t),this._searchParams=[],'object'==typeof n&&Object.keys(n).forEach(function(t){return u.append(t,n[t])})}return(0,u.default)(t,[{key:"append",value:function(t,n){this._searchParams.push([t,n])}},{key:"delete",value:function(t){throw new Error('not implemented')}},{key:"get",value:function(t){throw new Error('not implemented')}},{key:"getAll",value:function(t){throw new Error('not implemented')}},{key:"has",value:function(t){throw new Error('not implemented')}},{key:"set",value:function(t,n){throw new Error('not implemented')}},{key:"sort",value:function(){throw new Error('not implemented')}},{key:n,value:function(){return this._searchParams["function"==typeof Symbol?Symbol.iterator:"@@iterator"]()}},{key:"toString",value:function(){if(0===this._searchParams.length)return'';var t=this._searchParams.length-1;return this._searchParams.reduce(function(n,o,u){return n+o.join('=')+(u===t?'':'&')},'')}}]),t})();function l(t){return/^(?:(?:(?:https?|ftp):)?\/\/)(?:(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})))(?::\d{2,5})?(?:[/?#]\S*)?$/i.test(t)}e.URLSearchParams=h;var c=(function(){function t(n,u){(0,o.default)(this,t),this._searchParamsInstance=null;var s=null;if(u){if('string'==typeof u){if(!l(s=u))throw new TypeError("Invalid base URL: "+s)}else'object'==typeof u&&(s=u.toString());s.endsWith('/')&&n.startsWith('/')&&(s=s.slice(0,s.length-1)),s.endsWith(n)&&(n=''),this._url=""+s+n}else this._url=n,this._url.endsWith('/')||(this._url+='/')}return(0,u.default)(t,null,[{key:"createObjectURL",value:function(t){if(null===f)throw new Error('Cannot create URL for blob!');return""+f+t.data.blobId+"?offset="+t.data.offset+"&size="+t.size}},{key:"revokeObjectURL",value:function(t){}}]),(0,u.default)(t,[{key:"toJSON",value:function(){return this.toString()}},{key:"toString",value:function(){if(null===this._searchParamsInstance)return this._url;var t=this._url.indexOf('?')>-1?'&':'?';return this._url+t+this._searchParamsInstance.toString()}},{key:"hash",get:function(){throw new Error('not implemented')}},{key:"host",get:function(){throw new Error('not implemented')}},{key:"hostname",get:function(){throw new Error('not implemented')}},{key:"href",get:function(){return this.toString()}},{key:"origin",get:function(){throw new Error('not implemented')}},{key:"password",get:function(){throw new Error('not implemented')}},{key:"pathname",get:function(){throw new Error('not implemented')}},{key:"port",get:function(){throw new Error('not implemented')}},{key:"protocol",get:function(){throw new Error('not implemented')}},{key:"search",get:function(){throw new Error('not implemented')}},{key:"searchParams",get:function(){return null==this._searchParamsInstance&&(this._searchParamsInstance=new h),this._searchParamsInstance}},{key:"username",get:function(){throw new Error('not implemented')}}]),t})();e.URL=c},130,[2,34,35,120,31]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),o=r(d[1]),n=r(d[2]),l=r(d[3]),b=r(d[4]);Object.defineProperty(e,'__esModule',{value:!0});var u=r(d[5]),p=(function(u){function p(){throw t(this,p),n(this,l(p).call(this)),new TypeError("AbortSignal cannot be constructed directly")}return b(p,u),o(p,[{key:"aborted",get:function(){var t=y.get(this);if("boolean"!=typeof t)throw new TypeError("Expected 'this' to be an 'AbortSignal' object, but got "+(null===this?"null":typeof this));return t}}]),p})(u.EventTarget);u.defineEventAttribute(p.prototype,"abort");var y=new WeakMap;Object.defineProperties(p.prototype,{aborted:{enumerable:!0}}),"function"==typeof Symbol&&"symbol"==typeof("function"==typeof Symbol?Symbol.toStringTag:"@@toStringTag")&&Object.defineProperty(p.prototype,"function"==typeof Symbol?Symbol.toStringTag:"@@toStringTag",{configurable:!0,value:"AbortSignal"});var f=(function(){function n(){var o;t(this,n),c.set(this,(o=Object.create(p.prototype),u.EventTarget.call(o),y.set(o,!1),o))}return o(n,[{key:"abort",value:function(){var t;t=s(this),!1===y.get(t)&&(y.set(t,!0),t.dispatchEvent({type:"abort"}))}},{key:"signal",get:function(){return s(this)}}]),n})(),c=new WeakMap;function s(t){var o=c.get(t);if(null==o)throw new TypeError("Expected 'this' to be an 'AbortController' object, but got "+(null===t?"null":typeof t));return o}Object.defineProperties(f.prototype,{signal:{enumerable:!0},abort:{enumerable:!0}}),"function"==typeof Symbol&&"symbol"==typeof("function"==typeof Symbol?Symbol.toStringTag:"@@toStringTag")&&Object.defineProperty(f.prototype,"function"==typeof Symbol?Symbol.toStringTag:"@@toStringTag",{configurable:!0,value:"AbortController"}),e.AbortController=f,e.AbortSignal=p,e.default=f,m.exports=f,m.exports.AbortController=m.exports.default=f,m.exports.AbortSignal=p},131,[34,35,42,45,48,114]); +__d(function(g,r,i,a,m,e,d){'use strict';g.alert||(g.alert=function(t){r(d[0]).alert('Alert',''+t)})},132,[133]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]);function s(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function c(n){for(var o=1;o3&&void 0!==arguments[3]&&arguments[3],arguments.length>4&&arguments[4],arguments.length>5&&arguments[5]}}]),t})());m.exports=u},133,[18,34,35,31,55]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).polyfillObjectProperty,o=g.navigator;void 0===o&&(g.navigator=o={}),t(o,'product',function(){return'ReactNative'})},134,[88]); +__d(function(g,r,i,a,m,e,d){'use strict';var l=r(d[0]);l.registerLazyCallableModule('Systrace',function(){return r(d[1])}),l.registerLazyCallableModule('JSTimers',function(){return r(d[2])}),l.registerLazyCallableModule('HeapCapture',function(){return r(d[3])}),l.registerLazyCallableModule('SamplingProfiler',function(){return r(d[4])}),l.registerLazyCallableModule('RCTLog',function(){return r(d[5])}),l.registerLazyCallableModule('RCTDeviceEventEmitter',function(){return r(d[6])}),l.registerLazyCallableModule('RCTNativeAppEventEmitter',function(){return r(d[7])}),l.registerLazyCallableModule('GlobalPerformanceLogger',function(){return r(d[8])}),l.registerLazyCallableModule('JSDevSupportModule',function(){return r(d[9])})},135,[32,37,108,136,137,138,41,139,140,143]); +__d(function(g,r,i,a,m,e,d){'use strict';var t={captureHeap:function(t){var p=null;try{g.nativeCaptureHeap(t),console.log('HeapCapture.captureHeap succeeded: '+t)}catch(t){console.log('HeapCapture.captureHeap error: '+t.toString()),p=t.toString()}r(d[0]).JSCHeapCapture.captureComplete(t,p)}};m.exports=t},136,[31]); +__d(function(g,r,i,a,m,e,d){'use strict';var o={poke:function(o){var l=null,n=null;try{null===(n=g.pokeSamplingProfiler())?console.log('The JSC Sampling Profiler has started'):console.log('The JSC Sampling Profiler has stopped')}catch(o){console.log('Error occurred when restarting Sampling Profiler: '+o.toString()),l=o.toString()}r(d[0]).JSCSamplingProfiler.operationComplete(o,n,l)}};m.exports=o},137,[31]); +__d(function(g,r,i,a,m,e,d){'use strict';var o=r(d[0]),n={log:'log',info:'info',warn:'warn',error:'error',fatal:'error'},l=null,t={logIfNoNativeHook:function(o){for(var n=arguments.length,f=new Array(n>1?n-1:0),c=1;c1?c-1:0),s=1;s2&&void 0!==arguments[2]?arguments[2]:-1;if(0===o)return!0;if(n===f)return!1;if('function'==typeof n&&'function'==typeof f)return!1;if('object'!=typeof n||null===n)return n!==f;if('object'!=typeof f||null===f)return!0;if(n.constructor!==f.constructor)return!0;if(Array.isArray(n)){var u=n.length;if(f.length!==u)return!0;for(var c=0;c=C-o){if(!(-1!==t&&t<=o))return T||(T=!0,b(j)),x=n,void(k=t);l=!0}if(null!==n){P=!0;try{n(l)}finally{P=!1}}};var j=function n(t){if(null!==x){b(n);var o=t-C+M;oo&&(o=8),M=ot?L.postMessage(void 0):T||(T=!0,b(j))},t=function(){x=null,h=!1,k=-1}}var q=null,E=!1,I=3,N=-1,B=-1,D=!1,O=!1;function U(){if(!D&&null!==q){var o=q.expirationTime;O?t():O=!0,n(Y,o)}}function W(){var n=q,t=q.next;if(q===t)q=null;else{var o=q.previous;q=o.next=t,t.previous=o}n.next=n.previous=null,o=n.callback,t=n.expirationTime,n=n.priorityLevel;var l=I,u=B;I=n,B=t;try{var s=o(E||1===n)}catch(n){throw n}finally{I=l,B=u}if("function"==typeof s)if(s={callback:s,priorityLevel:n,expirationTime:t,next:null,previous:null},null===q)q=s.next=s.previous=s;else{o=null,n=q;do{if(n.expirationTime>=t){o=n;break}n=n.next}while(n!==q);null===o?o=q:o===q&&(q=s,U()),(t=o.previous).next=o.previous=s,s.next=o,s.previous=t}}function Y(n){O=!1,D=!0;var t=E;E=n;try{if(n)for(;null!==q;){var l=e.unstable_now();if(!(q.expirationTime<=l))break;do{W()}while(null!==q&&q.expirationTime<=l)}else if(null!==q)do{W()}while(null!==q&&!o())}finally{D=!1,E=t,U()}}e.unstable_ImmediatePriority=1,e.unstable_UserBlockingPriority=2,e.unstable_NormalPriority=3,e.unstable_IdlePriority=5,e.unstable_LowPriority=4,e.unstable_runWithPriority=function(n,t){switch(n){case 1:case 2:case 3:case 4:case 5:break;default:n=3}var o=I,l=N;I=n,N=e.unstable_now();try{return t()}catch(n){throw U(),n}finally{I=o,N=l}},e.unstable_next=function(n){switch(I){case 1:case 2:case 3:var t=3;break;default:t=I}var o=I,l=N;I=t,N=e.unstable_now();try{return n()}catch(n){throw U(),n}finally{I=o,N=l}},e.unstable_scheduleCallback=function(n,t,o){var l=-1!==N?N:e.unstable_now();if("object"==typeof o&&null!==o&&"number"==typeof o.timeout)o=l+o.timeout;else switch(n){case 1:o=l+-1;break;case 2:o=l+250;break;case 5:o=l+1073741823;break;case 4:o=l+1e4;break;default:o=l+5e3}if(n={callback:t,priorityLevel:n,expirationTime:o,next:null,previous:null},null===q)q=n.next=n.previous=n,U();else{t=null,l=q;do{if(l.expirationTime>o){t=l;break}l=l.next}while(l!==q);null===t?t=q:t===q&&(q=n,U()),(o=t.previous).next=t.previous=n,n.next=t,n.previous=o}return n},e.unstable_cancelCallback=function(n){var t=n.next;if(null!==t){if(t===n)q=null;else{n===q&&(q=t);var o=n.previous;o.next=t,t.previous=o}n.next=n.previous=null}},e.unstable_wrapCallback=function(n){var t=I;return function(){var o=I,l=N;I=t,N=e.unstable_now();try{return n.apply(this,arguments)}catch(n){throw U(),n}finally{I=o,N=l}}},e.unstable_getCurrentPriorityLevel=function(){return I},e.unstable_shouldYield=function(){return!E&&(null!==q&&q.expirationTime=s)return t[n];return t[t.length-1]||1}}]),c})();m.exports=c},162,[34,35,59,55,163,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t={.75:'ldpi',1:'mdpi',1.5:'hdpi',2:'xhdpi',3:'xxhdpi',4:'xxxhdpi'};function n(n){if(n.toString()in t)return t[n.toString()];throw new Error('no such scale '+n.toString())}var o=new Set(['gif','jpeg','jpg','png','svg','webp','xml']);function s(t){var n=t.httpServerLocation;return'/'===n[0]&&(n=n.substr(1)),n}m.exports={getAndroidAssetSuffix:n,getAndroidResourceFolderName:function(s,u){if(!o.has(s.type))return'raw';var c=n(u);if(!c)throw new Error("Don't know which android drawable suffix to use for scale: "+u+'\nAsset: '+JSON.stringify(s,null,'\t')+'\nPossible scales are:'+JSON.stringify(t,null,'\t'));return'drawable-'+c},getAndroidResourceIdentifier:function(t){return(s(t)+'/'+t.name).toLowerCase().replace(/\//g,'_').replace(/([^a-z0-9_])/g,'').replace(/^assets_/,'')},getBasePath:s}},163,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);m.exports=t('RCTActivityIndicatorView')},164,[154]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),f=r(d[2]),o=n.forwardRef(function(o,s){return n.createElement(f,t({},o,{ref:s}))});o.defaultProps={styleAttr:'Normal',indeterminate:!0,animating:!0},m.exports=o},165,[16,13,166]); +__d(function(g,r,i,a,m,e,d){'use strict';var s=r(d[0]);m.exports=s('AndroidProgressBar')},166,[154]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),l=r(d[3]),u=r(d[4]),s=r(d[5]),f=r(d[6]),c=r(d[7]),h=r(d[8]),p=r(d[9]),v=r(d[10]),y=r(d[11]),b=r(d[12]),k=r(d[13]);function S(t,n){if(null==t||null==n)return!0;if(t.length!==n.length)return!0;for(var o=0;o must be a child of a '),h.createElement(W,{opacity:E(t),transform:D(t)},this.props.children)}}]),f})(h.Component);F.contextTypes={isInSurface:p.bool.isRequired};var M=(function(s){function f(){return t(this,f),o(this,l(f).apply(this,arguments))}return u(f,s),n(f,[{key:"render",value:function(){var t=this.props,n=[N(t.x,0),N(t.y,0),N(t.width,0),N(t.height,0)],o=b(t);return delete o.x,delete o.y,h.createElement(W,{clipping:n,opacity:E(t),transform:D(o)},this.props.children)}}]),f})(h.Component),P=0,X=1,Y=2,O=3;function q(t,n,o){var l=new s(t);n[o+0]=l.red/255,n[o+1]=l.green/255,n[o+2]=l.blue/255,n[o+3]=l.alpha}function j(t,n,o){var l=0;if('length'in t)for(;lT?(X-=M,Y-=b):f>0&&0!=T&&(X-=f/T*M,Y-=f/T*b),l=X*X+Y*Y,(f=(X=o-t)*M+(Y=u-n)*b)>T?(X-=M,Y-=b):f>0&&0!=T&&(X-=f/T*M,Y-=f/T*b),v=X*X+Y*Y,l<.01&&v<.01)this.onLine(t,n,p,c);else{if(isNaN(l)||isNaN(v))throw new Error('Bad input');var k=.5*(s+o),w=.5*(h+u),_=.5*(s+t),D=.5*(h+n),z=.5*(_+k),C=.5*(D+w),B=.5*(p+o),A=.5*(c+u),L=.5*(B+k),I=.5*(A+w),P=.5*(z+L),N=.5*(C+I);this.onBezierCurve(t,n,_,D,z,C,P,N),this.onBezierCurve(P,N,L,I,B,A,p,c)}},onArc:function(t,n,s,h,o,u,p,c,l,v,X,Y){var f=Y?Y*Math.PI/180:0,M=Math.cos(f),b=Math.sin(f),T=M*p,k=-b*c,w=b*p,_=M*c,D=v-l;D<0&&!X?D+=2*Math.PI:D>0&&X&&(D-=2*Math.PI);for(var z=Math.ceil(Math.abs(D/(Math.PI/2))),C=D/z,B=1.3333333333333333*Math.tan(C/4),A=Math.cos(l),L=Math.sin(l),I=0;Ithis.yy/this.xy?-1:1;return(this.xx<0?this.xy>=0:this.xy<0)&&(x=-x),this.rotate(t-180*Math.atan2(x*this.yx,x*this.xx)/Math.PI,s,h)},scaleTo:function(t,s){var h=Math.sqrt(this.xx*this.xx+this.yx*this.yx);return this.xx/=h,this.yx/=h,h=Math.sqrt(this.yy*this.yy+this.xy*this.xy),this.yy/=h,this.xy/=h,this.scale(t,s)},resizeTo:function(t,s){var h=this.width,x=this.height;return h&&x?this.scaleTo(t/h,s/x):this},inversePoint:function(t,s){var h=this.xx,x=this.yx,y=this.xy,n=this.yy,o=this.x,u=this.y,f=x*y-h*n;return 0==f?null:{x:(n*(o-t)+y*(s-u))/f,y:(h*(u-s)+x*(t-o))/f}},point:function(t,s){return{x:this.xx*t+this.xy*s+this.x,y:this.yx*t+this.yy*s+this.y}}})},172,[170]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);function c(t,c){var s=Object.keys(t);return Object.getOwnPropertySymbols&&s.push.apply(s,Object.getOwnPropertySymbols(t)),c&&(s=s.filter(function(c){return Object.getOwnPropertyDescriptor(t,c).enumerable})),s}var s=r(d[1]),n={};n.UIView={pointerEvents:!0,accessible:!0,accessibilityActions:!0,accessibilityLabel:!0,accessibilityLiveRegion:!0,accessibilityRole:!0,accessibilityStates:!0,accessibilityHint:!0,importantForAccessibility:!0,nativeID:!0,testID:!0,renderToHardwareTextureAndroid:!0,shouldRasterizeIOS:!0,onLayout:!0,onAccessibilityAction:!0,onAccessibilityTap:!0,onMagicTap:!0,onAccessibilityEscape:!0,collapsable:!0,needsOffscreenAlphaCompositing:!0,style:s},n.RCTView=(function(s){for(var n=1;n4?p-4:0),l=4;l5?b-5:0),k=5;k4?s-4:0),p=4;p0,s=R&&R.length>0;return!o&&s?R[0]:o?E[0]:t}),P=N({NOT_RESPONDER:null,RESPONDER_INACTIVE_PRESS_IN:null,RESPONDER_INACTIVE_PRESS_OUT:null,RESPONDER_ACTIVE_PRESS_IN:null,RESPONDER_ACTIVE_PRESS_OUT:null,RESPONDER_ACTIVE_LONG_PRESS_IN:null,RESPONDER_ACTIVE_LONG_PRESS_OUT:null,ERROR:null}),T={NOT_RESPONDER:!1,RESPONDER_INACTIVE_PRESS_IN:!1,RESPONDER_INACTIVE_PRESS_OUT:!1,RESPONDER_ACTIVE_PRESS_IN:!1,RESPONDER_ACTIVE_PRESS_OUT:!1,RESPONDER_ACTIVE_LONG_PRESS_IN:!1,RESPONDER_ACTIVE_LONG_PRESS_OUT:!1,ERROR:!1},c=o({},T,{RESPONDER_ACTIVE_PRESS_OUT:!0,RESPONDER_ACTIVE_PRESS_IN:!0}),D=o({},T,{RESPONDER_INACTIVE_PRESS_IN:!0,RESPONDER_ACTIVE_PRESS_IN:!0,RESPONDER_ACTIVE_LONG_PRESS_IN:!0}),A=o({},T,{RESPONDER_ACTIVE_LONG_PRESS_IN:!0}),I=N({DELAY:null,RESPONDER_GRANT:null,RESPONDER_RELEASE:null,RESPONDER_TERMINATED:null,ENTER_PRESS_RECT:null,LEAVE_PRESS_RECT:null,LONG_PRESS_DETECTED:null}),b={NOT_RESPONDER:{DELAY:P.ERROR,RESPONDER_GRANT:P.RESPONDER_INACTIVE_PRESS_IN,RESPONDER_RELEASE:P.ERROR,RESPONDER_TERMINATED:P.ERROR,ENTER_PRESS_RECT:P.ERROR,LEAVE_PRESS_RECT:P.ERROR,LONG_PRESS_DETECTED:P.ERROR},RESPONDER_INACTIVE_PRESS_IN:{DELAY:P.RESPONDER_ACTIVE_PRESS_IN,RESPONDER_GRANT:P.ERROR,RESPONDER_RELEASE:P.NOT_RESPONDER,RESPONDER_TERMINATED:P.NOT_RESPONDER,ENTER_PRESS_RECT:P.RESPONDER_INACTIVE_PRESS_IN,LEAVE_PRESS_RECT:P.RESPONDER_INACTIVE_PRESS_OUT,LONG_PRESS_DETECTED:P.ERROR},RESPONDER_INACTIVE_PRESS_OUT:{DELAY:P.RESPONDER_ACTIVE_PRESS_OUT,RESPONDER_GRANT:P.ERROR,RESPONDER_RELEASE:P.NOT_RESPONDER,RESPONDER_TERMINATED:P.NOT_RESPONDER,ENTER_PRESS_RECT:P.RESPONDER_INACTIVE_PRESS_IN,LEAVE_PRESS_RECT:P.RESPONDER_INACTIVE_PRESS_OUT,LONG_PRESS_DETECTED:P.ERROR},RESPONDER_ACTIVE_PRESS_IN:{DELAY:P.ERROR,RESPONDER_GRANT:P.ERROR,RESPONDER_RELEASE:P.NOT_RESPONDER,RESPONDER_TERMINATED:P.NOT_RESPONDER,ENTER_PRESS_RECT:P.RESPONDER_ACTIVE_PRESS_IN,LEAVE_PRESS_RECT:P.RESPONDER_ACTIVE_PRESS_OUT,LONG_PRESS_DETECTED:P.RESPONDER_ACTIVE_LONG_PRESS_IN},RESPONDER_ACTIVE_PRESS_OUT:{DELAY:P.ERROR,RESPONDER_GRANT:P.ERROR,RESPONDER_RELEASE:P.NOT_RESPONDER,RESPONDER_TERMINATED:P.NOT_RESPONDER,ENTER_PRESS_RECT:P.RESPONDER_ACTIVE_PRESS_IN,LEAVE_PRESS_RECT:P.RESPONDER_ACTIVE_PRESS_OUT,LONG_PRESS_DETECTED:P.ERROR},RESPONDER_ACTIVE_LONG_PRESS_IN:{DELAY:P.ERROR,RESPONDER_GRANT:P.ERROR,RESPONDER_RELEASE:P.NOT_RESPONDER,RESPONDER_TERMINATED:P.NOT_RESPONDER,ENTER_PRESS_RECT:P.RESPONDER_ACTIVE_LONG_PRESS_IN,LEAVE_PRESS_RECT:P.RESPONDER_ACTIVE_LONG_PRESS_OUT,LONG_PRESS_DETECTED:P.RESPONDER_ACTIVE_LONG_PRESS_IN},RESPONDER_ACTIVE_LONG_PRESS_OUT:{DELAY:P.ERROR,RESPONDER_GRANT:P.ERROR,RESPONDER_RELEASE:P.NOT_RESPONDER,RESPONDER_TERMINATED:P.NOT_RESPONDER,ENTER_PRESS_RECT:P.RESPONDER_ACTIVE_LONG_PRESS_IN,LEAVE_PRESS_RECT:P.RESPONDER_ACTIVE_LONG_PRESS_OUT,LONG_PRESS_DETECTED:P.ERROR},error:{DELAY:P.NOT_RESPONDER,RESPONDER_GRANT:P.RESPONDER_INACTIVE_PRESS_IN,RESPONDER_RELEASE:P.NOT_RESPONDER,RESPONDER_TERMINATED:P.NOT_RESPONDER,ENTER_PRESS_RECT:P.NOT_RESPONDER,LEAVE_PRESS_RECT:P.NOT_RESPONDER,LONG_PRESS_DETECTED:P.NOT_RESPONDER}},p={componentDidMount:function(){_.isTV&&(this._tvEventHandler=new u,this._tvEventHandler.enable(this,function(t,E){var R=S.findNodeHandle(t);E.dispatchConfig={},R===E.tag&&('focus'===E.eventType?t.touchableHandleFocus(E):'blur'===E.eventType?t.touchableHandleBlur(E):'select'===E.eventType&&t.touchableHandlePress&&!t.props.disabled&&t.touchableHandlePress(E))}))},componentWillUnmount:function(){this._tvEventHandler&&(this._tvEventHandler.disable(),delete this._tvEventHandler),this.touchableDelayTimeout&&clearTimeout(this.touchableDelayTimeout),this.longPressDelayTimeout&&clearTimeout(this.longPressDelayTimeout),this.pressOutDelayTimeout&&clearTimeout(this.pressOutDelayTimeout)},touchableGetInitialState:function(){return{touchable:{touchState:void 0,responderID:null}}},touchableHandleResponderTerminationRequest:function(){return!this.props.rejectResponderTermination},touchableHandleStartShouldSetResponder:function(){return!this.props.disabled},touchableLongPressCancelsPress:function(){return!0},touchableHandleResponderGrant:function(t){var E=t.currentTarget;t.persist(),this.pressOutDelayTimeout&&clearTimeout(this.pressOutDelayTimeout),this.pressOutDelayTimeout=null,this.state.touchable.touchState=P.NOT_RESPONDER,this.state.touchable.responderID=E,this._receiveSignal(I.RESPONDER_GRANT,t);var R=void 0!==this.touchableGetHighlightDelayMS?Math.max(this.touchableGetHighlightDelayMS(),0):130;0!==(R=isNaN(R)?130:R)?this.touchableDelayTimeout=setTimeout(this._handleDelay.bind(this,t),R):this._handleDelay(t);var o=void 0!==this.touchableGetLongPressDelayMS?Math.max(this.touchableGetLongPressDelayMS(),10):370;o=isNaN(o)?370:o,this.longPressDelayTimeout=setTimeout(this._handleLongDelay.bind(this,t),o+R)},touchableHandleResponderRelease:function(t){this.pressInLocation=null,this._receiveSignal(I.RESPONDER_RELEASE,t)},touchableHandleResponderTerminate:function(t){this.pressInLocation=null,this._receiveSignal(I.RESPONDER_TERMINATED,t)},touchableHandleResponderMove:function(t){if(this.state.touchable.positionOnActivate){var E=this.state.touchable.positionOnActivate,R=this.state.touchable.dimensionsOnActivate,o=this.touchableGetPressRectOffset?this.touchableGetPressRectOffset():{left:20,right:20,top:20,bottom:20},s=o.left,_=o.top,n=o.right,S=o.bottom,l=this.touchableGetHitSlop?this.touchableGetHitSlop():null;l&&(s+=l.left||0,_+=l.top||0,n+=l.right||0,S+=l.bottom||0);var u=O(t.nativeEvent),h=u&&u.pageX,N=u&&u.pageY;if(this.pressInLocation)this._getDistanceBetweenPoints(h,N,this.pressInLocation.pageX,this.pressInLocation.pageY)>10&&this._cancelLongPressDelayTimeout();if(h>E.left-s&&N>E.top-_&&h2?f-2:0),u=2;u=23}},mixins:[l.Mixin],getDefaultProps:function(){return{background:this.SelectableBackground()}},getInitialState:function(){return this.touchableGetInitialState()},componentDidMount:function(){P(this.props)},UNSAFE_componentWillReceiveProps:function(t){P(t)},touchableHandleActivePressIn:function(t){this.props.onPressIn&&this.props.onPressIn(t),this._dispatchPressedStateChange(!0),this.pressInLocation&&this._dispatchHotspotUpdate(this.pressInLocation.locationX,this.pressInLocation.locationY)},touchableHandleActivePressOut:function(t){this.props.onPressOut&&this.props.onPressOut(t),this._dispatchPressedStateChange(!1)},touchableHandlePress:function(t){this.props.onPress&&this.props.onPress(t)},touchableHandleLongPress:function(t){this.props.onLongPress&&this.props.onLongPress(t)},touchableGetPressRectOffset:function(){return this.props.pressRetentionOffset||O},touchableGetHitSlop:function(){return this.props.hitSlop},touchableGetHighlightDelayMS:function(){return this.props.delayPressIn},touchableGetLongPressDelayMS:function(){return this.props.delayLongPress},touchableGetPressOutDelayMS:function(){return this.props.delayPressOut},_handleResponderMove:function(t){this.touchableHandleResponderMove(t),this._dispatchHotspotUpdate(t.nativeEvent.locationX,t.nativeEvent.locationY)},_dispatchHotspotUpdate:function(t,o){b.dispatchViewManagerCommand(u.findNodeHandle(this),b.getViewManagerConfig('RCTView').Commands.hotspotUpdate,[t||0,o||0])},_dispatchPressedStateChange:function(t){b.dispatchViewManagerCommand(u.findNodeHandle(this),b.getViewManagerConfig('RCTView').Commands.setPressed,[t])},render:function(){var o,n=p.Children.only(this.props.children),c=n.props.children;l.TOUCH_TARGET_DEBUG&&n.type===f&&(Array.isArray(c)||(c=[c]),c.push(l.renderDebugView({color:'brown',hitSlop:this.props.hitSlop}))),this.props.useForeground&&!T.canUseNativeForeground()&&console.warn("Requested foreground ripple, but it is not available on this version of Android. Consider calling TouchableNativeFeedback.canUseNativeForeground() and using a different Touchable if the result is false.");var u=this.props.useForeground&&T.canUseNativeForeground()?'nativeForegroundAndroid':'nativeBackgroundAndroid',h=s({},n.props,(t(o={},u,this.props.background),t(o,"accessible",!1!==this.props.accessible),t(o,"accessibilityLabel",this.props.accessibilityLabel),t(o,"accessibilityRole",this.props.accessibilityRole),t(o,"accessibilityStates",this.props.accessibilityStates),t(o,"children",c),t(o,"testID",this.props.testID),t(o,"onLayout",this.props.onLayout),t(o,"hitSlop",this.props.hitSlop),t(o,"isTVSelectable",!0),t(o,"nextFocusDown",this.props.nextFocusDown),t(o,"nextFocusForward",this.props.nextFocusForward),t(o,"nextFocusLeft",this.props.nextFocusLeft),t(o,"nextFocusRight",this.props.nextFocusRight),t(o,"nextFocusUp",this.props.nextFocusUp),t(o,"hasTVPreferredFocus",this.props.hasTVPreferredFocus),t(o,"clickable",!1!==this.props.clickable&&void 0!==this.props.onPress&&!this.props.disabled),t(o,"onClick",this.touchableHandlePress),t(o,"onStartShouldSetResponder",this.touchableHandleStartShouldSetResponder),t(o,"onResponderTerminationRequest",this.touchableHandleResponderTerminationRequest),t(o,"onResponderGrant",this.touchableHandleResponderGrant),t(o,"onResponderMove",this._handleResponderMove),t(o,"onResponderRelease",this.touchableHandleResponderRelease),t(o,"onResponderTerminate",this.touchableHandleResponderTerminate),o));return p.cloneElement(n,h)}});m.exports=T},192,[18,55,13,67,83,184,193,54,81,194,198,75]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);function s(t,s){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),s&&(o=o.filter(function(s){return Object.getOwnPropertyDescriptor(t,s).enumerable})),o}function o(o){for(var n=1;n1&&void 0!==arguments[1]?arguments[1]:{}).iterations;return E},event:function(t,n){return null},createAnimatedComponent:b,attachNativeEvent:f,forkEvent:s.forkEvent,unforkEvent:s.unforkEvent,Event:c,__PropsOnlyForTests:v}},202,[18,203,211,205,206,217,204,222,230]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),s=r(d[2]),v=r(d[3]),o=r(d[4]),c=r(d[5]),_=r(d[3]).shouldUseNativeDriver;function l(t,n,_){var l=[];c(_[0]&&_[0].nativeEvent,'Native driven events only support animated values contained inside `nativeEvent`.'),(function t(n,v){if(n instanceof s)n.__makeNative(),l.push({nativeEventPath:v,animatedValueTag:n.__getNativeTag()});else if('object'==typeof n)for(var o in n)t(n[o],v.concat(o))})(_[0].nativeEvent,[]);var h=o.findNodeHandle(t);return l.forEach(function(t){v.API.addAnimatedEventToView(h,n,t)}),{detach:function(){l.forEach(function(t){v.API.removeAnimatedEventFromView(h,n,t.animatedValueTag)})}}}var h=(function(){function v(n){var s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t(this,v),this._listeners=[],this._argMapping=n,s.listener&&this.__addListener(s.listener),this._callListeners=this._callListeners.bind(this),this._attachedEvent=null,this.__isNative=_(s)}return n(v,[{key:"__addListener",value:function(t){this._listeners.push(t)}},{key:"__removeListener",value:function(t){this._listeners=this._listeners.filter(function(n){return n!==t})}},{key:"__attach",value:function(t,n){c(this.__isNative,'Only native driven events need to be attached.'),this._attachedEvent=l(t,n,this._argMapping)}},{key:"__detach",value:function(t,n){c(this.__isNative,'Only native driven events need to be detached.'),this._attachedEvent&&this._attachedEvent.detach()}},{key:"__getHandler",value:function(){var t=this;return this.__isNative?this._callListeners:function(){for(var n=arguments.length,v=new Array(n),o=0;oo){if('identity'===f)return h;'clamp'===f&&(h=o)}return u===p?u:n===o?t<=n?u:p:(n===-1/0?h=-h:o===1/0?h-=n:h=(h-n)/(o-n),h=c(h),u===-1/0?h=-h:p===1/0?h+=u:h=h*(p-u)+u,h)}function O(t){var n=y(t);return null===n?t:"rgba("+((4278190080&(n=n||0))>>>24)+", "+((16711680&n)>>>16)+", "+((65280&n)>>>8)+", "+(255&n)/255+")"}var k=/[0-9\.-]+/g;function j(t){var n=t.outputRange;_(n.length>=2,'Bad output range'),w(n=n.map(O));var o=n[0].match(k).map(function(){return[]});n.forEach(function(t){t.match(k).forEach(function(t,n){o[n].push(+t)})});var u,p=n[0].match(k).map(function(n,u){return R(h({},t,{outputRange:o[u]}))}),c='string'==typeof(u=n[0])&&u.startsWith('rgb');return function(t){var o=0;return n[0].replace(k,function(){var n=+p[o++](t),u=c&&o<4?Math.round(n):Math.round(1e3*n)/1e3;return String(u)})}}function w(t){for(var n=t[0].replace(k,''),o=1;o=t);++o);return o-1}function D(t){_(t.length>=2,'inputRange must have at least 2 elements');for(var n=1;n=t[n-1],'inputRange must be monotonically non-decreasing '+t)}function C(t,n){_(n.length>=2,t+' must have at least 2 elements'),_(2!==n.length||n[0]!==-1/0||n[1]!==1/0,t+'cannot be ]-infinity;+infinity[ '+n)}var E=(function(l){function f(n,p){var c;return t(this,f),(c=o(this,u(f).call(this)))._parent=n,c._config=p,c._interpolation=R(p),c}return c(f,s),n(f,[{key:"__makeNative",value:function(){this._parent.__makeNative(),p(u(f.prototype),"__makeNative",this).call(this)}},{key:"__getValue",value:function(){var t=this._parent.__getValue();return _('number'==typeof t,'Cannot interpolate an input which is not a number.'),this._interpolation(t)}},{key:"interpolate",value:function(t){return new f(this,t)}},{key:"__attach",value:function(){this._parent.__addChild(this)}},{key:"__detach",value:function(){this._parent.__removeChild(this),p(u(f.prototype),"__detach",this).call(this)}},{key:"__transformDataType",value:function(t){return t.map(v.transformDataType)}},{key:"__getNativeConfig",value:function(){return{inputRange:this._config.inputRange,outputRange:this.__transformDataType(this._config.outputRange),extrapolateLeft:this._config.extrapolateLeft||this._config.extrapolate||'extend',extrapolateRight:this._config.extrapolateRight||this._config.extrapolate||'extend',type:'interpolation'}}}]),f})();E.__createInterpolation=R,m.exports=E},205,[34,35,42,45,46,48,18,206,208,207,26,65]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),s=r(d[2]),_=s.API,u=r(d[3]),o=1,v=(function(){function v(){t(this,v),this._listeners={}}return n(v,[{key:"__attach",value:function(){}},{key:"__detach",value:function(){this.__isNative&&null!=this.__nativeTag&&(s.API.dropAnimatedNode(this.__nativeTag),this.__nativeTag=void 0)}},{key:"__getValue",value:function(){}},{key:"__getAnimatedValue",value:function(){return this.__getValue()}},{key:"__addChild",value:function(t){}},{key:"__removeChild",value:function(t){}},{key:"__getChildren",value:function(){return[]}}]),n(v,[{key:"__makeNative",value:function(){if(!this.__isNative)throw new Error('This node cannot be made a "native" animated node');this.hasListeners()&&this._startListeningToNativeValueUpdates()}},{key:"addListener",value:function(t){var n=String(o++);return this._listeners[n]=t,this.__isNative&&this._startListeningToNativeValueUpdates(),n}},{key:"removeListener",value:function(t){delete this._listeners[t],this.__isNative&&!this.hasListeners()&&this._stopListeningForNativeValueUpdates()}},{key:"removeAllListeners",value:function(){this._listeners={},this.__isNative&&this._stopListeningForNativeValueUpdates()}},{key:"hasListeners",value:function(){return!!Object.keys(this._listeners).length}},{key:"_startListeningToNativeValueUpdates",value:function(){var t=this;this.__nativeAnimatedValueListener&&!this.__shouldUpdateListenersForNewNativeTag||(this.__shouldUpdateListenersForNewNativeTag&&(this.__shouldUpdateListenersForNewNativeTag=!1,this._stopListeningForNativeValueUpdates()),_.startListeningToAnimatedNodeValue(this.__getNativeTag()),this.__nativeAnimatedValueListener=s.nativeEventEmitter.addListener('onAnimatedValueUpdate',function(n){n.tag===t.__getNativeTag()&&t._onAnimatedValueUpdateReceived(n.value)}))}},{key:"_onAnimatedValueUpdateReceived",value:function(t){this.__callListeners(t)}},{key:"__callListeners",value:function(t){for(var n in this._listeners)this._listeners[n]({value:t})}},{key:"_stopListeningForNativeValueUpdates",value:function(){this.__nativeAnimatedValueListener&&(this.__nativeAnimatedValueListener.remove(),this.__nativeAnimatedValueListener=null,_.stopListeningToAnimatedNodeValue(this.__getNativeTag()))}},{key:"__getNativeTag",value:function(){if(s.assertNativeAnimatedModule(),u(this.__isNative,'Attempt to get native tag from node not marked as "native"'),null==this.__nativeTag){var t=s.generateNewNodeTag();s.API.createAnimatedNode(t,this.__getNativeConfig()),this.__nativeTag=t,this.__shouldUpdateListenersForNewNativeTag=!0}return this.__nativeTag}},{key:"__getNativeConfig",value:function(){throw new Error('This JS animated node type cannot be used as native animated node')}},{key:"toJSON",value:function(){return this.__getValue()}}]),v})();m.exports=v},206,[34,35,207,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t,n=r(d[0]).NativeAnimatedModule,o=r(d[1]),s=r(d[2]),u=1,c=1,f={createAnimatedNode:function(t,o){A(),n.createAnimatedNode(t,o)},startListeningToAnimatedNodeValue:function(t){A(),n.startListeningToAnimatedNodeValue(t)},stopListeningToAnimatedNodeValue:function(t){A(),n.stopListeningToAnimatedNodeValue(t)},connectAnimatedNodes:function(t,o){A(),n.connectAnimatedNodes(t,o)},disconnectAnimatedNodes:function(t,o){A(),n.disconnectAnimatedNodes(t,o)},startAnimatingNode:function(t,o,s,u){A(),n.startAnimatingNode(t,o,s,u)},stopAnimation:function(t){A(),n.stopAnimation(t)},setAnimatedNodeValue:function(t,o){A(),n.setAnimatedNodeValue(t,o)},setAnimatedNodeOffset:function(t,o){A(),n.setAnimatedNodeOffset(t,o)},flattenAnimatedNodeOffset:function(t){A(),n.flattenAnimatedNodeOffset(t)},extractAnimatedNodeOffset:function(t){A(),n.extractAnimatedNodeOffset(t)},connectAnimatedNodeToView:function(t,o){A(),n.connectAnimatedNodeToView(t,o)},disconnectAnimatedNodeFromView:function(t,o){A(),n.disconnectAnimatedNodeFromView(t,o)},dropAnimatedNode:function(t){A(),n.dropAnimatedNode(t)},addAnimatedEventToView:function(t,o,s){A(),n.addAnimatedEventToView(t,o,s)},removeAnimatedEventFromView:function(t,o,s){A(),n.removeAnimatedEventFromView(t,o,s)}},p={opacity:!0,transform:!0,borderRadius:!0,borderBottomEndRadius:!0,borderBottomLeftRadius:!0,borderBottomRightRadius:!0,borderBottomStartRadius:!0,borderTopEndRadius:!0,borderTopLeftRadius:!0,borderTopRightRadius:!0,borderTopStartRadius:!0,elevation:!0,shadowOpacity:!0,shadowRadius:!0,scaleX:!0,scaleY:!0,translateX:!0,translateY:!0},l={translateX:!0,translateY:!0,scale:!0,scaleX:!0,scaleY:!0,rotate:!0,rotateX:!0,rotateY:!0,perspective:!0},v={inputRange:!0,outputRange:!0,extrapolate:!0,extrapolateRight:!0,extrapolateLeft:!0};function A(){s(n,'Native animated module is not available')}var N=!1;m.exports={API:f,addWhitelistedStyleProp:function(t){p[t]=!0},addWhitelistedTransformProp:function(t){l[t]=!0},addWhitelistedInterpolationParam:function(t){v[t]=!0},validateStyles:function(t){for(var n in t)if(!p.hasOwnProperty(n))throw new Error("Style property '"+n+"' is not supported by native animated module")},validateTransform:function(t){t.forEach(function(t){if(!l.hasOwnProperty(t.property))throw new Error("Property '"+t.property+"' is not supported by native animated module")})},validateInterpolation:function(t){for(var n in t)if(!v.hasOwnProperty(n))throw new Error("Interpolation property '"+n+"' is not supported by native animated module")},generateNewNodeTag:function(){return u++},generateNewAnimationId:function(){return c++},assertNativeAnimatedModule:A,shouldUseNativeDriver:function(t){return t.useNativeDriver&&!n?(N||(console.warn("Animated: `useNativeDriver` is not supported because the native animated module is missing. Falling back to JS-based animation. To resolve this, add `RCTAnimation` module to this app, or remove `useNativeDriver`. More info: https://github.com/facebook/react-native/issues/11094#issuecomment-263240420"),N=!0),!1):t.useNativeDriver||!1},transformDataType:function(t){return'string'!=typeof t?t:/deg$/.test(t)?(parseFloat(t)||0)*Math.PI/180:parseFloat(t)||0},get nativeEventEmitter(){return t||(t=new o(n)),t}}},207,[31,116,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),_=r(d[1]),n=r(d[2]),s=r(d[3]),h=r(d[4]),l=r(d[5]),o=r(d[6]),c=r(d[7]),v=(function(v){function u(){var _;return t(this,u),(_=n(this,s(u).call(this)))._children=[],_}return l(u,o),_(u,[{key:"__makeNative",value:function(){if(!this.__isNative){this.__isNative=!0;var t=this._children,_=Array.isArray(t),n=0;for(t=_?t:t["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var l;if(_){if(n>=t.length)break;l=t[n++]}else{if((n=t.next()).done)break;l=n.value}var o=l;o.__makeNative(),c.API.connectAnimatedNodes(this.__getNativeTag(),o.__getNativeTag())}}h(s(u.prototype),"__makeNative",this).call(this)}},{key:"__addChild",value:function(t){0===this._children.length&&this.__attach(),this._children.push(t),this.__isNative&&(t.__makeNative(),c.API.connectAnimatedNodes(this.__getNativeTag(),t.__getNativeTag()))}},{key:"__removeChild",value:function(t){var _=this._children.indexOf(t);-1!==_?(this.__isNative&&t.__isNative&&c.API.disconnectAnimatedNodes(this.__getNativeTag(),t.__getNativeTag()),this._children.splice(_,1),0===this._children.length&&this.__detach()):console.warn("Trying to remove a child that doesn't exist")}},{key:"__getChildren",value:function(){return this._children}},{key:"__callListeners",value:function(t){if(h(s(u.prototype),"__callListeners",this).call(this,t),!this.__isNative){var _=this._children,n=Array.isArray(_),l=0;for(_=n?_:_["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var o;if(n){if(l>=_.length)break;o=_[l++]}else{if((l=_.next()).done)break;o=l.value}var c=o;c.__getValue&&c.__callListeners(c.__getValue())}}}}]),u})();m.exports=v},208,[34,35,42,45,46,48,206,207]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]),t=r(d[1]),o=r(d[2]),c=(r(d[3]),r(d[4])),s=r(d[5]),u=new t,l={Events:s({interactionStart:!0,interactionComplete:!0}),runAfterInteractions:function(n){var t=[],o=new Promise(function(o){k(),n&&t.push(n),t.push({run:o,name:'resolve '+(n&&n.name||'?')}),h.enqueueTasks(t)});return{then:o.then.bind(o),done:function(){if(o.done)return o.done.apply(o,arguments);console.warn('Tried to call done when not supported by current Promise implementation.')},cancel:function(){h.cancelTasks(t)}}},createInteractionHandle:function(){k();var n=++T;return p.add(n),n},clearInteractionHandle:function(n){c(!!n,'InteractionManager: Must provide a handle to clear.'),k(),p.delete(n),v.add(n)},addListener:u.addListener.bind(u),setDeadline:function(n){E=n}},f=new Set,p=new Set,v=new Set,h=new o({onMoreTasks:k}),w=0,T=0,E=-1;function k(){w||(w=E>0?setTimeout(I,0):setImmediate(I))}function I(){w=0;var t=f.size;p.forEach(function(n){return f.add(n)}),v.forEach(function(n){return f.delete(n)});var o=f.size;if(0!==t&&0===o?u.emit(l.Events.interactionComplete):0===t&&0!==o&&u.emit(l.Events.interactionStart),0===o)for(;h.hasTasksToProcess();)if(h.processNext(),E>0&&n.getEventLoopRunningTime()>=E){k();break}p.clear(),v.clear()}m.exports=l},209,[32,50,210,142,26,189]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),u=r(d[2]);function s(t,n){var u=Object.keys(t);return Object.getOwnPropertySymbols&&u.push.apply(u,Object.getOwnPropertySymbols(t)),n&&(u=u.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),u}function o(n){for(var u=1;u0||0===n})}},{key:"hasTasksToProcess",value:function(){return this._getCurrentQueue().length>0}},{key:"processNext",value:function(){var t=this._getCurrentQueue();if(t.length){var n=t.shift();try{n.gen?this._genPromise(n):n.run?n.run():(c('function'==typeof n,'Expected Function, SimpleTask, or PromiseTask, but got:\n'+JSON.stringify(n,null,2)),n())}catch(t){throw t.message='TaskQueue: Error with task '+(n.name||'')+': '+t.message,t}}}},{key:"_getCurrentQueue",value:function(){var t=this._queueStack.length-1,n=this._queueStack[t];return n.popable&&0===n.tasks.length&&this._queueStack.length>1?(this._queueStack.pop(),this._getCurrentQueue()):n.tasks}},{key:"_genPromise",value:function(t){var n=this;this._queueStack.push({tasks:[],popable:!1});var u=this._queueStack.length-1;t.gen().then(function(){n._queueStack[u].popable=!0,n.hasTasksToProcess()&&n._onMoreTasks()}).catch(function(n){throw n.message="TaskQueue: Error resolving Promise in task "+t.name+": "+n.message,n}).done()}}]),t})();m.exports=h},210,[18,34,35,142,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);function n(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function o(o){for(var u=1;u1&&void 0!==arguments[1]?arguments[1]:{},o=n.iterations,u=void 0===o?-1:o,s=n.resetBeforeIteration,c=void 0===s||s,f=!1,v=0;return{start:function(n){t&&0!==u?t._isUsingNativeDriver()?t._startNativeLoop(u):(function o(){var s=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{finished:!0};f||v===u||!1===s.finished?n&&n(s):(v++,c&&t.reset(),t.start(o))})():n&&n({finished:!0})},stop:function(){f=!0,t.stop()},reset:function(){v=0,f=!1,t.reset()},_startNativeLoop:function(){throw new Error('Loops run using the native driver cannot contain Animated.loop animations')},_isUsingNativeDriver:function(){return t._isUsingNativeDriver()}}},event:function(t,n){var o=new s(t,n);return o.__isNative?o:o.__getHandler()},createAnimatedComponent:j,attachNativeEvent:c,forkEvent:function(t,n){return t?t instanceof s?(t.__addListener(n),t):function(){'function'==typeof t&&t.apply(void 0,arguments),n.apply(void 0,arguments)}:n},unforkEvent:function(t,n){t&&t instanceof s&&t.__removeListener(n)},Event:s,__PropsOnlyForTests:y}},211,[18,203,212,213,214,205,215,216,206,217,220,221,204,222,223,225,227,230]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),_=r(d[1]),n=r(d[2]),h=r(d[3]),u=r(d[4]),s=r(d[5]),o=r(d[6]),l=(r(d[7]),r(d[8])),v=r(d[9]),c=(function(c){function f(_,u){var s;return t(this,f),(s=n(this,h(f).call(this)))._a='number'==typeof _?new l(_):_,s._b='number'==typeof u?new l(u):u,s}return s(f,v),_(f,[{key:"__makeNative",value:function(){this._a.__makeNative(),this._b.__makeNative(),u(h(f.prototype),"__makeNative",this).call(this)}},{key:"__getValue",value:function(){return this._a.__getValue()+this._b.__getValue()}},{key:"interpolate",value:function(t){return new o(this,t)}},{key:"__attach",value:function(){this._a.__addChild(this),this._b.__addChild(this)}},{key:"__detach",value:function(){this._a.__removeChild(this),this._b.__removeChild(this),u(h(f.prototype),"__detach",this).call(this)}},{key:"__getNativeConfig",value:function(){return{type:'addition',input:[this._a.__getNativeTag(),this._b.__getNativeTag()]}}}]),f})();m.exports=c},212,[34,35,42,45,46,48,205,206,204,208]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),_=r(d[1]),n=r(d[2]),u=r(d[3]),h=r(d[4]),s=r(d[5]),l=r(d[6]),v=(r(d[7]),r(d[8])),c=(function(c){function o(_,h,s){var l;return t(this,o),(l=n(this,u(o).call(this)))._a=_,l._min=h,l._max=s,l._value=l._lastValue=l._a.__getValue(),l}return s(o,v),_(o,[{key:"__makeNative",value:function(){this._a.__makeNative(),h(u(o.prototype),"__makeNative",this).call(this)}},{key:"interpolate",value:function(t){return new l(this,t)}},{key:"__getValue",value:function(){var t=this._a.__getValue(),_=t-this._lastValue;return this._lastValue=t,this._value=Math.min(Math.max(this._value+_,this._min),this._max),this._value}},{key:"__attach",value:function(){this._a.__addChild(this)}},{key:"__detach",value:function(){this._a.__removeChild(this),h(u(o.prototype),"__detach",this).call(this)}},{key:"__getNativeConfig",value:function(){return{type:'diffclamp',input:this._a.__getNativeTag(),min:this._min,max:this._max}}}]),o})();m.exports=c},213,[34,35,42,45,46,48,205,206,208]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),_=r(d[1]),n=r(d[2]),h=r(d[3]),s=r(d[4]),o=r(d[5]),u=r(d[6]),l=(r(d[7]),r(d[8])),v=r(d[9]),c=(function(c){function f(_,s){var o;return t(this,f),(o=n(this,h(f).call(this)))._a='number'==typeof _?new l(_):_,o._b='number'==typeof s?new l(s):s,o}return o(f,v),_(f,[{key:"__makeNative",value:function(){this._a.__makeNative(),this._b.__makeNative(),s(h(f.prototype),"__makeNative",this).call(this)}},{key:"__getValue",value:function(){var t=this._a.__getValue(),_=this._b.__getValue();return 0===_&&console.error('Detected division by zero in AnimatedDivision'),t/_}},{key:"interpolate",value:function(t){return new u(this,t)}},{key:"__attach",value:function(){this._a.__addChild(this),this._b.__addChild(this)}},{key:"__detach",value:function(){this._a.__removeChild(this),this._b.__removeChild(this),s(h(f.prototype),"__detach",this).call(this)}},{key:"__getNativeConfig",value:function(){return{type:'division',input:[this._a.__getNativeTag(),this._b.__getNativeTag()]}}}]),f})();m.exports=c},214,[34,35,42,45,46,48,205,206,204,208]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),u=r(d[1]),_=r(d[2]),s=r(d[3]),n=r(d[4]),h=r(d[5]),l=r(d[6]),o=(r(d[7]),r(d[8])),c=(function(c){function v(u,n){var h;return t(this,v),(h=_(this,s(v).call(this)))._a=u,h._modulus=n,h}return h(v,o),u(v,[{key:"__makeNative",value:function(){this._a.__makeNative(),n(s(v.prototype),"__makeNative",this).call(this)}},{key:"__getValue",value:function(){return(this._a.__getValue()%this._modulus+this._modulus)%this._modulus}},{key:"interpolate",value:function(t){return new l(this,t)}},{key:"__attach",value:function(){this._a.__addChild(this)}},{key:"__detach",value:function(){this._a.__removeChild(this),n(s(v.prototype),"__detach",this).call(this)}},{key:"__getNativeConfig",value:function(){return{type:'modulus',input:this._a.__getNativeTag(),modulus:this._modulus}}}]),v})();m.exports=c},215,[34,35,42,45,46,48,205,206,208]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),_=r(d[1]),n=r(d[2]),h=r(d[3]),u=r(d[4]),s=r(d[5]),l=r(d[6]),o=(r(d[7]),r(d[8])),c=r(d[9]),v=(function(v){function f(_,u){var s;return t(this,f),(s=n(this,h(f).call(this)))._a='number'==typeof _?new o(_):_,s._b='number'==typeof u?new o(u):u,s}return s(f,c),_(f,[{key:"__makeNative",value:function(){this._a.__makeNative(),this._b.__makeNative(),u(h(f.prototype),"__makeNative",this).call(this)}},{key:"__getValue",value:function(){return this._a.__getValue()*this._b.__getValue()}},{key:"interpolate",value:function(t){return new l(this,t)}},{key:"__attach",value:function(){this._a.__addChild(this),this._b.__addChild(this)}},{key:"__detach",value:function(){this._a.__removeChild(this),this._b.__removeChild(this),u(h(f.prototype),"__detach",this).call(this)}},{key:"__getNativeConfig",value:function(){return{type:'multiplication',input:[this._a.__getNativeTag(),this._b.__getNativeTag()]}}}]),f})();m.exports=v},216,[34,35,42,45,46,48,205,206,204,208]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]),_=r(d[4]),c=r(d[5]),v=r(d[6]);function p(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function h(n){for(var o=1;o0,'Stiffness value must be greater than 0'),f(M._damping>0,'Damping value must be greater than 0'),f(M._mass>0,'Mass value must be greater than 0'),M}return h(p,_),s(p,[{key:"__getNativeAnimationConfig",value:function(){var t;return{type:'spring',overshootClamping:this._overshootClamping,restDisplacementThreshold:this._restDisplacementThreshold,restSpeedThreshold:this._restSpeedThreshold,stiffness:this._stiffness,damping:this._damping,mass:this._mass,initialVelocity:null!=(t=this._initialVelocity)?t:this._lastVelocity,toValue:this._toValue,iterations:this.__iterations}}},{key:"start",value:function(t,s,n,o,l){var h=this;if(this.__active=!0,this._startPosition=t,this._lastPosition=this._startPosition,this._onUpdate=s,this.__onEnd=n,this._lastTime=Date.now(),this._frameTime=0,o instanceof p){var _=o.getInternalState();this._lastPosition=_.lastPosition,this._lastVelocity=_.lastVelocity,this._initialVelocity=this._lastVelocity,this._lastTime=_.lastTime}var u=function(){h._useNativeDriver?h.__startNativeAnimation(l):h.onUpdate()};this._delay?this._timeout=setTimeout(u,this._delay):u()}},{key:"getInternalState",value:function(){return{lastPosition:this._lastPosition,lastVelocity:this._lastVelocity,lastTime:this._lastTime}}},{key:"onUpdate",value:function(){var t=Date.now();t>this._lastTime+64&&(t=this._lastTime+64);var s=(t-this._lastTime)/1e3;this._frameTime+=s;var n=this._damping,o=this._mass,l=this._stiffness,h=-this._initialVelocity,_=n/(2*Math.sqrt(l*o)),u=Math.sqrt(l/o),f=u*Math.sqrt(1-_*_),c=this._toValue-this._startPosition,v=0,p=0,y=this._frameTime;if(_<1){var V=Math.exp(-_*u*y);v=this._toValue-V*((h+_*u*c)/f*Math.sin(f*y)+c*Math.cos(f*y)),p=_*u*V*(Math.sin(f*y)*(h+_*u*c)/f+c*Math.cos(f*y))-V*(Math.cos(f*y)*(h+_*u*c)-f*c*Math.sin(f*y))}else{var T=Math.exp(-u*y);v=this._toValue-T*(c+(h+u*c)*y),p=T*(h*(y*u-1)+y*c*(u*u))}if(this._lastTime=t,this._lastPosition=v,this._lastVelocity=p,this._onUpdate(v),this.__active){var b=!1;this._overshootClamping&&0!==this._stiffness&&(b=this._startPositionthis._toValue:v18&&A<=44?p(A):h(A),s(2*M-M*M,v,.01));return{stiffness:n(x),damping:t(B)}}}},226,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t,n=r(d[0]),s=r(d[1]),o=r(d[2]),_=r(d[3]),u=r(d[4]),h=r(d[5]),l=(r(d[6]),r(d[7]),r(d[8])),v=r(d[9]).shouldUseNativeDriver;function c(){if(!t){var n=r(d[10]);t=n.inOut(n.ease)}return t}var f=(function(t){function f(t){var s,u,h,l,p,V;return n(this,f),(V=o(this,_(f).call(this)))._toValue=t.toValue,V._easing=null!=(s=t.easing)?s:c(),V._duration=null!=(u=t.duration)?u:500,V._delay=null!=(h=t.delay)?h:0,V.__iterations=null!=(l=t.iterations)?l:1,V._useNativeDriver=v(t),V.__isInteraction=null!=(p=t.isInteraction)?p:!V._useNativeDriver,V}return h(f,l),s(f,[{key:"__getNativeAnimationConfig",value:function(){for(var t=[],n=0;n=this._startTime+this._duration)return 0===this._duration?this._onUpdate(this._toValue):this._onUpdate(this._fromValue+this._easing(1)*(this._toValue-this._fromValue)),void this.__debouncedOnEnd({finished:!0});this._onUpdate(this._fromValue+this._easing((t-this._startTime)/this._duration)*(this._toValue-this._fromValue)),this.__active&&(this._animationFrame=requestAnimationFrame(this.onUpdate.bind(this)))}},{key:"stop",value:function(){u(_(f.prototype),"stop",this).call(this),this.__active=!1,clearTimeout(this._timeout),g.cancelAnimationFrame(this._animationFrame),this.__debouncedOnEnd({finished:!1})}}]),f})();m.exports=f},227,[34,35,42,45,46,48,204,222,224,207,228]); +__d(function(g,r,i,a,m,e,d){'use strict';var n,u=r(d[0]),t=r(d[1]),o=(function(){function o(){u(this,o)}return t(o,null,[{key:"step0",value:function(n){return n>0?1:0}},{key:"step1",value:function(n){return n>=1?1:0}},{key:"linear",value:function(n){return n}},{key:"ease",value:function(u){return n||(n=o.bezier(.42,0,1,1)),n(u)}},{key:"quad",value:function(n){return n*n}},{key:"cubic",value:function(n){return n*n*n}},{key:"poly",value:function(n){return function(u){return Math.pow(u,n)}}},{key:"sin",value:function(n){return 1-Math.cos(n*Math.PI/2)}},{key:"circle",value:function(n){return 1-Math.sqrt(1-n*n)}},{key:"exp",value:function(n){return Math.pow(2,10*(n-1))}},{key:"elastic",value:function(){var n=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:1)*Math.PI;return function(u){return 1-Math.pow(Math.cos(u*Math.PI/2),3)*Math.cos(u*n)}}},{key:"back",value:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1.70158;return function(u){return u*u*((n+1)*u-n)}}},{key:"bounce",value:function(n){if(n<.36363636363636365)return 7.5625*n*n;if(n<.7272727272727273){var u=n-.5454545454545454;return 7.5625*u*u+.75}if(n<.9090909090909091){var t=n-.8181818181818182;return 7.5625*t*t+.9375}var o=n-.9545454545454546;return 7.5625*o*o+.984375}},{key:"bezier",value:function(n,u,t,o){return r(d[2])(n,u,t,o)}},{key:"in",value:function(n){return n}},{key:"out",value:function(n){return function(u){return 1-n(1-u)}}},{key:"inOut",value:function(n){return function(u){return u<.5?n(2*u)/2:1-n(2*(1-u))/2}}}]),o})();m.exports=o},228,[34,35,229]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=4,t=.001,u=1e-7,o=10,f=.1,c='function'==typeof Float32Array;function v(n,t){return 1-3*t+3*n}function s(n,t){return 3*t-6*n}function w(n){return 3*n}function l(n,t,u){return((v(t,u)*n+s(t,u))*n+w(t))*n}function y(n,t,u){return 3*v(t,u)*n*n+2*s(t,u)*n+w(t)}function b(n,t,f,c,v){var s,w,y=0,b=t,h=f;do{(s=l(w=b+(h-b)/2,c,v)-n)>0?h=w:b=w}while(Math.abs(s)>u&&++y=0&&n<=1&&o>=0&&o<=1))throw new Error('bezier x values must be in [0, 1] range');var s=c?new Float32Array(11):new Array(11);if(n!==u||o!==v)for(var w=0;w<11;++w)s[w]=l(w*f,n,o);function A(u){for(var c=0,v=1;10!==v&&s[v]<=u;++v)c+=f;var w=c+(u-s[--v])/(s[v+1]-s[v])*f,l=y(w,n,o);return l>=t?h(u,w,n,o):0===l?w:b(u,c,c+f,n,o)}return function(t){return n===u&&o===v?t:0===t?0:1===t?1:l(A(t),u,v)}}},229,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]),p=r(d[4]),c=r(d[5]),_=r(d[6]).AnimatedEvent,h=r(d[7]),v=r(d[8]),l=r(d[9]),u=r(d[10]);m.exports=function(f,N){u('function'!=typeof f||f.prototype&&f.prototype.isReactComponent,"`createAnimatedComponent` does not support stateless functional components; use a class component instead.");var k=(function(l){function u(t){var o;return n(this,u),(o=s(this,p(u).call(this,t)))._invokeAnimatedPropsCallbackOnMount=!1,o._eventDetachers=[],o._animatedPropsCallback=function(){if(null==o._component)o._invokeAnimatedPropsCallbackOnMount=!0;else if(u.__skipSetNativeProps_FOR_TESTS_ONLY||'function'!=typeof o._component.setNativeProps)o.forceUpdate();else{if(o._propsAnimated.__isNative)throw new Error("Attempting to run JS driven animation on animated node that has been moved to \"native\" earlier by starting an animation with `useNativeDriver: true`");o._component.setNativeProps(o._propsAnimated.__getAnimatedValue())}},o._setComponentRef=function(t){o._prevComponent=o._component,o._component=t},o}return c(u,l),o(u,[{key:"componentWillUnmount",value:function(){this._propsAnimated&&this._propsAnimated.__detach(),this._detachNativeEvents()}},{key:"setNativeProps",value:function(t){this._component.setNativeProps(t)}},{key:"UNSAFE_componentWillMount",value:function(){this._attachProps(this.props)}},{key:"componentDidMount",value:function(){this._invokeAnimatedPropsCallbackOnMount&&(this._invokeAnimatedPropsCallbackOnMount=!1,this._animatedPropsCallback()),this._propsAnimated.setNativeView(this._component),this._attachNativeEvents()}},{key:"_attachNativeEvents",value:function(){var t=this,n=this._component.getScrollableNode?this._component.getScrollableNode():this._component,o=function(o){var s=t.props[o];s instanceof _&&s.__isNative&&(s.__attach(n,o),t._eventDetachers.push(function(){return s.__detach(n,o)}))};for(var s in this.props)o(s)}},{key:"_detachNativeEvents",value:function(){this._eventDetachers.forEach(function(t){return t()}),this._eventDetachers=[]}},{key:"_attachProps",value:function(t){var n=this._propsAnimated;this._propsAnimated=new h(t,this._animatedPropsCallback),n&&n.__detach()}},{key:"UNSAFE_componentWillReceiveProps",value:function(t){this._attachProps(t)}},{key:"componentDidUpdate",value:function(t){this._component!==this._prevComponent&&this._propsAnimated.setNativeView(this._component),this._component===this._prevComponent&&t===this.props||(this._detachNativeEvents(),this._attachNativeEvents())}},{key:"render",value:function(){var n=this._propsAnimated.__getValue();return v.createElement(f,t({},N,n,{ref:this._setComponentRef,collapsable:!this._propsAnimated.__isNative&&n.collapsable}))}},{key:"getNode",value:function(){return this._component}}]),u})(v.Component);k.__skipSetNativeProps_FOR_TESTS_ONLY=!1;var y=f.propTypes;return k.propTypes={style:function(t,n,o){if(y)for(var s in l)y[s]||void 0===t[s]||console.warn('You are setting the style `{ '+s+": ... }` as a prop. You should nest it in a style object. E.g. `{ style: { "+s+': ... } }`')}},k}},230,[16,34,35,42,45,48,203,217,13,74,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),o=r(d[1]);m.exports=o(t,{scrollEventThrottle:1e-4})},231,[232,230]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]),l=r(d[4]),u=r(d[5]),c=r(d[6]);function f(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function p(t){for(var n=1;n1){for(var s=[],u=0;u1?(w(Array.isArray(t),"FlatList: Encountered internal consistency error, expected each item to consist of an array with 1-%s columns; instead, received a single item.",u),t.map(function(t,o){return s(t,n*u+o)}).join(':')):s(t,n)},l._renderItem=function(t){var n=l.props,o=n.renderItem,s=n.numColumns,u=n.columnWrapperStyle;if(s>1){var c=t.item,f=t.index;return w(Array.isArray(c),'Expected array of items with numColumns > 1'),y.createElement(C,{style:b.compose(k.row,u)},c.map(function(n,l){var u=o({item:n,index:f*s+l,separators:t.separators});return null!=u?y.createElement(y.Fragment,{key:l},u):null}))}return o(t)},l._checkProps(l.props),l.props.viewabilityConfigCallbackPairs?l._virtualizedListPairs=l.props.viewabilityConfigCallbackPairs.map(function(t){return{viewabilityConfig:t.viewabilityConfig,onViewableItemsChanged:l._createOnViewableItemsChanged(t.onViewableItemsChanged)}}):l.props.onViewableItemsChanged&&l._virtualizedListPairs.push({viewabilityConfig:l.props.viewabilityConfig,onViewableItemsChanged:l._createOnViewableItemsChanged(l.props.onViewableItemsChanged)}),l}return u(f,c),l(f,[{key:"scrollToEnd",value:function(t){this._listRef&&this._listRef.scrollToEnd(t)}},{key:"scrollToIndex",value:function(t){this._listRef&&this._listRef.scrollToIndex(t)}},{key:"scrollToItem",value:function(t){this._listRef&&this._listRef.scrollToItem(t)}},{key:"scrollToOffset",value:function(t){this._listRef&&this._listRef.scrollToOffset(t)}},{key:"recordInteraction",value:function(){this._listRef&&this._listRef.recordInteraction()}},{key:"flashScrollIndicators",value:function(){this._listRef&&this._listRef.flashScrollIndicators()}},{key:"getScrollResponder",value:function(){if(this._listRef)return this._listRef.getScrollResponder()}},{key:"getScrollableNode",value:function(){if(this._listRef)return this._listRef.getScrollableNode()}},{key:"setNativeProps",value:function(t){this._listRef&&this._listRef.setNativeProps(t)}}]),l(f,[{key:"componentDidUpdate",value:function(t){w(t.numColumns===this.props.numColumns,"Changing numColumns on the fly is not supported. Change the key prop on FlatList when changing the number of columns to force a fresh render of the component."),w(t.onViewableItemsChanged===this.props.onViewableItemsChanged,'Changing onViewableItemsChanged on the fly is not supported'),w(!h(t.viewabilityConfig,this.props.viewabilityConfig),'Changing viewabilityConfig on the fly is not supported'),w(t.viewabilityConfigCallbackPairs===this.props.viewabilityConfigCallbackPairs,'Changing viewabilityConfigCallbackPairs on the fly is not supported'),this._checkProps(this.props)}},{key:"_checkProps",value:function(t){var n=t.getItem,o=t.getItemCount,s=t.horizontal,l=t.numColumns,u=t.columnWrapperStyle,c=t.onViewableItemsChanged,f=t.viewabilityConfigCallbackPairs;w(!n&&!o,'FlatList does not support custom data formats.'),l>1?w(!s,'numColumns does not support horizontal.'):w(!u,'columnWrapperStyle not supported for single column lists'),w(!(c&&f),"FlatList does not support setting both onViewableItemsChanged and viewabilityConfigCallbackPairs.")}},{key:"_pushMultiColumnViewable",value:function(t,n){var o=this.props,s=o.numColumns,l=o.keyExtractor;n.item.forEach(function(o,u){w(null!=n.index,'Missing index!');var c=n.index*s+u;t.push(p({},n,{item:o,key:l(o,c),index:c}))})}},{key:"_createOnViewableItemsChanged",value:function(t){var n=this;return function(o){var s=n.props.numColumns;if(t)if(s>1){var l=[],u=[];o.viewableItems.forEach(function(t){return n._pushMultiColumnViewable(u,t)}),o.changed.forEach(function(t){return n._pushMultiColumnViewable(l,t)}),t({viewableItems:u,changed:l})}else t(o)}}},{key:"render",value:function(){return y.createElement(v,t({},this.props,{renderItem:this._renderItem,getItem:this._getItem,getItemCount:this._getItemCount,keyExtractor:this._keyExtractor,ref:this._captureRef,viewabilityConfigCallbackPairs:this._virtualizedListPairs}))}}]),f})(y.PureComponent);I.defaultProps=_;var k=b.create({row:{flexDirection:'row'}});m.exports=I},232,[16,34,42,45,35,48,18,55,150,13,81,233,58,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),s=r(d[1]),o=r(d[2]),n=r(d[3]),l=r(d[4]),h=r(d[5]),c=r(d[6]),p=r(d[7]);function u(t,s){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),s&&(o=o.filter(function(s){return Object.getOwnPropertyDescriptor(t,s).enumerable})),o}function f(t){for(var o=1;o0&&s>0&&null!=p.props.initialScrollIndex&&p.props.initialScrollIndex>0&&!p._hasDoneInitialScroll&&(p.scrollToIndex({animated:!1,index:p.props.initialScrollIndex}),p._hasDoneInitialScroll=!0),p.props.onContentSizeChange&&p.props.onContentSizeChange(t,s),p._scrollMetrics.contentLength=p._selectLength({height:s,width:t}),p._scheduleCellsToRenderUpdate(),p._maybeCallOnEndReached()},p._convertParentScrollMetrics=function(t){var s=t.offset-p._offsetFromParentVirtualizedList,o=t.visibleLength,n=s-p._scrollMetrics.offset;return{visibleLength:o,contentLength:p._scrollMetrics.contentLength,offset:s,dOffset:n}},p._onScroll=function(t){p._nestedChildLists.forEach(function(s){s.ref&&s.ref._onScroll(t)}),p.props.onScroll&&p.props.onScroll(t);var s=t.timeStamp,o=p._selectLength(t.nativeEvent.layoutMeasurement),n=p._selectLength(t.nativeEvent.contentSize),l=p._selectOffset(t.nativeEvent.contentOffset),h=l-p._scrollMetrics.offset;if(p._isNestedWithSameOrientation()){if(0===p._scrollMetrics.contentLength)return;var c=p._convertParentScrollMetrics({visibleLength:o,offset:l});o=c.visibleLength,n=c.contentLength,l=c.offset,h=c.dOffset}var u=p._scrollMetrics.timestamp?Math.max(1,s-p._scrollMetrics.timestamp):1,f=h/u;u>500&&p._scrollMetrics.dt>500&&n>5*o&&!p._hasWarned.perf&&(R("VirtualizedList: You have a large list that is slow to update - make sure your renderItem function renders components that follow React performance best practices like PureComponent, shouldComponentUpdate, etc.",{dt:u,prevDt:p._scrollMetrics.dt,contentLength:n}),p._hasWarned.perf=!0),p._scrollMetrics={contentLength:n,dt:u,dOffset:h,offset:l,timestamp:s,velocity:f,visibleLength:o},p._updateViewableItems(p.props.data),p.props&&(p._maybeCallOnEndReached(),0!==f&&p._fillRateHelper.activate(),p._computeBlankness(),p._scheduleCellsToRenderUpdate())},p._onScrollBeginDrag=function(t){p._nestedChildLists.forEach(function(s){s.ref&&s.ref._onScrollBeginDrag(t)}),p._viewabilityTuples.forEach(function(t){t.viewabilityHelper.recordInteraction()}),p._hasInteracted=!0,p.props.onScrollBeginDrag&&p.props.onScrollBeginDrag(t)},p._onScrollEndDrag=function(t){var s=t.nativeEvent.velocity;s&&(p._scrollMetrics.velocity=p._selectOffset(s)),p._computeBlankness(),p.props.onScrollEndDrag&&p.props.onScrollEndDrag(t)},p._onMomentumScrollEnd=function(t){p._scrollMetrics.velocity=0,p._computeBlankness(),p.props.onMomentumScrollEnd&&p.props.onMomentumScrollEnd(t)},p._updateCellsToRender=function(){var t=p.props,s=t.data,o=t.getItemCount,n=t.onEndReachedThreshold,l=p._isVirtualizationDisabled();p._updateViewableItems(s),s&&p.setState(function(t){var h;if(l){var c=p._scrollMetrics,u=c.contentLength,f=c.offset,_=c.visibleLength,y=u-_-f0)for(var v=h.first,C=h.last,L=v;L<=C;L++){var b=p._indicesToKeys.get(L),S=b&&p._cellKeysToChildListKeys.get(b);if(S){var M=!1,x=S,k=Array.isArray(x),R=0;for(x=k?x:x["function"==typeof Symbol&&"function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var I;if(k){if(R>=x.length)break;I=x[R++]}else{if((R=x.next()).done)break;I=R.value}var w=I,T=p._nestedChildLists.get(w);if(T&&T.ref&&T.ref.hasMore()){M=!0;break}}if(M){h.last=L;break}}}return h})},p._createViewToken=function(t,s){var o=p.props,n=o.data,l=o.getItem,h=o.keyExtractor,c=l(n,t);return{index:t,item:c,key:h(c,t),isViewable:s}},p._getFrameMetricsApprox=function(t){var s=p._getFrameMetrics(t);if(s&&s.index===t)return s;var o=p.props.getItemLayout;return I(!o,'Should not have to estimate frames when a measurement metrics function is provided'),{length:p._averageCellLength,offset:p._averageCellLength*t}},p._getFrameMetrics=function(t){var s=p.props,o=s.data,n=s.getItem,l=s.getItemCount,h=s.getItemLayout,c=s.keyExtractor;I(l(o)>t,'Tried to get frame for out of range index '+t);var u=n(o,t),f=u&&p._frames[c(u,t)];return f&&f.index===t||h&&(f=h(o,t)),f},I(!s.onScroll||!s.onScroll.__isNative,"Components based on VirtualizedList must be wrapped with Animated.createAnimatedComponent to support native onScroll events with useNativeDriver"),I(s.windowSize>0,'VirtualizedList: The windowSize prop must be present and set to a value greater than 0.'),p._fillRateHelper=new y(p._getFrameMetrics),p._updateCellsToRenderBatcher=new _(p._updateCellsToRender,p.props.updateCellsBatchingPeriod),p.props.viewabilityConfigCallbackPairs?p._viewabilityTuples=p.props.viewabilityConfigCallbackPairs.map(function(t){return{viewabilityHelper:new k(t.viewabilityConfig),onViewableItemsChanged:t.onViewableItemsChanged}}):p.props.onViewableItemsChanged&&p._viewabilityTuples.push({viewabilityHelper:new k(p.props.viewabilityConfig),onViewableItemsChanged:p.props.onViewableItemsChanged});var u={first:p.props.initialScrollIndex||0,last:Math.min(p.props.getItemCount(p.props.data),(p.props.initialScrollIndex||0)+p.props.initialNumToRender)-1};if(p._isNestedWithSameOrientation()){var L=p.context.virtualizedList.getNestedChildState(p.props.listKey||p._getCellKey());L&&(u=L,p.state=L,p._frames=L.frames)}return p.state=u,p}return p(v,u),c(v,[{key:"scrollToEnd",value:function(t){var s=!t||t.animated,o=this.props.getItemCount(this.props.data)-1,n=this._getFrameMetricsApprox(o),l=Math.max(0,n.offset+n.length+this._footerLength-this._scrollMetrics.visibleLength);this._scrollRef.scrollTo(this.props.horizontal?{x:l,animated:s}:{y:l,animated:s})}},{key:"scrollToIndex",value:function(t){var s=this.props,o=s.data,n=s.horizontal,l=s.getItemCount,h=s.getItemLayout,c=s.onScrollToIndexFailed,p=t.animated,u=t.index,f=t.viewOffset,_=t.viewPosition;if(I(u>=0&&uthis._highestMeasuredFrameIndex)return I(!!c,"scrollToIndex should be used in conjunction with getItemLayout or onScrollToIndexFailed, otherwise there is no way to know the location of offscreen indices or handle failures."),void c({averageItemLength:this._averageCellLength,highestMeasuredFrameIndex:this._highestMeasuredFrameIndex,index:u});var y=this._getFrameMetricsApprox(u),v=Math.max(0,y.offset-(_||0)*(this._scrollMetrics.visibleLength-y.length))-(f||0);this._scrollRef.scrollTo(n?{x:v,animated:p}:{y:v,animated:p})}},{key:"scrollToItem",value:function(t){for(var s=t.item,o=this.props,n=o.data,l=o.getItem,h=(0,o.getItemCount)(n),c=0;c0){w=!1,T='';var R=u?'width':'height',I=this.props.initialScrollIndex?-1:this.props.initialNumToRender-1,E=this.state,O=E.first,z=E.last;this._pushCells(v,b,L,0,I,y);var K=Math.max(I+1,O);if(!_&&O>I+1){var N=!1;if(L.size>0)for(var V=h?1:0,A=K-1;A>I;A--)if(L.has(A+V)){var D=this._getFrameMetricsApprox(I),B=this._getFrameMetricsApprox(A),H=B.offset-D.offset-(this.props.initialScrollIndex?0:D.length);v.push(C.createElement(x,{key:"$sticky_lead",style:s({},R,H)})),this._pushCells(v,b,L,A,A,y);var U=this._getFrameMetricsApprox(O).offset-(B.offset+B.length);v.push(C.createElement(x,{key:"$sticky_trail",style:s({},R,U)})),N=!0;break}if(!N){var W=this._getFrameMetricsApprox(I),j=this._getFrameMetricsApprox(O).offset-(W.offset+W.length);v.push(C.createElement(x,{key:"$lead_spacer",style:s({},R,j)}))}}if(this._pushCells(v,b,L,K,z,y),!this._hasWarned.keys&&w&&(console.warn("VirtualizedList: missing keys for items, make sure to specify a key or id property on each item or provide a custom keyExtractor.",T),this._hasWarned.keys=!0),!_&&z=p.length)break;_=p[f++]}else{if((f=p.next()).done)break;_=f.value}var y=_,v=this._nestedChildLists.get(y);v&&v.ref&&v.ref.measureLayoutRelativeToContainingList()}}this._computeBlankness(),this._updateViewableItems(this.props.data)}},{key:"measureLayoutRelativeToContainingList",value:function(){var t=this;try{if(!this._scrollRef)return;this._scrollRef.measureLayout(this.context.virtualizedList.getOutermostParentListRef().getScrollRef().getNativeScrollRef(),function(s,o,n,l){t._offsetFromParentVirtualizedList=t._selectOffset({x:s,y:o}),t._scrollMetrics.contentLength=t._selectLength({width:n,height:l});var h=t._convertParentScrollMetrics(t.context.virtualizedList.getScrollMetrics());t._scrollMetrics.visibleLength=h.visibleLength,t._scrollMetrics.offset=h.offset},function(t){console.warn("VirtualizedList: Encountered an error while measuring a list's offset from its containing VirtualizedList.")})}catch(t){console.warn('measureLayoutRelativeToContainingList threw an error',t.stack)}}},{key:"_renderDebugOverlay",value:function(){for(var t=this._scrollMetrics.visibleLength/(this._scrollMetrics.contentLength||1),s=[],o=this.props.getItemCount(this.props.data),n=0;n0){var _=l-this._getFrameMetricsApprox(s).offset;u=u||_<0||c<-2&&_2&&y0&&void 0!==arguments[0]?arguments[0]:{abort:!1};this._taskHandle&&(this._taskHandle.cancel(),t.abort||this._callback(),this._taskHandle=null)}},{key:"schedule",value:function(){var t=this;if(!this._taskHandle){var n=setTimeout(function(){t._taskHandle=l.runAfterInteractions(function(){t._taskHandle=null,t._callback()})},this._delay);this._taskHandle={cancel:function(){return clearTimeout(n)}}}}}]),s})();m.exports=s},234,[34,35,209]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),s=r(d[2]);function l(t,n){var s=Object.keys(t);return Object.getOwnPropertySymbols&&s.push.apply(s,Object.getOwnPropertySymbols(t)),n&&(s=s.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),s}function o(n){for(var s=1;sMath.random(),this._resetData()}return n(t,null,[{key:"addListener",value:function(t){return h(null!==y,'Call `FillRateHelper.setSampleRate` before `addListener`.'),f.push(t),{remove:function(){f=f.filter(function(n){return t!==n})}}}},{key:"setSampleRate",value:function(t){y=t}},{key:"setMinSampleCount",value:function(t){c=t}}]),n(t,[{key:"activate",value:function(){this._enabled&&null==this._samplesStartTime&&(this._samplesStartTime=_())}},{key:"deactivateAndFlush",value:function(){if(this._enabled){var t=this._samplesStartTime;if(null!=t)if(this._info.sample_count0&&(y=Math.min(u,Math.max(0,b.offset-o)));for(var k=0,v=n.last,S=this._getFrameMetrics(v);v>=n.first&&(!S||!S.inLayout);)S=this._getFrameMetrics(v),v--;if(S&&v0?(this._anyBlankStartTime=c,this._info.any_blank_speed_sum+=f,this._info.any_blank_count++,this._info.pixels_blank+=T,O>.5&&(this._mostlyBlankStartTime=c,this._info.mostly_blank_count++)):(f<.01||Math.abs(l)<1)&&this.deactivateAndFlush(),O}},{key:"enabled",value:function(){return this._enabled}},{key:"_resetData",value:function(){this._anyBlankStartTime=null,this._info=new u,this._mostlyBlankStartTime=null,this._samplesStartTime=null}}]),t})();m.exports=p},235,[18,35,34,109,28]); +__d(function(g,r,i,a,m,e,d){'use strict';var t,s=r(d[0]),n=r(d[1]),o=r(d[2]),h=r(d[3]),f=r(d[4]),p=r(d[5]),l=r(d[6]),u=(r(d[7]),r(d[8])),v=(r(d[9]).NativeComponent,r(d[10])),c=(r(d[11]),r(d[12]),r(d[13]).getViewManagerConfig('AndroidSwipeRefreshLayout'));t=c?c.Constants:{SIZE:{}};var R=(function(t){function c(){var t,s;o(this,c);for(var n=arguments.length,h=new Array(n),l=0;l0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;console.warn('`scrollWithoutAnimationTo` is deprecated. Use `scrollTo` instead'),this.scrollTo({x:n,y:t,animated:!1})}},{key:"flashScrollIndicators",value:function(){this._scrollResponder.scrollResponderFlashScrollIndicators()}},{key:"_getKeyForIndex",value:function(t,n){var o=n[t];return o&&o.key}},{key:"_updateAnimatedNodeAttachment",value:function(){this._scrollAnimatedValueAttachment&&this._scrollAnimatedValueAttachment.detach(),this.props.stickyHeaderIndices&&this.props.stickyHeaderIndices.length>0&&(this._scrollAnimatedValueAttachment=_.attachNativeEvent(this._scrollViewRef,'onScroll',[{nativeEvent:{contentOffset:{y:this._scrollAnimatedValue}}}]))}},{key:"_setStickyHeaderRef",value:function(t,n){n?this._stickyHeaderRefs.set(t,n):this._stickyHeaderRefs.delete(t)}},{key:"_onStickyHeaderLayout",value:function(t,n,o){var l=this.props.stickyHeaderIndices;if(l){var s=S.Children.toArray(this.props.children);if(o===this._getKeyForIndex(t,s)){var c=n.nativeEvent.layout.y;this._headerLayoutYs.set(o,c);var p=l[l.indexOf(t)-1];if(null!=p){var u=this._stickyHeaderRefs.get(this._getKeyForIndex(p,s));u&&u.setNextHeaderY(c)}}}}},{key:"render",value:function(){var n,o,l=this;!0===this.props.horizontal?(n=v,o=R):(n=y,o=A),C(void 0!==n,'ScrollViewClass must not be undefined'),C(void 0!==o,'ScrollContentContainerViewClass must not be undefined');var s=[!0===this.props.horizontal&&D.contentContainerHorizontal,this.props.contentContainerStyle],c={};this.props.onContentSizeChange&&(c={onLayout:this._handleContentOnLayout});var p=this.props.stickyHeaderIndices,u=this.props.children;if(null!=p&&p.length>0){var h=S.Children.toArray(this.props.children);u=h.map(function(t,n){var o=t?p.indexOf(n):-1;if(o>-1){var s=t.key,c=p[o+1];return S.createElement(k,{key:s,ref:function(t){return l._setStickyHeaderRef(s,t)},nextHeaderLayoutY:l._headerLayoutYs.get(l._getKeyForIndex(c,h)),onLayout:function(t){return l._onStickyHeaderLayout(n,t,s)},scrollAnimatedValue:l._scrollAnimatedValue,inverted:l.props.invertStickyHeaders,scrollViewHeight:l.state.layoutHeight},t)}return t})}var _=Array.isArray(p)&&p.length>0,w=S.createElement(o,t({},c,{ref:this._setInnerViewRef,style:s,removeClippedSubviews:!_&&this.props.removeClippedSubviews,collapsable:!1}),u),H=void 0!==this.props.alwaysBounceHorizontal?this.props.alwaysBounceHorizontal:this.props.horizontal,V=void 0!==this.props.alwaysBounceVertical?this.props.alwaysBounceVertical:!this.props.horizontal,E=!!this.props.DEPRECATED_sendUpdatedChildFrames,x=!0===this.props.horizontal?D.baseHorizontal:D.baseVertical,I=f({},this.props,{alwaysBounceHorizontal:H,alwaysBounceVertical:V,style:[x,this.props.style],onContentSizeChange:null,onLayout:this._handleLayout,onMomentumScrollBegin:this._scrollResponder.scrollResponderHandleMomentumScrollBegin,onMomentumScrollEnd:this._scrollResponder.scrollResponderHandleMomentumScrollEnd,onResponderGrant:this._scrollResponder.scrollResponderHandleResponderGrant,onResponderReject:this._scrollResponder.scrollResponderHandleResponderReject,onResponderRelease:this._scrollResponder.scrollResponderHandleResponderRelease,onResponderTerminate:this._scrollResponder.scrollResponderHandleTerminate,onResponderTerminationRequest:this._scrollResponder.scrollResponderHandleTerminationRequest,onScrollBeginDrag:this._scrollResponder.scrollResponderHandleScrollBeginDrag,onScrollEndDrag:this._scrollResponder.scrollResponderHandleScrollEndDrag,onScrollShouldSetResponder:this._scrollResponder.scrollResponderHandleScrollShouldSetResponder,onStartShouldSetResponder:this._scrollResponder.scrollResponderHandleStartShouldSetResponder,onStartShouldSetResponderCapture:this._scrollResponder.scrollResponderHandleStartShouldSetResponderCapture,onTouchEnd:this._scrollResponder.scrollResponderHandleTouchEnd,onTouchMove:this._scrollResponder.scrollResponderHandleTouchMove,onTouchStart:this._scrollResponder.scrollResponderHandleTouchStart,onTouchCancel:this._scrollResponder.scrollResponderHandleTouchCancel,onScroll:this._handleScroll,scrollBarThumbImage:M(this.props.scrollBarThumbImage),scrollEventThrottle:_?1:this.props.scrollEventThrottle,sendMomentumEvents:!(!this.props.onMomentumScrollBegin&&!this.props.onMomentumScrollEnd),DEPRECATED_sendUpdatedChildFrames:E,snapToStart:!1!==this.props.snapToStart,snapToEnd:!1!==this.props.snapToEnd,pagingEnabled:!0===this.props.pagingEnabled||null!=this.props.snapToInterval||null!=this.props.snapToOffsets}),z=this.props.decelerationRate;null!=z&&(I.decelerationRate=b(z));var L=this.props.refreshControl;if(L){var N=O(T(I.style)),B=N.outer,P=N.inner;return S.cloneElement(L,{style:[x,B]},S.createElement(n,t({},I,{style:[x,P],ref:this._setScrollViewRef}),w))}return S.createElement(n,t({},I,{ref:this._setScrollViewRef}),w)}}]),h})(S.Component),D=V.create({baseVertical:{flexGrow:1,flexShrink:1,flexDirection:'column',overflow:'scroll'},baseHorizontal:{flexGrow:1,flexShrink:1,flexDirection:'row',overflow:'scroll'},contentContainerHorizontal:{flexDirection:'row'}});m.exports=z},239,[16,34,35,42,45,44,48,18,211,55,13,83,240,245,58,81,244,80,26,246,154,160,247]); +__d(function(g,r,i,a,m,e,d){'use strict';var o=r(d[0]),s=r(d[1]),n=r(d[2]),l=r(d[3]),t=r(d[4]),c=r(d[5]),p=r(d[6]),h=r(d[7]),u=r(d[8]),S=r(d[9]),b=r(d[10]).ScrollViewManager,R={Mixin:{_subscriptionKeyboardWillShow:null,_subscriptionKeyboardWillHide:null,_subscriptionKeyboardDidShow:null,_subscriptionKeyboardDidHide:null,scrollResponderMixinGetInitialState:function(){return{isTouching:!1,lastMomentumScrollBeginTime:0,lastMomentumScrollEndTime:0,observedScrollSinceBecomingResponder:!1,becameResponderWhileAnimating:!1}},scrollResponderHandleScrollShouldSetResponder:function(){return!0!==this.props.disableScrollViewPanResponder&&this.state.isTouching},scrollResponderHandleStartShouldSetResponder:function(o){if(!0===this.props.disableScrollViewPanResponder)return!1;var s=t.currentlyFocusedField();return'handled'===this.props.keyboardShouldPersistTaps&&null!=s&&o.target!==s},scrollResponderHandleStartShouldSetResponderCapture:function(o){if(this.scrollResponderIsAnimating())return!0;if(!0===this.props.disableScrollViewPanResponder)return!1;var s=t.currentlyFocusedField(),n=this.props.keyboardShouldPersistTaps;return!(n&&'never'!==n||null==s||!o.target||t.isTextInput(o.target))},scrollResponderHandleResponderReject:function(){},scrollResponderHandleTerminationRequest:function(){return!this.state.observedScrollSinceBecomingResponder},scrollResponderHandleTouchEnd:function(o){var s=o.nativeEvent;this.state.isTouching=0!==s.touches.length,this.props.onTouchEnd&&this.props.onTouchEnd(o)},scrollResponderHandleTouchCancel:function(o){this.state.isTouching=!1,this.props.onTouchCancel&&this.props.onTouchCancel(o)},scrollResponderHandleResponderRelease:function(o){this.props.onResponderRelease&&this.props.onResponderRelease(o);var s=t.currentlyFocusedField();!0===this.props.keyboardShouldPersistTaps||'always'===this.props.keyboardShouldPersistTaps||null==s||o.target===s||this.state.observedScrollSinceBecomingResponder||this.state.becameResponderWhileAnimating||(this.props.onScrollResponderKeyboardDismissed&&this.props.onScrollResponderKeyboardDismissed(o),t.blurTextInput(s))},scrollResponderHandleScroll:function(o){this.state.observedScrollSinceBecomingResponder=!0,this.props.onScroll&&this.props.onScroll(o)},scrollResponderHandleResponderGrant:function(o){this.state.observedScrollSinceBecomingResponder=!1,this.props.onResponderGrant&&this.props.onResponderGrant(o),this.state.becameResponderWhileAnimating=this.scrollResponderIsAnimating()},scrollResponderHandleScrollBeginDrag:function(o){s.beginScroll(),this.props.onScrollBeginDrag&&this.props.onScrollBeginDrag(o)},scrollResponderHandleScrollEndDrag:function(o){var n=o.nativeEvent.velocity;this.scrollResponderIsAnimating()||n&&(0!==n.x||0!==n.y)||s.endScroll(),this.props.onScrollEndDrag&&this.props.onScrollEndDrag(o)},scrollResponderHandleMomentumScrollBegin:function(o){this.state.lastMomentumScrollBeginTime=u(),this.props.onMomentumScrollBegin&&this.props.onMomentumScrollBegin(o)},scrollResponderHandleMomentumScrollEnd:function(o){s.endScroll(),this.state.lastMomentumScrollEndTime=u(),this.props.onMomentumScrollEnd&&this.props.onMomentumScrollEnd(o)},scrollResponderHandleTouchStart:function(o){this.state.isTouching=!0,this.props.onTouchStart&&this.props.onTouchStart(o)},scrollResponderHandleTouchMove:function(o){this.props.onTouchMove&&this.props.onTouchMove(o)},scrollResponderIsAnimating:function(){return u()-this.state.lastMomentumScrollEndTime<16||this.state.lastMomentumScrollEndTime0){v.push(H),L.push(0),v.push(H+1),L.push(1);var Y=(y||0)-l-o;Y>H&&(v.push(Y,Y+1),L.push(Y-H,Y-H))}}}else{v.push(h),L.push(0);var x=(y||0)-l;x>=h?(v.push(x,x+1),L.push(x-h,x-h)):(v.push(h+1),L.push(1))}var C=this.props.scrollAnimatedValue.interpolate({inputRange:v,outputRange:L}),E=p.Children.only(this.props.children);return p.createElement(c,{collapsable:!1,onLayout:this._onLayout,style:[E.props.style,f.header,{transform:[{translateY:C}]}]},p.cloneElement(E,{style:f.fill,onLayout:void 0}))}}]),h})(p.Component),f=h.create({header:{zIndex:10},fill:{flex:1}});m.exports=v},245,[34,35,42,45,48,211,13,58,81]); +__d(function(g,r,i,a,m,e,d){'use strict';r(d[0]);m.exports=function(t){return'normal'===t?.985:'fast'===t?.9:t}},246,[55]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0])(Object.create(null),{margin:!0,marginHorizontal:!0,marginVertical:!0,marginBottom:!0,marginTop:!0,marginLeft:!0,marginRight:!0,flex:!0,flexGrow:!0,flexShrink:!0,flexBasis:!0,alignSelf:!0,height:!0,minHeight:!0,maxHeight:!0,width:!0,minWidth:!0,maxWidth:!0,position:!0,left:!0,right:!0,bottom:!0,top:!0});m.exports=function(n){var o={},f={};return n&&Object.keys(n).forEach(function(h){var l=n[h];t[h]?f[h]=l:o[h]=l}),{outer:f,inner:o}}},247,[16]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]);function c(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function l(n){for(var o=1;o0&&void 0!==arguments[0]?arguments[0]:{viewAreaCoveragePercentThreshold:0};o(this,t),this._hasInteracted=!1,this._timers=new Set,this._viewableIndices=[],this._viewableItems=new Map,this._config=n}return s(t,[{key:"dispose",value:function(){this._timers.forEach(clearTimeout)}},{key:"computeViewableItems",value:function(t,n,o,s,c){var l=this._config,f=l.itemVisiblePercentThreshold,v=l.viewAreaCoveragePercentThreshold,b=null!=v,y=b?v:f;u(null!=y&&null!=f!=(null!=v),'Must set exactly one of itemVisiblePercentThreshold or viewAreaCoveragePercentThreshold');var p=[];if(0===t)return p;var w=-1,_=c||{first:0,last:t-1},I=_.first,O=_.last;if(O>=t)return console.warn('Invalid render range computing viewability '+JSON.stringify({renderRange:c,itemCount:t})),[];for(var k=I;k<=O;k++){var P=s(k);if(P){var S=P.offset-n,j=S+P.length;if(S0)w=k,h(b,y,S,j,o,P.length)&&p.push(k);else if(w>=0)break}}return p}},{key:"onUpdate",value:function(t,n,o,s,c,l,u){var f=this;if((!this._config.waitForInteraction||this._hasInteracted)&&0!==t&&s(0)){var h=[];if(t&&(h=this.computeViewableItems(t,n,o,s,u)),this._viewableIndices.length!==h.length||!this._viewableIndices.every(function(t,n){return t===h[n]}))if(this._viewableIndices=h,this._config.minimumViewTime){var v=setTimeout(function(){f._timers.delete(v),f._onUpdateSync(h,l,c)},this._config.minimumViewTime);this._timers.add(v)}else this._onUpdateSync(h,l,c)}}},{key:"resetViewableIndices",value:function(){this._viewableIndices=[]}},{key:"recordInteraction",value:function(){this._hasInteracted=!0}},{key:"_onUpdateSync",value:function(t,o,s){var c=this;t=t.filter(function(t){return c._viewableIndices.includes(t)});var u=this._viewableItems,f=new Map(t.map(function(t){var n=s(t,!0);return[n.key,n]})),h=[],v=f,b=Array.isArray(v),y=0;for(v=b?v:v["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var p;if(b){if(y>=v.length)break;p=v[y++]}else{if((y=v.next()).done)break;p=y.value}var w=n(p,2),_=w[0],I=w[1];u.has(_)||h.push(I)}var O=u,k=Array.isArray(O),P=0;for(O=k?O:O["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var S;if(k){if(P>=O.length)break;S=O[P++]}else{if((P=O.next()).done)break;S=P.value}var j=n(S,2),T=j[0],A=j[1];f.has(T)||h.push(l({},A,{isViewable:!1}))}h.length>0&&(this._viewableItems=f,o({viewableItems:Array.from(f.values()),changed:h,viewabilityConfig:this._config}))}}]),t})();function h(t,n,o,s,c,l){if(b(o,s,c))return!0;var u=v(o,s,c);return 100*(t?u/c:u/l)>=n}function v(t,n,o){var s=Math.min(n,o)-Math.max(t,0);return Math.max(0,s)}function b(t,n,o){return t>=0&&n<=o&&n>t}m.exports=f},248,[18,5,34,35,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]);function s(t,s,f){for(var l=[],o=0,u=0;u=t[c]&&(l[c]=u,o++,c===t.length-1))return n(o===t.length,'bad offsets input, should be in increasing order: %s',JSON.stringify(t)),l;return l}function f(t,n){return n.last-n.first+1-Math.max(0,1+Math.min(n.last,t.last)-Math.max(n.first,t.first))}var l={computeWindowedRenderLimits:function(n,l,o,u){var h=n.data,v=n.getItemCount,c=n.maxToRenderPerBatch,x=n.windowSize,M=v(h);if(0===M)return l;var w=u.offset,b=u.velocity,p=u.visibleLength,C=Math.max(0,w),O=C+p,y=(x-1)*p,L=b>1?'after':b<-1?'before':'none',R=Math.max(0,C-.5*y),S=Math.max(0,O+.5*y);if(o(M-1).offset=_);){var E=z>=c,F=N<=l.first||N>l.last,P=N>J&&(!E||!F),W=T>=l.last||T=N&&N>=0&&T=J&&T<=_&&N<=k.first&&T>=k.last))throw new Error('Bad window calculation '+JSON.stringify({first:N,last:T,itemCount:M,overscanFirst:J,overscanLast:_,visible:k}));return{first:N,last:T}},elementsThatOverlapOffsets:s,newRangeCount:f};m.exports=l},249,[5,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),s=r(d[1]);m.exports=s(t)},250,[251,230]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]);function o(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}var c=r(d[2]),u=r(d[3]),s=r(d[4]),l=r(d[5]),f=r(d[6]),h=r(d[7]),p=r(d[8]),b=(r(d[9]),r(d[10])),y=r(d[11]),w=r(d[12]),O=r(d[13]),v=r(d[14]),S=f.ImageLoader,I=r(d[15]),E=1;var j=(function(t){for(var c=1;c component requires a `source` property rather than `src`.'),t.children)throw new Error('The component cannot contain children. If you want to render content on top of the image, consider using the component or absolute positioning.');if(t.defaultSource&&t.loadingIndicatorSource)throw new Error('The component cannot have defaultSource and loadingIndicatorSource at the same time. Please use either defaultSource or loadingIndicatorSource.');if(!f||f.uri||Array.isArray(f)||(f=null),null!=(null==(o=f)?void 0:o.uri)){var S=f,E=S.width,j=S.height;u=w([{width:E,height:j},z.base,t.style]),s=[{uri:f.uri}]}else u=w([z.base,t.style]),s=f;var P=t.onLoadStart,L=t.onLoad,D=t.onLoadEnd,T=t.onError,q=O(t,{style:u,shouldNotifyLoadEvents:!!(P||L||D||T),src:s,headers:null==(c=f)?void 0:c.headers,defaultSrc:h?h.uri:null,loadingIndicatorSrc:b?b.uri:null,ref:n});return p.createElement(y.Consumer,null,function(t){return t?p.createElement(I,q):p.createElement(l,q)})};(P=p.forwardRef(P)).displayName='Image',P.getSize=function(t,n,o){return S.getSize(t).then(function(t){n(t.width,t.height)}).catch(o||function(){console.warn('Failed to get size for image: '+t)})},P.getSizeWithHeaders=function(t,n,o,c){return S.getSizeWithHeaders(t,n).then(function(t){o(t.width,t.height)}).catch(c||function(){console.warn('Failed to get size for image: '+t)})},P.prefetch=function(t,n){var o=E++;return n&&n(o),S.prefetchImage(t,o)},P.abortPrefetch=function(t){S.abortRequest(t)},P.queryCache=function(n){return t.async(function(o){for(;;)switch(o.prev=o.next){case 0:return o.next=2,t.awrap(S.queryCache(n));case 2:return o.abrupt("return",o.sent);case 3:case"end":return o.stop()}})},P.resolveAssetSource=v,P.propTypes=j;var z=b.create({base:{overflow:'hidden'}});m.exports=P},251,[252,18,63,181,254,256,31,67,13,83,58,183,80,174,160,257]); +__d(function(g,r,i,a,m,e,d){m.exports=r(d[0])},252,[253]); +__d(function(g,r,i,a,m,e,d){var t=(function(t){"use strict";var n,o=Object.prototype,c=o.hasOwnProperty,u="function"==typeof Symbol?Symbol:{},h=u.iterator||"@@iterator",f=u.asyncIterator||"@@asyncIterator",s=u.toStringTag||"@@toStringTag";function l(t,n,o,c){var u=n&&n.prototype instanceof E?n:E,h=Object.create(u.prototype),f=new A(c||[]);return h._invoke=F(t,o,f),h}function p(t,n,o){try{return{type:"normal",arg:t.call(n,o)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var y="suspendedStart",v="suspendedYield",w="executing",L="completed",x={};function E(){}function b(){}function _(){}var j={};j[h]=function(){return this};var O=Object.getPrototypeOf,k=O&&O(O(R([])));k&&k!==o&&c.call(k,h)&&(j=k);var G=_.prototype=E.prototype=Object.create(j);function N(t){["next","throw","return"].forEach(function(n){t[n]=function(t){return this._invoke(n,t)}})}function P(t){function n(o,u,h,f){var s=p(t[o],t,u);if("throw"!==s.type){var l=s.arg,y=l.value;return y&&"object"==typeof y&&c.call(y,"__await")?Promise.resolve(y.__await).then(function(t){n("next",t,h,f)},function(t){n("throw",t,h,f)}):Promise.resolve(y).then(function(t){l.value=t,h(l)},function(t){return n("throw",t,h,f)})}f(s.arg)}var o;this._invoke=function(t,c){function u(){return new Promise(function(o,u){n(t,c,o,u)})}return o=o?o.then(u,u):u()}}function F(t,n,o){var c=y;return function(u,h){if(c===w)throw new Error("Generator is already running");if(c===L){if("throw"===u)throw h;return Y()}for(o.method=u,o.arg=h;;){var f=o.delegate;if(f){var s=S(f,o);if(s){if(s===x)continue;return s}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if(c===y)throw c=L,o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);c=w;var l=p(t,n,o);if("normal"===l.type){if(c=o.done?L:v,l.arg===x)continue;return{value:l.arg,done:o.done}}"throw"===l.type&&(c=L,o.method="throw",o.arg=l.arg)}}}function S(t,o){var c=t.iterator[o.method];if(c===n){if(o.delegate=null,"throw"===o.method){if(t.iterator.return&&(o.method="return",o.arg=n,S(t,o),"throw"===o.method))return x;o.method="throw",o.arg=new TypeError("The iterator does not provide a 'throw' method")}return x}var u=p(c,t.iterator,o.arg);if("throw"===u.type)return o.method="throw",o.arg=u.arg,o.delegate=null,x;var h=u.arg;return h?h.done?(o[t.resultName]=h.value,o.next=t.nextLoc,"return"!==o.method&&(o.method="next",o.arg=n),o.delegate=null,x):h:(o.method="throw",o.arg=new TypeError("iterator result is not an object"),o.delegate=null,x)}function T(t){var n={tryLoc:t[0]};1 in t&&(n.catchLoc=t[1]),2 in t&&(n.finallyLoc=t[2],n.afterLoc=t[3]),this.tryEntries.push(n)}function I(t){var n=t.completion||{};n.type="normal",delete n.arg,t.completion=n}function A(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function R(t){if(t){var o=t[h];if(o)return o.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var u=-1,f=function o(){for(;++u=0;--h){var f=this.tryEntries[h],s=f.completion;if("root"===f.tryLoc)return u("end");if(f.tryLoc<=this.prev){var l=c.call(f,"catchLoc"),p=c.call(f,"finallyLoc");if(l&&p){if(this.prev=0;--o){var u=this.tryEntries[o];if(u.tryLoc<=this.prev&&c.call(u,"finallyLoc")&&this.prev=0;--n){var o=this.tryEntries[n];if(o.finallyLoc===t)return this.complete(o.completion,o.afterLoc),I(o),x}},catch:function(t){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc===t){var c=o.completion;if("throw"===c.type){var u=c.arg;I(o)}return u}}throw new Error("illegal catch attempt")},delegateYield:function(t,o,c){return this.delegate={iterator:R(t),resultName:o,nextLoc:c},"next"===this.method&&(this.arg=n),x}},t})("object"==typeof m?m.exports:{});try{regeneratorRuntime=t}catch(n){Function("r","regeneratorRuntime = r")(t)}},253,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var o=r(d[0]);function n(o,n){var t=Object.keys(o);return Object.getOwnPropertySymbols&&t.push.apply(t,Object.getOwnPropertySymbols(o)),n&&(t=t.filter(function(n){return Object.getOwnPropertyDescriptor(o,n).enumerable})),t}var t=r(d[1]),s=r(d[2]),c=r(d[3]),l=r(d[4]),b=r(d[5]),p=r(d[6]),u=p.DeprecatedAccessibilityRoles,f=p.DeprecatedAccessibilityStates,y=l(b);m.exports=(function(t){for(var s=1;s0&&this.props.stickySectionHeadersEnabled&&(s=this._listRef._getFrameMetricsApprox(n-t.itemIndex).length);var p=h({},t,{viewOffset:s,index:n});this._listRef.scrollToIndex(p)}},{key:"getListRef",value:function(){return this._listRef}}]),l(f,[{key:"UNSAFE_componentWillReceiveProps",value:function(t){this.setState(this._computeState(t))}},{key:"_computeState",value:function(t){var n=t.ListHeaderComponent?1:0,o=[],s=t.sections?t.sections.reduce(function(s,p){return o.push(s+n),s+t.getItemCount(p.data)+2},0):0;return{childProps:h({},t,{renderItem:this._renderItem,ItemSeparatorComponent:void 0,data:t.sections,getItemCount:function(){return s},getItem:function(n,o){return P(t,n,o)},keyExtractor:this._keyExtractor,onViewableItemsChanged:t.onViewableItemsChanged?this._onViewableItemsChanged:void 0,stickyHeaderIndices:t.stickySectionHeadersEnabled?o:void 0})}}},{key:"render",value:function(){return S.createElement(I,t({},this.state.childProps,{ref:this._captureRef}))}},{key:"_subExtractor",value:function(t){for(var n=t,o=this.props,s=o.getItem,p=o.getItemCount,c=o.keyExtractor,l=o.sections,u=0;u=p(h)+1)n-=p(h)+1;else return-1===n?{section:f,key:S+':header',index:null,header:!0,trailingSection:l[u+1]}:n===p(h)?{section:f,key:S+':footer',index:null,header:!1,trailingSection:l[u+1]}:{section:f,key:S+':'+(f.keyExtractor||c)(s(h,n),n),index:n,leadingItem:s(h,n-1),leadingSection:l[u-1],trailingItem:s(h,n+1),trailingSection:l[u+1]}}}},{key:"_getSeparatorComponent",value:function(t,n){if(!(n=n||this._subExtractor(t)))return null;var o=n.section.ItemSeparatorComponent||this.props.ItemSeparatorComponent,s=this.props.SectionSeparatorComponent,p=t===this.state.childProps.getItemCount()-1,c=n.index===this.props.getItemCount(n.section.data)-1;return s&&c?s:!o||c||p?null:o}}]),f})(S.PureComponent);_.defaultProps=h({},I.defaultProps,{data:[]});var x=(function(t){function n(){var t,c;o(this,n);for(var l=arguments.length,u=new Array(l),f=0;f=21&&this.props.statusBarBackgroundColor,l=c.createElement(C,{style:[L.drawerSubview,{width:this.props.drawerWidth,backgroundColor:this.props.drawerBackgroundColor}],collapsable:!1},this.props.renderNavigationView(),u&&c.createElement(C,{style:L.drawerStatusBar})),p=c.createElement(C,{style:L.mainSubview,collapsable:!1},u&&c.createElement(f,{translucent:!0,backgroundColor:this.props.statusBarBackgroundColor}),u&&c.createElement(C,{style:[L.statusBar,{backgroundColor:this.props.statusBarBackgroundColor}]}),this.props.children);return c.createElement(b,t({},s,{ref:this._nativeRef,drawerWidth:this.props.drawerWidth,drawerPosition:this.props.drawerPosition,drawerLockMode:this.props.drawerLockMode,style:[L.base,this.props.style],onDrawerSlide:this._onDrawerSlide,onDrawerOpen:this._onDrawerOpen,onDrawerClose:this._onDrawerClose,onDrawerStateChanged:this._onDrawerStateChanged}),p,l)}},{key:"openDrawer",value:function(){v.dispatchViewManagerCommand(this._getDrawerLayoutHandle(),v.getViewManagerConfig('AndroidDrawerLayout').Commands.openDrawer,null)}},{key:"closeDrawer",value:function(){v.dispatchViewManagerCommand(this._getDrawerLayoutHandle(),v.getViewManagerConfig('AndroidDrawerLayout').Commands.closeDrawer,null)}},{key:"_getDrawerLayoutHandle",value:function(){return h.findNodeHandle(this._nativeRef.current)}},{key:"blur",value:function(){y(this._nativeRef.current).blur()}},{key:"focus",value:function(){y(this._nativeRef.current).focus()}},{key:"measure",value:function(t){y(this._nativeRef.current).measure(t)}},{key:"measureInWindow",value:function(t){y(this._nativeRef.current).measureInWindow(t)}},{key:"measureLayout",value:function(t,o,n){y(this._nativeRef.current).measureLayout(t,o,n)}},{key:"setNativeProps",value:function(t){y(this._nativeRef.current).setNativeProps(t)}}]),k})(c.Component);B.positions=k.DrawerPosition,B.defaultProps={drawerBackgroundColor:'white'};var L=D.create({base:{flex:1,elevation:16},mainSubview:{position:'absolute',top:0,left:0,right:0,bottom:0},drawerSubview:{position:'absolute',top:0,bottom:0},statusBar:{height:f.currentHeight},drawerStatusBar:{position:'absolute',top:0,left:0,right:0,height:f.currentHeight,backgroundColor:'rgba(0, 0, 0, 0.251)'}});m.exports=B},269,[16,19,34,35,42,45,48,55,13,83,270,58,54,81,191,244,271]); +__d(function(g,r,i,a,m,e,d){'use strict';var t,n=r(d[0]),l=r(d[1]),u=r(d[2]),o=r(d[3]),c=r(d[4]),s=r(d[5]),p=r(d[6]),k=(r(d[7]),r(d[8])),v=r(d[9]).StatusBarManager;function y(t){return{backgroundColor:null!=t.backgroundColor?{value:t.backgroundColor,animated:t.animated}:null,barStyle:null!=t.barStyle?{value:t.barStyle,animated:t.animated}:null,translucent:t.translucent,hidden:null!=t.hidden?{value:t.hidden,animated:t.animated,transition:t.showHideTransition}:null,networkActivityIndicatorVisible:t.networkActivityIndicatorVisible}}var f=(function(t){function s(){var t,l;n(this,s);for(var c=arguments.length,p=new Array(c),k=0;k is only supported on iOS.'),0===c.Children.count(this.props.children)?null:c.createElement(l,{style:[this.props.style,y.container],nativeID:this.props.nativeID,backgroundColor:this.props.backgroundColor},this.props.children)}}]),h})(c.Component),y=u.create({container:{position:'absolute'}});m.exports=h},276,[34,35,42,45,48,64,55,13,58,277]); +__d(function(g,r,i,a,m,e,d){'use strict';r(d[0]);var s=r(d[1]);m.exports=s('RCTInputAccessoryView')},277,[13,154]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),o=r(d[1]),n=r(d[2]),s=r(d[3]),l=r(d[4]),u=r(d[5]),h=r(d[6]),c=r(d[7]),f=r(d[8]),y=(r(d[9]),r(d[10])),b=r(d[11]),_=r(d[12]),v=(function(v){function p(t){var o;return n(this,p),(o=l(this,u(p).call(this,t)))._frame=null,o._subscriptions=[],o._initialFrameHeight=0,o._onKeyboardChange=function(t){if(null!=t){var n=t.duration,s=t.easing,l=t.endCoordinates,u=o._relativeKeyboardHeight(l);o.state.bottom!==u&&(n&&s&&f.configureNext({duration:n>10?n:10,update:{duration:n>10?n:10,type:f.Types[s]||'keyboard'}}),o.setState({bottom:u}))}else o.setState({bottom:0})},o._onLayout=function(t){o._frame=t.nativeEvent.layout,o._initialFrameHeight||(o._initialFrameHeight=o._frame.height)},o.state={bottom:0},o.viewRef=y.createRef(),o}return h(p,v),s(p,[{key:"_relativeKeyboardHeight",value:function(t){var o=this._frame;if(!o||!t)return 0;var n=t.screenY-this.props.keyboardVerticalOffset;return Math.max(o.y+o.height-n,0)}},{key:"componentDidMount",value:function(){this._subscriptions=[c.addListener('keyboardDidHide',this._onKeyboardChange),c.addListener('keyboardDidShow',this._onKeyboardChange)]}},{key:"componentWillUnmount",value:function(){this._subscriptions.forEach(function(t){t.remove()})}},{key:"render",value:function(){var n=this.props,s=n.behavior,l=n.children,u=n.contentContainerStyle,h=n.enabled,c=(n.keyboardVerticalOffset,n.style),f=o(n,["behavior","children","contentContainerStyle","enabled","keyboardVerticalOffset","style"]),v=h?this.state.bottom:0;switch(s){case'height':var p;return null!=this._frame&&this.state.bottom>0&&(p={height:this._initialFrameHeight-v,flex:0}),y.createElement(_,t({ref:this.viewRef,style:b.compose(c,p),onLayout:this._onLayout},f),l);case'position':return y.createElement(_,t({ref:this.viewRef,style:c,onLayout:this._onLayout},f),y.createElement(_,{style:b.compose(u,{bottom:v})},l));case'padding':return y.createElement(_,t({ref:this.viewRef,style:b.compose(c,{paddingBottom:v}),onLayout:this._onLayout},f),l);default:return y.createElement(_,t({ref:this.viewRef,onLayout:this._onLayout,style:c},f),l)}}}]),p})(y.Component);v.defaultProps={enabled:!0,keyboardVerticalOffset:0},m.exports=v},278,[16,19,34,35,42,45,48,242,243,55,13,58,81]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports=r(d[0])},279,[280]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),s=r(d[2]),u=r(d[3]),o=r(d[4]),p=r(d[5]),c=r(d[6]),l=(function(c){function l(){return t(this,l),s(this,u(l).apply(this,arguments))}return o(l,c),n(l,[{key:"setNativeProps",value:function(){}},{key:"render",value:function(){var t=r(d[7]);return p.createElement(t,{style:[h.unimplementedView,this.props.style]},this.props.children)}}]),l})(p.Component),h=c.create({unimplementedView:{}});m.exports=l},280,[34,35,42,45,48,13,58,81]); +__d(function(g,r,i,a,m,e,d){'use strict';var t,n=r(d[0]),o=r(d[1]),s=r(d[2]),p=r(d[3]),l=r(d[4]),u=r(d[5]),c=(r(d[6]),r(d[7])),h=(r(d[8]),r(d[9]),r(d[10]),r(d[11])),v=r(d[12]),f=r(d[13]),y=r(d[14]),S=r(d[15]),_=0,C=(function(t){function n(t){var s;return o(this,n),s=p(this,l(n).call(this,t)),n._confirmProps(t),s._identifier=_++,s}return u(n,t),s(n,[{key:"getChildContext",value:function(){return{virtualizedList:null}}},{key:"componentDidMount",value:function(){}},{key:"componentWillUnmount",value:function(){this._eventSubscription&&this._eventSubscription.remove()}},{key:"UNSAFE_componentWillReceiveProps",value:function(t){n._confirmProps(t)}},{key:"render",value:function(){if(!0!==this.props.visible)return null;var t={backgroundColor:this.props.transparent?'transparent':'white'},n=this.props.animationType;n||(n='none',this.props.animated&&(n='slide'));var o=this.props.presentationStyle;o||(o='fullScreen',this.props.transparent&&(o='overFullScreen'));var s=this.props.children;return h.createElement(S,{animationType:n,presentationStyle:o,transparent:this.props.transparent,hardwareAccelerated:this.props.hardwareAccelerated,onRequestClose:this.props.onRequestClose,onShow:this.props.onShow,identifier:this._identifier,style:k.modal,onStartShouldSetResponder:this._shouldSetResponder,supportedOrientations:this.props.supportedOrientations,onOrientationChange:this.props.onOrientationChange},h.createElement(y,{style:[k.container,t]},s))}},{key:"_shouldSetResponder",value:function(){return!0}}],[{key:"_confirmProps",value:function(t){t.presentationStyle&&'overFullScreen'!==t.presentationStyle&&t.transparent&&console.warn("Modal with '"+t.presentationStyle+"' presentation style and 'transparent' value is not supported.")}}]),n})(h.Component);C.defaultProps={visible:!0,hardwareAccelerated:!1},C.contextTypes={rootTag:v.number},C.childContextTypes={virtualizedList:v.object};var b=c.isRTL?'right':'left',k=f.create({modal:{position:'absolute'},container:(t={},n(t,b,0),n(t,"top",0),n(t,"flex",1),t)});m.exports=C},281,[18,34,35,42,45,48,282,283,116,31,55,13,67,58,81,284]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]),l=r(d[4]),p=(r(d[5]),r(d[6])),u=(r(d[7]),r(d[8])),c=(r(d[9]),r(d[10])),h=r(d[11]),f=(function(p){function c(){var n,l;t(this,c);for(var p=arguments.length,u=new Array(p),h=0;h=0){var n=h.Children.toArray(o.props.children).filter(function(t){return null!=t})[s].props.value;o.props.selectedValue!==n&&o.props.onValueChange(n,s)}else o.props.onValueChange(null,s)}o.refs[y]&&o.state.selectedIndex!==t.nativeEvent.position&&o.refs[y].setNativeProps({selected:o.state.selectedIndex})},o}return l(b,v),o(b,[{key:"render",value:function(){var s="dropdown"===this.props.mode?c:u,o={enabled:this.props.enabled,items:this.state.items,mode:this.props.mode,onSelect:this._onChange,prompt:this.props.prompt,selected:this.state.selectedIndex,testID:this.props.testID,style:[C.pickerAndroid,this.props.style],accessibilityLabel:this.props.accessibilityLabel};return h.createElement(s,t({ref:y},o))}}],[{key:"getDerivedStateFromProps",value:function(t){var s=0,o=h.Children.map(t.children,function(o,n){if(null!==o){o.props.value===t.selectedValue&&(s=n);var p={value:o.props.value,label:o.props.label};return o.props.color&&(p.color=f(o.props.color)),p}});return{selectedIndex:s,items:o}}}]),b})(h.Component),C=v.create({pickerAndroid:{height:50}});m.exports=b},286,[16,34,35,42,45,48,287,288,13,58,75]); +__d(function(g,r,i,a,m,e,d){'use strict';var o=r(d[0]);m.exports=o('AndroidDropdownPicker')},287,[154]); +__d(function(g,r,i,a,m,e,d){'use strict';var o=r(d[0]);m.exports=o('AndroidDialogPicker')},288,[154]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports=r(d[0])},289,[280]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]),c=r(d[4]),u=r(d[5]),l=r(d[6]),f=r(d[7]),h=r(d[8]),p=(function(l){function p(){return t(this,p),o(this,s(p).apply(this,arguments))}return c(p,l),n(p,[{key:"render",value:function(){return u.createElement(h,{style:[y.dummy,this.props.style]},u.createElement(f,{style:y.text},"ProgressViewIOS is not supported on this platform!"))}}]),p})(u.Component),y=l.create({dummy:{width:120,height:20,backgroundColor:'#ffbcbc',borderWidth:1,borderColor:'red',alignItems:'center',justifyContent:'center'},text:{color:'#333333',margin:5,fontSize:10}});m.exports=p},290,[34,35,42,45,48,13,58,178,81]); +__d(function(g,r,i,a,m,e,d){var t,n=r(d[0]),u=r(d[1]),f=(r(d[2]),r(d[3])),l=r(d[4]),o=f.forwardRef(function(t,o){t.emulateUnlessSupported;var p=u(t,["emulateUnlessSupported"]);return f.createElement(l,n({},p,{ref:o}))});o.displayName='SafeAreaView',t=o,m.exports=t},291,[16,19,55,13,81]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]),c=r(d[4]),u=r(d[5]),l=r(d[6]),f=r(d[7]),h=r(d[8]),p=(function(l){function p(){return t(this,p),o(this,s(p).apply(this,arguments))}return c(p,l),n(p,[{key:"render",value:function(){return u.createElement(h,{style:[y.dummy,this.props.style]},u.createElement(f,{style:y.text},"SegmentedControlIOS is not supported on this platform!"))}}]),p})(u.Component),y=l.create({dummy:{width:120,height:50,backgroundColor:'#ffbcbc',borderWidth:1,borderColor:'red',alignItems:'center',justifyContent:'center'},text:{color:'#333333',margin:5,fontSize:10}});m.exports=p},292,[34,35,42,45,48,13,58,178,81]); +__d(function(g,r,i,a,m,e,d){'use strict';var n,t=r(d[0]),l=r(d[1]),o=(r(d[2]),r(d[3])),u=r(d[4]),s=(r(d[5]),r(d[6])),v=u.forwardRef(function(v,f){var c=s.compose(n.slider,v.style),p=v.onValueChange,C=v.onSlidingComplete,S=l(v,["onValueChange","onSlidingComplete"]),h=p?function(n){null!=n.nativeEvent.fromUser&&n.nativeEvent.fromUser&&p(n.nativeEvent.value)}:null,E=h,V=C?function(n){C(n.nativeEvent.value)}:null;return u.createElement(o,t({},S,{ref:f,style:c,onChange:E,onSlidingComplete:V,onValueChange:h,enabled:!v.disabled,onStartShouldSetResponder:function(){return!0},onResponderTerminationRequest:function(){return!1}}))});v.defaultProps={disabled:!1,value:0,minimumValue:0,maximumValue:1,step:0},n=s.create({slider:{}}),m.exports=v},293,[16,19,55,294,13,83,58]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);m.exports=t('RCTSlider')},294,[154]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]),o=r(d[1]),t=r(d[2]),l=r(d[3]),u=r(d[4]),s=r(d[5]),h=r(d[6]),c=r(d[7]),C=(r(d[8]),r(d[9])),p=(r(d[10]),(function(p){function b(){var n,o;t(this,b);for(var l=arguments.length,h=new Array(l),c=0;c=1&&(o=_.createElement(T,{style:n.style,allowFontScaling:n.allowFontScaling,maxFontSizeMultiplier:n.maxFontSizeMultiplier},o)),n.inputView&&(o=[o,n.inputView]),n.style.unshift(A.multilineInput),t=_.createElement(void 0,c({ref:this._setNativeRef},n,{children:o,onFocus:this._onFocus,onBlur:this._onBlur,onChange:this._onChange,onContentSizeChange:this.props.onContentSizeChange,onSelectionChange:this._onSelectionChange,onTextInput:this._onTextInput,onSelectionChangeShouldSetResponder:w,text:this._getText(),dataDetectorTypes:this.props.dataDetectorTypes,onScroll:this._onScroll}))}else t=_.createElement(void 0,c({ref:this._setNativeRef},n,{onFocus:this._onFocus,onBlur:this._onBlur,onChange:this._onChange,onSelectionChange:this._onSelectionChange,onSelectionChangeShouldSetResponder:w,text:this._getText()}));return _.createElement(R,{onLayout:n.onLayout,onPress:this._onPress,rejectResponderTermination:!0,accessible:n.accessible,accessibilityLabel:n.accessibilityLabel,accessibilityRole:n.accessibilityRole,accessibilityStates:n.accessibilityStates,nativeID:this.props.nativeID,testID:n.testID},t)},_renderIOS:function(){var t=c({},this.props);t.style=[this.props.style],t.selection&&null==t.selection.end&&(t.selection={start:t.selection.start,end:t.selection.start});var n=void t.multiline;t.multiline&&t.style.unshift(A.multilineInput);var o=_.createElement(n,c({ref:this._setNativeRef},t,{onFocus:this._onFocus,onBlur:this._onBlur,onChange:this._onChange,onContentSizeChange:this.props.onContentSizeChange,onSelectionChange:this._onSelectionChange,onTextInput:this._onTextInput,onSelectionChangeShouldSetResponder:w,text:this._getText(),dataDetectorTypes:this.props.dataDetectorTypes,onScroll:this._onScroll}));return _.createElement(R,{onLayout:t.onLayout,onPress:this._onPress,rejectResponderTermination:t.rejectResponderTermination,accessible:t.accessible,accessibilityLabel:t.accessibilityLabel,accessibilityRole:t.accessibilityRole,accessibilityStates:t.accessibilityStates,nativeID:this.props.nativeID,testID:t.testID},o)},_renderAndroid:function(){var t=c({},this.props);t.style=[this.props.style],t.autoCapitalize=O.getViewManagerConfig('AndroidTextInput').Constants.AutoCapitalizationType[t.autoCapitalize||'sentences'];var n=this.props.children,o=0;_.Children.forEach(n,function(){return++o}),P(!(this.props.value&&o),'Cannot specify both value and children.'),o>1&&(n=_.createElement(T,null,n)),t.selection&&null==t.selection.end&&(t.selection={start:t.selection.start,end:t.selection.start});var s=_.createElement(h,c({ref:this._setNativeRef},t,{mostRecentEventCount:0,onFocus:this._onFocus,onBlur:this._onBlur,onChange:this._onChange,onSelectionChange:this._onSelectionChange,onTextInput:this._onTextInput,text:this._getText(),children:n,disableFullscreenUI:this.props.disableFullscreenUI,textBreakStrategy:this.props.textBreakStrategy,onScroll:this._onScroll}));return _.createElement(R,{onLayout:t.onLayout,onPress:this._onPress,accessible:this.props.accessible,accessibilityLabel:this.props.accessibilityLabel,accessibilityRole:this.props.accessibilityRole,accessibilityStates:this.props.accessibilityStates,nativeID:this.props.nativeID,testID:this.props.testID},s)},_onFocus:function(t){this.props.onFocus&&this.props.onFocus(t),this.props.selectionState&&this.props.selectionState.focus()},_onPress:function(t){(this.props.editable||void 0===this.props.editable)&&this.focus()},_onChange:function(t){this._inputRef&&this._inputRef.setNativeProps&&C.setNativeProps(this._inputRef,{mostRecentEventCount:t.nativeEvent.eventCount});var n=t.nativeEvent.text;this.props.onChange&&this.props.onChange(t),this.props.onChangeText&&this.props.onChangeText(n),this._inputRef&&(this._lastNativeText=n,this.forceUpdate())},_onSelectionChange:function(t){this.props.onSelectionChange&&this.props.onSelectionChange(t),this._inputRef&&(this._lastNativeSelection=t.nativeEvent.selection,(this.props.selection||this.props.selectionState)&&this.forceUpdate())},componentDidUpdate:function(){var t={};this._lastNativeText!==this.props.value&&'string'==typeof this.props.value&&(t.text=this.props.value);var n=this.props.selection;this._lastNativeSelection&&n&&(this._lastNativeSelection.start!==n.start||this._lastNativeSelection.end!==n.end)&&(t.selection=this.props.selection),Object.keys(t).length>0&&this._inputRef&&this._inputRef.setNativeProps&&C.setNativeProps(this._inputRef,t),this.props.selectionState&&n&&this.props.selectionState.update(n.start,n.end)},_onBlur:function(t){this.blur(),this.props.onBlur&&this.props.onBlur(t),this.props.selectionState&&this.props.selectionState.blur()},_onTextInput:function(t){this.props.onTextInput&&this.props.onTextInput(t)},_onScroll:function(t){this.props.onScroll&&this.props.onScroll(t)}}),j=((function(c){function u(){return t(this,u),o(this,s(u).apply(this,arguments))}l(u,c),n(u,[{key:"clear",value:function(){}},{key:"isFocused",value:function(){}}])})(C.NativeComponent),L),A=x.create({multilineInput:{paddingTop:5}});m.exports=j},297,[34,35,42,45,48,16,18,64,254,298,264,55,67,13,83,58,178,183,151,193,54,194,26,154,28]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),s=r(d[1]),f=r(d[2]),u=(function(){function f(s,u){t(this,f),this._anchorOffset=s,this._focusOffset=u,this._hasFocus=!1}return s(f,[{key:"update",value:function(t,s){this._anchorOffset===t&&this._focusOffset===s||(this._anchorOffset=t,this._focusOffset=s,this.emit('update'))}},{key:"constrainLength",value:function(t){this.update(Math.min(this._anchorOffset,t),Math.min(this._focusOffset,t))}},{key:"focus",value:function(){this._hasFocus||(this._hasFocus=!0,this.emit('focus'))}},{key:"blur",value:function(){this._hasFocus&&(this._hasFocus=!1,this.emit('blur'))}},{key:"hasFocus",value:function(){return this._hasFocus}},{key:"isCollapsed",value:function(){return this._anchorOffset===this._focusOffset}},{key:"isBackward",value:function(){return this._anchorOffset>this._focusOffset}},{key:"getAnchorOffset",value:function(){return this._hasFocus?this._anchorOffset:null}},{key:"getFocusOffset",value:function(){return this._hasFocus?this._focusOffset:null}},{key:"getStartOffset",value:function(){return this._hasFocus?Math.min(this._anchorOffset,this._focusOffset):null}},{key:"getEndOffset",value:function(){return this._hasFocus?Math.max(this._anchorOffset,this._focusOffset):null}},{key:"overlaps",value:function(t,s){return this.hasFocus()&&this.getStartOffset()<=s&&t<=this.getEndOffset()}}]),f})();f(u,{blur:!0,focus:!0,update:!0}),m.exports=u},298,[34,35,299]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),s=r(d[2]),_=r(d[3]),o=r(d[4]),v=r(d[5])({__types:!0});var E={emit:function(t,n,s,_,o,v,E){return this.__getEventEmitter().emit(t,n,s,_,o,v,E)},emitAndHold:function(t,n,s,_,o,v,E){return this.__getEventEmitter().emitAndHold(t,n,s,_,o,v,E)},addListener:function(t,n,s){return this.__getEventEmitter().addListener(t,n,s)},once:function(t,n,s){return this.__getEventEmitter().once(t,n,s)},addRetroactiveListener:function(t,n,s){return this.__getEventEmitter().addRetroactiveListener(t,n,s)},addListenerMap:function(t,n){return this.__getEventEmitter().addListenerMap(t,n)},addRetroactiveListenerMap:function(t,n){return this.__getEventEmitter().addListenerMap(t,n)},removeAllListeners:function(){this.__getEventEmitter().removeAllListeners()},removeCurrentListener:function(){this.__getEventEmitter().removeCurrentListener()},releaseHeldEventType:function(t){this.__getEventEmitter().releaseHeldEventType(t)},__getEventEmitter:function(){if(!this.__eventEmitter){var t=new n,o=new _;this.__eventEmitter=new s(t,o)}return this.__eventEmitter}};m.exports=function(n,s){o(s,'Must supply set of valid event types');var _=n.prototype||n;o(!_.__eventEmitter,'An active emitter is already mixed in');var u=n.constructor;u&&o(u===Object||u===Function,'Mix EventEmitter into a class, not an instance'),_.hasOwnProperty(v)?t(_.__types,s):_.__types?_.__types=t({},_.__types,s):_.__types=s,t(_,E)}},299,[16,50,300,301,26,302]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),s=(function(){function s(n,l){t(this,s),this._emitter=n,this._eventHolder=l,this._currentEventToken=null,this._emittingHeldEvents=!1}return n(s,[{key:"addListener",value:function(t,n,s){return this._emitter.addListener(t,n,s)}},{key:"once",value:function(t,n,s){return this._emitter.once(t,n,s)}},{key:"addRetroactiveListener",value:function(t,n,s){var l=this._emitter.addListener(t,n,s);return this._emittingHeldEvents=!0,this._eventHolder.emitToListener(t,n,s),this._emittingHeldEvents=!1,l}},{key:"removeAllListeners",value:function(t){this._emitter.removeAllListeners(t)}},{key:"removeCurrentListener",value:function(){this._emitter.removeCurrentListener()}},{key:"listeners",value:function(t){return this._emitter.listeners(t)}},{key:"emit",value:function(t){for(var n,s=arguments.length,l=new Array(s>1?s-1:0),o=1;o1?l-1:0),u=1;u1?v-1:0),u=1;u. Was '+t.type.displayName),f.createElement(t.type,n)})},n._onPageScroll=function(t){n.props.onPageScroll&&n.props.onPageScroll(t),'on-drag'===n.props.keyboardDismissMode&&w()},n._onPageScrollStateChanged=function(t){n.props.onPageScrollStateChanged&&n.props.onPageScrollStateChanged(t)},n._onPageSelected=function(t){n.props.onPageSelected&&n.props.onPageSelected(t)},n.setPage=function(t){S.dispatchViewManagerCommand(y.findNodeHandle(p(n)),S.getViewManagerConfig('AndroidViewPager').Commands.setPage,[t])},n.setPageWithoutAnimation=function(t){S.dispatchViewManagerCommand(y.findNodeHandle(p(n)),S.getViewManagerConfig('AndroidViewPager').Commands.setPageWithoutAnimation,[t])},n}return u(h,n),l(h,[{key:"componentDidMount",value:function(){null!=this.props.initialPage&&this.setPageWithoutAnimation(this.props.initialPage)}},{key:"render",value:function(){return f.createElement(b,t({},this.props,{ref:O,style:this.props.style,onPageScroll:this._onPageScroll,onPageScrollStateChanged:this._onPageScrollStateChanged,onPageSelected:this._onPageSelected,children:this._childrenWithOverridenStyle()}))}}]),h})(f.Component);m.exports=v},306,[16,18,34,35,42,45,44,48,13,83,54,244,307]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);m.exports=t('AndroidViewPager')},307,[154]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);function o(t,o){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),o&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n}function n(n){for(var c=1;c=n.length)break;f=n[c++]}else{if((c=n.next()).done)break;f=c.value}var x=t(f,2),_=x[0],b=x[1];o[_]=b()}var y={},S=s._fileSources,v=Array.isArray(S),p=0;for(S=v?S:S["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var k;if(v){if(p>=S.length)break;k=S[p++]}else{if((p=S.next()).done)break;k=p.value}var D=t(k,2),E=D[0],h=D[1];y[E]=h()}l('BugReporting extraData:',o);var B=r(d[6]).BugReporting;B&&B.setExtraData&&B.setExtraData(o,y);var R=r(d[6]).RedBox;return R&&R.setExtraData&&R.setExtraData(o,'From BugReporting.js'),{extras:o,files:y}}}]),s})();s._extraSources=new Map,s._fileSources=new Map,s._subscription=null,s._redboxSubscription=null,m.exports=s},310,[5,34,35,41,142,311,31]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports=function(){try{return"React tree dumps have been temporarily disabled while React is upgraded to Fiber."}catch(t){return'Failed to dump react tree: '+t}}},311,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=[],t={name:'default'},c={setActiveScene:function(c){t=c,n.forEach(function(n){return n(t)})},getActiveScene:function(){return t},addActiveSceneChangedListener:function(t){return n.push(t),{remove:function(){n=n.filter(function(n){return t!==n})}}}};m.exports=c},312,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=t(r(d[1])),l=t(r(d[2])),o=t(r(d[3])),p=r(d[4]),u=r(d[5]),c=r(d[6]),s=r(d[7]);r(d[8]),m.exports=function(t,f,v,_,E,T,y){var A;s(v,'Expect to have a valid rootTag, instead got ',v);var C=u.createElement(o.default.Provider,{value:null!=(A=y)?A:l.default},u.createElement(p,{rootTag:v,WrapperComponent:_},u.createElement(t,(0,n.default)({},f,{rootTag:v})),!0===E&&!0===T?u.createElement(c,null):null));if(null!=t.prototype&&!0===t.prototype.unstable_isAsyncReactComponent){var R=u.unstable_ConcurrentMode;C=u.createElement(R,null,C)}l.default.startTimespan('renderApplication_React_render'),E?r(d[9]).render(C,v):r(d[10]).render(C,v),l.default.stopTimespan('renderApplication_React_render')}},313,[2,16,140,314,282,13,315,26,316,317,83]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),c=r(d[1])(r(d[2])),n=t(r(d[3])),o=c.createContext(n.default);m.exports=o},314,[2,146,13,140]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),c=r(d[3]);var f=n.create({container:{alignItems:'center',justifyContent:'center',backgroundColor:'rgba(0,0,0, 0.25)',position:'absolute',top:0,right:0,padding:2},text:{fontSize:6,color:'#ffffff'}});m.exports=function(){return t.createElement(c,{style:f.container},t.createElement(o,{style:f.text},"FABRIC"))}},315,[13,58,178,81]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]).DeviceEventManager,t=[];r(d[1]).addListener('hardwareBackPress',function(){for(var n=t.length-1;n>=0;n--)if(t[n]())return;s.exitApp()});var s={exitApp:function(){n.invokeDefaultBackPressHandler()},addEventListener:function(n,f){return-1===t.indexOf(f)&&t.push(f),{remove:function(){return s.removeEventListener(n,f)}}},removeEventListener:function(n,s){-1!==t.indexOf(s)&&t.splice(t.indexOf(s),1)}};m.exports=s},316,[31,41]); +__d(function(g,r,i,a,m,e,d){'use strict';var t,c=r(d[0]);t=r(d[1]),c.registerCallableModule('ReactFabric',t),m.exports=t},317,[32,318]); +__d(function(e,t,n,r,i,a,l){"use strict";var o=t(l[0]);t(l[1]);var u=t(l[2]),c=t(l[3]),s=t(l[4]),f=t(l[5]),d=t(l[6]),p=t(l[7]),h=t(l[8]),m=t(l[9]),g=t(l[10]);function y(e){return(e=Error(e)).name="Invariant Violation",e}var v=null,b={};function T(){if(v)for(var e in b){var t=b[e],n=v.indexOf(e);if(!(-1this.eventPool.length&&this.eventPool.push(e)}function ne(e){e.eventPool=[],e.getPooled=ee,e.release=te}o(Z.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=J)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=J)},persist:function(){this.isPersistent=J},isPersistent:K,destructor:function(){var e,t=this.constructor.Interface;for(e in t)this[e]=null;this.nativeEvent=this._targetInst=this.dispatchConfig=null,this.isPropagationStopped=this.isDefaultPrevented=K,this._dispatchInstances=this._dispatchListeners=null}}),Z.Interface={type:null,target:null,currentTarget:function(){return null},eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null},Z.extend=function(e){function t(){}function n(){return r.apply(this,arguments)}var r=this;t.prototype=r.prototype;var i=new t;return o(i,n.prototype),n.prototype=i,n.prototype.constructor=n,n.Interface=o({},r.Interface,e),n.extend=r.extend,ne(n),n},ne(Z);var re=Z.extend({touchHistory:function(){return null}});function ie(e){return"topTouchStart"===e}function ae(e){return"topTouchMove"===e}var le=["topTouchStart"],oe=["topTouchMove"],ue=["topTouchCancel","topTouchEnd"],ce=[],se={touchBank:ce,numberActiveTouches:0,indexOfSingleActiveTouch:-1,mostRecentTimeStamp:0};function fe(e){return e.timeStamp||e.timestamp}function de(e){if(null==(e=e.identifier))throw y("Touch object is missing identifier.");return e}function pe(e){var t=de(e),n=ce[t];n?(n.touchActive=!0,n.startPageX=e.pageX,n.startPageY=e.pageY,n.startTimeStamp=fe(e),n.currentPageX=e.pageX,n.currentPageY=e.pageY,n.currentTimeStamp=fe(e),n.previousPageX=e.pageX,n.previousPageY=e.pageY,n.previousTimeStamp=fe(e)):(n={touchActive:!0,startPageX:e.pageX,startPageY:e.pageY,startTimeStamp:fe(e),currentPageX:e.pageX,currentPageY:e.pageY,currentTimeStamp:fe(e),previousPageX:e.pageX,previousPageY:e.pageY,previousTimeStamp:fe(e)},ce[t]=n),se.mostRecentTimeStamp=fe(e)}function he(e){var t=ce[de(e)];t?(t.touchActive=!0,t.previousPageX=t.currentPageX,t.previousPageY=t.currentPageY,t.previousTimeStamp=t.currentTimeStamp,t.currentPageX=e.pageX,t.currentPageY=e.pageY,t.currentTimeStamp=fe(e),se.mostRecentTimeStamp=fe(e)):console.error("Cannot record touch move without a touch start.\nTouch Move: %s\n","Touch Bank: %s",ge(e),ye())}function me(e){var t=ce[de(e)];t?(t.touchActive=!1,t.previousPageX=t.currentPageX,t.previousPageY=t.currentPageY,t.previousTimeStamp=t.currentTimeStamp,t.currentPageX=e.pageX,t.currentPageY=e.pageY,t.currentTimeStamp=fe(e),se.mostRecentTimeStamp=fe(e)):console.error("Cannot record touch end without a touch start.\nTouch End: %s\n","Touch Bank: %s",ge(e),ye())}function ge(e){return JSON.stringify({identifier:e.identifier,pageX:e.pageX,pageY:e.pageY,timestamp:fe(e)})}function ye(){var e=JSON.stringify(ce.slice(0,20));return 20 component.");return n=ft,ft+=2,{node:h.createNode(n,"RCTRawText",t,{text:e},r)}}var ht=setTimeout,mt=clearTimeout;function gt(e){var t=e.node,n=nt(null,qe,{style:{display:"none"}},e.canonical.viewConfig.validAttributes);return{node:h.cloneNodeWithNewProps(t,n),canonical:e.canonical}}var yt=/^(.*)[\\\/]/;function vt(e){var t="";do{e:switch(e.tag){case 3:case 4:case 6:case 7:case 10:case 9:var n="";break e;default:var r=e._debugOwner,i=e._debugSource,a=Le(e.type);n=null,r&&(n=Le(r.type)),r=a,a="",i?a=" (at "+i.fileName.replace(yt,"")+":"+i.lineNumber+")":n&&(a=" (created by "+n+")"),n="\n in "+(r||"Unknown")+a}t+=n,e=e.return}while(e);return t}new Set;var bt=[],Tt=-1;function St(e){0>Tt||(e.current=bt[Tt],bt[Tt]=null,Tt--)}function xt(e,t){bt[++Tt]=e.current,e.current=t}var wt={},kt={current:wt},Et={current:!1},Pt=wt;function _t(e,t){var n=e.type.contextTypes;if(!n)return wt;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i,a={};for(i in n)a[i]=t[i];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=a),a}function Ct(e){return null!==(e=e.childContextTypes)&&void 0!==e}function Rt(e){St(Et),St(kt)}function Nt(e){St(Et),St(kt)}function zt(e,t,n){if(kt.current!==wt)throw y("Unexpected context found on stack. This error is likely caused by a bug in React. Please file an issue.");xt(kt,t),xt(Et,n)}function Ut(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var i in r=r.getChildContext())if(!(i in e))throw y((Le(t)||"Unknown")+'.getChildContext(): key "'+i+'" is not defined in childContextTypes.');return o({},n,r)}function It(e){var t=e.stateNode;return t=t&&t.__reactInternalMemoizedMergedChildContext||wt,Pt=kt.current,xt(kt,t),xt(Et,Et.current),!0}function At(e,t,n){var r=e.stateNode;if(!r)throw y("Expected to have an instance by this point. This error is likely caused by a bug in React. Please file an issue.");n?(t=Ut(e,t,Pt),r.__reactInternalMemoizedMergedChildContext=t,St(Et),St(kt),xt(kt,t)):St(Et),xt(Et,n)}var Mt=null,Dt=null;function Ft(e){return function(t){try{return e(t)}catch(e){}}}function jt(e){if("undefined"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)return!1;var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)return!0;try{var n=t.inject(e);Mt=Ft(function(e){return t.onCommitFiberRoot(n,e)}),Dt=Ft(function(e){return t.onCommitFiberUnmount(n,e)})}catch(e){}return!0}var Wt=m.unstable_runWithPriority,Ht=m.unstable_scheduleCallback,Ot=m.unstable_cancelCallback,Bt=m.unstable_now,Lt=m.unstable_getCurrentPriorityLevel,Qt=m.unstable_ImmediatePriority,Yt=m.unstable_UserBlockingPriority,Vt=m.unstable_NormalPriority,Xt=m.unstable_LowPriority,$t=m.unstable_IdlePriority,qt={},Gt=m.unstable_shouldYield,Jt=null,Kt=null,Zt=!1,en=Bt(),tn=1e4>en?Bt:function(){return Bt()-en};function nn(){switch(Lt()){case Qt:return 99;case Yt:return 98;case Vt:return 97;case Xt:return 96;case $t:return 95;default:throw y("Unknown priority level.")}}function rn(e){switch(e){case 99:return Qt;case 98:return Yt;case 97:return Vt;case 96:return Xt;case 95:return $t;default:throw y("Unknown priority level.")}}function an(e,t,n){return 99===e?(null===Jt?(Jt=[t],Kt=Ht(Qt,on)):Jt.push(t),qt):(e=rn(e),Ht(e,t,n))}function ln(){null!==Kt&&Ot(Kt),on()}function on(){if(!Zt&&null!==Jt){Zt=!0;var e=0;try{for(;e=(e=10*(1073741822-t)-10*(1073741822-e))?99:250>=e?98:5250>=e?97:95}function cn(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.contextDependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.effectTag=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childExpirationTime=this.expirationTime=0,this.alternate=null}function sn(e,t,n,r){return new cn(e,t,n,r)}function fn(e){return!(!(e=e.prototype)||!e.isReactComponent)}function dn(e){if("function"==typeof e)return fn(e)?1:0;if(void 0!==e&&null!==e){if((e=e.$$typeof)===Fe)return 11;if(e===We)return 14}return 2}function pn(e,t){var n=e.alternate;return null===n?((n=sn(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.effectTag=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childExpirationTime=e.childExpirationTime,n.expirationTime=e.expirationTime,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,n.contextDependencies=e.contextDependencies,n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function hn(e,t,n,r,i,a){var l=2;if(r=e,"function"==typeof e)fn(e)&&(l=1);else if("string"==typeof e)l=5;else e:switch(e){case ze:return mn(n.children,i,a,t);case De:return gn(n,3|i,a,t);case Ue:return gn(n,2|i,a,t);case Ie:return(e=sn(12,n,t,4|i)).elementType=Ie,e.type=Ie,e.expirationTime=a,e;case je:return(e=sn(13,n,t,i)).elementType=je,e.type=je,e.expirationTime=a,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case Ae:l=10;break e;case Me:l=9;break e;case Fe:l=11;break e;case We:l=14;break e;case He:l=16,r=null;break e}throw y("Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: "+(null==e?e:typeof e)+".")}return(t=sn(l,n,t,i)).elementType=e,t.type=r,t.expirationTime=a,t}function mn(e,t,n,r){return(e=sn(7,e,r,t)).expirationTime=n,e}function gn(e,t,n,r){return e=sn(8,e,r,t),t=0==(1&t)?Ue:De,e.elementType=t,e.type=t,e.expirationTime=n,e}function yn(e,t,n){return(e=sn(6,e,null,t)).expirationTime=n,e}function vn(e,t,n){return(t=sn(4,null!==e.children?e.children:[],e.key,t)).expirationTime=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function bn(e,t){this.current=null,this.containerInfo=e,this.pingCache=this.pendingChildren=null,this.pendingCommitExpirationTime=0,this.finishedWork=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=t,this.callbackNode=this.firstBatch=null,this.pingTime=this.lastPendingTime=this.firstPendingTime=this.callbackExpirationTime=0}function Tn(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t}var Sn=Object.prototype.hasOwnProperty;function xn(e,t){if(Tn(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r=t&&(ai=!0),e.contextDependencies=null}function In(e,t){if(Cn!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(Cn=e,t=1073741823),t={context:e,observedBits:t,next:null},null===_n){if(null===Pn)throw y("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().");_n=t,Pn.contextDependencies={first:t,expirationTime:0}}else _n=_n.next=t;return e._currentValue2}var An=!1;function Mn(e){return{baseState:e,firstUpdate:null,lastUpdate:null,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function Dn(e){return{baseState:e.baseState,firstUpdate:e.firstUpdate,lastUpdate:e.lastUpdate,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function Fn(e){return{expirationTime:e,tag:0,payload:null,callback:null,next:null,nextEffect:null}}function jn(e,t){null===e.lastUpdate?e.firstUpdate=e.lastUpdate=t:(e.lastUpdate.next=t,e.lastUpdate=t)}function Wn(e,t){var n=e.alternate;if(null===n){var r=e.updateQueue,i=null;null===r&&(r=e.updateQueue=Mn(e.memoizedState))}else r=e.updateQueue,i=n.updateQueue,null===r?null===i?(r=e.updateQueue=Mn(e.memoizedState),i=n.updateQueue=Mn(n.memoizedState)):r=e.updateQueue=Dn(i):null===i&&(i=n.updateQueue=Dn(r));null===i||r===i?jn(r,t):null===r.lastUpdate||null===i.lastUpdate?(jn(r,t),jn(i,t)):(jn(r,t),i.lastUpdate=t)}function Hn(e,t){var n=e.updateQueue;null===(n=null===n?e.updateQueue=Mn(e.memoizedState):On(e,n)).lastCapturedUpdate?n.firstCapturedUpdate=n.lastCapturedUpdate=t:(n.lastCapturedUpdate.next=t,n.lastCapturedUpdate=t)}function On(e,t){var n=e.alternate;return null!==n&&t===n.updateQueue&&(t=e.updateQueue=Dn(t)),t}function Bn(e,t,n,r,i,a){switch(n.tag){case 1:return"function"==typeof(e=n.payload)?e.call(a,r,i):e;case 3:e.effectTag=-2049&e.effectTag|64;case 0:if(null===(i="function"==typeof(e=n.payload)?e.call(a,r,i):e)||void 0===i)break;return o({},r,i);case 2:An=!0}return r}function Ln(e,t,n,r,i){An=!1;for(var a=(t=On(e,t)).baseState,l=null,o=0,u=t.firstUpdate,c=a;null!==u;){var s=u.expirationTime;sm?(g=h,h=null):g=h.sibling;var y=d(i,h,o[m],u);if(null===y){null===h&&(h=g);break}e&&h&&null===y.alternate&&t(i,h),l=a(y,l,m),null===s?c=y:s.sibling=y,s=y,h=g}if(m===o.length)return n(i,h),c;if(null===h){for(;mm?(g=h,h=null):g=h.sibling;var b=d(i,h,v.value,u);if(null===b){null===h&&(h=g);break}e&&h&&null===b.alternate&&t(i,h),l=a(b,l,m),null===s?c=b:s.sibling=b,s=b,h=g}if(v.done)return n(i,h),c;if(null===h){for(;!v.done;m++,v=o.next())null!==(v=f(i,v.value,u))&&(l=a(v,l,m),null===s?c=v:s.sibling=v,s=v);return c}for(h=r(i,h);!v.done;m++,v=o.next())null!==(v=p(h,i,m,v.value,u))&&(e&&null!==v.alternate&&h.delete(null===v.key?m:v.key),l=a(v,l,m),null===s?c=v:s.sibling=v,s=v);return e&&h.forEach(function(e){return t(i,e)}),c}return function(e,r,a,o){var u="object"==typeof a&&null!==a&&a.type===ze&&null===a.key;u&&(a=a.props.children);var c="object"==typeof a&&null!==a;if(c)switch(a.$$typeof){case Re:e:{for(c=a.key,u=r;null!==u;){if(u.key===c){if(7===u.tag?a.type===ze:u.elementType===a.type){n(e,u.sibling),(r=i(u,a.type===ze?a.props.children:a.props)).ref=er(e,u,a),r.return=e,e=r;break e}n(e,u);break}t(e,u),u=u.sibling}a.type===ze?((r=mn(a.props.children,e.mode,o,a.key)).return=e,e=r):((o=hn(a.type,a.key,a.props,null,e.mode,o)).ref=er(e,r,a),o.return=e,e=o)}return l(e);case Ne:e:{for(u=a.key;null!==r;){if(r.key===u){if(4===r.tag&&r.stateNode.containerInfo===a.containerInfo&&r.stateNode.implementation===a.implementation){n(e,r.sibling),(r=i(r,a.children||[])).return=e,e=r;break e}n(e,r);break}t(e,r),r=r.sibling}(r=vn(a,e.mode,o)).return=e,e=r}return l(e)}if("string"==typeof a||"number"==typeof a)return a=""+a,null!==r&&6===r.tag?(n(e,r.sibling),(r=i(r,a)).return=e,e=r):(n(e,r),(r=yn(a,e.mode,o)).return=e,e=r),l(e);if(Zn(a))return h(e,r,a,o);if(Be(a))return m(e,r,a,o);if(c&&tr(e,a),void 0===a&&!u)switch(e.tag){case 1:case 0:throw y(((e=e.type).displayName||e.name||"Component")+"(...): Nothing was returned from render. This usually means a return statement is missing. Or, to render nothing, return null.")}return n(e,r)}}var rr=nr(!0),ir=nr(!1),ar={},lr={current:ar},or={current:ar},ur={current:ar};function cr(e){if(e===ar)throw y("Expected host context to exist. This error is likely caused by a bug in React. Please file an issue.");return e}function sr(e,t){xt(ur,t),xt(or,e),xt(lr,ar),St(lr),xt(lr,{isInAParentText:!1})}function fr(e){St(lr),St(or),St(ur)}function dr(e){cr(ur.current);var t=cr(lr.current),n=e.type;n="AndroidTextInput"===n||"RCTMultilineTextInputView"===n||"RCTSinglelineTextInputView"===n||"RCTText"===n||"RCTVirtualText"===n,t!==(n=t.isInAParentText!==n?{isInAParentText:n}:t)&&(xt(or,e),xt(lr,n))}function pr(e){or.current===e&&(St(lr),St(or))}var hr=0,mr=2,gr=4,yr=8,vr=16,br=32,Tr=64,Sr=128,xr=_e.ReactCurrentDispatcher,wr=0,kr=null,Er=null,Pr=null,_r=null,Cr=null,Rr=null,Nr=0,zr=null,Ur=0,Ir=!1,Ar=null,Mr=0;function Dr(){throw y("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem.")}function Fr(e,t){if(null===t)return!1;for(var n=0;nNr&&(Nr=s)):(sMr))throw y("Too many re-renders. React limits the number of renders to prevent an infinite loop.");var r=e.alternate;if(e===kr||null!==r&&r===kr)if(Ir=!0,e={expirationTime:wr,action:n,eagerReducer:null,eagerState:null,next:null},null===Ar&&(Ar=new Map),void 0===(n=Ar.get(t)))Ar.set(t,e);else{for(t=n;null!==t.next;)t=t.next;t.next=e}else{Ta();var i=la(),a={expirationTime:i=oa(i,e),action:n,eagerReducer:null,eagerState:null,next:null},l=t.last;if(null===l)a.next=a;else{var o=l.next;null!==o&&(a.next=o),l.next=a}if(t.last=a,0===e.expirationTime&&(null===r||0===r.expirationTime)&&null!==(r=t.lastRenderedReducer))try{var u=t.lastRenderedState,c=r(u,n);if(a.eagerReducer=r,a.eagerState=c,Tn(c,u))return}catch(e){}ua(e,i)}}var Gr={readContext:In,useCallback:Dr,useContext:Dr,useEffect:Dr,useImperativeHandle:Dr,useLayoutEffect:Dr,useMemo:Dr,useReducer:Dr,useRef:Dr,useState:Dr,useDebugValue:Dr},Jr={readContext:In,useCallback:function(e,t){return Hr().memoizedState=[e,void 0===t?null:t],e},useContext:In,useEffect:function(e,t){return Yr(516,192,e,t)},useImperativeHandle:function(e,t,n){return n=null!==n&&void 0!==n?n.concat([e]):null,Yr(4,36,Xr.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Yr(4,36,e,t)},useMemo:function(e,t){var n=Hr();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Hr();return t=void 0!==n?n(t):t,r.memoizedState=r.baseState=t,e=(e=r.queue={last:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=qr.bind(null,kr,e),[r.memoizedState,e]},useRef:function(e){return e={current:e},Hr().memoizedState=e},useState:function(e){var t=Hr();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={last:null,dispatch:null,lastRenderedReducer:Br,lastRenderedState:e}).dispatch=qr.bind(null,kr,e),[t.memoizedState,e]},useDebugValue:$r},Kr={readContext:In,useCallback:function(e,t){var n=Or();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Fr(t,r[1])?r[0]:(n.memoizedState=[e,t],e)},useContext:In,useEffect:function(e,t){return Vr(516,192,e,t)},useImperativeHandle:function(e,t,n){return n=null!==n&&void 0!==n?n.concat([e]):null,Vr(4,36,Xr.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Vr(4,36,e,t)},useMemo:function(e,t){var n=Or();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Fr(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)},useReducer:Lr,useRef:function(){return Or().memoizedState},useState:function(e){return Lr(Br)},useDebugValue:$r},Zr=null,ei=null,ti=!1;function ni(e,t){switch(e.tag){case 5:return null!==(t=st(e.type,e.pendingProps))&&(e.stateNode=t,!0);case 6:return null!==(t=st(e.pendingProps))&&(e.stateNode=t,!0);case 13:default:return!1}}function ri(e){if(ti){var t=ei;if(t){var n=t;if(!ni(e,t)){if(!(t=st())||!ni(e,t))return e.effectTag|=2,ti=!1,void(Zr=e);var r=Zr,i=sn(5,null,null,0);i.elementType="DELETED",i.type="DELETED",i.stateNode=n,i.return=r,i.effectTag=8,null!==r.lastEffect?(r.lastEffect.nextEffect=i,r.lastEffect=i):r.firstEffect=r.lastEffect=i}Zr=e,ei=st()}else e.effectTag|=2,ti=!1,Zr=e}}var ii=_e.ReactCurrentOwner,ai=!1;function li(e,t,n,r){t.child=null===e?ir(t,null,n,r):rr(t,e.child,n,r)}function oi(e,t,n,r,i){n=n.render;var a=t.ref;return Un(t,i),r=jr(e,t,n,r,a,i),null===e||ai?(t.effectTag|=1,li(e,t,r,i),t.child):(t.updateQueue=e.updateQueue,t.effectTag&=-517,e.expirationTime<=i&&(e.expirationTime=0),gi(e,t,i))}function ui(e,t,n,r,i,a){if(null===e){var l=n.type;return"function"!=typeof l||fn(l)||void 0!==l.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=hn(n.type,null,r,null,t.mode,a)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=l,ci(e,t,l,r,i,a))}return l=e.child,it)&&na.set(e,t)}sa(e,n,t)}}function ca(e,t){e.expirationTimei.firstPendingTime&&(i.firstPendingTime=t),0===(e=i.lastPendingTime)||t=t)&&(e.finishedWork=e.current.alternate,e.pendingCommitExpirationTime=t,an(97,function(){return n._onComplete(),null}),!0)}function pa(){if(null!==na){var e=na;na=null,e.forEach(function(e,t){an(99,ma.bind(null,t,e))}),ln()}}function ha(e,t){e.pendingCommitExpirationTime=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,mt(n)),null!==Vi)for(n=Vi.return;null!==n;){var r=n;switch(r.tag){case 1:var i=r.type.childContextTypes;null!==i&&void 0!==i&&Rt();break;case 3:fr(),Nt();break;case 5:pr(r);break;case 4:fr();break;case 10:zn(r)}n=n.return}Yi=e,Vi=pn(e.current,null),Xi=t,$i=Hi,qi=1073741823}function ma(e,t,n){if(Qi===ji||Qi===Wi)throw y("Should not already be working.");if(e.firstPendingTime component higher in the tree to provide a loading indicator or placeholder to display."+vt(u))}$i!==Hi&&$i!==Bi||($i=Oi),c=xi(c,u),u=o;do{switch(u.tag){case 3:u.effectTag|=2048,u.expirationTime=s,Hn(u,s=zi(u,c,s));break e;case 1:if(f=c,l=u.type,o=u.stateNode,0==(64&u.effectTag)&&("function"==typeof l.getDerivedStateFromError||null!==o&&"function"==typeof o.componentDidCatch&&(null===Zi||!Zi.has(o)))){u.effectTag|=2048,u.expirationTime=s,Hn(u,s=Ui(u,f,s));break e}}u=u.return}while(null!==u)}Vi=ya(a)}if(Qi=r,Rn(),Mi.current=i,null!==Vi)return ma.bind(null,e,t)}if(da(e,t))return null;switch(Yi=null,$i){case Hi:throw y("Should have a work-in-progress.");case Oi:return r=e.lastPendingTime,e.lastPendingTimer?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*Ai(r/1960))-r)&&(r=n),10<(n=r)))return e.timeoutHandle=ht(va.bind(null,e,t),n),null}return va.bind(null,e,t);case Li:return va.bind(null,e,t);default:throw y("Unknown root exit status.")}}function ga(e){var t=Ea(e.alternate,e,Xi);return e.memoizedProps=e.pendingProps,null===t&&(t=ya(e)),Di.current=null,t}function ya(e){Vi=e;do{var t=Vi.alternate;if(e=Vi.return,0==(1024&Vi.effectTag)){e:{var n=t,r=Xi,i=(t=Vi).pendingProps;switch(t.tag){case 2:case 16:break;case 15:case 0:break;case 1:Ct(t.type)&&Rt();break;case 3:fr(),Nt(),(i=t.stateNode).pendingContext&&(i.context=i.pendingContext,i.pendingContext=null),null!==n&&null!==n.child||(t.effectTag&=-3),vi(t);break;case 5:pr(t),r=cr(ur.current);var a=t.type;if(null!==n&&null!=t.stateNode)bi(n,t,a,i,r),n.ref!==t.ref&&(t.effectTag|=128);else if(i){cr(lr.current),n=i;var l=r;i=t,r=ft,ft+=2,a=u.get(a);var o=nt(null,qe,n,a.validAttributes);l=h.createNode(r,a.uiViewClassName,l,o,i),n=new dt(r,a,n,i),yi(n={node:l,canonical:n},t,!1,!1),t.stateNode=n,null!==t.ref&&(t.effectTag|=128)}else if(null===t.stateNode)throw y("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");break;case 6:if(n&&null!=t.stateNode)Ti(n,t,n.memoizedProps,i);else{if("string"!=typeof i&&null===t.stateNode)throw y("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");n=cr(ur.current),r=cr(lr.current),t.stateNode=pt(i,n,r,t)}break;case 11:break;case 13:if(i=t.memoizedState,0!=(64&t.effectTag)){t.expirationTime=r;break e}i=null!==i,r=!1,null!==n&&(r=null!==(a=n.memoizedState),i||null===a||((a=a.fallbackExpirationTime)i&&(i=a),l>i&&(i=l),r=r.sibling;n.childExpirationTime=i}if(null!==t)return t;null!==e&&0==(1024&e.effectTag)&&(null===e.firstEffect&&(e.firstEffect=Vi.firstEffect),null!==Vi.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=Vi.firstEffect),e.lastEffect=Vi.lastEffect),1r?i:r,e.firstPendingTime=r,r=n?mi(e,t,n):null!==(t=gi(e,t,n))?t.sibling:null}return gi(e,t,n)}}else ai=!1;switch(t.expirationTime=0,t.tag){case 2:r=t.elementType,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps;var i=_t(t,kt.current);if(Un(t,n),i=jr(null,t,r,e,i,n),t.effectTag|=1,"object"==typeof i&&null!==i&&"function"==typeof i.render&&void 0===i.$$typeof){if(t.tag=1,Wr(),Ct(r)){var a=!0;It(t)}else a=!1;t.memoizedState=null!==i.state&&void 0!==i.state?i.state:null;var l=r.getDerivedStateFromProps;"function"==typeof l&&Xn(t,r,l,e),i.updater=$n,t.stateNode=i,i._reactInternalFiber=t,Kn(t,r,e,n),t=pi(null,t,r,!0,a,n)}else t.tag=0,li(null,t,i,n),t=t.child;return t;case 16:switch(i=t.elementType,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,i=kn(i),t.type=i,a=t.tag=dn(i),e=wn(i,e),a){case 0:t=fi(null,t,i,e,n);break;case 1:t=di(null,t,i,e,n);break;case 11:t=oi(null,t,i,e,n);break;case 14:t=ui(null,t,i,wn(i.type,e),r,n);break;default:throw y("Element type is invalid. Received a promise that resolves to: "+i+". Lazy element type must resolve to a class or function.")}return t;case 0:return r=t.type,i=t.pendingProps,fi(e,t,r,i=t.elementType===r?i:wn(r,i),n);case 1:return r=t.type,i=t.pendingProps,di(e,t,r,i=t.elementType===r?i:wn(r,i),n);case 3:if(hi(t),null===(r=t.updateQueue))throw y("If the root does not have an updateQueue, we should have already bailed out. This error is likely caused by a bug in React. Please file an issue.");return i=null!==(i=t.memoizedState)?i.element:null,Ln(t,r,t.pendingProps,null,n),(r=t.memoizedState.element)===i?t=gi(e,t,n):(li(e,t,r,n),t=t.child),t;case 5:return dr(t),null===e&&ri(t),r=t.pendingProps.children,si(e,t),li(e,t,r,n),t.child;case 6:return null===e&&ri(t),null;case 13:return mi(e,t,n);case 4:return sr(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=rr(t,null,r,n):li(e,t,r,n),t.child;case 11:return r=t.type,i=t.pendingProps,oi(e,t,r,i=t.elementType===r?i:wn(r,i),n);case 7:return li(e,t,t.pendingProps,n),t.child;case 8:case 12:return li(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,i=t.pendingProps,l=t.memoizedProps,Nn(t,a=i.value),null!==l){var o=l.value;if(0===(a=Tn(o,a)?0:0|("function"==typeof r._calculateChangedBits?r._calculateChangedBits(o,a):1073741823))){if(l.children===i.children&&!Et.current){t=gi(e,t,n);break e}}else for(null!==(o=t.child)&&(o.return=t);null!==o;){var u=o.contextDependencies;if(null!==u){l=o.child;for(var c=u.first;null!==c;){if(c.context===r&&0!=(c.observedBits&a)){1===o.tag&&((c=Fn(n)).tag=2,Wn(o,c)),o.expirationTime=0&&(s='video'),n.saveToCameraRoll(o,s)}},{key:"getPhotos",value:function(o){if(arguments.length>1){console.warn('CameraRoll.getPhotos(tag, success, error) is deprecated. Use the returned Promise instead');var t=arguments[1],s=arguments[2]||function(){};n.getPhotos(o).then(t,s)}return n.getPhotos(o)}}]),s})());c.GroupTypesOptions=h,c.AssetTypeOptions=p,m.exports=c},324,[34,35,67,31,182,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).Clipboard;m.exports={getString:function(){return t.getString()},setString:function(n){t.setString(n)}}},325,[31]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),c=r(d[3]).DatePickerAndroid;function u(t,n){var o=t[n];'object'==typeof o&&'function'==typeof o.getMonth&&(t[n]=o.getTime())}var s=(function(){function s(){n(this,s)}return o(s,null,[{key:"open",value:function(n){var o;return t.async(function(t){for(;;)switch(t.prev=t.next){case 0:return null!=(o=n)&&(u(o,'date'),u(o,'minDate'),u(o,'maxDate')),t.abrupt("return",c.open(n));case 3:case"end":return t.stop()}})}}]),s})();s.dateSetAction='dateSetAction',s.dismissedAction='dismissedAction',m.exports=s},326,[252,34,35,31]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);function n(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function o(o){for(var c=1;co&&(s+=c&&u?v.currentPageX:c&&!u?v.currentPageY:!c&&u?v.previousPageX:v.previousPageY,h=1);else for(var C=0;C=o){s+=c&&u?l.currentPageX:c&&!u?l.currentPageY:!c&&u?l.previousPageX:l.previousPageY,h++}}return h>0?s/h:n.noCentroid},currentCentroidXOfTouchesChangedAfter:function(t,o){return n.centroidDimension(t,o,!0,!0)},currentCentroidYOfTouchesChangedAfter:function(t,o){return n.centroidDimension(t,o,!1,!0)},previousCentroidXOfTouchesChangedAfter:function(t,o){return n.centroidDimension(t,o,!0,!1)},previousCentroidYOfTouchesChangedAfter:function(t,o){return n.centroidDimension(t,o,!1,!1)},currentCentroidX:function(t){return n.centroidDimension(t,0,!0,!0)},currentCentroidY:function(t){return n.centroidDimension(t,0,!1,!0)},noCentroid:-1};m.exports=n},331,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]),s=r(d[1]),o=r(d[2]),E=r(d[3]),A=(function(){function A(){s(this,A),this.PERMISSIONS={READ_CALENDAR:'android.permission.READ_CALENDAR',WRITE_CALENDAR:'android.permission.WRITE_CALENDAR',CAMERA:'android.permission.CAMERA',READ_CONTACTS:'android.permission.READ_CONTACTS',WRITE_CONTACTS:'android.permission.WRITE_CONTACTS',GET_ACCOUNTS:'android.permission.GET_ACCOUNTS',ACCESS_FINE_LOCATION:'android.permission.ACCESS_FINE_LOCATION',ACCESS_COARSE_LOCATION:'android.permission.ACCESS_COARSE_LOCATION',RECORD_AUDIO:'android.permission.RECORD_AUDIO',READ_PHONE_STATE:'android.permission.READ_PHONE_STATE',CALL_PHONE:'android.permission.CALL_PHONE',READ_CALL_LOG:'android.permission.READ_CALL_LOG',WRITE_CALL_LOG:'android.permission.WRITE_CALL_LOG',ADD_VOICEMAIL:'com.android.voicemail.permission.ADD_VOICEMAIL',USE_SIP:'android.permission.USE_SIP',PROCESS_OUTGOING_CALLS:'android.permission.PROCESS_OUTGOING_CALLS',BODY_SENSORS:'android.permission.BODY_SENSORS',SEND_SMS:'android.permission.SEND_SMS',RECEIVE_SMS:'android.permission.RECEIVE_SMS',READ_SMS:'android.permission.READ_SMS',RECEIVE_WAP_PUSH:'android.permission.RECEIVE_WAP_PUSH',RECEIVE_MMS:'android.permission.RECEIVE_MMS',READ_EXTERNAL_STORAGE:'android.permission.READ_EXTERNAL_STORAGE',WRITE_EXTERNAL_STORAGE:'android.permission.WRITE_EXTERNAL_STORAGE'},this.RESULTS={GRANTED:'granted',DENIED:'denied',NEVER_ASK_AGAIN:'never_ask_again'}}return o(A,[{key:"checkPermission",value:function(n){return console.warn('"PermissionsAndroid.checkPermission" is deprecated. Use "PermissionsAndroid.check" instead'),E.PermissionsAndroid.checkPermission(n)}},{key:"check",value:function(n){return E.PermissionsAndroid.checkPermission(n)}},{key:"requestPermission",value:function(s,o){var E;return n.async(function(A){for(;;)switch(A.prev=A.next){case 0:return console.warn('"PermissionsAndroid.requestPermission" is deprecated. Use "PermissionsAndroid.request" instead'),A.next=3,n.awrap(this.request(s,o));case 3:return E=A.sent,A.abrupt("return",E===this.RESULTS.GRANTED);case 5:case"end":return A.stop()}},null,this)}},{key:"request",value:function(s,o){return n.async(function(A){for(;;)switch(A.prev=A.next){case 0:if(!o){A.next=6;break}return A.next=3,n.awrap(E.PermissionsAndroid.shouldShowRequestPermissionRationale(s));case 3:if(!A.sent){A.next=6;break}return A.abrupt("return",new Promise(function(n,A){E.DialogManagerAndroid.showAlert(o,function(){return A(new Error('Error showing rationale'))},function(){return n(E.PermissionsAndroid.requestPermission(s))})}));case 6:return A.abrupt("return",E.PermissionsAndroid.requestPermission(s));case 7:case"end":return A.stop()}})}},{key:"requestMultiple",value:function(n){return E.PermissionsAndroid.requestMultiplePermissions(n)}}]),A})();A=new A,m.exports=A},332,[252,34,35,31]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),o=r(d[1]),n=r(d[2]),c=r(d[3]).PushNotificationManager,l=r(d[4]),s=new n(c),u=new Map,f=(function(){function n(o){var c=this;t(this,n),this._data={},this._remoteNotificationCompleteCallbackCalled=!1,this._isRemote=o.remote,this._isRemote&&(this._notificationId=o.notificationId),o.remote?Object.keys(o).forEach(function(t){var n=o[t];'aps'===t?(c._alert=n.alert,c._sound=n.sound,c._badgeCount=n.badge,c._category=n.category,c._contentAvailable=n['content-available'],c._threadID=n['thread-id']):c._data[t]=n}):(this._badgeCount=o.applicationIconBadgeNumber,this._sound=o.soundName,this._alert=o.alertBody,this._data=o.userInfo,this._category=o.category)}return o(n,null,[{key:"presentLocalNotification",value:function(t){c.presentLocalNotification(t)}},{key:"scheduleLocalNotification",value:function(t){c.scheduleLocalNotification(t)}},{key:"cancelAllLocalNotifications",value:function(){c.cancelAllLocalNotifications()}},{key:"removeAllDeliveredNotifications",value:function(){c.removeAllDeliveredNotifications()}},{key:"getDeliveredNotifications",value:function(t){c.getDeliveredNotifications(t)}},{key:"removeDeliveredNotifications",value:function(t){c.removeDeliveredNotifications(t)}},{key:"setApplicationIconBadgeNumber",value:function(t){c.setApplicationIconBadgeNumber(t)}},{key:"getApplicationIconBadgeNumber",value:function(t){c.getApplicationIconBadgeNumber(t)}},{key:"cancelLocalNotifications",value:function(t){c.cancelLocalNotifications(t)}},{key:"getScheduledLocalNotifications",value:function(t){c.getScheduledLocalNotifications(t)}},{key:"addEventListener",value:function(t,o){var c;l('notification'===t||'register'===t||'registrationError'===t||'localNotification'===t,'PushNotificationIOS only supports `notification`, `register`, `registrationError`, and `localNotification` events'),'notification'===t?c=s.addListener("remoteNotificationReceived",function(t){o(new n(t))}):'localNotification'===t?c=s.addListener("localNotificationReceived",function(t){o(new n(t))}):'register'===t?c=s.addListener("remoteNotificationsRegistered",function(t){o(t.deviceToken)}):'registrationError'===t&&(c=s.addListener("remoteNotificationRegistrationError",function(t){o(t)})),u.set(t,c)}},{key:"removeEventListener",value:function(t,o){l('notification'===t||'register'===t||'registrationError'===t||'localNotification'===t,'PushNotificationIOS only supports `notification`, `register`, `registrationError`, and `localNotification` events');var n=u.get(t);n&&(n.remove(),u.delete(t))}},{key:"requestPermissions",value:function(t){var o={};return o=t?{alert:!!t.alert,badge:!!t.badge,sound:!!t.sound}:{alert:!0,badge:!0,sound:!0},c.requestPermissions(o)}},{key:"abandonPermissions",value:function(){c.abandonPermissions()}},{key:"checkPermissions",value:function(t){l('function'==typeof t,'Must provide a valid callback'),c.checkPermissions(t)}},{key:"getInitialNotification",value:function(){return c.getInitialNotification().then(function(t){return t&&new n(t)})}}]),o(n,[{key:"finish",value:function(t){this._isRemote&&this._notificationId&&!this._remoteNotificationCompleteCallbackCalled&&(this._remoteNotificationCompleteCallbackCalled=!0,c.onFinishRemoteNotification(this._notificationId,t))}},{key:"getMessage",value:function(){return this._alert}},{key:"getSound",value:function(){return this._sound}},{key:"getCategory",value:function(){return this._category}},{key:"getAlert",value:function(){return this._alert}},{key:"getContentAvailable",value:function(){return this._contentAvailable}},{key:"getBadgeCount",value:function(){return this._badgeCount}},{key:"getData",value:function(){return this._data}},{key:"getThreadID",value:function(){return this._threadID}}]),n})();f.FetchResult={NewData:'UIBackgroundFetchResultNewData',NoData:'UIBackgroundFetchResultNoData',ResultFailed:'UIBackgroundFetchResultFailed'},m.exports=f},333,[34,35,116,31,26]); +__d(function(g,r,i,a,m,e,d){'use strict';var n={get:function(n){return console.warn('Settings is not yet supported on Android'),null},set:function(n){console.warn('Settings is not yet supported on Android')},watchKeys:function(n,t){return console.warn('Settings is not yet supported on Android'),-1},clearWatch:function(n){console.warn('Settings is not yet supported on Android')}};m.exports=n},334,[]); +__d(function(g,r,i,a,m,e,d){'use strict';r(d[0]);var t=r(d[1]),n=r(d[2]),o=(r(d[3]),r(d[4])),s=(r(d[5]),r(d[6])),l=(s.ActionSheetManager,s.ShareModule),u=(function(){function s(){t(this,s)}return n(s,null,[{key:"share",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return o('object'==typeof t&&null!==t,'Content to share must be a valid object'),o('string'==typeof t.url||'string'==typeof t.message,'At least one of URL and message is required'),o('object'==typeof n&&null!==n,'Options must be a valid object'),o(!t.title||'string'==typeof t.title,'Invalid title: title should be a string.'),l.share(t,n.dialogTitle)}},{key:"sharedAction",get:function(){return'sharedAction'}},{key:"dismissedAction",get:function(){return'dismissedAction'}}]),s})();m.exports=u},335,[18,34,35,55,26,75,31]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);m.exports=new t('StatusBarManager')},336,[116]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]),t=r(d[1]),c=r(d[2]),s=r(d[3]).TimePickerAndroid,o=(function(){function o(){t(this,o)}return c(o,null,[{key:"open",value:function(t){return n.async(function(n){for(;;)switch(n.prev=n.next){case 0:return n.abrupt("return",s.open(t));case 1:case"end":return n.stop()}})}}]),o})();o.timeSetAction='timeSetAction',o.dismissedAction='dismissedAction',m.exports=o},337,[252,34,35,31]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).ToastAndroid,o={SHORT:t.SHORT,LONG:t.LONG,TOP:t.TOP,BOTTOM:t.BOTTOM,CENTER:t.CENTER,show:function(o,s){t.show(o,s)},showWithGravity:function(o,s,O){t.showWithGravity(o,s,O)},showWithGravityAndOffset:function(o,s,O,n,T){t.showWithGravityAndOffset(o,s,O,n,T)}};m.exports=o},338,[31]); +__d(function(g,r,i,a,m,e,d){'use strict';var A=r(d[0])({BOM:"\ufeff",BULLET:"\u2022",BULLET_SP:"\xa0\u2022\xa0",MIDDOT:"\xb7",MIDDOT_SP:"\xa0\xb7\xa0",MIDDOT_KATAKANA:"\u30fb",MDASH:"\u2014",MDASH_SP:"\xa0\u2014\xa0",NDASH:"\u2013",NDASH_SP:"\xa0\u2013\xa0",NBSP:"\xa0",PIZZA:"\ud83c\udf55",TRIANGLE_LEFT:"\u25c0",TRIANGLE_RIGHT:"\u25b6"});m.exports=A},339,[38]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).Vibration;r(d[1]);var n={vibrate:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:400,o=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if('number'==typeof n)t.vibrate(n);else{if(!Array.isArray(n))throw new Error('Vibration pattern should be a number or array');t.vibrateByPattern(n,o?0:-1)}},cancel:function(){t.cancel()}};m.exports=n},340,[31,55]); +__d(function(g,r,i,a,m,e,d){'use strict';var n,t=r(d[0]),u=r(d[1]),l=r(d[2]),o=r(d[3]),s=r(d[4]);n=(function(n){function c(){return t(this,c),l(this,o(c).apply(this,arguments))}return s(c,n),u(c,[{key:"render",value:function(){return null}}],[{key:"ignoreWarnings",value:function(n){}},{key:"install",value:function(){}},{key:"uninstall",value:function(){}}]),c})(r(d[5]).Component),m.exports=n},341,[34,35,42,45,48,13]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]),s=n.shape({x:n.number,y:n.number});m.exports=s},342,[67]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.hasPrefix=P,e.renderElement=A,e.renderNativeComponent=D,e.renderComponent=E,e.renderAttributes=L,e.renderStyle=T,e.default=void 0;var n=t(r(d[1])),o=t(r(d[2])),u=t(r(d[3])),c=r(d[4]),l=r(d[5]),s=r(d[6]),f=t(r(d[7]));function p(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function h(t){for(var n=1;n2&&void 0!==arguments[2]?arguments[2]:{};if(null===t||void 0===t||!1===t)return'';if(Array.isArray(t))return H(t,n,o);switch(typeof t){case'string':return(0,l.escapeHTML)(t);case'number':return t.toString()}var p=t.type,y=t.props;switch(p){case s.StrictMode:case s.Fragment:return H(y.children,n,o);case f.default:var O=y.children,S=(0,u.default)(y,["children"]);return D((0,c.isEmpty)(S)?null:'div',h({},S,{dangerouslySetInnerHTML:{__html:O}}),n,o)}switch(typeof p){case'string':return D(p,y,n,o);case'function':return p.prototype&&'function'==typeof p.prototype.render?E(p,y,n,o):A(p(y,o),n,o)}switch(p&&p.$$typeof){case v.$$typeof:return H(y.children,y.value,o);case b.$$typeof:return A(y.children(n||p._currentValue),n,o);case w.$$typeof:return A(p.render(y),n,o)}return''}function D(t,n,o){var u=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},l='';if('textarea'===t&&n.hasOwnProperty('value')?(l=H(n.value,o,u),n=(0,c.omit)(n,'value')):n.dangerouslySetInnerHTML&&'string'==typeof n.dangerouslySetInnerHTML.__html?l=n.dangerouslySetInnerHTML.__html:void 0!==n.children&&(l=H(n.children,o,u)),!t)return l;var s=L(n);return S.has(t)?'<'+t+s+'/>':'<'+t+s+'>'+l+''}function E(t,o,u){var c=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},l=new t(o,c);return'function'==typeof l.getChildContext&&(0,n.default)(c,l.getChildContext()),A(l.render(),u,c)}function H(t,n){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},u='';t=(0,c.castArray)(t);for(var l=0;l/="\uFDD0-\uFDEF]/;function c(t){return t.replace(/&(?!([a-z0-9]+|#[0-9]+|#x[a-f0-9]+);)/gi,'&')}function p(t){return t.replace(/"/g,'"')}function o(t){return t.replace(//g,'>')}},345,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var n=t.children,u=(0,o.default)(t,["children"]);return(0,c.createElement)('div',l({dangerouslySetInnerHTML:{__html:n}},u))};var n=t(r(d[1])),o=t(r(d[2])),c=r(d[3]);function u(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function l(t){for(var o=1;o1?n-1:0),u=1;u1&&void 0!==arguments[1]?arguments[1]:'default';s.data[n]=l({},p,{},s.data[n],{},t),s.data[n]['']=l({},p[''],{},s.data[n][''])}function y(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:'default',n=arguments.length>1?arguments[1]:void 0,o=arguments.length>2?arguments[2]:void 0,u=arguments.length>3?arguments[3]:void 0,c=arguments.length>4?arguments[4]:void 0;return s.data[t]||O(void 0,t),s.dcnpgettext(t,n,o,u,c)}},347,[2,18,348,353,354]); +__d(function(g,r,i,a,m,e,d){'use strict';var t,o=(t=r(d[0]))&&'object'==typeof t&&'default'in t?t.default:t,s={contextDelimiter:"\x04",onMissingKey:null};function n(t){var o,s,n;for(o=t.split(';'),s=0;s':5,'>=':5,'==':4,'!=':4,'&&':3,'||':2,'?':1,'?:':1},t=['(','?'],u={')':['('],':':['?','?:']},n=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/,m.exports=function(f){for(var p,h,o,c,b=[],x=[];p=f.match(n);){for(h=p[0],(o=f.substr(0,p.index).trim())&&b.push(o);c=x.pop();){if(u[h]){if(u[h][0]===c){h=u[h][1]||h;break}}else if(t.indexOf(c)>=0||s[c]':function(n,t){return n>t},'>=':function(n,t){return n>=t},'==':function(n,t){return n===t},'!=':function(n,t){return n!==t},'&&':function(n,t){return n&&t},'||':function(n,t){return n||t},'?:':function(n,t,u){if(n)throw t;return u}};m.exports=function(t,u){var o,f,c,p,h,l,s=[];for(o=0;o=0),u.type){case'b':p=parseInt(p,10).toString(2);break;case'c':p=String.fromCharCode(parseInt(p,10));break;case'd':case'i':p=parseInt(p,10);break;case'j':p=JSON.stringify(p,null,u.width?parseInt(u.width):0);break;case'e':p=u.precision?parseFloat(p).toExponential(u.precision):parseFloat(p).toExponential();break;case'f':p=u.precision?parseFloat(p).toFixed(u.precision):parseFloat(p);break;case'g':p=u.precision?String(Number(p.toPrecision(u.precision))):parseFloat(p);break;case'o':p=(parseInt(p,10)>>>0).toString(8);break;case's':p=String(p),p=u.precision?p.substring(0,u.precision):p;break;case't':p=String(!!p),p=u.precision?p.substring(0,u.precision):p;break;case'T':p=Object.prototype.toString.call(p).slice(8,-1).toLowerCase(),p=u.precision?p.substring(0,u.precision):p;break;case'u':p=parseInt(p,10)>>>0;break;case'v':p=p.valueOf(),p=u.precision?p.substring(0,u.precision):p;break;case'x':p=(parseInt(p,10)>>>0).toString(16);break;case'X':p=(parseInt(p,10)>>>0).toString(16).toUpperCase()}n.json.test(u.type)?x+=p:(!n.number.test(u.type)||h&&!u.sign?k='':(k=h?'+':'-',p=p.toString().replace(n.sign,'')),y=u.pad_char?'0'===u.pad_char?'0':u.pad_char.charAt(1):' ',b=u.width-(k+p).length,f=u.width&&b>0?y.repeat(b):'',x+=u.align?k+p+f:'0'===y?k+f+p:f+k+p)}return x}var p=Object.create(null);function c(t){if(p[t])return p[t];for(var s,o=t,c=[],l=0;o;){if(null!==(s=n.text.exec(o)))c.push(s[0]);else if(null!==(s=n.modulo.exec(o)))c.push('%');else{if(null===(s=n.placeholder.exec(o)))throw new SyntaxError('[sprintf] unexpected placeholder');if(s[2]){l|=1;var u=[],f=s[2],y=[];if(null===(y=n.key.exec(f)))throw new SyntaxError('[sprintf] failed to parse named argument key');for(u.push(y[1]);''!==(f=f.substring(y[0].length));)if(null!==(y=n.key_access.exec(f)))u.push(y[1]);else{if(null===(y=n.index_access.exec(f)))throw new SyntaxError('[sprintf] failed to parse named argument key');u.push(y[1])}s[2]=u}else l|=2;if(3===l)throw new Error('[sprintf] mixing positional and named placeholders is not (yet) supported');c.push({placeholder:s[0],param_no:s[1],keys:s[2],sign:s[3],pad_char:s[4],align:s[5],width:s[6],precision:s[7],type:s[8]})}o=o.substring(s[0].length)}return p[t]=c}void 0!==e&&(e.sprintf=t,e.vsprintf=s),'undefined'!=typeof window&&(window.sprintf=t,window.vsprintf=s,'function'==typeof define&&define.amd&&define(function(){return{sprintf:t,vsprintf:s}}))})()},354,[]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=n(r(d[1])),o=n(r(d[2])),l=r(d[3]),u=r(d[4]);r(d[5]),g.wp={element:{createElement:u.createElement}};var c=t.default.html('',null,null);c.implementation.createHTMLDocument=function(n){return t.default.html(n,null,null)},g.document=c,g.window.Node||(g.window.Node=o.default.dom.level1.core.Node),g.window.matchMedia||(g.window.matchMedia=function(){return{matches:!1,addListener:function(){},removeListener:function(){}}}),g.window.navigator.userAgent=[],g.nativeLoggingHook=l.nativeLoggingHook},355,[2,356,810,821,3,822]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]).defineGetter,n=e.dom=r(d[1]).dom;e.defaultLevel=n.level3.html,e.browserAugmentation=r(d[2]).browserAugmentation,e.debugMode=!1,t(e,'version',function(){return 1}),e.level=function(t,n){return n||(n='core'),(function(t){throw new Error("Dynamic require defined at line 18; not supported by Metro")})().dom['level'+t][n]},e.jsdom=function(t,n,o){o=o||{},n='string'==typeof n?e.level(n,'html'):n||e.defaultLevel;var l=e.browserAugmentation(n,o),u=l.HTMLDocument?new l.HTMLDocument(o):new l.Document(o);return r(d[3]).applyQuerySelectorPrototype(n),void 0===t||null===t?u.write(''):u.write(t+''),u.close&&!o.deferClose&&u.close(),u},e.html=function(t,n,o){var l=(t+='').toLowerCase();return~l.indexOf(''+t+''),~l.indexOf(''+t+''),e.jsdom(t,n,o)},e.env=function(t,n,o){arguments.length<3&&(o=n,n=null),o(null,{document:e.html(t,n)})}},356,[357,807,815,820]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]).path;e.intercept=function(t,n,o){var c=t.prototype,p=c[n],f=o.length>2;c[n]=function(){if(f){var t=Array.prototype.slice.call(arguments);return t.unshift(p,arguments),o.apply(this,t)}return o.call(this,p,arguments)}},e.toFileUrl=function(n){var o=t.resolve(process.cwd(),n).replace(/\\/g,'/');return'/'!==o[0]&&(o='/'+o),'file://'+o},e.defineSetter=function(t,n,o){var c=Object.getOwnPropertyDescriptor(t,n)||{configurable:!0,enumerable:!0};c.set=o,Object.defineProperty(t,n,c)},e.defineGetter=function(t,n,o){var c=Object.getOwnPropertyDescriptor(t,n)||{configurable:!0,enumerable:!0};c.get=o,Object.defineProperty(t,n,c)},e.createFrom=function(t,n){n=n||{};var o={};return Object.getOwnPropertyNames(n).forEach(function(t){o[t]=Object.getOwnPropertyDescriptor(n,t)}),Object.create(t,o)},e.inheritFrom=function(t,n,o){o=o||{},Object.defineProperty(o,'constructor',{value:n,writable:!0,configurable:!0}),n.prototype=e.createFrom(t.prototype,o)}},357,[358]); +__d(function(g,r,i,a,m,e,d){m.exports={url:r(d[0]),path:r(d[1]),htmlparser2:r(d[2]),nwmatcher:r(d[3]),cssom:r(d[4]),cssstyle:r(d[5])}},358,[359,364,365,393,394,412]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);function h(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}e.parse=q,e.resolve=function(t,h){return q(t,!1,!0).resolve(h)},e.resolveObject=function(t,h){return t?q(t,!1,!0).resolveObject(h):h},e.format=function(t){O(t)&&(t=q(t));return t instanceof h?t.format():h.prototype.format.call(t)},e.Url=h;var s=/^([a-z0-9.+-]+:)/i,o=/:[0-9]*$/,n=['{','}','|','\\','^','`'].concat(['<','>','"','`',' ','\r','\n','\t']),l=['\''].concat(n),p=['%','/','?',';','#'].concat(l),c=['/','?','#'],f=/^[a-z0-9A-Z_-]{0,63}$/,u=/^([a-z0-9A-Z_-]{0,63})(.*)$/,v={javascript:!0,'javascript:':!0},y={javascript:!0,'javascript:':!0},b={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,'http:':!0,'https:':!0,'ftp:':!0,'gopher:':!0,'file:':!0},j=r(d[1]);function q(t,s,o){if(t&&x(t)&&t instanceof h)return t;var n=new h;return n.parse(t,s,o),n}function O(t){return"string"==typeof t}function x(t){return'object'==typeof t&&null!==t}function A(t){return null===t}h.prototype.parse=function(h,o,n){if(!O(h))throw new TypeError("Parameter 'url' must be a string, not "+typeof h);var q=h;q=q.trim();var x=s.exec(q);if(x){var A=(x=x[0]).toLowerCase();this.protocol=A,q=q.substr(x.length)}if(n||x||q.match(/^\/\/[^@\/]+@[^@\/]+/)){var w='//'===q.substr(0,2);!w||x&&y[x]||(q=q.substr(2),this.slashes=!0)}if(!y[x]&&(w||x&&!b[x])){for(var C,I,k=-1,U=0;U127?$+='x':$+=Z[H];if(!$.match(f)){var P=E.slice(0,U),T=E.slice(U+1),B=Z.match(u);B&&(P.push(B[1]),T.unshift(B[2])),T.length&&(q='/'+T.join('.')+q),this.hostname=P.join('.');break}}}if(this.hostname.length>255?this.hostname='':this.hostname=this.hostname.toLowerCase(),!z){var D=this.hostname.split('.'),F=[];for(U=0;U0)&&o.host.split('@'))&&(o.auth=k.shift(),o.host=o.hostname=k.shift());return o.search=t.search,o.query=t.query,A(o.pathname)&&A(o.search)||(o.path=(o.pathname?o.pathname:'')+(o.search?o.search:'')),o.href=o.format(),o}if(!j.length)return o.pathname=null,o.search?o.path='/'+o.search:o.path=null,o.href=o.format(),o;for(var x=j.slice(-1)[0],w=(o.host||t.host)&&('.'===x||'..'===x)||''===x,C=0,I=j.length;I>=0;I--)'.'==(x=j[I])?j.splice(I,1):'..'===x?(j.splice(I,1),C++):C&&(j.splice(I,1),C--);if(!u&&!v)for(;C--;C)j.unshift('..');!u||''===j[0]||j[0]&&'/'===j[0].charAt(0)||j.unshift(''),w&&'/'!==j.join('/').substr(-1)&&j.push('');var k,U=''===j[0]||j[0]&&'/'===j[0].charAt(0);q&&(o.hostname=o.host=U?'':j.length?j.shift():'',(k=!!(o.host&&o.host.indexOf('@')>0)&&o.host.split('@'))&&(o.auth=k.shift(),o.host=o.hostname=k.shift()));return(u=u||o.host&&j.length)&&!U&&j.unshift(''),j.length?o.pathname=j.join('/'):(o.pathname=null,o.path=null),A(o.pathname)&&A(o.search)||(o.path=(o.pathname?o.pathname:'')+(o.search?o.search:'')),o.auth=t.auth||o.auth,o.slashes=o.slashes||t.slashes,o.href=o.format(),o},h.prototype.parseHost=function(){var t=this.host,h=o.exec(t);h&&(':'!==(h=h[0])&&(this.port=h.substr(1)),t=t.substr(0,t.length-h.length)),t&&(this.hostname=t)}},359,[360,361]); +__d(function(g,r,i,a,m,e,d){!(function(n){var o='object'==typeof e&&e&&!e.nodeType&&e,t='object'==typeof m&&m&&!m.nodeType&&m,f='object'==typeof g&&g;f.global!==f&&f.window!==f&&f.self!==f||(n=f);var u,c,l=2147483647,s=36,p=1,h=26,v=38,w=700,y=72,x=128,C='-',b=/^xn--/,j=/[^\x20-\x7E]/,A=/[\x2E\u3002\uFF0E\uFF61]/g,I={overflow:'Overflow: input needs wider integers to process','not-basic':'Illegal input >= 0x80 (not a basic code point)','invalid-input':'Invalid input'},E=35,F=Math.floor,O=String.fromCharCode;function S(n){throw RangeError(I[n])}function T(n,o){for(var t=n.length,f=[];t--;)f[t]=o(n[t]);return f}function _(n,o){var t=n.split('@'),f='';return t.length>1&&(f=t[0]+'@',n=t[1]),f+T((n=n.replace(A,'.')).split('.'),o).join('.')}function L(n){for(var o,t,f=[],u=0,c=n.length;u=55296&&o<=56319&&u65535&&(o+=O((n-=65536)>>>10&1023|55296),n=56320|1023&n),o+=O(n)}).join('')}function P(n,o){return n+22+75*(n<26)-((0!=o)<<5)}function R(n,o,t){var f=0;for(n=t?F(n/w):n>>1,n+=F(n/o);n>455;f+=s)n=F(n/E);return F(f+36*n/(n+v))}function U(n){var o,t,f,u,c,v,w,b,j,A,I,E=[],O=n.length,T=0,_=x,L=y;for((t=n.lastIndexOf(C))<0&&(t=0),f=0;f=128&&S('not-basic'),E.push(n.charCodeAt(f));for(u=t>0?t+1:0;u=O&&S('invalid-input'),((b=(I=n.charCodeAt(u++))-48<10?I-22:I-65<26?I-65:I-97<26?I-97:s)>=s||b>F((l-T)/v))&&S('overflow'),T+=b*v,!(b<(j=w<=L?p:w>=L+h?h:w-L));w+=s)v>F(l/(A=s-j))&&S('overflow'),v*=A;L=R(T-c,o=E.length+1,0==c),F(T/o)>l-_&&S('overflow'),_+=F(T/o),T%=o,E.splice(T++,0,_)}return M(E)}function k(n){var o,t,f,u,c,v,w,b,j,A,I,E,T,_,M,U=[];for(E=(n=L(n)).length,o=x,t=0,c=y,v=0;v=o&&IF((l-t)/(T=f+1))&&S('overflow'),t+=(w-o)*T,o=w,v=0;vl&&S('overflow'),I==o){for(b=t,j=s;!(b<(A=j<=c?p:j>=c+h?h:j-c));j+=s)M=b-A,_=s-A,U.push(O(P(A+M%_,0))),b=F(M/_);U.push(O(P(b,0))),c=R(t,T,f==u),t=0,++f}++t,++o}return U.join('')}if(u={version:'1.3.2',ucs2:{decode:L,encode:M},decode:U,encode:k,toASCII:function(n){return _(n,function(n){return j.test(n)?'xn--'+k(n):n})},toUnicode:function(n){return _(n,function(n){return b.test(n)?U(n.slice(4).toLowerCase()):n})}},'function'==typeof define&&'object'==typeof define.amd&&define.amd)define('punycode',function(){return u});else if(o&&t)if(m.exports==o)t.exports=u;else for(c in u)u.hasOwnProperty(c)&&(o[c]=u[c]);else n.punycode=u})(this)},360,[]); +__d(function(g,r,i,a,m,e,d){'use strict';e.decode=e.parse=r(d[0]),e.encode=e.stringify=r(d[1])},361,[362,363]); +__d(function(g,r,i,a,m,e,d){'use strict';function t(t,n){return Object.prototype.hasOwnProperty.call(t,n)}m.exports=function(n,o,s,p){o=o||'&',s=s||'=';var u={};if('string'!=typeof n||0===n.length)return u;var c=/\+/g;n=n.split(o);var f=1e3;p&&'number'==typeof p.maxKeys&&(f=p.maxKeys);var y=n.length;f>0&&y>f&&(y=f);for(var l=0;l=0?(v=O.substr(0,A),b=O.substr(A+1)):(v=O,b=''),h=decodeURIComponent(v),x=decodeURIComponent(b),t(u,h)?Array.isArray(u[h])?u[h].push(x):u[h]=[u[h],x]:u[h]=x}return u}},362,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=function(n){switch(typeof n){case'string':return n;case'boolean':return n?'true':'false';case'number':return isFinite(n)?n:'';default:return''}};m.exports=function(o,t,c,u){return t=t||'&',c=c||'=',null===o&&(o=void 0),'object'==typeof o?Object.keys(o).map(function(u){var s=encodeURIComponent(n(u))+c;return Array.isArray(o[u])?o[u].map(function(o){return s+encodeURIComponent(n(o))}).join(t):s+encodeURIComponent(n(o[u]))}).join(t):u?encodeURIComponent(n(u))+c+encodeURIComponent(n(o)):''}},363,[]); +__d(function(g,r,i,a,m,e,d){function t(t,n){for(var s=0,u=t.length-1;u>=0;u--){var o=t[u];'.'===o?t.splice(u,1):'..'===o?(t.splice(u,1),s++):s&&(t.splice(u,1),s--)}if(n)for(;s--;s)t.unshift('..');return t}var n=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/,s=function(t){return n.exec(t).slice(1)};function u(t,n){if(t.filter)return t.filter(n);for(var s=[],u=0;u=-1&&!s;o--){var l=o>=0?arguments[o]:process.cwd();if('string'!=typeof l)throw new TypeError('Arguments to path.resolve must be strings');l&&(n=l+'/'+n,s='/'===l.charAt(0))}return n=t(u(n.split('/'),function(t){return!!t}),!s).join('/'),(s?'/':'')+n||'.'},e.normalize=function(n){var s=e.isAbsolute(n),l='/'===o(n,-1);return(n=t(u(n.split('/'),function(t){return!!t}),!s).join('/'))||s||(n='.'),n&&l&&(n+='/'),(s?'/':'')+n},e.isAbsolute=function(t){return'/'===t.charAt(0)},e.join=function(){var t=Array.prototype.slice.call(arguments,0);return e.normalize(u(t,function(t,n){if('string'!=typeof t)throw new TypeError('Arguments to path.join must be strings');return t}).join('/'))},e.relative=function(t,n){function s(t){for(var n=0;n=0&&''===t[s];s--);return n>s?[]:t.slice(n,s-n+1)}t=e.resolve(t).substr(1),n=e.resolve(n).substr(1);for(var u=s(t.split('/')),o=s(n.split('/')),l=Math.min(u.length,o.length),f=l,c=0;c0;this._cbs.onclosetag(this._stack[--t]));this._cbs.onend&&this._cbs.onend()},p.prototype.reset=function(){this._cbs.onreset&&this._cbs.onreset(),this._tokenizer.reset(),this._tagname="",this._attribname="",this._attribs=null,this._stack=[],this._cbs.onparserinit&&this._cbs.onparserinit(this)},p.prototype.parseComplete=function(t){this.reset(),this.end(t)},p.prototype.write=function(t){this._tokenizer.write(t)},p.prototype.end=function(t){this._tokenizer.end(t)},p.prototype.pause=function(){this._tokenizer.pause()},p.prototype.resume=function(){this._tokenizer.resume()},p.prototype.parseChunk=p.prototype.write,p.prototype.done=p.prototype.end,m.exports=p},366,[367,373,374]); +__d(function(g,r,i,a,m,e,d){m.exports=At;var t,s,_=r(d[0]),h=r(d[1]),n=r(d[2]),o=r(d[3]),c=0,f=c++,p=c++,u=c++,S=c++,y=c++,b=c++,x=c++,l=c++,A=c++,B=c++,C=c++,E=c++,I=c++,N=c++,T=c++,M=c++,D=c++,v=c++,k=c++,P=c++,w=c++,L=c++,O=c++,V=c++,Q=c++,H=c++,R=c++,Y=c++,z=c++,F=c++,X=c++,Z=c++,j=c++,q=c++,G=c++,J=c++,K=c++,U=c++,W=c++,$=c++,tt=c++,et=c++,st=c++,it=c++,at=c++,_t=c++,ht=c++,nt=c++,ot=c++,rt=c++,ct=c++,ft=c++,pt=c++,dt=c++,ut=c++,St=0,yt=St++,bt=St++,xt=St++;function lt(t){return" "===t||"\n"===t||"\t"===t||"\f"===t||"\r"===t}function mt(t,s,_){var h=t.toLowerCase();return t===h?function(t){t===h?this._state=s:(this._state=_,this._index--)}:function(n){n===h||n===t?this._state=s:(this._state=_,this._index--)}}function gt(t,s){var _=t.toLowerCase();return function(h){h===_||h===t?this._state=s:(this._state=u,this._index--)}}function At(t,s){this._state=f,this._buffer="",this._sectionStart=0,this._index=0,this._bufferOffset=0,this._baseState=f,this._special=yt,this._cbs=s,this._running=!0,this._ended=!1,this._xmlMode=!(!t||!t.xmlMode),this._decodeEntities=!(!t||!t.decodeEntities)}At.prototype._stateText=function(t){"<"===t?(this._index>this._sectionStart&&this._cbs.ontext(this._getSection()),this._state=p,this._sectionStart=this._index):this._decodeEntities&&this._special===yt&&"&"===t&&(this._index>this._sectionStart&&this._cbs.ontext(this._getSection()),this._baseState=f,this._state=ct,this._sectionStart=this._index)},At.prototype._stateBeforeTagName=function(t){"/"===t?this._state=y:"<"===t?(this._cbs.ontext(this._getSection()),this._sectionStart=this._index):">"===t||this._special!==yt||lt(t)?this._state=f:"!"===t?(this._state=T,this._sectionStart=this._index+1):"?"===t?(this._state=D,this._sectionStart=this._index+1):(this._state=this._xmlMode||"s"!==t&&"S"!==t?u:X,this._sectionStart=this._index)},At.prototype._stateInTagName=function(t){("/"===t||">"===t||lt(t))&&(this._emitToken("onopentagname"),this._state=l,this._index--)},At.prototype._stateBeforeCloseingTagName=function(t){lt(t)||(">"===t?this._state=f:this._special!==yt?"s"===t||"S"===t?this._state=Z:(this._state=f,this._index--):(this._state=b,this._sectionStart=this._index))},At.prototype._stateInCloseingTagName=function(t){(">"===t||lt(t))&&(this._emitToken("onclosetag"),this._state=x,this._index--)},At.prototype._stateAfterCloseingTagName=function(t){">"===t&&(this._state=f,this._sectionStart=this._index+1)},At.prototype._stateBeforeAttributeName=function(t){">"===t?(this._cbs.onopentagend(),this._state=f,this._sectionStart=this._index+1):"/"===t?this._state=S:lt(t)||(this._state=A,this._sectionStart=this._index)},At.prototype._stateInSelfClosingTag=function(t){">"===t?(this._cbs.onselfclosingtag(),this._state=f,this._sectionStart=this._index+1):lt(t)||(this._state=l,this._index--)},At.prototype._stateInAttributeName=function(t){("="===t||"/"===t||">"===t||lt(t))&&(this._cbs.onattribname(this._getSection()),this._sectionStart=-1,this._state=B,this._index--)},At.prototype._stateAfterAttributeName=function(t){"="===t?this._state=C:"/"===t||">"===t?(this._cbs.onattribend(),this._state=l,this._index--):lt(t)||(this._cbs.onattribend(),this._state=A,this._sectionStart=this._index)},At.prototype._stateBeforeAttributeValue=function(t){"\""===t?(this._state=E,this._sectionStart=this._index+1):"'"===t?(this._state=I,this._sectionStart=this._index+1):lt(t)||(this._state=N,this._sectionStart=this._index,this._index--)},At.prototype._stateInAttributeValueDoubleQuotes=function(t){"\""===t?(this._emitToken("onattribdata"),this._cbs.onattribend(),this._state=l):this._decodeEntities&&"&"===t&&(this._emitToken("onattribdata"),this._baseState=this._state,this._state=ct,this._sectionStart=this._index)},At.prototype._stateInAttributeValueSingleQuotes=function(t){"'"===t?(this._emitToken("onattribdata"),this._cbs.onattribend(),this._state=l):this._decodeEntities&&"&"===t&&(this._emitToken("onattribdata"),this._baseState=this._state,this._state=ct,this._sectionStart=this._index)},At.prototype._stateInAttributeValueNoQuotes=function(t){lt(t)||">"===t?(this._emitToken("onattribdata"),this._cbs.onattribend(),this._state=l,this._index--):this._decodeEntities&&"&"===t&&(this._emitToken("onattribdata"),this._baseState=this._state,this._state=ct,this._sectionStart=this._index)},At.prototype._stateBeforeDeclaration=function(t){this._state="["===t?L:"-"===t?v:M},At.prototype._stateInDeclaration=function(t){">"===t&&(this._cbs.ondeclaration(this._getSection()),this._state=f,this._sectionStart=this._index+1)},At.prototype._stateInProcessingInstruction=function(t){">"===t&&(this._cbs.onprocessinginstruction(this._getSection()),this._state=f,this._sectionStart=this._index+1)},At.prototype._stateBeforeComment=function(t){"-"===t?(this._state=k,this._sectionStart=this._index+1):this._state=M},At.prototype._stateInComment=function(t){"-"===t&&(this._state=P)},At.prototype._stateAfterComment1=function(t){this._state="-"===t?w:k},At.prototype._stateAfterComment2=function(t){">"===t?(this._cbs.oncomment(this._buffer.substring(this._sectionStart,this._index-2)),this._state=f,this._sectionStart=this._index+1):"-"!==t&&(this._state=k)},At.prototype._stateBeforeCdata1=mt("C",O,M),At.prototype._stateBeforeCdata2=mt("D",V,M),At.prototype._stateBeforeCdata3=mt("A",Q,M),At.prototype._stateBeforeCdata4=mt("T",H,M),At.prototype._stateBeforeCdata5=mt("A",R,M),At.prototype._stateBeforeCdata6=function(t){"["===t?(this._state=Y,this._sectionStart=this._index+1):(this._state=M,this._index--)},At.prototype._stateInCdata=function(t){"]"===t&&(this._state=z)},At.prototype._stateAfterCdata1=(t="]",s=F,function(_){_===t&&(this._state=s)}),At.prototype._stateAfterCdata2=function(t){">"===t?(this._cbs.oncdata(this._buffer.substring(this._sectionStart,this._index-2)),this._state=f,this._sectionStart=this._index+1):"]"!==t&&(this._state=Y)},At.prototype._stateBeforeSpecial=function(t){"c"===t||"C"===t?this._state=j:"t"===t||"T"===t?this._state=st:(this._state=u,this._index--)},At.prototype._stateBeforeSpecialEnd=function(t){this._special!==bt||"c"!==t&&"C"!==t?this._special!==xt||"t"!==t&&"T"!==t?this._state=f:this._state=ht:this._state=U},At.prototype._stateBeforeScript1=gt("R",q),At.prototype._stateBeforeScript2=gt("I",G),At.prototype._stateBeforeScript3=gt("P",J),At.prototype._stateBeforeScript4=gt("T",K),At.prototype._stateBeforeScript5=function(t){("/"===t||">"===t||lt(t))&&(this._special=bt),this._state=u,this._index--},At.prototype._stateAfterScript1=mt("R",W,f),At.prototype._stateAfterScript2=mt("I",$,f),At.prototype._stateAfterScript3=mt("P",tt,f),At.prototype._stateAfterScript4=mt("T",et,f),At.prototype._stateAfterScript5=function(t){">"===t||lt(t)?(this._special=yt,this._state=b,this._sectionStart=this._index-6,this._index--):this._state=f},At.prototype._stateBeforeStyle1=gt("Y",it),At.prototype._stateBeforeStyle2=gt("L",at),At.prototype._stateBeforeStyle3=gt("E",_t),At.prototype._stateBeforeStyle4=function(t){("/"===t||">"===t||lt(t))&&(this._special=xt),this._state=u,this._index--},At.prototype._stateAfterStyle1=mt("Y",nt,f),At.prototype._stateAfterStyle2=mt("L",ot,f),At.prototype._stateAfterStyle3=mt("E",rt,f),At.prototype._stateAfterStyle4=function(t){">"===t||lt(t)?(this._special=yt,this._state=b,this._sectionStart=this._index-5,this._index--):this._state=f},At.prototype._stateBeforeEntity=mt("#",ft,pt),At.prototype._stateBeforeNumericEntity=mt("X",ut,dt),At.prototype._parseNamedEntityStrict=function(){if(this._sectionStart+16&&(s=6);s>=2;){var _=this._buffer.substr(t,s);if(n.hasOwnProperty(_))return this._emitPartial(n[_]),void(this._sectionStart+=s+1);s--}},At.prototype._stateInNamedEntity=function(t){";"===t?(this._parseNamedEntityStrict(),this._sectionStart+1"z")&&(t<"A"||t>"Z")&&(t<"0"||t>"9")&&(this._xmlMode||this._sectionStart+1===this._index||(this._baseState!==f?"="!==t&&this._parseNamedEntityStrict():this._parseLegacyEntity()),this._state=this._baseState,this._index--)},At.prototype._decodeNumericEntity=function(t,s){var h=this._sectionStart+t;if(h!==this._index){var n=this._buffer.substring(h,this._index),o=parseInt(n,s);this._emitPartial(_(o)),this._sectionStart=this._index}else this._sectionStart--;this._state=this._baseState},At.prototype._stateInNumericEntity=function(t){";"===t?(this._decodeNumericEntity(2,10),this._sectionStart++):(t<"0"||t>"9")&&(this._xmlMode?this._state=this._baseState:this._decodeNumericEntity(2,10),this._index--)},At.prototype._stateInHexEntity=function(t){";"===t?(this._decodeNumericEntity(3,16),this._sectionStart++):(t<"a"||t>"f")&&(t<"A"||t>"F")&&(t<"0"||t>"9")&&(this._xmlMode?this._state=this._baseState:this._decodeNumericEntity(3,16),this._index--)},At.prototype._cleanup=function(){this._sectionStart<0?(this._buffer="",this._bufferOffset+=this._index,this._index=0):this._running&&(this._state===f?(this._sectionStart!==this._index&&this._cbs.ontext(this._buffer.substr(this._sectionStart)),this._buffer="",this._bufferOffset+=this._index,this._index=0):this._sectionStart===this._index?(this._buffer="",this._bufferOffset+=this._index,this._index=0):(this._buffer=this._buffer.substr(this._sectionStart),this._index-=this._sectionStart,this._bufferOffset+=this._sectionStart),this._sectionStart=0)},At.prototype.write=function(t){this._ended&&this._cbs.onerror(Error(".write() after done!")),this._buffer+=t,this._parse()},At.prototype._parse=function(){for(;this._index=55296&&o<=57343||o>1114111)return"\ufffd";o in n&&(o=n[o]);var t="";o>65535&&(o-=65536,t+=String.fromCharCode(o>>>10&1023|55296),o=56320|1023&o);return t+=String.fromCharCode(o)}},368,[369]); +__d(function(n,o,t,_,c,d,e){c.exports={0:65533,128:8364,130:8218,131:402,132:8222,133:8230,134:8224,135:8225,136:710,137:8240,138:352,139:8249,140:338,142:381,145:8216,146:8217,147:8220,148:8221,149:8226,150:8211,151:8212,152:732,153:8482,154:353,155:8250,156:339,158:382,159:376}},369,[]); +__d(function(r,e,a,t,o,s,l){o.exports={Aacute:"\xc1",aacute:"\xe1",Abreve:"\u0102",abreve:"\u0103",ac:"\u223e",acd:"\u223f",acE:"\u223e\u0333",Acirc:"\xc2",acirc:"\xe2",acute:"\xb4",Acy:"\u0410",acy:"\u0430",AElig:"\xc6",aelig:"\xe6",af:"\u2061",Afr:"\ud835\udd04",afr:"\ud835\udd1e",Agrave:"\xc0",agrave:"\xe0",alefsym:"\u2135",aleph:"\u2135",Alpha:"\u0391",alpha:"\u03b1",Amacr:"\u0100",amacr:"\u0101",amalg:"\u2a3f",amp:"&",AMP:"&",andand:"\u2a55",And:"\u2a53",and:"\u2227",andd:"\u2a5c",andslope:"\u2a58",andv:"\u2a5a",ang:"\u2220",ange:"\u29a4",angle:"\u2220",angmsdaa:"\u29a8",angmsdab:"\u29a9",angmsdac:"\u29aa",angmsdad:"\u29ab",angmsdae:"\u29ac",angmsdaf:"\u29ad",angmsdag:"\u29ae",angmsdah:"\u29af",angmsd:"\u2221",angrt:"\u221f",angrtvb:"\u22be",angrtvbd:"\u299d",angsph:"\u2222",angst:"\xc5",angzarr:"\u237c",Aogon:"\u0104",aogon:"\u0105",Aopf:"\ud835\udd38",aopf:"\ud835\udd52",apacir:"\u2a6f",ap:"\u2248",apE:"\u2a70",ape:"\u224a",apid:"\u224b",apos:"'",ApplyFunction:"\u2061",approx:"\u2248",approxeq:"\u224a",Aring:"\xc5",aring:"\xe5",Ascr:"\ud835\udc9c",ascr:"\ud835\udcb6",Assign:"\u2254",ast:"*",asymp:"\u2248",asympeq:"\u224d",Atilde:"\xc3",atilde:"\xe3",Auml:"\xc4",auml:"\xe4",awconint:"\u2233",awint:"\u2a11",backcong:"\u224c",backepsilon:"\u03f6",backprime:"\u2035",backsim:"\u223d",backsimeq:"\u22cd",Backslash:"\u2216",Barv:"\u2ae7",barvee:"\u22bd",barwed:"\u2305",Barwed:"\u2306",barwedge:"\u2305",bbrk:"\u23b5",bbrktbrk:"\u23b6",bcong:"\u224c",Bcy:"\u0411",bcy:"\u0431",bdquo:"\u201e",becaus:"\u2235",because:"\u2235",Because:"\u2235",bemptyv:"\u29b0",bepsi:"\u03f6",bernou:"\u212c",Bernoullis:"\u212c",Beta:"\u0392",beta:"\u03b2",beth:"\u2136",between:"\u226c",Bfr:"\ud835\udd05",bfr:"\ud835\udd1f",bigcap:"\u22c2",bigcirc:"\u25ef",bigcup:"\u22c3",bigodot:"\u2a00",bigoplus:"\u2a01",bigotimes:"\u2a02",bigsqcup:"\u2a06",bigstar:"\u2605",bigtriangledown:"\u25bd",bigtriangleup:"\u25b3",biguplus:"\u2a04",bigvee:"\u22c1",bigwedge:"\u22c0",bkarow:"\u290d",blacklozenge:"\u29eb",blacksquare:"\u25aa",blacktriangle:"\u25b4",blacktriangledown:"\u25be",blacktriangleleft:"\u25c2",blacktriangleright:"\u25b8",blank:"\u2423",blk12:"\u2592",blk14:"\u2591",blk34:"\u2593",block:"\u2588",bne:"=\u20e5",bnequiv:"\u2261\u20e5",bNot:"\u2aed",bnot:"\u2310",Bopf:"\ud835\udd39",bopf:"\ud835\udd53",bot:"\u22a5",bottom:"\u22a5",bowtie:"\u22c8",boxbox:"\u29c9",boxdl:"\u2510",boxdL:"\u2555",boxDl:"\u2556",boxDL:"\u2557",boxdr:"\u250c",boxdR:"\u2552",boxDr:"\u2553",boxDR:"\u2554",boxh:"\u2500",boxH:"\u2550",boxhd:"\u252c",boxHd:"\u2564",boxhD:"\u2565",boxHD:"\u2566",boxhu:"\u2534",boxHu:"\u2567",boxhU:"\u2568",boxHU:"\u2569",boxminus:"\u229f",boxplus:"\u229e",boxtimes:"\u22a0",boxul:"\u2518",boxuL:"\u255b",boxUl:"\u255c",boxUL:"\u255d",boxur:"\u2514",boxuR:"\u2558",boxUr:"\u2559",boxUR:"\u255a",boxv:"\u2502",boxV:"\u2551",boxvh:"\u253c",boxvH:"\u256a",boxVh:"\u256b",boxVH:"\u256c",boxvl:"\u2524",boxvL:"\u2561",boxVl:"\u2562",boxVL:"\u2563",boxvr:"\u251c",boxvR:"\u255e",boxVr:"\u255f",boxVR:"\u2560",bprime:"\u2035",breve:"\u02d8",Breve:"\u02d8",brvbar:"\xa6",bscr:"\ud835\udcb7",Bscr:"\u212c",bsemi:"\u204f",bsim:"\u223d",bsime:"\u22cd",bsolb:"\u29c5",bsol:"\\",bsolhsub:"\u27c8",bull:"\u2022",bullet:"\u2022",bump:"\u224e",bumpE:"\u2aae",bumpe:"\u224f",Bumpeq:"\u224e",bumpeq:"\u224f",Cacute:"\u0106",cacute:"\u0107",capand:"\u2a44",capbrcup:"\u2a49",capcap:"\u2a4b",cap:"\u2229",Cap:"\u22d2",capcup:"\u2a47",capdot:"\u2a40",CapitalDifferentialD:"\u2145",caps:"\u2229\ufe00",caret:"\u2041",caron:"\u02c7",Cayleys:"\u212d",ccaps:"\u2a4d",Ccaron:"\u010c",ccaron:"\u010d",Ccedil:"\xc7",ccedil:"\xe7",Ccirc:"\u0108",ccirc:"\u0109",Cconint:"\u2230",ccups:"\u2a4c",ccupssm:"\u2a50",Cdot:"\u010a",cdot:"\u010b",cedil:"\xb8",Cedilla:"\xb8",cemptyv:"\u29b2",cent:"\xa2",centerdot:"\xb7",CenterDot:"\xb7",cfr:"\ud835\udd20",Cfr:"\u212d",CHcy:"\u0427",chcy:"\u0447",check:"\u2713",checkmark:"\u2713",Chi:"\u03a7",chi:"\u03c7",circ:"\u02c6",circeq:"\u2257",circlearrowleft:"\u21ba",circlearrowright:"\u21bb",circledast:"\u229b",circledcirc:"\u229a",circleddash:"\u229d",CircleDot:"\u2299",circledR:"\xae",circledS:"\u24c8",CircleMinus:"\u2296",CirclePlus:"\u2295",CircleTimes:"\u2297",cir:"\u25cb",cirE:"\u29c3",cire:"\u2257",cirfnint:"\u2a10",cirmid:"\u2aef",cirscir:"\u29c2",ClockwiseContourIntegral:"\u2232",CloseCurlyDoubleQuote:"\u201d",CloseCurlyQuote:"\u2019",clubs:"\u2663",clubsuit:"\u2663",colon:":",Colon:"\u2237",Colone:"\u2a74",colone:"\u2254",coloneq:"\u2254",comma:",",commat:"@",comp:"\u2201",compfn:"\u2218",complement:"\u2201",complexes:"\u2102",cong:"\u2245",congdot:"\u2a6d",Congruent:"\u2261",conint:"\u222e",Conint:"\u222f",ContourIntegral:"\u222e",copf:"\ud835\udd54",Copf:"\u2102",coprod:"\u2210",Coproduct:"\u2210",copy:"\xa9",COPY:"\xa9",copysr:"\u2117",CounterClockwiseContourIntegral:"\u2233",crarr:"\u21b5",cross:"\u2717",Cross:"\u2a2f",Cscr:"\ud835\udc9e",cscr:"\ud835\udcb8",csub:"\u2acf",csube:"\u2ad1",csup:"\u2ad0",csupe:"\u2ad2",ctdot:"\u22ef",cudarrl:"\u2938",cudarrr:"\u2935",cuepr:"\u22de",cuesc:"\u22df",cularr:"\u21b6",cularrp:"\u293d",cupbrcap:"\u2a48",cupcap:"\u2a46",CupCap:"\u224d",cup:"\u222a",Cup:"\u22d3",cupcup:"\u2a4a",cupdot:"\u228d",cupor:"\u2a45",cups:"\u222a\ufe00",curarr:"\u21b7",curarrm:"\u293c",curlyeqprec:"\u22de",curlyeqsucc:"\u22df",curlyvee:"\u22ce",curlywedge:"\u22cf",curren:"\xa4",curvearrowleft:"\u21b6",curvearrowright:"\u21b7",cuvee:"\u22ce",cuwed:"\u22cf",cwconint:"\u2232",cwint:"\u2231",cylcty:"\u232d",dagger:"\u2020",Dagger:"\u2021",daleth:"\u2138",darr:"\u2193",Darr:"\u21a1",dArr:"\u21d3",dash:"\u2010",Dashv:"\u2ae4",dashv:"\u22a3",dbkarow:"\u290f",dblac:"\u02dd",Dcaron:"\u010e",dcaron:"\u010f",Dcy:"\u0414",dcy:"\u0434",ddagger:"\u2021",ddarr:"\u21ca",DD:"\u2145",dd:"\u2146",DDotrahd:"\u2911",ddotseq:"\u2a77",deg:"\xb0",Del:"\u2207",Delta:"\u0394",delta:"\u03b4",demptyv:"\u29b1",dfisht:"\u297f",Dfr:"\ud835\udd07",dfr:"\ud835\udd21",dHar:"\u2965",dharl:"\u21c3",dharr:"\u21c2",DiacriticalAcute:"\xb4",DiacriticalDot:"\u02d9",DiacriticalDoubleAcute:"\u02dd",DiacriticalGrave:"`",DiacriticalTilde:"\u02dc",diam:"\u22c4",diamond:"\u22c4",Diamond:"\u22c4",diamondsuit:"\u2666",diams:"\u2666",die:"\xa8",DifferentialD:"\u2146",digamma:"\u03dd",disin:"\u22f2",div:"\xf7",divide:"\xf7",divideontimes:"\u22c7",divonx:"\u22c7",DJcy:"\u0402",djcy:"\u0452",dlcorn:"\u231e",dlcrop:"\u230d",dollar:"$",Dopf:"\ud835\udd3b",dopf:"\ud835\udd55",Dot:"\xa8",dot:"\u02d9",DotDot:"\u20dc",doteq:"\u2250",doteqdot:"\u2251",DotEqual:"\u2250",dotminus:"\u2238",dotplus:"\u2214",dotsquare:"\u22a1",doublebarwedge:"\u2306",DoubleContourIntegral:"\u222f",DoubleDot:"\xa8",DoubleDownArrow:"\u21d3",DoubleLeftArrow:"\u21d0",DoubleLeftRightArrow:"\u21d4",DoubleLeftTee:"\u2ae4",DoubleLongLeftArrow:"\u27f8",DoubleLongLeftRightArrow:"\u27fa",DoubleLongRightArrow:"\u27f9",DoubleRightArrow:"\u21d2",DoubleRightTee:"\u22a8",DoubleUpArrow:"\u21d1",DoubleUpDownArrow:"\u21d5",DoubleVerticalBar:"\u2225",DownArrowBar:"\u2913",downarrow:"\u2193",DownArrow:"\u2193",Downarrow:"\u21d3",DownArrowUpArrow:"\u21f5",DownBreve:"\u0311",downdownarrows:"\u21ca",downharpoonleft:"\u21c3",downharpoonright:"\u21c2",DownLeftRightVector:"\u2950",DownLeftTeeVector:"\u295e",DownLeftVectorBar:"\u2956",DownLeftVector:"\u21bd",DownRightTeeVector:"\u295f",DownRightVectorBar:"\u2957",DownRightVector:"\u21c1",DownTeeArrow:"\u21a7",DownTee:"\u22a4",drbkarow:"\u2910",drcorn:"\u231f",drcrop:"\u230c",Dscr:"\ud835\udc9f",dscr:"\ud835\udcb9",DScy:"\u0405",dscy:"\u0455",dsol:"\u29f6",Dstrok:"\u0110",dstrok:"\u0111",dtdot:"\u22f1",dtri:"\u25bf",dtrif:"\u25be",duarr:"\u21f5",duhar:"\u296f",dwangle:"\u29a6",DZcy:"\u040f",dzcy:"\u045f",dzigrarr:"\u27ff",Eacute:"\xc9",eacute:"\xe9",easter:"\u2a6e",Ecaron:"\u011a",ecaron:"\u011b",Ecirc:"\xca",ecirc:"\xea",ecir:"\u2256",ecolon:"\u2255",Ecy:"\u042d",ecy:"\u044d",eDDot:"\u2a77",Edot:"\u0116",edot:"\u0117",eDot:"\u2251",ee:"\u2147",efDot:"\u2252",Efr:"\ud835\udd08",efr:"\ud835\udd22",eg:"\u2a9a",Egrave:"\xc8",egrave:"\xe8",egs:"\u2a96",egsdot:"\u2a98",el:"\u2a99",Element:"\u2208",elinters:"\u23e7",ell:"\u2113",els:"\u2a95",elsdot:"\u2a97",Emacr:"\u0112",emacr:"\u0113",empty:"\u2205",emptyset:"\u2205",EmptySmallSquare:"\u25fb",emptyv:"\u2205",EmptyVerySmallSquare:"\u25ab",emsp13:"\u2004",emsp14:"\u2005",emsp:"\u2003",ENG:"\u014a",eng:"\u014b",ensp:"\u2002",Eogon:"\u0118",eogon:"\u0119",Eopf:"\ud835\udd3c",eopf:"\ud835\udd56",epar:"\u22d5",eparsl:"\u29e3",eplus:"\u2a71",epsi:"\u03b5",Epsilon:"\u0395",epsilon:"\u03b5",epsiv:"\u03f5",eqcirc:"\u2256",eqcolon:"\u2255",eqsim:"\u2242",eqslantgtr:"\u2a96",eqslantless:"\u2a95",Equal:"\u2a75",equals:"=",EqualTilde:"\u2242",equest:"\u225f",Equilibrium:"\u21cc",equiv:"\u2261",equivDD:"\u2a78",eqvparsl:"\u29e5",erarr:"\u2971",erDot:"\u2253",escr:"\u212f",Escr:"\u2130",esdot:"\u2250",Esim:"\u2a73",esim:"\u2242",Eta:"\u0397",eta:"\u03b7",ETH:"\xd0",eth:"\xf0",Euml:"\xcb",euml:"\xeb",euro:"\u20ac",excl:"!",exist:"\u2203",Exists:"\u2203",expectation:"\u2130",exponentiale:"\u2147",ExponentialE:"\u2147",fallingdotseq:"\u2252",Fcy:"\u0424",fcy:"\u0444",female:"\u2640",ffilig:"\ufb03",fflig:"\ufb00",ffllig:"\ufb04",Ffr:"\ud835\udd09",ffr:"\ud835\udd23",filig:"\ufb01",FilledSmallSquare:"\u25fc",FilledVerySmallSquare:"\u25aa",fjlig:"fj",flat:"\u266d",fllig:"\ufb02",fltns:"\u25b1",fnof:"\u0192",Fopf:"\ud835\udd3d",fopf:"\ud835\udd57",forall:"\u2200",ForAll:"\u2200",fork:"\u22d4",forkv:"\u2ad9",Fouriertrf:"\u2131",fpartint:"\u2a0d",frac12:"\xbd",frac13:"\u2153",frac14:"\xbc",frac15:"\u2155",frac16:"\u2159",frac18:"\u215b",frac23:"\u2154",frac25:"\u2156",frac34:"\xbe",frac35:"\u2157",frac38:"\u215c",frac45:"\u2158",frac56:"\u215a",frac58:"\u215d",frac78:"\u215e",frasl:"\u2044",frown:"\u2322",fscr:"\ud835\udcbb",Fscr:"\u2131",gacute:"\u01f5",Gamma:"\u0393",gamma:"\u03b3",Gammad:"\u03dc",gammad:"\u03dd",gap:"\u2a86",Gbreve:"\u011e",gbreve:"\u011f",Gcedil:"\u0122",Gcirc:"\u011c",gcirc:"\u011d",Gcy:"\u0413",gcy:"\u0433",Gdot:"\u0120",gdot:"\u0121",ge:"\u2265",gE:"\u2267",gEl:"\u2a8c",gel:"\u22db",geq:"\u2265",geqq:"\u2267",geqslant:"\u2a7e",gescc:"\u2aa9",ges:"\u2a7e",gesdot:"\u2a80",gesdoto:"\u2a82",gesdotol:"\u2a84",gesl:"\u22db\ufe00",gesles:"\u2a94",Gfr:"\ud835\udd0a",gfr:"\ud835\udd24",gg:"\u226b",Gg:"\u22d9",ggg:"\u22d9",gimel:"\u2137",GJcy:"\u0403",gjcy:"\u0453",gla:"\u2aa5",gl:"\u2277",glE:"\u2a92",glj:"\u2aa4",gnap:"\u2a8a",gnapprox:"\u2a8a",gne:"\u2a88",gnE:"\u2269",gneq:"\u2a88",gneqq:"\u2269",gnsim:"\u22e7",Gopf:"\ud835\udd3e",gopf:"\ud835\udd58",grave:"`",GreaterEqual:"\u2265",GreaterEqualLess:"\u22db",GreaterFullEqual:"\u2267",GreaterGreater:"\u2aa2",GreaterLess:"\u2277",GreaterSlantEqual:"\u2a7e",GreaterTilde:"\u2273",Gscr:"\ud835\udca2",gscr:"\u210a",gsim:"\u2273",gsime:"\u2a8e",gsiml:"\u2a90",gtcc:"\u2aa7",gtcir:"\u2a7a",gt:">",GT:">",Gt:"\u226b",gtdot:"\u22d7",gtlPar:"\u2995",gtquest:"\u2a7c",gtrapprox:"\u2a86",gtrarr:"\u2978",gtrdot:"\u22d7",gtreqless:"\u22db",gtreqqless:"\u2a8c",gtrless:"\u2277",gtrsim:"\u2273",gvertneqq:"\u2269\ufe00",gvnE:"\u2269\ufe00",Hacek:"\u02c7",hairsp:"\u200a",half:"\xbd",hamilt:"\u210b",HARDcy:"\u042a",hardcy:"\u044a",harrcir:"\u2948",harr:"\u2194",hArr:"\u21d4",harrw:"\u21ad",Hat:"^",hbar:"\u210f",Hcirc:"\u0124",hcirc:"\u0125",hearts:"\u2665",heartsuit:"\u2665",hellip:"\u2026",hercon:"\u22b9",hfr:"\ud835\udd25",Hfr:"\u210c",HilbertSpace:"\u210b",hksearow:"\u2925",hkswarow:"\u2926",hoarr:"\u21ff",homtht:"\u223b",hookleftarrow:"\u21a9",hookrightarrow:"\u21aa",hopf:"\ud835\udd59",Hopf:"\u210d",horbar:"\u2015",HorizontalLine:"\u2500",hscr:"\ud835\udcbd",Hscr:"\u210b",hslash:"\u210f",Hstrok:"\u0126",hstrok:"\u0127",HumpDownHump:"\u224e",HumpEqual:"\u224f",hybull:"\u2043",hyphen:"\u2010",Iacute:"\xcd",iacute:"\xed",ic:"\u2063",Icirc:"\xce",icirc:"\xee",Icy:"\u0418",icy:"\u0438",Idot:"\u0130",IEcy:"\u0415",iecy:"\u0435",iexcl:"\xa1",iff:"\u21d4",ifr:"\ud835\udd26",Ifr:"\u2111",Igrave:"\xcc",igrave:"\xec",ii:"\u2148",iiiint:"\u2a0c",iiint:"\u222d",iinfin:"\u29dc",iiota:"\u2129",IJlig:"\u0132",ijlig:"\u0133",Imacr:"\u012a",imacr:"\u012b",image:"\u2111",ImaginaryI:"\u2148",imagline:"\u2110",imagpart:"\u2111",imath:"\u0131",Im:"\u2111",imof:"\u22b7",imped:"\u01b5",Implies:"\u21d2",incare:"\u2105",in:"\u2208",infin:"\u221e",infintie:"\u29dd",inodot:"\u0131",intcal:"\u22ba",int:"\u222b",Int:"\u222c",integers:"\u2124",Integral:"\u222b",intercal:"\u22ba",Intersection:"\u22c2",intlarhk:"\u2a17",intprod:"\u2a3c",InvisibleComma:"\u2063",InvisibleTimes:"\u2062",IOcy:"\u0401",iocy:"\u0451",Iogon:"\u012e",iogon:"\u012f",Iopf:"\ud835\udd40",iopf:"\ud835\udd5a",Iota:"\u0399",iota:"\u03b9",iprod:"\u2a3c",iquest:"\xbf",iscr:"\ud835\udcbe",Iscr:"\u2110",isin:"\u2208",isindot:"\u22f5",isinE:"\u22f9",isins:"\u22f4",isinsv:"\u22f3",isinv:"\u2208",it:"\u2062",Itilde:"\u0128",itilde:"\u0129",Iukcy:"\u0406",iukcy:"\u0456",Iuml:"\xcf",iuml:"\xef",Jcirc:"\u0134",jcirc:"\u0135",Jcy:"\u0419",jcy:"\u0439",Jfr:"\ud835\udd0d",jfr:"\ud835\udd27",jmath:"\u0237",Jopf:"\ud835\udd41",jopf:"\ud835\udd5b",Jscr:"\ud835\udca5",jscr:"\ud835\udcbf",Jsercy:"\u0408",jsercy:"\u0458",Jukcy:"\u0404",jukcy:"\u0454",Kappa:"\u039a",kappa:"\u03ba",kappav:"\u03f0",Kcedil:"\u0136",kcedil:"\u0137",Kcy:"\u041a",kcy:"\u043a",Kfr:"\ud835\udd0e",kfr:"\ud835\udd28",kgreen:"\u0138",KHcy:"\u0425",khcy:"\u0445",KJcy:"\u040c",kjcy:"\u045c",Kopf:"\ud835\udd42",kopf:"\ud835\udd5c",Kscr:"\ud835\udca6",kscr:"\ud835\udcc0",lAarr:"\u21da",Lacute:"\u0139",lacute:"\u013a",laemptyv:"\u29b4",lagran:"\u2112",Lambda:"\u039b",lambda:"\u03bb",lang:"\u27e8",Lang:"\u27ea",langd:"\u2991",langle:"\u27e8",lap:"\u2a85",Laplacetrf:"\u2112",laquo:"\xab",larrb:"\u21e4",larrbfs:"\u291f",larr:"\u2190",Larr:"\u219e",lArr:"\u21d0",larrfs:"\u291d",larrhk:"\u21a9",larrlp:"\u21ab",larrpl:"\u2939",larrsim:"\u2973",larrtl:"\u21a2",latail:"\u2919",lAtail:"\u291b",lat:"\u2aab",late:"\u2aad",lates:"\u2aad\ufe00",lbarr:"\u290c",lBarr:"\u290e",lbbrk:"\u2772",lbrace:"{",lbrack:"[",lbrke:"\u298b",lbrksld:"\u298f",lbrkslu:"\u298d",Lcaron:"\u013d",lcaron:"\u013e",Lcedil:"\u013b",lcedil:"\u013c",lceil:"\u2308",lcub:"{",Lcy:"\u041b",lcy:"\u043b",ldca:"\u2936",ldquo:"\u201c",ldquor:"\u201e",ldrdhar:"\u2967",ldrushar:"\u294b",ldsh:"\u21b2",le:"\u2264",lE:"\u2266",LeftAngleBracket:"\u27e8",LeftArrowBar:"\u21e4",leftarrow:"\u2190",LeftArrow:"\u2190",Leftarrow:"\u21d0",LeftArrowRightArrow:"\u21c6",leftarrowtail:"\u21a2",LeftCeiling:"\u2308",LeftDoubleBracket:"\u27e6",LeftDownTeeVector:"\u2961",LeftDownVectorBar:"\u2959",LeftDownVector:"\u21c3",LeftFloor:"\u230a",leftharpoondown:"\u21bd",leftharpoonup:"\u21bc",leftleftarrows:"\u21c7",leftrightarrow:"\u2194",LeftRightArrow:"\u2194",Leftrightarrow:"\u21d4",leftrightarrows:"\u21c6",leftrightharpoons:"\u21cb",leftrightsquigarrow:"\u21ad",LeftRightVector:"\u294e",LeftTeeArrow:"\u21a4",LeftTee:"\u22a3",LeftTeeVector:"\u295a",leftthreetimes:"\u22cb",LeftTriangleBar:"\u29cf",LeftTriangle:"\u22b2",LeftTriangleEqual:"\u22b4",LeftUpDownVector:"\u2951",LeftUpTeeVector:"\u2960",LeftUpVectorBar:"\u2958",LeftUpVector:"\u21bf",LeftVectorBar:"\u2952",LeftVector:"\u21bc",lEg:"\u2a8b",leg:"\u22da",leq:"\u2264",leqq:"\u2266",leqslant:"\u2a7d",lescc:"\u2aa8",les:"\u2a7d",lesdot:"\u2a7f",lesdoto:"\u2a81",lesdotor:"\u2a83",lesg:"\u22da\ufe00",lesges:"\u2a93",lessapprox:"\u2a85",lessdot:"\u22d6",lesseqgtr:"\u22da",lesseqqgtr:"\u2a8b",LessEqualGreater:"\u22da",LessFullEqual:"\u2266",LessGreater:"\u2276",lessgtr:"\u2276",LessLess:"\u2aa1",lesssim:"\u2272",LessSlantEqual:"\u2a7d",LessTilde:"\u2272",lfisht:"\u297c",lfloor:"\u230a",Lfr:"\ud835\udd0f",lfr:"\ud835\udd29",lg:"\u2276",lgE:"\u2a91",lHar:"\u2962",lhard:"\u21bd",lharu:"\u21bc",lharul:"\u296a",lhblk:"\u2584",LJcy:"\u0409",ljcy:"\u0459",llarr:"\u21c7",ll:"\u226a",Ll:"\u22d8",llcorner:"\u231e",Lleftarrow:"\u21da",llhard:"\u296b",lltri:"\u25fa",Lmidot:"\u013f",lmidot:"\u0140",lmoustache:"\u23b0",lmoust:"\u23b0",lnap:"\u2a89",lnapprox:"\u2a89",lne:"\u2a87",lnE:"\u2268",lneq:"\u2a87",lneqq:"\u2268",lnsim:"\u22e6",loang:"\u27ec",loarr:"\u21fd",lobrk:"\u27e6",longleftarrow:"\u27f5",LongLeftArrow:"\u27f5",Longleftarrow:"\u27f8",longleftrightarrow:"\u27f7",LongLeftRightArrow:"\u27f7",Longleftrightarrow:"\u27fa",longmapsto:"\u27fc",longrightarrow:"\u27f6",LongRightArrow:"\u27f6",Longrightarrow:"\u27f9",looparrowleft:"\u21ab",looparrowright:"\u21ac",lopar:"\u2985",Lopf:"\ud835\udd43",lopf:"\ud835\udd5d",loplus:"\u2a2d",lotimes:"\u2a34",lowast:"\u2217",lowbar:"_",LowerLeftArrow:"\u2199",LowerRightArrow:"\u2198",loz:"\u25ca",lozenge:"\u25ca",lozf:"\u29eb",lpar:"(",lparlt:"\u2993",lrarr:"\u21c6",lrcorner:"\u231f",lrhar:"\u21cb",lrhard:"\u296d",lrm:"\u200e",lrtri:"\u22bf",lsaquo:"\u2039",lscr:"\ud835\udcc1",Lscr:"\u2112",lsh:"\u21b0",Lsh:"\u21b0",lsim:"\u2272",lsime:"\u2a8d",lsimg:"\u2a8f",lsqb:"[",lsquo:"\u2018",lsquor:"\u201a",Lstrok:"\u0141",lstrok:"\u0142",ltcc:"\u2aa6",ltcir:"\u2a79",lt:"<",LT:"<",Lt:"\u226a",ltdot:"\u22d6",lthree:"\u22cb",ltimes:"\u22c9",ltlarr:"\u2976",ltquest:"\u2a7b",ltri:"\u25c3",ltrie:"\u22b4",ltrif:"\u25c2",ltrPar:"\u2996",lurdshar:"\u294a",luruhar:"\u2966",lvertneqq:"\u2268\ufe00",lvnE:"\u2268\ufe00",macr:"\xaf",male:"\u2642",malt:"\u2720",maltese:"\u2720",Map:"\u2905",map:"\u21a6",mapsto:"\u21a6",mapstodown:"\u21a7",mapstoleft:"\u21a4",mapstoup:"\u21a5",marker:"\u25ae",mcomma:"\u2a29",Mcy:"\u041c",mcy:"\u043c",mdash:"\u2014",mDDot:"\u223a",measuredangle:"\u2221",MediumSpace:"\u205f",Mellintrf:"\u2133",Mfr:"\ud835\udd10",mfr:"\ud835\udd2a",mho:"\u2127",micro:"\xb5",midast:"*",midcir:"\u2af0",mid:"\u2223",middot:"\xb7",minusb:"\u229f",minus:"\u2212",minusd:"\u2238",minusdu:"\u2a2a",MinusPlus:"\u2213",mlcp:"\u2adb",mldr:"\u2026",mnplus:"\u2213",models:"\u22a7",Mopf:"\ud835\udd44",mopf:"\ud835\udd5e",mp:"\u2213",mscr:"\ud835\udcc2",Mscr:"\u2133",mstpos:"\u223e",Mu:"\u039c",mu:"\u03bc",multimap:"\u22b8",mumap:"\u22b8",nabla:"\u2207",Nacute:"\u0143",nacute:"\u0144",nang:"\u2220\u20d2",nap:"\u2249",napE:"\u2a70\u0338",napid:"\u224b\u0338",napos:"\u0149",napprox:"\u2249",natural:"\u266e",naturals:"\u2115",natur:"\u266e",nbsp:"\xa0",nbump:"\u224e\u0338",nbumpe:"\u224f\u0338",ncap:"\u2a43",Ncaron:"\u0147",ncaron:"\u0148",Ncedil:"\u0145",ncedil:"\u0146",ncong:"\u2247",ncongdot:"\u2a6d\u0338",ncup:"\u2a42",Ncy:"\u041d",ncy:"\u043d",ndash:"\u2013",nearhk:"\u2924",nearr:"\u2197",neArr:"\u21d7",nearrow:"\u2197",ne:"\u2260",nedot:"\u2250\u0338",NegativeMediumSpace:"\u200b",NegativeThickSpace:"\u200b",NegativeThinSpace:"\u200b",NegativeVeryThinSpace:"\u200b",nequiv:"\u2262",nesear:"\u2928",nesim:"\u2242\u0338",NestedGreaterGreater:"\u226b",NestedLessLess:"\u226a",NewLine:"\n",nexist:"\u2204",nexists:"\u2204",Nfr:"\ud835\udd11",nfr:"\ud835\udd2b",ngE:"\u2267\u0338",nge:"\u2271",ngeq:"\u2271",ngeqq:"\u2267\u0338",ngeqslant:"\u2a7e\u0338",nges:"\u2a7e\u0338",nGg:"\u22d9\u0338",ngsim:"\u2275",nGt:"\u226b\u20d2",ngt:"\u226f",ngtr:"\u226f",nGtv:"\u226b\u0338",nharr:"\u21ae",nhArr:"\u21ce",nhpar:"\u2af2",ni:"\u220b",nis:"\u22fc",nisd:"\u22fa",niv:"\u220b",NJcy:"\u040a",njcy:"\u045a",nlarr:"\u219a",nlArr:"\u21cd",nldr:"\u2025",nlE:"\u2266\u0338",nle:"\u2270",nleftarrow:"\u219a",nLeftarrow:"\u21cd",nleftrightarrow:"\u21ae",nLeftrightarrow:"\u21ce",nleq:"\u2270",nleqq:"\u2266\u0338",nleqslant:"\u2a7d\u0338",nles:"\u2a7d\u0338",nless:"\u226e",nLl:"\u22d8\u0338",nlsim:"\u2274",nLt:"\u226a\u20d2",nlt:"\u226e",nltri:"\u22ea",nltrie:"\u22ec",nLtv:"\u226a\u0338",nmid:"\u2224",NoBreak:"\u2060",NonBreakingSpace:"\xa0",nopf:"\ud835\udd5f",Nopf:"\u2115",Not:"\u2aec",not:"\xac",NotCongruent:"\u2262",NotCupCap:"\u226d",NotDoubleVerticalBar:"\u2226",NotElement:"\u2209",NotEqual:"\u2260",NotEqualTilde:"\u2242\u0338",NotExists:"\u2204",NotGreater:"\u226f",NotGreaterEqual:"\u2271",NotGreaterFullEqual:"\u2267\u0338",NotGreaterGreater:"\u226b\u0338",NotGreaterLess:"\u2279",NotGreaterSlantEqual:"\u2a7e\u0338",NotGreaterTilde:"\u2275",NotHumpDownHump:"\u224e\u0338",NotHumpEqual:"\u224f\u0338",notin:"\u2209",notindot:"\u22f5\u0338",notinE:"\u22f9\u0338",notinva:"\u2209",notinvb:"\u22f7",notinvc:"\u22f6",NotLeftTriangleBar:"\u29cf\u0338",NotLeftTriangle:"\u22ea",NotLeftTriangleEqual:"\u22ec",NotLess:"\u226e",NotLessEqual:"\u2270",NotLessGreater:"\u2278",NotLessLess:"\u226a\u0338",NotLessSlantEqual:"\u2a7d\u0338",NotLessTilde:"\u2274",NotNestedGreaterGreater:"\u2aa2\u0338",NotNestedLessLess:"\u2aa1\u0338",notni:"\u220c",notniva:"\u220c",notnivb:"\u22fe",notnivc:"\u22fd",NotPrecedes:"\u2280",NotPrecedesEqual:"\u2aaf\u0338",NotPrecedesSlantEqual:"\u22e0",NotReverseElement:"\u220c",NotRightTriangleBar:"\u29d0\u0338",NotRightTriangle:"\u22eb",NotRightTriangleEqual:"\u22ed",NotSquareSubset:"\u228f\u0338",NotSquareSubsetEqual:"\u22e2",NotSquareSuperset:"\u2290\u0338",NotSquareSupersetEqual:"\u22e3",NotSubset:"\u2282\u20d2",NotSubsetEqual:"\u2288",NotSucceeds:"\u2281",NotSucceedsEqual:"\u2ab0\u0338",NotSucceedsSlantEqual:"\u22e1",NotSucceedsTilde:"\u227f\u0338",NotSuperset:"\u2283\u20d2",NotSupersetEqual:"\u2289",NotTilde:"\u2241",NotTildeEqual:"\u2244",NotTildeFullEqual:"\u2247",NotTildeTilde:"\u2249",NotVerticalBar:"\u2224",nparallel:"\u2226",npar:"\u2226",nparsl:"\u2afd\u20e5",npart:"\u2202\u0338",npolint:"\u2a14",npr:"\u2280",nprcue:"\u22e0",nprec:"\u2280",npreceq:"\u2aaf\u0338",npre:"\u2aaf\u0338",nrarrc:"\u2933\u0338",nrarr:"\u219b",nrArr:"\u21cf",nrarrw:"\u219d\u0338",nrightarrow:"\u219b",nRightarrow:"\u21cf",nrtri:"\u22eb",nrtrie:"\u22ed",nsc:"\u2281",nsccue:"\u22e1",nsce:"\u2ab0\u0338",Nscr:"\ud835\udca9",nscr:"\ud835\udcc3",nshortmid:"\u2224",nshortparallel:"\u2226",nsim:"\u2241",nsime:"\u2244",nsimeq:"\u2244",nsmid:"\u2224",nspar:"\u2226",nsqsube:"\u22e2",nsqsupe:"\u22e3",nsub:"\u2284",nsubE:"\u2ac5\u0338",nsube:"\u2288",nsubset:"\u2282\u20d2",nsubseteq:"\u2288",nsubseteqq:"\u2ac5\u0338",nsucc:"\u2281",nsucceq:"\u2ab0\u0338",nsup:"\u2285",nsupE:"\u2ac6\u0338",nsupe:"\u2289",nsupset:"\u2283\u20d2",nsupseteq:"\u2289",nsupseteqq:"\u2ac6\u0338",ntgl:"\u2279",Ntilde:"\xd1",ntilde:"\xf1",ntlg:"\u2278",ntriangleleft:"\u22ea",ntrianglelefteq:"\u22ec",ntriangleright:"\u22eb",ntrianglerighteq:"\u22ed",Nu:"\u039d",nu:"\u03bd",num:"#",numero:"\u2116",numsp:"\u2007",nvap:"\u224d\u20d2",nvdash:"\u22ac",nvDash:"\u22ad",nVdash:"\u22ae",nVDash:"\u22af",nvge:"\u2265\u20d2",nvgt:">\u20d2",nvHarr:"\u2904",nvinfin:"\u29de",nvlArr:"\u2902",nvle:"\u2264\u20d2",nvlt:"<\u20d2",nvltrie:"\u22b4\u20d2",nvrArr:"\u2903",nvrtrie:"\u22b5\u20d2",nvsim:"\u223c\u20d2",nwarhk:"\u2923",nwarr:"\u2196",nwArr:"\u21d6",nwarrow:"\u2196",nwnear:"\u2927",Oacute:"\xd3",oacute:"\xf3",oast:"\u229b",Ocirc:"\xd4",ocirc:"\xf4",ocir:"\u229a",Ocy:"\u041e",ocy:"\u043e",odash:"\u229d",Odblac:"\u0150",odblac:"\u0151",odiv:"\u2a38",odot:"\u2299",odsold:"\u29bc",OElig:"\u0152",oelig:"\u0153",ofcir:"\u29bf",Ofr:"\ud835\udd12",ofr:"\ud835\udd2c",ogon:"\u02db",Ograve:"\xd2",ograve:"\xf2",ogt:"\u29c1",ohbar:"\u29b5",ohm:"\u03a9",oint:"\u222e",olarr:"\u21ba",olcir:"\u29be",olcross:"\u29bb",oline:"\u203e",olt:"\u29c0",Omacr:"\u014c",omacr:"\u014d",Omega:"\u03a9",omega:"\u03c9",Omicron:"\u039f",omicron:"\u03bf",omid:"\u29b6",ominus:"\u2296",Oopf:"\ud835\udd46",oopf:"\ud835\udd60",opar:"\u29b7",OpenCurlyDoubleQuote:"\u201c",OpenCurlyQuote:"\u2018",operp:"\u29b9",oplus:"\u2295",orarr:"\u21bb",Or:"\u2a54",or:"\u2228",ord:"\u2a5d",order:"\u2134",orderof:"\u2134",ordf:"\xaa",ordm:"\xba",origof:"\u22b6",oror:"\u2a56",orslope:"\u2a57",orv:"\u2a5b",oS:"\u24c8",Oscr:"\ud835\udcaa",oscr:"\u2134",Oslash:"\xd8",oslash:"\xf8",osol:"\u2298",Otilde:"\xd5",otilde:"\xf5",otimesas:"\u2a36",Otimes:"\u2a37",otimes:"\u2297",Ouml:"\xd6",ouml:"\xf6",ovbar:"\u233d",OverBar:"\u203e",OverBrace:"\u23de",OverBracket:"\u23b4",OverParenthesis:"\u23dc",para:"\xb6",parallel:"\u2225",par:"\u2225",parsim:"\u2af3",parsl:"\u2afd",part:"\u2202",PartialD:"\u2202",Pcy:"\u041f",pcy:"\u043f",percnt:"%",period:".",permil:"\u2030",perp:"\u22a5",pertenk:"\u2031",Pfr:"\ud835\udd13",pfr:"\ud835\udd2d",Phi:"\u03a6",phi:"\u03c6",phiv:"\u03d5",phmmat:"\u2133",phone:"\u260e",Pi:"\u03a0",pi:"\u03c0",pitchfork:"\u22d4",piv:"\u03d6",planck:"\u210f",planckh:"\u210e",plankv:"\u210f",plusacir:"\u2a23",plusb:"\u229e",pluscir:"\u2a22",plus:"+",plusdo:"\u2214",plusdu:"\u2a25",pluse:"\u2a72",PlusMinus:"\xb1",plusmn:"\xb1",plussim:"\u2a26",plustwo:"\u2a27",pm:"\xb1",Poincareplane:"\u210c",pointint:"\u2a15",popf:"\ud835\udd61",Popf:"\u2119",pound:"\xa3",prap:"\u2ab7",Pr:"\u2abb",pr:"\u227a",prcue:"\u227c",precapprox:"\u2ab7",prec:"\u227a",preccurlyeq:"\u227c",Precedes:"\u227a",PrecedesEqual:"\u2aaf",PrecedesSlantEqual:"\u227c",PrecedesTilde:"\u227e",preceq:"\u2aaf",precnapprox:"\u2ab9",precneqq:"\u2ab5",precnsim:"\u22e8",pre:"\u2aaf",prE:"\u2ab3",precsim:"\u227e",prime:"\u2032",Prime:"\u2033",primes:"\u2119",prnap:"\u2ab9",prnE:"\u2ab5",prnsim:"\u22e8",prod:"\u220f",Product:"\u220f",profalar:"\u232e",profline:"\u2312",profsurf:"\u2313",prop:"\u221d",Proportional:"\u221d",Proportion:"\u2237",propto:"\u221d",prsim:"\u227e",prurel:"\u22b0",Pscr:"\ud835\udcab",pscr:"\ud835\udcc5",Psi:"\u03a8",psi:"\u03c8",puncsp:"\u2008",Qfr:"\ud835\udd14",qfr:"\ud835\udd2e",qint:"\u2a0c",qopf:"\ud835\udd62",Qopf:"\u211a",qprime:"\u2057",Qscr:"\ud835\udcac",qscr:"\ud835\udcc6",quaternions:"\u210d",quatint:"\u2a16",quest:"?",questeq:"\u225f",quot:"\"",QUOT:"\"",rAarr:"\u21db",race:"\u223d\u0331",Racute:"\u0154",racute:"\u0155",radic:"\u221a",raemptyv:"\u29b3",rang:"\u27e9",Rang:"\u27eb",rangd:"\u2992",range:"\u29a5",rangle:"\u27e9",raquo:"\xbb",rarrap:"\u2975",rarrb:"\u21e5",rarrbfs:"\u2920",rarrc:"\u2933",rarr:"\u2192",Rarr:"\u21a0",rArr:"\u21d2",rarrfs:"\u291e",rarrhk:"\u21aa",rarrlp:"\u21ac",rarrpl:"\u2945",rarrsim:"\u2974",Rarrtl:"\u2916",rarrtl:"\u21a3",rarrw:"\u219d",ratail:"\u291a",rAtail:"\u291c",ratio:"\u2236",rationals:"\u211a",rbarr:"\u290d",rBarr:"\u290f",RBarr:"\u2910",rbbrk:"\u2773",rbrace:"}",rbrack:"]",rbrke:"\u298c",rbrksld:"\u298e",rbrkslu:"\u2990",Rcaron:"\u0158",rcaron:"\u0159",Rcedil:"\u0156",rcedil:"\u0157",rceil:"\u2309",rcub:"}",Rcy:"\u0420",rcy:"\u0440",rdca:"\u2937",rdldhar:"\u2969",rdquo:"\u201d",rdquor:"\u201d",rdsh:"\u21b3",real:"\u211c",realine:"\u211b",realpart:"\u211c",reals:"\u211d",Re:"\u211c",rect:"\u25ad",reg:"\xae",REG:"\xae",ReverseElement:"\u220b",ReverseEquilibrium:"\u21cb",ReverseUpEquilibrium:"\u296f",rfisht:"\u297d",rfloor:"\u230b",rfr:"\ud835\udd2f",Rfr:"\u211c",rHar:"\u2964",rhard:"\u21c1",rharu:"\u21c0",rharul:"\u296c",Rho:"\u03a1",rho:"\u03c1",rhov:"\u03f1",RightAngleBracket:"\u27e9",RightArrowBar:"\u21e5",rightarrow:"\u2192",RightArrow:"\u2192",Rightarrow:"\u21d2",RightArrowLeftArrow:"\u21c4",rightarrowtail:"\u21a3",RightCeiling:"\u2309",RightDoubleBracket:"\u27e7",RightDownTeeVector:"\u295d",RightDownVectorBar:"\u2955",RightDownVector:"\u21c2",RightFloor:"\u230b",rightharpoondown:"\u21c1",rightharpoonup:"\u21c0",rightleftarrows:"\u21c4",rightleftharpoons:"\u21cc",rightrightarrows:"\u21c9",rightsquigarrow:"\u219d",RightTeeArrow:"\u21a6",RightTee:"\u22a2",RightTeeVector:"\u295b",rightthreetimes:"\u22cc",RightTriangleBar:"\u29d0",RightTriangle:"\u22b3",RightTriangleEqual:"\u22b5",RightUpDownVector:"\u294f",RightUpTeeVector:"\u295c",RightUpVectorBar:"\u2954",RightUpVector:"\u21be",RightVectorBar:"\u2953",RightVector:"\u21c0",ring:"\u02da",risingdotseq:"\u2253",rlarr:"\u21c4",rlhar:"\u21cc",rlm:"\u200f",rmoustache:"\u23b1",rmoust:"\u23b1",rnmid:"\u2aee",roang:"\u27ed",roarr:"\u21fe",robrk:"\u27e7",ropar:"\u2986",ropf:"\ud835\udd63",Ropf:"\u211d",roplus:"\u2a2e",rotimes:"\u2a35",RoundImplies:"\u2970",rpar:")",rpargt:"\u2994",rppolint:"\u2a12",rrarr:"\u21c9",Rrightarrow:"\u21db",rsaquo:"\u203a",rscr:"\ud835\udcc7",Rscr:"\u211b",rsh:"\u21b1",Rsh:"\u21b1",rsqb:"]",rsquo:"\u2019",rsquor:"\u2019",rthree:"\u22cc",rtimes:"\u22ca",rtri:"\u25b9",rtrie:"\u22b5",rtrif:"\u25b8",rtriltri:"\u29ce",RuleDelayed:"\u29f4",ruluhar:"\u2968",rx:"\u211e",Sacute:"\u015a",sacute:"\u015b",sbquo:"\u201a",scap:"\u2ab8",Scaron:"\u0160",scaron:"\u0161",Sc:"\u2abc",sc:"\u227b",sccue:"\u227d",sce:"\u2ab0",scE:"\u2ab4",Scedil:"\u015e",scedil:"\u015f",Scirc:"\u015c",scirc:"\u015d",scnap:"\u2aba",scnE:"\u2ab6",scnsim:"\u22e9",scpolint:"\u2a13",scsim:"\u227f",Scy:"\u0421",scy:"\u0441",sdotb:"\u22a1",sdot:"\u22c5",sdote:"\u2a66",searhk:"\u2925",searr:"\u2198",seArr:"\u21d8",searrow:"\u2198",sect:"\xa7",semi:";",seswar:"\u2929",setminus:"\u2216",setmn:"\u2216",sext:"\u2736",Sfr:"\ud835\udd16",sfr:"\ud835\udd30",sfrown:"\u2322",sharp:"\u266f",SHCHcy:"\u0429",shchcy:"\u0449",SHcy:"\u0428",shcy:"\u0448",ShortDownArrow:"\u2193",ShortLeftArrow:"\u2190",shortmid:"\u2223",shortparallel:"\u2225",ShortRightArrow:"\u2192",ShortUpArrow:"\u2191",shy:"\xad",Sigma:"\u03a3",sigma:"\u03c3",sigmaf:"\u03c2",sigmav:"\u03c2",sim:"\u223c",simdot:"\u2a6a",sime:"\u2243",simeq:"\u2243",simg:"\u2a9e",simgE:"\u2aa0",siml:"\u2a9d",simlE:"\u2a9f",simne:"\u2246",simplus:"\u2a24",simrarr:"\u2972",slarr:"\u2190",SmallCircle:"\u2218",smallsetminus:"\u2216",smashp:"\u2a33",smeparsl:"\u29e4",smid:"\u2223",smile:"\u2323",smt:"\u2aaa",smte:"\u2aac",smtes:"\u2aac\ufe00",SOFTcy:"\u042c",softcy:"\u044c",solbar:"\u233f",solb:"\u29c4",sol:"/",Sopf:"\ud835\udd4a",sopf:"\ud835\udd64",spades:"\u2660",spadesuit:"\u2660",spar:"\u2225",sqcap:"\u2293",sqcaps:"\u2293\ufe00",sqcup:"\u2294",sqcups:"\u2294\ufe00",Sqrt:"\u221a",sqsub:"\u228f",sqsube:"\u2291",sqsubset:"\u228f",sqsubseteq:"\u2291",sqsup:"\u2290",sqsupe:"\u2292",sqsupset:"\u2290",sqsupseteq:"\u2292",square:"\u25a1",Square:"\u25a1",SquareIntersection:"\u2293",SquareSubset:"\u228f",SquareSubsetEqual:"\u2291",SquareSuperset:"\u2290",SquareSupersetEqual:"\u2292",SquareUnion:"\u2294",squarf:"\u25aa",squ:"\u25a1",squf:"\u25aa",srarr:"\u2192",Sscr:"\ud835\udcae",sscr:"\ud835\udcc8",ssetmn:"\u2216",ssmile:"\u2323",sstarf:"\u22c6",Star:"\u22c6",star:"\u2606",starf:"\u2605",straightepsilon:"\u03f5",straightphi:"\u03d5",strns:"\xaf",sub:"\u2282",Sub:"\u22d0",subdot:"\u2abd",subE:"\u2ac5",sube:"\u2286",subedot:"\u2ac3",submult:"\u2ac1",subnE:"\u2acb",subne:"\u228a",subplus:"\u2abf",subrarr:"\u2979",subset:"\u2282",Subset:"\u22d0",subseteq:"\u2286",subseteqq:"\u2ac5",SubsetEqual:"\u2286",subsetneq:"\u228a",subsetneqq:"\u2acb",subsim:"\u2ac7",subsub:"\u2ad5",subsup:"\u2ad3",succapprox:"\u2ab8",succ:"\u227b",succcurlyeq:"\u227d",Succeeds:"\u227b",SucceedsEqual:"\u2ab0",SucceedsSlantEqual:"\u227d",SucceedsTilde:"\u227f",succeq:"\u2ab0",succnapprox:"\u2aba",succneqq:"\u2ab6",succnsim:"\u22e9",succsim:"\u227f",SuchThat:"\u220b",sum:"\u2211",Sum:"\u2211",sung:"\u266a",sup1:"\xb9",sup2:"\xb2",sup3:"\xb3",sup:"\u2283",Sup:"\u22d1",supdot:"\u2abe",supdsub:"\u2ad8",supE:"\u2ac6",supe:"\u2287",supedot:"\u2ac4",Superset:"\u2283",SupersetEqual:"\u2287",suphsol:"\u27c9",suphsub:"\u2ad7",suplarr:"\u297b",supmult:"\u2ac2",supnE:"\u2acc",supne:"\u228b",supplus:"\u2ac0",supset:"\u2283",Supset:"\u22d1",supseteq:"\u2287",supseteqq:"\u2ac6",supsetneq:"\u228b",supsetneqq:"\u2acc",supsim:"\u2ac8",supsub:"\u2ad4",supsup:"\u2ad6",swarhk:"\u2926",swarr:"\u2199",swArr:"\u21d9",swarrow:"\u2199",swnwar:"\u292a",szlig:"\xdf",Tab:"\t",target:"\u2316",Tau:"\u03a4",tau:"\u03c4",tbrk:"\u23b4",Tcaron:"\u0164",tcaron:"\u0165",Tcedil:"\u0162",tcedil:"\u0163",Tcy:"\u0422",tcy:"\u0442",tdot:"\u20db",telrec:"\u2315",Tfr:"\ud835\udd17",tfr:"\ud835\udd31",there4:"\u2234",therefore:"\u2234",Therefore:"\u2234",Theta:"\u0398",theta:"\u03b8",thetasym:"\u03d1",thetav:"\u03d1",thickapprox:"\u2248",thicksim:"\u223c",ThickSpace:"\u205f\u200a",ThinSpace:"\u2009",thinsp:"\u2009",thkap:"\u2248",thksim:"\u223c",THORN:"\xde",thorn:"\xfe",tilde:"\u02dc",Tilde:"\u223c",TildeEqual:"\u2243",TildeFullEqual:"\u2245",TildeTilde:"\u2248",timesbar:"\u2a31",timesb:"\u22a0",times:"\xd7",timesd:"\u2a30",tint:"\u222d",toea:"\u2928",topbot:"\u2336",topcir:"\u2af1",top:"\u22a4",Topf:"\ud835\udd4b",topf:"\ud835\udd65",topfork:"\u2ada",tosa:"\u2929",tprime:"\u2034",trade:"\u2122",TRADE:"\u2122",triangle:"\u25b5",triangledown:"\u25bf",triangleleft:"\u25c3",trianglelefteq:"\u22b4",triangleq:"\u225c",triangleright:"\u25b9",trianglerighteq:"\u22b5",tridot:"\u25ec",trie:"\u225c",triminus:"\u2a3a",TripleDot:"\u20db",triplus:"\u2a39",trisb:"\u29cd",tritime:"\u2a3b",trpezium:"\u23e2",Tscr:"\ud835\udcaf",tscr:"\ud835\udcc9",TScy:"\u0426",tscy:"\u0446",TSHcy:"\u040b",tshcy:"\u045b",Tstrok:"\u0166",tstrok:"\u0167",twixt:"\u226c",twoheadleftarrow:"\u219e",twoheadrightarrow:"\u21a0",Uacute:"\xda",uacute:"\xfa",uarr:"\u2191",Uarr:"\u219f",uArr:"\u21d1",Uarrocir:"\u2949",Ubrcy:"\u040e",ubrcy:"\u045e",Ubreve:"\u016c",ubreve:"\u016d",Ucirc:"\xdb",ucirc:"\xfb",Ucy:"\u0423",ucy:"\u0443",udarr:"\u21c5",Udblac:"\u0170",udblac:"\u0171",udhar:"\u296e",ufisht:"\u297e",Ufr:"\ud835\udd18",ufr:"\ud835\udd32",Ugrave:"\xd9",ugrave:"\xf9",uHar:"\u2963",uharl:"\u21bf",uharr:"\u21be",uhblk:"\u2580",ulcorn:"\u231c",ulcorner:"\u231c",ulcrop:"\u230f",ultri:"\u25f8",Umacr:"\u016a",umacr:"\u016b",uml:"\xa8",UnderBar:"_",UnderBrace:"\u23df",UnderBracket:"\u23b5",UnderParenthesis:"\u23dd",Union:"\u22c3",UnionPlus:"\u228e",Uogon:"\u0172",uogon:"\u0173",Uopf:"\ud835\udd4c",uopf:"\ud835\udd66",UpArrowBar:"\u2912",uparrow:"\u2191",UpArrow:"\u2191",Uparrow:"\u21d1",UpArrowDownArrow:"\u21c5",updownarrow:"\u2195",UpDownArrow:"\u2195",Updownarrow:"\u21d5",UpEquilibrium:"\u296e",upharpoonleft:"\u21bf",upharpoonright:"\u21be",uplus:"\u228e",UpperLeftArrow:"\u2196",UpperRightArrow:"\u2197",upsi:"\u03c5",Upsi:"\u03d2",upsih:"\u03d2",Upsilon:"\u03a5",upsilon:"\u03c5",UpTeeArrow:"\u21a5",UpTee:"\u22a5",upuparrows:"\u21c8",urcorn:"\u231d",urcorner:"\u231d",urcrop:"\u230e",Uring:"\u016e",uring:"\u016f",urtri:"\u25f9",Uscr:"\ud835\udcb0",uscr:"\ud835\udcca",utdot:"\u22f0",Utilde:"\u0168",utilde:"\u0169",utri:"\u25b5",utrif:"\u25b4",uuarr:"\u21c8",Uuml:"\xdc",uuml:"\xfc",uwangle:"\u29a7",vangrt:"\u299c",varepsilon:"\u03f5",varkappa:"\u03f0",varnothing:"\u2205",varphi:"\u03d5",varpi:"\u03d6",varpropto:"\u221d",varr:"\u2195",vArr:"\u21d5",varrho:"\u03f1",varsigma:"\u03c2",varsubsetneq:"\u228a\ufe00",varsubsetneqq:"\u2acb\ufe00",varsupsetneq:"\u228b\ufe00",varsupsetneqq:"\u2acc\ufe00",vartheta:"\u03d1",vartriangleleft:"\u22b2",vartriangleright:"\u22b3",vBar:"\u2ae8",Vbar:"\u2aeb",vBarv:"\u2ae9",Vcy:"\u0412",vcy:"\u0432",vdash:"\u22a2",vDash:"\u22a8",Vdash:"\u22a9",VDash:"\u22ab",Vdashl:"\u2ae6",veebar:"\u22bb",vee:"\u2228",Vee:"\u22c1",veeeq:"\u225a",vellip:"\u22ee",verbar:"|",Verbar:"\u2016",vert:"|",Vert:"\u2016",VerticalBar:"\u2223",VerticalLine:"|",VerticalSeparator:"\u2758",VerticalTilde:"\u2240",VeryThinSpace:"\u200a",Vfr:"\ud835\udd19",vfr:"\ud835\udd33",vltri:"\u22b2",vnsub:"\u2282\u20d2",vnsup:"\u2283\u20d2",Vopf:"\ud835\udd4d",vopf:"\ud835\udd67",vprop:"\u221d",vrtri:"\u22b3",Vscr:"\ud835\udcb1",vscr:"\ud835\udccb",vsubnE:"\u2acb\ufe00",vsubne:"\u228a\ufe00",vsupnE:"\u2acc\ufe00",vsupne:"\u228b\ufe00",Vvdash:"\u22aa",vzigzag:"\u299a",Wcirc:"\u0174",wcirc:"\u0175",wedbar:"\u2a5f",wedge:"\u2227",Wedge:"\u22c0",wedgeq:"\u2259",weierp:"\u2118",Wfr:"\ud835\udd1a",wfr:"\ud835\udd34",Wopf:"\ud835\udd4e",wopf:"\ud835\udd68",wp:"\u2118",wr:"\u2240",wreath:"\u2240",Wscr:"\ud835\udcb2",wscr:"\ud835\udccc",xcap:"\u22c2",xcirc:"\u25ef",xcup:"\u22c3",xdtri:"\u25bd",Xfr:"\ud835\udd1b",xfr:"\ud835\udd35",xharr:"\u27f7",xhArr:"\u27fa",Xi:"\u039e",xi:"\u03be",xlarr:"\u27f5",xlArr:"\u27f8",xmap:"\u27fc",xnis:"\u22fb",xodot:"\u2a00",Xopf:"\ud835\udd4f",xopf:"\ud835\udd69",xoplus:"\u2a01",xotime:"\u2a02",xrarr:"\u27f6",xrArr:"\u27f9",Xscr:"\ud835\udcb3",xscr:"\ud835\udccd",xsqcup:"\u2a06",xuplus:"\u2a04",xutri:"\u25b3",xvee:"\u22c1",xwedge:"\u22c0",Yacute:"\xdd",yacute:"\xfd",YAcy:"\u042f",yacy:"\u044f",Ycirc:"\u0176",ycirc:"\u0177",Ycy:"\u042b",ycy:"\u044b",yen:"\xa5",Yfr:"\ud835\udd1c",yfr:"\ud835\udd36",YIcy:"\u0407",yicy:"\u0457",Yopf:"\ud835\udd50",yopf:"\ud835\udd6a",Yscr:"\ud835\udcb4",yscr:"\ud835\udcce",YUcy:"\u042e",yucy:"\u044e",yuml:"\xff",Yuml:"\u0178",Zacute:"\u0179",zacute:"\u017a",Zcaron:"\u017d",zcaron:"\u017e",Zcy:"\u0417",zcy:"\u0437",Zdot:"\u017b",zdot:"\u017c",zeetrf:"\u2128",ZeroWidthSpace:"\u200b",Zeta:"\u0396",zeta:"\u03b6",zfr:"\ud835\udd37",Zfr:"\u2128",ZHcy:"\u0416",zhcy:"\u0436",zigrarr:"\u21dd",zopf:"\ud835\udd6b",Zopf:"\u2124",Zscr:"\ud835\udcb5",zscr:"\ud835\udccf",zwj:"\u200d",zwnj:"\u200c"}},370,[]); +__d(function(e,c,a,u,r,i,t){r.exports={Aacute:"\xc1",aacute:"\xe1",Acirc:"\xc2",acirc:"\xe2",acute:"\xb4",AElig:"\xc6",aelig:"\xe6",Agrave:"\xc0",agrave:"\xe0",amp:"&",AMP:"&",Aring:"\xc5",aring:"\xe5",Atilde:"\xc3",atilde:"\xe3",Auml:"\xc4",auml:"\xe4",brvbar:"\xa6",Ccedil:"\xc7",ccedil:"\xe7",cedil:"\xb8",cent:"\xa2",copy:"\xa9",COPY:"\xa9",curren:"\xa4",deg:"\xb0",divide:"\xf7",Eacute:"\xc9",eacute:"\xe9",Ecirc:"\xca",ecirc:"\xea",Egrave:"\xc8",egrave:"\xe8",ETH:"\xd0",eth:"\xf0",Euml:"\xcb",euml:"\xeb",frac12:"\xbd",frac14:"\xbc",frac34:"\xbe",gt:">",GT:">",Iacute:"\xcd",iacute:"\xed",Icirc:"\xce",icirc:"\xee",iexcl:"\xa1",Igrave:"\xcc",igrave:"\xec",iquest:"\xbf",Iuml:"\xcf",iuml:"\xef",laquo:"\xab",lt:"<",LT:"<",macr:"\xaf",micro:"\xb5",middot:"\xb7",nbsp:"\xa0",not:"\xac",Ntilde:"\xd1",ntilde:"\xf1",Oacute:"\xd3",oacute:"\xf3",Ocirc:"\xd4",ocirc:"\xf4",Ograve:"\xd2",ograve:"\xf2",ordf:"\xaa",ordm:"\xba",Oslash:"\xd8",oslash:"\xf8",Otilde:"\xd5",otilde:"\xf5",Ouml:"\xd6",ouml:"\xf6",para:"\xb6",plusmn:"\xb1",pound:"\xa3",quot:"\"",QUOT:"\"",raquo:"\xbb",reg:"\xae",REG:"\xae",sect:"\xa7",shy:"\xad",sup1:"\xb9",sup2:"\xb2",sup3:"\xb3",szlig:"\xdf",THORN:"\xde",thorn:"\xfe",times:"\xd7",Uacute:"\xda",uacute:"\xfa",Ucirc:"\xdb",ucirc:"\xfb",Ugrave:"\xd9",ugrave:"\xf9",uml:"\xa8",Uuml:"\xdc",uuml:"\xfc",Yacute:"\xdd",yacute:"\xfd",yen:"\xa5",yuml:"\xff"}},371,[]); +__d(function(t,o,p,a,n,s,u){n.exports={amp:"&",apos:"'",gt:">",lt:"<",quot:"\""}},372,[]); +__d(function(g,r,i,a,m,e,d){'function'==typeof Object.create?m.exports=function(t,o){o&&(t.super_=o,t.prototype=Object.create(o.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}))}:m.exports=function(t,o){if(o){t.super_=o;var p=function(){};p.prototype=o.prototype,t.prototype=new p,t.prototype.constructor=t}}},373,[]); +__d(function(g,r,i,a,m,e,d){!(function(t){var s=Array.isArray?Array.isArray:function(t){return"[object Array]"===Object.prototype.toString.call(t)},n=10;function l(){this._events={},this._conf&&h.call(this,this._conf)}function h(t){t&&(this._conf=t,t.delimiter&&(this.delimiter=t.delimiter),t.maxListeners&&(this._events.maxListeners=t.maxListeners),t.wildcard&&(this.wildcard=t.wildcard),t.newListener&&(this.newListener=t.newListener),this.wildcard&&(this.listenerTree={}))}function o(t){this._events={},this.newListener=!1,h.call(this,t)}function c(t,s,n,l){if(!n)return[];var h,o,f,p,_,u,v,y=[],w=s.length,L=s[l],b=s[l+1];if(l===w&&n._listeners){if('function'==typeof n._listeners)return t&&t.push(n._listeners),[n];for(h=0,o=n._listeners.length;h0&&c._listeners.length>p&&(c._listeners.warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",c._listeners.length),console.trace&&console.trace())}}else c._listeners=l;return!0}f=t.shift()}return!0}o.EventEmitter2=o,o.prototype.delimiter='.',o.prototype.setMaxListeners=function(t){this._events||l.call(this),this._events.maxListeners=t,this._conf||(this._conf={}),this._conf.maxListeners=t},o.prototype.event='',o.prototype.once=function(t,s){return this.many(t,1,s),this},o.prototype.many=function(t,s,n){var l=this;if('function'!=typeof n)throw new Error('many only accepts instances of Function');function h(){0==--s&&l.off(t,h),n.apply(this,arguments)}return h._origin=n,this.on(t,h),l},o.prototype.emit=function(){this._events||l.call(this);var t=arguments[0];if('newListener'===t&&!this.newListener&&!this._events.newListener)return!1;var s,n,h,o,f,p=arguments.length;if(this._all&&this._all.length){if(f=this._all.slice(),p>3)for(s=new Array(p),o=1;o3)for(s=new Array(p-1),o=1;o3)for(s=new Array(_),o=1;o<_;o++)s[o]=arguments[o];for(h=0,n=this._all.length;h3)for(s=new Array(_-1),o=1;o<_;o++)s[o-1]=arguments[o];for(h=0,n=f.length;h0&&this._events[t].length>o&&(this._events[t].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[t].length),console.trace&&console.trace())}}else this._events[t]=h;return this},o.prototype.onAny=function(t){if('function'!=typeof t)throw new Error('onAny only accepts instances of Function');return this._all||(this._all=[]),this._all.push(t),this},o.prototype.addListener=o.prototype.on,o.prototype.off=function(n,l){if('function'!=typeof l)throw new Error('removeListener only takes instances of Function');var h,o=[];if(this.wildcard){var f='string'==typeof n?n.split(this.delimiter):n.slice();o=c.call(this,null,f,this.listenerTree,0)}else{if(!this._events[n])return this;h=this._events[n],o.push({_listeners:h})}for(var p=0;p0&&s(n[o]),0===Object.keys(c).length&&delete n[o])}}})(this.listenerTree),this},o.prototype.offAny=function(t){var s,n=0,l=0;if(t&&this._all&&this._all.length>0){for(n=0,l=(s=this._all).length;n',n.children&&(o+=u(n.children,t)),l[n.name]&&!t.xmlMode||(o+='')):o+='/>',o}function f(n){return'<'+n.data+'>'}function p(n,c){var l=n.data||'';return!c.decodeEntities||n.parent&&n.parent.name in o||(l=t.encodeXML(l)),l}function h(n){return''}function v(n){return'\x3c!--'+n.data+'--\x3e'}},383,[376,384]); +__d(function(g,r,i,a,m,e,d){var c=r(d[0]),L=r(d[1]);e.decode=function(c,M){return(!M||M<=0?L.XML:L.HTML)(c)},e.decodeStrict=function(c,M){return(!M||M<=0?L.XML:L.HTMLStrict)(c)},e.encode=function(L,M){return(!M||M<=0?c.XML:c.HTML)(L)},e.encodeXML=c.XML,e.encodeHTML4=e.encodeHTML5=e.encodeHTML=c.HTML,e.decodeXML=e.decodeXMLStrict=L.XML,e.decodeHTML4=e.decodeHTML5=e.decodeHTML=L.HTML,e.decodeHTML4Strict=e.decodeHTML5Strict=e.decodeHTMLStrict=L.HTMLStrict,e.escape=c.escape},384,[385,386]); +__d(function(g,r,i,a,m,e,d){var n=o(r(d[0])),t=p(n);e.XML=C(n,t);var u=o(r(d[1])),c=p(u);function o(n){return Object.keys(n).sort().reduce(function(t,u){return t[n[u]]="&"+u+";",t},{})}function p(n){var t=[],u=[];return Object.keys(n).forEach(function(n){1===n.length?t.push("\\"+n):u.push(n)}),u.unshift("["+t.join("")+"]"),new RegExp(u.join("|"),"g")}e.HTML=C(u,c);var f=/[^\0-\x7F]/g,s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g;function h(n){return"&#x"+n.charCodeAt(0).toString(16).toUpperCase()+";"}function l(n){return"&#x"+(1024*(n.charCodeAt(0)-55296)+n.charCodeAt(1)-56320+65536).toString(16).toUpperCase()+";"}function C(n,t){function u(t){return n[t]}return function(n){return n.replace(t,u).replace(s,l).replace(f,h)}}var F=p(n);e.escape=function(n){return n.replace(F,h).replace(s,l).replace(f,h)}},385,[372,370]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]),u=r(d[2]),c=r(d[3]),o=f(u),s=f(t);function f(t){var n=Object.keys(t).join("|"),u=x(t),c=new RegExp("&(?:"+(n+="|#[xX][\\da-fA-F]+|#\\d+")+");","g");return function(t){return String(t).replace(c,u)}}var p=(function(){for(var u=Object.keys(n).sort(b),c=Object.keys(t).sort(b),o=0,s=0;o0&&(u=t(n,u,h,f),c=c.concat(u),(f-=u.length)<=0)));o++);return c}m.exports={filter:function(n,l,h,f){Array.isArray(l)||(l=[l]);"number"==typeof f&&isFinite(f)||(f=1/0);return t(n,l,!1!==h,f)},find:t,findOneChild:function(n,t){for(var l=0,h=t.length;l0&&(f=t(l,h[u].children)));return f},existsOne:function t(l,h){for(var f=0,u=h.length;f0&&t(l,h[f].children)))return!0;return!1},findAll:function(t,l){var h=[],f=l.slice();for(;f.length;){var u=f.shift();n(u)&&(u.children&&u.children.length>0&&f.unshift.apply(f,u.children),t(u)&&h.push(u))}return h}}},389,[376]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=e.isTag=t.isTag;e.testElement=function(t,u){for(var f in t)if(t.hasOwnProperty(f)){if("tag_name"===f){if(!n(u)||!t.tag_name(u.name))return!1}else if("tag_type"===f){if(!t.tag_type(u.type))return!1}else if("tag_contains"===f){if(n(u)||!t.tag_contains(u.data))return!1}else if(!u.attribs||!t[f](u.attribs[f]))return!1}else;return!0};var u={tag_name:function(t){return"function"==typeof t?function(u){return n(u)&&t(u.name)}:"*"===t?n:function(u){return n(u)&&u.name===t}},tag_type:function(t){return"function"==typeof t?function(n){return t(n.type)}:function(n){return n.type===t}},tag_contains:function(t){return"function"==typeof t?function(u){return!n(u)&&t(u.data)}:function(u){return!n(u)&&u.data===t}}};function f(t,n){return"function"==typeof n?function(u){return u.attribs&&n(u.attribs[t])}:function(u){return u.attribs&&u.attribs[t]===n}}function o(t,n){return function(u){return t(u)||n(u)}}e.getElements=function(t,n,c,s){var y=Object.keys(t).map(function(n){var o=t[n];return n in u?u[n](o):f(n,o)});return 0===y.length?[]:this.filter(y.reduce(o),n,c,s)},e.getElementById=function(t,n,u){return Array.isArray(n)||(n=[n]),this.findOne(f("id",t),n,!1!==u)},e.getElementsByTagName=function(t,n,f,o){return this.filter(u.tag_name(t),n,f,o)},e.getElementsByTagType=function(t,n,f,o){return this.filter(u.tag_type(t),n,f,o)}},390,[376]); +__d(function(g,r,i,a,m,e,d){e.removeSubsets=function(n){for(var t,f,o,u=n.length;--u>-1;){for(t=f=n[u],n[u]=null,o=!0;f;){if(n.indexOf(f)>-1){o=!1,n.splice(u,1);break}f=f.parent}o&&(n[u]=t)}return n};var n=1,t=2,f=4,o=8,u=16,c=e.compareDocumentPosition=function(c,s){var l,p,v,h,x,O,b=[],S=[];if(c===s)return 0;for(l=c;l;)b.unshift(l),l=l.parent;for(l=s;l;)S.unshift(l),l=l.parent;for(O=0;b[O]===S[O];)O++;return 0===O?n:(v=(p=b[O-1]).children,h=b[O],x=S[O],v.indexOf(h)>v.indexOf(x)?p===s?f|u:f:p===c?t|o:t)};e.uniqueSort=function(n){var o,u,s=n.length;for(n=n.slice();--s>-1;)o=n[s],(u=n.indexOf(o))>-1&&u[\\x20\\t\\n\\r\\f]*(.*)"),adjacent:RegExp("^[\\x20\\t\\n\\r\\f]*\\+[\\x20\\t\\n\\r\\f]*(.*)"),relative:RegExp("^[\\x20\\t\\n\\r\\f]*\\~[\\x20\\t\\n\\r\\f]*(.*)"),ancestor:RegExp("^[\\x20\\t\\n\\r\\f]+(.*)"),universal:RegExp('^\\*(.*)')},P={prefixes:'(?:[#.:]|::)?',identifier:T,attributes:v},G='getElementsByTagName'in w,M='getElementsByClassName'in w,F='function'!=typeof w.addEventListener,V={a:1,A:1,area:1,AREA:1,link:1,LINK:1},j={checked:1,disabled:1,ismap:1,multiple:1,readonly:1,selected:1},z={value:'defaultValue',checked:'defaultChecked',selected:'defaultSelected'},Q={action:2,cite:2,codebase:2,data:2,href:2,longdesc:2,lowsrc:2,src:2,usemap:2},W={accept:1,'accept-charset':1,align:1,alink:1,axis:1,bgcolor:1,charset:1,checked:1,clear:1,codetype:1,color:1,compact:1,declare:1,defer:1,dir:1,direction:1,disabled:1,enctype:1,face:1,frame:1,hreflang:1,'http-equiv':1,lang:1,language:1,link:1,media:1,method:1,multiple:1,nohref:1,noresize:1,noshade:1,nowrap:1,readonly:1,rel:1,rev:1,rules:1,scope:1,scrolling:1,selected:1,shape:1,target:1,text:1,type:1,valign:1,valuetype:1,vlink:1},Y='nextElementSibling'in O&&'previousElementSibling'in O,Z={},q={'=':"n=='%m'",'^=':"n.indexOf('%m')==0",'*=':"n.indexOf('%m')>-1",'|=':"(n+'-').indexOf('%m-')==0",'~=':"(' '+n+' ').indexOf(' %m ')>-1",'$=':"n.substr(n.length-'%m'.length)=='%m'"},K=function(t,n,s){for(var o,l=-1;(o=n[++l])&&!1!==s(t[t.length]=o););return t},J=function(t,n){var s,o=w;l=t,w=t.ownerDocument||t,(n||o!==w)&&(O=w.documentElement,L='DiV'==w.createElement('DiV').nodeName,R=L||'string'!=typeof w.compatMode?(s=w.createElement('div').style)&&(s.width=1)&&'1px'==s.width:w.compatMode.indexOf('CSS')<0,ce.CACHING&&Se.setCache(!0,w))},X=function(t){if(t<1||t>1114111||t>55295&&t<57344)return"\\ufffd";if(t<65536){var n='000'+t.toString(16);return"\\u"+n.substr(n.length-4)}return"\\u"+(55296+(t-65536>>10)).toString(16)+"\\u"+((t-65536)%1024+56320).toString(16)},ee=function(t){return t.replace($,function(t,n,s){return s?'\\'+s:/^[0-9a-fA-F]/.test(n)?X(parseInt(n,16)):/^[\\\x22\x27]/.test(n)?t:n})},te=function(t){return t.replace($,function(t,n,s){return s||(/^[0-9a-fA-F]/.test(n)?(o=parseInt(n,16))<1||o>1114111||o>55295&&o<57344?"\ufffd":o<65536?String.fromCharCode(o):String.fromCodePoint?String.fromCodePoint(o):String.fromCharCode(55296+(o-65536>>10),(o-65536)%1024+56320):/^[\\\x22\x27]/.test(n)?t:n);var o})},ne=function(t,n){for(var s,o=-1;(s=n[++o])&&s.getAttribute('id')!=t;);return s||null},re=F?function(t,n){var s;return t=/\\/.test(t)?te(t):t,L||9!=n.nodeType?ne(t,n.getElementsByTagName('*')):(s=n.getElementById(t))&&s.name==t&&n.getElementsByName?ne(t,n.getElementsByName(t)):s}:function(t,n){return t=/\\/.test(t)?te(t):t,n.getElementById&&n.getElementById(t)||ne(t,n.getElementsByTagName('*'))},ie=function(t,n){var s='*'==t,o=n,l=[],c=o.firstChild;for(s||(t=t.toUpperCase());o=c;)if(o.tagName>'@'&&(s||o.tagName.toUpperCase()==t)&&(l[l.length]=o),!(c=o.firstChild||o.nextSibling))for(;!c&&(o=o.parentNode)&&o!==n;)c=o.nextSibling;return l},ae='compareDocumentPosition'in O?function(t,n){return 16==(16&t.compareDocumentPosition(n))}:'contains'in O?function(t,n){return t!==n&&t.contains(n)}:function(t,n){for(;n=n.parentNode;)if(n===t)return!0;return!1},se=F?function(t,n){return'object'==typeof t[n=n.toLowerCase()]?t.attributes[n]&&t.attributes[n].value:'type'==n?t.getAttribute(n):Q[n]?t.getAttribute(n,2):j[n]?t.getAttribute(n)?n:'false':(t=t.getAttributeNode(n))&&t.value}:function(t,n){return t.getAttribute(n)},oe=!F&&O.hasAttribute?function(t,n){return t.hasAttribute(n)}:function(t,n){var s=t.getAttributeNode(n=n.toLowerCase());return z[n]&&'value'!=n?t[z[n]]:s&&s.specified},le=function(t){if(ce.VERBOSITY)throw Error(t);ce.LOGERRORS&&console&&console.log&&console.log(t)},ce={CACHING:!1,ESCAPECHR:!0,NON_ASCII:!0,SELECTOR3:!0,UNICODE16:!0,SHORTCUTS:!1,SIMPLENOT:!0,SVG_LCASE:!1,UNIQUE_ID:!0,USE_HTML5:!0,VERBOSITY:!0,LOGERRORS:!0},fe=function(){var t='',n=ce.SELECTOR3?'-{2}|':'';ce.NON_ASCII&&(t+="|[^\\x00-\\x9f]"),ce.UNICODE16&&(t+="|\\\\[0-9a-fA-F]{1,6}(?:\\r\\n|[\\x20\\t\\n\\r\\f])?"),ce.ESCAPECHR&&(t+="|\\\\[^\\n\\r\\f0-9a-fA-F]"),t+=ce.UNICODE16||ce.ESCAPECHR?'':"|\\\\.",y=(v="[\\x20\\t\\n\\r\\f]*("+(T='-?(?:'+n+"[_a-zA-Z]"+t+")(?:-|[0-9]|[_a-zA-Z]"+t+')*')+'(?::'+T+')?)'+U+"*(?:([~*^$|!]?={1})"+U+'*'+(x="(\"[^\"\\\\]*(?:\\\\.[^\"\\\\]*)*\"|'[^'\\\\]*(?:\\\\.[^'\\\\]*)*'|"+T+')')+')?'+U+"*(i)?"+U+'*').replace(x,'([\\x22\\x27]*)((?:\\\\?.)*?)\\3'),b="(?=[\\x20\\t\\n\\r\\f]*[^>+~(){}<>])(\\*|(?:(?:[#.:]|::)?"+T+")|\\x20|[>+~](?=[^>+~])|\\["+v+"\\]|\\("+(C="((?:(?:[-+]?\\d*n)?[-+]?\\d*|\"[^\"\\\\]*(?:\\\\.[^\"\\\\]*)*\"|'[^'\\\\]*(?:\\\\.[^'\\\\]*)*'|(?:[#.:]|::)?"+T+"|\\["+v+"\\]|\\(.+\\)|"+U+"*|,)+)")+"\\)|\\{.+\\}|(?:,|"+U+"*))+",k=RegExp("^((?!:not)((?:[#.:]|::)?"+T+"|\\([^()]*\\))+|\\["+v+"\\])$"),A=RegExp("((?:[#.:]|::)?"+T+"|\\["+v+"\\]|\\("+C+"\\)|\\\\.|[^\\x20\\t\\n\\r\\f>+~])+",'g'),S=RegExp(T+'|^$'),I={ID:RegExp('^\\*?#('+T+')|'+D),TAG:RegExp('^('+T+')|'+D),CLASS:RegExp('^\\.('+T+'$)|'+D)},B.id=RegExp('^#('+T+')(.*)'),B.tagName=RegExp('^('+T+')(.*)'),B.className=RegExp('^\\.('+T+')(.*)'),B.attribute=RegExp('^\\['+y+'\\](.*)'),P.identifier=T,P.attributes=v,E=b.replace(C,'.*'),N=RegExp(b)},ue='r[r.length]=c[k];if(f&&false===f(c[k]))break main;else continue main;',de=F?'if(e.nodeName<"A")continue;':'',pe=F?'.toUpperCase()':'',me=function(t,n,s){var o='string'==typeof t?t.match(_):t;if('string'==typeof n||(n=''),1==o.length)n+=ge(o[0],s?ue:'f&&f(k);return true;',s);else for(var l,c=-1,f={};l=o[++c];)!f[l=l.replace(H,'')]&&(f[l]=!0)&&(n+=ge(l,s?ue:'f&&f(k);return true;',s));return s?Function('c,s,d,h,g,f','var N,n,x=0,k=-1,e,r=[];main:while((e=c[++k])){'+n+'}return r;'):Function('e,s,d,h,g,f','var N,n,x=0,k=e;'+n+'return false;')},ge=function(t,n,s){for(var o,l,c,f,u,p,h,b,E,N=0;t;){if(N++,u=t.match(B.universal))f='';else if(u=t.match(B.id))u[1]=/\\/.test(u[1])?ee(u[1]):u[1],n='if('+(L?'s.getAttribute(e,"id")':'(e.submit?s.getAttribute(e,"id"):e.id)')+'=="'+u[1]+"\"){"+n+'}';else if(u=t.match(B.tagName))b=ce.SVG_LCASE?'||e.nodeName=="'+u[1].toLowerCase()+'"':'',n='if(e.nodeName'+(L?'=="'+u[1]+'"':pe+'=="'+u[1].toUpperCase()+'"'+b)+'){'+n+'}';else if(u=t.match(B.className))u[1]=/\\/.test(u[1])?ee(u[1]):u[1],u[1]=R?u[1].toLowerCase():u[1],n='if((n='+(L?'e.getAttribute("class")':'e.className')+')&&n.length&&(" "+'+(R?'n.toLowerCase()':'n')+'.replace(/'+U+'+/g," ")+" ").indexOf(" '+u[1]+" \")>-1){"+n+'}';else if(u=t.match(B.attribute)){if(f=2==(f=u[1].split(':')).length?f[1]:f[0]+'',u[2]&&!q[u[2]])return le('Unsupported operator in attribute selectors "'+t+'"'),'';b='false',u[2]&&u[4]&&(b=q[u[2]])?(u[4]=/\\/.test(u[4])?ee(u[4]):u[4],E='i'==u[5]||W[f.toLowerCase()],b=b.replace(/\%m/g,E?u[4].toLowerCase():u[4])):'!='!=u[2]&&'='!=u[2]||(b='n'+u[2]+'=""'),n='if(n=s.hasAttribute(e,"'+u[1]+'")){'+(u[2]?'n=s.getAttribute(e,"'+u[1]+'")':'')+(E&&u[2]?'.toLowerCase();':';')+'if('+(u[2]?b:'n')+'){'+n+'}}'}else if(u=t.match(B.adjacent))n=Y?'var N'+N+'=e;if((e=e.previousElementSibling)){'+n+'}e=N'+N+';':'var N'+N+'=e;while((e=e.previousSibling)){if(e.nodeType==1){'+n+'break;}}e=N'+N+';';else if(u=t.match(B.relative))n=Y?'var N'+N+'=e;while((e=e.previousElementSibling)){'+n+'}e=N'+N+';':'var N'+N+'=e;while((e=e.previousSibling)){if(e.nodeType==1){'+n+'}}e=N'+N+';';else if(u=t.match(B.children))n='var N'+N+'=e;if((e=e.parentNode)&&e.nodeType==1){'+n+'}e=N'+N+';';else if(u=t.match(B.ancestor))n='var N'+N+'=e;while((e=e.parentNode)&&e.nodeType==1){'+n+'}e=N'+N+';';else if((u=t.match(B.spseudos))&&u[1])switch(u[1]){case'root':n=u[3]?'if(e===h||s.contains(h,e)){'+n+'}':'if(e===h){'+n+'}';break;case'empty':n='if(s.isEmpty(e)){'+n+'}';break;default:if(u[1]&&u[2]){if('n'==u[2]){n='if(e!==h){'+n+'}';break}'even'==u[2]?(o=2,l=0):'odd'==u[2]?(o=2,l=1):(l=(c=u[2].match(/(-?\d+)$/))?parseInt(c[1],10):0,o=(c=u[2].match(/(-?\d*)n/i))?parseInt(c[1],10):0,c&&'-'==c[1]&&(o=-1)),b=o>1?/last/i.test(u[1])?'(n-('+l+'))%'+o+'==0':'n>='+l+'&&(n-('+l+'))%'+o+'==0':o<-1?/last/i.test(u[1])?'(n-('+l+'))%'+o+'==0':'n<='+l+'&&(n-('+l+'))%'+o+'==0':0===o?'n=='+l:-1==o?'n<='+l:'n>='+l,n="if(e!==h){n=s["+(/-of-type/i.test(u[1])?'"nthOfType"':'"nthElement"')+"](e,"+(/last/i.test(u[1])?'true':'false')+");if("+b+'){'+n+"}}"}else o=/first/i.test(u[1])?'previous':'next',c=/only/i.test(u[1])?'previous':'next',l=/first|last/i.test(u[1]),n="if(e!==h){n=e;while((n=n."+o+'Sibling)'+(E=/-of-type/i.test(u[1])?'&&n.nodeName!=e.nodeName':'&&n.nodeName<"@"')+');if(!n){'+(l?n:'n=e;while((n=n.'+c+'Sibling)'+E+');if(!n){'+n+'}')+"}}"}else if((u=t.match(B.dpseudos))&&u[1])switch(u[1].match(/^\w+/)[0]){case'matches':n='if(s.match(e, "'+(f=u[3].replace(H,'')).replace(/\x22/g,'\\"')+'",g)){'+n+'}';break;case'not':if(f=u[3].replace(H,''),ce.SIMPLENOT&&!k.test(f))return le('Negation pseudo-class only accepts simple selectors "'+t+'"'),'';n='compatMode'in w?'if(!'+me(f,'',!1)+'(e,s,d,h,g)){'+n+'}':'if(!s.match(e, "'+f.replace(/\x22/g,'\\"')+'",g)){'+n+'}';break;case'checked':n='if((typeof e.form!=="undefined"&&(/^(?:radio|checkbox)$/i).test(e.type)&&e.checked)'+(ce.USE_HTML5?'||(/^option$/i.test(e.nodeName)&&(e.selected||e.checked))':'')+'){'+n+'}';break;case'disabled':n='if(((typeof e.form!=="undefined"'+(ce.USE_HTML5?'':'&&!(/^hidden$/i).test(e.type)')+')||s.isLink(e))&&e.disabled===true){'+n+'}';break;case'enabled':n='if(((typeof e.form!=="undefined"'+(ce.USE_HTML5?'':'&&!(/^hidden$/i).test(e.type)')+')||s.isLink(e))&&e.disabled===false){'+n+'}';break;case'lang':b='',u[2]&&(b=u[2].substr(0,2)+'-'),n="do{(n=e.lang||\"\").toLowerCase();if((n==\"\"&&h.lang==\""+u[2].toLowerCase()+"\")||(n&&(n==\""+u[2].toLowerCase()+'"||n.substr(0,3)=="'+b.toLowerCase()+"\"))){"+n+'break;}}while((e=e.parentNode)&&e!==g);';break;case'target':n='if(e.id==d.location.hash.slice(1)){'+n+'}';break;case'link':n='if(s.isLink(e)&&!e.visited){'+n+'}';break;case'visited':n='if(s.isLink(e)&&e.visited){'+n+'}';break;case'active':n='if(e===d.activeElement){'+n+'}';break;case'hover':n='if(e===d.hoverElement){'+n+'}';break;case'focus':n='hasFocus'in w?'if(e===d.activeElement&&d.hasFocus()&&(e.type||e.href||typeof e.tabIndex=="number")){'+n+'}':'if(e===d.activeElement&&(e.type||e.href)){'+n+'}';break;case'selected':n='if(/^option$/i.test(e.nodeName)&&(e.selected||e.checked)){'+n+'}'}else if((u=t.match(B.epseudos))&&u[1])n='if(!(/1|11/).test(e.nodeType)){'+n+'}';else{for(f in f=!1,h=!1,Z)if((u=t.match(Z[f].Expression))&&u[1]&&('match'in(p=Z[f].Callback(u,n))&&(u=p.match),n=p.source,h=p.status))break;if(!h)return le('Unknown pseudo-class selector "'+t+'"'),'';if(!f)return le('Unknown token in selector "'+t+'"'),''}if(!u)return le('Invalid syntax in selector "'+t+'"'),'';t=u&&u[u.length-1]}return n},he=function(t,s,o,c){var u;if(!t||1!=t.nodeType)return le('Invalid element argument'),!1;if('string'!=typeof s)return le('Invalid selector argument'),!1;if(l!==o&&J(o||(o=t.ownerDocument)),s=s.replace(H,'').replace(/\x00|\\$/g,"\ufffd"),ce.SHORTCUTS&&(s=Se.shortcuts(s,t,o)),f!=s){if(!(u=s.match(N))||u[0]!=s)return le('The string "'+s+'", is not a valid CSS selector'),!1;n=(u=s.match(_)).length<2,f=s,p=u}else u=p;return xe[s]&&Ne[s]===o||(xe[s]=me(n?[s]:u,'',!1),Ne[s]=o),xe[s](t,Ce,w,O,o,c)},be=function(t,n,f){var p,b,E,x,v,y=t;if(0===arguments.length)return le('Not enough arguments'),[];if('string'!=typeof t)return[];if(n&&!/1|9|11/.test(n.nodeType))return le('Invalid or illegal context element'),[];if(l!==n&&J(n||(n=w)),ce.CACHING&&(E=Se.loadResults(y,n,w,O)))return f?K([],E,f):E;if(t=t.replace(H,'').replace(/\x00|\\$/g,"\ufffd"),ce.SHORTCUTS&&(t=Se.shortcuts(t,n)),p=u!=t){if(!(x=t.match(N))||x[0]!=t)return le('The string "'+t+'", is not a valid CSS selector'),[];s=(x=t.match(_)).length<2,u=t,h=x}else x=h;if(11==n.nodeType)E=ie('*',n);else if(s){if(p&&(v=(x=t.match(A))[x.length-1],o=(o=v.split(':not'))[o.length-1],c=t.length-v.length),ce.UNIQUE_ID&&o&&(x=o.match(I.ID))&&(v=x[1])?(b=re(v,n))&&(he(b,t)?(f&&f(b),E=[b]):E=[]):ce.UNIQUE_ID&&(x=t.match(I.ID))&&(v=x[1])&&((b=re(v,w))?'#'+v==t?(f&&f(b),E=[b]):n=/[>+~]/.test(t)?b.parentNode:b:E=[]),E)return ce.CACHING&&Se.saveResults(y,n,w,E),E;if(!L&&G&&o&&(x=o.match(I.TAG))&&(v=x[1])){if(0===(E=n.getElementsByTagName(v)).length)return[];t=t.slice(0,c)+t.slice(c).replace(v,'*')}else if(!L&&M&&o&&(x=o.match(I.CLASS))&&(v=x[1])){if(0===(E=n.getElementsByClassName(te(v))).length)return[];t=t.slice(0,c)+t.slice(c).replace('.'+v,S.test(t.charAt(t.indexOf(v)-1))?'':'*')}}return E||(E=F?/^(?:applet|object)$/i.test(n.nodeName)?n.children:ie('*',n):n.getElementsByTagName('*')),ye[t]&&ve[t]===n||(ye[t]=me(s?[t]:x,de,!0),ve[t]=n),E=ye[t](E,Ce,w,O,n,f),ce.CACHING&&Se.saveResults(y,n,w,E),E},Ee=function(t){return t},Ne={},xe={},ve={},ye={},Ce={byId:re,match:he,select:be,isLink:function(t){return oe(t,'href')&&V[t.nodeName]},isEmpty:function(t){for(t=t.firstChild;t;){if(3==t.nodeType||t.nodeName>'@')return!1;t=t.nextSibling}return!0},contains:ae,nthOfType:function(t,n){for(var s=1,o=n?'nextSibling':'previousSibling',l=t.nodeName;t=t[o];)t.nodeName==l&&++s;return s},nthElement:function(t,n){for(var s=1,o=n?'nextSibling':'previousSibling';t=t[o];)t.nodeName>'@'&&++s;return s},getAttribute:se,hasAttribute:oe},Se={ACCEPT_NODE:ue,byId:function(t,n){return n||(n=w),l!==n&&J(n),re(t,n)},match:he,first:function(t,n){return be(t,n,function(){return!1})[0]||null},select:be,compile:me,contains:ae,configure:function(t){if('string'==typeof t)return!!ce[t];if('object'!=typeof t)return ce;for(var n in t)ce[n]=!!t[n],'SIMPLENOT'==n&&(Ne={},xe={},ve={},ye={});return fe(),N=RegExp(ce.SIMPLENOT?b:E),!0},getAttribute:se,hasAttribute:oe,setCache:Ee,shortcuts:Ee,loadResults:Ee,saveResults:Ee,emit:le,Config:ce,Snapshot:Ce,Operators:q,Selectors:Z,Tokens:P,Version:'nwmatcher-1.4.3',registerOperator:function(t,n){q[t]||(q[t]=n)},registerSelector:function(t,n,s){Z[t]||(Z[t]={Expression:n,Callback:s})}};return(function(t){fe(),J(t,!0)})(w),Se},'object'==typeof m&&'object'==typeof e?m.exports=n:'function'==typeof define&&define.amd?define(n):(t.NW||(t.NW={}),t.NW.Dom=n(t))},393,[]); +__d(function(g,r,i,a,m,e,d){'use strict';e.CSSStyleDeclaration=r(d[0]).CSSStyleDeclaration,e.CSSRule=r(d[1]).CSSRule,e.CSSStyleRule=r(d[2]).CSSStyleRule,e.MediaList=r(d[3]).MediaList,e.CSSMediaRule=r(d[4]).CSSMediaRule,e.CSSImportRule=r(d[5]).CSSImportRule,e.CSSFontFaceRule=r(d[6]).CSSFontFaceRule,e.StyleSheet=r(d[7]).StyleSheet,e.CSSStyleSheet=r(d[8]).CSSStyleSheet,e.CSSKeyframesRule=r(d[9]).CSSKeyframesRule,e.CSSKeyframeRule=r(d[10]).CSSKeyframeRule,e.MatcherList=r(d[11]).MatcherList,e.CSSDocumentRule=r(d[12]).CSSDocumentRule,e.CSSValue=r(d[13]).CSSValue,e.CSSValueExpression=r(d[14]).CSSValueExpression,e.parse=r(d[15]).parse,e.clone=r(d[16]).clone},394,[395,400,399,402,403,401,404,398,397,406,405,410,409,408,407,396,411]); +__d(function(g,r,i,a,m,e,d){var t={CSSStyleDeclaration:function(){this.length=0,this.parentRule=null,this._importants={}}};t.CSSStyleDeclaration.prototype={constructor:t.CSSStyleDeclaration,getPropertyValue:function(t){return this[t]||""},setProperty:function(t,s,o){this[t]?Array.prototype.indexOf.call(this,t)<0&&(this[this.length]=t,this.length++):(this[this.length]=t,this.length++);this[t]=s,this._importants[t]=o},removeProperty:function(t){if(!(t in this))return"";var s=Array.prototype.indexOf.call(this,t);if(s<0)return"";var o=this[t];return this[t]="",Array.prototype.splice.call(this,s,1),o},getPropertyCSSValue:function(){},getPropertyPriority:function(t){return this._importants[t]||""},getPropertyShorthand:function(){},isPropertyImplicit:function(){},get cssText(){for(var t=[],s=0,o=this.length;sthis.cssRules.length)throw new RangeError("INDEX_SIZE_ERR");var l=t.parse(S).cssRules[0];return l.parentStyleSheet=this,this.cssRules.splice(s,0,l),s},t.CSSStyleSheet.prototype.deleteRule=function(t){if(t<0||t>=this.cssRules.length)throw new RangeError("INDEX_SIZE_ERR");this.cssRules.splice(t,1)},t.CSSStyleSheet.prototype.toString=function(){for(var t="",S=this.cssRules,s=0;s$/,/\<$/,/\&$/,/\|$/,/\^$/,/\~$/,/\?$/,/\,$/,/delete$/,/in$/,/instanceof$/,/new$/,/typeof$/,/void$/].some(function(s){return s.test(t)})){return this._parseJSString(s,n,'/')}return!1},s.CSSValueExpression.prototype._findMatchedIdx=function(s,n,t){for(var o,p=n;;){if(-1===(o=s.indexOf(t,p+1))){o=-1;break}var u=s.substring(n+1,o).match(/\\+$/);if(!u||u[0]%2==0)break;p=o}return s.indexOf('\n',n+1)=this._length?'':this[t]}},Object.defineProperties(n.prototype,{cssText:{get:function(){var t,s,n,o,h=[];for(t=0;t=t.length))return t}},e.parseColor=function(s){var n=e.valueType(s);if(n===e.TYPES.NULL_OR_EMPTY_STR)return s;var u,c,v,p,T=1,E=h.exec(s);if(E){var P=s.substr(1);return 3===P.length&&(P=P[0]+P[0]+P[1]+P[1]+P[2]+P[2]),'rgb('+(u=parseInt(P.substr(0,2),16))+', '+(c=parseInt(P.substr(2,2),16))+', '+(v=parseInt(P.substr(4,2),16))+')'}if(E=l.exec(s)){if(3!==(p=E[1].split(/\s*,\s*/)).length)return;if(p.every(o.test.bind(o)))u=Math.floor(255*parseFloat(p[0].slice(0,-1))/100),c=Math.floor(255*parseFloat(p[1].slice(0,-1))/100),v=Math.floor(255*parseFloat(p[2].slice(0,-1))/100);else{if(!p.every(t.test.bind(t)))return;u=parseInt(p[0],10),c=parseInt(p[1],10),v=parseInt(p[2],10)}return'rgb('+(u=Math.min(255,Math.max(0,u)))+', '+(c=Math.min(255,Math.max(0,c)))+', '+(v=Math.min(255,Math.max(0,v)))+')'}if(E=f.exec(s)){if(4!==(p=E[1].split(/\s*,\s*/)).length)return;if(p.slice(0,3).every(o.test.bind(o)))u=Math.floor(255*parseFloat(p[0].slice(0,-1))/100),c=Math.floor(255*parseFloat(p[1].slice(0,-1))/100),v=Math.floor(255*parseFloat(p[2].slice(0,-1))/100),T=parseFloat(p[3]);else{if(!p.slice(0,3).every(t.test.bind(t)))return;u=parseInt(p[0],10),c=parseInt(p[1],10),v=parseInt(p[2],10),T=parseFloat(p[3])}return isNaN(T)&&(T=1),u=Math.min(255,Math.max(0,u)),c=Math.min(255,Math.max(0,c)),v=Math.min(255,Math.max(0,v)),1===(T=Math.min(1,Math.max(0,T)))?'rgb('+u+', '+c+', '+v+')':'rgba('+u+', '+c+', '+v+', '+T+')'}return n===e.TYPES.COLOR?s:void 0},e.parseAngle=function(t){var s=e.valueType(t);if(s===e.TYPES.NULL_OR_EMPTY_STR)return t;if(s===e.TYPES.ANGLE){var n=v.exec(t),o=parseFloat(n[1]);for('rad'===n[2]?o*=180/Math.PI:'grad'===n[2]&&(o*=.9);o<0;)o+=360;for(;o>360;)o-=360;return o+'deg'}},e.parseKeyword=function(t,s){var n,o=e.valueType(t);if(o===e.TYPES.NULL_OR_EMPTY_STR)return t;if(o===e.TYPES.KEYWORD)for(t=t.toString().toLowerCase(),n=0;n4)&&c.every(n)))switch(this._setProperty(t+s,c.map(function(t){return o(t)}).join(' ')),this.removeProperty(t+'-top'+s),this.removeProperty(t+'-right'+s),this.removeProperty(t+'-bottom'+s),this.removeProperty(t+'-left'+s),c.length){case 1:return this._values[t+'-top'+s]=o(c[0]),this._values[t+'-right'+s]=o(c[0]),this._values[t+'-bottom'+s]=o(c[0]),this._values[t+'-left'+s]=o(c[0]),u;case 2:return this._values[t+'-top'+s]=o(c[0]),this._values[t+'-right'+s]=o(c[1]),this._values[t+'-bottom'+s]=o(c[0]),this._values[t+'-left'+s]=o(c[1]),u;case 3:return this._values[t+'-top'+s]=o(c[0]),this._values[t+'-right'+s]=o(c[1]),this._values[t+'-bottom'+s]=o(c[2]),this._values[t+'-left'+s]=o(c[1]),u;case 4:return this._values[t+'-top'+s]=o(c[0]),this._values[t+'-right'+s]=o(c[1]),this._values[t+'-bottom'+s]=o(c[2]),this._values[t+'-left'+s]=o(c[3]),u}}};var S=/[A-Z]/g,y=/^\([^\-]\)-/,R=['o','moz','ms','webkit'];e.camelToDashed=function(t){var s,n=t.replace(S,'-$&').toLowerCase();return(s=n.match(y))&&-1!==R.indexOf(s[1])&&(n='-'+n),n}},413,[]); +__d(function(e,t,i,n,r,o,f){'use strict';r.exports=function(e){Object.defineProperty(e,'alignmentBaseline',{get:function(){var i=t(f[0]).definition;return Object.defineProperty(e,'alignmentBaseline',i),this.alignmentBaseline},set:function(i){var n=t(f[0]).definition;Object.defineProperty(e,'alignmentBaseline',n),this.alignmentBaseline=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'alignment-baseline',{get:function(){var i=t(f[0]).definition;return Object.defineProperty(e,'alignmentBaseline',i),this.alignmentBaseline},set:function(i){var n=t(f[0]).definition;Object.defineProperty(e,'alignmentBaseline',n),this.alignmentBaseline=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'azimuth',{get:function(){var i=t(f[1]).definition;return Object.defineProperty(e,'azimuth',i),this.azimuth},set:function(i){var n=t(f[1]).definition;Object.defineProperty(e,'azimuth',n),this.azimuth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background',{get:function(){var i=t(f[2]).definition;return Object.defineProperty(e,'background',i),this.background},set:function(i){var n=t(f[2]).definition;Object.defineProperty(e,'background',n),this.background=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundAttachment',{get:function(){var i=t(f[3]).definition;return Object.defineProperty(e,'backgroundAttachment',i),this.backgroundAttachment},set:function(i){var n=t(f[3]).definition;Object.defineProperty(e,'backgroundAttachment',n),this.backgroundAttachment=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-attachment',{get:function(){var i=t(f[3]).definition;return Object.defineProperty(e,'backgroundAttachment',i),this.backgroundAttachment},set:function(i){var n=t(f[3]).definition;Object.defineProperty(e,'backgroundAttachment',n),this.backgroundAttachment=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundClip',{get:function(){var i=t(f[4]).definition;return Object.defineProperty(e,'backgroundClip',i),this.backgroundClip},set:function(i){var n=t(f[4]).definition;Object.defineProperty(e,'backgroundClip',n),this.backgroundClip=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-clip',{get:function(){var i=t(f[4]).definition;return Object.defineProperty(e,'backgroundClip',i),this.backgroundClip},set:function(i){var n=t(f[4]).definition;Object.defineProperty(e,'backgroundClip',n),this.backgroundClip=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundColor',{get:function(){var i=t(f[5]).definition;return Object.defineProperty(e,'backgroundColor',i),this.backgroundColor},set:function(i){var n=t(f[5]).definition;Object.defineProperty(e,'backgroundColor',n),this.backgroundColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-color',{get:function(){var i=t(f[5]).definition;return Object.defineProperty(e,'backgroundColor',i),this.backgroundColor},set:function(i){var n=t(f[5]).definition;Object.defineProperty(e,'backgroundColor',n),this.backgroundColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundImage',{get:function(){var i=t(f[6]).definition;return Object.defineProperty(e,'backgroundImage',i),this.backgroundImage},set:function(i){var n=t(f[6]).definition;Object.defineProperty(e,'backgroundImage',n),this.backgroundImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-image',{get:function(){var i=t(f[6]).definition;return Object.defineProperty(e,'backgroundImage',i),this.backgroundImage},set:function(i){var n=t(f[6]).definition;Object.defineProperty(e,'backgroundImage',n),this.backgroundImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundOrigin',{get:function(){var i=t(f[7]).definition;return Object.defineProperty(e,'backgroundOrigin',i),this.backgroundOrigin},set:function(i){var n=t(f[7]).definition;Object.defineProperty(e,'backgroundOrigin',n),this.backgroundOrigin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-origin',{get:function(){var i=t(f[7]).definition;return Object.defineProperty(e,'backgroundOrigin',i),this.backgroundOrigin},set:function(i){var n=t(f[7]).definition;Object.defineProperty(e,'backgroundOrigin',n),this.backgroundOrigin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundPosition',{get:function(){var i=t(f[8]).definition;return Object.defineProperty(e,'backgroundPosition',i),this.backgroundPosition},set:function(i){var n=t(f[8]).definition;Object.defineProperty(e,'backgroundPosition',n),this.backgroundPosition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-position',{get:function(){var i=t(f[8]).definition;return Object.defineProperty(e,'backgroundPosition',i),this.backgroundPosition},set:function(i){var n=t(f[8]).definition;Object.defineProperty(e,'backgroundPosition',n),this.backgroundPosition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundPositionX',{get:function(){var i=t(f[9]).definition;return Object.defineProperty(e,'backgroundPositionX',i),this.backgroundPositionX},set:function(i){var n=t(f[9]).definition;Object.defineProperty(e,'backgroundPositionX',n),this.backgroundPositionX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-position-x',{get:function(){var i=t(f[9]).definition;return Object.defineProperty(e,'backgroundPositionX',i),this.backgroundPositionX},set:function(i){var n=t(f[9]).definition;Object.defineProperty(e,'backgroundPositionX',n),this.backgroundPositionX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundPositionY',{get:function(){var i=t(f[10]).definition;return Object.defineProperty(e,'backgroundPositionY',i),this.backgroundPositionY},set:function(i){var n=t(f[10]).definition;Object.defineProperty(e,'backgroundPositionY',n),this.backgroundPositionY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-position-y',{get:function(){var i=t(f[10]).definition;return Object.defineProperty(e,'backgroundPositionY',i),this.backgroundPositionY},set:function(i){var n=t(f[10]).definition;Object.defineProperty(e,'backgroundPositionY',n),this.backgroundPositionY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundRepeat',{get:function(){var i=t(f[11]).definition;return Object.defineProperty(e,'backgroundRepeat',i),this.backgroundRepeat},set:function(i){var n=t(f[11]).definition;Object.defineProperty(e,'backgroundRepeat',n),this.backgroundRepeat=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-repeat',{get:function(){var i=t(f[11]).definition;return Object.defineProperty(e,'backgroundRepeat',i),this.backgroundRepeat},set:function(i){var n=t(f[11]).definition;Object.defineProperty(e,'backgroundRepeat',n),this.backgroundRepeat=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundRepeatX',{get:function(){var i=t(f[12]).definition;return Object.defineProperty(e,'backgroundRepeatX',i),this.backgroundRepeatX},set:function(i){var n=t(f[12]).definition;Object.defineProperty(e,'backgroundRepeatX',n),this.backgroundRepeatX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-repeat-x',{get:function(){var i=t(f[12]).definition;return Object.defineProperty(e,'backgroundRepeatX',i),this.backgroundRepeatX},set:function(i){var n=t(f[12]).definition;Object.defineProperty(e,'backgroundRepeatX',n),this.backgroundRepeatX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundRepeatY',{get:function(){var i=t(f[13]).definition;return Object.defineProperty(e,'backgroundRepeatY',i),this.backgroundRepeatY},set:function(i){var n=t(f[13]).definition;Object.defineProperty(e,'backgroundRepeatY',n),this.backgroundRepeatY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-repeat-y',{get:function(){var i=t(f[13]).definition;return Object.defineProperty(e,'backgroundRepeatY',i),this.backgroundRepeatY},set:function(i){var n=t(f[13]).definition;Object.defineProperty(e,'backgroundRepeatY',n),this.backgroundRepeatY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'backgroundSize',{get:function(){var i=t(f[14]).definition;return Object.defineProperty(e,'backgroundSize',i),this.backgroundSize},set:function(i){var n=t(f[14]).definition;Object.defineProperty(e,'backgroundSize',n),this.backgroundSize=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'background-size',{get:function(){var i=t(f[14]).definition;return Object.defineProperty(e,'backgroundSize',i),this.backgroundSize},set:function(i){var n=t(f[14]).definition;Object.defineProperty(e,'backgroundSize',n),this.backgroundSize=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'baselineShift',{get:function(){var i=t(f[15]).definition;return Object.defineProperty(e,'baselineShift',i),this.baselineShift},set:function(i){var n=t(f[15]).definition;Object.defineProperty(e,'baselineShift',n),this.baselineShift=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'baseline-shift',{get:function(){var i=t(f[15]).definition;return Object.defineProperty(e,'baselineShift',i),this.baselineShift},set:function(i){var n=t(f[15]).definition;Object.defineProperty(e,'baselineShift',n),this.baselineShift=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border',{get:function(){var i=t(f[16]).definition;return Object.defineProperty(e,'border',i),this.border},set:function(i){var n=t(f[16]).definition;Object.defineProperty(e,'border',n),this.border=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderBottom',{get:function(){var i=t(f[17]).definition;return Object.defineProperty(e,'borderBottom',i),this.borderBottom},set:function(i){var n=t(f[17]).definition;Object.defineProperty(e,'borderBottom',n),this.borderBottom=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-bottom',{get:function(){var i=t(f[17]).definition;return Object.defineProperty(e,'borderBottom',i),this.borderBottom},set:function(i){var n=t(f[17]).definition;Object.defineProperty(e,'borderBottom',n),this.borderBottom=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderBottomColor',{get:function(){var i=t(f[18]).definition;return Object.defineProperty(e,'borderBottomColor',i),this.borderBottomColor},set:function(i){var n=t(f[18]).definition;Object.defineProperty(e,'borderBottomColor',n),this.borderBottomColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-bottom-color',{get:function(){var i=t(f[18]).definition;return Object.defineProperty(e,'borderBottomColor',i),this.borderBottomColor},set:function(i){var n=t(f[18]).definition;Object.defineProperty(e,'borderBottomColor',n),this.borderBottomColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderBottomLeftRadius',{get:function(){var i=t(f[19]).definition;return Object.defineProperty(e,'borderBottomLeftRadius',i),this.borderBottomLeftRadius},set:function(i){var n=t(f[19]).definition;Object.defineProperty(e,'borderBottomLeftRadius',n),this.borderBottomLeftRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-bottom-left-radius',{get:function(){var i=t(f[19]).definition;return Object.defineProperty(e,'borderBottomLeftRadius',i),this.borderBottomLeftRadius},set:function(i){var n=t(f[19]).definition;Object.defineProperty(e,'borderBottomLeftRadius',n),this.borderBottomLeftRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderBottomRightRadius',{get:function(){var i=t(f[20]).definition;return Object.defineProperty(e,'borderBottomRightRadius',i),this.borderBottomRightRadius},set:function(i){var n=t(f[20]).definition;Object.defineProperty(e,'borderBottomRightRadius',n),this.borderBottomRightRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-bottom-right-radius',{get:function(){var i=t(f[20]).definition;return Object.defineProperty(e,'borderBottomRightRadius',i),this.borderBottomRightRadius},set:function(i){var n=t(f[20]).definition;Object.defineProperty(e,'borderBottomRightRadius',n),this.borderBottomRightRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderBottomStyle',{get:function(){var i=t(f[21]).definition;return Object.defineProperty(e,'borderBottomStyle',i),this.borderBottomStyle},set:function(i){var n=t(f[21]).definition;Object.defineProperty(e,'borderBottomStyle',n),this.borderBottomStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-bottom-style',{get:function(){var i=t(f[21]).definition;return Object.defineProperty(e,'borderBottomStyle',i),this.borderBottomStyle},set:function(i){var n=t(f[21]).definition;Object.defineProperty(e,'borderBottomStyle',n),this.borderBottomStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderBottomWidth',{get:function(){var i=t(f[22]).definition;return Object.defineProperty(e,'borderBottomWidth',i),this.borderBottomWidth},set:function(i){var n=t(f[22]).definition;Object.defineProperty(e,'borderBottomWidth',n),this.borderBottomWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-bottom-width',{get:function(){var i=t(f[22]).definition;return Object.defineProperty(e,'borderBottomWidth',i),this.borderBottomWidth},set:function(i){var n=t(f[22]).definition;Object.defineProperty(e,'borderBottomWidth',n),this.borderBottomWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderCollapse',{get:function(){var i=t(f[23]).definition;return Object.defineProperty(e,'borderCollapse',i),this.borderCollapse},set:function(i){var n=t(f[23]).definition;Object.defineProperty(e,'borderCollapse',n),this.borderCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-collapse',{get:function(){var i=t(f[23]).definition;return Object.defineProperty(e,'borderCollapse',i),this.borderCollapse},set:function(i){var n=t(f[23]).definition;Object.defineProperty(e,'borderCollapse',n),this.borderCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderColor',{get:function(){var i=t(f[24]).definition;return Object.defineProperty(e,'borderColor',i),this.borderColor},set:function(i){var n=t(f[24]).definition;Object.defineProperty(e,'borderColor',n),this.borderColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-color',{get:function(){var i=t(f[24]).definition;return Object.defineProperty(e,'borderColor',i),this.borderColor},set:function(i){var n=t(f[24]).definition;Object.defineProperty(e,'borderColor',n),this.borderColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderImage',{get:function(){var i=t(f[25]).definition;return Object.defineProperty(e,'borderImage',i),this.borderImage},set:function(i){var n=t(f[25]).definition;Object.defineProperty(e,'borderImage',n),this.borderImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-image',{get:function(){var i=t(f[25]).definition;return Object.defineProperty(e,'borderImage',i),this.borderImage},set:function(i){var n=t(f[25]).definition;Object.defineProperty(e,'borderImage',n),this.borderImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderImageOutset',{get:function(){var i=t(f[26]).definition;return Object.defineProperty(e,'borderImageOutset',i),this.borderImageOutset},set:function(i){var n=t(f[26]).definition;Object.defineProperty(e,'borderImageOutset',n),this.borderImageOutset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-image-outset',{get:function(){var i=t(f[26]).definition;return Object.defineProperty(e,'borderImageOutset',i),this.borderImageOutset},set:function(i){var n=t(f[26]).definition;Object.defineProperty(e,'borderImageOutset',n),this.borderImageOutset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderImageRepeat',{get:function(){var i=t(f[27]).definition;return Object.defineProperty(e,'borderImageRepeat',i),this.borderImageRepeat},set:function(i){var n=t(f[27]).definition;Object.defineProperty(e,'borderImageRepeat',n),this.borderImageRepeat=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-image-repeat',{get:function(){var i=t(f[27]).definition;return Object.defineProperty(e,'borderImageRepeat',i),this.borderImageRepeat},set:function(i){var n=t(f[27]).definition;Object.defineProperty(e,'borderImageRepeat',n),this.borderImageRepeat=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderImageSlice',{get:function(){var i=t(f[28]).definition;return Object.defineProperty(e,'borderImageSlice',i),this.borderImageSlice},set:function(i){var n=t(f[28]).definition;Object.defineProperty(e,'borderImageSlice',n),this.borderImageSlice=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-image-slice',{get:function(){var i=t(f[28]).definition;return Object.defineProperty(e,'borderImageSlice',i),this.borderImageSlice},set:function(i){var n=t(f[28]).definition;Object.defineProperty(e,'borderImageSlice',n),this.borderImageSlice=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderImageSource',{get:function(){var i=t(f[29]).definition;return Object.defineProperty(e,'borderImageSource',i),this.borderImageSource},set:function(i){var n=t(f[29]).definition;Object.defineProperty(e,'borderImageSource',n),this.borderImageSource=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-image-source',{get:function(){var i=t(f[29]).definition;return Object.defineProperty(e,'borderImageSource',i),this.borderImageSource},set:function(i){var n=t(f[29]).definition;Object.defineProperty(e,'borderImageSource',n),this.borderImageSource=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderImageWidth',{get:function(){var i=t(f[30]).definition;return Object.defineProperty(e,'borderImageWidth',i),this.borderImageWidth},set:function(i){var n=t(f[30]).definition;Object.defineProperty(e,'borderImageWidth',n),this.borderImageWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-image-width',{get:function(){var i=t(f[30]).definition;return Object.defineProperty(e,'borderImageWidth',i),this.borderImageWidth},set:function(i){var n=t(f[30]).definition;Object.defineProperty(e,'borderImageWidth',n),this.borderImageWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderLeft',{get:function(){var i=t(f[31]).definition;return Object.defineProperty(e,'borderLeft',i),this.borderLeft},set:function(i){var n=t(f[31]).definition;Object.defineProperty(e,'borderLeft',n),this.borderLeft=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-left',{get:function(){var i=t(f[31]).definition;return Object.defineProperty(e,'borderLeft',i),this.borderLeft},set:function(i){var n=t(f[31]).definition;Object.defineProperty(e,'borderLeft',n),this.borderLeft=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderLeftColor',{get:function(){var i=t(f[32]).definition;return Object.defineProperty(e,'borderLeftColor',i),this.borderLeftColor},set:function(i){var n=t(f[32]).definition;Object.defineProperty(e,'borderLeftColor',n),this.borderLeftColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-left-color',{get:function(){var i=t(f[32]).definition;return Object.defineProperty(e,'borderLeftColor',i),this.borderLeftColor},set:function(i){var n=t(f[32]).definition;Object.defineProperty(e,'borderLeftColor',n),this.borderLeftColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderLeftStyle',{get:function(){var i=t(f[33]).definition;return Object.defineProperty(e,'borderLeftStyle',i),this.borderLeftStyle},set:function(i){var n=t(f[33]).definition;Object.defineProperty(e,'borderLeftStyle',n),this.borderLeftStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-left-style',{get:function(){var i=t(f[33]).definition;return Object.defineProperty(e,'borderLeftStyle',i),this.borderLeftStyle},set:function(i){var n=t(f[33]).definition;Object.defineProperty(e,'borderLeftStyle',n),this.borderLeftStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderLeftWidth',{get:function(){var i=t(f[34]).definition;return Object.defineProperty(e,'borderLeftWidth',i),this.borderLeftWidth},set:function(i){var n=t(f[34]).definition;Object.defineProperty(e,'borderLeftWidth',n),this.borderLeftWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-left-width',{get:function(){var i=t(f[34]).definition;return Object.defineProperty(e,'borderLeftWidth',i),this.borderLeftWidth},set:function(i){var n=t(f[34]).definition;Object.defineProperty(e,'borderLeftWidth',n),this.borderLeftWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderRadius',{get:function(){var i=t(f[35]).definition;return Object.defineProperty(e,'borderRadius',i),this.borderRadius},set:function(i){var n=t(f[35]).definition;Object.defineProperty(e,'borderRadius',n),this.borderRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-radius',{get:function(){var i=t(f[35]).definition;return Object.defineProperty(e,'borderRadius',i),this.borderRadius},set:function(i){var n=t(f[35]).definition;Object.defineProperty(e,'borderRadius',n),this.borderRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderRight',{get:function(){var i=t(f[36]).definition;return Object.defineProperty(e,'borderRight',i),this.borderRight},set:function(i){var n=t(f[36]).definition;Object.defineProperty(e,'borderRight',n),this.borderRight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-right',{get:function(){var i=t(f[36]).definition;return Object.defineProperty(e,'borderRight',i),this.borderRight},set:function(i){var n=t(f[36]).definition;Object.defineProperty(e,'borderRight',n),this.borderRight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderRightColor',{get:function(){var i=t(f[37]).definition;return Object.defineProperty(e,'borderRightColor',i),this.borderRightColor},set:function(i){var n=t(f[37]).definition;Object.defineProperty(e,'borderRightColor',n),this.borderRightColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-right-color',{get:function(){var i=t(f[37]).definition;return Object.defineProperty(e,'borderRightColor',i),this.borderRightColor},set:function(i){var n=t(f[37]).definition;Object.defineProperty(e,'borderRightColor',n),this.borderRightColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderRightStyle',{get:function(){var i=t(f[38]).definition;return Object.defineProperty(e,'borderRightStyle',i),this.borderRightStyle},set:function(i){var n=t(f[38]).definition;Object.defineProperty(e,'borderRightStyle',n),this.borderRightStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-right-style',{get:function(){var i=t(f[38]).definition;return Object.defineProperty(e,'borderRightStyle',i),this.borderRightStyle},set:function(i){var n=t(f[38]).definition;Object.defineProperty(e,'borderRightStyle',n),this.borderRightStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderRightWidth',{get:function(){var i=t(f[39]).definition;return Object.defineProperty(e,'borderRightWidth',i),this.borderRightWidth},set:function(i){var n=t(f[39]).definition;Object.defineProperty(e,'borderRightWidth',n),this.borderRightWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-right-width',{get:function(){var i=t(f[39]).definition;return Object.defineProperty(e,'borderRightWidth',i),this.borderRightWidth},set:function(i){var n=t(f[39]).definition;Object.defineProperty(e,'borderRightWidth',n),this.borderRightWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderSpacing',{get:function(){var i=t(f[40]).definition;return Object.defineProperty(e,'borderSpacing',i),this.borderSpacing},set:function(i){var n=t(f[40]).definition;Object.defineProperty(e,'borderSpacing',n),this.borderSpacing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-spacing',{get:function(){var i=t(f[40]).definition;return Object.defineProperty(e,'borderSpacing',i),this.borderSpacing},set:function(i){var n=t(f[40]).definition;Object.defineProperty(e,'borderSpacing',n),this.borderSpacing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderStyle',{get:function(){var i=t(f[41]).definition;return Object.defineProperty(e,'borderStyle',i),this.borderStyle},set:function(i){var n=t(f[41]).definition;Object.defineProperty(e,'borderStyle',n),this.borderStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-style',{get:function(){var i=t(f[41]).definition;return Object.defineProperty(e,'borderStyle',i),this.borderStyle},set:function(i){var n=t(f[41]).definition;Object.defineProperty(e,'borderStyle',n),this.borderStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderTop',{get:function(){var i=t(f[42]).definition;return Object.defineProperty(e,'borderTop',i),this.borderTop},set:function(i){var n=t(f[42]).definition;Object.defineProperty(e,'borderTop',n),this.borderTop=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-top',{get:function(){var i=t(f[42]).definition;return Object.defineProperty(e,'borderTop',i),this.borderTop},set:function(i){var n=t(f[42]).definition;Object.defineProperty(e,'borderTop',n),this.borderTop=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderTopColor',{get:function(){var i=t(f[43]).definition;return Object.defineProperty(e,'borderTopColor',i),this.borderTopColor},set:function(i){var n=t(f[43]).definition;Object.defineProperty(e,'borderTopColor',n),this.borderTopColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-top-color',{get:function(){var i=t(f[43]).definition;return Object.defineProperty(e,'borderTopColor',i),this.borderTopColor},set:function(i){var n=t(f[43]).definition;Object.defineProperty(e,'borderTopColor',n),this.borderTopColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderTopLeftRadius',{get:function(){var i=t(f[44]).definition;return Object.defineProperty(e,'borderTopLeftRadius',i),this.borderTopLeftRadius},set:function(i){var n=t(f[44]).definition;Object.defineProperty(e,'borderTopLeftRadius',n),this.borderTopLeftRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-top-left-radius',{get:function(){var i=t(f[44]).definition;return Object.defineProperty(e,'borderTopLeftRadius',i),this.borderTopLeftRadius},set:function(i){var n=t(f[44]).definition;Object.defineProperty(e,'borderTopLeftRadius',n),this.borderTopLeftRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderTopRightRadius',{get:function(){var i=t(f[45]).definition;return Object.defineProperty(e,'borderTopRightRadius',i),this.borderTopRightRadius},set:function(i){var n=t(f[45]).definition;Object.defineProperty(e,'borderTopRightRadius',n),this.borderTopRightRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-top-right-radius',{get:function(){var i=t(f[45]).definition;return Object.defineProperty(e,'borderTopRightRadius',i),this.borderTopRightRadius},set:function(i){var n=t(f[45]).definition;Object.defineProperty(e,'borderTopRightRadius',n),this.borderTopRightRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderTopStyle',{get:function(){var i=t(f[46]).definition;return Object.defineProperty(e,'borderTopStyle',i),this.borderTopStyle},set:function(i){var n=t(f[46]).definition;Object.defineProperty(e,'borderTopStyle',n),this.borderTopStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-top-style',{get:function(){var i=t(f[46]).definition;return Object.defineProperty(e,'borderTopStyle',i),this.borderTopStyle},set:function(i){var n=t(f[46]).definition;Object.defineProperty(e,'borderTopStyle',n),this.borderTopStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderTopWidth',{get:function(){var i=t(f[47]).definition;return Object.defineProperty(e,'borderTopWidth',i),this.borderTopWidth},set:function(i){var n=t(f[47]).definition;Object.defineProperty(e,'borderTopWidth',n),this.borderTopWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-top-width',{get:function(){var i=t(f[47]).definition;return Object.defineProperty(e,'borderTopWidth',i),this.borderTopWidth},set:function(i){var n=t(f[47]).definition;Object.defineProperty(e,'borderTopWidth',n),this.borderTopWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'borderWidth',{get:function(){var i=t(f[48]).definition;return Object.defineProperty(e,'borderWidth',i),this.borderWidth},set:function(i){var n=t(f[48]).definition;Object.defineProperty(e,'borderWidth',n),this.borderWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'border-width',{get:function(){var i=t(f[48]).definition;return Object.defineProperty(e,'borderWidth',i),this.borderWidth},set:function(i){var n=t(f[48]).definition;Object.defineProperty(e,'borderWidth',n),this.borderWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'bottom',{get:function(){var i=t(f[49]).definition;return Object.defineProperty(e,'bottom',i),this.bottom},set:function(i){var n=t(f[49]).definition;Object.defineProperty(e,'bottom',n),this.bottom=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'boxShadow',{get:function(){var i=t(f[50]).definition;return Object.defineProperty(e,'boxShadow',i),this.boxShadow},set:function(i){var n=t(f[50]).definition;Object.defineProperty(e,'boxShadow',n),this.boxShadow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'box-shadow',{get:function(){var i=t(f[50]).definition;return Object.defineProperty(e,'boxShadow',i),this.boxShadow},set:function(i){var n=t(f[50]).definition;Object.defineProperty(e,'boxShadow',n),this.boxShadow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'boxSizing',{get:function(){var i=t(f[51]).definition;return Object.defineProperty(e,'boxSizing',i),this.boxSizing},set:function(i){var n=t(f[51]).definition;Object.defineProperty(e,'boxSizing',n),this.boxSizing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'box-sizing',{get:function(){var i=t(f[51]).definition;return Object.defineProperty(e,'boxSizing',i),this.boxSizing},set:function(i){var n=t(f[51]).definition;Object.defineProperty(e,'boxSizing',n),this.boxSizing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'captionSide',{get:function(){var i=t(f[52]).definition;return Object.defineProperty(e,'captionSide',i),this.captionSide},set:function(i){var n=t(f[52]).definition;Object.defineProperty(e,'captionSide',n),this.captionSide=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'caption-side',{get:function(){var i=t(f[52]).definition;return Object.defineProperty(e,'captionSide',i),this.captionSide},set:function(i){var n=t(f[52]).definition;Object.defineProperty(e,'captionSide',n),this.captionSide=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'clear',{get:function(){var i=t(f[53]).definition;return Object.defineProperty(e,'clear',i),this.clear},set:function(i){var n=t(f[53]).definition;Object.defineProperty(e,'clear',n),this.clear=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'clip',{get:function(){var i=t(f[54]).definition;return Object.defineProperty(e,'clip',i),this.clip},set:function(i){var n=t(f[54]).definition;Object.defineProperty(e,'clip',n),this.clip=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'color',{get:function(){var i=t(f[55]).definition;return Object.defineProperty(e,'color',i),this.color},set:function(i){var n=t(f[55]).definition;Object.defineProperty(e,'color',n),this.color=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'colorInterpolation',{get:function(){var i=t(f[56]).definition;return Object.defineProperty(e,'colorInterpolation',i),this.colorInterpolation},set:function(i){var n=t(f[56]).definition;Object.defineProperty(e,'colorInterpolation',n),this.colorInterpolation=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'color-interpolation',{get:function(){var i=t(f[56]).definition;return Object.defineProperty(e,'colorInterpolation',i),this.colorInterpolation},set:function(i){var n=t(f[56]).definition;Object.defineProperty(e,'colorInterpolation',n),this.colorInterpolation=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'colorInterpolationFilters',{get:function(){var i=t(f[57]).definition;return Object.defineProperty(e,'colorInterpolationFilters',i),this.colorInterpolationFilters},set:function(i){var n=t(f[57]).definition;Object.defineProperty(e,'colorInterpolationFilters',n),this.colorInterpolationFilters=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'color-interpolation-filters',{get:function(){var i=t(f[57]).definition;return Object.defineProperty(e,'colorInterpolationFilters',i),this.colorInterpolationFilters},set:function(i){var n=t(f[57]).definition;Object.defineProperty(e,'colorInterpolationFilters',n),this.colorInterpolationFilters=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'colorProfile',{get:function(){var i=t(f[58]).definition;return Object.defineProperty(e,'colorProfile',i),this.colorProfile},set:function(i){var n=t(f[58]).definition;Object.defineProperty(e,'colorProfile',n),this.colorProfile=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'color-profile',{get:function(){var i=t(f[58]).definition;return Object.defineProperty(e,'colorProfile',i),this.colorProfile},set:function(i){var n=t(f[58]).definition;Object.defineProperty(e,'colorProfile',n),this.colorProfile=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'colorRendering',{get:function(){var i=t(f[59]).definition;return Object.defineProperty(e,'colorRendering',i),this.colorRendering},set:function(i){var n=t(f[59]).definition;Object.defineProperty(e,'colorRendering',n),this.colorRendering=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'color-rendering',{get:function(){var i=t(f[59]).definition;return Object.defineProperty(e,'colorRendering',i),this.colorRendering},set:function(i){var n=t(f[59]).definition;Object.defineProperty(e,'colorRendering',n),this.colorRendering=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'content',{get:function(){var i=t(f[60]).definition;return Object.defineProperty(e,'content',i),this.content},set:function(i){var n=t(f[60]).definition;Object.defineProperty(e,'content',n),this.content=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'counterIncrement',{get:function(){var i=t(f[61]).definition;return Object.defineProperty(e,'counterIncrement',i),this.counterIncrement},set:function(i){var n=t(f[61]).definition;Object.defineProperty(e,'counterIncrement',n),this.counterIncrement=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'counter-increment',{get:function(){var i=t(f[61]).definition;return Object.defineProperty(e,'counterIncrement',i),this.counterIncrement},set:function(i){var n=t(f[61]).definition;Object.defineProperty(e,'counterIncrement',n),this.counterIncrement=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'counterReset',{get:function(){var i=t(f[62]).definition;return Object.defineProperty(e,'counterReset',i),this.counterReset},set:function(i){var n=t(f[62]).definition;Object.defineProperty(e,'counterReset',n),this.counterReset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'counter-reset',{get:function(){var i=t(f[62]).definition;return Object.defineProperty(e,'counterReset',i),this.counterReset},set:function(i){var n=t(f[62]).definition;Object.defineProperty(e,'counterReset',n),this.counterReset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'cssFloat',{get:function(){var i=t(f[63]).definition;return Object.defineProperty(e,'cssFloat',i),this.cssFloat},set:function(i){var n=t(f[63]).definition;Object.defineProperty(e,'cssFloat',n),this.cssFloat=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'css-float',{get:function(){var i=t(f[63]).definition;return Object.defineProperty(e,'cssFloat',i),this.cssFloat},set:function(i){var n=t(f[63]).definition;Object.defineProperty(e,'cssFloat',n),this.cssFloat=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'cue',{get:function(){var i=t(f[64]).definition;return Object.defineProperty(e,'cue',i),this.cue},set:function(i){var n=t(f[64]).definition;Object.defineProperty(e,'cue',n),this.cue=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'cueAfter',{get:function(){var i=t(f[65]).definition;return Object.defineProperty(e,'cueAfter',i),this.cueAfter},set:function(i){var n=t(f[65]).definition;Object.defineProperty(e,'cueAfter',n),this.cueAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'cue-after',{get:function(){var i=t(f[65]).definition;return Object.defineProperty(e,'cueAfter',i),this.cueAfter},set:function(i){var n=t(f[65]).definition;Object.defineProperty(e,'cueAfter',n),this.cueAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'cueBefore',{get:function(){var i=t(f[66]).definition;return Object.defineProperty(e,'cueBefore',i),this.cueBefore},set:function(i){var n=t(f[66]).definition;Object.defineProperty(e,'cueBefore',n),this.cueBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'cue-before',{get:function(){var i=t(f[66]).definition;return Object.defineProperty(e,'cueBefore',i),this.cueBefore},set:function(i){var n=t(f[66]).definition;Object.defineProperty(e,'cueBefore',n),this.cueBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'cursor',{get:function(){var i=t(f[67]).definition;return Object.defineProperty(e,'cursor',i),this.cursor},set:function(i){var n=t(f[67]).definition;Object.defineProperty(e,'cursor',n),this.cursor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'direction',{get:function(){var i=t(f[68]).definition;return Object.defineProperty(e,'direction',i),this.direction},set:function(i){var n=t(f[68]).definition;Object.defineProperty(e,'direction',n),this.direction=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'display',{get:function(){var i=t(f[69]).definition;return Object.defineProperty(e,'display',i),this.display},set:function(i){var n=t(f[69]).definition;Object.defineProperty(e,'display',n),this.display=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'dominantBaseline',{get:function(){var i=t(f[70]).definition;return Object.defineProperty(e,'dominantBaseline',i),this.dominantBaseline},set:function(i){var n=t(f[70]).definition;Object.defineProperty(e,'dominantBaseline',n),this.dominantBaseline=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'dominant-baseline',{get:function(){var i=t(f[70]).definition;return Object.defineProperty(e,'dominantBaseline',i),this.dominantBaseline},set:function(i){var n=t(f[70]).definition;Object.defineProperty(e,'dominantBaseline',n),this.dominantBaseline=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'elevation',{get:function(){var i=t(f[71]).definition;return Object.defineProperty(e,'elevation',i),this.elevation},set:function(i){var n=t(f[71]).definition;Object.defineProperty(e,'elevation',n),this.elevation=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'emptyCells',{get:function(){var i=t(f[72]).definition;return Object.defineProperty(e,'emptyCells',i),this.emptyCells},set:function(i){var n=t(f[72]).definition;Object.defineProperty(e,'emptyCells',n),this.emptyCells=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'empty-cells',{get:function(){var i=t(f[72]).definition;return Object.defineProperty(e,'emptyCells',i),this.emptyCells},set:function(i){var n=t(f[72]).definition;Object.defineProperty(e,'emptyCells',n),this.emptyCells=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'enableBackground',{get:function(){var i=t(f[73]).definition;return Object.defineProperty(e,'enableBackground',i),this.enableBackground},set:function(i){var n=t(f[73]).definition;Object.defineProperty(e,'enableBackground',n),this.enableBackground=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'enable-background',{get:function(){var i=t(f[73]).definition;return Object.defineProperty(e,'enableBackground',i),this.enableBackground},set:function(i){var n=t(f[73]).definition;Object.defineProperty(e,'enableBackground',n),this.enableBackground=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fill',{get:function(){var i=t(f[74]).definition;return Object.defineProperty(e,'fill',i),this.fill},set:function(i){var n=t(f[74]).definition;Object.defineProperty(e,'fill',n),this.fill=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fillOpacity',{get:function(){var i=t(f[75]).definition;return Object.defineProperty(e,'fillOpacity',i),this.fillOpacity},set:function(i){var n=t(f[75]).definition;Object.defineProperty(e,'fillOpacity',n),this.fillOpacity=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fill-opacity',{get:function(){var i=t(f[75]).definition;return Object.defineProperty(e,'fillOpacity',i),this.fillOpacity},set:function(i){var n=t(f[75]).definition;Object.defineProperty(e,'fillOpacity',n),this.fillOpacity=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fillRule',{get:function(){var i=t(f[76]).definition;return Object.defineProperty(e,'fillRule',i),this.fillRule},set:function(i){var n=t(f[76]).definition;Object.defineProperty(e,'fillRule',n),this.fillRule=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fill-rule',{get:function(){var i=t(f[76]).definition;return Object.defineProperty(e,'fillRule',i),this.fillRule},set:function(i){var n=t(f[76]).definition;Object.defineProperty(e,'fillRule',n),this.fillRule=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'filter',{get:function(){var i=t(f[77]).definition;return Object.defineProperty(e,'filter',i),this.filter},set:function(i){var n=t(f[77]).definition;Object.defineProperty(e,'filter',n),this.filter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'floodColor',{get:function(){var i=t(f[78]).definition;return Object.defineProperty(e,'floodColor',i),this.floodColor},set:function(i){var n=t(f[78]).definition;Object.defineProperty(e,'floodColor',n),this.floodColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'flood-color',{get:function(){var i=t(f[78]).definition;return Object.defineProperty(e,'floodColor',i),this.floodColor},set:function(i){var n=t(f[78]).definition;Object.defineProperty(e,'floodColor',n),this.floodColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'floodOpacity',{get:function(){var i=t(f[79]).definition;return Object.defineProperty(e,'floodOpacity',i),this.floodOpacity},set:function(i){var n=t(f[79]).definition;Object.defineProperty(e,'floodOpacity',n),this.floodOpacity=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'flood-opacity',{get:function(){var i=t(f[79]).definition;return Object.defineProperty(e,'floodOpacity',i),this.floodOpacity},set:function(i){var n=t(f[79]).definition;Object.defineProperty(e,'floodOpacity',n),this.floodOpacity=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'font',{get:function(){var i=t(f[80]).definition;return Object.defineProperty(e,'font',i),this.font},set:function(i){var n=t(f[80]).definition;Object.defineProperty(e,'font',n),this.font=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fontFamily',{get:function(){var i=t(f[81]).definition;return Object.defineProperty(e,'fontFamily',i),this.fontFamily},set:function(i){var n=t(f[81]).definition;Object.defineProperty(e,'fontFamily',n),this.fontFamily=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'font-family',{get:function(){var i=t(f[81]).definition;return Object.defineProperty(e,'fontFamily',i),this.fontFamily},set:function(i){var n=t(f[81]).definition;Object.defineProperty(e,'fontFamily',n),this.fontFamily=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fontSize',{get:function(){var i=t(f[82]).definition;return Object.defineProperty(e,'fontSize',i),this.fontSize},set:function(i){var n=t(f[82]).definition;Object.defineProperty(e,'fontSize',n),this.fontSize=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'font-size',{get:function(){var i=t(f[82]).definition;return Object.defineProperty(e,'fontSize',i),this.fontSize},set:function(i){var n=t(f[82]).definition;Object.defineProperty(e,'fontSize',n),this.fontSize=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fontSizeAdjust',{get:function(){var i=t(f[83]).definition;return Object.defineProperty(e,'fontSizeAdjust',i),this.fontSizeAdjust},set:function(i){var n=t(f[83]).definition;Object.defineProperty(e,'fontSizeAdjust',n),this.fontSizeAdjust=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'font-size-adjust',{get:function(){var i=t(f[83]).definition;return Object.defineProperty(e,'fontSizeAdjust',i),this.fontSizeAdjust},set:function(i){var n=t(f[83]).definition;Object.defineProperty(e,'fontSizeAdjust',n),this.fontSizeAdjust=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fontStretch',{get:function(){var i=t(f[84]).definition;return Object.defineProperty(e,'fontStretch',i),this.fontStretch},set:function(i){var n=t(f[84]).definition;Object.defineProperty(e,'fontStretch',n),this.fontStretch=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'font-stretch',{get:function(){var i=t(f[84]).definition;return Object.defineProperty(e,'fontStretch',i),this.fontStretch},set:function(i){var n=t(f[84]).definition;Object.defineProperty(e,'fontStretch',n),this.fontStretch=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fontStyle',{get:function(){var i=t(f[85]).definition;return Object.defineProperty(e,'fontStyle',i),this.fontStyle},set:function(i){var n=t(f[85]).definition;Object.defineProperty(e,'fontStyle',n),this.fontStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'font-style',{get:function(){var i=t(f[85]).definition;return Object.defineProperty(e,'fontStyle',i),this.fontStyle},set:function(i){var n=t(f[85]).definition;Object.defineProperty(e,'fontStyle',n),this.fontStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fontVariant',{get:function(){var i=t(f[86]).definition;return Object.defineProperty(e,'fontVariant',i),this.fontVariant},set:function(i){var n=t(f[86]).definition;Object.defineProperty(e,'fontVariant',n),this.fontVariant=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'font-variant',{get:function(){var i=t(f[86]).definition;return Object.defineProperty(e,'fontVariant',i),this.fontVariant},set:function(i){var n=t(f[86]).definition;Object.defineProperty(e,'fontVariant',n),this.fontVariant=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'fontWeight',{get:function(){var i=t(f[87]).definition;return Object.defineProperty(e,'fontWeight',i),this.fontWeight},set:function(i){var n=t(f[87]).definition;Object.defineProperty(e,'fontWeight',n),this.fontWeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'font-weight',{get:function(){var i=t(f[87]).definition;return Object.defineProperty(e,'fontWeight',i),this.fontWeight},set:function(i){var n=t(f[87]).definition;Object.defineProperty(e,'fontWeight',n),this.fontWeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'glyphOrientationHorizontal',{get:function(){var i=t(f[88]).definition;return Object.defineProperty(e,'glyphOrientationHorizontal',i),this.glyphOrientationHorizontal},set:function(i){var n=t(f[88]).definition;Object.defineProperty(e,'glyphOrientationHorizontal',n),this.glyphOrientationHorizontal=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'glyph-orientation-horizontal',{get:function(){var i=t(f[88]).definition;return Object.defineProperty(e,'glyphOrientationHorizontal',i),this.glyphOrientationHorizontal},set:function(i){var n=t(f[88]).definition;Object.defineProperty(e,'glyphOrientationHorizontal',n),this.glyphOrientationHorizontal=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'glyphOrientationVertical',{get:function(){var i=t(f[89]).definition;return Object.defineProperty(e,'glyphOrientationVertical',i),this.glyphOrientationVertical},set:function(i){var n=t(f[89]).definition;Object.defineProperty(e,'glyphOrientationVertical',n),this.glyphOrientationVertical=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'glyph-orientation-vertical',{get:function(){var i=t(f[89]).definition;return Object.defineProperty(e,'glyphOrientationVertical',i),this.glyphOrientationVertical},set:function(i){var n=t(f[89]).definition;Object.defineProperty(e,'glyphOrientationVertical',n),this.glyphOrientationVertical=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'height',{get:function(){var i=t(f[90]).definition;return Object.defineProperty(e,'height',i),this.height},set:function(i){var n=t(f[90]).definition;Object.defineProperty(e,'height',n),this.height=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'imageRendering',{get:function(){var i=t(f[91]).definition;return Object.defineProperty(e,'imageRendering',i),this.imageRendering},set:function(i){var n=t(f[91]).definition;Object.defineProperty(e,'imageRendering',n),this.imageRendering=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'image-rendering',{get:function(){var i=t(f[91]).definition;return Object.defineProperty(e,'imageRendering',i),this.imageRendering},set:function(i){var n=t(f[91]).definition;Object.defineProperty(e,'imageRendering',n),this.imageRendering=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'kerning',{get:function(){var i=t(f[92]).definition;return Object.defineProperty(e,'kerning',i),this.kerning},set:function(i){var n=t(f[92]).definition;Object.defineProperty(e,'kerning',n),this.kerning=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'left',{get:function(){var i=t(f[93]).definition;return Object.defineProperty(e,'left',i),this.left},set:function(i){var n=t(f[93]).definition;Object.defineProperty(e,'left',n),this.left=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'letterSpacing',{get:function(){var i=t(f[94]).definition;return Object.defineProperty(e,'letterSpacing',i),this.letterSpacing},set:function(i){var n=t(f[94]).definition;Object.defineProperty(e,'letterSpacing',n),this.letterSpacing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'letter-spacing',{get:function(){var i=t(f[94]).definition;return Object.defineProperty(e,'letterSpacing',i),this.letterSpacing},set:function(i){var n=t(f[94]).definition;Object.defineProperty(e,'letterSpacing',n),this.letterSpacing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'lightingColor',{get:function(){var i=t(f[95]).definition;return Object.defineProperty(e,'lightingColor',i),this.lightingColor},set:function(i){var n=t(f[95]).definition;Object.defineProperty(e,'lightingColor',n),this.lightingColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'lighting-color',{get:function(){var i=t(f[95]).definition;return Object.defineProperty(e,'lightingColor',i),this.lightingColor},set:function(i){var n=t(f[95]).definition;Object.defineProperty(e,'lightingColor',n),this.lightingColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'lineHeight',{get:function(){var i=t(f[96]).definition;return Object.defineProperty(e,'lineHeight',i),this.lineHeight},set:function(i){var n=t(f[96]).definition;Object.defineProperty(e,'lineHeight',n),this.lineHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'line-height',{get:function(){var i=t(f[96]).definition;return Object.defineProperty(e,'lineHeight',i),this.lineHeight},set:function(i){var n=t(f[96]).definition;Object.defineProperty(e,'lineHeight',n),this.lineHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'listStyle',{get:function(){var i=t(f[97]).definition;return Object.defineProperty(e,'listStyle',i),this.listStyle},set:function(i){var n=t(f[97]).definition;Object.defineProperty(e,'listStyle',n),this.listStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'list-style',{get:function(){var i=t(f[97]).definition;return Object.defineProperty(e,'listStyle',i),this.listStyle},set:function(i){var n=t(f[97]).definition;Object.defineProperty(e,'listStyle',n),this.listStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'listStyleImage',{get:function(){var i=t(f[98]).definition;return Object.defineProperty(e,'listStyleImage',i),this.listStyleImage},set:function(i){var n=t(f[98]).definition;Object.defineProperty(e,'listStyleImage',n),this.listStyleImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'list-style-image',{get:function(){var i=t(f[98]).definition;return Object.defineProperty(e,'listStyleImage',i),this.listStyleImage},set:function(i){var n=t(f[98]).definition;Object.defineProperty(e,'listStyleImage',n),this.listStyleImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'listStylePosition',{get:function(){var i=t(f[99]).definition;return Object.defineProperty(e,'listStylePosition',i),this.listStylePosition},set:function(i){var n=t(f[99]).definition;Object.defineProperty(e,'listStylePosition',n),this.listStylePosition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'list-style-position',{get:function(){var i=t(f[99]).definition;return Object.defineProperty(e,'listStylePosition',i),this.listStylePosition},set:function(i){var n=t(f[99]).definition;Object.defineProperty(e,'listStylePosition',n),this.listStylePosition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'listStyleType',{get:function(){var i=t(f[100]).definition;return Object.defineProperty(e,'listStyleType',i),this.listStyleType},set:function(i){var n=t(f[100]).definition;Object.defineProperty(e,'listStyleType',n),this.listStyleType=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'list-style-type',{get:function(){var i=t(f[100]).definition;return Object.defineProperty(e,'listStyleType',i),this.listStyleType},set:function(i){var n=t(f[100]).definition;Object.defineProperty(e,'listStyleType',n),this.listStyleType=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'margin',{get:function(){var i=t(f[101]).definition;return Object.defineProperty(e,'margin',i),this.margin},set:function(i){var n=t(f[101]).definition;Object.defineProperty(e,'margin',n),this.margin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'marginBottom',{get:function(){var i=t(f[102]).definition;return Object.defineProperty(e,'marginBottom',i),this.marginBottom},set:function(i){var n=t(f[102]).definition;Object.defineProperty(e,'marginBottom',n),this.marginBottom=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'margin-bottom',{get:function(){var i=t(f[102]).definition;return Object.defineProperty(e,'marginBottom',i),this.marginBottom},set:function(i){var n=t(f[102]).definition;Object.defineProperty(e,'marginBottom',n),this.marginBottom=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'marginLeft',{get:function(){var i=t(f[103]).definition;return Object.defineProperty(e,'marginLeft',i),this.marginLeft},set:function(i){var n=t(f[103]).definition;Object.defineProperty(e,'marginLeft',n),this.marginLeft=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'margin-left',{get:function(){var i=t(f[103]).definition;return Object.defineProperty(e,'marginLeft',i),this.marginLeft},set:function(i){var n=t(f[103]).definition;Object.defineProperty(e,'marginLeft',n),this.marginLeft=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'marginRight',{get:function(){var i=t(f[104]).definition;return Object.defineProperty(e,'marginRight',i),this.marginRight},set:function(i){var n=t(f[104]).definition;Object.defineProperty(e,'marginRight',n),this.marginRight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'margin-right',{get:function(){var i=t(f[104]).definition;return Object.defineProperty(e,'marginRight',i),this.marginRight},set:function(i){var n=t(f[104]).definition;Object.defineProperty(e,'marginRight',n),this.marginRight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'marginTop',{get:function(){var i=t(f[105]).definition;return Object.defineProperty(e,'marginTop',i),this.marginTop},set:function(i){var n=t(f[105]).definition;Object.defineProperty(e,'marginTop',n),this.marginTop=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'margin-top',{get:function(){var i=t(f[105]).definition;return Object.defineProperty(e,'marginTop',i),this.marginTop},set:function(i){var n=t(f[105]).definition;Object.defineProperty(e,'marginTop',n),this.marginTop=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'marker',{get:function(){var i=t(f[106]).definition;return Object.defineProperty(e,'marker',i),this.marker},set:function(i){var n=t(f[106]).definition;Object.defineProperty(e,'marker',n),this.marker=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'markerEnd',{get:function(){var i=t(f[107]).definition;return Object.defineProperty(e,'markerEnd',i),this.markerEnd},set:function(i){var n=t(f[107]).definition;Object.defineProperty(e,'markerEnd',n),this.markerEnd=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'marker-end',{get:function(){var i=t(f[107]).definition;return Object.defineProperty(e,'markerEnd',i),this.markerEnd},set:function(i){var n=t(f[107]).definition;Object.defineProperty(e,'markerEnd',n),this.markerEnd=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'markerMid',{get:function(){var i=t(f[108]).definition;return Object.defineProperty(e,'markerMid',i),this.markerMid},set:function(i){var n=t(f[108]).definition;Object.defineProperty(e,'markerMid',n),this.markerMid=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'marker-mid',{get:function(){var i=t(f[108]).definition;return Object.defineProperty(e,'markerMid',i),this.markerMid},set:function(i){var n=t(f[108]).definition;Object.defineProperty(e,'markerMid',n),this.markerMid=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'markerOffset',{get:function(){var i=t(f[109]).definition;return Object.defineProperty(e,'markerOffset',i),this.markerOffset},set:function(i){var n=t(f[109]).definition;Object.defineProperty(e,'markerOffset',n),this.markerOffset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'marker-offset',{get:function(){var i=t(f[109]).definition;return Object.defineProperty(e,'markerOffset',i),this.markerOffset},set:function(i){var n=t(f[109]).definition;Object.defineProperty(e,'markerOffset',n),this.markerOffset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'markerStart',{get:function(){var i=t(f[110]).definition;return Object.defineProperty(e,'markerStart',i),this.markerStart},set:function(i){var n=t(f[110]).definition;Object.defineProperty(e,'markerStart',n),this.markerStart=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'marker-start',{get:function(){var i=t(f[110]).definition;return Object.defineProperty(e,'markerStart',i),this.markerStart},set:function(i){var n=t(f[110]).definition;Object.defineProperty(e,'markerStart',n),this.markerStart=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'marks',{get:function(){var i=t(f[111]).definition;return Object.defineProperty(e,'marks',i),this.marks},set:function(i){var n=t(f[111]).definition;Object.defineProperty(e,'marks',n),this.marks=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'mask',{get:function(){var i=t(f[112]).definition;return Object.defineProperty(e,'mask',i),this.mask},set:function(i){var n=t(f[112]).definition;Object.defineProperty(e,'mask',n),this.mask=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'maxHeight',{get:function(){var i=t(f[113]).definition;return Object.defineProperty(e,'maxHeight',i),this.maxHeight},set:function(i){var n=t(f[113]).definition;Object.defineProperty(e,'maxHeight',n),this.maxHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'max-height',{get:function(){var i=t(f[113]).definition;return Object.defineProperty(e,'maxHeight',i),this.maxHeight},set:function(i){var n=t(f[113]).definition;Object.defineProperty(e,'maxHeight',n),this.maxHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'maxWidth',{get:function(){var i=t(f[114]).definition;return Object.defineProperty(e,'maxWidth',i),this.maxWidth},set:function(i){var n=t(f[114]).definition;Object.defineProperty(e,'maxWidth',n),this.maxWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'max-width',{get:function(){var i=t(f[114]).definition;return Object.defineProperty(e,'maxWidth',i),this.maxWidth},set:function(i){var n=t(f[114]).definition;Object.defineProperty(e,'maxWidth',n),this.maxWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'minHeight',{get:function(){var i=t(f[115]).definition;return Object.defineProperty(e,'minHeight',i),this.minHeight},set:function(i){var n=t(f[115]).definition;Object.defineProperty(e,'minHeight',n),this.minHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'min-height',{get:function(){var i=t(f[115]).definition;return Object.defineProperty(e,'minHeight',i),this.minHeight},set:function(i){var n=t(f[115]).definition;Object.defineProperty(e,'minHeight',n),this.minHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'minWidth',{get:function(){var i=t(f[116]).definition;return Object.defineProperty(e,'minWidth',i),this.minWidth},set:function(i){var n=t(f[116]).definition;Object.defineProperty(e,'minWidth',n),this.minWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'min-width',{get:function(){var i=t(f[116]).definition;return Object.defineProperty(e,'minWidth',i),this.minWidth},set:function(i){var n=t(f[116]).definition;Object.defineProperty(e,'minWidth',n),this.minWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'opacity',{get:function(){var i=t(f[117]).definition;return Object.defineProperty(e,'opacity',i),this.opacity},set:function(i){var n=t(f[117]).definition;Object.defineProperty(e,'opacity',n),this.opacity=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'orphans',{get:function(){var i=t(f[118]).definition;return Object.defineProperty(e,'orphans',i),this.orphans},set:function(i){var n=t(f[118]).definition;Object.defineProperty(e,'orphans',n),this.orphans=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'outline',{get:function(){var i=t(f[119]).definition;return Object.defineProperty(e,'outline',i),this.outline},set:function(i){var n=t(f[119]).definition;Object.defineProperty(e,'outline',n),this.outline=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'outlineColor',{get:function(){var i=t(f[120]).definition;return Object.defineProperty(e,'outlineColor',i),this.outlineColor},set:function(i){var n=t(f[120]).definition;Object.defineProperty(e,'outlineColor',n),this.outlineColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'outline-color',{get:function(){var i=t(f[120]).definition;return Object.defineProperty(e,'outlineColor',i),this.outlineColor},set:function(i){var n=t(f[120]).definition;Object.defineProperty(e,'outlineColor',n),this.outlineColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'outlineOffset',{get:function(){var i=t(f[121]).definition;return Object.defineProperty(e,'outlineOffset',i),this.outlineOffset},set:function(i){var n=t(f[121]).definition;Object.defineProperty(e,'outlineOffset',n),this.outlineOffset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'outline-offset',{get:function(){var i=t(f[121]).definition;return Object.defineProperty(e,'outlineOffset',i),this.outlineOffset},set:function(i){var n=t(f[121]).definition;Object.defineProperty(e,'outlineOffset',n),this.outlineOffset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'outlineStyle',{get:function(){var i=t(f[122]).definition;return Object.defineProperty(e,'outlineStyle',i),this.outlineStyle},set:function(i){var n=t(f[122]).definition;Object.defineProperty(e,'outlineStyle',n),this.outlineStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'outline-style',{get:function(){var i=t(f[122]).definition;return Object.defineProperty(e,'outlineStyle',i),this.outlineStyle},set:function(i){var n=t(f[122]).definition;Object.defineProperty(e,'outlineStyle',n),this.outlineStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'outlineWidth',{get:function(){var i=t(f[123]).definition;return Object.defineProperty(e,'outlineWidth',i),this.outlineWidth},set:function(i){var n=t(f[123]).definition;Object.defineProperty(e,'outlineWidth',n),this.outlineWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'outline-width',{get:function(){var i=t(f[123]).definition;return Object.defineProperty(e,'outlineWidth',i),this.outlineWidth},set:function(i){var n=t(f[123]).definition;Object.defineProperty(e,'outlineWidth',n),this.outlineWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'overflow',{get:function(){var i=t(f[124]).definition;return Object.defineProperty(e,'overflow',i),this.overflow},set:function(i){var n=t(f[124]).definition;Object.defineProperty(e,'overflow',n),this.overflow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'overflowX',{get:function(){var i=t(f[125]).definition;return Object.defineProperty(e,'overflowX',i),this.overflowX},set:function(i){var n=t(f[125]).definition;Object.defineProperty(e,'overflowX',n),this.overflowX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'overflow-x',{get:function(){var i=t(f[125]).definition;return Object.defineProperty(e,'overflowX',i),this.overflowX},set:function(i){var n=t(f[125]).definition;Object.defineProperty(e,'overflowX',n),this.overflowX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'overflowY',{get:function(){var i=t(f[126]).definition;return Object.defineProperty(e,'overflowY',i),this.overflowY},set:function(i){var n=t(f[126]).definition;Object.defineProperty(e,'overflowY',n),this.overflowY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'overflow-y',{get:function(){var i=t(f[126]).definition;return Object.defineProperty(e,'overflowY',i),this.overflowY},set:function(i){var n=t(f[126]).definition;Object.defineProperty(e,'overflowY',n),this.overflowY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'padding',{get:function(){var i=t(f[127]).definition;return Object.defineProperty(e,'padding',i),this.padding},set:function(i){var n=t(f[127]).definition;Object.defineProperty(e,'padding',n),this.padding=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'paddingBottom',{get:function(){var i=t(f[128]).definition;return Object.defineProperty(e,'paddingBottom',i),this.paddingBottom},set:function(i){var n=t(f[128]).definition;Object.defineProperty(e,'paddingBottom',n),this.paddingBottom=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'padding-bottom',{get:function(){var i=t(f[128]).definition;return Object.defineProperty(e,'paddingBottom',i),this.paddingBottom},set:function(i){var n=t(f[128]).definition;Object.defineProperty(e,'paddingBottom',n),this.paddingBottom=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'paddingLeft',{get:function(){var i=t(f[129]).definition;return Object.defineProperty(e,'paddingLeft',i),this.paddingLeft},set:function(i){var n=t(f[129]).definition;Object.defineProperty(e,'paddingLeft',n),this.paddingLeft=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'padding-left',{get:function(){var i=t(f[129]).definition;return Object.defineProperty(e,'paddingLeft',i),this.paddingLeft},set:function(i){var n=t(f[129]).definition;Object.defineProperty(e,'paddingLeft',n),this.paddingLeft=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'paddingRight',{get:function(){var i=t(f[130]).definition;return Object.defineProperty(e,'paddingRight',i),this.paddingRight},set:function(i){var n=t(f[130]).definition;Object.defineProperty(e,'paddingRight',n),this.paddingRight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'padding-right',{get:function(){var i=t(f[130]).definition;return Object.defineProperty(e,'paddingRight',i),this.paddingRight},set:function(i){var n=t(f[130]).definition;Object.defineProperty(e,'paddingRight',n),this.paddingRight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'paddingTop',{get:function(){var i=t(f[131]).definition;return Object.defineProperty(e,'paddingTop',i),this.paddingTop},set:function(i){var n=t(f[131]).definition;Object.defineProperty(e,'paddingTop',n),this.paddingTop=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'padding-top',{get:function(){var i=t(f[131]).definition;return Object.defineProperty(e,'paddingTop',i),this.paddingTop},set:function(i){var n=t(f[131]).definition;Object.defineProperty(e,'paddingTop',n),this.paddingTop=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'page',{get:function(){var i=t(f[132]).definition;return Object.defineProperty(e,'page',i),this.page},set:function(i){var n=t(f[132]).definition;Object.defineProperty(e,'page',n),this.page=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pageBreakAfter',{get:function(){var i=t(f[133]).definition;return Object.defineProperty(e,'pageBreakAfter',i),this.pageBreakAfter},set:function(i){var n=t(f[133]).definition;Object.defineProperty(e,'pageBreakAfter',n),this.pageBreakAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'page-break-after',{get:function(){var i=t(f[133]).definition;return Object.defineProperty(e,'pageBreakAfter',i),this.pageBreakAfter},set:function(i){var n=t(f[133]).definition;Object.defineProperty(e,'pageBreakAfter',n),this.pageBreakAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pageBreakBefore',{get:function(){var i=t(f[134]).definition;return Object.defineProperty(e,'pageBreakBefore',i),this.pageBreakBefore},set:function(i){var n=t(f[134]).definition;Object.defineProperty(e,'pageBreakBefore',n),this.pageBreakBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'page-break-before',{get:function(){var i=t(f[134]).definition;return Object.defineProperty(e,'pageBreakBefore',i),this.pageBreakBefore},set:function(i){var n=t(f[134]).definition;Object.defineProperty(e,'pageBreakBefore',n),this.pageBreakBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pageBreakInside',{get:function(){var i=t(f[135]).definition;return Object.defineProperty(e,'pageBreakInside',i),this.pageBreakInside},set:function(i){var n=t(f[135]).definition;Object.defineProperty(e,'pageBreakInside',n),this.pageBreakInside=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'page-break-inside',{get:function(){var i=t(f[135]).definition;return Object.defineProperty(e,'pageBreakInside',i),this.pageBreakInside},set:function(i){var n=t(f[135]).definition;Object.defineProperty(e,'pageBreakInside',n),this.pageBreakInside=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pause',{get:function(){var i=t(f[136]).definition;return Object.defineProperty(e,'pause',i),this.pause},set:function(i){var n=t(f[136]).definition;Object.defineProperty(e,'pause',n),this.pause=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pauseAfter',{get:function(){var i=t(f[137]).definition;return Object.defineProperty(e,'pauseAfter',i),this.pauseAfter},set:function(i){var n=t(f[137]).definition;Object.defineProperty(e,'pauseAfter',n),this.pauseAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pause-after',{get:function(){var i=t(f[137]).definition;return Object.defineProperty(e,'pauseAfter',i),this.pauseAfter},set:function(i){var n=t(f[137]).definition;Object.defineProperty(e,'pauseAfter',n),this.pauseAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pauseBefore',{get:function(){var i=t(f[138]).definition;return Object.defineProperty(e,'pauseBefore',i),this.pauseBefore},set:function(i){var n=t(f[138]).definition;Object.defineProperty(e,'pauseBefore',n),this.pauseBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pause-before',{get:function(){var i=t(f[138]).definition;return Object.defineProperty(e,'pauseBefore',i),this.pauseBefore},set:function(i){var n=t(f[138]).definition;Object.defineProperty(e,'pauseBefore',n),this.pauseBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pitch',{get:function(){var i=t(f[139]).definition;return Object.defineProperty(e,'pitch',i),this.pitch},set:function(i){var n=t(f[139]).definition;Object.defineProperty(e,'pitch',n),this.pitch=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pitchRange',{get:function(){var i=t(f[140]).definition;return Object.defineProperty(e,'pitchRange',i),this.pitchRange},set:function(i){var n=t(f[140]).definition;Object.defineProperty(e,'pitchRange',n),this.pitchRange=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pitch-range',{get:function(){var i=t(f[140]).definition;return Object.defineProperty(e,'pitchRange',i),this.pitchRange},set:function(i){var n=t(f[140]).definition;Object.defineProperty(e,'pitchRange',n),this.pitchRange=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'playDuring',{get:function(){var i=t(f[141]).definition;return Object.defineProperty(e,'playDuring',i),this.playDuring},set:function(i){var n=t(f[141]).definition;Object.defineProperty(e,'playDuring',n),this.playDuring=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'play-during',{get:function(){var i=t(f[141]).definition;return Object.defineProperty(e,'playDuring',i),this.playDuring},set:function(i){var n=t(f[141]).definition;Object.defineProperty(e,'playDuring',n),this.playDuring=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pointerEvents',{get:function(){var i=t(f[142]).definition;return Object.defineProperty(e,'pointerEvents',i),this.pointerEvents},set:function(i){var n=t(f[142]).definition;Object.defineProperty(e,'pointerEvents',n),this.pointerEvents=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'pointer-events',{get:function(){var i=t(f[142]).definition;return Object.defineProperty(e,'pointerEvents',i),this.pointerEvents},set:function(i){var n=t(f[142]).definition;Object.defineProperty(e,'pointerEvents',n),this.pointerEvents=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'position',{get:function(){var i=t(f[143]).definition;return Object.defineProperty(e,'position',i),this.position},set:function(i){var n=t(f[143]).definition;Object.defineProperty(e,'position',n),this.position=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'quotes',{get:function(){var i=t(f[144]).definition;return Object.defineProperty(e,'quotes',i),this.quotes},set:function(i){var n=t(f[144]).definition;Object.defineProperty(e,'quotes',n),this.quotes=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'resize',{get:function(){var i=t(f[145]).definition;return Object.defineProperty(e,'resize',i),this.resize},set:function(i){var n=t(f[145]).definition;Object.defineProperty(e,'resize',n),this.resize=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'richness',{get:function(){var i=t(f[146]).definition;return Object.defineProperty(e,'richness',i),this.richness},set:function(i){var n=t(f[146]).definition;Object.defineProperty(e,'richness',n),this.richness=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'right',{get:function(){var i=t(f[147]).definition;return Object.defineProperty(e,'right',i),this.right},set:function(i){var n=t(f[147]).definition;Object.defineProperty(e,'right',n),this.right=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'shapeRendering',{get:function(){var i=t(f[148]).definition;return Object.defineProperty(e,'shapeRendering',i),this.shapeRendering},set:function(i){var n=t(f[148]).definition;Object.defineProperty(e,'shapeRendering',n),this.shapeRendering=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'shape-rendering',{get:function(){var i=t(f[148]).definition;return Object.defineProperty(e,'shapeRendering',i),this.shapeRendering},set:function(i){var n=t(f[148]).definition;Object.defineProperty(e,'shapeRendering',n),this.shapeRendering=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'size',{get:function(){var i=t(f[149]).definition;return Object.defineProperty(e,'size',i),this.size},set:function(i){var n=t(f[149]).definition;Object.defineProperty(e,'size',n),this.size=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'speak',{get:function(){var i=t(f[150]).definition;return Object.defineProperty(e,'speak',i),this.speak},set:function(i){var n=t(f[150]).definition;Object.defineProperty(e,'speak',n),this.speak=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'speakHeader',{get:function(){var i=t(f[151]).definition;return Object.defineProperty(e,'speakHeader',i),this.speakHeader},set:function(i){var n=t(f[151]).definition;Object.defineProperty(e,'speakHeader',n),this.speakHeader=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'speak-header',{get:function(){var i=t(f[151]).definition;return Object.defineProperty(e,'speakHeader',i),this.speakHeader},set:function(i){var n=t(f[151]).definition;Object.defineProperty(e,'speakHeader',n),this.speakHeader=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'speakNumeral',{get:function(){var i=t(f[152]).definition;return Object.defineProperty(e,'speakNumeral',i),this.speakNumeral},set:function(i){var n=t(f[152]).definition;Object.defineProperty(e,'speakNumeral',n),this.speakNumeral=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'speak-numeral',{get:function(){var i=t(f[152]).definition;return Object.defineProperty(e,'speakNumeral',i),this.speakNumeral},set:function(i){var n=t(f[152]).definition;Object.defineProperty(e,'speakNumeral',n),this.speakNumeral=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'speakPunctuation',{get:function(){var i=t(f[153]).definition;return Object.defineProperty(e,'speakPunctuation',i),this.speakPunctuation},set:function(i){var n=t(f[153]).definition;Object.defineProperty(e,'speakPunctuation',n),this.speakPunctuation=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'speak-punctuation',{get:function(){var i=t(f[153]).definition;return Object.defineProperty(e,'speakPunctuation',i),this.speakPunctuation},set:function(i){var n=t(f[153]).definition;Object.defineProperty(e,'speakPunctuation',n),this.speakPunctuation=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'speechRate',{get:function(){var i=t(f[154]).definition;return Object.defineProperty(e,'speechRate',i),this.speechRate},set:function(i){var n=t(f[154]).definition;Object.defineProperty(e,'speechRate',n),this.speechRate=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'speech-rate',{get:function(){var i=t(f[154]).definition;return Object.defineProperty(e,'speechRate',i),this.speechRate},set:function(i){var n=t(f[154]).definition;Object.defineProperty(e,'speechRate',n),this.speechRate=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'src',{get:function(){var i=t(f[155]).definition;return Object.defineProperty(e,'src',i),this.src},set:function(i){var n=t(f[155]).definition;Object.defineProperty(e,'src',n),this.src=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stopColor',{get:function(){var i=t(f[156]).definition;return Object.defineProperty(e,'stopColor',i),this.stopColor},set:function(i){var n=t(f[156]).definition;Object.defineProperty(e,'stopColor',n),this.stopColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stop-color',{get:function(){var i=t(f[156]).definition;return Object.defineProperty(e,'stopColor',i),this.stopColor},set:function(i){var n=t(f[156]).definition;Object.defineProperty(e,'stopColor',n),this.stopColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stopOpacity',{get:function(){var i=t(f[157]).definition;return Object.defineProperty(e,'stopOpacity',i),this.stopOpacity},set:function(i){var n=t(f[157]).definition;Object.defineProperty(e,'stopOpacity',n),this.stopOpacity=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stop-opacity',{get:function(){var i=t(f[157]).definition;return Object.defineProperty(e,'stopOpacity',i),this.stopOpacity},set:function(i){var n=t(f[157]).definition;Object.defineProperty(e,'stopOpacity',n),this.stopOpacity=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stress',{get:function(){var i=t(f[158]).definition;return Object.defineProperty(e,'stress',i),this.stress},set:function(i){var n=t(f[158]).definition;Object.defineProperty(e,'stress',n),this.stress=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stroke',{get:function(){var i=t(f[159]).definition;return Object.defineProperty(e,'stroke',i),this.stroke},set:function(i){var n=t(f[159]).definition;Object.defineProperty(e,'stroke',n),this.stroke=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'strokeDasharray',{get:function(){var i=t(f[160]).definition;return Object.defineProperty(e,'strokeDasharray',i),this.strokeDasharray},set:function(i){var n=t(f[160]).definition;Object.defineProperty(e,'strokeDasharray',n),this.strokeDasharray=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stroke-dasharray',{get:function(){var i=t(f[160]).definition;return Object.defineProperty(e,'strokeDasharray',i),this.strokeDasharray},set:function(i){var n=t(f[160]).definition;Object.defineProperty(e,'strokeDasharray',n),this.strokeDasharray=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'strokeDashoffset',{get:function(){var i=t(f[161]).definition;return Object.defineProperty(e,'strokeDashoffset',i),this.strokeDashoffset},set:function(i){var n=t(f[161]).definition;Object.defineProperty(e,'strokeDashoffset',n),this.strokeDashoffset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stroke-dashoffset',{get:function(){var i=t(f[161]).definition;return Object.defineProperty(e,'strokeDashoffset',i),this.strokeDashoffset},set:function(i){var n=t(f[161]).definition;Object.defineProperty(e,'strokeDashoffset',n),this.strokeDashoffset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'strokeLinecap',{get:function(){var i=t(f[162]).definition;return Object.defineProperty(e,'strokeLinecap',i),this.strokeLinecap},set:function(i){var n=t(f[162]).definition;Object.defineProperty(e,'strokeLinecap',n),this.strokeLinecap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stroke-linecap',{get:function(){var i=t(f[162]).definition;return Object.defineProperty(e,'strokeLinecap',i),this.strokeLinecap},set:function(i){var n=t(f[162]).definition;Object.defineProperty(e,'strokeLinecap',n),this.strokeLinecap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'strokeLinejoin',{get:function(){var i=t(f[163]).definition;return Object.defineProperty(e,'strokeLinejoin',i),this.strokeLinejoin},set:function(i){var n=t(f[163]).definition;Object.defineProperty(e,'strokeLinejoin',n),this.strokeLinejoin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stroke-linejoin',{get:function(){var i=t(f[163]).definition;return Object.defineProperty(e,'strokeLinejoin',i),this.strokeLinejoin},set:function(i){var n=t(f[163]).definition;Object.defineProperty(e,'strokeLinejoin',n),this.strokeLinejoin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'strokeMiterlimit',{get:function(){var i=t(f[164]).definition;return Object.defineProperty(e,'strokeMiterlimit',i),this.strokeMiterlimit},set:function(i){var n=t(f[164]).definition;Object.defineProperty(e,'strokeMiterlimit',n),this.strokeMiterlimit=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stroke-miterlimit',{get:function(){var i=t(f[164]).definition;return Object.defineProperty(e,'strokeMiterlimit',i),this.strokeMiterlimit},set:function(i){var n=t(f[164]).definition;Object.defineProperty(e,'strokeMiterlimit',n),this.strokeMiterlimit=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'strokeOpacity',{get:function(){var i=t(f[165]).definition;return Object.defineProperty(e,'strokeOpacity',i),this.strokeOpacity},set:function(i){var n=t(f[165]).definition;Object.defineProperty(e,'strokeOpacity',n),this.strokeOpacity=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stroke-opacity',{get:function(){var i=t(f[165]).definition;return Object.defineProperty(e,'strokeOpacity',i),this.strokeOpacity},set:function(i){var n=t(f[165]).definition;Object.defineProperty(e,'strokeOpacity',n),this.strokeOpacity=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'strokeWidth',{get:function(){var i=t(f[166]).definition;return Object.defineProperty(e,'strokeWidth',i),this.strokeWidth},set:function(i){var n=t(f[166]).definition;Object.defineProperty(e,'strokeWidth',n),this.strokeWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'stroke-width',{get:function(){var i=t(f[166]).definition;return Object.defineProperty(e,'strokeWidth',i),this.strokeWidth},set:function(i){var n=t(f[166]).definition;Object.defineProperty(e,'strokeWidth',n),this.strokeWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'tableLayout',{get:function(){var i=t(f[167]).definition;return Object.defineProperty(e,'tableLayout',i),this.tableLayout},set:function(i){var n=t(f[167]).definition;Object.defineProperty(e,'tableLayout',n),this.tableLayout=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'table-layout',{get:function(){var i=t(f[167]).definition;return Object.defineProperty(e,'tableLayout',i),this.tableLayout},set:function(i){var n=t(f[167]).definition;Object.defineProperty(e,'tableLayout',n),this.tableLayout=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textAlign',{get:function(){var i=t(f[168]).definition;return Object.defineProperty(e,'textAlign',i),this.textAlign},set:function(i){var n=t(f[168]).definition;Object.defineProperty(e,'textAlign',n),this.textAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-align',{get:function(){var i=t(f[168]).definition;return Object.defineProperty(e,'textAlign',i),this.textAlign},set:function(i){var n=t(f[168]).definition;Object.defineProperty(e,'textAlign',n),this.textAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textAnchor',{get:function(){var i=t(f[169]).definition;return Object.defineProperty(e,'textAnchor',i),this.textAnchor},set:function(i){var n=t(f[169]).definition;Object.defineProperty(e,'textAnchor',n),this.textAnchor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-anchor',{get:function(){var i=t(f[169]).definition;return Object.defineProperty(e,'textAnchor',i),this.textAnchor},set:function(i){var n=t(f[169]).definition;Object.defineProperty(e,'textAnchor',n),this.textAnchor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textDecoration',{get:function(){var i=t(f[170]).definition;return Object.defineProperty(e,'textDecoration',i),this.textDecoration},set:function(i){var n=t(f[170]).definition;Object.defineProperty(e,'textDecoration',n),this.textDecoration=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-decoration',{get:function(){var i=t(f[170]).definition;return Object.defineProperty(e,'textDecoration',i),this.textDecoration},set:function(i){var n=t(f[170]).definition;Object.defineProperty(e,'textDecoration',n),this.textDecoration=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textIndent',{get:function(){var i=t(f[171]).definition;return Object.defineProperty(e,'textIndent',i),this.textIndent},set:function(i){var n=t(f[171]).definition;Object.defineProperty(e,'textIndent',n),this.textIndent=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-indent',{get:function(){var i=t(f[171]).definition;return Object.defineProperty(e,'textIndent',i),this.textIndent},set:function(i){var n=t(f[171]).definition;Object.defineProperty(e,'textIndent',n),this.textIndent=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textLineThrough',{get:function(){var i=t(f[172]).definition;return Object.defineProperty(e,'textLineThrough',i),this.textLineThrough},set:function(i){var n=t(f[172]).definition;Object.defineProperty(e,'textLineThrough',n),this.textLineThrough=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-line-through',{get:function(){var i=t(f[172]).definition;return Object.defineProperty(e,'textLineThrough',i),this.textLineThrough},set:function(i){var n=t(f[172]).definition;Object.defineProperty(e,'textLineThrough',n),this.textLineThrough=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textLineThroughColor',{get:function(){var i=t(f[173]).definition;return Object.defineProperty(e,'textLineThroughColor',i),this.textLineThroughColor},set:function(i){var n=t(f[173]).definition;Object.defineProperty(e,'textLineThroughColor',n),this.textLineThroughColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-line-through-color',{get:function(){var i=t(f[173]).definition;return Object.defineProperty(e,'textLineThroughColor',i),this.textLineThroughColor},set:function(i){var n=t(f[173]).definition;Object.defineProperty(e,'textLineThroughColor',n),this.textLineThroughColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textLineThroughMode',{get:function(){var i=t(f[174]).definition;return Object.defineProperty(e,'textLineThroughMode',i),this.textLineThroughMode},set:function(i){var n=t(f[174]).definition;Object.defineProperty(e,'textLineThroughMode',n),this.textLineThroughMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-line-through-mode',{get:function(){var i=t(f[174]).definition;return Object.defineProperty(e,'textLineThroughMode',i),this.textLineThroughMode},set:function(i){var n=t(f[174]).definition;Object.defineProperty(e,'textLineThroughMode',n),this.textLineThroughMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textLineThroughStyle',{get:function(){var i=t(f[175]).definition;return Object.defineProperty(e,'textLineThroughStyle',i),this.textLineThroughStyle},set:function(i){var n=t(f[175]).definition;Object.defineProperty(e,'textLineThroughStyle',n),this.textLineThroughStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-line-through-style',{get:function(){var i=t(f[175]).definition;return Object.defineProperty(e,'textLineThroughStyle',i),this.textLineThroughStyle},set:function(i){var n=t(f[175]).definition;Object.defineProperty(e,'textLineThroughStyle',n),this.textLineThroughStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textLineThroughWidth',{get:function(){var i=t(f[176]).definition;return Object.defineProperty(e,'textLineThroughWidth',i),this.textLineThroughWidth},set:function(i){var n=t(f[176]).definition;Object.defineProperty(e,'textLineThroughWidth',n),this.textLineThroughWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-line-through-width',{get:function(){var i=t(f[176]).definition;return Object.defineProperty(e,'textLineThroughWidth',i),this.textLineThroughWidth},set:function(i){var n=t(f[176]).definition;Object.defineProperty(e,'textLineThroughWidth',n),this.textLineThroughWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textOverflow',{get:function(){var i=t(f[177]).definition;return Object.defineProperty(e,'textOverflow',i),this.textOverflow},set:function(i){var n=t(f[177]).definition;Object.defineProperty(e,'textOverflow',n),this.textOverflow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-overflow',{get:function(){var i=t(f[177]).definition;return Object.defineProperty(e,'textOverflow',i),this.textOverflow},set:function(i){var n=t(f[177]).definition;Object.defineProperty(e,'textOverflow',n),this.textOverflow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textOverline',{get:function(){var i=t(f[178]).definition;return Object.defineProperty(e,'textOverline',i),this.textOverline},set:function(i){var n=t(f[178]).definition;Object.defineProperty(e,'textOverline',n),this.textOverline=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-overline',{get:function(){var i=t(f[178]).definition;return Object.defineProperty(e,'textOverline',i),this.textOverline},set:function(i){var n=t(f[178]).definition;Object.defineProperty(e,'textOverline',n),this.textOverline=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textOverlineColor',{get:function(){var i=t(f[179]).definition;return Object.defineProperty(e,'textOverlineColor',i),this.textOverlineColor},set:function(i){var n=t(f[179]).definition;Object.defineProperty(e,'textOverlineColor',n),this.textOverlineColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-overline-color',{get:function(){var i=t(f[179]).definition;return Object.defineProperty(e,'textOverlineColor',i),this.textOverlineColor},set:function(i){var n=t(f[179]).definition;Object.defineProperty(e,'textOverlineColor',n),this.textOverlineColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textOverlineMode',{get:function(){var i=t(f[180]).definition;return Object.defineProperty(e,'textOverlineMode',i),this.textOverlineMode},set:function(i){var n=t(f[180]).definition;Object.defineProperty(e,'textOverlineMode',n),this.textOverlineMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-overline-mode',{get:function(){var i=t(f[180]).definition;return Object.defineProperty(e,'textOverlineMode',i),this.textOverlineMode},set:function(i){var n=t(f[180]).definition;Object.defineProperty(e,'textOverlineMode',n),this.textOverlineMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textOverlineStyle',{get:function(){var i=t(f[181]).definition;return Object.defineProperty(e,'textOverlineStyle',i),this.textOverlineStyle},set:function(i){var n=t(f[181]).definition;Object.defineProperty(e,'textOverlineStyle',n),this.textOverlineStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-overline-style',{get:function(){var i=t(f[181]).definition;return Object.defineProperty(e,'textOverlineStyle',i),this.textOverlineStyle},set:function(i){var n=t(f[181]).definition;Object.defineProperty(e,'textOverlineStyle',n),this.textOverlineStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textOverlineWidth',{get:function(){var i=t(f[182]).definition;return Object.defineProperty(e,'textOverlineWidth',i),this.textOverlineWidth},set:function(i){var n=t(f[182]).definition;Object.defineProperty(e,'textOverlineWidth',n),this.textOverlineWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-overline-width',{get:function(){var i=t(f[182]).definition;return Object.defineProperty(e,'textOverlineWidth',i),this.textOverlineWidth},set:function(i){var n=t(f[182]).definition;Object.defineProperty(e,'textOverlineWidth',n),this.textOverlineWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textRendering',{get:function(){var i=t(f[183]).definition;return Object.defineProperty(e,'textRendering',i),this.textRendering},set:function(i){var n=t(f[183]).definition;Object.defineProperty(e,'textRendering',n),this.textRendering=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-rendering',{get:function(){var i=t(f[183]).definition;return Object.defineProperty(e,'textRendering',i),this.textRendering},set:function(i){var n=t(f[183]).definition;Object.defineProperty(e,'textRendering',n),this.textRendering=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textShadow',{get:function(){var i=t(f[184]).definition;return Object.defineProperty(e,'textShadow',i),this.textShadow},set:function(i){var n=t(f[184]).definition;Object.defineProperty(e,'textShadow',n),this.textShadow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-shadow',{get:function(){var i=t(f[184]).definition;return Object.defineProperty(e,'textShadow',i),this.textShadow},set:function(i){var n=t(f[184]).definition;Object.defineProperty(e,'textShadow',n),this.textShadow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textTransform',{get:function(){var i=t(f[185]).definition;return Object.defineProperty(e,'textTransform',i),this.textTransform},set:function(i){var n=t(f[185]).definition;Object.defineProperty(e,'textTransform',n),this.textTransform=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-transform',{get:function(){var i=t(f[185]).definition;return Object.defineProperty(e,'textTransform',i),this.textTransform},set:function(i){var n=t(f[185]).definition;Object.defineProperty(e,'textTransform',n),this.textTransform=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textUnderline',{get:function(){var i=t(f[186]).definition;return Object.defineProperty(e,'textUnderline',i),this.textUnderline},set:function(i){var n=t(f[186]).definition;Object.defineProperty(e,'textUnderline',n),this.textUnderline=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-underline',{get:function(){var i=t(f[186]).definition;return Object.defineProperty(e,'textUnderline',i),this.textUnderline},set:function(i){var n=t(f[186]).definition;Object.defineProperty(e,'textUnderline',n),this.textUnderline=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textUnderlineColor',{get:function(){var i=t(f[187]).definition;return Object.defineProperty(e,'textUnderlineColor',i),this.textUnderlineColor},set:function(i){var n=t(f[187]).definition;Object.defineProperty(e,'textUnderlineColor',n),this.textUnderlineColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-underline-color',{get:function(){var i=t(f[187]).definition;return Object.defineProperty(e,'textUnderlineColor',i),this.textUnderlineColor},set:function(i){var n=t(f[187]).definition;Object.defineProperty(e,'textUnderlineColor',n),this.textUnderlineColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textUnderlineMode',{get:function(){var i=t(f[188]).definition;return Object.defineProperty(e,'textUnderlineMode',i),this.textUnderlineMode},set:function(i){var n=t(f[188]).definition;Object.defineProperty(e,'textUnderlineMode',n),this.textUnderlineMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-underline-mode',{get:function(){var i=t(f[188]).definition;return Object.defineProperty(e,'textUnderlineMode',i),this.textUnderlineMode},set:function(i){var n=t(f[188]).definition;Object.defineProperty(e,'textUnderlineMode',n),this.textUnderlineMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textUnderlineStyle',{get:function(){var i=t(f[189]).definition;return Object.defineProperty(e,'textUnderlineStyle',i),this.textUnderlineStyle},set:function(i){var n=t(f[189]).definition;Object.defineProperty(e,'textUnderlineStyle',n),this.textUnderlineStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-underline-style',{get:function(){var i=t(f[189]).definition;return Object.defineProperty(e,'textUnderlineStyle',i),this.textUnderlineStyle},set:function(i){var n=t(f[189]).definition;Object.defineProperty(e,'textUnderlineStyle',n),this.textUnderlineStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'textUnderlineWidth',{get:function(){var i=t(f[190]).definition;return Object.defineProperty(e,'textUnderlineWidth',i),this.textUnderlineWidth},set:function(i){var n=t(f[190]).definition;Object.defineProperty(e,'textUnderlineWidth',n),this.textUnderlineWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'text-underline-width',{get:function(){var i=t(f[190]).definition;return Object.defineProperty(e,'textUnderlineWidth',i),this.textUnderlineWidth},set:function(i){var n=t(f[190]).definition;Object.defineProperty(e,'textUnderlineWidth',n),this.textUnderlineWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'top',{get:function(){var i=t(f[191]).definition;return Object.defineProperty(e,'top',i),this.top},set:function(i){var n=t(f[191]).definition;Object.defineProperty(e,'top',n),this.top=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'unicodeBidi',{get:function(){var i=t(f[192]).definition;return Object.defineProperty(e,'unicodeBidi',i),this.unicodeBidi},set:function(i){var n=t(f[192]).definition;Object.defineProperty(e,'unicodeBidi',n),this.unicodeBidi=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'unicode-bidi',{get:function(){var i=t(f[192]).definition;return Object.defineProperty(e,'unicodeBidi',i),this.unicodeBidi},set:function(i){var n=t(f[192]).definition;Object.defineProperty(e,'unicodeBidi',n),this.unicodeBidi=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'unicodeRange',{get:function(){var i=t(f[193]).definition;return Object.defineProperty(e,'unicodeRange',i),this.unicodeRange},set:function(i){var n=t(f[193]).definition;Object.defineProperty(e,'unicodeRange',n),this.unicodeRange=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'unicode-range',{get:function(){var i=t(f[193]).definition;return Object.defineProperty(e,'unicodeRange',i),this.unicodeRange},set:function(i){var n=t(f[193]).definition;Object.defineProperty(e,'unicodeRange',n),this.unicodeRange=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'vectorEffect',{get:function(){var i=t(f[194]).definition;return Object.defineProperty(e,'vectorEffect',i),this.vectorEffect},set:function(i){var n=t(f[194]).definition;Object.defineProperty(e,'vectorEffect',n),this.vectorEffect=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'vector-effect',{get:function(){var i=t(f[194]).definition;return Object.defineProperty(e,'vectorEffect',i),this.vectorEffect},set:function(i){var n=t(f[194]).definition;Object.defineProperty(e,'vectorEffect',n),this.vectorEffect=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'verticalAlign',{get:function(){var i=t(f[195]).definition;return Object.defineProperty(e,'verticalAlign',i),this.verticalAlign},set:function(i){var n=t(f[195]).definition;Object.defineProperty(e,'verticalAlign',n),this.verticalAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'vertical-align',{get:function(){var i=t(f[195]).definition;return Object.defineProperty(e,'verticalAlign',i),this.verticalAlign},set:function(i){var n=t(f[195]).definition;Object.defineProperty(e,'verticalAlign',n),this.verticalAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'visibility',{get:function(){var i=t(f[196]).definition;return Object.defineProperty(e,'visibility',i),this.visibility},set:function(i){var n=t(f[196]).definition;Object.defineProperty(e,'visibility',n),this.visibility=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'voiceFamily',{get:function(){var i=t(f[197]).definition;return Object.defineProperty(e,'voiceFamily',i),this.voiceFamily},set:function(i){var n=t(f[197]).definition;Object.defineProperty(e,'voiceFamily',n),this.voiceFamily=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'voice-family',{get:function(){var i=t(f[197]).definition;return Object.defineProperty(e,'voiceFamily',i),this.voiceFamily},set:function(i){var n=t(f[197]).definition;Object.defineProperty(e,'voiceFamily',n),this.voiceFamily=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'volume',{get:function(){var i=t(f[198]).definition;return Object.defineProperty(e,'volume',i),this.volume},set:function(i){var n=t(f[198]).definition;Object.defineProperty(e,'volume',n),this.volume=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitAnimation',{get:function(){var i=t(f[199]).definition;return Object.defineProperty(e,'webkitAnimation',i),this.webkitAnimation},set:function(i){var n=t(f[199]).definition;Object.defineProperty(e,'webkitAnimation',n),this.webkitAnimation=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-animation',{get:function(){var i=t(f[199]).definition;return Object.defineProperty(e,'webkitAnimation',i),this.webkitAnimation},set:function(i){var n=t(f[199]).definition;Object.defineProperty(e,'webkitAnimation',n),this.webkitAnimation=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitAnimationDelay',{get:function(){var i=t(f[200]).definition;return Object.defineProperty(e,'webkitAnimationDelay',i),this.webkitAnimationDelay},set:function(i){var n=t(f[200]).definition;Object.defineProperty(e,'webkitAnimationDelay',n),this.webkitAnimationDelay=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-animation-delay',{get:function(){var i=t(f[200]).definition;return Object.defineProperty(e,'webkitAnimationDelay',i),this.webkitAnimationDelay},set:function(i){var n=t(f[200]).definition;Object.defineProperty(e,'webkitAnimationDelay',n),this.webkitAnimationDelay=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitAnimationDirection',{get:function(){var i=t(f[201]).definition;return Object.defineProperty(e,'webkitAnimationDirection',i),this.webkitAnimationDirection},set:function(i){var n=t(f[201]).definition;Object.defineProperty(e,'webkitAnimationDirection',n),this.webkitAnimationDirection=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-animation-direction',{get:function(){var i=t(f[201]).definition;return Object.defineProperty(e,'webkitAnimationDirection',i),this.webkitAnimationDirection},set:function(i){var n=t(f[201]).definition;Object.defineProperty(e,'webkitAnimationDirection',n),this.webkitAnimationDirection=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitAnimationDuration',{get:function(){var i=t(f[202]).definition;return Object.defineProperty(e,'webkitAnimationDuration',i),this.webkitAnimationDuration},set:function(i){var n=t(f[202]).definition;Object.defineProperty(e,'webkitAnimationDuration',n),this.webkitAnimationDuration=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-animation-duration',{get:function(){var i=t(f[202]).definition;return Object.defineProperty(e,'webkitAnimationDuration',i),this.webkitAnimationDuration},set:function(i){var n=t(f[202]).definition;Object.defineProperty(e,'webkitAnimationDuration',n),this.webkitAnimationDuration=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitAnimationFillMode',{get:function(){var i=t(f[203]).definition;return Object.defineProperty(e,'webkitAnimationFillMode',i),this.webkitAnimationFillMode},set:function(i){var n=t(f[203]).definition;Object.defineProperty(e,'webkitAnimationFillMode',n),this.webkitAnimationFillMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-animation-fill-mode',{get:function(){var i=t(f[203]).definition;return Object.defineProperty(e,'webkitAnimationFillMode',i),this.webkitAnimationFillMode},set:function(i){var n=t(f[203]).definition;Object.defineProperty(e,'webkitAnimationFillMode',n),this.webkitAnimationFillMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitAnimationIterationCount',{get:function(){var i=t(f[204]).definition;return Object.defineProperty(e,'webkitAnimationIterationCount',i),this.webkitAnimationIterationCount},set:function(i){var n=t(f[204]).definition;Object.defineProperty(e,'webkitAnimationIterationCount',n),this.webkitAnimationIterationCount=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-animation-iteration-count',{get:function(){var i=t(f[204]).definition;return Object.defineProperty(e,'webkitAnimationIterationCount',i),this.webkitAnimationIterationCount},set:function(i){var n=t(f[204]).definition;Object.defineProperty(e,'webkitAnimationIterationCount',n),this.webkitAnimationIterationCount=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitAnimationName',{get:function(){var i=t(f[205]).definition;return Object.defineProperty(e,'webkitAnimationName',i),this.webkitAnimationName},set:function(i){var n=t(f[205]).definition;Object.defineProperty(e,'webkitAnimationName',n),this.webkitAnimationName=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-animation-name',{get:function(){var i=t(f[205]).definition;return Object.defineProperty(e,'webkitAnimationName',i),this.webkitAnimationName},set:function(i){var n=t(f[205]).definition;Object.defineProperty(e,'webkitAnimationName',n),this.webkitAnimationName=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitAnimationPlayState',{get:function(){var i=t(f[206]).definition;return Object.defineProperty(e,'webkitAnimationPlayState',i),this.webkitAnimationPlayState},set:function(i){var n=t(f[206]).definition;Object.defineProperty(e,'webkitAnimationPlayState',n),this.webkitAnimationPlayState=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-animation-play-state',{get:function(){var i=t(f[206]).definition;return Object.defineProperty(e,'webkitAnimationPlayState',i),this.webkitAnimationPlayState},set:function(i){var n=t(f[206]).definition;Object.defineProperty(e,'webkitAnimationPlayState',n),this.webkitAnimationPlayState=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitAnimationTimingFunction',{get:function(){var i=t(f[207]).definition;return Object.defineProperty(e,'webkitAnimationTimingFunction',i),this.webkitAnimationTimingFunction},set:function(i){var n=t(f[207]).definition;Object.defineProperty(e,'webkitAnimationTimingFunction',n),this.webkitAnimationTimingFunction=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-animation-timing-function',{get:function(){var i=t(f[207]).definition;return Object.defineProperty(e,'webkitAnimationTimingFunction',i),this.webkitAnimationTimingFunction},set:function(i){var n=t(f[207]).definition;Object.defineProperty(e,'webkitAnimationTimingFunction',n),this.webkitAnimationTimingFunction=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitAppearance',{get:function(){var i=t(f[208]).definition;return Object.defineProperty(e,'webkitAppearance',i),this.webkitAppearance},set:function(i){var n=t(f[208]).definition;Object.defineProperty(e,'webkitAppearance',n),this.webkitAppearance=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-appearance',{get:function(){var i=t(f[208]).definition;return Object.defineProperty(e,'webkitAppearance',i),this.webkitAppearance},set:function(i){var n=t(f[208]).definition;Object.defineProperty(e,'webkitAppearance',n),this.webkitAppearance=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitAspectRatio',{get:function(){var i=t(f[209]).definition;return Object.defineProperty(e,'webkitAspectRatio',i),this.webkitAspectRatio},set:function(i){var n=t(f[209]).definition;Object.defineProperty(e,'webkitAspectRatio',n),this.webkitAspectRatio=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-aspect-ratio',{get:function(){var i=t(f[209]).definition;return Object.defineProperty(e,'webkitAspectRatio',i),this.webkitAspectRatio},set:function(i){var n=t(f[209]).definition;Object.defineProperty(e,'webkitAspectRatio',n),this.webkitAspectRatio=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBackfaceVisibility',{get:function(){var i=t(f[210]).definition;return Object.defineProperty(e,'webkitBackfaceVisibility',i),this.webkitBackfaceVisibility},set:function(i){var n=t(f[210]).definition;Object.defineProperty(e,'webkitBackfaceVisibility',n),this.webkitBackfaceVisibility=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-backface-visibility',{get:function(){var i=t(f[210]).definition;return Object.defineProperty(e,'webkitBackfaceVisibility',i),this.webkitBackfaceVisibility},set:function(i){var n=t(f[210]).definition;Object.defineProperty(e,'webkitBackfaceVisibility',n),this.webkitBackfaceVisibility=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBackgroundClip',{get:function(){var i=t(f[211]).definition;return Object.defineProperty(e,'webkitBackgroundClip',i),this.webkitBackgroundClip},set:function(i){var n=t(f[211]).definition;Object.defineProperty(e,'webkitBackgroundClip',n),this.webkitBackgroundClip=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-background-clip',{get:function(){var i=t(f[211]).definition;return Object.defineProperty(e,'webkitBackgroundClip',i),this.webkitBackgroundClip},set:function(i){var n=t(f[211]).definition;Object.defineProperty(e,'webkitBackgroundClip',n),this.webkitBackgroundClip=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBackgroundComposite',{get:function(){var i=t(f[212]).definition;return Object.defineProperty(e,'webkitBackgroundComposite',i),this.webkitBackgroundComposite},set:function(i){var n=t(f[212]).definition;Object.defineProperty(e,'webkitBackgroundComposite',n),this.webkitBackgroundComposite=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-background-composite',{get:function(){var i=t(f[212]).definition;return Object.defineProperty(e,'webkitBackgroundComposite',i),this.webkitBackgroundComposite},set:function(i){var n=t(f[212]).definition;Object.defineProperty(e,'webkitBackgroundComposite',n),this.webkitBackgroundComposite=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBackgroundOrigin',{get:function(){var i=t(f[213]).definition;return Object.defineProperty(e,'webkitBackgroundOrigin',i),this.webkitBackgroundOrigin},set:function(i){var n=t(f[213]).definition;Object.defineProperty(e,'webkitBackgroundOrigin',n),this.webkitBackgroundOrigin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-background-origin',{get:function(){var i=t(f[213]).definition;return Object.defineProperty(e,'webkitBackgroundOrigin',i),this.webkitBackgroundOrigin},set:function(i){var n=t(f[213]).definition;Object.defineProperty(e,'webkitBackgroundOrigin',n),this.webkitBackgroundOrigin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBackgroundSize',{get:function(){var i=t(f[214]).definition;return Object.defineProperty(e,'webkitBackgroundSize',i),this.webkitBackgroundSize},set:function(i){var n=t(f[214]).definition;Object.defineProperty(e,'webkitBackgroundSize',n),this.webkitBackgroundSize=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-background-size',{get:function(){var i=t(f[214]).definition;return Object.defineProperty(e,'webkitBackgroundSize',i),this.webkitBackgroundSize},set:function(i){var n=t(f[214]).definition;Object.defineProperty(e,'webkitBackgroundSize',n),this.webkitBackgroundSize=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderAfter',{get:function(){var i=t(f[215]).definition;return Object.defineProperty(e,'webkitBorderAfter',i),this.webkitBorderAfter},set:function(i){var n=t(f[215]).definition;Object.defineProperty(e,'webkitBorderAfter',n),this.webkitBorderAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-after',{get:function(){var i=t(f[215]).definition;return Object.defineProperty(e,'webkitBorderAfter',i),this.webkitBorderAfter},set:function(i){var n=t(f[215]).definition;Object.defineProperty(e,'webkitBorderAfter',n),this.webkitBorderAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderAfterColor',{get:function(){var i=t(f[216]).definition;return Object.defineProperty(e,'webkitBorderAfterColor',i),this.webkitBorderAfterColor},set:function(i){var n=t(f[216]).definition;Object.defineProperty(e,'webkitBorderAfterColor',n),this.webkitBorderAfterColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-after-color',{get:function(){var i=t(f[216]).definition;return Object.defineProperty(e,'webkitBorderAfterColor',i),this.webkitBorderAfterColor},set:function(i){var n=t(f[216]).definition;Object.defineProperty(e,'webkitBorderAfterColor',n),this.webkitBorderAfterColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderAfterStyle',{get:function(){var i=t(f[217]).definition;return Object.defineProperty(e,'webkitBorderAfterStyle',i),this.webkitBorderAfterStyle},set:function(i){var n=t(f[217]).definition;Object.defineProperty(e,'webkitBorderAfterStyle',n),this.webkitBorderAfterStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-after-style',{get:function(){var i=t(f[217]).definition;return Object.defineProperty(e,'webkitBorderAfterStyle',i),this.webkitBorderAfterStyle},set:function(i){var n=t(f[217]).definition;Object.defineProperty(e,'webkitBorderAfterStyle',n),this.webkitBorderAfterStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderAfterWidth',{get:function(){var i=t(f[218]).definition;return Object.defineProperty(e,'webkitBorderAfterWidth',i),this.webkitBorderAfterWidth},set:function(i){var n=t(f[218]).definition;Object.defineProperty(e,'webkitBorderAfterWidth',n),this.webkitBorderAfterWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-after-width',{get:function(){var i=t(f[218]).definition;return Object.defineProperty(e,'webkitBorderAfterWidth',i),this.webkitBorderAfterWidth},set:function(i){var n=t(f[218]).definition;Object.defineProperty(e,'webkitBorderAfterWidth',n),this.webkitBorderAfterWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderBefore',{get:function(){var i=t(f[219]).definition;return Object.defineProperty(e,'webkitBorderBefore',i),this.webkitBorderBefore},set:function(i){var n=t(f[219]).definition;Object.defineProperty(e,'webkitBorderBefore',n),this.webkitBorderBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-before',{get:function(){var i=t(f[219]).definition;return Object.defineProperty(e,'webkitBorderBefore',i),this.webkitBorderBefore},set:function(i){var n=t(f[219]).definition;Object.defineProperty(e,'webkitBorderBefore',n),this.webkitBorderBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderBeforeColor',{get:function(){var i=t(f[220]).definition;return Object.defineProperty(e,'webkitBorderBeforeColor',i),this.webkitBorderBeforeColor},set:function(i){var n=t(f[220]).definition;Object.defineProperty(e,'webkitBorderBeforeColor',n),this.webkitBorderBeforeColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-before-color',{get:function(){var i=t(f[220]).definition;return Object.defineProperty(e,'webkitBorderBeforeColor',i),this.webkitBorderBeforeColor},set:function(i){var n=t(f[220]).definition;Object.defineProperty(e,'webkitBorderBeforeColor',n),this.webkitBorderBeforeColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderBeforeStyle',{get:function(){var i=t(f[221]).definition;return Object.defineProperty(e,'webkitBorderBeforeStyle',i),this.webkitBorderBeforeStyle},set:function(i){var n=t(f[221]).definition;Object.defineProperty(e,'webkitBorderBeforeStyle',n),this.webkitBorderBeforeStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-before-style',{get:function(){var i=t(f[221]).definition;return Object.defineProperty(e,'webkitBorderBeforeStyle',i),this.webkitBorderBeforeStyle},set:function(i){var n=t(f[221]).definition;Object.defineProperty(e,'webkitBorderBeforeStyle',n),this.webkitBorderBeforeStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderBeforeWidth',{get:function(){var i=t(f[222]).definition;return Object.defineProperty(e,'webkitBorderBeforeWidth',i),this.webkitBorderBeforeWidth},set:function(i){var n=t(f[222]).definition;Object.defineProperty(e,'webkitBorderBeforeWidth',n),this.webkitBorderBeforeWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-before-width',{get:function(){var i=t(f[222]).definition;return Object.defineProperty(e,'webkitBorderBeforeWidth',i),this.webkitBorderBeforeWidth},set:function(i){var n=t(f[222]).definition;Object.defineProperty(e,'webkitBorderBeforeWidth',n),this.webkitBorderBeforeWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderEnd',{get:function(){var i=t(f[223]).definition;return Object.defineProperty(e,'webkitBorderEnd',i),this.webkitBorderEnd},set:function(i){var n=t(f[223]).definition;Object.defineProperty(e,'webkitBorderEnd',n),this.webkitBorderEnd=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-end',{get:function(){var i=t(f[223]).definition;return Object.defineProperty(e,'webkitBorderEnd',i),this.webkitBorderEnd},set:function(i){var n=t(f[223]).definition;Object.defineProperty(e,'webkitBorderEnd',n),this.webkitBorderEnd=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderEndColor',{get:function(){var i=t(f[224]).definition;return Object.defineProperty(e,'webkitBorderEndColor',i),this.webkitBorderEndColor},set:function(i){var n=t(f[224]).definition;Object.defineProperty(e,'webkitBorderEndColor',n),this.webkitBorderEndColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-end-color',{get:function(){var i=t(f[224]).definition;return Object.defineProperty(e,'webkitBorderEndColor',i),this.webkitBorderEndColor},set:function(i){var n=t(f[224]).definition;Object.defineProperty(e,'webkitBorderEndColor',n),this.webkitBorderEndColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderEndStyle',{get:function(){var i=t(f[225]).definition;return Object.defineProperty(e,'webkitBorderEndStyle',i),this.webkitBorderEndStyle},set:function(i){var n=t(f[225]).definition;Object.defineProperty(e,'webkitBorderEndStyle',n),this.webkitBorderEndStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-end-style',{get:function(){var i=t(f[225]).definition;return Object.defineProperty(e,'webkitBorderEndStyle',i),this.webkitBorderEndStyle},set:function(i){var n=t(f[225]).definition;Object.defineProperty(e,'webkitBorderEndStyle',n),this.webkitBorderEndStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderEndWidth',{get:function(){var i=t(f[226]).definition;return Object.defineProperty(e,'webkitBorderEndWidth',i),this.webkitBorderEndWidth},set:function(i){var n=t(f[226]).definition;Object.defineProperty(e,'webkitBorderEndWidth',n),this.webkitBorderEndWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-end-width',{get:function(){var i=t(f[226]).definition;return Object.defineProperty(e,'webkitBorderEndWidth',i),this.webkitBorderEndWidth},set:function(i){var n=t(f[226]).definition;Object.defineProperty(e,'webkitBorderEndWidth',n),this.webkitBorderEndWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderFit',{get:function(){var i=t(f[227]).definition;return Object.defineProperty(e,'webkitBorderFit',i),this.webkitBorderFit},set:function(i){var n=t(f[227]).definition;Object.defineProperty(e,'webkitBorderFit',n),this.webkitBorderFit=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-fit',{get:function(){var i=t(f[227]).definition;return Object.defineProperty(e,'webkitBorderFit',i),this.webkitBorderFit},set:function(i){var n=t(f[227]).definition;Object.defineProperty(e,'webkitBorderFit',n),this.webkitBorderFit=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderHorizontalSpacing',{get:function(){var i=t(f[228]).definition;return Object.defineProperty(e,'webkitBorderHorizontalSpacing',i),this.webkitBorderHorizontalSpacing},set:function(i){var n=t(f[228]).definition;Object.defineProperty(e,'webkitBorderHorizontalSpacing',n),this.webkitBorderHorizontalSpacing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-horizontal-spacing',{get:function(){var i=t(f[228]).definition;return Object.defineProperty(e,'webkitBorderHorizontalSpacing',i),this.webkitBorderHorizontalSpacing},set:function(i){var n=t(f[228]).definition;Object.defineProperty(e,'webkitBorderHorizontalSpacing',n),this.webkitBorderHorizontalSpacing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderImage',{get:function(){var i=t(f[229]).definition;return Object.defineProperty(e,'webkitBorderImage',i),this.webkitBorderImage},set:function(i){var n=t(f[229]).definition;Object.defineProperty(e,'webkitBorderImage',n),this.webkitBorderImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-image',{get:function(){var i=t(f[229]).definition;return Object.defineProperty(e,'webkitBorderImage',i),this.webkitBorderImage},set:function(i){var n=t(f[229]).definition;Object.defineProperty(e,'webkitBorderImage',n),this.webkitBorderImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderRadius',{get:function(){var i=t(f[230]).definition;return Object.defineProperty(e,'webkitBorderRadius',i),this.webkitBorderRadius},set:function(i){var n=t(f[230]).definition;Object.defineProperty(e,'webkitBorderRadius',n),this.webkitBorderRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-radius',{get:function(){var i=t(f[230]).definition;return Object.defineProperty(e,'webkitBorderRadius',i),this.webkitBorderRadius},set:function(i){var n=t(f[230]).definition;Object.defineProperty(e,'webkitBorderRadius',n),this.webkitBorderRadius=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderStart',{get:function(){var i=t(f[231]).definition;return Object.defineProperty(e,'webkitBorderStart',i),this.webkitBorderStart},set:function(i){var n=t(f[231]).definition;Object.defineProperty(e,'webkitBorderStart',n),this.webkitBorderStart=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-start',{get:function(){var i=t(f[231]).definition;return Object.defineProperty(e,'webkitBorderStart',i),this.webkitBorderStart},set:function(i){var n=t(f[231]).definition;Object.defineProperty(e,'webkitBorderStart',n),this.webkitBorderStart=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderStartColor',{get:function(){var i=t(f[232]).definition;return Object.defineProperty(e,'webkitBorderStartColor',i),this.webkitBorderStartColor},set:function(i){var n=t(f[232]).definition;Object.defineProperty(e,'webkitBorderStartColor',n),this.webkitBorderStartColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-start-color',{get:function(){var i=t(f[232]).definition;return Object.defineProperty(e,'webkitBorderStartColor',i),this.webkitBorderStartColor},set:function(i){var n=t(f[232]).definition;Object.defineProperty(e,'webkitBorderStartColor',n),this.webkitBorderStartColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderStartStyle',{get:function(){var i=t(f[233]).definition;return Object.defineProperty(e,'webkitBorderStartStyle',i),this.webkitBorderStartStyle},set:function(i){var n=t(f[233]).definition;Object.defineProperty(e,'webkitBorderStartStyle',n),this.webkitBorderStartStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-start-style',{get:function(){var i=t(f[233]).definition;return Object.defineProperty(e,'webkitBorderStartStyle',i),this.webkitBorderStartStyle},set:function(i){var n=t(f[233]).definition;Object.defineProperty(e,'webkitBorderStartStyle',n),this.webkitBorderStartStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderStartWidth',{get:function(){var i=t(f[234]).definition;return Object.defineProperty(e,'webkitBorderStartWidth',i),this.webkitBorderStartWidth},set:function(i){var n=t(f[234]).definition;Object.defineProperty(e,'webkitBorderStartWidth',n),this.webkitBorderStartWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-start-width',{get:function(){var i=t(f[234]).definition;return Object.defineProperty(e,'webkitBorderStartWidth',i),this.webkitBorderStartWidth},set:function(i){var n=t(f[234]).definition;Object.defineProperty(e,'webkitBorderStartWidth',n),this.webkitBorderStartWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBorderVerticalSpacing',{get:function(){var i=t(f[235]).definition;return Object.defineProperty(e,'webkitBorderVerticalSpacing',i),this.webkitBorderVerticalSpacing},set:function(i){var n=t(f[235]).definition;Object.defineProperty(e,'webkitBorderVerticalSpacing',n),this.webkitBorderVerticalSpacing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-border-vertical-spacing',{get:function(){var i=t(f[235]).definition;return Object.defineProperty(e,'webkitBorderVerticalSpacing',i),this.webkitBorderVerticalSpacing},set:function(i){var n=t(f[235]).definition;Object.defineProperty(e,'webkitBorderVerticalSpacing',n),this.webkitBorderVerticalSpacing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBoxAlign',{get:function(){var i=t(f[236]).definition;return Object.defineProperty(e,'webkitBoxAlign',i),this.webkitBoxAlign},set:function(i){var n=t(f[236]).definition;Object.defineProperty(e,'webkitBoxAlign',n),this.webkitBoxAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-box-align',{get:function(){var i=t(f[236]).definition;return Object.defineProperty(e,'webkitBoxAlign',i),this.webkitBoxAlign},set:function(i){var n=t(f[236]).definition;Object.defineProperty(e,'webkitBoxAlign',n),this.webkitBoxAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBoxDirection',{get:function(){var i=t(f[237]).definition;return Object.defineProperty(e,'webkitBoxDirection',i),this.webkitBoxDirection},set:function(i){var n=t(f[237]).definition;Object.defineProperty(e,'webkitBoxDirection',n),this.webkitBoxDirection=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-box-direction',{get:function(){var i=t(f[237]).definition;return Object.defineProperty(e,'webkitBoxDirection',i),this.webkitBoxDirection},set:function(i){var n=t(f[237]).definition;Object.defineProperty(e,'webkitBoxDirection',n),this.webkitBoxDirection=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBoxFlex',{get:function(){var i=t(f[238]).definition;return Object.defineProperty(e,'webkitBoxFlex',i),this.webkitBoxFlex},set:function(i){var n=t(f[238]).definition;Object.defineProperty(e,'webkitBoxFlex',n),this.webkitBoxFlex=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-box-flex',{get:function(){var i=t(f[238]).definition;return Object.defineProperty(e,'webkitBoxFlex',i),this.webkitBoxFlex},set:function(i){var n=t(f[238]).definition;Object.defineProperty(e,'webkitBoxFlex',n),this.webkitBoxFlex=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBoxFlexGroup',{get:function(){var i=t(f[239]).definition;return Object.defineProperty(e,'webkitBoxFlexGroup',i),this.webkitBoxFlexGroup},set:function(i){var n=t(f[239]).definition;Object.defineProperty(e,'webkitBoxFlexGroup',n),this.webkitBoxFlexGroup=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-box-flex-group',{get:function(){var i=t(f[239]).definition;return Object.defineProperty(e,'webkitBoxFlexGroup',i),this.webkitBoxFlexGroup},set:function(i){var n=t(f[239]).definition;Object.defineProperty(e,'webkitBoxFlexGroup',n),this.webkitBoxFlexGroup=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBoxLines',{get:function(){var i=t(f[240]).definition;return Object.defineProperty(e,'webkitBoxLines',i),this.webkitBoxLines},set:function(i){var n=t(f[240]).definition;Object.defineProperty(e,'webkitBoxLines',n),this.webkitBoxLines=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-box-lines',{get:function(){var i=t(f[240]).definition;return Object.defineProperty(e,'webkitBoxLines',i),this.webkitBoxLines},set:function(i){var n=t(f[240]).definition;Object.defineProperty(e,'webkitBoxLines',n),this.webkitBoxLines=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBoxOrdinalGroup',{get:function(){var i=t(f[241]).definition;return Object.defineProperty(e,'webkitBoxOrdinalGroup',i),this.webkitBoxOrdinalGroup},set:function(i){var n=t(f[241]).definition;Object.defineProperty(e,'webkitBoxOrdinalGroup',n),this.webkitBoxOrdinalGroup=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-box-ordinal-group',{get:function(){var i=t(f[241]).definition;return Object.defineProperty(e,'webkitBoxOrdinalGroup',i),this.webkitBoxOrdinalGroup},set:function(i){var n=t(f[241]).definition;Object.defineProperty(e,'webkitBoxOrdinalGroup',n),this.webkitBoxOrdinalGroup=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBoxOrient',{get:function(){var i=t(f[242]).definition;return Object.defineProperty(e,'webkitBoxOrient',i),this.webkitBoxOrient},set:function(i){var n=t(f[242]).definition;Object.defineProperty(e,'webkitBoxOrient',n),this.webkitBoxOrient=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-box-orient',{get:function(){var i=t(f[242]).definition;return Object.defineProperty(e,'webkitBoxOrient',i),this.webkitBoxOrient},set:function(i){var n=t(f[242]).definition;Object.defineProperty(e,'webkitBoxOrient',n),this.webkitBoxOrient=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBoxPack',{get:function(){var i=t(f[243]).definition;return Object.defineProperty(e,'webkitBoxPack',i),this.webkitBoxPack},set:function(i){var n=t(f[243]).definition;Object.defineProperty(e,'webkitBoxPack',n),this.webkitBoxPack=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-box-pack',{get:function(){var i=t(f[243]).definition;return Object.defineProperty(e,'webkitBoxPack',i),this.webkitBoxPack},set:function(i){var n=t(f[243]).definition;Object.defineProperty(e,'webkitBoxPack',n),this.webkitBoxPack=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBoxReflect',{get:function(){var i=t(f[244]).definition;return Object.defineProperty(e,'webkitBoxReflect',i),this.webkitBoxReflect},set:function(i){var n=t(f[244]).definition;Object.defineProperty(e,'webkitBoxReflect',n),this.webkitBoxReflect=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-box-reflect',{get:function(){var i=t(f[244]).definition;return Object.defineProperty(e,'webkitBoxReflect',i),this.webkitBoxReflect},set:function(i){var n=t(f[244]).definition;Object.defineProperty(e,'webkitBoxReflect',n),this.webkitBoxReflect=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitBoxShadow',{get:function(){var i=t(f[245]).definition;return Object.defineProperty(e,'webkitBoxShadow',i),this.webkitBoxShadow},set:function(i){var n=t(f[245]).definition;Object.defineProperty(e,'webkitBoxShadow',n),this.webkitBoxShadow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-box-shadow',{get:function(){var i=t(f[245]).definition;return Object.defineProperty(e,'webkitBoxShadow',i),this.webkitBoxShadow},set:function(i){var n=t(f[245]).definition;Object.defineProperty(e,'webkitBoxShadow',n),this.webkitBoxShadow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColorCorrection',{get:function(){var i=t(f[246]).definition;return Object.defineProperty(e,'webkitColorCorrection',i),this.webkitColorCorrection},set:function(i){var n=t(f[246]).definition;Object.defineProperty(e,'webkitColorCorrection',n),this.webkitColorCorrection=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-color-correction',{get:function(){var i=t(f[246]).definition;return Object.defineProperty(e,'webkitColorCorrection',i),this.webkitColorCorrection},set:function(i){var n=t(f[246]).definition;Object.defineProperty(e,'webkitColorCorrection',n),this.webkitColorCorrection=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnAxis',{get:function(){var i=t(f[247]).definition;return Object.defineProperty(e,'webkitColumnAxis',i),this.webkitColumnAxis},set:function(i){var n=t(f[247]).definition;Object.defineProperty(e,'webkitColumnAxis',n),this.webkitColumnAxis=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-axis',{get:function(){var i=t(f[247]).definition;return Object.defineProperty(e,'webkitColumnAxis',i),this.webkitColumnAxis},set:function(i){var n=t(f[247]).definition;Object.defineProperty(e,'webkitColumnAxis',n),this.webkitColumnAxis=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnBreakAfter',{get:function(){var i=t(f[248]).definition;return Object.defineProperty(e,'webkitColumnBreakAfter',i),this.webkitColumnBreakAfter},set:function(i){var n=t(f[248]).definition;Object.defineProperty(e,'webkitColumnBreakAfter',n),this.webkitColumnBreakAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-break-after',{get:function(){var i=t(f[248]).definition;return Object.defineProperty(e,'webkitColumnBreakAfter',i),this.webkitColumnBreakAfter},set:function(i){var n=t(f[248]).definition;Object.defineProperty(e,'webkitColumnBreakAfter',n),this.webkitColumnBreakAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnBreakBefore',{get:function(){var i=t(f[249]).definition;return Object.defineProperty(e,'webkitColumnBreakBefore',i),this.webkitColumnBreakBefore},set:function(i){var n=t(f[249]).definition;Object.defineProperty(e,'webkitColumnBreakBefore',n),this.webkitColumnBreakBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-break-before',{get:function(){var i=t(f[249]).definition;return Object.defineProperty(e,'webkitColumnBreakBefore',i),this.webkitColumnBreakBefore},set:function(i){var n=t(f[249]).definition;Object.defineProperty(e,'webkitColumnBreakBefore',n),this.webkitColumnBreakBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnBreakInside',{get:function(){var i=t(f[250]).definition;return Object.defineProperty(e,'webkitColumnBreakInside',i),this.webkitColumnBreakInside},set:function(i){var n=t(f[250]).definition;Object.defineProperty(e,'webkitColumnBreakInside',n),this.webkitColumnBreakInside=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-break-inside',{get:function(){var i=t(f[250]).definition;return Object.defineProperty(e,'webkitColumnBreakInside',i),this.webkitColumnBreakInside},set:function(i){var n=t(f[250]).definition;Object.defineProperty(e,'webkitColumnBreakInside',n),this.webkitColumnBreakInside=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnCount',{get:function(){var i=t(f[251]).definition;return Object.defineProperty(e,'webkitColumnCount',i),this.webkitColumnCount},set:function(i){var n=t(f[251]).definition;Object.defineProperty(e,'webkitColumnCount',n),this.webkitColumnCount=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-count',{get:function(){var i=t(f[251]).definition;return Object.defineProperty(e,'webkitColumnCount',i),this.webkitColumnCount},set:function(i){var n=t(f[251]).definition;Object.defineProperty(e,'webkitColumnCount',n),this.webkitColumnCount=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnGap',{get:function(){var i=t(f[252]).definition;return Object.defineProperty(e,'webkitColumnGap',i),this.webkitColumnGap},set:function(i){var n=t(f[252]).definition;Object.defineProperty(e,'webkitColumnGap',n),this.webkitColumnGap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-gap',{get:function(){var i=t(f[252]).definition;return Object.defineProperty(e,'webkitColumnGap',i),this.webkitColumnGap},set:function(i){var n=t(f[252]).definition;Object.defineProperty(e,'webkitColumnGap',n),this.webkitColumnGap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnRule',{get:function(){var i=t(f[253]).definition;return Object.defineProperty(e,'webkitColumnRule',i),this.webkitColumnRule},set:function(i){var n=t(f[253]).definition;Object.defineProperty(e,'webkitColumnRule',n),this.webkitColumnRule=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-rule',{get:function(){var i=t(f[253]).definition;return Object.defineProperty(e,'webkitColumnRule',i),this.webkitColumnRule},set:function(i){var n=t(f[253]).definition;Object.defineProperty(e,'webkitColumnRule',n),this.webkitColumnRule=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnRuleColor',{get:function(){var i=t(f[254]).definition;return Object.defineProperty(e,'webkitColumnRuleColor',i),this.webkitColumnRuleColor},set:function(i){var n=t(f[254]).definition;Object.defineProperty(e,'webkitColumnRuleColor',n),this.webkitColumnRuleColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-rule-color',{get:function(){var i=t(f[254]).definition;return Object.defineProperty(e,'webkitColumnRuleColor',i),this.webkitColumnRuleColor},set:function(i){var n=t(f[254]).definition;Object.defineProperty(e,'webkitColumnRuleColor',n),this.webkitColumnRuleColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnRuleStyle',{get:function(){var i=t(f[255]).definition;return Object.defineProperty(e,'webkitColumnRuleStyle',i),this.webkitColumnRuleStyle},set:function(i){var n=t(f[255]).definition;Object.defineProperty(e,'webkitColumnRuleStyle',n),this.webkitColumnRuleStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-rule-style',{get:function(){var i=t(f[255]).definition;return Object.defineProperty(e,'webkitColumnRuleStyle',i),this.webkitColumnRuleStyle},set:function(i){var n=t(f[255]).definition;Object.defineProperty(e,'webkitColumnRuleStyle',n),this.webkitColumnRuleStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnRuleWidth',{get:function(){var i=t(f[256]).definition;return Object.defineProperty(e,'webkitColumnRuleWidth',i),this.webkitColumnRuleWidth},set:function(i){var n=t(f[256]).definition;Object.defineProperty(e,'webkitColumnRuleWidth',n),this.webkitColumnRuleWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-rule-width',{get:function(){var i=t(f[256]).definition;return Object.defineProperty(e,'webkitColumnRuleWidth',i),this.webkitColumnRuleWidth},set:function(i){var n=t(f[256]).definition;Object.defineProperty(e,'webkitColumnRuleWidth',n),this.webkitColumnRuleWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnSpan',{get:function(){var i=t(f[257]).definition;return Object.defineProperty(e,'webkitColumnSpan',i),this.webkitColumnSpan},set:function(i){var n=t(f[257]).definition;Object.defineProperty(e,'webkitColumnSpan',n),this.webkitColumnSpan=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-span',{get:function(){var i=t(f[257]).definition;return Object.defineProperty(e,'webkitColumnSpan',i),this.webkitColumnSpan},set:function(i){var n=t(f[257]).definition;Object.defineProperty(e,'webkitColumnSpan',n),this.webkitColumnSpan=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumnWidth',{get:function(){var i=t(f[258]).definition;return Object.defineProperty(e,'webkitColumnWidth',i),this.webkitColumnWidth},set:function(i){var n=t(f[258]).definition;Object.defineProperty(e,'webkitColumnWidth',n),this.webkitColumnWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-column-width',{get:function(){var i=t(f[258]).definition;return Object.defineProperty(e,'webkitColumnWidth',i),this.webkitColumnWidth},set:function(i){var n=t(f[258]).definition;Object.defineProperty(e,'webkitColumnWidth',n),this.webkitColumnWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitColumns',{get:function(){var i=t(f[259]).definition;return Object.defineProperty(e,'webkitColumns',i),this.webkitColumns},set:function(i){var n=t(f[259]).definition;Object.defineProperty(e,'webkitColumns',n),this.webkitColumns=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-columns',{get:function(){var i=t(f[259]).definition;return Object.defineProperty(e,'webkitColumns',i),this.webkitColumns},set:function(i){var n=t(f[259]).definition;Object.defineProperty(e,'webkitColumns',n),this.webkitColumns=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFilter',{get:function(){var i=t(f[260]).definition;return Object.defineProperty(e,'webkitFilter',i),this.webkitFilter},set:function(i){var n=t(f[260]).definition;Object.defineProperty(e,'webkitFilter',n),this.webkitFilter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-filter',{get:function(){var i=t(f[260]).definition;return Object.defineProperty(e,'webkitFilter',i),this.webkitFilter},set:function(i){var n=t(f[260]).definition;Object.defineProperty(e,'webkitFilter',n),this.webkitFilter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFlexAlign',{get:function(){var i=t(f[261]).definition;return Object.defineProperty(e,'webkitFlexAlign',i),this.webkitFlexAlign},set:function(i){var n=t(f[261]).definition;Object.defineProperty(e,'webkitFlexAlign',n),this.webkitFlexAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-flex-align',{get:function(){var i=t(f[261]).definition;return Object.defineProperty(e,'webkitFlexAlign',i),this.webkitFlexAlign},set:function(i){var n=t(f[261]).definition;Object.defineProperty(e,'webkitFlexAlign',n),this.webkitFlexAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFlexDirection',{get:function(){var i=t(f[262]).definition;return Object.defineProperty(e,'webkitFlexDirection',i),this.webkitFlexDirection},set:function(i){var n=t(f[262]).definition;Object.defineProperty(e,'webkitFlexDirection',n),this.webkitFlexDirection=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-flex-direction',{get:function(){var i=t(f[262]).definition;return Object.defineProperty(e,'webkitFlexDirection',i),this.webkitFlexDirection},set:function(i){var n=t(f[262]).definition;Object.defineProperty(e,'webkitFlexDirection',n),this.webkitFlexDirection=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFlexFlow',{get:function(){var i=t(f[263]).definition;return Object.defineProperty(e,'webkitFlexFlow',i),this.webkitFlexFlow},set:function(i){var n=t(f[263]).definition;Object.defineProperty(e,'webkitFlexFlow',n),this.webkitFlexFlow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-flex-flow',{get:function(){var i=t(f[263]).definition;return Object.defineProperty(e,'webkitFlexFlow',i),this.webkitFlexFlow},set:function(i){var n=t(f[263]).definition;Object.defineProperty(e,'webkitFlexFlow',n),this.webkitFlexFlow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFlexItemAlign',{get:function(){var i=t(f[264]).definition;return Object.defineProperty(e,'webkitFlexItemAlign',i),this.webkitFlexItemAlign},set:function(i){var n=t(f[264]).definition;Object.defineProperty(e,'webkitFlexItemAlign',n),this.webkitFlexItemAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-flex-item-align',{get:function(){var i=t(f[264]).definition;return Object.defineProperty(e,'webkitFlexItemAlign',i),this.webkitFlexItemAlign},set:function(i){var n=t(f[264]).definition;Object.defineProperty(e,'webkitFlexItemAlign',n),this.webkitFlexItemAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFlexLinePack',{get:function(){var i=t(f[265]).definition;return Object.defineProperty(e,'webkitFlexLinePack',i),this.webkitFlexLinePack},set:function(i){var n=t(f[265]).definition;Object.defineProperty(e,'webkitFlexLinePack',n),this.webkitFlexLinePack=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-flex-line-pack',{get:function(){var i=t(f[265]).definition;return Object.defineProperty(e,'webkitFlexLinePack',i),this.webkitFlexLinePack},set:function(i){var n=t(f[265]).definition;Object.defineProperty(e,'webkitFlexLinePack',n),this.webkitFlexLinePack=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFlexOrder',{get:function(){var i=t(f[266]).definition;return Object.defineProperty(e,'webkitFlexOrder',i),this.webkitFlexOrder},set:function(i){var n=t(f[266]).definition;Object.defineProperty(e,'webkitFlexOrder',n),this.webkitFlexOrder=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-flex-order',{get:function(){var i=t(f[266]).definition;return Object.defineProperty(e,'webkitFlexOrder',i),this.webkitFlexOrder},set:function(i){var n=t(f[266]).definition;Object.defineProperty(e,'webkitFlexOrder',n),this.webkitFlexOrder=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFlexPack',{get:function(){var i=t(f[267]).definition;return Object.defineProperty(e,'webkitFlexPack',i),this.webkitFlexPack},set:function(i){var n=t(f[267]).definition;Object.defineProperty(e,'webkitFlexPack',n),this.webkitFlexPack=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-flex-pack',{get:function(){var i=t(f[267]).definition;return Object.defineProperty(e,'webkitFlexPack',i),this.webkitFlexPack},set:function(i){var n=t(f[267]).definition;Object.defineProperty(e,'webkitFlexPack',n),this.webkitFlexPack=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFlexWrap',{get:function(){var i=t(f[268]).definition;return Object.defineProperty(e,'webkitFlexWrap',i),this.webkitFlexWrap},set:function(i){var n=t(f[268]).definition;Object.defineProperty(e,'webkitFlexWrap',n),this.webkitFlexWrap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-flex-wrap',{get:function(){var i=t(f[268]).definition;return Object.defineProperty(e,'webkitFlexWrap',i),this.webkitFlexWrap},set:function(i){var n=t(f[268]).definition;Object.defineProperty(e,'webkitFlexWrap',n),this.webkitFlexWrap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFlowFrom',{get:function(){var i=t(f[269]).definition;return Object.defineProperty(e,'webkitFlowFrom',i),this.webkitFlowFrom},set:function(i){var n=t(f[269]).definition;Object.defineProperty(e,'webkitFlowFrom',n),this.webkitFlowFrom=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-flow-from',{get:function(){var i=t(f[269]).definition;return Object.defineProperty(e,'webkitFlowFrom',i),this.webkitFlowFrom},set:function(i){var n=t(f[269]).definition;Object.defineProperty(e,'webkitFlowFrom',n),this.webkitFlowFrom=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFlowInto',{get:function(){var i=t(f[270]).definition;return Object.defineProperty(e,'webkitFlowInto',i),this.webkitFlowInto},set:function(i){var n=t(f[270]).definition;Object.defineProperty(e,'webkitFlowInto',n),this.webkitFlowInto=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-flow-into',{get:function(){var i=t(f[270]).definition;return Object.defineProperty(e,'webkitFlowInto',i),this.webkitFlowInto},set:function(i){var n=t(f[270]).definition;Object.defineProperty(e,'webkitFlowInto',n),this.webkitFlowInto=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFontFeatureSettings',{get:function(){var i=t(f[271]).definition;return Object.defineProperty(e,'webkitFontFeatureSettings',i),this.webkitFontFeatureSettings},set:function(i){var n=t(f[271]).definition;Object.defineProperty(e,'webkitFontFeatureSettings',n),this.webkitFontFeatureSettings=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-font-feature-settings',{get:function(){var i=t(f[271]).definition;return Object.defineProperty(e,'webkitFontFeatureSettings',i),this.webkitFontFeatureSettings},set:function(i){var n=t(f[271]).definition;Object.defineProperty(e,'webkitFontFeatureSettings',n),this.webkitFontFeatureSettings=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFontKerning',{get:function(){var i=t(f[272]).definition;return Object.defineProperty(e,'webkitFontKerning',i),this.webkitFontKerning},set:function(i){var n=t(f[272]).definition;Object.defineProperty(e,'webkitFontKerning',n),this.webkitFontKerning=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-font-kerning',{get:function(){var i=t(f[272]).definition;return Object.defineProperty(e,'webkitFontKerning',i),this.webkitFontKerning},set:function(i){var n=t(f[272]).definition;Object.defineProperty(e,'webkitFontKerning',n),this.webkitFontKerning=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFontSizeDelta',{get:function(){var i=t(f[273]).definition;return Object.defineProperty(e,'webkitFontSizeDelta',i),this.webkitFontSizeDelta},set:function(i){var n=t(f[273]).definition;Object.defineProperty(e,'webkitFontSizeDelta',n),this.webkitFontSizeDelta=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-font-size-delta',{get:function(){var i=t(f[273]).definition;return Object.defineProperty(e,'webkitFontSizeDelta',i),this.webkitFontSizeDelta},set:function(i){var n=t(f[273]).definition;Object.defineProperty(e,'webkitFontSizeDelta',n),this.webkitFontSizeDelta=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFontSmoothing',{get:function(){var i=t(f[274]).definition;return Object.defineProperty(e,'webkitFontSmoothing',i),this.webkitFontSmoothing},set:function(i){var n=t(f[274]).definition;Object.defineProperty(e,'webkitFontSmoothing',n),this.webkitFontSmoothing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-font-smoothing',{get:function(){var i=t(f[274]).definition;return Object.defineProperty(e,'webkitFontSmoothing',i),this.webkitFontSmoothing},set:function(i){var n=t(f[274]).definition;Object.defineProperty(e,'webkitFontSmoothing',n),this.webkitFontSmoothing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitFontVariantLigatures',{get:function(){var i=t(f[275]).definition;return Object.defineProperty(e,'webkitFontVariantLigatures',i),this.webkitFontVariantLigatures},set:function(i){var n=t(f[275]).definition;Object.defineProperty(e,'webkitFontVariantLigatures',n),this.webkitFontVariantLigatures=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-font-variant-ligatures',{get:function(){var i=t(f[275]).definition;return Object.defineProperty(e,'webkitFontVariantLigatures',i),this.webkitFontVariantLigatures},set:function(i){var n=t(f[275]).definition;Object.defineProperty(e,'webkitFontVariantLigatures',n),this.webkitFontVariantLigatures=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitHighlight',{get:function(){var i=t(f[276]).definition;return Object.defineProperty(e,'webkitHighlight',i),this.webkitHighlight},set:function(i){var n=t(f[276]).definition;Object.defineProperty(e,'webkitHighlight',n),this.webkitHighlight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-highlight',{get:function(){var i=t(f[276]).definition;return Object.defineProperty(e,'webkitHighlight',i),this.webkitHighlight},set:function(i){var n=t(f[276]).definition;Object.defineProperty(e,'webkitHighlight',n),this.webkitHighlight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitHyphenateCharacter',{get:function(){var i=t(f[277]).definition;return Object.defineProperty(e,'webkitHyphenateCharacter',i),this.webkitHyphenateCharacter},set:function(i){var n=t(f[277]).definition;Object.defineProperty(e,'webkitHyphenateCharacter',n),this.webkitHyphenateCharacter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-hyphenate-character',{get:function(){var i=t(f[277]).definition;return Object.defineProperty(e,'webkitHyphenateCharacter',i),this.webkitHyphenateCharacter},set:function(i){var n=t(f[277]).definition;Object.defineProperty(e,'webkitHyphenateCharacter',n),this.webkitHyphenateCharacter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitHyphenateLimitAfter',{get:function(){var i=t(f[278]).definition;return Object.defineProperty(e,'webkitHyphenateLimitAfter',i),this.webkitHyphenateLimitAfter},set:function(i){var n=t(f[278]).definition;Object.defineProperty(e,'webkitHyphenateLimitAfter',n),this.webkitHyphenateLimitAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-hyphenate-limit-after',{get:function(){var i=t(f[278]).definition;return Object.defineProperty(e,'webkitHyphenateLimitAfter',i),this.webkitHyphenateLimitAfter},set:function(i){var n=t(f[278]).definition;Object.defineProperty(e,'webkitHyphenateLimitAfter',n),this.webkitHyphenateLimitAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitHyphenateLimitBefore',{get:function(){var i=t(f[279]).definition;return Object.defineProperty(e,'webkitHyphenateLimitBefore',i),this.webkitHyphenateLimitBefore},set:function(i){var n=t(f[279]).definition;Object.defineProperty(e,'webkitHyphenateLimitBefore',n),this.webkitHyphenateLimitBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-hyphenate-limit-before',{get:function(){var i=t(f[279]).definition;return Object.defineProperty(e,'webkitHyphenateLimitBefore',i),this.webkitHyphenateLimitBefore},set:function(i){var n=t(f[279]).definition;Object.defineProperty(e,'webkitHyphenateLimitBefore',n),this.webkitHyphenateLimitBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitHyphenateLimitLines',{get:function(){var i=t(f[280]).definition;return Object.defineProperty(e,'webkitHyphenateLimitLines',i),this.webkitHyphenateLimitLines},set:function(i){var n=t(f[280]).definition;Object.defineProperty(e,'webkitHyphenateLimitLines',n),this.webkitHyphenateLimitLines=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-hyphenate-limit-lines',{get:function(){var i=t(f[280]).definition;return Object.defineProperty(e,'webkitHyphenateLimitLines',i),this.webkitHyphenateLimitLines},set:function(i){var n=t(f[280]).definition;Object.defineProperty(e,'webkitHyphenateLimitLines',n),this.webkitHyphenateLimitLines=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitHyphens',{get:function(){var i=t(f[281]).definition;return Object.defineProperty(e,'webkitHyphens',i),this.webkitHyphens},set:function(i){var n=t(f[281]).definition;Object.defineProperty(e,'webkitHyphens',n),this.webkitHyphens=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-hyphens',{get:function(){var i=t(f[281]).definition;return Object.defineProperty(e,'webkitHyphens',i),this.webkitHyphens},set:function(i){var n=t(f[281]).definition;Object.defineProperty(e,'webkitHyphens',n),this.webkitHyphens=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitLineAlign',{get:function(){var i=t(f[282]).definition;return Object.defineProperty(e,'webkitLineAlign',i),this.webkitLineAlign},set:function(i){var n=t(f[282]).definition;Object.defineProperty(e,'webkitLineAlign',n),this.webkitLineAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-line-align',{get:function(){var i=t(f[282]).definition;return Object.defineProperty(e,'webkitLineAlign',i),this.webkitLineAlign},set:function(i){var n=t(f[282]).definition;Object.defineProperty(e,'webkitLineAlign',n),this.webkitLineAlign=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitLineBoxContain',{get:function(){var i=t(f[283]).definition;return Object.defineProperty(e,'webkitLineBoxContain',i),this.webkitLineBoxContain},set:function(i){var n=t(f[283]).definition;Object.defineProperty(e,'webkitLineBoxContain',n),this.webkitLineBoxContain=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-line-box-contain',{get:function(){var i=t(f[283]).definition;return Object.defineProperty(e,'webkitLineBoxContain',i),this.webkitLineBoxContain},set:function(i){var n=t(f[283]).definition;Object.defineProperty(e,'webkitLineBoxContain',n),this.webkitLineBoxContain=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitLineBreak',{get:function(){var i=t(f[284]).definition;return Object.defineProperty(e,'webkitLineBreak',i),this.webkitLineBreak},set:function(i){var n=t(f[284]).definition;Object.defineProperty(e,'webkitLineBreak',n),this.webkitLineBreak=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-line-break',{get:function(){var i=t(f[284]).definition;return Object.defineProperty(e,'webkitLineBreak',i),this.webkitLineBreak},set:function(i){var n=t(f[284]).definition;Object.defineProperty(e,'webkitLineBreak',n),this.webkitLineBreak=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitLineClamp',{get:function(){var i=t(f[285]).definition;return Object.defineProperty(e,'webkitLineClamp',i),this.webkitLineClamp},set:function(i){var n=t(f[285]).definition;Object.defineProperty(e,'webkitLineClamp',n),this.webkitLineClamp=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-line-clamp',{get:function(){var i=t(f[285]).definition;return Object.defineProperty(e,'webkitLineClamp',i),this.webkitLineClamp},set:function(i){var n=t(f[285]).definition;Object.defineProperty(e,'webkitLineClamp',n),this.webkitLineClamp=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitLineGrid',{get:function(){var i=t(f[286]).definition;return Object.defineProperty(e,'webkitLineGrid',i),this.webkitLineGrid},set:function(i){var n=t(f[286]).definition;Object.defineProperty(e,'webkitLineGrid',n),this.webkitLineGrid=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-line-grid',{get:function(){var i=t(f[286]).definition;return Object.defineProperty(e,'webkitLineGrid',i),this.webkitLineGrid},set:function(i){var n=t(f[286]).definition;Object.defineProperty(e,'webkitLineGrid',n),this.webkitLineGrid=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitLineSnap',{get:function(){var i=t(f[287]).definition;return Object.defineProperty(e,'webkitLineSnap',i),this.webkitLineSnap},set:function(i){var n=t(f[287]).definition;Object.defineProperty(e,'webkitLineSnap',n),this.webkitLineSnap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-line-snap',{get:function(){var i=t(f[287]).definition;return Object.defineProperty(e,'webkitLineSnap',i),this.webkitLineSnap},set:function(i){var n=t(f[287]).definition;Object.defineProperty(e,'webkitLineSnap',n),this.webkitLineSnap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitLocale',{get:function(){var i=t(f[288]).definition;return Object.defineProperty(e,'webkitLocale',i),this.webkitLocale},set:function(i){var n=t(f[288]).definition;Object.defineProperty(e,'webkitLocale',n),this.webkitLocale=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-locale',{get:function(){var i=t(f[288]).definition;return Object.defineProperty(e,'webkitLocale',i),this.webkitLocale},set:function(i){var n=t(f[288]).definition;Object.defineProperty(e,'webkitLocale',n),this.webkitLocale=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitLogicalHeight',{get:function(){var i=t(f[289]).definition;return Object.defineProperty(e,'webkitLogicalHeight',i),this.webkitLogicalHeight},set:function(i){var n=t(f[289]).definition;Object.defineProperty(e,'webkitLogicalHeight',n),this.webkitLogicalHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-logical-height',{get:function(){var i=t(f[289]).definition;return Object.defineProperty(e,'webkitLogicalHeight',i),this.webkitLogicalHeight},set:function(i){var n=t(f[289]).definition;Object.defineProperty(e,'webkitLogicalHeight',n),this.webkitLogicalHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitLogicalWidth',{get:function(){var i=t(f[290]).definition;return Object.defineProperty(e,'webkitLogicalWidth',i),this.webkitLogicalWidth},set:function(i){var n=t(f[290]).definition;Object.defineProperty(e,'webkitLogicalWidth',n),this.webkitLogicalWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-logical-width',{get:function(){var i=t(f[290]).definition;return Object.defineProperty(e,'webkitLogicalWidth',i),this.webkitLogicalWidth},set:function(i){var n=t(f[290]).definition;Object.defineProperty(e,'webkitLogicalWidth',n),this.webkitLogicalWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarginAfter',{get:function(){var i=t(f[291]).definition;return Object.defineProperty(e,'webkitMarginAfter',i),this.webkitMarginAfter},set:function(i){var n=t(f[291]).definition;Object.defineProperty(e,'webkitMarginAfter',n),this.webkitMarginAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-margin-after',{get:function(){var i=t(f[291]).definition;return Object.defineProperty(e,'webkitMarginAfter',i),this.webkitMarginAfter},set:function(i){var n=t(f[291]).definition;Object.defineProperty(e,'webkitMarginAfter',n),this.webkitMarginAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarginAfterCollapse',{get:function(){var i=t(f[292]).definition;return Object.defineProperty(e,'webkitMarginAfterCollapse',i),this.webkitMarginAfterCollapse},set:function(i){var n=t(f[292]).definition;Object.defineProperty(e,'webkitMarginAfterCollapse',n),this.webkitMarginAfterCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-margin-after-collapse',{get:function(){var i=t(f[292]).definition;return Object.defineProperty(e,'webkitMarginAfterCollapse',i),this.webkitMarginAfterCollapse},set:function(i){var n=t(f[292]).definition;Object.defineProperty(e,'webkitMarginAfterCollapse',n),this.webkitMarginAfterCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarginBefore',{get:function(){var i=t(f[293]).definition;return Object.defineProperty(e,'webkitMarginBefore',i),this.webkitMarginBefore},set:function(i){var n=t(f[293]).definition;Object.defineProperty(e,'webkitMarginBefore',n),this.webkitMarginBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-margin-before',{get:function(){var i=t(f[293]).definition;return Object.defineProperty(e,'webkitMarginBefore',i),this.webkitMarginBefore},set:function(i){var n=t(f[293]).definition;Object.defineProperty(e,'webkitMarginBefore',n),this.webkitMarginBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarginBeforeCollapse',{get:function(){var i=t(f[294]).definition;return Object.defineProperty(e,'webkitMarginBeforeCollapse',i),this.webkitMarginBeforeCollapse},set:function(i){var n=t(f[294]).definition;Object.defineProperty(e,'webkitMarginBeforeCollapse',n),this.webkitMarginBeforeCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-margin-before-collapse',{get:function(){var i=t(f[294]).definition;return Object.defineProperty(e,'webkitMarginBeforeCollapse',i),this.webkitMarginBeforeCollapse},set:function(i){var n=t(f[294]).definition;Object.defineProperty(e,'webkitMarginBeforeCollapse',n),this.webkitMarginBeforeCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarginBottomCollapse',{get:function(){var i=t(f[295]).definition;return Object.defineProperty(e,'webkitMarginBottomCollapse',i),this.webkitMarginBottomCollapse},set:function(i){var n=t(f[295]).definition;Object.defineProperty(e,'webkitMarginBottomCollapse',n),this.webkitMarginBottomCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-margin-bottom-collapse',{get:function(){var i=t(f[295]).definition;return Object.defineProperty(e,'webkitMarginBottomCollapse',i),this.webkitMarginBottomCollapse},set:function(i){var n=t(f[295]).definition;Object.defineProperty(e,'webkitMarginBottomCollapse',n),this.webkitMarginBottomCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarginCollapse',{get:function(){var i=t(f[296]).definition;return Object.defineProperty(e,'webkitMarginCollapse',i),this.webkitMarginCollapse},set:function(i){var n=t(f[296]).definition;Object.defineProperty(e,'webkitMarginCollapse',n),this.webkitMarginCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-margin-collapse',{get:function(){var i=t(f[296]).definition;return Object.defineProperty(e,'webkitMarginCollapse',i),this.webkitMarginCollapse},set:function(i){var n=t(f[296]).definition;Object.defineProperty(e,'webkitMarginCollapse',n),this.webkitMarginCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarginEnd',{get:function(){var i=t(f[297]).definition;return Object.defineProperty(e,'webkitMarginEnd',i),this.webkitMarginEnd},set:function(i){var n=t(f[297]).definition;Object.defineProperty(e,'webkitMarginEnd',n),this.webkitMarginEnd=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-margin-end',{get:function(){var i=t(f[297]).definition;return Object.defineProperty(e,'webkitMarginEnd',i),this.webkitMarginEnd},set:function(i){var n=t(f[297]).definition;Object.defineProperty(e,'webkitMarginEnd',n),this.webkitMarginEnd=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarginStart',{get:function(){var i=t(f[298]).definition;return Object.defineProperty(e,'webkitMarginStart',i),this.webkitMarginStart},set:function(i){var n=t(f[298]).definition;Object.defineProperty(e,'webkitMarginStart',n),this.webkitMarginStart=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-margin-start',{get:function(){var i=t(f[298]).definition;return Object.defineProperty(e,'webkitMarginStart',i),this.webkitMarginStart},set:function(i){var n=t(f[298]).definition;Object.defineProperty(e,'webkitMarginStart',n),this.webkitMarginStart=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarginTopCollapse',{get:function(){var i=t(f[299]).definition;return Object.defineProperty(e,'webkitMarginTopCollapse',i),this.webkitMarginTopCollapse},set:function(i){var n=t(f[299]).definition;Object.defineProperty(e,'webkitMarginTopCollapse',n),this.webkitMarginTopCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-margin-top-collapse',{get:function(){var i=t(f[299]).definition;return Object.defineProperty(e,'webkitMarginTopCollapse',i),this.webkitMarginTopCollapse},set:function(i){var n=t(f[299]).definition;Object.defineProperty(e,'webkitMarginTopCollapse',n),this.webkitMarginTopCollapse=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarquee',{get:function(){var i=t(f[300]).definition;return Object.defineProperty(e,'webkitMarquee',i),this.webkitMarquee},set:function(i){var n=t(f[300]).definition;Object.defineProperty(e,'webkitMarquee',n),this.webkitMarquee=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-marquee',{get:function(){var i=t(f[300]).definition;return Object.defineProperty(e,'webkitMarquee',i),this.webkitMarquee},set:function(i){var n=t(f[300]).definition;Object.defineProperty(e,'webkitMarquee',n),this.webkitMarquee=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarqueeDirection',{get:function(){var i=t(f[301]).definition;return Object.defineProperty(e,'webkitMarqueeDirection',i),this.webkitMarqueeDirection},set:function(i){var n=t(f[301]).definition;Object.defineProperty(e,'webkitMarqueeDirection',n),this.webkitMarqueeDirection=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-marquee-direction',{get:function(){var i=t(f[301]).definition;return Object.defineProperty(e,'webkitMarqueeDirection',i),this.webkitMarqueeDirection},set:function(i){var n=t(f[301]).definition;Object.defineProperty(e,'webkitMarqueeDirection',n),this.webkitMarqueeDirection=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarqueeIncrement',{get:function(){var i=t(f[302]).definition;return Object.defineProperty(e,'webkitMarqueeIncrement',i),this.webkitMarqueeIncrement},set:function(i){var n=t(f[302]).definition;Object.defineProperty(e,'webkitMarqueeIncrement',n),this.webkitMarqueeIncrement=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-marquee-increment',{get:function(){var i=t(f[302]).definition;return Object.defineProperty(e,'webkitMarqueeIncrement',i),this.webkitMarqueeIncrement},set:function(i){var n=t(f[302]).definition;Object.defineProperty(e,'webkitMarqueeIncrement',n),this.webkitMarqueeIncrement=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarqueeRepetition',{get:function(){var i=t(f[303]).definition;return Object.defineProperty(e,'webkitMarqueeRepetition',i),this.webkitMarqueeRepetition},set:function(i){var n=t(f[303]).definition;Object.defineProperty(e,'webkitMarqueeRepetition',n),this.webkitMarqueeRepetition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-marquee-repetition',{get:function(){var i=t(f[303]).definition;return Object.defineProperty(e,'webkitMarqueeRepetition',i),this.webkitMarqueeRepetition},set:function(i){var n=t(f[303]).definition;Object.defineProperty(e,'webkitMarqueeRepetition',n),this.webkitMarqueeRepetition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarqueeSpeed',{get:function(){var i=t(f[304]).definition;return Object.defineProperty(e,'webkitMarqueeSpeed',i),this.webkitMarqueeSpeed},set:function(i){var n=t(f[304]).definition;Object.defineProperty(e,'webkitMarqueeSpeed',n),this.webkitMarqueeSpeed=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-marquee-speed',{get:function(){var i=t(f[304]).definition;return Object.defineProperty(e,'webkitMarqueeSpeed',i),this.webkitMarqueeSpeed},set:function(i){var n=t(f[304]).definition;Object.defineProperty(e,'webkitMarqueeSpeed',n),this.webkitMarqueeSpeed=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMarqueeStyle',{get:function(){var i=t(f[305]).definition;return Object.defineProperty(e,'webkitMarqueeStyle',i),this.webkitMarqueeStyle},set:function(i){var n=t(f[305]).definition;Object.defineProperty(e,'webkitMarqueeStyle',n),this.webkitMarqueeStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-marquee-style',{get:function(){var i=t(f[305]).definition;return Object.defineProperty(e,'webkitMarqueeStyle',i),this.webkitMarqueeStyle},set:function(i){var n=t(f[305]).definition;Object.defineProperty(e,'webkitMarqueeStyle',n),this.webkitMarqueeStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMask',{get:function(){var i=t(f[306]).definition;return Object.defineProperty(e,'webkitMask',i),this.webkitMask},set:function(i){var n=t(f[306]).definition;Object.defineProperty(e,'webkitMask',n),this.webkitMask=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask',{get:function(){var i=t(f[306]).definition;return Object.defineProperty(e,'webkitMask',i),this.webkitMask},set:function(i){var n=t(f[306]).definition;Object.defineProperty(e,'webkitMask',n),this.webkitMask=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskAttachment',{get:function(){var i=t(f[307]).definition;return Object.defineProperty(e,'webkitMaskAttachment',i),this.webkitMaskAttachment},set:function(i){var n=t(f[307]).definition;Object.defineProperty(e,'webkitMaskAttachment',n),this.webkitMaskAttachment=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-attachment',{get:function(){var i=t(f[307]).definition;return Object.defineProperty(e,'webkitMaskAttachment',i),this.webkitMaskAttachment},set:function(i){var n=t(f[307]).definition;Object.defineProperty(e,'webkitMaskAttachment',n),this.webkitMaskAttachment=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskBoxImage',{get:function(){var i=t(f[308]).definition;return Object.defineProperty(e,'webkitMaskBoxImage',i),this.webkitMaskBoxImage},set:function(i){var n=t(f[308]).definition;Object.defineProperty(e,'webkitMaskBoxImage',n),this.webkitMaskBoxImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-box-image',{get:function(){var i=t(f[308]).definition;return Object.defineProperty(e,'webkitMaskBoxImage',i),this.webkitMaskBoxImage},set:function(i){var n=t(f[308]).definition;Object.defineProperty(e,'webkitMaskBoxImage',n),this.webkitMaskBoxImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskBoxImageOutset',{get:function(){var i=t(f[309]).definition;return Object.defineProperty(e,'webkitMaskBoxImageOutset',i),this.webkitMaskBoxImageOutset},set:function(i){var n=t(f[309]).definition;Object.defineProperty(e,'webkitMaskBoxImageOutset',n),this.webkitMaskBoxImageOutset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-box-image-outset',{get:function(){var i=t(f[309]).definition;return Object.defineProperty(e,'webkitMaskBoxImageOutset',i),this.webkitMaskBoxImageOutset},set:function(i){var n=t(f[309]).definition;Object.defineProperty(e,'webkitMaskBoxImageOutset',n),this.webkitMaskBoxImageOutset=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskBoxImageRepeat',{get:function(){var i=t(f[310]).definition;return Object.defineProperty(e,'webkitMaskBoxImageRepeat',i),this.webkitMaskBoxImageRepeat},set:function(i){var n=t(f[310]).definition;Object.defineProperty(e,'webkitMaskBoxImageRepeat',n),this.webkitMaskBoxImageRepeat=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-box-image-repeat',{get:function(){var i=t(f[310]).definition;return Object.defineProperty(e,'webkitMaskBoxImageRepeat',i),this.webkitMaskBoxImageRepeat},set:function(i){var n=t(f[310]).definition;Object.defineProperty(e,'webkitMaskBoxImageRepeat',n),this.webkitMaskBoxImageRepeat=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskBoxImageSlice',{get:function(){var i=t(f[311]).definition;return Object.defineProperty(e,'webkitMaskBoxImageSlice',i),this.webkitMaskBoxImageSlice},set:function(i){var n=t(f[311]).definition;Object.defineProperty(e,'webkitMaskBoxImageSlice',n),this.webkitMaskBoxImageSlice=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-box-image-slice',{get:function(){var i=t(f[311]).definition;return Object.defineProperty(e,'webkitMaskBoxImageSlice',i),this.webkitMaskBoxImageSlice},set:function(i){var n=t(f[311]).definition;Object.defineProperty(e,'webkitMaskBoxImageSlice',n),this.webkitMaskBoxImageSlice=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskBoxImageSource',{get:function(){var i=t(f[312]).definition;return Object.defineProperty(e,'webkitMaskBoxImageSource',i),this.webkitMaskBoxImageSource},set:function(i){var n=t(f[312]).definition;Object.defineProperty(e,'webkitMaskBoxImageSource',n),this.webkitMaskBoxImageSource=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-box-image-source',{get:function(){var i=t(f[312]).definition;return Object.defineProperty(e,'webkitMaskBoxImageSource',i),this.webkitMaskBoxImageSource},set:function(i){var n=t(f[312]).definition;Object.defineProperty(e,'webkitMaskBoxImageSource',n),this.webkitMaskBoxImageSource=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskBoxImageWidth',{get:function(){var i=t(f[313]).definition;return Object.defineProperty(e,'webkitMaskBoxImageWidth',i),this.webkitMaskBoxImageWidth},set:function(i){var n=t(f[313]).definition;Object.defineProperty(e,'webkitMaskBoxImageWidth',n),this.webkitMaskBoxImageWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-box-image-width',{get:function(){var i=t(f[313]).definition;return Object.defineProperty(e,'webkitMaskBoxImageWidth',i),this.webkitMaskBoxImageWidth},set:function(i){var n=t(f[313]).definition;Object.defineProperty(e,'webkitMaskBoxImageWidth',n),this.webkitMaskBoxImageWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskClip',{get:function(){var i=t(f[314]).definition;return Object.defineProperty(e,'webkitMaskClip',i),this.webkitMaskClip},set:function(i){var n=t(f[314]).definition;Object.defineProperty(e,'webkitMaskClip',n),this.webkitMaskClip=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-clip',{get:function(){var i=t(f[314]).definition;return Object.defineProperty(e,'webkitMaskClip',i),this.webkitMaskClip},set:function(i){var n=t(f[314]).definition;Object.defineProperty(e,'webkitMaskClip',n),this.webkitMaskClip=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskComposite',{get:function(){var i=t(f[315]).definition;return Object.defineProperty(e,'webkitMaskComposite',i),this.webkitMaskComposite},set:function(i){var n=t(f[315]).definition;Object.defineProperty(e,'webkitMaskComposite',n),this.webkitMaskComposite=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-composite',{get:function(){var i=t(f[315]).definition;return Object.defineProperty(e,'webkitMaskComposite',i),this.webkitMaskComposite},set:function(i){var n=t(f[315]).definition;Object.defineProperty(e,'webkitMaskComposite',n),this.webkitMaskComposite=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskImage',{get:function(){var i=t(f[316]).definition;return Object.defineProperty(e,'webkitMaskImage',i),this.webkitMaskImage},set:function(i){var n=t(f[316]).definition;Object.defineProperty(e,'webkitMaskImage',n),this.webkitMaskImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-image',{get:function(){var i=t(f[316]).definition;return Object.defineProperty(e,'webkitMaskImage',i),this.webkitMaskImage},set:function(i){var n=t(f[316]).definition;Object.defineProperty(e,'webkitMaskImage',n),this.webkitMaskImage=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskOrigin',{get:function(){var i=t(f[317]).definition;return Object.defineProperty(e,'webkitMaskOrigin',i),this.webkitMaskOrigin},set:function(i){var n=t(f[317]).definition;Object.defineProperty(e,'webkitMaskOrigin',n),this.webkitMaskOrigin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-origin',{get:function(){var i=t(f[317]).definition;return Object.defineProperty(e,'webkitMaskOrigin',i),this.webkitMaskOrigin},set:function(i){var n=t(f[317]).definition;Object.defineProperty(e,'webkitMaskOrigin',n),this.webkitMaskOrigin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskPosition',{get:function(){var i=t(f[318]).definition;return Object.defineProperty(e,'webkitMaskPosition',i),this.webkitMaskPosition},set:function(i){var n=t(f[318]).definition;Object.defineProperty(e,'webkitMaskPosition',n),this.webkitMaskPosition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-position',{get:function(){var i=t(f[318]).definition;return Object.defineProperty(e,'webkitMaskPosition',i),this.webkitMaskPosition},set:function(i){var n=t(f[318]).definition;Object.defineProperty(e,'webkitMaskPosition',n),this.webkitMaskPosition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskPositionX',{get:function(){var i=t(f[319]).definition;return Object.defineProperty(e,'webkitMaskPositionX',i),this.webkitMaskPositionX},set:function(i){var n=t(f[319]).definition;Object.defineProperty(e,'webkitMaskPositionX',n),this.webkitMaskPositionX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-position-x',{get:function(){var i=t(f[319]).definition;return Object.defineProperty(e,'webkitMaskPositionX',i),this.webkitMaskPositionX},set:function(i){var n=t(f[319]).definition;Object.defineProperty(e,'webkitMaskPositionX',n),this.webkitMaskPositionX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskPositionY',{get:function(){var i=t(f[320]).definition;return Object.defineProperty(e,'webkitMaskPositionY',i),this.webkitMaskPositionY},set:function(i){var n=t(f[320]).definition;Object.defineProperty(e,'webkitMaskPositionY',n),this.webkitMaskPositionY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-position-y',{get:function(){var i=t(f[320]).definition;return Object.defineProperty(e,'webkitMaskPositionY',i),this.webkitMaskPositionY},set:function(i){var n=t(f[320]).definition;Object.defineProperty(e,'webkitMaskPositionY',n),this.webkitMaskPositionY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskRepeat',{get:function(){var i=t(f[321]).definition;return Object.defineProperty(e,'webkitMaskRepeat',i),this.webkitMaskRepeat},set:function(i){var n=t(f[321]).definition;Object.defineProperty(e,'webkitMaskRepeat',n),this.webkitMaskRepeat=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-repeat',{get:function(){var i=t(f[321]).definition;return Object.defineProperty(e,'webkitMaskRepeat',i),this.webkitMaskRepeat},set:function(i){var n=t(f[321]).definition;Object.defineProperty(e,'webkitMaskRepeat',n),this.webkitMaskRepeat=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskRepeatX',{get:function(){var i=t(f[322]).definition;return Object.defineProperty(e,'webkitMaskRepeatX',i),this.webkitMaskRepeatX},set:function(i){var n=t(f[322]).definition;Object.defineProperty(e,'webkitMaskRepeatX',n),this.webkitMaskRepeatX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-repeat-x',{get:function(){var i=t(f[322]).definition;return Object.defineProperty(e,'webkitMaskRepeatX',i),this.webkitMaskRepeatX},set:function(i){var n=t(f[322]).definition;Object.defineProperty(e,'webkitMaskRepeatX',n),this.webkitMaskRepeatX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskRepeatY',{get:function(){var i=t(f[323]).definition;return Object.defineProperty(e,'webkitMaskRepeatY',i),this.webkitMaskRepeatY},set:function(i){var n=t(f[323]).definition;Object.defineProperty(e,'webkitMaskRepeatY',n),this.webkitMaskRepeatY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-repeat-y',{get:function(){var i=t(f[323]).definition;return Object.defineProperty(e,'webkitMaskRepeatY',i),this.webkitMaskRepeatY},set:function(i){var n=t(f[323]).definition;Object.defineProperty(e,'webkitMaskRepeatY',n),this.webkitMaskRepeatY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaskSize',{get:function(){var i=t(f[324]).definition;return Object.defineProperty(e,'webkitMaskSize',i),this.webkitMaskSize},set:function(i){var n=t(f[324]).definition;Object.defineProperty(e,'webkitMaskSize',n),this.webkitMaskSize=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-mask-size',{get:function(){var i=t(f[324]).definition;return Object.defineProperty(e,'webkitMaskSize',i),this.webkitMaskSize},set:function(i){var n=t(f[324]).definition;Object.defineProperty(e,'webkitMaskSize',n),this.webkitMaskSize=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMatchNearestMailBlockquoteColor',{get:function(){var i=t(f[325]).definition;return Object.defineProperty(e,'webkitMatchNearestMailBlockquoteColor',i),this.webkitMatchNearestMailBlockquoteColor},set:function(i){var n=t(f[325]).definition;Object.defineProperty(e,'webkitMatchNearestMailBlockquoteColor',n),this.webkitMatchNearestMailBlockquoteColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-match-nearest-mail-blockquote-color',{get:function(){var i=t(f[325]).definition;return Object.defineProperty(e,'webkitMatchNearestMailBlockquoteColor',i),this.webkitMatchNearestMailBlockquoteColor},set:function(i){var n=t(f[325]).definition;Object.defineProperty(e,'webkitMatchNearestMailBlockquoteColor',n),this.webkitMatchNearestMailBlockquoteColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaxLogicalHeight',{get:function(){var i=t(f[326]).definition;return Object.defineProperty(e,'webkitMaxLogicalHeight',i),this.webkitMaxLogicalHeight},set:function(i){var n=t(f[326]).definition;Object.defineProperty(e,'webkitMaxLogicalHeight',n),this.webkitMaxLogicalHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-max-logical-height',{get:function(){var i=t(f[326]).definition;return Object.defineProperty(e,'webkitMaxLogicalHeight',i),this.webkitMaxLogicalHeight},set:function(i){var n=t(f[326]).definition;Object.defineProperty(e,'webkitMaxLogicalHeight',n),this.webkitMaxLogicalHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMaxLogicalWidth',{get:function(){var i=t(f[327]).definition;return Object.defineProperty(e,'webkitMaxLogicalWidth',i),this.webkitMaxLogicalWidth},set:function(i){var n=t(f[327]).definition;Object.defineProperty(e,'webkitMaxLogicalWidth',n),this.webkitMaxLogicalWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-max-logical-width',{get:function(){var i=t(f[327]).definition;return Object.defineProperty(e,'webkitMaxLogicalWidth',i),this.webkitMaxLogicalWidth},set:function(i){var n=t(f[327]).definition;Object.defineProperty(e,'webkitMaxLogicalWidth',n),this.webkitMaxLogicalWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMinLogicalHeight',{get:function(){var i=t(f[328]).definition;return Object.defineProperty(e,'webkitMinLogicalHeight',i),this.webkitMinLogicalHeight},set:function(i){var n=t(f[328]).definition;Object.defineProperty(e,'webkitMinLogicalHeight',n),this.webkitMinLogicalHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-min-logical-height',{get:function(){var i=t(f[328]).definition;return Object.defineProperty(e,'webkitMinLogicalHeight',i),this.webkitMinLogicalHeight},set:function(i){var n=t(f[328]).definition;Object.defineProperty(e,'webkitMinLogicalHeight',n),this.webkitMinLogicalHeight=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitMinLogicalWidth',{get:function(){var i=t(f[329]).definition;return Object.defineProperty(e,'webkitMinLogicalWidth',i),this.webkitMinLogicalWidth},set:function(i){var n=t(f[329]).definition;Object.defineProperty(e,'webkitMinLogicalWidth',n),this.webkitMinLogicalWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-min-logical-width',{get:function(){var i=t(f[329]).definition;return Object.defineProperty(e,'webkitMinLogicalWidth',i),this.webkitMinLogicalWidth},set:function(i){var n=t(f[329]).definition;Object.defineProperty(e,'webkitMinLogicalWidth',n),this.webkitMinLogicalWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitNbspMode',{get:function(){var i=t(f[330]).definition;return Object.defineProperty(e,'webkitNbspMode',i),this.webkitNbspMode},set:function(i){var n=t(f[330]).definition;Object.defineProperty(e,'webkitNbspMode',n),this.webkitNbspMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-nbsp-mode',{get:function(){var i=t(f[330]).definition;return Object.defineProperty(e,'webkitNbspMode',i),this.webkitNbspMode},set:function(i){var n=t(f[330]).definition;Object.defineProperty(e,'webkitNbspMode',n),this.webkitNbspMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitOverflowScrolling',{get:function(){var i=t(f[331]).definition;return Object.defineProperty(e,'webkitOverflowScrolling',i),this.webkitOverflowScrolling},set:function(i){var n=t(f[331]).definition;Object.defineProperty(e,'webkitOverflowScrolling',n),this.webkitOverflowScrolling=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-overflow-scrolling',{get:function(){var i=t(f[331]).definition;return Object.defineProperty(e,'webkitOverflowScrolling',i),this.webkitOverflowScrolling},set:function(i){var n=t(f[331]).definition;Object.defineProperty(e,'webkitOverflowScrolling',n),this.webkitOverflowScrolling=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitPaddingAfter',{get:function(){var i=t(f[332]).definition;return Object.defineProperty(e,'webkitPaddingAfter',i),this.webkitPaddingAfter},set:function(i){var n=t(f[332]).definition;Object.defineProperty(e,'webkitPaddingAfter',n),this.webkitPaddingAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-padding-after',{get:function(){var i=t(f[332]).definition;return Object.defineProperty(e,'webkitPaddingAfter',i),this.webkitPaddingAfter},set:function(i){var n=t(f[332]).definition;Object.defineProperty(e,'webkitPaddingAfter',n),this.webkitPaddingAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitPaddingBefore',{get:function(){var i=t(f[333]).definition;return Object.defineProperty(e,'webkitPaddingBefore',i),this.webkitPaddingBefore},set:function(i){var n=t(f[333]).definition;Object.defineProperty(e,'webkitPaddingBefore',n),this.webkitPaddingBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-padding-before',{get:function(){var i=t(f[333]).definition;return Object.defineProperty(e,'webkitPaddingBefore',i),this.webkitPaddingBefore},set:function(i){var n=t(f[333]).definition;Object.defineProperty(e,'webkitPaddingBefore',n),this.webkitPaddingBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitPaddingEnd',{get:function(){var i=t(f[334]).definition;return Object.defineProperty(e,'webkitPaddingEnd',i),this.webkitPaddingEnd},set:function(i){var n=t(f[334]).definition;Object.defineProperty(e,'webkitPaddingEnd',n),this.webkitPaddingEnd=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-padding-end',{get:function(){var i=t(f[334]).definition;return Object.defineProperty(e,'webkitPaddingEnd',i),this.webkitPaddingEnd},set:function(i){var n=t(f[334]).definition;Object.defineProperty(e,'webkitPaddingEnd',n),this.webkitPaddingEnd=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitPaddingStart',{get:function(){var i=t(f[335]).definition;return Object.defineProperty(e,'webkitPaddingStart',i),this.webkitPaddingStart},set:function(i){var n=t(f[335]).definition;Object.defineProperty(e,'webkitPaddingStart',n),this.webkitPaddingStart=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-padding-start',{get:function(){var i=t(f[335]).definition;return Object.defineProperty(e,'webkitPaddingStart',i),this.webkitPaddingStart},set:function(i){var n=t(f[335]).definition;Object.defineProperty(e,'webkitPaddingStart',n),this.webkitPaddingStart=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitPerspective',{get:function(){var i=t(f[336]).definition;return Object.defineProperty(e,'webkitPerspective',i),this.webkitPerspective},set:function(i){var n=t(f[336]).definition;Object.defineProperty(e,'webkitPerspective',n),this.webkitPerspective=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-perspective',{get:function(){var i=t(f[336]).definition;return Object.defineProperty(e,'webkitPerspective',i),this.webkitPerspective},set:function(i){var n=t(f[336]).definition;Object.defineProperty(e,'webkitPerspective',n),this.webkitPerspective=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitPerspectiveOrigin',{get:function(){var i=t(f[337]).definition;return Object.defineProperty(e,'webkitPerspectiveOrigin',i),this.webkitPerspectiveOrigin},set:function(i){var n=t(f[337]).definition;Object.defineProperty(e,'webkitPerspectiveOrigin',n),this.webkitPerspectiveOrigin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-perspective-origin',{get:function(){var i=t(f[337]).definition;return Object.defineProperty(e,'webkitPerspectiveOrigin',i),this.webkitPerspectiveOrigin},set:function(i){var n=t(f[337]).definition;Object.defineProperty(e,'webkitPerspectiveOrigin',n),this.webkitPerspectiveOrigin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitPerspectiveOriginX',{get:function(){var i=t(f[338]).definition;return Object.defineProperty(e,'webkitPerspectiveOriginX',i),this.webkitPerspectiveOriginX},set:function(i){var n=t(f[338]).definition;Object.defineProperty(e,'webkitPerspectiveOriginX',n),this.webkitPerspectiveOriginX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-perspective-origin-x',{get:function(){var i=t(f[338]).definition;return Object.defineProperty(e,'webkitPerspectiveOriginX',i),this.webkitPerspectiveOriginX},set:function(i){var n=t(f[338]).definition;Object.defineProperty(e,'webkitPerspectiveOriginX',n),this.webkitPerspectiveOriginX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitPerspectiveOriginY',{get:function(){var i=t(f[339]).definition;return Object.defineProperty(e,'webkitPerspectiveOriginY',i),this.webkitPerspectiveOriginY},set:function(i){var n=t(f[339]).definition;Object.defineProperty(e,'webkitPerspectiveOriginY',n),this.webkitPerspectiveOriginY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-perspective-origin-y',{get:function(){var i=t(f[339]).definition;return Object.defineProperty(e,'webkitPerspectiveOriginY',i),this.webkitPerspectiveOriginY},set:function(i){var n=t(f[339]).definition;Object.defineProperty(e,'webkitPerspectiveOriginY',n),this.webkitPerspectiveOriginY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitPrintColorAdjust',{get:function(){var i=t(f[340]).definition;return Object.defineProperty(e,'webkitPrintColorAdjust',i),this.webkitPrintColorAdjust},set:function(i){var n=t(f[340]).definition;Object.defineProperty(e,'webkitPrintColorAdjust',n),this.webkitPrintColorAdjust=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-print-color-adjust',{get:function(){var i=t(f[340]).definition;return Object.defineProperty(e,'webkitPrintColorAdjust',i),this.webkitPrintColorAdjust},set:function(i){var n=t(f[340]).definition;Object.defineProperty(e,'webkitPrintColorAdjust',n),this.webkitPrintColorAdjust=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitRegionBreakAfter',{get:function(){var i=t(f[341]).definition;return Object.defineProperty(e,'webkitRegionBreakAfter',i),this.webkitRegionBreakAfter},set:function(i){var n=t(f[341]).definition;Object.defineProperty(e,'webkitRegionBreakAfter',n),this.webkitRegionBreakAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-region-break-after',{get:function(){var i=t(f[341]).definition;return Object.defineProperty(e,'webkitRegionBreakAfter',i),this.webkitRegionBreakAfter},set:function(i){var n=t(f[341]).definition;Object.defineProperty(e,'webkitRegionBreakAfter',n),this.webkitRegionBreakAfter=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitRegionBreakBefore',{get:function(){var i=t(f[342]).definition;return Object.defineProperty(e,'webkitRegionBreakBefore',i),this.webkitRegionBreakBefore},set:function(i){var n=t(f[342]).definition;Object.defineProperty(e,'webkitRegionBreakBefore',n),this.webkitRegionBreakBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-region-break-before',{get:function(){var i=t(f[342]).definition;return Object.defineProperty(e,'webkitRegionBreakBefore',i),this.webkitRegionBreakBefore},set:function(i){var n=t(f[342]).definition;Object.defineProperty(e,'webkitRegionBreakBefore',n),this.webkitRegionBreakBefore=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitRegionBreakInside',{get:function(){var i=t(f[343]).definition;return Object.defineProperty(e,'webkitRegionBreakInside',i),this.webkitRegionBreakInside},set:function(i){var n=t(f[343]).definition;Object.defineProperty(e,'webkitRegionBreakInside',n),this.webkitRegionBreakInside=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-region-break-inside',{get:function(){var i=t(f[343]).definition;return Object.defineProperty(e,'webkitRegionBreakInside',i),this.webkitRegionBreakInside},set:function(i){var n=t(f[343]).definition;Object.defineProperty(e,'webkitRegionBreakInside',n),this.webkitRegionBreakInside=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitRegionOverflow',{get:function(){var i=t(f[344]).definition;return Object.defineProperty(e,'webkitRegionOverflow',i),this.webkitRegionOverflow},set:function(i){var n=t(f[344]).definition;Object.defineProperty(e,'webkitRegionOverflow',n),this.webkitRegionOverflow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-region-overflow',{get:function(){var i=t(f[344]).definition;return Object.defineProperty(e,'webkitRegionOverflow',i),this.webkitRegionOverflow},set:function(i){var n=t(f[344]).definition;Object.defineProperty(e,'webkitRegionOverflow',n),this.webkitRegionOverflow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitRtlOrdering',{get:function(){var i=t(f[345]).definition;return Object.defineProperty(e,'webkitRtlOrdering',i),this.webkitRtlOrdering},set:function(i){var n=t(f[345]).definition;Object.defineProperty(e,'webkitRtlOrdering',n),this.webkitRtlOrdering=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-rtl-ordering',{get:function(){var i=t(f[345]).definition;return Object.defineProperty(e,'webkitRtlOrdering',i),this.webkitRtlOrdering},set:function(i){var n=t(f[345]).definition;Object.defineProperty(e,'webkitRtlOrdering',n),this.webkitRtlOrdering=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitSvgShadow',{get:function(){var i=t(f[346]).definition;return Object.defineProperty(e,'webkitSvgShadow',i),this.webkitSvgShadow},set:function(i){var n=t(f[346]).definition;Object.defineProperty(e,'webkitSvgShadow',n),this.webkitSvgShadow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-svg-shadow',{get:function(){var i=t(f[346]).definition;return Object.defineProperty(e,'webkitSvgShadow',i),this.webkitSvgShadow},set:function(i){var n=t(f[346]).definition;Object.defineProperty(e,'webkitSvgShadow',n),this.webkitSvgShadow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTapHighlightColor',{get:function(){var i=t(f[347]).definition;return Object.defineProperty(e,'webkitTapHighlightColor',i),this.webkitTapHighlightColor},set:function(i){var n=t(f[347]).definition;Object.defineProperty(e,'webkitTapHighlightColor',n),this.webkitTapHighlightColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-tap-highlight-color',{get:function(){var i=t(f[347]).definition;return Object.defineProperty(e,'webkitTapHighlightColor',i),this.webkitTapHighlightColor},set:function(i){var n=t(f[347]).definition;Object.defineProperty(e,'webkitTapHighlightColor',n),this.webkitTapHighlightColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextCombine',{get:function(){var i=t(f[348]).definition;return Object.defineProperty(e,'webkitTextCombine',i),this.webkitTextCombine},set:function(i){var n=t(f[348]).definition;Object.defineProperty(e,'webkitTextCombine',n),this.webkitTextCombine=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-combine',{get:function(){var i=t(f[348]).definition;return Object.defineProperty(e,'webkitTextCombine',i),this.webkitTextCombine},set:function(i){var n=t(f[348]).definition;Object.defineProperty(e,'webkitTextCombine',n),this.webkitTextCombine=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextDecorationsInEffect',{get:function(){var i=t(f[349]).definition;return Object.defineProperty(e,'webkitTextDecorationsInEffect',i),this.webkitTextDecorationsInEffect},set:function(i){var n=t(f[349]).definition;Object.defineProperty(e,'webkitTextDecorationsInEffect',n),this.webkitTextDecorationsInEffect=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-decorations-in-effect',{get:function(){var i=t(f[349]).definition;return Object.defineProperty(e,'webkitTextDecorationsInEffect',i),this.webkitTextDecorationsInEffect},set:function(i){var n=t(f[349]).definition;Object.defineProperty(e,'webkitTextDecorationsInEffect',n),this.webkitTextDecorationsInEffect=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextEmphasis',{get:function(){var i=t(f[350]).definition;return Object.defineProperty(e,'webkitTextEmphasis',i),this.webkitTextEmphasis},set:function(i){var n=t(f[350]).definition;Object.defineProperty(e,'webkitTextEmphasis',n),this.webkitTextEmphasis=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-emphasis',{get:function(){var i=t(f[350]).definition;return Object.defineProperty(e,'webkitTextEmphasis',i),this.webkitTextEmphasis},set:function(i){var n=t(f[350]).definition;Object.defineProperty(e,'webkitTextEmphasis',n),this.webkitTextEmphasis=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextEmphasisColor',{get:function(){var i=t(f[351]).definition;return Object.defineProperty(e,'webkitTextEmphasisColor',i),this.webkitTextEmphasisColor},set:function(i){var n=t(f[351]).definition;Object.defineProperty(e,'webkitTextEmphasisColor',n),this.webkitTextEmphasisColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-emphasis-color',{get:function(){var i=t(f[351]).definition;return Object.defineProperty(e,'webkitTextEmphasisColor',i),this.webkitTextEmphasisColor},set:function(i){var n=t(f[351]).definition;Object.defineProperty(e,'webkitTextEmphasisColor',n),this.webkitTextEmphasisColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextEmphasisPosition',{get:function(){var i=t(f[352]).definition;return Object.defineProperty(e,'webkitTextEmphasisPosition',i),this.webkitTextEmphasisPosition},set:function(i){var n=t(f[352]).definition;Object.defineProperty(e,'webkitTextEmphasisPosition',n),this.webkitTextEmphasisPosition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-emphasis-position',{get:function(){var i=t(f[352]).definition;return Object.defineProperty(e,'webkitTextEmphasisPosition',i),this.webkitTextEmphasisPosition},set:function(i){var n=t(f[352]).definition;Object.defineProperty(e,'webkitTextEmphasisPosition',n),this.webkitTextEmphasisPosition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextEmphasisStyle',{get:function(){var i=t(f[353]).definition;return Object.defineProperty(e,'webkitTextEmphasisStyle',i),this.webkitTextEmphasisStyle},set:function(i){var n=t(f[353]).definition;Object.defineProperty(e,'webkitTextEmphasisStyle',n),this.webkitTextEmphasisStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-emphasis-style',{get:function(){var i=t(f[353]).definition;return Object.defineProperty(e,'webkitTextEmphasisStyle',i),this.webkitTextEmphasisStyle},set:function(i){var n=t(f[353]).definition;Object.defineProperty(e,'webkitTextEmphasisStyle',n),this.webkitTextEmphasisStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextFillColor',{get:function(){var i=t(f[354]).definition;return Object.defineProperty(e,'webkitTextFillColor',i),this.webkitTextFillColor},set:function(i){var n=t(f[354]).definition;Object.defineProperty(e,'webkitTextFillColor',n),this.webkitTextFillColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-fill-color',{get:function(){var i=t(f[354]).definition;return Object.defineProperty(e,'webkitTextFillColor',i),this.webkitTextFillColor},set:function(i){var n=t(f[354]).definition;Object.defineProperty(e,'webkitTextFillColor',n),this.webkitTextFillColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextOrientation',{get:function(){var i=t(f[355]).definition;return Object.defineProperty(e,'webkitTextOrientation',i),this.webkitTextOrientation},set:function(i){var n=t(f[355]).definition;Object.defineProperty(e,'webkitTextOrientation',n),this.webkitTextOrientation=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-orientation',{get:function(){var i=t(f[355]).definition;return Object.defineProperty(e,'webkitTextOrientation',i),this.webkitTextOrientation},set:function(i){var n=t(f[355]).definition;Object.defineProperty(e,'webkitTextOrientation',n),this.webkitTextOrientation=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextSecurity',{get:function(){var i=t(f[356]).definition;return Object.defineProperty(e,'webkitTextSecurity',i),this.webkitTextSecurity},set:function(i){var n=t(f[356]).definition;Object.defineProperty(e,'webkitTextSecurity',n),this.webkitTextSecurity=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-security',{get:function(){var i=t(f[356]).definition;return Object.defineProperty(e,'webkitTextSecurity',i),this.webkitTextSecurity},set:function(i){var n=t(f[356]).definition;Object.defineProperty(e,'webkitTextSecurity',n),this.webkitTextSecurity=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextSizeAdjust',{get:function(){var i=t(f[357]).definition;return Object.defineProperty(e,'webkitTextSizeAdjust',i),this.webkitTextSizeAdjust},set:function(i){var n=t(f[357]).definition;Object.defineProperty(e,'webkitTextSizeAdjust',n),this.webkitTextSizeAdjust=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-size-adjust',{get:function(){var i=t(f[357]).definition;return Object.defineProperty(e,'webkitTextSizeAdjust',i),this.webkitTextSizeAdjust},set:function(i){var n=t(f[357]).definition;Object.defineProperty(e,'webkitTextSizeAdjust',n),this.webkitTextSizeAdjust=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextStroke',{get:function(){var i=t(f[358]).definition;return Object.defineProperty(e,'webkitTextStroke',i),this.webkitTextStroke},set:function(i){var n=t(f[358]).definition;Object.defineProperty(e,'webkitTextStroke',n),this.webkitTextStroke=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-stroke',{get:function(){var i=t(f[358]).definition;return Object.defineProperty(e,'webkitTextStroke',i),this.webkitTextStroke},set:function(i){var n=t(f[358]).definition;Object.defineProperty(e,'webkitTextStroke',n),this.webkitTextStroke=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextStrokeColor',{get:function(){var i=t(f[359]).definition;return Object.defineProperty(e,'webkitTextStrokeColor',i),this.webkitTextStrokeColor},set:function(i){var n=t(f[359]).definition;Object.defineProperty(e,'webkitTextStrokeColor',n),this.webkitTextStrokeColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-stroke-color',{get:function(){var i=t(f[359]).definition;return Object.defineProperty(e,'webkitTextStrokeColor',i),this.webkitTextStrokeColor},set:function(i){var n=t(f[359]).definition;Object.defineProperty(e,'webkitTextStrokeColor',n),this.webkitTextStrokeColor=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTextStrokeWidth',{get:function(){var i=t(f[360]).definition;return Object.defineProperty(e,'webkitTextStrokeWidth',i),this.webkitTextStrokeWidth},set:function(i){var n=t(f[360]).definition;Object.defineProperty(e,'webkitTextStrokeWidth',n),this.webkitTextStrokeWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-text-stroke-width',{get:function(){var i=t(f[360]).definition;return Object.defineProperty(e,'webkitTextStrokeWidth',i),this.webkitTextStrokeWidth},set:function(i){var n=t(f[360]).definition;Object.defineProperty(e,'webkitTextStrokeWidth',n),this.webkitTextStrokeWidth=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTransform',{get:function(){var i=t(f[361]).definition;return Object.defineProperty(e,'webkitTransform',i),this.webkitTransform},set:function(i){var n=t(f[361]).definition;Object.defineProperty(e,'webkitTransform',n),this.webkitTransform=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-transform',{get:function(){var i=t(f[361]).definition;return Object.defineProperty(e,'webkitTransform',i),this.webkitTransform},set:function(i){var n=t(f[361]).definition;Object.defineProperty(e,'webkitTransform',n),this.webkitTransform=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTransformOrigin',{get:function(){var i=t(f[362]).definition;return Object.defineProperty(e,'webkitTransformOrigin',i),this.webkitTransformOrigin},set:function(i){var n=t(f[362]).definition;Object.defineProperty(e,'webkitTransformOrigin',n),this.webkitTransformOrigin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-transform-origin',{get:function(){var i=t(f[362]).definition;return Object.defineProperty(e,'webkitTransformOrigin',i),this.webkitTransformOrigin},set:function(i){var n=t(f[362]).definition;Object.defineProperty(e,'webkitTransformOrigin',n),this.webkitTransformOrigin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTransformOriginX',{get:function(){var i=t(f[363]).definition;return Object.defineProperty(e,'webkitTransformOriginX',i),this.webkitTransformOriginX},set:function(i){var n=t(f[363]).definition;Object.defineProperty(e,'webkitTransformOriginX',n),this.webkitTransformOriginX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-transform-origin-x',{get:function(){var i=t(f[363]).definition;return Object.defineProperty(e,'webkitTransformOriginX',i),this.webkitTransformOriginX},set:function(i){var n=t(f[363]).definition;Object.defineProperty(e,'webkitTransformOriginX',n),this.webkitTransformOriginX=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTransformOriginY',{get:function(){var i=t(f[364]).definition;return Object.defineProperty(e,'webkitTransformOriginY',i),this.webkitTransformOriginY},set:function(i){var n=t(f[364]).definition;Object.defineProperty(e,'webkitTransformOriginY',n),this.webkitTransformOriginY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-transform-origin-y',{get:function(){var i=t(f[364]).definition;return Object.defineProperty(e,'webkitTransformOriginY',i),this.webkitTransformOriginY},set:function(i){var n=t(f[364]).definition;Object.defineProperty(e,'webkitTransformOriginY',n),this.webkitTransformOriginY=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTransformOriginZ',{get:function(){var i=t(f[365]).definition;return Object.defineProperty(e,'webkitTransformOriginZ',i),this.webkitTransformOriginZ},set:function(i){var n=t(f[365]).definition;Object.defineProperty(e,'webkitTransformOriginZ',n),this.webkitTransformOriginZ=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-transform-origin-z',{get:function(){var i=t(f[365]).definition;return Object.defineProperty(e,'webkitTransformOriginZ',i),this.webkitTransformOriginZ},set:function(i){var n=t(f[365]).definition;Object.defineProperty(e,'webkitTransformOriginZ',n),this.webkitTransformOriginZ=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTransformStyle',{get:function(){var i=t(f[366]).definition;return Object.defineProperty(e,'webkitTransformStyle',i),this.webkitTransformStyle},set:function(i){var n=t(f[366]).definition;Object.defineProperty(e,'webkitTransformStyle',n),this.webkitTransformStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-transform-style',{get:function(){var i=t(f[366]).definition;return Object.defineProperty(e,'webkitTransformStyle',i),this.webkitTransformStyle},set:function(i){var n=t(f[366]).definition;Object.defineProperty(e,'webkitTransformStyle',n),this.webkitTransformStyle=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTransition',{get:function(){var i=t(f[367]).definition;return Object.defineProperty(e,'webkitTransition',i),this.webkitTransition},set:function(i){var n=t(f[367]).definition;Object.defineProperty(e,'webkitTransition',n),this.webkitTransition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-transition',{get:function(){var i=t(f[367]).definition;return Object.defineProperty(e,'webkitTransition',i),this.webkitTransition},set:function(i){var n=t(f[367]).definition;Object.defineProperty(e,'webkitTransition',n),this.webkitTransition=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTransitionDelay',{get:function(){var i=t(f[368]).definition;return Object.defineProperty(e,'webkitTransitionDelay',i),this.webkitTransitionDelay},set:function(i){var n=t(f[368]).definition;Object.defineProperty(e,'webkitTransitionDelay',n),this.webkitTransitionDelay=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-transition-delay',{get:function(){var i=t(f[368]).definition;return Object.defineProperty(e,'webkitTransitionDelay',i),this.webkitTransitionDelay},set:function(i){var n=t(f[368]).definition;Object.defineProperty(e,'webkitTransitionDelay',n),this.webkitTransitionDelay=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTransitionDuration',{get:function(){var i=t(f[369]).definition;return Object.defineProperty(e,'webkitTransitionDuration',i),this.webkitTransitionDuration},set:function(i){var n=t(f[369]).definition;Object.defineProperty(e,'webkitTransitionDuration',n),this.webkitTransitionDuration=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-transition-duration',{get:function(){var i=t(f[369]).definition;return Object.defineProperty(e,'webkitTransitionDuration',i),this.webkitTransitionDuration},set:function(i){var n=t(f[369]).definition;Object.defineProperty(e,'webkitTransitionDuration',n),this.webkitTransitionDuration=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTransitionProperty',{get:function(){var i=t(f[370]).definition;return Object.defineProperty(e,'webkitTransitionProperty',i),this.webkitTransitionProperty},set:function(i){var n=t(f[370]).definition;Object.defineProperty(e,'webkitTransitionProperty',n),this.webkitTransitionProperty=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-transition-property',{get:function(){var i=t(f[370]).definition;return Object.defineProperty(e,'webkitTransitionProperty',i),this.webkitTransitionProperty},set:function(i){var n=t(f[370]).definition;Object.defineProperty(e,'webkitTransitionProperty',n),this.webkitTransitionProperty=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitTransitionTimingFunction',{get:function(){var i=t(f[371]).definition;return Object.defineProperty(e,'webkitTransitionTimingFunction',i),this.webkitTransitionTimingFunction},set:function(i){var n=t(f[371]).definition;Object.defineProperty(e,'webkitTransitionTimingFunction',n),this.webkitTransitionTimingFunction=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-transition-timing-function',{get:function(){var i=t(f[371]).definition;return Object.defineProperty(e,'webkitTransitionTimingFunction',i),this.webkitTransitionTimingFunction},set:function(i){var n=t(f[371]).definition;Object.defineProperty(e,'webkitTransitionTimingFunction',n),this.webkitTransitionTimingFunction=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitUserDrag',{get:function(){var i=t(f[372]).definition;return Object.defineProperty(e,'webkitUserDrag',i),this.webkitUserDrag},set:function(i){var n=t(f[372]).definition;Object.defineProperty(e,'webkitUserDrag',n),this.webkitUserDrag=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-user-drag',{get:function(){var i=t(f[372]).definition;return Object.defineProperty(e,'webkitUserDrag',i),this.webkitUserDrag},set:function(i){var n=t(f[372]).definition;Object.defineProperty(e,'webkitUserDrag',n),this.webkitUserDrag=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitUserModify',{get:function(){var i=t(f[373]).definition;return Object.defineProperty(e,'webkitUserModify',i),this.webkitUserModify},set:function(i){var n=t(f[373]).definition;Object.defineProperty(e,'webkitUserModify',n),this.webkitUserModify=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-user-modify',{get:function(){var i=t(f[373]).definition;return Object.defineProperty(e,'webkitUserModify',i),this.webkitUserModify},set:function(i){var n=t(f[373]).definition;Object.defineProperty(e,'webkitUserModify',n),this.webkitUserModify=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitUserSelect',{get:function(){var i=t(f[374]).definition;return Object.defineProperty(e,'webkitUserSelect',i),this.webkitUserSelect},set:function(i){var n=t(f[374]).definition;Object.defineProperty(e,'webkitUserSelect',n),this.webkitUserSelect=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-user-select',{get:function(){var i=t(f[374]).definition;return Object.defineProperty(e,'webkitUserSelect',i),this.webkitUserSelect},set:function(i){var n=t(f[374]).definition;Object.defineProperty(e,'webkitUserSelect',n),this.webkitUserSelect=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitWrap',{get:function(){var i=t(f[375]).definition;return Object.defineProperty(e,'webkitWrap',i),this.webkitWrap},set:function(i){var n=t(f[375]).definition;Object.defineProperty(e,'webkitWrap',n),this.webkitWrap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-wrap',{get:function(){var i=t(f[375]).definition;return Object.defineProperty(e,'webkitWrap',i),this.webkitWrap},set:function(i){var n=t(f[375]).definition;Object.defineProperty(e,'webkitWrap',n),this.webkitWrap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitWrapFlow',{get:function(){var i=t(f[376]).definition;return Object.defineProperty(e,'webkitWrapFlow',i),this.webkitWrapFlow},set:function(i){var n=t(f[376]).definition;Object.defineProperty(e,'webkitWrapFlow',n),this.webkitWrapFlow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-wrap-flow',{get:function(){var i=t(f[376]).definition;return Object.defineProperty(e,'webkitWrapFlow',i),this.webkitWrapFlow},set:function(i){var n=t(f[376]).definition;Object.defineProperty(e,'webkitWrapFlow',n),this.webkitWrapFlow=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitWrapMargin',{get:function(){var i=t(f[377]).definition;return Object.defineProperty(e,'webkitWrapMargin',i),this.webkitWrapMargin},set:function(i){var n=t(f[377]).definition;Object.defineProperty(e,'webkitWrapMargin',n),this.webkitWrapMargin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-wrap-margin',{get:function(){var i=t(f[377]).definition;return Object.defineProperty(e,'webkitWrapMargin',i),this.webkitWrapMargin},set:function(i){var n=t(f[377]).definition;Object.defineProperty(e,'webkitWrapMargin',n),this.webkitWrapMargin=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitWrapPadding',{get:function(){var i=t(f[378]).definition;return Object.defineProperty(e,'webkitWrapPadding',i),this.webkitWrapPadding},set:function(i){var n=t(f[378]).definition;Object.defineProperty(e,'webkitWrapPadding',n),this.webkitWrapPadding=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-wrap-padding',{get:function(){var i=t(f[378]).definition;return Object.defineProperty(e,'webkitWrapPadding',i),this.webkitWrapPadding},set:function(i){var n=t(f[378]).definition;Object.defineProperty(e,'webkitWrapPadding',n),this.webkitWrapPadding=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitWrapShapeInside',{get:function(){var i=t(f[379]).definition;return Object.defineProperty(e,'webkitWrapShapeInside',i),this.webkitWrapShapeInside},set:function(i){var n=t(f[379]).definition;Object.defineProperty(e,'webkitWrapShapeInside',n),this.webkitWrapShapeInside=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-wrap-shape-inside',{get:function(){var i=t(f[379]).definition;return Object.defineProperty(e,'webkitWrapShapeInside',i),this.webkitWrapShapeInside},set:function(i){var n=t(f[379]).definition;Object.defineProperty(e,'webkitWrapShapeInside',n),this.webkitWrapShapeInside=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitWrapShapeOutside',{get:function(){var i=t(f[380]).definition;return Object.defineProperty(e,'webkitWrapShapeOutside',i),this.webkitWrapShapeOutside},set:function(i){var n=t(f[380]).definition;Object.defineProperty(e,'webkitWrapShapeOutside',n),this.webkitWrapShapeOutside=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-wrap-shape-outside',{get:function(){var i=t(f[380]).definition;return Object.defineProperty(e,'webkitWrapShapeOutside',i),this.webkitWrapShapeOutside},set:function(i){var n=t(f[380]).definition;Object.defineProperty(e,'webkitWrapShapeOutside',n),this.webkitWrapShapeOutside=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitWrapThrough',{get:function(){var i=t(f[381]).definition;return Object.defineProperty(e,'webkitWrapThrough',i),this.webkitWrapThrough},set:function(i){var n=t(f[381]).definition;Object.defineProperty(e,'webkitWrapThrough',n),this.webkitWrapThrough=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-wrap-through',{get:function(){var i=t(f[381]).definition;return Object.defineProperty(e,'webkitWrapThrough',i),this.webkitWrapThrough},set:function(i){var n=t(f[381]).definition;Object.defineProperty(e,'webkitWrapThrough',n),this.webkitWrapThrough=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkitWritingMode',{get:function(){var i=t(f[382]).definition;return Object.defineProperty(e,'webkitWritingMode',i),this.webkitWritingMode},set:function(i){var n=t(f[382]).definition;Object.defineProperty(e,'webkitWritingMode',n),this.webkitWritingMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'webkit-writing-mode',{get:function(){var i=t(f[382]).definition;return Object.defineProperty(e,'webkitWritingMode',i),this.webkitWritingMode},set:function(i){var n=t(f[382]).definition;Object.defineProperty(e,'webkitWritingMode',n),this.webkitWritingMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'whiteSpace',{get:function(){var i=t(f[383]).definition;return Object.defineProperty(e,'whiteSpace',i),this.whiteSpace},set:function(i){var n=t(f[383]).definition;Object.defineProperty(e,'whiteSpace',n),this.whiteSpace=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'white-space',{get:function(){var i=t(f[383]).definition;return Object.defineProperty(e,'whiteSpace',i),this.whiteSpace},set:function(i){var n=t(f[383]).definition;Object.defineProperty(e,'whiteSpace',n),this.whiteSpace=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'widows',{get:function(){var i=t(f[384]).definition;return Object.defineProperty(e,'widows',i),this.widows},set:function(i){var n=t(f[384]).definition;Object.defineProperty(e,'widows',n),this.widows=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'width',{get:function(){var i=t(f[385]).definition;return Object.defineProperty(e,'width',i),this.width},set:function(i){var n=t(f[385]).definition;Object.defineProperty(e,'width',n),this.width=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'wordBreak',{get:function(){var i=t(f[386]).definition;return Object.defineProperty(e,'wordBreak',i),this.wordBreak},set:function(i){var n=t(f[386]).definition;Object.defineProperty(e,'wordBreak',n),this.wordBreak=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'word-break',{get:function(){var i=t(f[386]).definition;return Object.defineProperty(e,'wordBreak',i),this.wordBreak},set:function(i){var n=t(f[386]).definition;Object.defineProperty(e,'wordBreak',n),this.wordBreak=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'wordSpacing',{get:function(){var i=t(f[387]).definition;return Object.defineProperty(e,'wordSpacing',i),this.wordSpacing},set:function(i){var n=t(f[387]).definition;Object.defineProperty(e,'wordSpacing',n),this.wordSpacing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'word-spacing',{get:function(){var i=t(f[387]).definition;return Object.defineProperty(e,'wordSpacing',i),this.wordSpacing},set:function(i){var n=t(f[387]).definition;Object.defineProperty(e,'wordSpacing',n),this.wordSpacing=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'wordWrap',{get:function(){var i=t(f[388]).definition;return Object.defineProperty(e,'wordWrap',i),this.wordWrap},set:function(i){var n=t(f[388]).definition;Object.defineProperty(e,'wordWrap',n),this.wordWrap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'word-wrap',{get:function(){var i=t(f[388]).definition;return Object.defineProperty(e,'wordWrap',i),this.wordWrap},set:function(i){var n=t(f[388]).definition;Object.defineProperty(e,'wordWrap',n),this.wordWrap=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'writingMode',{get:function(){var i=t(f[389]).definition;return Object.defineProperty(e,'writingMode',i),this.writingMode},set:function(i){var n=t(f[389]).definition;Object.defineProperty(e,'writingMode',n),this.writingMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'writing-mode',{get:function(){var i=t(f[389]).definition;return Object.defineProperty(e,'writingMode',i),this.writingMode},set:function(i){var n=t(f[389]).definition;Object.defineProperty(e,'writingMode',n),this.writingMode=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'zIndex',{get:function(){var i=t(f[390]).definition;return Object.defineProperty(e,'zIndex',i),this.zIndex},set:function(i){var n=t(f[390]).definition;Object.defineProperty(e,'zIndex',n),this.zIndex=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'z-index',{get:function(){var i=t(f[390]).definition;return Object.defineProperty(e,'zIndex',i),this.zIndex},set:function(i){var n=t(f[390]).definition;Object.defineProperty(e,'zIndex',n),this.zIndex=i},enumerable:!0,configurable:!0}),Object.defineProperty(e,'zoom',{get:function(){var i=t(f[391]).definition;return Object.defineProperty(e,'zoom',i),this.zoom},set:function(i){var n=t(f[391]).definition;Object.defineProperty(e,'zoom',n),this.zoom=i},enumerable:!0,configurable:!0})}},414,[415,416,417,421,423,418,419,424,422,425,426,420,427,428,429,430,431,435,438,439,440,437,436,441,434,442,443,444,445,446,447,448,451,450,449,452,453,456,455,454,457,433,458,461,462,463,460,459,432,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,502,503,498,499,500,504,505,506,507,508,509,510,511,501,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('alignment-baseline',t)},get:function(){return this.getPropertyValue('alignment-baseline')},enumerable:!0,configurable:!0}},415,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);m.exports.definition={set:function(s){var u=t.valueType(s);if(u===t.TYPES.ANGLE)return this._setProperty('azimuth',t.parseAngle(s));if(u===t.TYPES.KEYWORD){var h,n=s.toLowerCase().trim().split(/\s+/);if(n.length>2)return;var f=n.indexOf('behind');if(h=-1!==f,2===n.length){if(!h)return;n.splice(f,1)}if('leftwards'===n[0]||'rightwards'===n[0]){if(h)return;return this._setProperty('azimuth',n[0])}if('behind'===n[0])return this._setProperty('azimuth','180deg');switch(n[0]){case'left-side':return this._setProperty('azimuth','270deg');case'far-left':return this._setProperty('azimuth',(h?240:300)+'deg');case'left':return this._setProperty('azimuth',(h?220:320)+'deg');case'center-left':return this._setProperty('azimuth',(h?200:340)+'deg');case'center':return this._setProperty('azimuth',(h?180:0)+'deg');case'center-right':return this._setProperty('azimuth',(h?160:20)+'deg');case'right':return this._setProperty('azimuth',(h?140:40)+'deg');case'far-right':return this._setProperty('azimuth',(h?120:60)+'deg');case'right-side':return this._setProperty('azimuth','90deg');default:return}}},get:function(){return this.getPropertyValue('azimuth')},enumerable:!0,configurable:!0}},416,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).shorthandParser,n=r(d[0]).shorthandSetter,o=r(d[0]).shorthandGetter,c={'background-color':r(d[1]),'background-image':r(d[2]),'background-repeat':r(d[3]),'background-attachment':r(d[4]),'background-position':r(d[5])};m.exports.isValid=function(n){return void 0!==t(n,c)},m.exports.definition={set:n('background',c),get:o('background',c),enumerable:!0,configurable:!0}},417,[413,418,419,420,421,422]); +__d(function(g,r,i,a,m,e,d){'use strict';var o=r(d[0]),t=function(t){var n=o.parseColor(t);return void 0!==n?n:o.valueType(t)!==o.TYPES.KEYWORD||'transparent'!==t.toLowerCase()&&'inherit'!==t.toLowerCase()?void 0:t};m.exports.isValid=function(o){return void 0!==t(o)},m.exports.definition={set:function(o){var n=t(o);void 0!==n&&this._setProperty('background-color',n)},get:function(){return this.getPropertyValue('background-color')},enumerable:!0,configurable:!0}},418,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=function(n){var o=t.parseUrl(n);return void 0!==o?o:t.valueType(n)!==t.TYPES.KEYWORD||'none'!==n.toLowerCase()&&'inherit'!==n.toLowerCase()?void 0:n};m.exports.isValid=function(t){return void 0!==n(t)},m.exports.definition={set:function(t){this._setProperty('background-image',n(t))},get:function(){return this.getPropertyValue('background-image')},enumerable:!0,configurable:!0}},419,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),o=function(o){if(t.valueType(o)===t.TYPES.KEYWORD&&('repeat'===o.toLowerCase()||'repeat-x'===o.toLowerCase()||'repeat-y'===o.toLowerCase()||'no-repeat'===o.toLowerCase()||'inherit'===o.toLowerCase()))return o};m.exports.isValid=function(t){return void 0!==o(t)},m.exports.definition={set:function(t){this._setProperty('background-repeat',o(t))},get:function(){return this.getPropertyValue('background-repeat')},enumerable:!0,configurable:!0}},420,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=m.exports.isValid=function(n){return t.valueType(n)===t.TYPES.KEYWORD&&('scroll'===n.toLowerCase()||'fixed'===n.toLowerCase()||'inherit'===n.toLowerCase())};m.exports.definition={set:function(t){n(t)&&this._setProperty('background-attachment',t)},get:function(){return this.getPropertyValue('background-attachment')},enumerable:!0,configurable:!0}},421,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=['top','center','bottom','left','right'],o=function(o){var E=o.split(/\s+/);if(!(E.length>2||E.length<1)){var u=[];if(E.forEach(function(n,o){u[o]=t.valueType(n)}),1===E.length)return u[0]===t.TYPES.LENGTH||u[0]===t.TYPES.PERCENT?o:u[0]!==t.TYPES.KEYWORD||-1===n.indexOf(o.toLowerCase())&&'inherit'!==o.toLowerCase()?void 0:o;if(!(u[0]!==t.TYPES.LENGTH&&u[0]!==t.TYPES.PERCENT||u[1]!==t.TYPES.LENGTH&&u[1]!==t.TYPES.PERCENT))return o;if(u[0]===t.TYPES.KEYWORD&&u[1]===t.TYPES.KEYWORD)return-1!==n.indexOf(E[0])&&-1!==n.indexOf(E[1])?o:void 0}};m.exports.isValid=function(t){return void 0!==o(t)},m.exports.definition={set:function(t){this._setProperty('background-position',o(t))},get:function(){return this.getPropertyValue('background-position')},enumerable:!0,configurable:!0}},422,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('background-clip',t)},get:function(){return this.getPropertyValue('background-clip')},enumerable:!0,configurable:!0}},423,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('background-origin',t)},get:function(){return this.getPropertyValue('background-origin')},enumerable:!0,configurable:!0}},424,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('background-position-x',t)},get:function(){return this.getPropertyValue('background-position-x')},enumerable:!0,configurable:!0}},425,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('background-position-y',t)},get:function(){return this.getPropertyValue('background-position-y')},enumerable:!0,configurable:!0}},426,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('background-repeat-x',t)},get:function(){return this.getPropertyValue('background-repeat-x')},enumerable:!0,configurable:!0}},427,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('background-repeat-y',t)},get:function(){return this.getPropertyValue('background-repeat-y')},enumerable:!0,configurable:!0}},428,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('background-size',t)},get:function(){return this.getPropertyValue('background-size')},enumerable:!0,configurable:!0}},429,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('baseline-shift',t)},get:function(){return this.getPropertyValue('baseline-shift')},enumerable:!0,configurable:!0}},430,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).shorthandParser,o=r(d[0]).shorthandSetter,s=r(d[0]).shorthandGetter,h={'border-width':r(d[1]),'border-style':r(d[2]),'border-color':r(d[3])};m.exports.isValid=function(o){return void 0!==t(o,h)};var b=o('border',h),l=s('border',h);m.exports.definition={set:function(t){'none'===t.toString().toLowerCase()&&(t=''),b.call(this,t),this.removeProperty('border-top'),this.removeProperty('border-left'),this.removeProperty('border-right'),this.removeProperty('border-bottom'),this._values['border-top']=this._values.border,this._values['border-left']=this._values.border,this._values['border-right']=this._values.border,this._values['border-bottom']=this._values.border},get:l,enumerable:!0,configurable:!0}},431,[413,432,433,434]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=(t=r(d[0]),r(d[0]).implicitSetter),o=['thin','medium','thick'];m.exports.isValid=function(n){return void 0!==t.parseLength(n)||'string'==typeof n&&(''===n||(n=n.toLowerCase(),-1!==o.indexOf(n)))};var s=m.exports.isValid;m.exports.definition={set:n('border','width',s,function(n){var o=t.parseLength(n);return void 0!==o?o:s(n)?n.toLowerCase():void 0}),get:function(){return this.getPropertyValue('border-width')},enumerable:!0,configurable:!0}},432,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).implicitSetter,o=['none','hidden','dotted','dashed','solid','double','groove','ridge','inset','outset'];m.exports.isValid=function(t){return'string'==typeof t&&(''===t||-1!==o.indexOf(t))};var n=m.exports.isValid;m.exports.definition={set:t('border','style',n,function(t){if(n(t))return t.toLowerCase()}),get:function(){return this.getPropertyValue('border-style')},enumerable:!0,configurable:!0}},433,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),o=r(d[0]).implicitSetter;m.exports.isValid=function(o){return'string'==typeof o&&(''===o||'transparent'===o.toLowerCase()||t.valueType(o)===t.TYPES.COLOR)};var n=m.exports.isValid;m.exports.definition={set:o('border','color',n,function(t){if(n(t))return t.toLowerCase()}),get:function(){return this.getPropertyValue('border-color')},enumerable:!0,configurable:!0}},434,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).shorthandSetter,o=r(d[0]).shorthandGetter,b=r(d[0]).shorthandParser,n={'border-bottom-width':r(d[1]),'border-bottom-style':r(d[2]),'border-bottom-color':r(d[3])};m.exports.isValid=function(t){return void 0!==b(t,n)},m.exports.definition={set:t('border-bottom',n),get:o('border-bottom',n),enumerable:!0,configurable:!0}},435,[413,436,437,438]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=m.exports.isValid=r(d[0]).isValid;m.exports.definition={set:function(o){t(o)&&this._setProperty('border-bottom-width',o)},get:function(){return this.getPropertyValue('border-bottom-width')},enumerable:!0,configurable:!0}},436,[432]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).isValid;m.exports.isValid=t,m.exports.definition={set:function(o){t(o)&&('none'===o.toLowerCase()&&(o='',this.removeProperty('border-bottom-width')),this._setProperty('border-bottom-style',o))},get:function(){return this.getPropertyValue('border-bottom-style')},enumerable:!0,configurable:!0}},437,[433]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=m.exports.isValid=r(d[0]).isValid;m.exports.definition={set:function(o){t(o)&&this._setProperty('border-bottom-color',o)},get:function(){return this.getPropertyValue('border-bottom-color')},enumerable:!0,configurable:!0}},438,[434]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('border-bottom-left-radius',t)},get:function(){return this.getPropertyValue('border-bottom-left-radius')},enumerable:!0,configurable:!0}},439,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('border-bottom-right-radius',t)},get:function(){return this.getPropertyValue('border-bottom-right-radius')},enumerable:!0,configurable:!0}},440,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),o=function(o){if(t.valueType(o)===t.TYPES.KEYWORD&&('collapse'===o.toLowerCase()||'separate'===o.toLowerCase()||'inherit'===o.toLowerCase()))return o};m.exports.isValid=function(t){return void 0!==o(t)},m.exports.definition={set:function(t){this._setProperty('border-collapse',o(t))},get:function(){return this.getPropertyValue('border-collapse')},enumerable:!0,configurable:!0}},441,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('border-image',t)},get:function(){return this.getPropertyValue('border-image')},enumerable:!0,configurable:!0}},442,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('border-image-outset',t)},get:function(){return this.getPropertyValue('border-image-outset')},enumerable:!0,configurable:!0}},443,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('border-image-repeat',t)},get:function(){return this.getPropertyValue('border-image-repeat')},enumerable:!0,configurable:!0}},444,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('border-image-slice',t)},get:function(){return this.getPropertyValue('border-image-slice')},enumerable:!0,configurable:!0}},445,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('border-image-source',t)},get:function(){return this.getPropertyValue('border-image-source')},enumerable:!0,configurable:!0}},446,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('border-image-width',t)},get:function(){return this.getPropertyValue('border-image-width')},enumerable:!0,configurable:!0}},447,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).shorthandSetter,o=r(d[0]).shorthandGetter,n=r(d[0]).shorthandParser,s={'border-left-width':r(d[1]),'border-left-style':r(d[2]),'border-left-color':r(d[3])};m.exports.isValid=function(t){return void 0!==n(t,s)},m.exports.definition={set:t('border-left',s),get:o('border-left',s),enumerable:!0,configurable:!0}},448,[413,449,450,451]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=m.exports.isValid=r(d[0]).isValid;m.exports.definition={set:function(n){t(n)&&this._setProperty('border-left-width',n)},get:function(){return this.getPropertyValue('border-left-width')},enumerable:!0,configurable:!0}},449,[432]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).isValid;m.exports.isValid=t,m.exports.definition={set:function(o){t(o)&&('none'===o.toLowerCase()&&(o='',this.removeProperty('border-left-width')),this._setProperty('border-left-style',o))},get:function(){return this.getPropertyValue('border-left-style')},enumerable:!0,configurable:!0}},450,[433]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=m.exports.isValid=r(d[0]).isValid;m.exports.definition={set:function(o){t(o)&&this._setProperty('border-left-color',o)},get:function(){return this.getPropertyValue('border-left-color')},enumerable:!0,configurable:!0}},451,[434]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('border-radius',t)},get:function(){return this.getPropertyValue('border-radius')},enumerable:!0,configurable:!0}},452,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).shorthandSetter,o=r(d[0]).shorthandGetter,h=r(d[0]).shorthandParser,n={'border-right-width':r(d[1]),'border-right-style':r(d[2]),'border-right-color':r(d[3])};m.exports.isValid=function(t){return void 0!==h(t,n)},m.exports.definition={set:t('border-right',n),get:o('border-right',n),enumerable:!0,configurable:!0}},453,[413,454,455,456]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=m.exports.isValid=r(d[0]).isValid;m.exports.definition={set:function(n){t(n)&&this._setProperty('border-right-width',n)},get:function(){return this.getPropertyValue('border-right-width')},enumerable:!0,configurable:!0}},454,[432]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).isValid;m.exports.isValid=t,m.exports.definition={set:function(o){t(o)&&('none'===o.toLowerCase()&&(o='',this.removeProperty('border-right-width')),this._setProperty('border-right-style',o))},get:function(){return this.getPropertyValue('border-right-style')},enumerable:!0,configurable:!0}},455,[433]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=m.exports.isValid=r(d[0]).isValid;m.exports.definition={set:function(o){t(o)&&this._setProperty('border-right-color',o)},get:function(){return this.getPropertyValue('border-right-color')},enumerable:!0,configurable:!0}},456,[434]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=function(n){if('inherit'===n.toLowerCase())return n;var o=n.split(/\s+/);return 1===o.length||2===o.length?(o.forEach(function(n){t.valueType(n),t.TYPES.LENGTH}),n):void 0};m.exports.isValid=function(t){return void 0!==n(t)},m.exports.definition={set:function(t){this._setProperty('border-spacing',n(t))},get:function(){return this.getPropertyValue('border-spacing')},enumerable:!0,configurable:!0}},457,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).shorthandSetter,o=r(d[0]).shorthandGetter,n=r(d[0]).shorthandParser,s={'border-top-width':r(d[1]),'border-top-style':r(d[2]),'border-top-color':r(d[3])};m.exports.isValid=function(t){return void 0!==n(t,s)},m.exports.definition={set:t('border-top',s),get:o('border-top',s),enumerable:!0,configurable:!0}},458,[413,459,460,461]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).isValid;m.exports.isValid=t,m.exports.definition={set:function(o){t(o)&&this._setProperty('border-top-width',o)},get:function(){return this.getPropertyValue('border-top-width')},enumerable:!0,configurable:!0}},459,[432]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).isValid;m.exports.isValid=t,m.exports.definition={set:function(o){t(o)&&('none'===o.toLowerCase()&&(o='',this.removeProperty('border-top-width')),this._setProperty('border-top-style',o))},get:function(){return this.getPropertyValue('border-top-style')},enumerable:!0,configurable:!0}},460,[433]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=m.exports.isValid=r(d[0]).isValid;m.exports.definition={set:function(o){t(o)&&this._setProperty('border-top-color',o)},get:function(){return this.getPropertyValue('border-top-color')},enumerable:!0,configurable:!0}},461,[434]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('border-top-left-radius',t)},get:function(){return this.getPropertyValue('border-top-left-radius')},enumerable:!0,configurable:!0}},462,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('border-top-right-radius',t)},get:function(){return this.getPropertyValue('border-top-right-radius')},enumerable:!0,configurable:!0}},463,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).parseMeasurement;m.exports.definition={set:function(n){this._setProperty('bottom',t(n))},get:function(){return this.getPropertyValue('bottom')},enumerable:!0,configurable:!0}},464,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('box-shadow',t)},get:function(){return this.getPropertyValue('box-shadow')},enumerable:!0,configurable:!0}},465,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('box-sizing',t)},get:function(){return this.getPropertyValue('box-sizing')},enumerable:!0,configurable:!0}},466,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('caption-side',t)},get:function(){return this.getPropertyValue('caption-side')},enumerable:!0,configurable:!0}},467,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).parseKeyword,n=['none','left','right','both','inherit'];m.exports.definition={set:function(o){this._setProperty('clear',t(o,n))},get:function(){return this.getPropertyValue('clear')},enumerable:!0,configurable:!0}},468,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).parseMeasurement,n=/^rect\((.*)\)$/i,u=function(u){if(''===u||null===u)return u;if('string'==typeof u){if('auto'===(u=u.toLowerCase())||'inherit'===u)return u;var o=u.match(n);if(o){var f=o[1].split(/\s*,\s*/);if(4===f.length)if(f.every(function(n,u){var o=t(n);return f[u]=o,void 0!==o}))return f=f.join(', '),u.replace(o[1],f)}}};m.exports.definition={set:function(t){this._setProperty('clip',u(t))},get:function(){return this.getPropertyValue('clip')},enumerable:!0,configurable:!0}},469,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).parseColor;m.exports.definition={set:function(o){this._setProperty('color',t(o))},get:function(){return this.getPropertyValue('color')},enumerable:!0,configurable:!0}},470,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('color-interpolation',t)},get:function(){return this.getPropertyValue('color-interpolation')},enumerable:!0,configurable:!0}},471,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('color-interpolation-filters',t)},get:function(){return this.getPropertyValue('color-interpolation-filters')},enumerable:!0,configurable:!0}},472,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('color-profile',t)},get:function(){return this.getPropertyValue('color-profile')},enumerable:!0,configurable:!0}},473,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('color-rendering',t)},get:function(){return this.getPropertyValue('color-rendering')},enumerable:!0,configurable:!0}},474,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('content',t)},get:function(){return this.getPropertyValue('content')},enumerable:!0,configurable:!0}},475,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('counter-increment',t)},get:function(){return this.getPropertyValue('counter-increment')},enumerable:!0,configurable:!0}},476,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('counter-reset',t)},get:function(){return this.getPropertyValue('counter-reset')},enumerable:!0,configurable:!0}},477,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('float',t)},get:function(){return this.getPropertyValue('float')},enumerable:!0,configurable:!0}},478,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('cue',t)},get:function(){return this.getPropertyValue('cue')},enumerable:!0,configurable:!0}},479,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('cue-after',t)},get:function(){return this.getPropertyValue('cue-after')},enumerable:!0,configurable:!0}},480,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('cue-before',t)},get:function(){return this.getPropertyValue('cue-before')},enumerable:!0,configurable:!0}},481,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('cursor',t)},get:function(){return this.getPropertyValue('cursor')},enumerable:!0,configurable:!0}},482,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('direction',t)},get:function(){return this.getPropertyValue('direction')},enumerable:!0,configurable:!0}},483,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('display',t)},get:function(){return this.getPropertyValue('display')},enumerable:!0,configurable:!0}},484,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('dominant-baseline',t)},get:function(){return this.getPropertyValue('dominant-baseline')},enumerable:!0,configurable:!0}},485,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('elevation',t)},get:function(){return this.getPropertyValue('elevation')},enumerable:!0,configurable:!0}},486,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('empty-cells',t)},get:function(){return this.getPropertyValue('empty-cells')},enumerable:!0,configurable:!0}},487,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('enable-background',t)},get:function(){return this.getPropertyValue('enable-background')},enumerable:!0,configurable:!0}},488,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('fill',t)},get:function(){return this.getPropertyValue('fill')},enumerable:!0,configurable:!0}},489,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('fill-opacity',t)},get:function(){return this.getPropertyValue('fill-opacity')},enumerable:!0,configurable:!0}},490,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('fill-rule',t)},get:function(){return this.getPropertyValue('fill-rule')},enumerable:!0,configurable:!0}},491,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('filter',t)},get:function(){return this.getPropertyValue('filter')},enumerable:!0,configurable:!0}},492,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var o=r(d[0]).parseColor;m.exports.definition={set:function(t){this._setProperty('flood-color',o(t))},get:function(){return this.getPropertyValue('flood-color')},enumerable:!0,configurable:!0}},493,[413]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports.definition={set:function(t){this._setProperty('flood-opacity',t)},get:function(){return this.getPropertyValue('flood-opacity')},enumerable:!0,configurable:!0}},494,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).TYPES,n=r(d[0]).valueType,o=r(d[0]).shorthandParser,s=r(d[0]).shorthandSetter,f=r(d[0]).shorthandGetter,u={'font-family':r(d[1]),'font-size':r(d[2]),'font-style':r(d[3]),'font-variant':r(d[4]),'font-weight':r(d[5]),'line-height':r(d[6])},h=['caption','icon','menu','message-box','small-caption','status-bar','inherit'];m.exports.isValid=function(s){return void 0!==o(s,u)||n(s)===t.KEYWORD&&-1!==h.indexOf(s.toLowerCase())};var c=s('background',u);m.exports.definition={set:function(s){if(void 0!==o(s,u))return c.call(this,s);n(s)===t.KEYWORD&&-1!==h.indexOf(s.toLowerCase())&&this._setProperty('font',s)},get:f('background',u),enumerable:!0,configurable:!0}},495,[413,496,497,498,499,500,501]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]).TYPES,n=r(d[0]).valueType,o=/\s*,\s*/;m.exports.isValid=function(f){var s,u,l=f.split(o),c=l.length;for(s=0;sD._childNodes._toArray().indexOf(f)?u:p}f=l,l=l._parentNode}return s},t.Node.prototype.isSameNode=function(t){return t===this},o(t.Node.prototype,'textContent',function(){switch(this.nodeType){case this.COMMENT_NODE:case this.CDATA_SECTION_NODE:case this.PROCESSING_INSTRUCTION_NODE:case this.TEXT_NODE:return this.nodeValue;case this.ATTRIBUTE_NODE:case this.DOCUMENT_FRAGMENT_NODE:case this.ELEMENT_NODE:case this.ENTITY_NODE:case this.ENTITY_REFERENCE_NODE:for(var t='',o=0;o=0;)this.removeChild(this.childNodes.item(o));return''!==t&&null!=t&&this.appendChild(this._ownerDocument.createTextNode(t)),t}),t.Node.prototype.isEqualNode=function(t){var o=this,n=function(){for(var n=0;n2&&(s="Too many namespace seperators"),s)throw new t.DOMException(p,s+" ("+n+"@"+o+")")});t.exceptionMessages.NAMESPACE_ERR="Invalid namespace",t.DOMImplementation.prototype.createDocumentType=function(n,o,p){s(n);var _=new t.DocumentType(null,n);return _._publicId=o||'',_._systemId=p||'',_},t.DOMImplementation.prototype.createDocument=function(n,o,_){if((o||n)&&s(o,n),_&&null!==_._ownerDocument)throw new t.DOMException(t.WRONG_DOCUMENT_ERR);if(o&&o.indexOf(':')>-1&&!n)throw new t.DOMException(p);var u=new t.Document;if(_?(u.doctype=_,_._ownerDocument=u,u.appendChild(_)):u.doctype=null,_&&!_.entities&&(_.entities=new t.EntityNodeMap),u._ownerDocument=u,o){var c=u.createElementNS(n,o);u.appendChild(c)}return u},n(t.Node.prototype,"ownerDocument",function(){return this._ownerDocument||null}),t.Node.prototype.isSupported=function(t,n){return this._ownerDocument.implementation.hasFeature(t,n)},t.Node.prototype._namespaceURI=null,n(t.Node.prototype,"namespaceURI",function(){return this._namespaceURI||null}),o(t.Node.prototype,"namespaceURI",function(t){this._namespaceURI=t}),n(t.Node.prototype,"prefix",function(){return this._prefix||null}),o(t.Node.prototype,"prefix",function(n){if(this.readonly)throw new t.DOMException(t.NO_MODIFICATION_ALLOWED_ERR);if(s(n,this._namespaceURI),this._created&&!this._namespaceURI||"xmlns"===this._prefix||!this._prefix&&this._created)throw new t.DOMException(t.NAMESPACE_ERR);this._localName&&(this._nodeName=n+':'+this._localName),this._prefix=n}),n(t.Node.prototype,"localName",function(){return this._localName||null}),t.Node.prototype.hasAttributes=function(){return this.nodeType===this.ELEMENT_NODE&&this._attributes&&this._attributes.length>0},t.NamedNodeMap.prototype.getNamedItemNS=function(t,n){return this._nsStore[t]&&this._nsStore[t][n]?this._nsStore[t][n]:null},t.NamedNodeMap.prototype.setNamedItemNS=function(n){if(this._readonly)throw new t.DOMException(t.NO_MODIFICATION_ALLOWED_ERR);var o=this._ownerDocument;if(this._parentNode&&this._parentNode._parentNode&&this._parentNode._parentNode.nodeType===o.ENTITY_NODE)throw new t.DOMException(t.NO_MODIFICATION_ALLOWED_ERR);if(this._ownerDocument!==n.ownerDocument)throw new t.DOMException(t.WRONG_DOCUMENT_ERR);if(n._ownerElement)throw new t.DOMException(t.INUSE_ATTRIBUTE_ERR);if(!0===this._readonly)throw new t.DOMException(t.NO_MODIFICATION_ALLOWED_ERR);this._nsStore[n.namespaceURI]||(this._nsStore[n.namespaceURI]={});if(this._nsStore[n.namespaceURI][n.localName])this._nsStore[n.namespaceURI][n.localName];return this._nsStore[n.namespaceURI][n.localName]=n,n._specified=!0,n._ownerDocument=this._ownerDocument,this.setNamedItem(n)},t.NamedNodeMap.prototype.removeNamedItemNS=function(n,o){if(this.readonly)throw new t.DOMException(t.NO_MODIFICATION_ALLOWED_ERR);var p,s,_,u=this._parentNode,c=null;if(this._parentNode&&this._parentNode._parentNode&&this._parentNode._parentNode.nodeType===this._ownerDocument.ENTITY_NODE)throw new t.DOMException(t.NO_MODIFICATION_ALLOWED_ERR);if(this._nsStore[n]&&this._nsStore[n][o]&&(c=this._nsStore[n][o],this.removeNamedItem(c.qualifiedName),delete this._nsStore[n][o]),!c)throw new t.DOMException(t.NOT_FOUND_ERR);return u.ownerDocument.doctype&&u.ownerDocument.doctype._attributes&&(s=u.ownerDocument.doctype._attributes.getNamedItemNS(u._namespaceURI,u._localName)),s&&(_=s._attributes.getNamedItemNS(n,o))&&((p=_.cloneNode(!0))._created=!1,p._namespaceURI=c._namespaceURI,p._nodeName=c.name,p._localName=c._localName,p._prefix=c._prefix,this.setNamedItemNS(p),p._created=!0,p._specified=!1),c},n(t.Attr.prototype,"ownerElement",function(){return this._ownerElement||null}),t.Node.prototype._prefix=!1,o(t.Node.prototype,"qualifiedName",function(t){s(t,this._namespaceURI),t=t||"",this._localName=t.split(":")[1]||null,this.prefix=t.split(":")[0]||null,this._nodeName=t}),n(t.Node.prototype,"qualifiedName",function(){return this._nodeName}),t.NamedNodeMap.prototype._map=function(t){for(var n,o=[],p=this.length,s=0;s1&&!n)throw new t.DOMException(t.NAMESPACE_ERR);return s(o,n),(p=this.createElement(o))._created=!1,p._namespaceURI=n,p._nodeName=o,p._localName=u.pop(),u.length>0&&(_=u.pop(),p.prefix=_),p._created=!0,p},t.Document.prototype.createAttributeNS=function(n,o){var p,_=o.split(':');if(_.length>1&&!n)throw new t.DOMException(t.NAMESPACE_ERR,"Prefix specified without namespaceURI ("+o+")");return s(o,n),(p=this.createAttribute(o)).namespaceURI=n,p.qualifiedName=o,p._localName=_.pop(),p._prefix=_.length>0?_.pop():null,p},t.Document.prototype.getElementsByTagNameNS=function(n,o){return t.Element.prototype.getElementsByTagNameNS.call(this,n,o)},o(t.Element.prototype,"id",function(t){this.setAttribute("id",t)}),n(t.Element.prototype,"id",function(){return this.getAttribute("id")}),t.Document.prototype.getElementById=function(t){return this._ids&&this._ids[t]&&this._ids[t].length>0?this._ids[t][0]:null},e.dom={level2:{core:t}}},809,[810,357]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]).inheritFrom,n=function(t,n,o){t&&n&&o&&(o._ids[t]||(o._ids[t]=[]),o._ids[t].push(n))},o=function(t,n,o){var s,h;if(t&&n&&o&&o._ids&&o._ids[t]){for(s=o._ids[t],h=0;hn&&(n=s)}return n+1}O[h]="Index size error",O[l]="DOMString size error",O[u]="Hierarchy request error",O[_]="Wrong document",O[c]="Invalid character",O[N]="No data allowed",O[p]="No modification allowed",O[f]="Not found",O[E]="Not supported",O[D]="Attribute in use",s.DOMException=function(t,n){this.code=t,Error.call(this,s.exceptionMessages[t]),this.message=s.exceptionMessages[t],n&&(this.message=this.message+": "+n),Error.captureStackTrace&&Error.captureStackTrace(this,s.DOMException)},s.DOMException.INDEX_SIZE_ERR=h,s.DOMException.DOMSTRING_SIZE_ERR=l,s.DOMException.HIERARCHY_REQUEST_ERR=u,s.DOMException.WRONG_DOCUMENT_ERR=_,s.DOMException.INVALID_CHARACTER_ERR=c,s.DOMException.NO_DATA_ALLOWED_ERR=N,s.DOMException.NO_MODIFICATION_ALLOWED_ERR=p,s.DOMException.NOT_FOUND_ERR=f,s.DOMException.NOT_SUPPORTED_ERR=E,s.DOMException.INUSE_ATTRIBUTE_ERR=D,t(Error,s.DOMException,{INDEX_SIZE_ERR:h,DOMSTRING_SIZE_ERR:l,HIERARCHY_REQUEST_ERR:u,WRONG_DOCUMENT_ERR:_,INVALID_CHARACTER_ERR:c,NO_DATA_ALLOWED_ERR:N,NO_MODIFICATION_ALLOWED_ERR:p,NOT_FOUND_ERR:f,NOT_SUPPORTED_ERR:E,INUSE_ATTRIBUTE_ERR:D}),s.NodeList=function(t,n){n?(Object.defineProperties(this,{_element:{value:t},_query:{value:n},_snapshot:{writable:!0},_length:{value:0,writable:!0},_version:{value:-1,writable:!0}}),this._update()):(Array.isArray(t)&&Array.prototype.push.apply(this,t),Object.defineProperties(this,{_length:{value:t?t.length:0,writable:!0}}))},s.NodeList.prototype={_update:function(){if(this._element){if(this._version0)return!0;if('string'==typeof o)return o===n;if(o.indexOf&&o.length>0){for(var s=0;s0?this._childNodes[0]:null},set firstChild(t){throw new s.DOMException},get ownerDocument(){return this._ownerDocument},get readonly(){return this._readonly},get lastChild(){var t=this._childNodes.length;return t>0?this._childNodes[t-1]:null},set lastChild(t){throw new s.DOMException},get childNodes(){return this._childNodes},set childNodes(t){throw new s.DOMException},_indexOf:function(t){if(!this._childNodes||!this._childNodes.length)return-1;for(var n,o=0,s=this._childNodes;(n=s[o])&&n!=t;)o++;return n==t?o:-1},get nextSibling(){if(!this._parentNode||!this._parentNode._indexOf)return null;var t=this._parentNode._indexOf(this);return-1==t||t+1>=this._parentNode._childNodes.length?null:this._parentNode._childNodes[t+1]||null},set nextSibling(t){throw new s.DOMException},get previousSibling(){if(!this._parentNode||!this._parentNode._indexOf)return null;var t=this._parentNode._indexOf(this);return-1==t||t-1<0?null:this._parentNode._childNodes[t-1]||null},set previousSibling(t){throw new s.DOMException},insertBefore:function(t,n){if(!0===this._readonly)throw new s.DOMException(p,'Attempting to modify a read-only node');if(t._ownerDocument||(t._ownerDocument=this._ownerDocument),t._ownerDocument!==this._ownerDocument)throw new s.DOMException(_);if(t.nodeType&&2===t.nodeType)throw new s.DOMException(u);var o=this;do{if(o===t)throw new s.DOMException(u)}while(o=o._parentNode);if(11===t.nodeType)for(var h,l=t._childNodes.length;l-- >0;)h=t.removeChild(t.firstChild),this.insertBefore(h,n);else{if(t===n)return t;if(t._parentNode&&t._parentNode.removeChild(t),null==n)var c=this._childNodes.length;else if(-1==(c=this._indexOf(n)))throw new s.DOMException(f);Array.prototype.splice.call(this._childNodes,c,0,t),t._parentNode=this,this._attached&&t._attach&&t._attach(),this._modified()}return t},_modified:function(){this._version++,this._ownerDocument&&this._ownerDocument._version++,this._childrenList&&this._childrenList._update()},_attrModified:function(t,s,h){if('id'==t&&this._attached){var l=this._ownerDocument;o(h,this,l),n(s,this,l)}},replaceChild:function(t,n){return this.insertBefore(t,n),this.removeChild(n)},_attach:function(){this._attached=!0,this.id&&n(this.id,this,this._ownerDocument);for(var t=0,o=this._childNodes.length;t0},cloneNode:function(t,n){var o=null;switch(this.nodeType){case this.ELEMENT_NODE:o=v(this,this._ownerDocument.createElement(this.tagName),n);break;case this.TEXT_NODE:(o=v(this,this._ownerDocument.createTextNode(this.tagName))).nodeValue=this.nodeValue;break;case this.CDATA_SECTION_NODE:(o=this._ownerDocument.createCDATASection(this.tagName)).nodeValue=this.nodeValue;break;case this.ENTITY_REFERENCE_NODE:var h=this._entity?this._entity.name:this._entityName,l=this._ownerDocument.createEntityReference(h);(o=v(this,l)).nodeValue=this.nodeValue;break;case this.ATTRIBUTE_NODE:o=this._ownerDocument.createAttribute(this.name);break;case this.ENTITY_NODE:var u=this._ownerDocument.createEntityNode(this.name);(o=v(this,u)).nodeValue=this.nodeValue,o._publicId=this._publicId,o._systemId=this._systemId,o._notationName=this.notationName;break;case this.PROCESSING_INSTRUCTION_NODE:var _=this._ownerDocument.createProcessingInstruction(this._target,this._data);(o=v(this,_)).nodeValue=this.nodeValue;break;case this.COMMENT_NODE:(o=this._ownerDocument.createComment(this.tagName)).nodeValue=this.nodeValue;break;case this.DOCUMENT_NODE:o=v(this,new s.Document);break;case this.DOCUMENT_TYPE_NODE:(o=v(this,new s.DocumentType)).nodeValue=this.nodeValue;break;case this.DOCUMENT_FRAGMENT_NODE:o=this._ownerDocument.createDocumentFragment();break;case this.NOTATION_NODE:o=this._ownerDocument.createNotationNode(this._name,this._publicId,this._systemId),(o=v(this,o)).nodeValue=this.nodeValue;break;default:throw new s.DOMException(f)}if("function"==typeof n&&n(this,o),t||2===this.nodeType)for(var c=null,N=0,p=this._childNodes.length;N0&&(t=this._childNodes[o-1],3===n.nodeType&&3===t.nodeType&&(t.appendData(n.nodeValue),this.removeChild(n),o--)):(this.removeChild(n),o--)},toString:function(){var t='';if(this.id&&(t='#'+this.id),this.className)for(var n=this.className.split(/\s+/),o=0,s=n.length;o/=\u0000-\u001A]/;t(s.Node,s.Document,{nodeType:9,_elementBuilders:{},_defaultElementBuilder:function(t,n){return new s.Element(t,n)},get contentType(){return this._contentType},get doctype(){return this._doctype||null},set doctype(t){this._doctype=t},get documentElement(){if(this._documentElement)return this._documentElement;for(var t=this._childNodes,n=this._childNodes.length,o=0;othis._nodeValue.length)throw new s.DOMException(h);return this._nodeValue.lengththis._nodeValue.length)throw new s.DOMException(h);var o=this._nodeValue.substring(0,t),l=this._nodeValue.substring(t);this._nodeValue=o+n+l},deleteData:function(t,n){if(!0===this._readonly)throw new s.DOMException(p);if(t<0||t>this._nodeValue.length||n<0)throw new s.DOMException(h);var o=this._nodeValue.substring(0,t);this._nodeValue=t+nthis._nodeValue.length?this.nodeValue.length-t:n,t<0||t>this._nodeValue.length||n<0)throw new s.DOMException(h);var l=this._nodeValue.substring(0,t),u=this._nodeValue.substring(t+n);this._nodeValue=l+o+u}}),s.Attr=function(t,n,o){s.Node.call(this,t),this._nodeValue=o,this._name=n,this._specified=!!o,this._tagName=n,this._nodeName=n,this._namespaceURI=null,this._nodeName=n,this._localName=n,this._prefix=null},t(s.Node,s.Attr,{nodeType:2,get nodeValue(){for(var t='',n=0,o=this._childNodes.length;nthis._nodeValue.length)throw new s.DOMException(h);var n=this._nodeValue.substring(t);this._nodeValue=this._nodeValue.substring(0,t);var o=this._ownerDocument.createTextNode(n);return this._parentNode.lastChild===this?this._parentNode.appendChild(o):this._parentNode.insertBefore(o,this.nextSibling),o},toString:function(){return this.nodeName}}),s.Comment=function(t,n){s.Text.call(this,t,n),this._nodeName="#comment",this._tagName="#comment"},t(s.Text,s.Comment,{nodeType:8}),s.CDATASection=function(t,n){s.Text.call(this,t,n),this._nodeName="#cdata-section"},t(s.Text,s.CDATASection,{nodeType:4}),s.DocumentType=function(t,n,o,h,l){s.Node.call(this,t),this._name=n,this._tagName=n,this._nodeName=n,this._entities=o||new s.EntityNodeMap(t),this._notations=h||new s.NotationNodeMap(t),s.markTreeReadonly(this._notations),this._attributes=l||new R(t)},t(s.Node,s.DocumentType,{nodeType:10,get nodeValue(){return null},set nodeValue(t){},get name(){return this._name},get entities(){return this._entities},get notations(){return this._notations},get attributes(){return null}}),s.Notation=function(t,n,o,h){s.Node.call(this,t),this._name=n,this._nodeName=n,this._publicId=o||null,this._systemId=h||null,this._nodeValue=null},t(s.Node,s.Notation,{nodeType:12,get publicId(){return this._publicId},get systemId(){return this._systemId},get name(){return this._name||this._nodeName},get attributes(){return null},set nodeValue(t){},get nodeValue(){return this._nodeValue}}),s.Entity=function(t,n){s.Node.call(this,t),this._name=n,this._nodeName=n,this._tagName=n,this._publicId=null,this._systemId=null,this._notationName=null,this._readonly=!0},t(s.Node,s.Entity,{nodeType:6,get nodeValue(){return null},set nodeValue(t){this._readonly},get name(){return this._name},get publicId(){return this._publicId},get systemId(){return this._systemId},set publicId(t){this._publicId=t},set systemId(t){this._systemId=t},set notationName(t){this._notationName=t},get notationName(){return this._notationName},get attributes(){return null}}),s.EntityReference=function(t,n){s.Node.call(this,t),this._entity=n,this._nodeName=n?n.name:null,this._readonly=!0},t(s.Node,s.EntityReference,{nodeType:y,get nodeValue(){return this._entity?this._entity.nodeValue:null},set nodeValue(t){this._readonly},get attributes(){return null},get nodeName(){return this._entityName},get firstChild(){return this._entity.firstChild||null},get childNodes(){return this._entity.childNodes},get lastChild(){return this._entity.lastChild||null}}),e.dom={level1:{core:s}}},810,[357]); +__d(function(g,r,i,a,m,e,d){!(function(){var n,t;'function'==typeof r?(n=r(d[0]).dom.level3.core,t=e):(n=this,t={});var o,s=t.Stream=function(n){this.original=this.str=n,this.peeked=null,this.prev=null,this.prevprev=null};s.prototype={peek:function(){if(this.peeked)return this.peeked;var n=this.re.exec(this.str);return n?(this.str=this.str.substr(n[0].length),this.peeked=n[1]):null},peek2:function(){this.peek();var n=this.re.exec(this.str);return n?n[1]:null},pop:function(){var n=this.peek();return this.peeked=null,this.prevprev=this.prev,this.prev=n,n},trypop:function(n){var t=this.peek();if(t===n)return this.pop();if(Array.isArray(n))for(var o=0;o=|[*/|+\\-=<>]|\"[^\"]*\"|'[^']*'|\\$[A-Z_a-z\xc0-\xd6\xd8-\xf6\xf8-\u02ff\u0370-\u037d\u037f-\u1fff\u200c-\u200d\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff\uf900-\ufdcf\ufdf0-\ufffd][A-Z_a-z\xc0-\xd6\xd8-\xf6\xf8-\u02ff\u0370-\u037d\u037f-\u1fff\u200c-\u200d\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff\uf900-\ufdcf\ufdf0-\ufffd\\-\\.0-9\xb7\u0300-\u036f\u203f-\u2040]*(?::[A-Z_a-z\xc0-\xd6\xd8-\xf6\xf8-\u02ff\u0370-\u037d\u037f-\u1fff\u200c-\u200d\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff\uf900-\ufdcf\ufdf0-\ufffd][A-Z_a-z\xc0-\xd6\xd8-\xf6\xf8-\u02ff\u0370-\u037d\u037f-\u1fff\u200c-\u200d\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff\uf900-\ufdcf\ufdf0-\ufffd\\-\\.0-9\xb7\u0300-\u036f\u203f-\u2040]*)?)"),s.prototype.re=o,s.prototype.startsWithNcNameRe=new RegExp("^[A-Z_a-z\xc0-\xd6\xd8-\xf6\xf8-\u02ff\u0370-\u037d\u037f-\u1fff\u200c-\u200d\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff\uf900-\ufdcf\ufdf0-\ufffd][A-Z_a-z\xc0-\xd6\xd8-\xf6\xf8-\u02ff\u0370-\u037d\u037f-\u1fff\u200c-\u200d\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff\uf900-\ufdcf\ufdf0-\ufffd\\-\\.0-9\xb7\u0300-\u036f\u203f-\u2040]*"),s.prototype.isQnameRe=new RegExp("^[A-Z_a-z\xc0-\xd6\xd8-\xf6\xf8-\u02ff\u0370-\u037d\u037f-\u1fff\u200c-\u200d\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff\uf900-\ufdcf\ufdf0-\ufffd][A-Z_a-z\xc0-\xd6\xd8-\xf6\xf8-\u02ff\u0370-\u037d\u037f-\u1fff\u200c-\u200d\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff\uf900-\ufdcf\ufdf0-\ufffd\\-\\.0-9\xb7\u0300-\u036f\u203f-\u2040]*(?::[A-Z_a-z\xc0-\xd6\xd8-\xf6\xf8-\u02ff\u0370-\u037d\u037f-\u1fff\u200c-\u200d\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff\uf900-\ufdcf\ufdf0-\ufffd][A-Z_a-z\xc0-\xd6\xd8-\xf6\xf8-\u02ff\u0370-\u037d\u037f-\u1fff\u200c-\u200d\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff\uf900-\ufdcf\ufdf0-\ufffd\\-\\.0-9\xb7\u0300-\u036f\u203f-\u2040]*)?$"),s.prototype.isNumberRe=new RegExp("^[0-9]+(?:\\.[0-9]*)?|\\.[0-9]+$");var u=t.parse=function(n,t){for(var o,s=O(n,t),u=[];o=n.pop();)u.push(o);if(u.length)throw new re(re.INVALID_EXPRESSION_ERR,'Position '+n.position()+': Unparsed tokens: '+u.join(' '));return s};function l(n,t,o,s){var u,l=n(t,o);if(null==l)return null;for(;u=t.trypop(s);){var h=n(t,o);if(null==h)throw new re(re.INVALID_EXPRESSION_ERR,'Position '+t.position()+': Expected something after '+u);l=o.node(u,l,h)}return l}function h(n,t){return p(n,t)||f(null,n,t)}function p(n,t){var o=n.peek();return'/'===o||'//'===o?f(t.node('Root'),n,t,!0):null}function f(n,t,o,s){if(null==n&&null==(n=c(t,o)))return n;for(var u;u=t.trypop(['/','//']);){'//'===u&&(n=o.node('/',n,o.node('Axis','descendant-or-self','node',void 0)));var l=c(t,o);if(null==l&&'/'===u&&s)return n;if(s=!1,null==l)throw new re(re.INVALID_EXPRESSION_ERR,'Position '+t.position()+': Expected step after '+u);n=o.node('/',n,l)}return n}function c(n,t){var o=n.trypop(['.','..']);if('.'===o)return t.node('Axis','self','node');if('..'===o)return t.node('Axis','parent','node');var s,u=E(n,t),l=v(n,t);if(null==l&&(s=_(n,t)),null==u&&null==l&&null==s)return null;if(null==l&&null==s)throw new re(re.INVALID_EXPRESSION_ERR,'Position '+n.position()+': Expected nodeTest after axisSpecifier '+u);null==u&&(u='child'),null==l&&(l='attribute'===u?'attribute':'namespace'===u?'namespace':'element');for(var h,p=t.node('Axis',u,l,s);null!=(h=R(p,n,t));)p=h;return p}function E(n,t){if(null!=n.trypop('@'))return'attribute';var o=n.trypopaxisname();if(null!=o){if(null==n.trypop('::'))throw new re(re.INVALID_EXPRESSION_ERR,'Position '+n.position()+': Should not happen. Should be ::.');return o}}function v(n,t){if('('!==n.peek2())return null;var o=n.trypop(['comment','text','processing-instruction','node']);if(null!=o){if(null==n.trypop('('))throw new re(re.INVALID_EXPRESSION_ERR,'Position '+n.position()+': Should not happen.');if('processing-instruction'==o&&n.trypopliteral(),null==n.trypop(')'))throw new re(re.INVALID_EXPRESSION_ERR,'Position '+n.position()+': Expected close parens.');return o}}function _(n,t){var o=n.trypopnametest();return null!=o?o:null}function R(n,t,o){if(null==t.trypop('['))return null;var s=O(t,o);if(null==s)throw new re(re.INVALID_EXPRESSION_ERR,'Position '+t.position()+': Expected expression after [');if(null==t.trypop(']'))throw new re(re.INVALID_EXPRESSION_ERR,'Position '+t.position()+': Expected ] after expression.');return o.node('Predicate',n,s)}function N(n,t){var o=n.trypopliteral();if(null==o&&(o=n.trypopnumber()),null!=o)return o;var s=n.trypopvarref();if(null!=s)return t.node('VariableReference',s);var u=y(n,t);if(null!=u)return u;if(n.trypop('(')){var l=O(n,t);if(null==l)throw new re(re.INVALID_EXPRESSION_ERR,'Position '+n.position()+': Expected expression after (.');if(null==n.trypop(')'))throw new re(re.INVALID_EXPRESSION_ERR,'Position '+n.position()+': Expected ) after expression.');return l}return null}function y(n,t){var o=n.trypopfuncname(n,t);if(null==o)return null;if(null==n.trypop('('))throw new re(re.INVALID_EXPRESSION_ERR,'Position '+n.position()+': Expected ( ) after function name.');for(var s=[],u=!0;null==n.trypop(')');){if(!u&&null==n.trypop(','))throw new re(re.INVALID_EXPRESSION_ERR,'Position '+n.position()+': Expected , between arguments of the function.');u=!1;var l=O(n,t);if(null==l)throw new re(re.INVALID_EXPRESSION_ERR,'Position '+n.position()+': Expected expression as argument of function.');s.push(l)}return t.node('FunctionCall',o,s)}function w(n,t){return l(T,n,t,'|')}function T(n,t){var o=P(n,t);if(null==o){var s=h(n,t);if(null==s)throw new Error;return t.node('PathExpr',s)}var u=f(o,n,t,!1);return o===u?u:t.node('PathExpr',u)}function P(n,t){var o=N(n,t);if(null==o)return null;for(var s,u=o;null!=(s=R(u,n,t));)u=s;return u}function O(n,t){n.peeked,n.str;var o=l(b,n,t,'or');n.peeked,n.str;return o}function b(n,t){return l(D,n,t,'and')}function D(n,t){return l(S,n,t,['=','!='])}function S(n,t){return l(A,n,t,['<','>','<=','>='])}function A(n,t){return l(I,n,t,['+','-'])}function I(n,t){return l(x,n,t,['*','div','mod'])}function x(n,t){if(n.trypop('-')){var o=x(n,t);if(null==o)throw new re(re.INVALID_EXPRESSION_ERR,'Position '+n.position()+': Expected unary expression after -');return t.node('UnaryMinus',o)}return w(n,t)}var Y={node:function(){return Array.prototype.slice.call(arguments)}};function L(n){this.nodes=[],this.pos=[],this.lasts=[],this.nextPos=[],this.seriesIndexes=[],this.isReverseAxis=n,this._pushToNodes=n?Array.prototype.unshift:Array.prototype.push}function V(n){for(var t=[],o=0;o=0;f--)h===p[f]&&(l.pushSeries(),p.splice(f,f+1),E++);E&&u.matches(h)&&l.addNode(h)}console.assert(0===p.length);for(f=0;f=0;N--)null==h.pos[_][N]?h.pos[_].splice(N,N+1):R.unshift(f[N]-1)}return h}function Z(n,t,o,s,u,l,h){for(;0=0;--c)h.nodes.splice(p[c],p[c],f[c]),h.pos.splice(p[c],p[c],[1]),h.lasts.splice(p[c],p[c],[1]);return h}function B(n,t,o,s,u){for(var l=new X(t,o,s),h=[],p=0;p0;--p)f===h[p][h[p].length-1]&&(R.push(h[p].length),N.push(v[p]),h[p].pop(),0===h[p].length&&(h.splice(p,p+1),v.splice(p,p+1)));0===h[0].length&&(h.shift(),v.shift()),_.nodes.push(f),_.pos.push(R),_.lasts.push(N)}return _}function F(n){var t=[n];for(null!=n.ownerElement&&(n=n.ownerElement,t.push(-1));null!=n;){for(var o=0;null!=n.previousSibling;)n=n.previousSibling,o++;t.push(o),n=n.parentNode}return t}function $(n,t){var o,s=Math.min(n.length-1,t.length-1),u=n.length,l=t.length;if(n[0]===t[0])return 0;for(var h=0;h0?(h.push(s),s=null,l=null):o.nodeNames.nodeName?(h.push(s),s=null,l=null):o!==s?(h.push(s),s=null,l=null):(console.assert(o===s,p),s=null,l=null)}for(;o;)h.push(o),o=n.shift();for(;s;)h.push(s),s=t.shift();return h}function J(n,t,o,s){var u;if(u=s?K.number:'boolean'==typeof t||'boolean'==typeof o?K.boolean:'number'==typeof t||'number'==typeof o?K.number:K.string,'object'==typeof t&&'object'==typeof o){for(var l=0;l0&&f===l[l.length-1]||(l.push(f),h.push([1]))))}return{nodes:l,pos:h,lasts:h}},preceding:function(n,t,o,s){return C(n,t,o,s)},'preceding-sibling':function(n,t,o,s){return k(n,t,o,s,Array.prototype.pop,function(){return this[this.length-1]},function(n){return n.previousSibling},!1,!0)},self:function(n,t,o,s){for(var u=[],l=[],h=new X(t,o,s),p=0;p0:!!n},last:function(){return console.assert(Array.isArray(this.pos)),console.assert(Array.isArray(this.lasts)),console.assert(1===this.pos.length),console.assert(1===this.lasts.length),console.assert(1===this.lasts[0].length),this.lasts[0][0]},position:function(){return console.assert(Array.isArray(this.pos)),console.assert(Array.isArray(this.lasts)),console.assert(1===this.pos.length),console.assert(1===this.lasts.length),console.assert(1===this.pos[0].length),this.pos[0][0]},count:function(n){if('object'!=typeof n)throw new re(re.INVALID_EXPRESSION_ERR,'Position '+stream.position()+": Function count(node-set) got wrong argument type: "+n);return n.nodes.length},id:function(n){var t,o={nodes:[]},s=this.nodes[0].ownerDocument||this.nodes[0];if(console.assert(s),'object'==typeof n){t=[];for(var u=0;u':function(n,t){return J(function(n,t){return K.number(n)>K.number(t)},n,t,!0)},'>=':function(n,t){return J(function(n,t){return K.number(n)>=K.number(t)},n,t,!0)},and:function(n,t){return K.boolean(n)&&K.boolean(t)},or:function(n,t){return K.boolean(n)||K.boolean(t)},'|':function(n,t){return{nodes:W(n.nodes,t.nodes)}},'=':function(n,t){if('object'==typeof n&&'object'==typeof t){for(var o={},s=0;s0?o[0]:null}function T(t){this.paused=!!t}(t=Object.create(t)).languageProcessors={},t.resourceLoader={baseUrl:function(t){var n=t.getElementsByTagName('base'),o=t.URL;if(n.length>0){var s=n.item(0).href;s&&(o=p(o,s))}return o},resolve:function(t,n){return null===n?'':p(this.baseUrl(t),n)}},t.HTMLCollection=function(n,o){this._keys=[],t.NodeList.call(this,n,o)},s(t.NodeList,t.HTMLCollection,{namedItem:function(t){if(Object.prototype.hasOwnProperty.call(this,t))return this[t];for(var n,o=this._toArray(),s=o.length,l=null,h=0;h0)return!0}}))},get links(){return new t.HTMLCollection(this,t.mapper(this,function(t){if(t&&t.tagName){var n=t.tagName.toUpperCase();if('AREA'===n||'A'===n&&t.href)return!0}}))},get forms(){return this.getElementsByTagName('FORM')},get anchors(){return this.getElementsByTagName('A')},open:function(){this._childNodes=new t.NodeList,this._documentElement=null,this._modified()},close:function(){this.readyState='complete'},write:function(t){if(this._writeAfterElement){var n=this.createElement('div');n.innerHTML=t;for(var o=n.firstChild,s=this._writeAfterElement,l=this._writeAfterElement.parentNode;o;){var h=o;o=o.nextSibling,l.insertBefore(h,s.nextSibling),s=h}}else if('loading'===this.readyState){for(h=this;h.lastChild&&h.lastChild.nodeType===this.ELEMENT_NODE;)h=h.lastChild;h.innerHTML=t||''}else t&&(this.innerHTML=t)},writeln:function(t){this.write(t+'\n')},getElementsByName:function(n){return new t.HTMLCollection(this,t.mapper(this,function(t){return t.getAttribute&&t.getAttribute('name')===n}))},get title(){var t=this.head,n=t?E(t,'TITLE'):null;return n?n.textContent:''},set title(t){var n=E(this.head,'TITLE');if(!n){n=this.createElement('TITLE');var o=this.head;o||(o=this.createElement('HEAD'),this.documentElement.insertBefore(o,this.documentElement.firstChild)),o.appendChild(n)}n.textContent=t},get head(){return E(this.documentElement,'HEAD')},set head(t){},get body(){var t=E(this.documentElement,'BODY');return t||(t=E(this.documentElement,'FRAMESET')),t},get documentElement(){return this._documentElement||(this._documentElement=E(this,'HTML')),this._documentElement},_cookie:'',get cookie(){return(Array.isArray(this._cookie)?this._cookie:this._cookie&&this._cookie.length>0?[this._cookie]:[]).map(function(t){return t.split(';')[0]}).join('; ')},set cookie(t){for(var n=t.split('=')[0],o=Array.isArray(this._cookie)?this._cookie:this._cookie&&this._cookie.length>0?[this._cookie]:[],s=0;s=0&&ts.length)throw new t.DOMException(t.INDEX_SIZE_ERR);if(-1===n||0===n&&0===s.length)this.tBodies.item(0).appendChild(o);else if(n===s.length){(l=s[n-1])._parentNode.appendChild(o)}else{var l;(l=s[n])._parentNode.insertBefore(o,l)}return o},deleteRow:function(n){var o=this.rows._toArray(),s=o.length;if(-1===n&&(n=s-1),n<0||n>=s)throw new t.DOMException(t.INDEX_SIZE_ERR);var l=o[n];l._parentNode.removeChild(l)}},attributes:['align','bgColor','border','cellPadding','cellSpacing','frame','rules','summary','width']}),u('HTMLTableCaptionElement',{tagName:'CAPTION',attributes:['align']}),u('HTMLTableColElement',{tagNames:['COL','COLGROUP'],attributes:['align',{prop:'ch',attr:'char'},{prop:'chOff',attr:'charoff'},{prop:'span',type:'long'},'vAlign','width']}),u('HTMLTableSectionElement',{tagNames:['THEAD','TBODY','TFOOT'],proto:{get rows(){return this._rows||(this._rows=f(this,'TR',!1)),this._rows},insertRow:function(n){var o=this._ownerDocument.createElement('TR'),s=this.rows._toArray();if(n<-1||n>s.length)throw new t.DOMException(t.INDEX_SIZE_ERR);if(-1===n||n===s.length)this.appendChild(o);else{var l=s[n];this.insertBefore(o,l)}return o},deleteRow:function(n){var o=this.rows._toArray();if(-1===n&&(n=o.length-1),n<0||n>=o.length)throw new t.DOMException(t.INDEX_SIZE_ERR);var s=this.rows[n];this.removeChild(s)}},attributes:['align',{prop:'ch',attr:'char'},{prop:'chOff',attr:'charoff'},{prop:'span',type:'long'},'vAlign','width']}),u('HTMLTableRowElement',{tagName:'TR',proto:{get cells(){return this._cells||(this._cells=new t.HTMLCollection(this,t.mapper(this,function(t){return'TD'===t.nodeName||'TH'===t.nodeName},!1))),this._cells},get rowIndex(){var t=c(this,'TABLE');return t?t.rows._toArray().indexOf(this):-1},get sectionRowIndex(){return this._parentNode.rows._toArray().indexOf(this)},insertCell:function(n){var o=this._ownerDocument.createElement('TD'),s=this.cells._toArray();if(n<-1||n>s.length)throw new t.DOMException(t.INDEX_SIZE_ERR);if(-1===n||n===s.length)this.appendChild(o);else{var l=s[n];this.insertBefore(o,l)}return o},deleteCell:function(n){var o=this.cells._toArray();if(-1===n&&(n=o.length-1),n<0||n>=o.length)throw new t.DOMException(t.INDEX_SIZE_ERR);var s=this.cells[n];this.removeChild(s)}},attributes:['align','bgColor',{prop:'ch',attr:'char'},{prop:'chOff',attr:'charoff'},'vAlign']}),u('HTMLTableCellElement',{tagNames:['TH','TD'],proto:{_headers:null,set headers(t){''!==t?(t instanceof Array||(t=[t]),this._headers=t):this._headers=null},get headers(){if(this._headers)return this._headers.join(' ');for(var t=this.cellIndex,n=[],o=this._parentNode.getElementsByTagName(this.tagName),s=0;s=t);s++)n.push(o.item(s).id);return this._headers=n,n.join(' ')},get cellIndex(){return c(this,'TR').cells._toArray().indexOf(this)}},attributes:['abbr','align','axis','bgColor',{prop:'ch',attr:'char'},{prop:'chOff',attr:'charoff'},{prop:'colSpan',type:'long'},'height',{prop:'noWrap',type:'boolean'},{prop:'rowSpan',type:'long'},'scope','vAlign','width']}),u('HTMLFrameSetElement',{tagName:'FRAMESET',attributes:['cols','rows']}),u('HTMLFrameElement',{tagName:'FRAME',proto:{_contentDocument:null,get contentDocument(){return null==this._contentDocument&&(this._contentDocument=new t.HTMLDocument),this._contentDocument},get contentWindow(){return null}},attributes:['frameBorder','longDesc','marginHeight','marginWidth','name',{prop:'noResize',type:'boolean'},'scrolling',{prop:'src',type:'string',write:!1}]}),u('HTMLIFrameElement',{tagName:'IFRAME',parentClass:t.HTMLFrameElement,attributes:['align','frameBorder','height','longDesc','marginHeight','marginWidth','name','scrolling','src','width']}),e.define=u,e.dom={level2:{html:t}}},813,[809,357,358]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]).dom.level3.core,n=(r(d[1]).createFrom,{LSException:function(t){this.code=t}});n.LSException.prototype={PARSE_ERR:81,SERIALIZE_ERR:82},n.DOMImplementationLS=function(){};var o={MODE_SYNCHRONOUS:1,MODE_ASYNCHRONOUS:2,createLSParser:function(t,o){return new n.LSParser(t,o)},createLSSerializer:function(){return new n.LSSerializer},createLSInput:function(){return new n.LSInput},createLSOutput:function(){return new n.LSOutput}};Object.keys(o).forEach(function(n,u){t.DOMImplementation.prototype[n]=o[n]}),n.DOMImplementationLS.prototype=o,t.Document.getFeature=function(){return o},n.LSParser=function(){this._domConfig=new t.DOMConfiguration},n.LSParser.prototype={get domConfig(){return this._domConfig},get filter(){return this._filter||null},set filter(t){this._filter=t},get async(){return this._async},get busy(){return this._busy},parse:function(n){var o=new t.Document;return o._inputEncoding='UTF-16',o},parseURI:function(n){return new t.Document},ACTION_APPEND_AS_CHILDREN:1,ACTION_REPLACE_CHILDREN:2,ACTION_INSERT_BEFORE:3,ACTION_INSERT_AFTER:4,ACTION_REPLACE:5,parseWithContext:function(n,o,u){return new t.Node},abort:function(){}},n.LSInput=function(){},n.LSInput.prototype={get characterStream(){return this._characterStream||null},set characterStream(t){this._characterStream=t},get byteStream(){return this._byteStream||null},set byteStream(t){this._byteStream=t},get stringData(){return this._stringData||null},set stringData(t){this._stringData=t},get systemId(){return this._systemId||null},set systemId(t){this._systemId=t},get publicId(){return this._publicId||null},set publicId(t){this._publicId=t},get baseURI(){return this._baseURI||null},set baseURI(t){this._baseURI=t},get encoding(){return this._encoding||null},set encoding(t){this._encoding=t},get certifiedText(){return this._certifiedText||null},set certifiedText(t){this._certifiedText=t}},n.LSResourceResolver=function(){},n.LSResourceResolver.prototype.resolveResource=function(t,o,u,s,c){return new n.LSInput},n.LSParserFilter=function(){},n.LSParserFilter.prototype={FILTER_ACCEPT:1,FILTER_REJECT:2,FILTER_SKIP:3,FILTER_INTERRUPT:4,get whatToShow(){return this._whatToShow},startElement:function(t){return 0},acceptNode:function(t){return t}},n.LSSerializer=function(){this._domConfig=new t.DOMConfiguration},n.LSSerializer.prototype={get domConfig(){return this._domConfig},get newLine(){return this._newLine||null},set newLine(t){this._newLine=t},get filter(){return this._filter||null},set filter(t){this._filter=t},write:function(t,n){return!0},writeToURI:function(t,n){return!0},writeToString:function(t){return""}},n.LSOutput=function(){},n.LSOutput.prototype={get characterStream(){return this._characterStream||null},set characterStream(t){this._characterStream=t},get byteStream(){return this._byteStream||null},set byteStream(t){this._byteStream=t},get systemId(){return this._systemId||null},set systemId(t){this._systemId=t},get encoding(){return this._encoding||null},set encoding(t){this._encoding=t}},n.LSSerializerFilter=function(){},n.LSSerializerFilter.prototype={get whatToShow(){return this._whatToShow}},m.exports.dom={level3:{ls:n}}},814,[808,357]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]).HtmlToDom,n=r(d[1]).domToHtml,o=r(d[2]).NOT_IMPLEMENTED,p=r(d[3]).defineGetter,u=r(d[3]).defineSetter,s=null,l=e.getDefaultParser=function(){return null===s&&(s=r(d[4]).htmlparser2),s};e.setDefaultParser=function(t){'object'==typeof t?s=t:'string'==typeof t&&(s=(function(t){throw new Error("Dynamic require defined at line 29; not supported by Metro")})())},e.browserAugmentation=function(s,c){c||(c={});var f=c.parser||l();if(s._augmented&&s._parser===f)return s;s._parser=f;var h=new t(f);s.HTMLDocument||(s.HTMLDocument=s.Document),s.HTMLDocument.prototype.write||(s.HTMLDocument.prototype.write=function(t){this.innerHTML=t}),s.Element.prototype.getElementsByClassName=function(t){return new s.NodeList(this.ownerDocument||this,s.mapper(this,function(n){if(!n)return!1;n.nodeType&&n.nodeType===s.Node.ENTITY_REFERENCE_NODE&&(n=n._entity);var o=n.className;if(o)for(var p=o.split(' '),u=0;u/i,E=//i,T='';function N(t,n){var o='',p='',u='',l='HTML',c=n.match(y);if(t._doctype=null,c&&c[0])u=c[0];else{var f=n.indexOf(T),h=n.indexOf(_);if(f<0||h<0)return;if(!(c=n.substr(f,h-f+_.length).replace(/[\n\r]/g,'').match(E)))return;u=c[0];var N=(c=c[1].split(' "')).length?c.pop().replace(/"/g,''):'',D=c.length?c.pop().replace(/"/g,''):'';-1!==N.indexOf('-//')&&(o=N),-1!==D.indexOf('-//')&&(o=D),-1!==N.indexOf('://')&&(p=N),-1!==D.indexOf('://')&&(p=D),c.length&&(l=(c=c[0].split(' '))[0].toUpperCase())}t._doctype=(new s.DOMImplementation).createDocumentType(l,o,p),t._doctype._ownerDocument=t,t._doctype._fullDT=u,t._doctype.toString=function(){return this._fullDT}}return s.Document.prototype.getElementsByClassName=function(t){return new s.NodeList(this.ownerDocument||this,s.mapper(this,function(n){if(!n)return!1;n.nodeType&&n.nodeType===s.Node.ENTITY_REFERENCE_NODE&&(n=n._entity);var o=n.className;if(o)for(var p=o.split(' '),u=0;u/i.test(n),s=new t.Parser(o,{xmlMode:l,lowerCaseTags:!l,lowerCaseAttributeNames:!l});return s.includeLocation=!1,s.parseComplete(n),o.dom}),this.appendHtmlToElement=function(o,l){'string'!=typeof o&&(o+='');for(var s=t.ParseHtml(o),c=0;c0&&(9==o.nodeType?new t.Parser({document:o}).parse(n):new t.Parser({document:o.ownerDocument}).parse_fragment(n,o))}:this.appendHtmlToElement=function(){console.log(''),console.log('###########################################################'),console.log('# WARNING: No HTML parser could be found.'),console.log('# Element.innerHTML setter support has been disabled'),console.log('# Element.innerHTML getter support will still function'),console.log('# Download: http://github.com/tautologistics/node-htmlparser'),console.log('###########################################################'),console.log('')}}},816,[817]); +__d(function(g,r,i,a,m,e,d){var o={quot:'"',amp:'&',apos:'\'',lt:'<',gt:'>',nbsp:'\xa0',iexcl:'\xa1',cent:'\xa2',pound:'\xa3',curren:'\xa4',yen:'\xa5',brvbar:'\xa6',sect:'\xa7',uml:'\xa8',copy:'\xa9',ordf:'\xaa',laquo:'\xab',not:'\xac',shy:'\xad',reg:'\xae',macr:'\xaf',strns:'\xaf',deg:'\xb0',plusmn:'\xb1',pm:'\xb1',sup2:'\xb2',sup3:'\xb3',acute:'\xb4',micro:'\xb5',para:'\xb6',middot:'\xb7',cedil:'\xb8',sup1:'\xb9',ordm:'\xba',raquo:'\xbb',frac14:'\xbc',half:'\xbd',frac12:'\xbd',frac34:'\xbe',iquest:'\xbf',Agrave:'\xc0',Aacute:'\xc1',Acirc:'\xc2',Atilde:'\xc3',Auml:'\xc4',Aring:'\xc5',angst:'\xc5',AElig:'\xc6',Ccedil:'\xc7',Egrave:'\xc8',Eacute:'\xc9',Ecirc:'\xca',Euml:'\xcb',Igrave:'\xcc',Iacute:'\xcd',Icirc:'\xce',Iuml:'\xcf',ETH:'\xd0',Ntilde:'\xd1',Ograve:'\xd2',Oacute:'\xd3',Ocirc:'\xd4',Otilde:'\xd5',Ouml:'\xd6',times:'\xd7',Oslash:'\xd8',Ugrave:'\xd9',Uacute:'\xda',Ucirc:'\xdb',Uuml:'\xdc',Yacute:'\xdd',THORN:'\xde',szlig:'\xdf',agrave:'\xe0',aacute:'\xe1',acirc:'\xe2',atilde:'\xe3',auml:'\xe4',aring:'\xe5',aelig:'\xe6',ccedil:'\xe7',egrave:'\xe8',eacute:'\xe9',ecirc:'\xea',euml:'\xeb',igrave:'\xec',iacute:'\xed',icirc:'\xee',iuml:'\xef',eth:'\xf0',ntilde:'\xf1',ograve:'\xf2',oacute:'\xf3',ocirc:'\xf4',otilde:'\xf5',ouml:'\xf6',divide:'\xf7',oslash:'\xf8',ugrave:'\xf9',uacute:'\xfa',ucirc:'\xfb',uuml:'\xfc',yacute:'\xfd',thorn:'\xfe',yuml:'\xff',Amacr:'\u0100',amacr:'\u0101',Abreve:'\u0102',abreve:'\u0103',Aogon:'\u0104',aogon:'\u0105',Cacute:'\u0106',cacute:'\u0107',Ccirc:'\u0108',ccirc:'\u0109',Cdot:'\u010a',cdot:'\u010b',Ccaron:'\u010c',ccaron:'\u010d',Dcaron:'\u010e',dcaron:'\u010f',Dstrok:'\u0110',dstrok:'\u0111',Emacr:'\u0112',emacr:'\u0113',Edot:'\u0116',edot:'\u0117',Eogon:'\u0118',eogon:'\u0119',Ecaron:'\u011a',ecaron:'\u011b',Gcirc:'\u011c',gcirc:'\u011d',Gbreve:'\u011e',gbreve:'\u011f',Gdot:'\u0120',gdot:'\u0121',Gcedil:'\u0122',Hcirc:'\u0124',hcirc:'\u0125',Hstrok:'\u0126',hstrok:'\u0127',Itilde:'\u0128',itilde:'\u0129',Imacr:'\u012a',imacr:'\u012b',Iogon:'\u012e',iogon:'\u012f',Idot:'\u0130',inodot:'\u0131',IJlig:'\u0132',ijlig:'\u0133',Jcirc:'\u0134',jcirc:'\u0135',Kcedil:'\u0136',kcedil:'\u0137',kgreen:'\u0138',Lacute:'\u0139',lacute:'\u013a',Lcedil:'\u013b',lcedil:'\u013c',Lcaron:'\u013d',lcaron:'\u013e',Lmidot:'\u013f',lmidot:'\u0140',Lstrok:'\u0141',lstrok:'\u0142',Nacute:'\u0143',nacute:'\u0144',Ncedil:'\u0145',ncedil:'\u0146',Ncaron:'\u0147',ncaron:'\u0148',napos:'\u0149',ENG:'\u014a',eng:'\u014b',Omacr:'\u014c',omacr:'\u014d',Odblac:'\u0150',odblac:'\u0151',OElig:'\u0152',oelig:'\u0153',Racute:'\u0154',racute:'\u0155',Rcedil:'\u0156',rcedil:'\u0157',Rcaron:'\u0158',rcaron:'\u0159',Sacute:'\u015a',sacute:'\u015b',Scirc:'\u015c',scirc:'\u015d',Scedil:'\u015e',scedil:'\u015f',Scaron:'\u0160',scaron:'\u0161',Tcedil:'\u0162',tcedil:'\u0163',Tcaron:'\u0164',tcaron:'\u0165',Tstrok:'\u0166',tstrok:'\u0167',Utilde:'\u0168',utilde:'\u0169',Umacr:'\u016a',umacr:'\u016b',Ubreve:'\u016c',ubreve:'\u016d',Uring:'\u016e',uring:'\u016f',Udblac:'\u0170',udblac:'\u0171',Uogon:'\u0172',uogon:'\u0173',Wcirc:'\u0174',wcirc:'\u0175',Ycirc:'\u0176',ycirc:'\u0177',Yuml:'\u0178',Zacute:'\u0179',zacute:'\u017a',Zdot:'\u017b',zdot:'\u017c',Zcaron:'\u017d',zcaron:'\u017e',fnof:'\u0192',imped:'\u01b5',gacute:'\u01f5',jmath:'\u0237',circ:'\u02c6',caron:'\u02c7',breve:'\u02d8',dot:'\u02d9',ring:'\u02da',ogon:'\u02db',tilde:'\u02dc',dblac:'\u02dd',Alpha:'\u0391',Beta:'\u0392',Gamma:'\u0393',Delta:'\u0394',Epsilon:'\u0395',Zeta:'\u0396',Eta:'\u0397',Theta:'\u0398',Iota:'\u0399',Kappa:'\u039a',Lambda:'\u039b',Mu:'\u039c',Nu:'\u039d',Xi:'\u039e',Omicron:'\u039f',Pi:'\u03a0',Rho:'\u03a1',Sigma:'\u03a3',Tau:'\u03a4',Upsilon:'\u03a5',Phi:'\u03a6',Chi:'\u03a7',Psi:'\u03a8',Omega:'\u03a9',ohm:'\u03a9',alpha:'\u03b1',beta:'\u03b2',gamma:'\u03b3',delta:'\u03b4',epsilon:'\u03b5',zeta:'\u03b6',eta:'\u03b7',theta:'\u03b8',iota:'\u03b9',kappa:'\u03ba',lambda:'\u03bb',mu:'\u03bc',nu:'\u03bd',xi:'\u03be',omicron:'\u03bf',pi:'\u03c0',rho:'\u03c1',sigmaf:'\u03c2',varsigma:'\u03c2',sigma:'\u03c3',tau:'\u03c4',upsilon:'\u03c5',phi:'\u03c6',chi:'\u03c7',psi:'\u03c8',omega:'\u03c9',thetasym:'\u03d1',vartheta:'\u03d1',upsih:'\u03d2',varphi:'\u03d5',piv:'\u03d6',varpi:'\u03d6',Gammad:'\u03dc',gammad:'\u03dd',varkappa:'\u03f0',varrho:'\u03f1',varepsilon:'\u03f5',bepsi:'\u03f6',IOcy:'\u0401',DJcy:'\u0402',GJcy:'\u0403',Jukcy:'\u0404',DScy:'\u0405',Iukcy:'\u0406',YIcy:'\u0407',Jsercy:'\u0408',LJcy:'\u0409',NJcy:'\u040a',TSHcy:'\u040b',KJcy:'\u040c',Ubrcy:'\u040e',DZcy:'\u040f',Acy:'\u0410',Bcy:'\u0411',Vcy:'\u0412',Gcy:'\u0413',Dcy:'\u0414',IEcy:'\u0415',ZHcy:'\u0416',Zcy:'\u0417',Icy:'\u0418',Jcy:'\u0419',Kcy:'\u041a',Lcy:'\u041b',Mcy:'\u041c',Ncy:'\u041d',Ocy:'\u041e',Pcy:'\u041f',Rcy:'\u0420',Scy:'\u0421',Tcy:'\u0422',Ucy:'\u0423',Fcy:'\u0424',KHcy:'\u0425',TScy:'\u0426',CHcy:'\u0427',SHcy:'\u0428',SHCHcy:'\u0429',HARDcy:'\u042a',Ycy:'\u042b',SOFTcy:'\u042c',Ecy:'\u042d',YUcy:'\u042e',YAcy:'\u042f',acy:'\u0430',bcy:'\u0431',vcy:'\u0432',gcy:'\u0433',dcy:'\u0434',iecy:'\u0435',zhcy:'\u0436',zcy:'\u0437',icy:'\u0438',jcy:'\u0439',kcy:'\u043a',lcy:'\u043b',mcy:'\u043c',ncy:'\u043d',ocy:'\u043e',pcy:'\u043f',rcy:'\u0440',scy:'\u0441',tcy:'\u0442',ucy:'\u0443',fcy:'\u0444',khcy:'\u0445',tscy:'\u0446',chcy:'\u0447',shcy:'\u0448',shchcy:'\u0449',hardcy:'\u044a',ycy:'\u044b',softcy:'\u044c',ecy:'\u044d',yucy:'\u044e',yacy:'\u044f',iocy:'\u0451',djcy:'\u0452',gjcy:'\u0453',jukcy:'\u0454',dscy:'\u0455',iukcy:'\u0456',yicy:'\u0457',jsercy:'\u0458',ljcy:'\u0459',njcy:'\u045a',tshcy:'\u045b',kjcy:'\u045c',ubrcy:'\u045e',dzcy:'\u045f',ensp:'\u2002',emsp:'\u2003',emsp13:'\u2004',emsp14:'\u2005',numsp:'\u2007',puncsp:'\u2008',thinsp:'\u2009',hairsp:'\u200a',ZeroWidthSpace:'\u200b',zwnj:'\u200c',zwj:'\u200d',lrm:'\u200e',rlm:'\u200f',hyphen:'\u2010',ndash:'\u2013',mdash:'\u2014',horbar:'\u2015',Vert:'\u2016',lsquo:'\u2018',rsquo:'\u2019',rsquor:'\u2019',sbquo:'\u201a',ldquo:'\u201c',rdquo:'\u201d',rdquor:'\u201d',ldquo:'\u201c',ldquor:'\u201e',dagger:'\u2020',Dagger:'\u2021',ddagger:'\u2021',bull:'\u2022',bullet:'\u2022',nldr:'\u2025',hellip:'\u2026',mldr:'\u2026',permil:'\u2030',pertenk:'\u2031',prime:'\u2032',Prime:'\u2033',tprime:'\u2034',bprime:'\u2035',lsaquo:'\u2039',rsaquo:'\u203a',oline:'\u203e',caret:'\u2041',hybull:'\u2043',frasl:'\u2044',bsemi:'\u204f',qprime:'\u2057',MediumSpace:'\u205f',NoBreak:'\u2060',af:'\u2061',it:'\u2062',ic:'\u2063',euro:'\u20ac',complexes:'\u2102',incare:'\u2105',gscr:'\u210a',hamilt:'\u210b',Poincareplane:'\u210c',quaternions:'\u210d',planckh:'\u210e',plankv:'\u210f',imagline:'\u2110',image:'\u2111',imagpart:'\u2111',lagran:'\u2112',ell:'\u2113',naturals:'\u2115',numero:'\u2116',copysr:'\u2117',weierp:'\u2118',wp:'\u2118',primes:'\u2119',rationals:'\u211a',realine:'\u211b',real:'\u211c',realpart:'\u211c',reals:'\u211d',rx:'\u211e',trade:'\u2122',integers:'\u2124',mho:'\u2127',zeetrf:'\u2128',iiota:'\u2129',bernou:'\u212c',Cfr:'\u212d',escr:'\u212f',expectation:'\u2130',Fscr:'\u2131',phmmat:'\u2133',oscr:'\u2134',alefsym:'\u2135',aleph:'\u2135',beth:'\u2136',gimel:'\u2137',daleth:'\u2138',DD:'\u2145',dd:'\u2146',exponentiale:'\u2147',ii:'\u2148',frac13:'\u2153',frac23:'\u2154',frac15:'\u2155',frac25:'\u2156',frac35:'\u2157',frac45:'\u2158',frac16:'\u2159',frac56:'\u215a',frac18:'\u215b',frac38:'\u215c',frac58:'\u215d',frac78:'\u215e',larr:'\u2190',slarr:'\u2190',uarr:'\u2191',uparrow:'\u2191',rarr:'\u2192',srarr:'\u2192',darr:'\u2193',downarrow:'\u2193',harr:'\u2194',leftrightarrow:'\u2194',varr:'\u2195',nwarrow:'\u2196',nearrow:'\u2197',searrow:'\u2198',swarrow:'\u2199',nleftarrow:'\u219a',nrightarrow:'\u219b',rightsquigarrow:'\u219d',twoheadleftarrow:'\u219e',Uarr:'\u219f',twoheadrightarrow:'\u21a0',Darr:'\u21a1',leftarrowtail:'\u21a2',rightarrowtail:'\u21a3',mapstoleft:'\u21a4',mapstoup:'\u21a5',mapsto:'\u21a6',mapstodown:'\u21a7',larrhk:'\u21a9',rarrhk:'\u21aa',looparrowleft:'\u21ab',rarrlp:'\u21ac',leftrightsquigarrow:'\u21ad',nleftrightarrow:'\u21ae',lsh:'\u21b0',rsh:'\u21b1',ldsh:'\u21b2',rdsh:'\u21b3',crarr:'\u21b5',curvearrowleft:'\u21b6',curvearrowright:'\u21b7',olarr:'\u21ba',orarr:'\u21bb',lharu:'\u21bc',lhard:'\u21bd',upharpoonright:'\u21be',upharpoonleft:'\u21bf',rightharpoonup:'\u21c0',rightharpoondown:'\u21c1',downharpoonright:'\u21c2',downharpoonleft:'\u21c3',rlarr:'\u21c4',udarr:'\u21c5',lrarr:'\u21c6',llarr:'\u21c7',uuarr:'\u21c8',rrarr:'\u21c9',downdownarrows:'\u21ca',lrhar:'\u21cb',rlhar:'\u21cc',nlArr:'\u21cd',nhArr:'\u21ce',nrArr:'\u21cf',lArr:'\u21d0',uArr:'\u21d1',rArr:'\u21d2',dArr:'\u21d3',hArr:'\u21d4',iff:'\u21d4',vArr:'\u21d5',nwArr:'\u21d6',neArr:'\u21d7',seArr:'\u21d8',swArr:'\u21d9',lAarr:'\u21da',rAarr:'\u21db',zigrarr:'\u21dd',larrb:'\u21e4',rarrb:'\u21e5',duarr:'\u21f5',loarr:'\u21fd',roarr:'\u21fe',hoarr:'\u21ff',forall:'\u2200',complement:'\u2201',part:'\u2202',exist:'\u2203',nexists:'\u2204',empty:'\u2205',varnothing:'\u2205',nabla:'\u2207',isin:'\u2208',isinv:'\u2208',notin:'\u2209',notinva:'\u2209',ni:'\u220b',niv:'\u220b',notniva:'\u220c',prod:'\u220f',coprod:'\u2210',sum:'\u2211',minus:'\u2212',mp:'\u2213',plusdo:'\u2214',ssetmn:'\u2216',lowast:'\u2217',compfn:'\u2218',radic:'\u221a',prop:'\u221d',vprop:'\u221d',infin:'\u221e',angrt:'\u221f',ang:'\u2220',angle:'\u2220',measuredangle:'\u2221',angsph:'\u2222',smid:'\u2223',nsmid:'\u2224',spar:'\u2225',nspar:'\u2226',and:'\u2227',wedge:'\u2227',or:'\u2228',vee:'\u2228',cap:'\u2229',cup:'\u222a',int:'\u222b',Int:'\u222c',tint:'\u222d',oint:'\u222e',DoubleContourIntegral:'\u222f',Cconint:'\u2230',cwint:'\u2231',cwconint:'\u2232',awconint:'\u2233',there4:'\u2234',therefore:'\u2234',because:'\u2235',ratio:'\u2236',Proportion:'\u2237',minusd:'\u2238',mDDot:'\u223a',homtht:'\u223b',sim:'\u223c',thksim:'\u223c',bsim:'\u223d',mstpos:'\u223e',acd:'\u223f',wreath:'\u2240',nsim:'\u2241',esim:'\u2242',simeq:'\u2243',nsimeq:'\u2244',cong:'\u2245',simne:'\u2246',ncong:'\u2247',asymp:'\u2248',thkap:'\u2248',napprox:'\u2249',approxeq:'\u224a',apid:'\u224b',bcong:'\u224c',asympeq:'\u224d',bump:'\u224e',bumpeq:'\u224f',esdot:'\u2250',eDot:'\u2251',fallingdotseq:'\u2252',risingdotseq:'\u2253',coloneq:'\u2254',eqcolon:'\u2255',eqcirc:'\u2256',cire:'\u2257',wedgeq:'\u2259',veeeq:'\u225a',trie:'\u225c',questeq:'\u225f',ne:'\u2260',equiv:'\u2261',nequiv:'\u2262',le:'\u2264',leq:'\u2264',ge:'\u2265',geq:'\u2265',leqq:'\u2266',geqq:'\u2267',lneqq:'\u2268',gneqq:'\u2269',ll:'\u226a',gg:'\u226b',twixt:'\u226c',NotCupCap:'\u226d',nlt:'\u226e',ngtr:'\u226f',nleq:'\u2270',ngeq:'\u2271',lsim:'\u2272',gtrsim:'\u2273',nlsim:'\u2274',ngsim:'\u2275',lg:'\u2276',gtrless:'\u2277',ntlg:'\u2278',ntgl:'\u2279',prec:'\u227a',succ:'\u227b',preccurlyeq:'\u227c',succcurlyeq:'\u227d',prsim:'\u227e',succsim:'\u227f',nprec:'\u2280',nsucc:'\u2281',sub:'\u2282',subset:'\u2282',sup:'\u2283',supset:'\u2283',nsub:'\u2284',nsup:'\u2285',sube:'\u2286',subseteq:'\u2286',supe:'\u2287',supseteq:'\u2287',nsubseteq:'\u2288',nsupseteq:'\u2289',subsetneq:'\u228a',supsetneq:'\u228b',cupdot:'\u228d',uplus:'\u228e',sqsubset:'\u228f',sqsupset:'\u2290',sqsubseteq:'\u2291',sqsupseteq:'\u2292',sqcap:'\u2293',sqcup:'\u2294',oplus:'\u2295',ominus:'\u2296',otimes:'\u2297',osol:'\u2298',odot:'\u2299',ocir:'\u229a',oast:'\u229b',odash:'\u229d',plusb:'\u229e',minusb:'\u229f',timesb:'\u22a0',sdotb:'\u22a1',vdash:'\u22a2',dashv:'\u22a3',top:'\u22a4',perp:'\u22a5',models:'\u22a7',vDash:'\u22a8',Vdash:'\u22a9',Vvdash:'\u22aa',VDash:'\u22ab',nvdash:'\u22ac',nvDash:'\u22ad',nVdash:'\u22ae',nVDash:'\u22af',prurel:'\u22b0',vltri:'\u22b2',vrtri:'\u22b3',trianglelefteq:'\u22b4',trianglerighteq:'\u22b5',origof:'\u22b6',imof:'\u22b7',mumap:'\u22b8',hercon:'\u22b9',intercal:'\u22ba',veebar:'\u22bb',barvee:'\u22bd',angrtvb:'\u22be',lrtri:'\u22bf',xwedge:'\u22c0',xvee:'\u22c1',xcap:'\u22c2',xcup:'\u22c3',diamond:'\u22c4',sdot:'\u22c5',sstarf:'\u22c6',divonx:'\u22c7',bowtie:'\u22c8',ltimes:'\u22c9',rtimes:'\u22ca',lthree:'\u22cb',rthree:'\u22cc',bsime:'\u22cd',cuvee:'\u22ce',cuwed:'\u22cf',Subset:'\u22d0',Supset:'\u22d1',Cap:'\u22d2',Cup:'\u22d3',pitchfork:'\u22d4',epar:'\u22d5',ltdot:'\u22d6',gtrdot:'\u22d7',Ll:'\u22d8',ggg:'\u22d9',lesseqgtr:'\u22da',gtreqless:'\u22db',curlyeqprec:'\u22de',curlyeqsucc:'\u22df',nprcue:'\u22e0',nsccue:'\u22e1',nsqsube:'\u22e2',nsqsupe:'\u22e3',lnsim:'\u22e6',gnsim:'\u22e7',prnsim:'\u22e8',succnsim:'\u22e9',ntriangleleft:'\u22ea',ntriangleright:'\u22eb',ntrianglelefteq:'\u22ec',ntrianglerighteq:'\u22ed',vellip:'\u22ee',ctdot:'\u22ef',utdot:'\u22f0',dtdot:'\u22f1',disin:'\u22f2',isinsv:'\u22f3',isins:'\u22f4',isindot:'\u22f5',notinvc:'\u22f6',notinvb:'\u22f7',isinE:'\u22f9',nisd:'\u22fa',xnis:'\u22fb',nis:'\u22fc',notnivc:'\u22fd',notnivb:'\u22fe',barwedge:'\u2305',doublebarwedge:'\u2306',lceil:'\u2308',rceil:'\u2309',lfloor:'\u230a',rfloor:'\u230b',drcrop:'\u230c',dlcrop:'\u230d',urcrop:'\u230e',ulcrop:'\u230f',bnot:'\u2310',profline:'\u2312',profsurf:'\u2313',telrec:'\u2315',target:'\u2316',ulcorner:'\u231c',urcorner:'\u231d',llcorner:'\u231e',lrcorner:'\u231f',sfrown:'\u2322',ssmile:'\u2323',lang:'\u2329',rang:'\u232a',cylcty:'\u232d',profalar:'\u232e',topbot:'\u2336',ovbar:'\u233d',solbar:'\u233f',angzarr:'\u237c',lmoustache:'\u23b0',rmoustache:'\u23b1',tbrk:'\u23b4',bbrk:'\u23b5',bbrktbrk:'\u23b6',OverParenthesis:'\u23dc',UnderParenthesis:'\u23dd',OverBrace:'\u23de',UnderBrace:'\u23df',trpezium:'\u23e2',elinters:'\u23e7',blank:'\u2423',oS:'\u24c8',boxh:'\u2500',boxv:'\u2502',boxdr:'\u250c',boxdl:'\u2510',boxur:'\u2514',boxul:'\u2518',boxvr:'\u251c',boxvl:'\u2524',boxhd:'\u252c',boxhu:'\u2534',boxvh:'\u253c',boxH:'\u2550',boxV:'\u2551',boxdR:'\u2552',boxDr:'\u2553',boxDR:'\u2554',boxdL:'\u2555',boxDl:'\u2556',boxDL:'\u2557',boxuR:'\u2558',boxUr:'\u2559',boxUR:'\u255a',boxuL:'\u255b',boxUl:'\u255c',boxUL:'\u255d',boxvR:'\u255e',boxVr:'\u255f',boxVR:'\u2560',boxvL:'\u2561',boxVl:'\u2562',boxVL:'\u2563',boxHd:'\u2564',boxhD:'\u2565',boxHD:'\u2566',boxHu:'\u2567',boxhU:'\u2568',boxHU:'\u2569',boxvH:'\u256a',boxVh:'\u256b',boxVH:'\u256c',uhblk:'\u2580',lhblk:'\u2584',block:'\u2588',blk14:'\u2591',blk12:'\u2592',blk34:'\u2593',square:'\u25a1',squf:'\u25aa',EmptyVerySmallSquare:'\u25ab',rect:'\u25ad',marker:'\u25ae',fltns:'\u25b1',xutri:'\u25b3',utrif:'\u25b4',utri:'\u25b5',rtrif:'\u25b8',triangleright:'\u25b9',xdtri:'\u25bd',dtrif:'\u25be',triangledown:'\u25bf',ltrif:'\u25c2',triangleleft:'\u25c3',loz:'\u25ca',lozenge:'\u25ca',cir:'\u25cb',tridot:'\u25ec',xcirc:'\u25ef',ultri:'\u25f8',urtri:'\u25f9',lltri:'\u25fa',EmptySmallSquare:'\u25fb',FilledSmallSquare:'\u25fc',starf:'\u2605',star:'\u2606',phone:'\u260e',female:'\u2640',male:'\u2642',spades:'\u2660',spadesuit:'\u2660',clubs:'\u2663',clubsuit:'\u2663',hearts:'\u2665',heartsuit:'\u2665',diams:'\u2666',sung:'\u266a',flat:'\u266d',natural:'\u266e',sharp:'\u266f',checkmark:'\u2713',cross:'\u2717',maltese:'\u2720',sext:'\u2736',VerticalSeparator:'\u2758',lbbrk:'\u2772',rbbrk:'\u2773',bsolhsub:'\u27c8',suphsol:'\u27c9',lobrk:'\u27e6',robrk:'\u27e7',langle:'\u27e8',rangle:'\u27e9',Lang:'\u27ea',Rang:'\u27eb',loang:'\u27ec',roang:'\u27ed',xlarr:'\u27f5',xrarr:'\u27f6',xharr:'\u27f7',xlArr:'\u27f8',xrArr:'\u27f9',xhArr:'\u27fa',xmap:'\u27fc',dzigrarr:'\u27ff',nvlArr:'\u2902',nvrArr:'\u2903',nvHarr:'\u2904',Map:'\u2905',lbarr:'\u290c',rbarr:'\u290d',lBarr:'\u290e',rBarr:'\u290f',drbkarow:'\u2910',DDotrahd:'\u2911',UpArrowBar:'\u2912',DownArrowBar:'\u2913',Rarrtl:'\u2916',latail:'\u2919',ratail:'\u291a',lAtail:'\u291b',rAtail:'\u291c',larrfs:'\u291d',rarrfs:'\u291e',larrbfs:'\u291f',rarrbfs:'\u2920',nwarhk:'\u2923',nearhk:'\u2924',searhk:'\u2925',swarhk:'\u2926',nwnear:'\u2927',toea:'\u2928',tosa:'\u2929',swnwar:'\u292a',rarrc:'\u2933',cudarrr:'\u2935',ldca:'\u2936',rdca:'\u2937',cudarrl:'\u2938',larrpl:'\u2939',curarrm:'\u293c',cularrp:'\u293d',rarrpl:'\u2945',harrcir:'\u2948',Uarrocir:'\u2949',lurdshar:'\u294a',ldrushar:'\u294b',LeftRightVector:'\u294e',RightUpDownVector:'\u294f',DownLeftRightVector:'\u2950',LeftUpDownVector:'\u2951',LeftVectorBar:'\u2952',RightVectorBar:'\u2953',RightUpVectorBar:'\u2954',RightDownVectorBar:'\u2955',DownLeftVectorBar:'\u2956',DownRightVectorBar:'\u2957',LeftUpVectorBar:'\u2958',LeftDownVectorBar:'\u2959',LeftTeeVector:'\u295a',RightTeeVector:'\u295b',RightUpTeeVector:'\u295c',RightDownTeeVector:'\u295d',DownLeftTeeVector:'\u295e',DownRightTeeVector:'\u295f',LeftUpTeeVector:'\u2960',LeftDownTeeVector:'\u2961',lHar:'\u2962',uHar:'\u2963',rHar:'\u2964',dHar:'\u2965',luruhar:'\u2966',ldrdhar:'\u2967',ruluhar:'\u2968',rdldhar:'\u2969',lharul:'\u296a',llhard:'\u296b',rharul:'\u296c',lrhard:'\u296d',udhar:'\u296e',duhar:'\u296f',RoundImplies:'\u2970',erarr:'\u2971',simrarr:'\u2972',larrsim:'\u2973',rarrsim:'\u2974',rarrap:'\u2975',ltlarr:'\u2976',gtrarr:'\u2978',subrarr:'\u2979',suplarr:'\u297b',lfisht:'\u297c',rfisht:'\u297d',ufisht:'\u297e',dfisht:'\u297f',lopar:'\u2985',ropar:'\u2986',lbrke:'\u298b',rbrke:'\u298c',lbrkslu:'\u298d',rbrksld:'\u298e',lbrksld:'\u298f',rbrkslu:'\u2990',langd:'\u2991',rangd:'\u2992',lparlt:'\u2993',rpargt:'\u2994',gtlPar:'\u2995',ltrPar:'\u2996',vzigzag:'\u299a',vangrt:'\u299c',angrtvbd:'\u299d',ange:'\u29a4',range:'\u29a5',dwangle:'\u29a6',uwangle:'\u29a7',angmsdaa:'\u29a8',angmsdab:'\u29a9',angmsdac:'\u29aa',angmsdad:'\u29ab',angmsdae:'\u29ac',angmsdaf:'\u29ad',angmsdag:'\u29ae',angmsdah:'\u29af',bemptyv:'\u29b0',demptyv:'\u29b1',cemptyv:'\u29b2',raemptyv:'\u29b3',laemptyv:'\u29b4',ohbar:'\u29b5',omid:'\u29b6',opar:'\u29b7',operp:'\u29b9',olcross:'\u29bb',odsold:'\u29bc',olcir:'\u29be',ofcir:'\u29bf',olt:'\u29c0',ogt:'\u29c1',cirscir:'\u29c2',cirE:'\u29c3',solb:'\u29c4',bsolb:'\u29c5',boxbox:'\u29c9',trisb:'\u29cd',rtriltri:'\u29ce',LeftTriangleBar:'\u29cf',RightTriangleBar:'\u29d0',iinfin:'\u29dc',infintie:'\u29dd',nvinfin:'\u29de',eparsl:'\u29e3',smeparsl:'\u29e4',eqvparsl:'\u29e5',lozf:'\u29eb',RuleDelayed:'\u29f4',dsol:'\u29f6',xodot:'\u2a00',xoplus:'\u2a01',xotime:'\u2a02',xuplus:'\u2a04',xsqcup:'\u2a06',qint:'\u2a0c',fpartint:'\u2a0d',cirfnint:'\u2a10',awint:'\u2a11',rppolint:'\u2a12',scpolint:'\u2a13',npolint:'\u2a14',pointint:'\u2a15',quatint:'\u2a16',intlarhk:'\u2a17',pluscir:'\u2a22',plusacir:'\u2a23',simplus:'\u2a24',plusdu:'\u2a25',plussim:'\u2a26',plustwo:'\u2a27',mcomma:'\u2a29',minusdu:'\u2a2a',loplus:'\u2a2d',roplus:'\u2a2e',Cross:'\u2a2f',timesd:'\u2a30',timesbar:'\u2a31',smashp:'\u2a33',lotimes:'\u2a34',rotimes:'\u2a35',otimesas:'\u2a36',Otimes:'\u2a37',odiv:'\u2a38',triplus:'\u2a39',triminus:'\u2a3a',tritime:'\u2a3b',iprod:'\u2a3c',amalg:'\u2a3f',capdot:'\u2a40',ncup:'\u2a42',ncap:'\u2a43',capand:'\u2a44',cupor:'\u2a45',cupcap:'\u2a46',capcup:'\u2a47',cupbrcap:'\u2a48',capbrcup:'\u2a49',cupcup:'\u2a4a',capcap:'\u2a4b',ccups:'\u2a4c',ccaps:'\u2a4d',ccupssm:'\u2a50',And:'\u2a53',Or:'\u2a54',andand:'\u2a55',oror:'\u2a56',orslope:'\u2a57',andslope:'\u2a58',andv:'\u2a5a',orv:'\u2a5b',andd:'\u2a5c',ord:'\u2a5d',wedbar:'\u2a5f',sdote:'\u2a66',simdot:'\u2a6a',congdot:'\u2a6d',easter:'\u2a6e',apacir:'\u2a6f',apE:'\u2a70',eplus:'\u2a71',pluse:'\u2a72',Esim:'\u2a73',Colone:'\u2a74',Equal:'\u2a75',eDDot:'\u2a77',equivDD:'\u2a78',ltcir:'\u2a79',gtcir:'\u2a7a',ltquest:'\u2a7b',gtquest:'\u2a7c',les:'\u2a7d',ges:'\u2a7e',lesdot:'\u2a7f',gesdot:'\u2a80',lesdoto:'\u2a81',gesdoto:'\u2a82',lesdotor:'\u2a83',gesdotol:'\u2a84',lessapprox:'\u2a85',gtrapprox:'\u2a86',lneq:'\u2a87',gneq:'\u2a88',lnapprox:'\u2a89',gnapprox:'\u2a8a',lesseqqgtr:'\u2a8b',gtreqqless:'\u2a8c',lsime:'\u2a8d',gsime:'\u2a8e',lsimg:'\u2a8f',gsiml:'\u2a90',lgE:'\u2a91',glE:'\u2a92',lesges:'\u2a93',gesles:'\u2a94',eqslantless:'\u2a95',eqslantgtr:'\u2a96',elsdot:'\u2a97',egsdot:'\u2a98',el:'\u2a99',eg:'\u2a9a',siml:'\u2a9d',simg:'\u2a9e',simlE:'\u2a9f',simgE:'\u2aa0',LessLess:'\u2aa1',GreaterGreater:'\u2aa2',glj:'\u2aa4',gla:'\u2aa5',ltcc:'\u2aa6',gtcc:'\u2aa7',lescc:'\u2aa8',gescc:'\u2aa9',smt:'\u2aaa',lat:'\u2aab',smte:'\u2aac',late:'\u2aad',bumpE:'\u2aae',preceq:'\u2aaf',succeq:'\u2ab0',prE:'\u2ab3',scE:'\u2ab4',prnE:'\u2ab5',succneqq:'\u2ab6',precapprox:'\u2ab7',succapprox:'\u2ab8',prnap:'\u2ab9',succnapprox:'\u2aba',Pr:'\u2abb',Sc:'\u2abc',subdot:'\u2abd',supdot:'\u2abe',subplus:'\u2abf',supplus:'\u2ac0',submult:'\u2ac1',supmult:'\u2ac2',subedot:'\u2ac3',supedot:'\u2ac4',subseteqq:'\u2ac5',supseteqq:'\u2ac6',subsim:'\u2ac7',supsim:'\u2ac8',subsetneqq:'\u2acb',supsetneqq:'\u2acc',csub:'\u2acf',csup:'\u2ad0',csube:'\u2ad1',csupe:'\u2ad2',subsup:'\u2ad3',supsub:'\u2ad4',subsub:'\u2ad5',supsup:'\u2ad6',suphsub:'\u2ad7',supdsub:'\u2ad8',forkv:'\u2ad9',topfork:'\u2ada',mlcp:'\u2adb',DoubleLeftTee:'\u2ae4',Vdashl:'\u2ae6',Barv:'\u2ae7',vBar:'\u2ae8',vBarv:'\u2ae9',Vbar:'\u2aeb',Not:'\u2aec',bNot:'\u2aed',rnmid:'\u2aee',cirmid:'\u2aef',midcir:'\u2af0',topcir:'\u2af1',nhpar:'\u2af2',parsim:'\u2af3',parsl:'\u2afd',fflig:'\ufb00',filig:'\ufb01',fllig:'\ufb02',ffilig:'\ufb03',ffllig:'\ufb04',Ascr:'\ud49c',Cscr:'\ud49e',Dscr:'\ud49f',Gscr:'\ud4a2',Jscr:'\ud4a5',Kscr:'\ud4a6',Nscr:'\ud4a9',Oscr:'\ud4aa',Pscr:'\ud4ab',Qscr:'\ud4ac',Sscr:'\ud4ae',Tscr:'\ud4af',Uscr:'\ud4b0',Vscr:'\ud4b1',Wscr:'\ud4b2',Xscr:'\ud4b3',Yscr:'\ud4b4',Zscr:'\ud4b5',ascr:'\ud4b6',bscr:'\ud4b7',cscr:'\ud4b8',dscr:'\ud4b9',fscr:'\ud4bb',hscr:'\ud4bd',iscr:'\ud4be',jscr:'\ud4bf',kscr:'\ud4c0',lscr:'\ud4c1',mscr:'\ud4c2',nscr:'\ud4c3',pscr:'\ud4c5',qscr:'\ud4c6',rscr:'\ud4c7',sscr:'\ud4c8',tscr:'\ud4c9',uscr:'\ud4ca',vscr:'\ud4cb',wscr:'\ud4cc',xscr:'\ud4cd',yscr:'\ud4ce',zscr:'\ud4cf',Afr:'\ud504',Bfr:'\ud505',Dfr:'\ud507',Efr:'\ud508',Ffr:'\ud509',Gfr:'\ud50a',Jfr:'\ud50d',Kfr:'\ud50e',Lfr:'\ud50f',Mfr:'\ud510',Nfr:'\ud511',Ofr:'\ud512',Pfr:'\ud513',Qfr:'\ud514',Sfr:'\ud516',Tfr:'\ud517',Ufr:'\ud518',Vfr:'\ud519',Wfr:'\ud51a',Xfr:'\ud51b',Yfr:'\ud51c',afr:'\ud51e',bfr:'\ud51f',cfr:'\ud520',dfr:'\ud521',efr:'\ud522',ffr:'\ud523',gfr:'\ud524',hfr:'\ud525',ifr:'\ud526',jfr:'\ud527',kfr:'\ud528',lfr:'\ud529',mfr:'\ud52a',nfr:'\ud52b',ofr:'\ud52c',pfr:'\ud52d',qfr:'\ud52e',rfr:'\ud52f',sfr:'\ud530',tfr:'\ud531',ufr:'\ud532',vfr:'\ud533',wfr:'\ud534',xfr:'\ud535',yfr:'\ud536',zfr:'\ud537',Aopf:'\ud538',Bopf:'\ud539',Dopf:'\ud53b',Eopf:'\ud53c',Fopf:'\ud53d',Gopf:'\ud53e',Iopf:'\ud540',Jopf:'\ud541',Kopf:'\ud542',Lopf:'\ud543',Mopf:'\ud544',Oopf:'\ud546',Sopf:'\ud54a',Topf:'\ud54b',Uopf:'\ud54c',Vopf:'\ud54d',Wopf:'\ud54e',Xopf:'\ud54f',Yopf:'\ud550',aopf:'\ud552',bopf:'\ud553',copf:'\ud554',dopf:'\ud555',eopf:'\ud556',fopf:'\ud557',gopf:'\ud558',hopf:'\ud559',iopf:'\ud55a',jopf:'\ud55b',kopf:'\ud55c',lopf:'\ud55d',mopf:'\ud55e',nopf:'\ud55f',oopf:'\ud560',popf:'\ud561',qopf:'\ud562',ropf:'\ud563',sopf:'\ud564',topf:'\ud565',uopf:'\ud566',vopf:'\ud567',wopf:'\ud568',xopf:'\ud569',yopf:'\ud56a',zopf:'\ud56b'},c={'&':'&','"':'"','<':'<','>':'>','\xa0':' '},s=/&(?:#([0-9]+)|#x([0-9a-f]+)|([a-z0-9]+));/gi,t=/["&<>\xA0]/g,l=/[&<>\xA0]/g;function n(o){var s=c[o];return s||o}e.HTMLDecode=function(c){return c?c.replace(s,function(c,s,t,l){return s?String.fromCharCode(parseInt(s,10)):t?String.fromCharCode(parseInt(t,16)):o[l]||c}):''},e.HTMLEncode=function(o,c){return o?o.replace?c?o.replace(t,n):o.replace(l,n):o:''}},817,[]); +__d(function(g,r,i,a,m,e,d){var t={area:1,base:1,basefont:1,br:1,col:1,frame:1,hr:1,img:1,input:1,isindex:1,link:1,meta:1,param:1,embed:1},n=r(d[0]).HTMLEncode;e.stringifyElement=function(o){var s,l=o.tagName.toLowerCase(),u={start:'<'+l,end:''},E=[],c=null;if(o.attributes.length)for(u.start+=' ',s=0;s'),u};var o=/SCRIPT|STYLE/i;function s(t){if(t.ownerDocument&&t.ownerDocument._fullDT)return t.ownerDocument._fullDT;var n='-1?n+='\''+t.systemId+'\'':n+='"'+t.systemId+'"'),n+='>'}e.makeHtmlGenerator=function(t,l){return t=t||'',l=l||'',function u(E,c,T){var _,f,N='';if(T=T||'',E){E.nodeType&&E.nodeType===E.ENTITY_REFERENCE_NODE&&(E=E._entity);var D=c||o.test(E.nodeName);switch(E.nodeType){case E.ELEMENT_NODE:N+=T+(_=e.stringifyElement(E)).start;var h=E._childNodes.length;if(h>0){for(E._childNodes[0].nodeType!==E.TEXT_NODE&&(N+=l),f=0;f0;)s=t.removeChild(t.firstChild),this.insertBefore(s,n);else{if(t===n)return t;if(t._parentNode&&t._parentNode.removeChild(t),null===n)var p=this._childNodes.length;else if(-1===(p=this._indexOf(n)))throw new l.DOMException(E);Array.prototype.splice.call(this._childNodes,p,0,t),t._parentNode=this,this._attached&&t._attach&&t._attach(),this._modified()}return t},h.prototype.matches=h.prototype.matchesSelector,h.prototype.closest=function(t){for(var n=this;n;){if(n.matches(t))return n;n=n.parentElement}return null},Object.defineProperties(s.prototype,{parentElement:{get:function(){var t=this.parentNode;return t&&t.nodeType===s.ELEMENT_NODE?t:null}},previousElementSibling:{get:function(){if(N(this)){for(var t=this.previousSibling;t&&t.nodeType!==s.ELEMENT_NODE;)t=t.previousSibling;return t}}},nextElementSibling:{get:function(){if(N(this)){for(var t=this.nextSibling;t&&t.nodeType!==s.ELEMENT_NODE;)t=t.nextSibling;return t}}}})},822,[2,356,810]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getTranslation=void 0;var n={ar:r(d[0]),bg:r(d[1]),bo:r(d[2]),ca:r(d[3]),cs:r(d[4]),cy:r(d[5]),da:r(d[6]),de:r(d[7]),"en-au":r(d[8]),"en-ca":r(d[9]),"en-gb":r(d[10]),"en-nz":r(d[11]),"en-za":r(d[12]),el:r(d[13]),es:r(d[14]),"es-ar":r(d[15]),"es-cl":r(d[16]),"es-cr":r(d[17]),fa:r(d[18]),fr:r(d[19]),gl:r(d[20]),he:r(d[21]),hr:r(d[22]),hu:r(d[23]),id:r(d[24]),is:r(d[25]),it:r(d[26]),ja:r(d[27]),ka:r(d[28]),ko:r(d[29]),nb:r(d[30]),nl:r(d[31]),"nl-be":r(d[32]),pl:r(d[33]),pt:r(d[34]),"pt-br":r(d[35]),ro:r(d[36]),ru:r(d[37]),sk:r(d[38]),sq:r(d[39]),sr:r(d[40]),sv:r(d[41]),th:r(d[42]),tr:r(d[43]),uk:r(d[44]),ur:r(d[45]),vi:r(d[46]),"zh-cn":r(d[47]),"zh-tw":r(d[48])};e.getTranslation=function(t){return n[t]}},823,[824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":["\u0643\u0628\u064a\u0631 \u062c\u062f\u064b\u0627"],"Block breadcrumb":["\u0645\u0633\u0627\u0631\u0627\u062a \u0627\u0644\u062a\u0646\u0642\u0651\u0644 \u0644\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Site Title":["\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0645\u0648\u0642\u0639"],"Open Colors Selector":["\u0641\u062a\u062d \u0645\u064f\u062d\u062f\u0651\u062f \u0627\u0644\u0623\u0644\u0648\u0627\u0646"],"Overlay Gradient":["\u062a\u062f\u0631\u062c \u0627\u0644\u063a\u0637\u0627\u0621"],"Templates list":["\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0642\u0648\u0627\u0644\u0628"],"Templates list navigation":["\u062a\u0635\u0641\u0651\u062d \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0642\u0648\u0627\u0644\u0628"],"Filter templates list":["\u062a\u0635\u0651\u0641\u064a\u0629 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0642\u0648\u0627\u0644\u0628"],"Uploaded to this template":["\u0627\u0644\u0645\u0631\u0641\u0648\u0639\u0629 \u0625\u0644\u0649 \u0647\u0630\u0627 \u0627\u0644\u0642\u0627\u0644\u0628"],"Insert into template":["\u0625\u062f\u0631\u0627\u062c \u0641\u064a \u0627\u0644\u0642\u0627\u0644\u0628"],"Template archives":["\u0623\u0631\u0634\u064a\u0641 \u0627\u0644\u0642\u0627\u0644\u0628"],"No templates found in Trash.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0642\u0648\u0627\u0644\u0628 \u0641\u064a \u0633\u0644\u0629 \u0627\u0644\u0645\u064f\u0647\u0645\u0644\u0627\u062a."],"No templates found.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0642\u0648\u0627\u0644\u0628."],"Parent Template:":["\u0627\u0644\u0642\u0627\u0644\u0628 \u0627\u0644\u0623\u0628:"],"Search Templates":["\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u0642\u0648\u0627\u0644\u0628"],"All Templates":["\u062c\u0645\u064a\u0639 \u0627\u0644\u0642\u0648\u0627\u0644\u0628"],"View Template":["\u0639\u0631\u0636 \u0627\u0644\u0642\u0627\u0644\u0628"],"Edit Template":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0642\u0627\u0644\u0628"],"New Template":["\u0642\u0627\u0644\u0628 \u062c\u062f\u064a\u062f"],"Add New Template":["\u0625\u0636\u0627\u0641\u0629 \u0642\u0627\u0644\u0628 \u062c\u062f\u064a\u062f"],"Template\x04Add New":["\u0623\u0636\u0641 \u062c\u062f\u064a\u062f\u0627\u064b"],"Admin Menu text\x04Templates":["\u0627\u0644\u0642\u0648\u0627\u0644\u0628"],Template:["\u0627\u0644\u0642\u0627\u0644\u0628"],"No matching template found":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0642\u0648\u0627\u0644\u0628 \u0645\u062a\u0637\u0627\u0628\u0642\u0629"],"Gradient: %s":["\u0627\u0644\u062a\u062f\u0631\u062c: %s"],"Gradient code: %s":["\u0631\u0645\u0632 \u0627\u0644\u062a\u062f\u0631\u062c: %s"],"All content copied.":["\u062a\u0645 \u0646\u0633\u062e \u0643\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u0649."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["\u0641\u0634\u0644 \u0631\u0641\u0639 \u0627\u0644\u0648\u0633\u0627\u0626\u0637. \u0625\u0630\u0627 \u0643\u0627\u0646\u062a \u0647\u0630\u0647 \u0635\u0648\u0631\u0629 \u0623\u0648 \u0644\u0642\u0637\u0629 \u0643\u0628\u064a\u0631\u0629\u060c \u0641\u064a\u0631\u062c\u0649 \u0625\u0639\u0627\u062f\u0629 \u062a\u0635\u063a\u064a\u0631\u0647\u0627 \u0648\u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649."],Gradient:["\u0627\u0644\u062a\u062f\u0631\u062c"],"Gradient Presets":["\u0645\u0633\u0628\u0642\u0629 \u0627\u0644\u062a\u062f\u0631\u0651\u062c"],"No Preview Available.":["\u0644\u0627 \u062a\u062a\u0648\u0641\u0631 \u0645\u0639\u0627\u064a\u0646\u0629."],Midnight:["\u0645\u0646\u062a\u0635\u0641 \u0627\u0644\u0644\u064a\u0644"],"Electric grass":["\u0623\u062e\u0636\u0631 \u0645\u0634\u0639"],"Pale ocean":["\u0645\u062d\u064a\u0637 \u0634\u0627\u062d\u0628"],"Luminous dusk":["\u0628\u0631\u062a\u0642\u0627\u0644\u064a \u0645\u0636\u064a\u0621"],"Blush bordeaux":["\u0648\u0631\u062f\u064a \u0646\u0628\u064a\u0630\u064a"],"Blush light purple":["\u0628\u0646\u0641\u0633\u062c\u064a \u0645\u062a\u0648\u0631\u062f"],"Cool to warm spectrum":["\u0628\u0627\u0631\u062f \u0625\u0644\u0649 \u0637\u064a\u0641 \u062f\u0627\u0641\u0626"],"Very light gray to cyan bluish gray":["\u0631\u0645\u0627\u062f\u064a \u0641\u0627\u062a\u062d \u062c\u062f\u0627\u064b \u0625\u0644\u0649 \u0623\u0632\u0631\u0642 \u0633\u0645\u0627\u0648\u064a \u0631\u0645\u0627\u062f\u064a"],"Luminous vivid orange to vivid red":["\u0628\u0631\u062a\u0642\u0627\u0644\u064a \u0641\u0627\u0642\u0639 \u0625\u0644\u0649 \u0623\u062d\u0645\u0631 \u0641\u0627\u0642\u0639"],"Luminous vivid amber to luminous vivid orange":["\u0628\u0631\u062a\u0642\u0627\u0644\u064a \u0646\u0627\u0631\u064a \u0625\u0644\u0649 \u0628\u0631\u062a\u0642\u0627\u0644\u064a \u0641\u0627\u0642\u0639"],"Light green cyan to vivid green cyan":["\u0623\u062e\u0636\u0631 \u0633\u0645\u0627\u0648\u064a \u0641\u0627\u062a\u062d \u0625\u0644\u0649 \u0623\u062e\u0636\u0631 \u0633\u0645\u0627\u0648\u064a \u062d\u064a\u0648\u064a"],"Vivid cyan blue to vivid purple":["\u0623\u0632\u0631\u0642 \u0633\u0645\u0627\u0648\u064a \u062d\u064a\u0648\u064a \u0625\u0644\u0649 \u0628\u0646\u0641\u0633\u062c\u064a \u0633\u0627\u0637\u0639"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 \u062f\u064a\u0633\u0645\u0628\u0631\u060c 2018"],"February 21, 2019":["21 \u0641\u0628\u0631\u0627\u064a\u0631\u060c 2019"],"May 7, 2019":["7 \u0645\u0627\u064a\u0648\u060c 2019"],"Release Date":["\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0635\u062f\u0627\u0631"],"Jazz Musician":["\u0645\u0648\u0633\u064a\u0642\u0627\u0631 \u0627\u0644\u062c\u0627\u0632"],Version:["\u0627\u0644\u0646\u0633\u062e\u0629"],"Six.":["\u0633\u062a\u0629."],"Five.":["\u062e\u0645\u0633\u0629."],"Four.":["\u0623\u0631\u0628\u0639\u0629."],"Three.":["\u062b\u0644\u0627\u062b\u0629."],"Two.":["\u0627\u062b\u0646\u0627\u0646."],"One.":["\u0648\u0627\u062d\u062f."],"One of the hardest things to do in technology is disrupt yourself.":["\u0623\u062d\u062f \u0623\u0635\u0639\u0628 \u0627\u0644\u0623\u0634\u064a\u0627\u0621 \u0627\u0644\u062a\u064a \u064a\u0645\u0643\u0646 \u0627\u0644\u0642\u064a\u0627\u0645 \u0628\u0647\u0627 \u0641\u064a \u0645\u062c\u0627\u0644 \u0627\u0644\u062a\u0642\u0646\u064a\u0629 \u0647\u0648 \u062a\u0639\u0637\u064a\u0644 \u0646\u0641\u0633\u0643."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["\u062d\u0648\u0644 \u062a\u0644\u0643 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 \u0634\u0627\u0634\u0629 \u0633\u0648\u062f\u0627\u0621 \u062a\u0645\u0627\u0645\u064b\u0627 \u062a\u0642\u0631\u064a\u0628\u064b\u0627. \u0627\u0644\u0622\u0646\u060c \u0648\u0628\u064a\u0646\u0645\u0627 \u062a\u062a\u062d\u0631\u0651\u0643 \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0627 \u0628\u0628\u0637\u0621 \u0646\u062d\u0648 \u0627\u0644\u0646\u0627\u0641\u0630\u0629 \u0627\u0644\u062a\u064a \u062a\u0643\u0627\u062f \u062a\u0643\u0648\u0646 \u0637\u0627\u0628\u0639\u064b\u0627 \u0628\u0631\u064a\u062f\u064a\u064b\u0627 \u0641\u064a \u0627\u0644\u0625\u0637\u0627\u0631\u060c \u062a\u0638\u0647\u0631 \u0623\u0634\u0643\u0627\u0644 \u0623\u062e\u0631\u0649;"],"Window, very small in the distance, illuminated.":["\u0646\u0627\u0641\u0630\u0629\u060c \u0635\u063a\u064a\u0631\u0629 \u062c\u062f\u064b\u0627 \u0641\u064a \u0627\u0644\u0645\u0633\u0627\u0641\u0629\u060c \u0645\u0636\u064a\u0626\u0629."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (\u0645\u0635\u063a\u0651\u0631\u0629)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 \u0643\u0648\u0628\u0627\u064a\u0627\u0634\u064a \u0639\u064a\u0633\u0649 (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["\u0637\u0627\u0626\u0631 \u0627\u0644\u0646\u0650\u0651\u0645\u0646\u0650\u0645\u064e\u0629
\u064a\u0643\u062a\u0633\u0628 \u0631\u0632\u0642\u0647
\u0628\u0644\u0627 \u0636\u062c\u0629."],"Welcome to the wonderful world of blocks\u2026":["\u0623\u0647\u0644\u0627\u064b \u0628\u0643 \u0625\u0644\u0649 \u0639\u0627\u0644\u0645 \u0631\u0627\u0626\u0639 \u0645\u0646 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a\u2026"],"Snow Patrol":["\u062f\u0648\u0631\u0629 \u0627\u0644\u062b\u0644\u062c"],Dimensions:["\u0627\u0644\u0623\u0628\u0639\u0627\u062f"],"Minimum height in pixels":["\u0623\u062f\u0646\u0649 \u0627\u0631\u062a\u0641\u0627\u0639 \u0628\u0627\u0644\u0628\u0643\u0633\u0644"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["\u0641\u064a \u0627\u0644\u0648\u0627\u0642\u0639 \u062a\u0636\u0645\u064a\u0646 \u0627\u0644\u0643\u0648\u0643\u0628\u060c \u0627\u0644\u062a\u064a \u0641\u0647\u0631\u0633\u062a \u0648\u0627\u0634\u062a\u062f\u0651\u062a \u0623\u0646 \u0627\u0644\u062a\u063a\u064a\u0631\u0627\u062a \u0628\u0648\u0627\u0628\u0629\u060c \u0648\u0645\u0639 \u0630\u0644\u0643 \u0641\u0625\u0646\u0647 \u0644\u064a\u0633 \u0627\u0646\u062a\u0647\u0627\u0621. \u0636\u0645\u0646\u0647\u0627 \u0644\u0644\u0623\u0631\u0627\u0636\u064a \u0627\u0644\u0623\u0648\u0631\u0648\u0628\u064a\u0629 \u0630\u0627\u062a \u0645\u0639\u0646\u0649."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["\u062d\u062a\u0649 \u0623\u0628\u062c\u062f \u0648\u0625\u0646\u0641\u0627\u0630 \u0627\u0644\u0642\u0627\u0646\u0648\u0646. \u0627\u0644\u0630\u064a \u064a\u0645\u0643\u0646 \u0623\u0646 \u064a\u0639\u064a\u0634 \u0645\u0639 \u0633\u064a\u0627\u0633\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u0647\u0644\u0643 \u0627\u0644\u0633\u0647\u0627\u0645 \u0627\u0644\u062c\u0632\u0631. \u0627\u0644\u062d\u0648\u0627\u0631 \u0627\u0644\u0627\u0642\u062a\u0635\u0627\u062f\u064a \u0627\u0644\u0627\u0633\u062a\u0631\u0627\u062a\u064a\u062c\u064a \u0639\u062f\u062f \u0635\u062d\u064a\u062d \u0628\u0648\u0627\u0633\u0637\u0629 \u0627\u0644\u0642\u0648\u0633\u060c \u0645\u0639\u0631\u0641 \u0644\u0645\u0643\u0627\u0641\u0623\u0629 \u0627\u0644\u062c\u0627\u0626\u0632\u0629. \u062d\u062a\u0649 \u0643\u0631\u0629 \u0627\u0644\u0642\u062f\u0645 \u0645\u0643\u062a\u0628 \u0633\u0644\u0637\u0629 \u062f\u0627\u0641\u0626\u0629."],"Call to Action":["\u062f\u0639\u0648\u0629 \u0644\u0627\u062a\u062e\u0627\u0630 \u0625\u062c\u0631\u0627\u0621"],"In quoting others, we cite ourselves.":["\u0627\u0642\u062a\u0628\u0627\u0633\u064b\u0627 \u0645\u0646 \u0627\u0644\u0622\u062e\u0631\u064a\u0646\u060c \u0646\u0633\u062a\u0634\u0647\u062f \u0628\u0623\u0646\u0641\u0633\u0646\u0627."],cite:["\u0627\u0633\u062a\u0634\u0647\u0627\u062f \u0645\u0642\u062a\u0628\u0633"],"Mont Blanc appears\u2014still, snowy, and serene.":["\u064a\u0638\u0647\u0631 \u062c\u0628\u0644 \u0645\u0648\u0646 \u0628\u0644\u0627\u0646 \u2014 \u0633\u0627\u0643\u0646\u060c \u062b\u0644\u062c\u064a\u060c \u0648\u0647\u0627\u062f\u0626."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["1 \u0641\u064a \u0642\u0631\u064a\u0629 \u0644\u0627\u0645\u0627\u0646\u0634\u0627\u060c \u0648\u0627\u0644\u062a\u064a \u0644\u0627 \u0623\u0631\u063a\u0628 \u0641\u064a \u0630\u0643\u0631\u0647\u0627\u060c \u062e\u0633\u0627\u0626\u0631 \u0627\u0644\u0644\u0627\u0632\u0645\u0629 \u0648\u0645\u0637\u0627\u0644\u0628\u0629 \u062d\u062f\u0629 \u0628\u0644\u060c \u0627\u0644\u0622\u062e\u0631 \u0627\u0644\u062d\u0644\u0641\u0627\u0621 \u0648\u0627\u0642\u062a\u0635\u0651\u062a \u0627\u0644\u0645\u062d\u0648\u0631. \u062d\u062a\u0649 \u0633\u064a\u0637\u0631\u0629 \u0645\u062f\u0646 \u0627\u0644\u0623\u0633\u0637\u0648\u0644\u060c \u062b\u0645 \u0644\u0645 \u064a\u0645\u0636 \u0648\u0642\u062a \u0637\u0648\u064a\u0644 \u0639\u0644\u0649 \u062d\u064a\u0627\u0629 \u0623\u062d\u062f \u0647\u0624\u0644\u0627\u0621 \u0627\u0644\u0633\u0627\u062f\u0629 \u0648\u0627\u0644\u0630\u064a\u0646 \u064a\u062d\u062a\u0641\u0638\u0648\u0646 \u0628\u0627\u0644\u0631\u0645\u062d \u0627\u0644\u0642\u062f\u064a\u0645 \u0639\u0644\u0649 \u0627\u0644\u0631\u0641\u060c \u0648\u062a\u0631\u0633 \u0642\u062f\u064a\u0645\u060c \u0627\u062e\u062a\u0631\u0627\u0642 \u0647\u0632\u064a\u0644\u060c \u0648\u0643\u0644\u0628 \u0627\u0644\u0635\u064a\u062f \u0644\u0644\u062a\u0639\u0642\u064a\u0628."],"Block navigation":["\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Enable Full Site Editing":["\u062a\u0645\u0643\u064a\u0646 \u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0645\u0648\u0642\u0639 \u0628\u0627\u0644\u0643\u0627\u0645\u0644"],"Full Site Editing":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0645\u0648\u0642\u0639 \u0628\u0627\u0644\u0643\u0627\u0645\u0644"],"Templates to include in your theme.":["\u0642\u0648\u0627\u0644\u0628/\u0646\u0645\u0627\u0630\u062c \u0644\u062a\u0636\u0645\u064a\u0646\u0647\u0627 \u0641\u064a \u0642\u0627\u0644\u0628\u0643."],Templates:["\u0627\u0644\u0642\u0648\u0627\u0644\u0628"],"Inserter Help Panel":["\u0644\u0648\u062d\u0629 \u0645\u0633\u0627\u0639\u062f\u0629 \u0623\u062f\u0627\u0629 \u0627\u0644\u0625\u062f\u0631\u0627\u062c"],"Pre-publish Checks":["\u0627\u0644\u062a\u062d\u0642\u0651\u0642 \u0642\u0628\u0644 \u0627\u0644\u0646\u0634\u0631"],"Please contact your site administrator to install new blocks.":["\u064a\u0631\u062c\u0649 \u0627\u0644\u062a\u0648\u0627\u0635\u0644 \u0645\u0639 \u0645\u062f\u064a\u0631 \u0645\u0648\u0642\u0639\u0643 \u0644\u062a\u0646\u0635\u064a\u0628 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u062c\u062f\u064a\u062f\u0629."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0641\u064a \u0645\u0643\u062a\u0628\u062a\u0643\u060c \u064a\u0631\u062c\u0649 \u0627\u0644\u062a\u0648\u0627\u0635\u0644 \u0645\u0639 \u0645\u062f\u064a\u0631 \u0645\u0648\u0642\u0639\u0643 \u0644\u062a\u0646\u0635\u064a\u0628 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u062c\u062f\u064a\u062f\u0629."],"No blocks found in your library.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0641\u064a \u0645\u0643\u062a\u0628\u062a\u0643."],"No blocks found in your library. These blocks can be downloaded and installed:":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0641\u064a \u0645\u0643\u062a\u0628\u062a\u0643\u060c \u0628\u0627\u0633\u062a\u0637\u0627\u0639\u062a\u0643 \u062a\u0646\u0632\u064a\u0644 \u0648\u062a\u0646\u0635\u064a\u0628 \u0647\u0630\u0647 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a:"],"No blocks found in your library. We did find %d block available for download.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0641\u064a \u0645\u0643\u062a\u0628\u062a\u0643. \u0648\u062c\u062f\u0646\u0627 %d \u0645\u0643\u0648\u0651\u0646 \u0645\u062a\u0627\u062d \u0644\u0644\u062a\u0646\u0632\u064a\u0644.","\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0641\u064a \u0645\u0643\u062a\u0628\u062a\u0643. \u0648\u062c\u062f\u0646\u0627 \u0645\u0643\u0648\u0651\u0646 \u0648\u0627\u062d\u062f (%d) \u0645\u062a\u0627\u062d\u064b\u0627 \u0644\u0644\u062a\u0646\u0632\u064a\u0644.","\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0641\u064a \u0645\u0643\u062a\u0628\u062a\u0643. \u0648\u062c\u062f\u0646\u0627 %d \u0645\u0643\u0648\u0651\u0646 \u0645\u062a\u0627\u062d \u0644\u0644\u062a\u0646\u0632\u064a\u0644.","\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0641\u064a \u0645\u0643\u062a\u0628\u062a\u0643. \u0648\u062c\u062f\u0646\u0627 %d \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0645\u062a\u0627\u062d \u0644\u0644\u062a\u0646\u0632\u064a\u0644.","\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0641\u064a \u0645\u0643\u062a\u0628\u062a\u0643. \u0648\u062c\u062f\u0646\u0627 %d \u0645\u0643\u0648\u0651\u0646 \u0645\u062a\u0627\u062d \u0644\u0644\u062a\u0646\u0632\u064a\u0644.","\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0641\u064a \u0645\u0643\u062a\u0628\u062a\u0643. \u0648\u062c\u062f\u0646\u0627 %d \u0645\u0643\u0648\u0651\u0646 \u0645\u062a\u0627\u062d \u0644\u0644\u062a\u0646\u0632\u064a\u0644."],"Block previews can\u2019t load.":["\u0644\u0627 \u064a\u0645\u0643\u0646 \u062a\u062d\u0645\u064a\u0644 \u0645\u0639\u0627\u064a\u0646\u0627\u062a \u0627\u0644\u0645\u0643\u0648\u0651\u0646."],Retry:["\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629"],"Block previews can't install.":["\u0644\u0627 \u064a\u0645\u0643\u0646 \u062a\u0646\u0635\u064a\u0628 \u0645\u0639\u0627\u064a\u0646\u0627\u062a \u0627\u0644\u0645\u0643\u0648\u0651\u0646."],"Updated %s":["\u062a\u0645 \u062a\u062d\u062f\u064a\u062b %s"],"%d active installation":["\u0644\u0627 \u062a\u0648\u062c\u062f \u062a\u0646\u0635\u064a\u0628\u0627\u062a \u0646\u0634\u0637\u0629 (%d)","%d \u062a\u0646\u0635\u064a\u0628 \u0646\u0634\u0637","%d \u062a\u0646\u0635\u064a\u0628\u0627\u062a \u0646\u0634\u0637\u0629","%d \u062a\u0646\u0635\u064a\u0628\u0627\u062a \u0646\u0634\u0637\u0629","%d \u062a\u0646\u0635\u064a\u0628 \u0646\u0634\u0637","%d \u062a\u0646\u0635\u064a\u0628 \u0646\u0634\u0637"],"This author has %d block, with an average rating of %d.":["\u064a\u062d\u062a\u0648\u064a \u0647\u0630\u0627 \u0627\u0644\u0645\u0624\u0644\u0641 \u0639\u0644\u0649 %d \u0645\u0643\u0648\u0651\u0646\u060c \u0628\u0645\u062a\u0648\u0633\u0637 \u062a\u0642\u064a\u064a\u0645 %d.","\u064a\u062d\u062a\u0648\u064a \u0647\u0630\u0627 \u0627\u0644\u0645\u0624\u0644\u0641 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646 \u0648\u0627\u062d\u062f (%d)\u060c \u0628\u0645\u062a\u0648\u0633\u0637 \u062a\u0642\u064a\u064a\u0645 %d.","\u064a\u062d\u062a\u0648\u064a \u0647\u0630\u0627 \u0627\u0644\u0645\u0624\u0644\u0641 \u0639\u0644\u0649 %d \u0645\u0643\u0648\u0651\u0646\u060c \u0628\u0645\u062a\u0648\u0633\u0637 \u062a\u0642\u064a\u064a\u0645 %d.","\u064a\u062d\u062a\u0648\u064a \u0647\u0630\u0627 \u0627\u0644\u0645\u0624\u0644\u0641 \u0639\u0644\u0649 %d \u0645\u0643\u0648\u0651\u0646\u0627\u062a\u060c \u0628\u0645\u062a\u0648\u0633\u0637 \u062a\u0642\u064a\u064a\u0645 %d.","\u064a\u062d\u062a\u0648\u064a \u0647\u0630\u0627 \u0627\u0644\u0645\u0624\u0644\u0641 \u0639\u0644\u0649 %d \u0645\u0643\u0648\u0651\u0646\u060c \u0628\u0645\u062a\u0648\u0633\u0637 \u062a\u0642\u064a\u064a\u0645 %d.","\u064a\u062d\u062a\u0648\u064a \u0647\u0630\u0627 \u0627\u0644\u0645\u0624\u0644\u0641 \u0639\u0644\u0649 %d \u0645\u0643\u0648\u0651\u0646\u060c \u0628\u0645\u062a\u0648\u0633\u0637 \u062a\u0642\u064a\u064a\u0645 %d."],"Authored by %s":["\u0646\u064f\u0634\u0631\u062a \u0628\u0648\u0627\u0633\u0637\u0629 %s"],Add:["\u0623\u0636\u0641"],"%d total rating":["\u0625\u062c\u0645\u0627\u0644\u064a \u0627\u0644\u062a\u0642\u064a\u064a\u0645 %d","\u0625\u062c\u0645\u0627\u0644\u064a \u0627\u0644\u062a\u0642\u064a\u064a\u0645 %d","\u0625\u062c\u0645\u0627\u0644\u064a \u0627\u0644\u062a\u0642\u064a\u064a\u0645\u0627\u062a %d","\u0625\u062c\u0645\u0627\u0644\u064a \u0627\u0644\u062a\u0642\u064a\u064a\u0645\u0627\u062a %d","\u0625\u062c\u0645\u0627\u0644\u064a \u0627\u0644\u062a\u0642\u064a\u064a\u0645\u0627\u062a %d","\u0625\u062c\u0645\u0627\u0644\u064a \u0627\u0644\u062a\u0642\u064a\u064a\u0645\u0627\u062a %d"],"%s out of 5 stars":["%s \u0645\u0646 5 \u0646\u062c\u0648\u0645"],"Enter Address":["\u0623\u062f\u062e\u0644 \u0627\u0644\u0639\u0646\u0648\u0627\u0646"],"Pill Shape":["\u0634\u0643\u0644 \u0642\u0631\u0635"],"Logos Only":["\u0634\u0639\u0627\u0631\u0627\u062a \u0641\u0642\u0637"],"Create a block of links to your social media or external sites":["\u0625\u0646\u0634\u0627\u0621 \u0645\u0643\u0648\u0651\u0646 \u0644\u0645\u062c\u0645\u0648\u0639\u0629 \u0645\u0646 \u0631\u0648\u0627\u0628\u0637 \u0645\u0648\u0627\u0642\u0639 \u0627\u0644\u062a\u0648\u0627\u0635\u0644 \u0627\u0644\u0627\u062c\u062a\u0645\u0627\u0639\u064a \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643 \u0623\u0648 \u0645\u0648\u0627\u0642\u0639 \u062e\u0627\u0631\u062c\u064a\u0629"],"Social links":["\u0627\u0644\u0631\u0648\u0627\u0628\u0637 \u0627\u0644\u0627\u062c\u062a\u0645\u0627\u0639\u064a\u0629"],"Open block navigator":["\u0641\u062a\u062d \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Attachment page":["\u0635\u0641\u062d\u0629 \u0627\u0644\u0645\u0631\u0641\u0642"],Fill:["\u062a\u0639\u0628\u0626\u0629"],"Link rel":["\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0631\u0627\u0628\u0637 Rel"],"Border Radius":["\u0632\u0648\u0627\u064a\u0627 \u0627\u0644\u062d\u062f\u0648\u062f"],"Write gallery caption\u2026":["\u0643\u062a\u0627\u0628\u0629 \u062a\u0633\u0645\u064a\u0629 \u062a\u0648\u0636\u064a\u062d\u064a\u0629 \u0644\u0644\u0645\u0639\u0631\u0636\u2026"],"Content Blocks":["\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0645\u062d\u062a\u0648\u0649"],"Restore the backup":["\u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0627\u0644\u0646\u0633\u062e\u0629 \u0627\u0644\u0627\u062d\u062a\u064a\u0627\u0637\u064a\u0629"],"The backup of this post in your browser is different from the version below.":["\u0627\u0644\u0646\u0633\u062e\u0629 \u0627\u0644\u0627\u062d\u062a\u064a\u0627\u0637\u064a\u0629 \u0644\u0647\u0630\u0647 \u0627\u0644\u0645\u0642\u0627\u0644\u0629 \u0641\u064a \u0627\u0644\u0645\u062a\u0635\u0641\u062d \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u0645\u062e\u062a\u0644\u0641\u0629 \u0639\u0646 \u0627\u0644\u0646\u0633\u062e\u0629 \u0623\u062f\u0646\u0627\u0647."],"Enable Block Directory search":["\u062a\u0645\u0643\u064a\u0646 \u0628\u062d\u062b \u062f\u0644\u064a\u0644 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Block Directory":["\u062f\u0644\u064a\u0644 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Unable to connect to the filesystem. Please confirm your credentials.":["\u063a\u064a\u0631 \u0642\u0627\u062f\u0631 \u0639\u0644\u0649 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0628\u0646\u0638\u0627\u0645 \u0627\u0644\u0645\u0644\u0641\u0627\u062a. \u064a\u0631\u062c\u0649 \u0627\u0644\u062a\u0623\u0643\u0651\u062f \u0645\u0646 \u0635\u062d\u0629 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062f\u062e\u0648\u0644."],"Sorry, you are not allowed to install blocks.":["\u0639\u0630\u0631\u064b\u0627\u060c \u063a\u064a\u0631 \u0645\u0633\u0645\u0648\u062d \u0644\u0643 \u0628\u062a\u0646\u0635\u064a\u0628 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a."],"%1$d block is disabled.":["\u0644\u0645 \u064a\u062a\u0645 \u062a\u0639\u0637\u064a\u0644 \u0623\u064a \u0645\u0643\u0648\u0651\u0646.","\u062a\u0645\u0651 \u062a\u0639\u0637\u064a\u0644 \u0645\u0643\u0648\u0651\u0646 \u0648\u0627\u062d\u062f (%1$d).","\u062a\u0645\u0651 \u062a\u0639\u0637\u064a\u0644 \u0645\u0643\u0648\u0651\u0646\u0627\u0646 (%1$d).","\u062a\u0645\u0651 \u062a\u0639\u0637\u064a\u0644 %1$d \u0645\u0643\u0648\u0651\u0646\u0627\u062a.","\u062a\u0645\u0651 \u062a\u0639\u0637\u064a\u0644 %1$d \u0645\u0643\u0648\u0651\u0646.","\u062a\u0645\u0651 \u062a\u0639\u0637\u064a\u0644 %1$d \u0645\u0643\u0648\u0651\u0646."],"Reverse List Numbering":["\u0639\u0643\u0633 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062a\u0631\u0642\u064a\u0645"],"Start Value":["\u0642\u064a\u0645\u0629 \u0627\u0644\u0628\u062f\u0627\u064a\u0629"],"Ordered List Settings":["\u062a\u0631\u062a\u064a\u0628 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0642\u0627\u0626\u0645\u0629"],"Clear Media":["\u0645\u0633\u062d \u0627\u0644\u0648\u0633\u0627\u0626\u0637"],"block style\x04Circle Mask":["\u063a\u0637\u0627\u0621 \u062f\u0627\u0626\u0631\u064a"],"Default Style":["\u0627\u0644\u0646\u0645\u0637 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a"],"Not set":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u062a\u0639\u064a\u064a\u0646"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["\u0627\u0633\u062a\u0639\u0631\u0627\u0636 \u0627\u0644\u0645\u0643\u062a\u0628\u0629 \u0644\u0645\u0639\u0631\u0641\u0629 \u0627\u0644\u0645\u0632\u064a\u062f \u062d\u0648\u0644 \u0648\u0638\u064a\u0641\u0629 \u0643\u0644 \u0645\u0643\u0648\u0651\u0646."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["\u0647\u0646\u0627\u0643 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0645\u062a\u0627\u062d\u0629 \u0644\u062c\u0645\u064a\u0639 \u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0645\u062d\u062a\u0648\u0649: \u0625\u062f\u0631\u0627\u062c \u0646\u0635\u0651\u060c \u0639\u0646\u0627\u0648\u064a\u0646 \u0631\u0626\u064a\u0633\u064a\u0629\u060c \u0635\u0648\u0631\u060c \u0642\u0648\u0627\u0626\u0645\u060c \u0645\u0642\u0627\u0637\u0639 \u0641\u064a\u062f\u064a\u0648\u060c \u062c\u062f\u0627\u0648\u0644\u060c \u0648\u063a\u064a\u0631 \u0630\u0644\u0643 \u0627\u0644\u0643\u062b\u064a\u0631!"],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["\u0623\u0647\u0644\u0627\u064b \u0628\u0643 \u0625\u0644\u0649 \u0639\u0627\u0644\u0645 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0645\u0630\u0647\u0644! \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0647\u064a \u0623\u0633\u0627\u0633 \u0643\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0636\u0645\u0646 \u0627\u0644\u0645\u062d\u0631\u0631."],"Version of the content block format used by the object.":["\u0625\u0635\u062f\u0627\u0631 \u062a\u0646\u0633\u064a\u0642 \u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u064f\u0633\u062a\u062e\u062f\u0645 \u0628\u0648\u0627\u0633\u0637\u0629 \u0627\u0644\u0643\u0627\u0626\u0646."],"HTML content for the object, transformed for display.":["\u0645\u062d\u062a\u0648\u0649 (HTML) \u0627\u0644\u0643\u0627\u0626\u0646\u060c \u0645\u064f\u0639\u062f \u0644\u0644\u0639\u0631\u0636."],"Content for the object, as it exists in the database.":["\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0643\u0627\u0626\u0646\u060c \u0643\u0645\u0627 \u0647\u0648 \u0645\u0648\u062c\u0648\u062f \u0641\u064a \u0642\u0627\u0639\u062f\u0629 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a."],"The content for the object.":["\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0643\u0627\u0626\u0646."],"Change column alignment":["\u062a\u063a\u064a\u064a\u0631 \u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0639\u0645\u0648\u062f"],"Align Column Right":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0639\u0645\u0648\u062f \u0644\u0644\u064a\u0645\u064a\u0646"],"Align Column Center":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0639\u0645\u0648\u062f \u0644\u0644\u0648\u0633\u0637"],"Align Column Left":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0639\u0645\u0648\u062f \u0644\u0644\u064a\u0633\u0627\u0631"],Color:["\u0627\u0644\u0644\u0648\u0646"],"Vivid purple":["\u0628\u0646\u0641\u0633\u062c\u064a \u0633\u0627\u0637\u0639"],"Disable & Reload":["\u062a\u0639\u0637\u064a\u0644 \u0648\u0625\u0639\u0627\u062f\u0629 \u062a\u062d\u0645\u064a\u0644"],"Enable & Reload":["\u062a\u0641\u0639\u064a\u0644 \u0648\u0625\u0639\u0627\u062f\u0629 \u062a\u062d\u0645\u064a\u0644"],"A page reload is required for this change. Make sure your content is saved before reloading.":["\u0644\u0627\u0628\u062f\u0651 \u0645\u0646 \u0625\u0639\u0627\u062f\u0629 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0635\u0641\u062d\u0629 \u0644\u0625\u062c\u0631\u0627\u0621 \u0647\u0630\u0627 \u0627\u0644\u062a\u063a\u064a\u064a\u0631\u060c \u062a\u0623\u0643\u0651\u062f \u0645\u0646 \u062d\u0641\u0638 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0642\u0628\u0644 \u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u062d\u0645\u064a\u0644."],"Display these keyboard shortcuts.":["\u0639\u0631\u0636 \u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d \u0647\u0630\u0647."],"Experiments Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062a\u062c\u0627\u0631\u0628"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["\u0645\u062d\u0631\u0631 Gutenberg \u0644\u062f\u064a\u0647 \u0628\u0639\u0636 \u0627\u0644\u0645\u064a\u0632\u0627\u062a \u0627\u0644\u062a\u062c\u0631\u064a\u0628\u064a\u0629 \u0627\u0644\u062a\u064a \u064a\u0645\u0643\u0646\u0643 \u062a\u0634\u063a\u064a\u0644\u0647\u0627. \u0645\u0627\u0639\u0644\u064a\u0643 \u0633\u0648\u0649 \u062a\u062d\u062f\u064a\u062f \u0643\u0644 \u0645\u0627 \u062a\u0631\u064a\u062f \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647. \u0645\u0646 \u0627\u0644\u0645\u062d\u062a\u0645\u0644 \u0623\u0646 \u062a\u062a\u063a\u064a\u0631 \u0647\u0630\u0647 \u0627\u0644\u0645\u064a\u0632\u0627\u062a\u060c \u0644\u0630\u0627 \u0641\u0645\u0646 \u063a\u064a\u0631 \u0627\u0644\u0645\u0633\u062a\u062d\u0633\u0646 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647\u0627 \u0641\u064a \u0645\u0631\u062d\u0644\u0629 \u0627\u0644\u0627\u0646\u062a\u0627\u062c\u064a\u0629 (Production)."],"Enable Widgets Screen and Legacy Widget Block":["\u062a\u0645\u0643\u064a\u0646 \u0634\u0627\u0634\u0629 \u0627\u0644\u0648\u062f\u062c\u0627\u062a \u0648\u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u0648\u062f\u062c\u062a \u0627\u0644\u0645\u064f\u062e\u0632\u0651\u064e\u0646"],"Experiment settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062a\u062c\u0631\u0628\u0629"],"Block name name must be a string.":["\u0627\u0633\u0645 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u064a\u0646\u0628\u063a\u064a \u0623\u0646 \u064a\u0643\u0648\u0646 \u0633\u0644\u0633\u0644\u0629 \u0646\u0635\u064a\u0629."],Custom:["\u0645\u064f\u062e\u0635\u0635"],Draft:["\u0645\u0633\u0648\u062f\u0629"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["\u0644\u0627 \u064a\u062d\u062a\u0648\u064a \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \"%1$s\" \u0639\u0644\u0649 \u0646\u0645\u0637 \u0645\u0633\u0645\u0649 \"%2$s.\"."],"Learn more about anchors":["\u0645\u0639\u0631\u0641\u0629 \u0627\u0644\u0645\u0632\u064a\u062f \u062d\u0648\u0644 \u0631\u0648\u0627\u0628\u0637 \u0627\u0644\u0642\u0641\u0632"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["\u0623\u062f\u062e\u0644 \u0643\u0644\u0645\u0629 \u0623\u0648 \u0643\u0644\u0645\u062a\u064a\u0646 \u2014 \u0628\u062f\u0648\u0646 \u0645\u0633\u0627\u0641\u0627\u062a \u2014 \u0644\u0625\u0646\u0634\u0627\u0621 \u0639\u0646\u0648\u0627\u0646 \u0648\u064a\u0628 \u0641\u0631\u064a\u062f \u0644\u0647\u0630\u0627 \u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0641\u0642\u0637\u060c \u064a\u0633\u0645\u0649 \"\u0631\u0627\u0628\u0637 \u0644\u0644\u0642\u0641\u0632.\" \u0628\u0639\u062f \u0630\u0644\u0643\u060c \u0633\u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0627\u0644\u0627\u0631\u062a\u0628\u0627\u0637 \u0645\u0628\u0627\u0634\u0631\u0629\u064b \u0628\u0647\u0630\u0627 \u0627\u0644\u0642\u0633\u0645 \u0645\u0646 \u0635\u0641\u062d\u062a\u0643."],"Widget Blocks (Experimental)":["\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0648\u062f\u062c\u062a (\u062a\u062c\u0631\u064a\u0628\u064a)"],"Upload a video file, pick one from your media library, or add one with a URL.":["\u0631\u0641\u0639 \u0645\u0644\u0641 \u0641\u064a\u062f\u064a\u0648\u060c \u0623\u0648 \u0627\u062e\u062a\u064a\u0627\u0631 \u0641\u064a\u062f\u064a\u0648 \u0645\u0646 \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643\u060c \u0623\u0648 \u0625\u0636\u0627\u0641\u0629 \u0641\u064a\u062f\u064a\u0648 \u0645\u0646 \u0631\u0627\u0628\u0637 URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["\u0631\u0641\u0639 \u0645\u0644\u0641 \u0635\u0648\u0631\u0629\u060c \u0623\u0648 \u0627\u062e\u062a\u064a\u0627\u0631 \u0635\u0648\u0631\u0629 \u0645\u0646 \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643\u060c \u0623\u0648 \u0625\u0636\u0627\u0641\u0629 \u0635\u0648\u0631\u0629 \u0645\u0646 \u0631\u0627\u0628\u0637 URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["\u0631\u0641\u0639 \u0645\u0644\u0641 \u0635\u0648\u062a\u060c \u0623\u0648 \u0627\u062e\u062a\u064a\u0627\u0631 \u0645\u0644\u0641 \u0645\u0646 \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643\u060c \u0623\u0648 \u0625\u0636\u0627\u0641\u0629 \u0645\u0644\u0641 \u0645\u0646 \u0631\u0627\u0628\u0637 URL."],"Upload a media file or pick one from your media library.":["\u0631\u0641\u0639 \u0645\u0644\u0641 \u0623\u0648 \u0627\u062e\u062a\u064a\u0627\u0631 \u0645\u0644\u0641 \u0645\u0646 \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643."],Skip:["\u062a\u062e\u0637\u064a"],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":["\u0645\u0627 \u0647\u0630\u0627\u061f"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["\u0644\u0627 \u062a\u062f\u0639 \u0645\u062d\u0631\u0643\u0627\u062a \u0627\u0644\u0628\u062d\u062b \u062a\u062a\u0628\u0651\u0639 \u0647\u0630\u0627 \u0627\u0644\u0631\u0627\u0628\u0637."],"Provide more context about where the link goes.":["\u062a\u0648\u0641\u064a\u0631 \u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0633\u064a\u0627\u0642 \u062d\u0648\u0644 \u0623\u064a\u0646 \u064a\u0630\u0647\u0628 \u0627\u0644\u0631\u0627\u0628\u0637."],"Title Attribute":["\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0639\u0646\u0648\u0627\u0646"],"SEO Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a SEO"],Description:["\u0627\u0644\u0648\u0635\u0641"],"Open in new tab":["\u0641\u062a\u062d \u0641\u064a \u0639\u0644\u0627\u0645\u0629 \u062a\u0628\u0648\u064a\u0628 \u062c\u062f\u064a\u062f\u0629"],links:["\u0627\u0644\u0631\u0648\u0627\u0628\u0637"],navigation:["\u0627\u0644\u062a\u0646\u0642\u0644"],menu:["\u0627\u0644\u0642\u0627\u0626\u0645\u0629"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["\u0631\u0641\u0639 \u0645\u0644\u0641 \u0623\u0648 \u0627\u062e\u062a\u064a\u0627\u0631 \u0645\u0644\u0641 \u0645\u0646 \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643."],"Learn more about embeds":["\u0645\u0639\u0631\u0641\u0629 \u0627\u0644\u0645\u0632\u064a\u062f \u062d\u0648\u0644 \u0627\u0644\u062a\u0636\u0645\u064a\u0646\u0627\u062a"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["\u0644\u0635\u0642 \u0631\u0627\u0628\u0637\u064b\u0627 \u0644\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0630\u064a \u062a\u0631\u064a\u062f \u0639\u0631\u0636\u0647 \u0639\u0644\u0649 \u0645\u0648\u0642\u0639\u0643."],"Upload an image or video file, or pick one from your media library.":["\u0631\u0641\u0639 \u0645\u0644\u0641 \u0635\u0648\u0631\u0629 \u0623\u0648 \u0641\u064a\u062f\u064a\u0648\u060c \u0623\u0648 \u0627\u062e\u062a\u064a\u0627\u0631 \u0645\u0644\u0641 \u0645\u0646 \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643."],"Three columns; wide center column":["\u062b\u0644\u0627\u062b\u0629 \u0623\u0639\u0645\u062f\u0629; \u0639\u0645\u0648\u062f \u0628\u0627\u0644\u0648\u0633\u0637 \u0648\u0627\u0633\u0639"],"Three columns; equal split":["\u062b\u0644\u0627\u062b\u0629 \u0623\u0639\u0645\u062f\u0629; \u0645\u0642\u0633\u0645\u0629 \u0628\u0627\u0644\u062a\u0633\u0627\u0648\u064a"],"Two columns; two-thirds, one-third split":["\u0639\u0645\u0648\u062f\u064a\u0646: \u0645\u0642\u0633\u0645\u0629 \u0639\u0644\u0649 \u062b\u0644\u062b\u064a\u0646\u060c \u0648\u062b\u0644\u062b \u0645\u0646\u0641\u0635\u0644"],"Two columns; one-third, two-thirds split":["\u0639\u0645\u0648\u062f\u064a\u0646: \u0645\u0642\u0633\u0645\u0629 \u062b\u0644\u062b\u060c \u0648\u062b\u0644\u062b\u064a\u0646 \u0645\u0646\u0641\u0635\u0644\u0629"],"Two columns; equal split":["\u0639\u0645\u0648\u062f\u064a\u0646; \u0645\u0642\u0633\u0645\u0629 \u0628\u0627\u0644\u062a\u0633\u0627\u0648\u064a"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["\u0644\u0627 \u064a\u062d\u062a\u0648\u064a \u0645\u0648\u0642\u0639\u0643 \u0639\u0644\u0649 \u0623\u064a %s\u060c \u0644\u0630\u0644\u0643 \u0644\u0627 \u064a\u0648\u062c\u062f \u0634\u064a \u0644\u0639\u0631\u0636\u0647 \u0647\u0646\u0627 \u0641\u064a \u0627\u0644\u0648\u0642\u062a \u0627\u0644\u062d\u0627\u0644\u064a."],"More tools & options":["\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0623\u062f\u0648\u0627\u062a \u0648\u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a"],"Create Table":["\u0625\u0646\u0634\u0627\u0621 \u062c\u062f\u0648\u0644"],"Insert a table for sharing data.":["\u0625\u062f\u0631\u0627\u062c \u062c\u062f\u0648\u0644 \u0644\u0645\u0634\u0627\u0631\u0643\u0629 \u0628\u064a\u0627\u0646\u0627\u062a."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["\u0641\u0643\u0651 \u0627\u0644\u062a\u062c\u0645\u064a\u0639"],"verb\x04Group":["\u062a\u062c\u0645\u064a\u0639"],"Separate with commas or the Enter key.":["\u0627\u0644\u0641\u0635\u0644 \u0628\u064a\u0646\u0647\u0627 \u0628\u0641\u0648\u0627\u0635\u0644 \u0623\u0648 \u0645\u0641\u062a\u0627\u062d \u0627\u0644\u0625\u062f\u062e\u0627\u0644 Enter."],"Separate with commas, spaces, or the Enter key.":["\u0627\u0644\u0641\u0635\u0644 \u0628\u064a\u0646\u0647\u0627 \u0628\u0641\u0648\u0627\u0635\u0644\u060c \u0623\u0648 \u0645\u0633\u0627\u0641\u0627\u062a\u060c \u0623\u0648 \u0645\u0641\u062a\u0627\u062d \u0627\u0644\u0625\u062f\u062e\u0627\u0644 Enter."],"Separate multiple classes with spaces.":["\u0641\u0635\u0644 \u0627\u0644\u0641\u0626\u0627\u062a \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629 \u0628\u0645\u0633\u0627\u0641\u0627\u062a."],"Move image forward":["\u062a\u062d\u0631\u064a\u0643 \u0627\u0644\u0635\u0648\u0631\u0629 \u0644\u0644\u0623\u0645\u0627\u0645"],"Move image backward":["\u062a\u062d\u0631\u064a\u0643 \u0627\u0644\u0635\u0648\u0631\u0629 \u0644\u0644\u062e\u0644\u0641"],"Sorry, you are not allowed to edit sidebars.":["\u0639\u0630\u0631\u064b\u0627\u060c \u063a\u064a\u0631 \u0645\u0633\u0645\u0648\u062d \u0644\u0643 \u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0623\u0634\u0631\u0637\u0629 \u0627\u0644\u062c\u0627\u0646\u0628\u064a\u0629."],"Sorry, you are not allowed to read sidebars.":["\u0639\u0630\u0631\u064b\u0627\u060c \u063a\u064a\u0631 \u0645\u0633\u0645\u0648\u062d \u0644\u0643 \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0623\u0634\u0631\u0637\u0629 \u0627\u0644\u062c\u0627\u0646\u0628\u064a\u0629."],"The sidebar\u2019s ID.":["\u0645\u064f\u0639\u0631\u0651\u0641 \u0627\u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u062c\u0627\u0646\u0628\u064a."],"Displays a set of blocks":["\u0627\u0633\u062a\u0639\u0631\u0627\u0636 \u0645\u062c\u0645\u0648\u0639\u0629 \u0645\u0646 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Blocks Area":["\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Block rendered as empty.":["\u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u0645\u0642\u062f\u0645 \u0641\u0627\u0631\u063a\u0627\u064b"],"Inline Code":["\u0643\u0648\u062f \u0645\u0636\u0645\u0651\u0646"],"Note: Autoplaying videos may cause usability issues for some visitors.":["\u0645\u0644\u0627\u062d\u0638\u0629: \u0642\u062f \u064a\u0624\u062f\u064a \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u062a\u0644\u0642\u0627\u0626\u064a\u064b\u0627 \u0625\u0644\u0649 \u0645\u0634\u0627\u0643\u0644 \u0641\u064a \u0642\u0627\u0628\u0644\u064a\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0644\u0628\u0639\u0636 \u0627\u0644\u0632\u0648\u0627\u0631."],"Footer section":["\u0642\u0633\u0645 \u0627\u0644\u062a\u0630\u064a\u064a\u0644"],"Header section":["\u0642\u0633\u0645 \u0627\u0644\u062a\u0631\u0648\u064a\u0633\u0629"],"Sorting and Filtering":["\u0627\u0644\u0641\u0631\u0632 \u0648\u0627\u0644\u062a\u0635\u0641\u064a\u0629"],"Post Meta Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0645\u064a\u062a\u0627 \u0627\u0644\u0645\u0642\u0627\u0644\u0629"],"Post Content":["\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u0642\u0627\u0644\u0629"],"Post Content Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u0642\u0627\u0644\u0629"],"Percentage width":["\u0646\u0633\u0628\u0629 \u0627\u0644\u0639\u0631\u0636"],"Column Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0639\u0645\u0648\u062f"],"Note: Autoplaying audio may cause usability issues for some visitors.":["\u0645\u0644\u0627\u062d\u0638\u0629: \u0642\u062f \u064a\u0624\u062f\u064a \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0635\u0648\u062a \u062a\u0644\u0642\u0627\u0626\u064a\u064b\u0627 \u0625\u0644\u0649 \u0645\u0634\u0627\u0643\u0644 \u0641\u064a \u0642\u0627\u0628\u0644\u064a\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0644\u0628\u0639\u0636 \u0627\u0644\u0632\u0648\u0627\u0631."],"Block area updated.":["\u062a\u0645\u0651 \u062a\u062d\u062f\u064a\u062b \u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646."],"Block area scheduled.":["\u062a\u0645\u0651 \u062c\u062f\u0648\u0644\u0629 \u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646."],"Block area published.":["\u062a\u0645\u0651 \u0646\u0634\u0631 \u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646."],"Block areas list":["\u0642\u0627\u0626\u0645\u0629 \u0645\u0646\u0627\u0637\u0642 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Block areas list navigation":["\u062a\u0635\u0641\u0651\u062d \u0642\u0627\u0626\u0645\u0629 \u0645\u0646\u0627\u0637\u0642 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Filter block areas list":["\u062a\u0635\u0641\u064a\u0629 \u0642\u0627\u0626\u0645\u0629 \u0645\u0646\u0627\u0637\u0642 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"No block area found.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0646\u0637\u0642\u0629 \u0645\u0643\u0648\u0651\u0646."],"Search Block Areas":["\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0645\u0646\u0627\u0637\u0642 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"All Block Areas":["\u062c\u0645\u064a\u0639 \u0645\u0646\u0627\u0637\u0642 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"View Block Area":["\u0639\u0631\u0636 \u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"Edit Block Area":["\u062a\u062d\u0631\u064a\u0631 \u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"New Block Area":["\u0645\u0646\u0637\u0642\u0629 \u0645\u0643\u0648\u0651\u0646 \u062c\u062f\u064a\u062f\u0629"],"Add New Block Area":["\u0625\u0636\u0627\u0641\u0629 \u0645\u0646\u0637\u0642\u0629 \u0645\u0643\u0648\u0651\u0646 \u062c\u062f\u064a\u062f\u0629"],"admin menu\x04Block Areas":["\u0645\u0646\u0627\u0637\u0642 \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"post type singular name\x04Block Area (Experimental)":["\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 (\u062a\u062c\u0631\u064a\u0628\u064a)"],"post type general name\x04Block Area (Experimental)":["\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 (\u062a\u062c\u0631\u064a\u0628\u064a)"],"Experimental custom post type that will store block areas referenced by themes.":["\u0646\u0648\u0639 \u0645\u0642\u0627\u0644\u0629 \u0645\u062e\u0635\u0635 \u062a\u062c\u0631\u064a\u0628\u064a\u060c \u0633\u064a\u062e\u0632\u0646 \u0645\u0646\u0627\u0637\u0642 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0645\u0634\u0627\u0631 \u0625\u0644\u064a\u0647\u0627 \u0628\u0648\u0627\u0633\u0637\u0629 \u0627\u0644\u0642\u0648\u0627\u0644\u0628."],"Widgets screen content":["\u0645\u062d\u062a\u0648\u0649 \u0634\u0627\u0634\u0629 \u0627\u0644\u0648\u062f\u062c\u0627\u062a"],"Widgets advanced settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0648\u062f\u062c\u0627\u062a \u0627\u0644\u0645\u062a\u0642\u062f\u0645\u0629"],"(experimental)":["(\u062a\u062c\u0631\u064a\u0628\u064a)"],"Block Areas":["\u0645\u0646\u0627\u0637\u0642 \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"Widgets screen top bar":["\u0634\u0631\u064a\u0637 \u0627\u0644\u0634\u0627\u0634\u0629 \u0627\u0644\u0639\u0644\u0648\u064a \u0644\u0644\u0648\u062f\u062c\u0627\u062a"],"This color combination may be hard for people to read.":["\u0642\u062f \u064a\u0643\u0648\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u0632\u064a\u062c \u0627\u0644\u0644\u0648\u0646\u064a \u0635\u0639\u0628\u064b\u0627 \u0639\u0644\u0649 \u0627\u0644\u0642\u0631\u0651\u0627\u0621."],"There is no poster image currently selected":["\u0644\u0627 \u062a\u0648\u062c\u062f \u0635\u0648\u0631\u0629 \u0645\u0644\u0635\u0642 \u0645\u062d\u062f\u062f\u0629 \u062d\u0627\u0644\u064a\u064b\u0627"],"The current poster image url is %s":["\u0631\u0627\u0628\u0637 \u0635\u0648\u0631\u0629 \u0627\u0644\u0645\u0644\u0635\u0642 \u0627\u0644\u062d\u0627\u0644\u064a %s"],section:["\u0642\u0633\u0645"],row:["row"],wrapper:["\u063a\u0644\u0627\u0641"],container:["\u062d\u0627\u0648\u064a\u0629"],"A block that groups other blocks.":["\u0625\u0636\u0627\u0641\u0629 \u0645\u0643\u0648\u0651\u0646 \u064a\u062c\u0645\u0639 \u0645\u062c\u0645\u0648\u0639\u0629 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0623\u062e\u0631\u0649."],Group:["\u0645\u062c\u0645\u0648\u0639\u0629"],"Crop image to fill entire column":["\u0642\u0635\u0651 \u0627\u0644\u0635\u0648\u0631\u0629 \u0644\u0645\u0644\u0621 \u0627\u0644\u0639\u0645\u0648\u062f \u0628\u0623\u0643\u0645\u0644\u0647"],"Play inline":["\u062a\u0634\u063a\u064a\u0644 \u0645\u0636\u0645\u0651\u0646"],"Leave empty if the image is purely decorative.":["\u0627\u062a\u0631\u0643\u0647 \u0641\u0627\u0631\u063a\u064b\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646\u062a \u0627\u0644\u0635\u0648\u0631\u0629 \u0632\u062e\u0631\u0641\u064a\u0629 \u0623\u0648 \u0639\u0646\u0635\u0631 \u062a\u0632\u064a\u064a\u0646 \u0628\u0634\u0643\u0644 \u0639\u0627\u0645."],"Describe the purpose of the image":["\u0648\u0635\u0641 \u0627\u0644\u063a\u0631\u0636 \u0645\u0646 \u0627\u0644\u0635\u0648\u0631\u0629"],"Add a block":["\u0625\u0636\u0627\u0641\u0629 \u0645\u0643\u0648\u0651\u0646"],"Block vertical alignment setting label\x04Change vertical alignment":["\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0639\u0645\u0648\u062f\u064a\u0629"],"Block vertical alignment setting\x04Vertically Align Bottom":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0639\u0645\u0648\u062f\u064a\u0629 \u0623\u0633\u0641\u0644"],"Block vertical alignment setting\x04Vertically Align Middle":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0639\u0645\u0648\u062f\u064a\u0629 \u0648\u0633\u0637"],"Replace Image":["\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0627\u0644\u0635\u0648\u0631\u0629"],"Block vertical alignment setting\x04Vertically Align Top":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0639\u0645\u0648\u062f\u064a\u0629 \u0623\u0639\u0644\u0649"],"Display a legacy widget.":["\u0639\u0631\u0636 \u0648\u062f\u062c\u062a \u0645\u062e\u0632\u0651\u064e\u0646."],"Legacy Widget (Experimental)":["\u0648\u062f\u062c\u062a \u0645\u062e\u0632\u0651\u064e\u0646 (\u062a\u062c\u0631\u064a\u0628\u064a)"],"Change widget":["\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0648\u062f\u062c\u062a"],"Legacy Widget":["\u0648\u062f\u062c\u062a \u0645\u062e\u0632\u0651\u064e\u0646"],"You don't have permissions to use widgets on this site.":["\u0644\u064a\u0633 \u0644\u062f\u064a\u0643 \u0623\u0630\u0648\u0646\u0627\u062a \u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0648\u062f\u062c\u0627\u062a \u0639\u0644\u0649 \u0647\u0630\u0627 \u0627\u0644\u0645\u0648\u0642\u0639."],"Select a legacy widget to display:":["\u062a\u062d\u062f\u064a\u062f \u0648\u062f\u062c\u062a \u0645\u062e\u0632\u0651\u064e\u0646 \u0644\u0639\u0631\u0636\u0647:"],"There are no widgets available.":["\u0644\u0627 \u062a\u0648\u062c\u062f \u0648\u062f\u062c\u0627\u062a \u0645\u062a\u0627\u062d\u0629."],"Change block type or style":["\u062a\u063a\u064a\u064a\u0631 \u0646\u0648\u0639 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0623\u0648 \u0627\u0644\u062a\u0646\u0633\u064a\u0642"],"keyboard key\x04Space":["\u0632\u0631 \u0627\u0644\u0645\u0633\u0627\u0641\u0629"],"keyboard key\x04Backspace":["\u0632\u0631 Backspace"],"More rich text controls":["\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u062a\u062d\u0643\u0645 \u0644\u0644\u0646\u0635\u0651"],"Search Terms":["\u0645\u0635\u0637\u0644\u062d\u0627\u062a \u0627\u0644\u0628\u062d\u062b"],"Exit the Editor":["\u0627\u0644\u062e\u0631\u0648\u062c \u0645\u0646 \u0627\u0644\u0645\u064f\u062d\u0631\u0631"],"Block Manager":["\u0645\u062f\u064a\u0631 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Class name of the widget.":["\u0627\u0633\u0645 \u0641\u0626\u0629 \u0627\u0644\u0648\u062f\u062c\u062a."],"Sorry, you are not allowed to access widgets on this site.":["\u0639\u0630\u0631\u064b\u0627\u060c \u063a\u064a\u0631 \u0645\u0633\u0645\u0648\u062d \u0644\u0643 \u0628\u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0627\u0644\u0648\u062f\u062c\u0627\u062a \u0639\u0644\u0649 \u0647\u0630\u0627 \u0627\u0644\u0645\u0648\u0642\u0639."],"Widgets (beta)":["\u0648\u062f\u062c\u0627\u062a (\u062a\u062c\u0631\u064a\u0628\u064a)"],link:["\u0631\u0627\u0628\u0637"],"Embedded content from %s can't be previewed in the editor.":["\u0644\u0627 \u064a\u0645\u0643\u0646 \u0645\u0639\u0627\u064a\u0646\u0629 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u064f\u0636\u0645\u0651\u0646 \u0645\u0646 %s \u0641\u064a \u0627\u0644\u0645\u062d\u0631\u0631."],"Custom Color":["\u0644\u0648\u0646 \u0645\u062e\u0635\u0635"],"Prompt visitors to take action with a button-style link.":["\u062a\u0648\u062c\u064a\u0647 \u0627\u0644\u0632\u0648\u0651\u0627\u0631 \u0644\u0627\u062a\u062e\u0627\u0630 \u0625\u062c\u0631\u0627\u0621 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0631\u0627\u0628\u0637 \u0639\u0644\u0649 \u0634\u0643\u0644 \u0632\u0631."],"Stick to the top of the blog":["\u0627\u0644\u062a\u062b\u0628\u064a\u062a \u0628\u0627\u0644\u062c\u0632\u0621 \u0627\u0644\u0639\u0644\u0648\u064a \u0645\u0646 \u0627\u0644\u0645\u062f\u0648\u0646\u0629"],"Read about permalinks":["\u0625\u0642\u0631\u0623 \u062d\u0648\u0644 \u0627\u0644\u0631\u0648\u0627\u0628\u0637 \u0627\u0644\u062f\u0627\u0626\u0645\u0629"],"The last part of the URL.":["\u0627\u0644\u062c\u0632\u0621 \u0627\u0644\u0623\u062e\u064a\u0631 \u0645\u0646 \u0627\u0644\u0631\u0627\u0628\u0637."],"URL Slug":["\u0631\u0627\u0628\u0637 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0644\u0637\u064a\u0641 Slug"],"A cloud of your most used tags.":["\u0633\u062d\u0627\u0628\u0629 \u0645\u0646 \u0648\u0633\u0648\u0645\u0643 \u0627\u0644\u0623\u0643\u062b\u0631 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u064b\u0627."],"Tag Cloud":["\u0633\u062d\u0627\u0628\u0629 \u0648\u0633\u0648\u0645"],Taxonomy:["\u0641\u0626\u0629"],"Tag Cloud Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0633\u062d\u0627\u0628\u0629 \u0627\u0644\u0648\u0633\u0648\u0645"],"- Select -":["- \u062a\u062d\u062f\u064a\u062f -"],Default:["\u0627\u0641\u062a\u0631\u0627\u0636\u064a"],find:["\u0625\u064a\u062c\u0627\u062f"],"Help visitors find your content.":["\u0645\u0633\u0627\u0639\u062f\u0629 \u0627\u0644\u0632\u0648\u0627\u0631 \u0641\u064a \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643."],Search:["\u0628\u062d\u062b"],"Add button text\u2026":["\u0625\u0636\u0627\u0641\u0629 \u0646\u0635\u0651 \u0644\u0644\u0632\u0631\u2026"],"Button text":["\u0646\u0635\u0651 \u0627\u0644\u0632\u0631"],"Optional placeholder\u2026":["\u0639\u0646\u0635\u0631 \u0646\u0627\u0626\u0628 \u0627\u062e\u062a\u064a\u0627\u0631\u064a\u2026"],"Optional placeholder text":["\u0646\u0635 \u0639\u0646\u0635\u0631 \u0646\u0627\u0626\u0628 \u0627\u062e\u062a\u064a\u0627\u0631\u064a"],"Add label\u2026":["\u0625\u0636\u0627\u0641\u0629 \u062a\u0633\u0645\u064a\u0629\u2026"],"Label text":["\u0646\u0635 \u0627\u0644\u062a\u0633\u0645\u064a\u0629"],"image %1$d of %2$d in gallery":["\u0635\u0648\u0631\u0629 %1$d \u0645\u0646 %2$d \u0641\u064a \u0627\u0644\u0645\u0639\u0631\u0636"],archive:["\u0627\u0644\u0623\u0631\u0634\u064a\u0641"],posts:["\u0645\u0642\u0627\u0644\u0627\u062a"],"A calendar of your site\u2019s posts.":["\u0625\u0636\u0627\u0641\u0629 \u062a\u0642\u0648\u064a\u0645 \u0644\u0645\u0642\u0627\u0644\u0627\u062a \u0645\u0648\u0642\u0639\u0643."],Calendar:["\u0627\u0644\u062a\u0642\u0648\u064a\u0645"],by:["\u0628\u0648\u0627\u0633\u0637\u0629"],"An error has occurred, which probably means the feed is down. Try again later.":["\u062d\u062f\u062b \u062e\u0637\u0623 \u0645\u0627\u060c \u0645\u0645\u0627 \u064a\u0639\u0646\u064a \u0623\u0646 \u0627\u0644\u062e\u0644\u0627\u0635\u0629 \u0645\u0639\u0637\u0644\u0629. \u062d\u0627\u0648\u0644 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649 \u0641\u064a \u0648\u0642\u062a \u0644\u0627\u062d\u0642."],"RSS Error:":["\u062e\u0637\u0623 RSS:"],"block style\x04Default":["\u0627\u0641\u062a\u0631\u0627\u0636\u064a"],"Fullscreen mode deactivated":["\u062a\u0645 \u062a\u0639\u0637\u064a\u0644 \u0648\u0636\u0639 \u0627\u0644\u0634\u0627\u0634\u0629 \u0627\u0644\u0643\u0627\u0645\u0644\u0629"],"Fullscreen mode activated":["\u062a\u0645\u0651 \u062a\u0641\u0639\u064a\u0644 \u0648\u0636\u0639 \u0627\u0644\u0634\u0627\u0634\u0629 \u0627\u0644\u0643\u0627\u0645\u0644\u0629"],"Spotlight mode deactivated":["\u062a\u0645 \u062a\u0639\u0637\u064a\u0644 \u0648\u0636\u0639 \u062a\u0633\u0644\u064a\u0637 \u0627\u0644\u0636\u0648\u0621"],"Spotlight mode activated":["\u062a\u0645\u0651 \u062a\u0641\u0639\u064a\u0644 \u0648\u0636\u0639 \u062a\u0633\u0644\u064a\u0637 \u0627\u0644\u0636\u0648\u0621"],"Top toolbar deactivated":["\u062a\u0645 \u062a\u0639\u0637\u064a\u0644 \u0634\u0631\u064a\u0637 \u0627\u0644\u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0639\u0644\u0648\u064a"],"Top toolbar activated":["\u062a\u0645\u0651 \u062a\u0641\u0639\u064a\u0644 \u0634\u0631\u064a\u0637 \u0627\u0644\u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0639\u0644\u0648\u064a"],Back:["\u0631\u062c\u0648\u0639"],"Feature activated":["\u062a\u0645\u0651 \u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0645\u064a\u0632\u0629"],"Feature deactivated":["\u062a\u0645 \u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0645\u064a\u0632\u0629"],"Vertical Pos.":["\u0627\u0644\u0648\u0636\u0639 \u0627\u0644\u0639\u0645\u0648\u062f\u064a"],"Horizontal Pos.":["\u0627\u0644\u0648\u0636\u0639 \u0627\u0644\u0623\u0641\u0642\u064a"],feed:["\u062e\u0644\u0627\u0635\u0629 Feed"],atom:["Atom"],"Display entries from any RSS or Atom feed.":["\u0639\u0631\u0636 \u0627\u0644\u0625\u062f\u062e\u0627\u0644\u0627\u062a \u0645\u0646 \u0623\u064a \u0631\u0627\u0628\u0637 \u062e\u0644\u0627\u0635\u0629 RSS \u0623\u0648 Atom."],RSS:["RSS"],"Max number of words in excerpt":["\u0623\u0642\u0635\u0649 \u0639\u062f\u062f \u0645\u0646 \u0627\u0644\u0643\u0644\u0645\u0627\u062a \u0641\u064a \u0627\u0644\u0645\u0642\u062a\u0637\u0641"],"Display excerpt":["\u0639\u0631\u0636 \u0627\u0644\u0645\u0642\u062a\u0637\u0641"],"Display date":["\u0639\u0631\u0636 \u0627\u0644\u062a\u0627\u0631\u064a\u062e"],"Display author":["\u0639\u0631\u0636 \u0627\u0644\u0643\u0627\u062a\u0628"],"RSS Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a RSS"],"Edit RSS URL":["\u062a\u062d\u0631\u064a\u0631 \u0631\u0627\u0628\u0637 RSS"],"Content before this block will be shown in the excerpt on your archives page.":["\u0633\u064a\u062a\u0645\u0651 \u0639\u0631\u0636 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u0639\u0631\u0648\u0636 \u0642\u0628\u0644 \u0647\u0630\u0627 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0641\u064a \u0627\u0644\u0645\u0642\u062a\u0637\u0641 \u0627\u0644\u0645\u0648\u062c\u0648\u062f \u0639\u0644\u0649 \u0635\u0641\u062d\u0629 \u0627\u0644\u0623\u0631\u0634\u064a\u0641\u0627\u062a."],"Hide the excerpt on the full content page":["\u0625\u062e\u0641\u0627\u0621 \u0627\u0644\u0645\u0642\u062a\u0637\u0641 \u0641\u064a \u0635\u0641\u062d\u0629 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0643\u0627\u0645\u0644\u0629"],"The excerpt is visible.":["\u0627\u0644\u0645\u0642\u062a\u0637\u0641 \u0645\u0631\u0626\u064a."],"The excerpt is hidden.":["\u0627\u0644\u0645\u0642\u062a\u0637\u0641 \u0645\u062e\u0641\u064a."],"Sorry, this content could not be embedded.":["\u0639\u0630\u0631\u064b\u0627\u060c \u0644\u0627 \u064a\u0645\u0643\u0646 \u062a\u0636\u0645\u064a\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u062d\u062a\u0648\u0649."],"Embed Amazon Kindle content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Amazon Kindle."],ebook:["\u0643\u062a\u0627\u0628 \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a"],"Embed Crowdsignal (formerly Polldaddy) content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Crowdsignal (\u064a\u0639\u0631\u0641 \u0628\u0640 Polldaddy \u0633\u0627\u0628\u0642\u064b\u0627)."],"Focal Point Picker":["\u0645\u064f\u0644\u062a\u0642\u0637 \u0627\u0644\u0646\u0642\u0637\u0629 \u0627\u0644\u0645\u062d\u0648\u0631\u064a\u0629"],Underline:["\u062a\u062d\u062a\u0647 \u062e\u0637"],"Attempt Block Recovery":["\u0645\u062d\u0627\u0648\u0644\u0629 \u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0645\u0643\u0648\u0651\u0646"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["\u0627\u0644\u0645\u062d\u062a\u0648\u0649\u2026"],"button label\x04Convert to link":["\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649 \u0631\u0627\u0628\u0637"],"button label\x04Try again":["\u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649"],"Editor tips":["\u0625\u0631\u0634\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u064f\u062d\u0631\u0631"],"Block (selected)":["\u0645\u0643\u0648\u0651\u0646 (\u0645\u064f\u062d\u062f\u062f)"],"Document (selected)":["\u0645\u0633\u062a\u0646\u062f (\u0645\u064f\u062d\u062f\u062f)"],"%d word":["%d \u0643\u0644\u0645\u0629","\u0643\u0644\u0645\u0629 \u0648\u0627\u062d\u062f\u0629 %d","\u0643\u0644\u0645\u062a\u064a\u0646 %d","%d \u0643\u0644\u0645\u0627\u062a","%d \u0643\u0644\u0645\u0629","%d \u0643\u0644\u0645\u0629"],"Top Toolbar":["\u0634\u0631\u064a\u0637 \u0627\u0644\u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0639\u0644\u0648\u064a"],"Link Rel":["\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0631\u0627\u0628\u0637 Rel"],"Link CSS Class":["\u0641\u0626\u0629 \u0627\u0644\u0631\u0627\u0628\u0637 (CSS Class)"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u0623\u0646\u0634\u0626 \u0645\u062d\u062a\u0648\u0649\u060c \u062b\u0645 \u0642\u0645 \u0628\u062d\u0641\u0638\u0647 \u0644\u062a\u062a\u0645\u0643\u0651\u0646 \u0623\u0646\u062a \u0648\u0627\u0644\u0645\u0633\u0627\u0647\u0645\u064a\u0646 \u0627\u0644\u0622\u062e\u0631\u064a\u0646 \u0645\u0646 \u0625\u0639\u0627\u062f\u0629 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647 \u0639\u0628\u0631 \u0645\u0648\u0642\u0639\u0643. \u062d\u062f\u0651\u062b \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u060c \u0648\u0633\u064a\u062a\u0645 \u062a\u0637\u0628\u064a\u0642 \u0627\u0644\u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0641\u064a \u0643\u0644 \u0645\u0643\u0627\u0646 \u062a\u0645 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0641\u064a\u0647."],"To edit the featured image, you need permission to upload media.":["\u0644\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0635\u0648\u0631\u0629 \u0627\u0644\u0628\u0627\u0631\u0632\u0629\u060c \u062a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0635\u0644\u0627\u062d\u064a\u0629 \u0644\u0631\u0641\u0639 \u0627\u0644\u0648\u0633\u0627\u0626\u0637."],"To edit this block, you need permission to upload media.":["\u0644\u062a\u062d\u0631\u064a\u0631 \u0647\u0630\u0627 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u060c \u062a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0635\u0644\u0627\u062d\u064a\u0629 \u0644\u0631\u0641\u0639 \u0627\u0644\u0648\u0633\u0627\u0626\u0637."],"(selected block)":["(\u0645\u0643\u0648\u0651\u0646 \u0645\u064f\u062d\u062f\u062f)"],"Block tools":["\u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],Permalink:["\u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u062f\u0627\u0626\u0645"],"This image has an empty alt attribute":["\u062a\u062d\u062a\u0648\u064a \u0647\u0630\u0647 \u0627\u0644\u0635\u0648\u0631\u0629 \u0639\u0644\u0649 \u0633\u0645\u0629 alt \u0641\u0627\u0631\u063a\u0629"],"This image has an empty alt attribute; its file name is %s":["\u062a\u062d\u062a\u0648\u064a \u0647\u0630\u0647 \u0627\u0644\u0635\u0648\u0631\u0629 \u0639\u0644\u0649 \u0633\u0645\u0629 alt \u0641\u0627\u0631\u063a\u0629; \u0627\u0633\u0645 \u0627\u0644\u0645\u0644\u0641 \u0647\u0648 %s"],"Block area reverted to draft.":["\u062a\u0645\u0651 \u0625\u0639\u0627\u062f\u0629 \u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0625\u0644\u0649 \u062d\u0627\u0644\u0629 \u0627\u0644\u0645\u0633\u0648\u062f\u0629."],"Block area published privately.":["\u062a\u0645\u0651 \u0646\u0634\u0631 \u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0628\u0634\u0643\u0644 \u062e\u0627\u0635."],"No block areas found in Trash.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0646\u0627\u0637\u0642 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0641\u064a \u0633\u0644\u0629 \u0627\u0644\u0645\u064f\u0647\u0645\u0644\u0627\u062a."],"Block\x04Add New":["\u0623\u0636\u0641 \u062c\u062f\u064a\u062f\u0627\u064b"],"add new on admin bar\x04Block Area":["\u0645\u0646\u0637\u0642\u0629 \u0645\u0643\u0648\u0651\u0646"],"Link inserted.":["\u062a\u0645\u0651 \u0625\u062f\u0631\u0627\u062c \u0627\u0644\u0631\u0627\u0628\u0637."],"Warning: the link has been inserted but may have errors. Please test it.":["\u062a\u062d\u0630\u064a\u0631: \u0644\u0642\u062f \u062a\u0645 \u0625\u062f\u0631\u0627\u062c \u0627\u0644\u0631\u0627\u0628\u0637 \u0648\u0644\u0643\u0646 \u0642\u062f \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0623\u062e\u0637\u0627\u0621. \u064a\u0631\u062c\u0649 \u0627\u062e\u062a\u0628\u0627\u0631 \u0627\u0644\u0631\u0627\u0628\u0637."],"%s block selected.":["\u0644\u0645 \u064a\u062a\u0645 \u062a\u062d\u062f\u064a\u062f \u0623\u064a \u0645\u0643\u0648\u0651\u0646.","\u062a\u0645\u0651 \u062a\u062d\u062f\u064a\u062f \u0645\u0643\u0648\u0651\u0646 \u0648\u0627\u062d\u062f.","\u062a\u0645\u0651 \u062a\u062d\u062f\u064a\u062f \u0645\u0643\u0648\u0651\u0646\u064a\u0646.","\u062a\u0645\u0651 \u062a\u062d\u062f\u064a\u062f %s \u0645\u0643\u0648\u0651\u0646\u0627\u062a.","\u062a\u0645\u0651 \u062a\u062d\u062f\u064a\u062f %s \u0645\u0643\u0648\u0651\u0646.","\u062a\u0645\u0651 \u062a\u062d\u062f\u064a\u062f %s \u0645\u0643\u0648\u0651\u0646."],Thumbnail:["\u0635\u0648\u0631\u0629 \u0645\u0635\u063a\u0631\u0629"],"Full Size":["\u0627\u0644\u062d\u062c\u0645 \u0627\u0644\u0643\u0627\u0645\u0644"],"Link selected.":["\u062a\u0645\u0651 \u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0631\u0627\u0628\u0637."],"Start writing with text or HTML":["\u0627\u0628\u062f\u0623 \u0627\u0644\u0643\u062a\u0627\u0628\u0629 \u0628\u0640 \u0646\u0635\u0651 \u0623\u0648 \u0634\u0641\u0631\u0629 HTML"],"Type text or HTML":["\u0627\u0643\u062a\u0628 \u0646\u0635\u0651\u064b\u0627 \u0623\u0648 \u0634\u0641\u0631\u0629 HTML"],"Block icon":["\u0623\u064a\u0642\u0648\u0646\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"Align Text Right":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0646\u0635 \u0625\u0644\u0649 \u0627\u0644\u064a\u0645\u064a\u0646"],"Align Text Center":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0646\u0635 \u0625\u0644\u0649 \u0627\u0644\u0648\u0633\u0637"],"Align Text Left":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0646\u0635 \u0625\u0644\u0649 \u0627\u0644\u064a\u0633\u0627\u0631"],"Start writing or type / to choose a block":["\u0627\u0628\u062f\u0623 \u0628\u0627\u0644\u0643\u062a\u0627\u0628\u0629 \u0623\u0648 \u0627\u0643\u062a\u0628 / \u0644\u0627\u062e\u062a\u064a\u0627\u0631 \u0645\u0643\u0648\u0651\u0646"],"Empty block; start writing or type forward slash to choose a block":["\u0645\u0643\u0648\u0651\u0646 \u0641\u0627\u0631\u063a; \u0627\u0628\u062f\u0623 \u0628\u0627\u0644\u0643\u062a\u0627\u0628\u0629 \u0623\u0648 \u0627\u0643\u062a\u0628 \u0634\u0631\u0637\u0629 \u0645\u0627\u0626\u0644\u0629 \u0644\u0627\u062e\u062a\u064a\u0627\u0631 \u0645\u0643\u0648\u0651\u0646"],"Paragraph block":["\u0645\u0643\u0648\u0651\u0646 \u0641\u0642\u0631\u0629"],"Page Break":["\u0641\u0627\u0635\u0644 \u0627\u0644\u0635\u0641\u062d\u0629"],"Stack on mobile":["\u062a\u062c\u0645\u064a\u0639 \u0639\u0644\u0649 \u0627\u0644\u062c\u0648\u0627\u0644"],Annotation:["\u062a\u0639\u0644\u064a\u0642\u0627\u062a \u062a\u0648\u0636\u064a\u062d\u064a\u0629"],"Drag images, upload new ones or select files from your library.":["\u0627\u0633\u062d\u0628 \u0635\u0648\u0631\u064b\u0627\u060c \u0627\u0631\u0641\u0639 \u0635\u0648\u0631\u0629 \u062c\u062f\u064a\u062f\u0629 \u0623\u0648 \u062a\u062d\u062f\u064a\u062f \u0645\u0644\u0641\u0627\u062a \u0645\u0646 \u0645\u0643\u062a\u0628\u062a\u0643."],"blocks\x04Most Used":["\u0627\u0644\u0623\u0643\u062b\u0631 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u064b\u0627"],"imperative verb\x04Resolve":["\u0625\u0635\u0644\u0627\u062d"],"font size name\x04Huge":["\u0636\u062e\u0645"],"font size name\x04Large":["\u0643\u0628\u064a\u0631"],"font size name\x04Medium":["\u0645\u062a\u0648\u0633\u0637"],"font size name\x04Small":["\u0635\u063a\u064a\u0631"],"font size name\x04Normal":["\u0639\u0627\u062f\u064a"],"keyboard button\x04Enter":["\u0625\u062f\u062e\u0627\u0644"],"button label\x04Import":["\u0627\u0633\u062a\u064a\u0631\u0627\u062f"],"button label\x04Download":["\u062a\u0646\u0632\u064a\u0644"],"button label\x04Embed":["\u062a\u0636\u0645\u064a\u0646"],"block title\x04Embed":["\u062a\u0636\u0645\u064a\u0646"],"block title\x04Classic":["\u062a\u0642\u0644\u064a\u062f\u064a"],"block style\x04Large":["\u0643\u0628\u064a\u0631"],"%s (opens in a new tab)":["%s (\u064a\u064f\u0641\u062a\u062d \u0641\u064a \u0639\u0644\u0627\u0645\u0629 \u062a\u0628\u0648\u064a\u0628 \u062c\u062f\u064a\u062f\u0629)"],"Link edited.":["\u062a\u0645\u0651 \u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0631\u0627\u0628\u0637."],"Link removed.":["\u062a\u0645\u0651 \u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0631\u0627\u0628\u0637."],media:["\u0648\u0633\u0627\u0626\u0637"],"Double-check your settings before publishing.":["\u062a\u062d\u0642\u0642 \u0645\u062c\u062f\u062f\u064b\u0627 \u0645\u0646 \u0625\u0639\u062f\u0627\u062f\u0627\u062a\u0643 \u0642\u0628\u0644 \u0627\u0644\u0646\u0634\u0631."],"Generating preview\u2026":["\u062a\u062c\u0647\u064a\u0632 \u0627\u0644\u0645\u0639\u0627\u064a\u0646\u0629\u2026"],"Edit or update the image":["\u062a\u062d\u0631\u064a\u0631 \u0623\u0648 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0635\u0648\u0631\u0629"],Media:["\u0648\u0633\u0627\u0626\u0637"],"Navigate to the nearest toolbar.":["\u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0625\u0644\u0649 \u0623\u0642\u0631\u0628 \u0634\u0631\u064a\u0637 \u0623\u062f\u0648\u0627\u062a."],"Document tools":["\u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u0646\u062f"],"Document and block tools":["\u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u0646\u062f \u0648\u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"Embed a video from your media library or upload a new one.":["\u062a\u0636\u0645\u064a\u0646 \u0641\u064a\u062f\u064a\u0648 \u0645\u0646 \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643 \u0623\u0648 \u0627\u0631\u0641\u0639 \u0645\u0644\u0641 \u062c\u062f\u064a\u062f."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u0625\u062f\u0631\u0627\u062c \u0628\u064a\u062a \u0634\u0650\u0639\u0631. \u0627\u0633\u062a\u062e\u062f\u0645 \u062a\u0646\u0633\u064a\u0642\u0627\u062a \u0627\u0644\u0645\u0633\u0627\u0641\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629. \u0623\u0648 \u0627\u0642\u062a\u0628\u0627\u0633 \u0643\u0644\u0645\u0627\u062a \u0644\u0642\u0635\u064a\u062f\u0629."],"Add white space between blocks and customize its height.":["\u0625\u0636\u0627\u0641\u0629 \u0645\u0633\u0627\u0641\u0629 \u0628\u064a\u0636\u0627\u0621 \u0628\u064a\u0646 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0648\u062a\u062e\u0635\u064a\u0635 \u0627\u0631\u062a\u0641\u0627\u0639\u0647\u0627."],"Insert additional custom elements with a WordPress shortcode.":["\u0625\u062f\u0631\u0627\u062c \u0639\u0646\u0627\u0635\u0631 \u0645\u062e\u0635\u0635\u0629 \u0625\u0636\u0627\u0641\u064a\u0629 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0623\u0643\u0648\u0627\u062f \u0627\u0644\u0642\u0635\u064a\u0631\u0629 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0640 \u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633."],"Create a break between ideas or sections with a horizontal separator.":["\u0625\u0646\u0634\u0627\u0621 \u0641\u0627\u0635\u0644 \u0628\u064a\u0646 \u0627\u0644\u0623\u0641\u0643\u0627\u0631 \u0623\u0648 \u0627\u0644\u0623\u0642\u0633\u0627\u0645 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0641\u0627\u0635\u0644 \u0623\u0641\u0642\u064a."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u0645\u0646\u062d \u0627\u0644\u0646\u0635\u0651 \u0627\u0644\u0645\u0642\u062a\u0628\u0633 \u062a\u0631\u0643\u064a\u0632\u0627\u064b \u0628\u0635\u0631\u064a\u0627\u064b. \"\u0641\u064a \u0627\u0642\u062a\u0628\u0627\u0633\u0627\u062a \u0627\u0644\u0622\u062e\u0631\u064a\u0646\u060c \u0646\u062d\u0646 \u0646\u0630\u0643\u0651\u0631 \u0623\u0646\u0641\u0633\u0646\u0627.\" \u2014 \u062e\u0648\u0644\u064a\u0648 \u0643\u0648\u0631\u062a\u0627\u062b\u0631"],"Give special visual emphasis to a quote from your text.":["\u0645\u0646\u062d \u0627\u0644\u062a\u0631\u0643\u064a\u0632 \u0627\u0644\u0628\u0635\u0631\u064a \u0639\u0644\u0649 \u0627\u0642\u062a\u0628\u0627\u0633 \u0645\u0646 \u0627\u0644\u0646\u0635 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643."],"Start with the building block of all narrative.":["\u0627\u0628\u062f\u0623 \u0628\u0646\u0627\u0621 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0644\u0643\u0644 \u0627\u0644\u062d\u0643\u0627\u064a\u0627."],"Separate your content into a multi-page experience.":["\u0641\u0635\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u0628\u062a\u062c\u0631\u0628\u0629 \u0627\u0644\u0635\u0641\u062d\u0627\u062a \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629."],"Set media and words side-by-side for a richer layout.":["\u0636\u0628\u0637 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0648\u0627\u0644\u0643\u0644\u0645\u0627\u062a \u062c\u0646\u0628\u064b\u0627 \u0625\u0644\u0649 \u062c\u0646\u0628 \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u062a\u0646\u0633\u064a\u0642 \u0623\u0643\u062b\u0631 \u062b\u0631\u0627\u0621\u064b\u0627."],"Media & Text Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0648\u0633\u0627\u0626\u0637 \u0645\u0639 \u0646\u0635\u0651"],"Create a bulleted or numbered list.":["\u0625\u0646\u0634\u0627\u0621 \u0642\u0627\u0626\u0645\u0629 \u0646\u0642\u0627\u0637 \u0623\u0648 \u0642\u0627\u0626\u0645\u0629 \u0645\u0631\u0642\u0651\u0645\u0629."],"Display a list of your most recent comments.":["\u0639\u0631\u0636 \u0642\u0627\u0626\u0645\u0629 \u0628\u0623\u062d\u062f\u062b \u0627\u0644\u062a\u0639\u0644\u064a\u0642\u0627\u062a."],"Insert an image to make a visual statement.":["\u0625\u062f\u0631\u0627\u062c \u0635\u0648\u0631\u0629 \u0645\u0646 \u0623\u062c\u0644 \u062c\u0630\u0628 \u0627\u0644\u0627\u0646\u062a\u0628\u0627\u0647."],"Add custom HTML code and preview it as you edit.":["\u0625\u0636\u0627\u0641\u0629 \u0634\u0641\u0631\u0629 HTML \u0645\u062e\u0635\u0635\u0629 \u0648\u0645\u0639\u0627\u064a\u0646\u062a\u0647\u0627 \u0623\u062b\u0646\u0627\u0621 \u0627\u0644\u062a\u062d\u0631\u064a\u0631."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u062a\u0642\u062f\u064a\u0645 \u0623\u0642\u0633\u0627\u0645 \u062c\u062f\u064a\u062f\u0629 \u0648\u062a\u0646\u0638\u064a\u0645 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0644\u0645\u0633\u0627\u0639\u062f\u0629 \u0627\u0644\u0632\u0648\u0651\u0627\u0631 (\u0648\u0645\u062d\u0631\u0643\u0627\u062a \u0627\u0644\u0628\u062d\u062b) \u0644\u0641\u0647\u0645 \u0628\u0646\u064a\u0629 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643."],"Display multiple images in a rich gallery.":["\u0639\u0631\u0636 \u0635\u0648\u0631 \u0645\u062a\u0639\u062f\u062f\u0629 \u0641\u064a \u0645\u0639\u0631\u0636 \u0635\u0648\u0631 \u062b\u0631\u064a\u0651."],"Add a link to a downloadable file.":["\u0623\u0636\u0641 \u0631\u0627\u0628\u0637\u064b\u0627 \u0625\u0644\u0649 \u0645\u0644\u0641 \u0642\u0627\u0628\u0644 \u0644\u0644\u062a\u0646\u0632\u064a\u0644."],"Embed videos, images, tweets, audio, and other content from external sources.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u0642\u0627\u0637\u0639 \u0641\u064a\u062f\u064a\u0648\u060c \u0635\u0648\u0631\u060c \u062a\u063a\u0631\u064a\u062f\u0627\u062a\u060c \u0635\u0648\u062a\u060c \u0648\u0645\u062d\u062a\u0648\u064a\u0627\u062a \u0623\u062e\u0631\u0649 \u0645\u0646 \u0645\u0635\u0627\u062f\u0631 \u062e\u0627\u0631\u062c\u064a\u0629."],"Resize for smaller devices":["\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u062d\u062c\u0645 \u0645\u0646 \u0623\u062c\u0644 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0635\u063a\u064a\u0631\u0629"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u0647\u0630\u0627 \u0627\u0644\u062a\u0636\u0645\u064a\u0646 \u0642\u062f \u0644\u0627 \u064a\u062d\u0627\u0641\u0638 \u0639\u0644\u0649 \u0646\u0633\u0628\u0629 \u0627\u0644\u0639\u0631\u0636 \u0625\u0644\u0649 \u0627\u0644\u0627\u0631\u062a\u0641\u0627\u0639 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0647 \u0639\u0646\u062f \u062a\u063a\u064a\u064a\u0631 \u062d\u062c\u0645 \u0627\u0644\u0645\u062a\u0635\u0641\u062d."],"This embed will preserve its aspect ratio when the browser is resized.":["\u0647\u0630\u0627 \u0627\u0644\u062a\u0636\u0645\u064a\u0646 \u0633\u0648\u0641 \u064a\u062d\u0627\u0641\u0638 \u0639\u0644\u0649 \u0646\u0633\u0628\u0629 \u0627\u0644\u0639\u0631\u0636 \u0625\u0644\u0649 \u0627\u0644\u0627\u0631\u062a\u0641\u0627\u0639 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0647 \u0639\u0646\u062f \u062a\u063a\u064a\u064a\u0631 \u062d\u062c\u0645 \u0627\u0644\u0645\u062a\u0635\u0641\u062d."],"Embed an Animoto video.":["\u062a\u0636\u0645\u064a\u0646 \u0641\u064a\u062f\u064a\u0648 Animoto."],"Embed a Vimeo video.":["\u062a\u0636\u0645\u064a\u0646 \u0641\u064a\u062f\u064a\u0648 Vimeo."],"Embed Flickr content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Flickr."],"Embed Spotify content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Spotify."],"Embed SoundCloud content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 SoundCloud."],"Embed a WordPress post.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u0642\u0627\u0644\u0629 \u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633."],"Embed an Instagram post.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u0646\u0634\u0648\u0631 Instagram."],"Embed a Facebook post.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u0646\u0634\u0648\u0631 \u0641\u064a\u0633 \u0628\u0648\u0643."],"Embed a WordPress.tv video.":["\u062a\u0636\u0645\u064a\u0646 \u0641\u064a\u062f\u064a\u0648 WordPress.tv."],"Embed a VideoPress video.":["\u062a\u0636\u0645\u064a\u0646 \u0641\u064a\u062f\u064a\u0648 VideoPress."],"Embed a Tumblr post.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u0646\u0634\u0648\u0631 Tumblr."],"Embed a TED video.":["\u062a\u0636\u0645\u064a\u0646 \u0641\u064a\u062f\u064a\u0648 TED."],"Embed Speaker Deck content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Speaker Deck."],"Embed a YouTube video.":["\u062a\u0636\u0645\u064a\u0646 \u0641\u064a\u062f\u064a\u0648 YouTube."],"Embed SmugMug content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 SmugMug."],"Embed Slideshare content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Slideshare."],"Embed Scribd content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Scribd."],"Embed Screencast content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Screencast."],"Embed ReverbNation content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 ReverbNation."],"Embed a Reddit thread.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u0648\u0636\u0648\u0639 Reddit."],"Embed Polldaddy content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Polldaddy."],"Embed Mixcloud content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Mixcloud."],"Embed a tweet.":["\u062a\u0636\u0645\u064a\u0646 \u062a\u063a\u0631\u064a\u062f\u0629 \u0645\u0646 \u062a\u0648\u064a\u062a\u0631."],"Embed Meetup.com content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Meetup.com."],"Embed Kickstarter content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Kickstarter."],"Embed Issuu content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Issuu."],"Embed Imgur content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Imgur."],"Embed Hulu content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Hulu."],"Embed a Dailymotion video.":["\u062a\u0636\u0645\u064a\u0646 \u0641\u064a\u062f\u064a\u0648 Dailymotion."],"Embed CollegeHumor content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 CollegeHumor."],"Embed Cloudup content.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u062d\u062a\u0648\u0649 Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["\u0625\u0636\u0627\u0641\u0629 \u0635\u0648\u0631\u0629 \u0623\u0648 \u0641\u064a\u062f\u064a\u0648\u060c \u0648\u0637\u0628\u0642\u0629 \u0645\u0646 \u0627\u0644\u0646\u0635 \u0641\u0648\u0642\u0647\u0627 \u2014 \u0631\u0627\u0626\u0639\u0629 \u0645\u0646 \u0623\u062c\u0644 \u0627\u0644\u062a\u0631\u0648\u064a\u0633\u0629."],"Display code snippets that respect your spacing and tabs.":["\u0639\u0631\u0636 \u0645\u0642\u062a\u0637\u0641\u0627\u062a \u0627\u0644\u0634\u0641\u0631\u0629 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643 \u0628\u0637\u0631\u064a\u0642\u0629 \u062a\u062d\u062a\u0631\u0645 \u0627\u0644\u0645\u0633\u0627\u0641\u0627\u062a \u0648\u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0643\u0648\u062f."],"Use the classic WordPress editor.":["\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u064f\u062d\u0631\u0631 \u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633 \u0627\u0644\u062a\u0642\u0644\u064a\u062f\u064a."],"Display a list of all categories.":["\u0639\u0631\u0636 \u0642\u0627\u0626\u0645\u0629 \u062c\u0645\u064a\u0639 \u0627\u0644\u062a\u0635\u0646\u064a\u0641\u0627\u062a."],"Embed a simple audio player.":["\u062a\u0636\u0645\u064a\u0646 \u0645\u0634\u063a\u0644 \u0635\u0648\u062a \u0628\u0633\u064a\u0637."],"noun\x04View":["\u0627\u0644\u0639\u0631\u0636"],"editor button\x04Left to right":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0645\u0646 \u0627\u0644\u064a\u0633\u0627\u0631 \u0644\u0644\u064a\u0645\u064a\u0646"],"Save as Pending":["\u062d\u0641\u0638 \u0628\u0625\u0646\u062a\u0638\u0627\u0631 \u0627\u0644\u0645\u0631\u0627\u062c\u0639\u0629"],"%s address":["\u0639\u0646\u0648\u0627\u0646 %s"],"Paste or type URL":["\u0644\u0635\u0642 \u0623\u0648 \u0643\u062a\u0627\u0628\u0629 \u0631\u0627\u0628\u0637 URL"],"Insert from URL":["\u0625\u062f\u0631\u0627\u062c \u0645\u0646 \u0631\u0627\u0628\u0637 URL"],"Block Navigator":["\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],Styles:["\u0627\u0644\u0623\u0646\u0645\u0627\u0637"],"Advanced Panels":["\u0644\u0648\u062d\u0627\u062a \u0645\u062a\u0642\u062f\u0645\u0629"],"Document Panels":["\u0644\u0648\u062d\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u0646\u062f"],General:["\u0639\u0627\u0645"],"Open the block navigation menu.":["\u0641\u062a\u062d \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062a\u0646\u0642\u0644 \u0628\u064a\u0646 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a."],"Work without distraction":["\u0627\u0644\u0639\u0645\u0644 \u062f\u0648\u0646 \u062a\u0634\u062a\u064a\u062a \u0627\u0644\u0627\u0646\u062a\u0628\u0627\u0647"],"Focus on one block at a time":["\u0627\u0644\u062a\u0631\u0643\u064a\u0632 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646 \u0648\u0627\u062d\u062f \u0623\u062b\u0646\u0627\u0621 \u0627\u0644\u062a\u062d\u0631\u064a\u0631"],"Access all block and document tools in a single place":["\u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u062c\u0645\u064a\u0639 \u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0648\u0627\u0644\u0645\u0633\u062a\u0646\u062f \u0641\u064a \u0645\u0643\u0627\u0646 \u0648\u0627\u062d\u062f"],Options:["\u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a"],"(opens in a new tab)":["(\u064a\u064f\u0641\u062a\u062d \u0641\u064a \u0639\u0644\u0627\u0645\u0629 \u062a\u0628\u0648\u064a\u0628 \u062c\u062f\u064a\u062f\u0629)"],Minutes:["\u062f\u0642\u0627\u0626\u0642"],Hours:["\u0633\u0627\u0639\u0627\u062a"],Time:["\u0627\u0644\u0648\u0642\u062a"],Year:["\u0627\u0644\u0633\u0646\u0629"],Day:["\u0627\u0644\u064a\u0648\u0645"],December:["\u062f\u064a\u0633\u0645\u0628\u0631"],November:["\u0646\u0648\u0641\u0645\u0628\u0631"],October:["\u0623\u0643\u062a\u0648\u0628\u0631"],September:["\u0633\u0628\u062a\u0645\u0628\u0631"],August:["\u0623\u063a\u0633\u0637\u0633"],July:["\u064a\u0648\u0644\u064a\u0648"],June:["\u064a\u0648\u0646\u064a\u0648"],May:["\u0645\u0627\u064a\u0648"],April:["\u0623\u0628\u0631\u064a\u0644"],March:["\u0645\u0627\u0631\u0633"],February:["\u0641\u0628\u0631\u0627\u064a\u0631"],January:["\u064a\u0646\u0627\u064a\u0631"],Month:["\u0627\u0644\u0634\u0647\u0631"],Date:["\u0627\u0644\u0648\u0642\u062a"],"Go to the first (home) or last (end) day of a week.":["\u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0625\u0644\u0649 \u0623\u0648\u0644 (\u0632\u0631\u0651 home) \u0623\u0648 \u0622\u062e\u0631 (\u0632\u0631\u0651 end) \u064a\u0648\u0645 \u0641\u064a \u0627\u0644\u0623\u0633\u0628\u0648\u0639."],"Home/End":["Home/End"],"Home and End":["\u0627\u0644\u0628\u062f\u0627\u064a\u0629 \u0648\u0627\u0644\u0646\u0647\u0627\u064a\u0629"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0644\u0644\u062e\u0644\u0641 (PgUp) \u0623\u0648 \u0627\u0644\u062a\u0642\u062f\u0645 \u0644\u0644\u0623\u0645\u0627\u0645 (PgDn) \u062e\u0644\u0627\u0644 \u0634\u0647\u0631 \u0648\u0627\u062d\u062f."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up \u0648 Page Down"],"Move backward (up) or forward (down) by one week.":["\u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0644\u0644\u062e\u0644\u0641 (up) \u0623\u0648 \u0627\u0644\u062a\u0642\u062f\u0645 \u0644\u0644\u0623\u0645\u0627\u0645 (down) \u062e\u0644\u0627\u0644 \u0623\u0633\u0628\u0648\u0639 \u0648\u0627\u062d\u062f."],"Up and Down Arrows":["\u0627\u0644\u0623\u0633\u0647\u0645 \u0644\u0644\u0623\u0639\u0644\u0649 \u0648\u0627\u0644\u0623\u0633\u0641\u0644"],"Move backward (left) or forward (right) by one day.":["\u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0644\u0644\u062e\u0644\u0641 (left) \u0623\u0648 \u0627\u0644\u062a\u0642\u062f\u0645 \u0644\u0644\u0623\u0645\u0627\u0645 (right) \u062e\u0644\u0627\u0644 \u064a\u0648\u0645 \u0648\u0627\u062d\u062f."],"Left and Right Arrows":["\u0627\u0644\u0623\u0633\u0647\u0645 \u0644\u0644\u064a\u0645\u064a\u0646 \u0648\u0627\u0644\u064a\u0633\u0627\u0631"],"Select the date in focus.":["\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u062a\u0627\u0631\u064a\u062e \u0628\u0648\u0636\u0639 \u0627\u0644\u062a\u0631\u0643\u064a\u0632."],"Navigating with a keyboard":["\u0627\u0644\u062a\u0646\u0642\u0644 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d"],"Click the desired day to select it.":["\u0623\u0646\u0642\u0631 \u0641\u0648\u0642 \u0627\u0644\u064a\u0648\u0645 \u0627\u0644\u0645\u0631\u063a\u0648\u0628 \u062a\u062d\u062f\u064a\u062f\u0647."],"Click the right or left arrows to select other months in the past or the future.":["\u0623\u0646\u0642\u0631 \u0627\u0644\u0623\u0633\u0647\u0645 \u0627\u0644\u064a\u0645\u064a\u0646 \u0623\u0648 \u0627\u0644\u064a\u0633\u0627\u0631 \u0644\u062a\u062d\u062f\u064a\u062f \u0623\u0634\u0647\u0631 \u0623\u062e\u0631\u0649 \u0641\u064a \u0627\u0644\u0645\u0627\u0636\u064a \u0623\u0648 \u0641\u064a \u0627\u0644\u0645\u0633\u062a\u0642\u0628\u0644."],"Click to Select":["\u0623\u0646\u0642\u0631 \u0644\u0644\u062a\u062d\u062f\u064a\u062f"],"Calendar Help":["\u062a\u0639\u0644\u064a\u0645\u0627\u062a \u0627\u0644\u062a\u0642\u0648\u064a\u0645"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["\u0627\u0633\u062a\u062e\u062f\u0645 \u0645\u0641\u0627\u062a\u064a\u062d \u0627\u0644\u0623\u0633\u0647\u0645 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643 \u0644\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0644\u0648\u0646 \u0627\u0644\u0623\u0633\u0627\u0633\u064a. \u062a\u062d\u0631\u0651\u0643 \u0644\u0623\u0639\u0644\u0649 \u0644\u062a\u0641\u062a\u064a\u062d \u0627\u0644\u0644\u0648\u0646\u060c \u0644\u0623\u0633\u0641\u0644 \u0644\u062c\u0639\u0644\u0647 \u0623\u063a\u0645\u0642\u060c \u0648\u0625\u0644\u0649 \u0627\u0644\u064a\u0633\u0627\u0631 \u0644\u0632\u064a\u0627\u062f\u0629 \u0627\u0644\u062a\u0634\u0628\u0639\u060c \u0648\u0625\u0644\u0649 \u0627\u0644\u064a\u0645\u064a\u0646 \u0644\u062a\u0642\u0644\u064a\u0644 \u0627\u0644\u062a\u0634\u0628\u0639."],"Choose a shade":["\u0627\u062e\u062a\u064a\u0627\u0631 \u0638\u0644"],"Change color format":["\u062a\u063a\u064a\u064a\u0631 \u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u0644\u0648\u0646"],"Color value in HSL":["\u0642\u064a\u0645\u0629 \u0627\u0644\u0644\u0648\u0646 HSL"],"Color value in RGB":["\u0642\u064a\u0645\u0629 \u0627\u0644\u0644\u0648\u0646 RGB"],"Color value in hexadecimal":["\u0642\u064a\u0645\u0629 \u0627\u0644\u0644\u0648\u0646 \u0628\u0631\u0645\u0648\u0632 Hex"],"RGB mode active":["\u0648\u0636\u0639 RGB \u0646\u0634\u0637"],"Hex color mode active":["\u0648\u0636\u0639 \u0627\u0644\u0644\u0648\u0646 Hex \u0646\u0634\u0637"],"Hue/saturation/lightness mode active":["\u0648\u0636\u0639 \u062a\u062f\u0631\u0651\u062c \u0627\u0644\u0644\u0648\u0646/\u0627\u0644\u062a\u0634\u0628\u0651\u0639/\u0627\u0644\u0625\u0636\u0627\u0621\u0629 \u0646\u0634\u0637"],"Move the arrow left or right to change hue.":["\u062d\u0631\u0651\u0643 \u0627\u0644\u0633\u0647\u0645 \u0644\u0644\u064a\u0633\u0627\u0631 \u0623\u0648 \u0627\u0644\u064a\u0645\u064a\u0646 \u0644\u062a\u063a\u064a\u064a\u0631 \u062f\u0631\u062c\u0629 \u0627\u0644\u0644\u0648\u0646."],"Hue value in degrees, from 0 to 359.":["\u0642\u064a\u0645\u0629 \u062f\u0631\u062c\u0629 \u0627\u0644\u0644\u0648\u0646\u060c \u0645\u0646 0 \u0625\u0644\u0649 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["\u0642\u064a\u0645\u0629 \u0623\u0644\u0641\u0627\u060c \u0645\u0646 0 (\u0634\u0641\u0627\u0641) \u0625\u0644\u0649 1 (\u0645\u0639\u062a\u0645\u0629 \u0628\u0627\u0644\u0643\u0627\u0645\u0644)."],Stripes:["\u0634\u0631\u0627\u0626\u0637"],"Your site doesn\u2019t include support for this block.":["\u0645\u0648\u0642\u0639\u0643 \u0644\u0627 \u064a\u0634\u0645\u0644 \u0627\u0644\u062f\u0639\u0645 \u0644\u0647\u0630\u0627 \u0627\u0644\u0645\u0643\u0648\u0651\u0646."],"Unrecognized Block":["\u0645\u0643\u0648\u0651\u0646 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\u0644\u0627 \u064a\u062a\u0636\u0645\u0646 \u0645\u0648\u0642\u0639\u0643 \u062f\u0639\u0645\u0627\u064b \u0644\u0644\u0645\u0643\u0648\u0651\u0646 \"%s\". \u064a\u0645\u0643\u0646\u0643 \u062a\u0631\u0643 \u0647\u0630\u0627 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0633\u0644\u064a\u0645\u0627\u064b \u0623\u0648 \u0625\u0632\u0627\u0644\u062a\u0647 \u0643\u0644\u064a\u064b\u0627."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\u0644\u0627 \u064a\u062a\u0636\u0645\u0646 \u0645\u0648\u0642\u0639\u0643 \u062f\u0639\u0645\u0627\u064b \u0644\u0644\u0645\u0643\u0648\u0651\u0646 \"%s\". \u064a\u0645\u0643\u0646\u0643 \u062a\u0631\u0643 \u0647\u0630\u0627 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0633\u0644\u064a\u0645\u0627\u064b. \u0623\u0648 \u062a\u062d\u0648\u064a\u0644 \u0645\u062d\u062a\u0648\u0627\u0647 \u0625\u0644\u0649 \u0645\u0643\u0648\u0651\u0646 \u0643\u0648\u062f HTML \u0645\u062e\u0635\u0635\u060c \u0623\u0648 \u0625\u0632\u0627\u0644\u062a\u0647 \u0643\u0644\u064a\u064b\u0627."],"Media area":["\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637"],"Media & Text":["\u0648\u0633\u0627\u0626\u0637 \u0645\u0639 \u0646\u0635\u0651"],"Show media on right":["\u0639\u0631\u0636 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0628\u0627\u0644\u062c\u0647\u0629 \u0627\u0644\u064a\u0645\u0646\u0649"],"Show media on left":["\u0639\u0631\u0636 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0628\u0627\u0644\u062c\u0647\u0629 \u0627\u0644\u064a\u0633\u0631\u0649"],"Open in New Tab":["\u0641\u062a\u062d \u0641\u064a \u0639\u0644\u0627\u0645\u0629 \u062a\u0628\u0648\u064a\u0628 \u062c\u062f\u064a\u062f\u0629"],Cover:["\u063a\u0644\u0627\u0641"],"Border Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062d\u062f\u0648\u062f"],"Edit media":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0648\u0633\u0627\u0626\u0637"],Medium:["\u0645\u062a\u0648\u0633\u0637"],"Paste URL or type to search":["\u0623\u0644\u0635\u0642 \u0631\u0627\u0628\u0637 \u0623\u0648 \u0627\u0643\u062a\u0628 \u0644\u0644\u0628\u062d\u062b"],Terms:["\u0627\u0644\u0639\u0646\u0627\u0635\u0631"],"Your work will be published at the specified date and time.":["\u0633\u064a\u062a\u0645 \u0646\u0634\u0631 \u0645\u0627\u0642\u0645\u062a \u0628\u0639\u0645\u0644\u0647 \u0641\u064a \u0627\u0644\u062a\u0627\u0631\u064a\u062e \u0648\u0627\u0644\u0648\u0642\u062a \u0627\u0644\u0645\u064f\u062d\u062f\u062f."],"Are you ready to schedule?":["\u0647\u0644 \u0623\u0646\u062a \u0645\u0633\u062a\u0639\u062f\u0651 \u0644\u0644\u062c\u062f\u0648\u0644\u0629\u061f"],"Always show pre-publish checks.":["\u0639\u0631\u0636 \u0627\u0644\u062a\u062d\u0642\u0642 \u0642\u0628\u0644 \u0627\u0644\u0646\u0634\u0631 \u062f\u0627\u0626\u0645\u064b\u0627."],"Take Over":["\u0625\u0633\u062a\u064a\u0644\u0627\u0621"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u0647\u0646\u0627\u0643 \u0645\u0633\u062a\u062e\u062f\u0645 \u0622\u062e\u0631 \u064a\u0639\u0645\u0644 \u062d\u0627\u0644\u064a\u064b\u0627 \u0639\u0644\u0649 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629\u060c \u0645\u0645\u0627 \u064a\u0639\u0646\u064a \u0623\u0646\u0647 \u0644\u064a\u0633 \u0628\u0625\u0645\u0643\u0627\u0646\u0643 \u0625\u062c\u0631\u0627\u0621 \u062a\u063a\u064a\u064a\u0631\u0627\u062a\u060c \u0645\u0627 \u0644\u0645 \u062a\u062a\u0648\u0644\u0649 \u0627\u0644\u0645\u0647\u0645\u0629."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["\u064a\u0642\u0648\u0645 %s \u062d\u0627\u0644\u064a\u064b\u0627 \u0628\u0627\u0644\u0639\u0645\u0644 \u0639\u0644\u0649 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629\u060c \u0645\u0645\u0627 \u064a\u0639\u0646\u064a \u0623\u0646\u0647 \u0644\u064a\u0633 \u0628\u0625\u0645\u0643\u0627\u0646\u0643 \u0625\u062c\u0631\u0627\u0621 \u062a\u063a\u064a\u064a\u0631\u0627\u062a\u060c \u0645\u0627 \u0644\u0645 \u062a\u062a\u0648\u0644\u0649 \u0627\u0644\u0645\u0647\u0645\u0629."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u0647\u0646\u0627\u0643 \u0645\u0633\u062a\u062e\u062f\u0645 \u0622\u062e\u0631 \u062d\u0627\u0644\u064a\u064b\u0627 \u0644\u062f\u064a\u0647 \u0627\u0644\u062a\u062d\u0643\u0651\u0645 \u0644\u062a\u062d\u0631\u064a\u0631 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629. \u0644\u0627 \u062a\u0642\u0644\u0642\u060c \u0644\u0642\u062f \u062a\u0645\u0651 \u062d\u0641\u0638 \u062a\u063a\u064a\u064a\u0631\u0627\u062a\u0643 \u062d\u062a\u0649 \u0647\u0630\u0647 \u0627\u0644\u0644\u062d\u0638\u0629."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u064a\u0645\u062a\u0644\u0643 %s \u062d\u0627\u0644\u064a\u064b\u0627 \u0627\u0644\u062a\u062d\u0643\u0651\u0645 \u0644\u062a\u062d\u0631\u064a\u0631 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629. \u0644\u0627 \u062a\u0642\u0644\u0642\u060c \u0644\u0642\u062f \u062a\u0645\u0651 \u062d\u0641\u0638 \u062a\u063a\u064a\u064a\u0631\u0627\u062a\u0643 \u062d\u062a\u0649 \u0647\u0630\u0647 \u0627\u0644\u0644\u062d\u0638\u0629."],Avatar:["\u0627\u0644\u0635\u0648\u0631\u0629 \u0627\u0644\u0631\u0645\u0632\u064a\u0629 Avatar"],"This post is already being edited.":["\u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629 \u064a\u062c\u0631\u064a \u062a\u062d\u0631\u064a\u0631\u0647\u0627 \u0628\u0627\u0644\u0641\u0639\u0644 \u062d\u0627\u0644\u064a\u064b\u0627."],"Someone else has taken over this post.":["\u0627\u0633\u062a\u0648\u0644\u0649 \u0634\u062e\u0635 \u0622\u062e\u0631 \u0639\u0644\u0649 \u062a\u062d\u0631\u064a\u0631 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629."],"This block contains unexpected or invalid content.":["\u064a\u062d\u062a\u0648\u064a \u0647\u0630\u0627 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0639\u0644\u0649 \u0645\u062d\u062a\u0648\u0649 \u063a\u064a\u0631 \u0645\u062a\u0648\u0642\u0639 \u0623\u0648 \u063a\u064a\u0631 \u0635\u0627\u0644\u062d."],"Resolve Block":["\u0625\u0635\u0644\u0627\u062d \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"Convert to HTML":["\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649 HTML"],"This block can only be used once.":["\u064a\u064f\u0645\u0643\u0646 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0647\u0630\u0627 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0644\u0645\u0631\u0629 \u0648\u0627\u062d\u062f\u0629 \u0641\u0642\u0637."],"Exit Code Editor":["\u0627\u0644\u062e\u0631\u0648\u062c \u0645\u0646 \u0645\u064f\u062d\u0631\u0631 \u0627\u0644\u0634\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629"],"Editing Code":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0634\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629"],"Solid Color":["\u0644\u0648\u0646 \u0643\u0627\u0645\u0644"],"Main Color":["\u0627\u0644\u0644\u0648\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a"],HTML:["HTML"],"Write HTML\u2026":["\u0643\u062a\u0627\u0628\u0629 \u0643\u0648\u062f HTML\u2026"],"Media Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637"],"Overlay Color":["\u0644\u0648\u0646 \u0627\u0644\u063a\u0637\u0627\u0621"],Overlay:["\u063a\u0637\u0627\u0621 Overlay"],"Insert Media":["\u0625\u062f\u0631\u0627\u062c \u0648\u0633\u0627\u0626\u0637"],"Reusable block imported successfully!":["\u062a\u0645 \u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u0642\u0627\u0628\u0644 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0628\u0646\u062c\u0627\u062d!"],"Invalid Reusable Block JSON file":["\u0645\u0644\u0641 JSON \u063a\u064a\u0631 \u0635\u0627\u0644\u062d \u0644\u0645\u0643\u0648\u0651\u0646 \u0642\u0627\u0628\u0644 \u0644\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645"],"Invalid JSON file":["\u0645\u0644\u0641 JSON \u063a\u064a\u0631 \u0635\u0627\u0644\u062d"],"Import from JSON":["\u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0645\u0646 JSON"],Backtick:["\u0641\u0627\u0635\u0644\u0629 \u0639\u0644\u0648\u064a\u0629 \u0645\u0627\u0626\u0644\u0629 Backtick"],Period:["\u0641\u062a\u0631\u0629"],Comma:["\u0641\u0627\u0635\u0644\u0629"],"Change type of %d block":["\u0644\u0645 \u064a\u062a\u0645 \u062a\u062d\u062f\u064a\u062f \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0644\u062a\u063a\u064a\u064a\u0631\u0647\u0627","\u062a\u063a\u064a\u064a\u0631 \u0646\u0648\u0639 \u0645\u0643\u0648\u0651\u0646 \u0648\u0627\u062d\u062f","\u062a\u063a\u064a\u064a\u0631 \u0646\u0648\u0639 \u0645\u0643\u0648\u0651\u0646\u064a\u0646","\u062a\u063a\u064a\u064a\u0631 \u0646\u0648\u0639 %d \u0645\u0643\u0648\u0651\u0646\u0627\u062a","\u062a\u063a\u064a\u064a\u0631 \u0646\u0648\u0639 %d \u0645\u0643\u0648\u0651\u0646","\u062a\u063a\u064a\u064a\u0631 \u0646\u0648\u0639 %d \u0645\u0643\u0648\u0651\u0646"],Current:["\u0627\u0644\u062d\u0627\u0644\u064a"],"After Conversion":["\u0628\u0639\u062f \u0627\u0644\u062a\u062d\u0648\u064a\u0644"],"Change alignment":["\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0645\u062d\u0627\u0630\u0627\u0629"],"Change text alignment":["\u062a\u063a\u064a\u064a\u0631 \u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u0646\u0635"],"%d block":["\u0644\u0627 \u062a\u0648\u062c\u062f \u0645\u0643\u0648\u0651\u0646\u0627\u062a %d","\u0645\u0643\u0648\u0651\u0646 \u0648\u0627\u062d\u062f %d","\u0645\u0643\u0648\u0651\u0646\u064a\u0646 %d","%d \u0645\u0643\u0648\u0651\u0646\u0627\u062a","%d \u0645\u0643\u0648\u0651\u0646","%d \u0645\u0643\u0648\u0651\u0646"],Escape:["\u0645\u0641\u062a\u0627\u062d Esc"],"Forward-slash":["\u062e\u0637 \u0645\u0627\u0626\u0644"],"No archives to show.":["\u0644\u0627 \u062a\u0648\u062c\u062f \u0623\u0631\u0634\u064a\u0641\u0627\u062a \u0644\u0639\u0631\u0636\u0647\u0627."],"This file is empty.":["\u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u0641 \u0641\u0627\u0631\u063a."],"Sorry, this file type is not supported here.":["\u0639\u0630\u0631\u064b\u0627\u060c \u0646\u0648\u0639 \u0627\u0644\u0645\u0644\u0641 \u0647\u0630\u0627 \u063a\u064a\u0631 \u0645\u062f\u0639\u0648\u0645 \u0647\u0646\u0627."],"Manage All Reusable Blocks":["\u0625\u062f\u0627\u0631\u0629 \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0642\u0627\u0628\u0644\u0629 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645"],Title:["\u0627\u0644\u0639\u0646\u0648\u0627\u0646"],"Fullscreen Mode":["\u0648\u0636\u0639 \u0627\u0644\u0634\u0627\u0634\u0629 \u0627\u0644\u0643\u0627\u0645\u0644\u0629"],"Beautiful landscape":["\u0645\u0646\u0638\u0631 \u0637\u0628\u064a\u0639\u064a \u062c\u0645\u064a\u0644"],"Close panel":["\u0625\u063a\u0644\u0627\u0642 \u0627\u0644\u0644\u0648\u062d\u0629"],"Convert to Classic Block":["\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649 \u0645\u0643\u0648\u0651\u0646 \u062a\u0642\u0644\u064a\u062f\u064a"],"Remove Poster Image":["\u0625\u0632\u0627\u0644\u0629 \u0635\u0648\u0631\u0629 \u0627\u0644\u0645\u0644\u0635\u0642"],"Select Poster Image":["\u062a\u062d\u062f\u064a\u062f \u0635\u0648\u0631\u0629 \u0627\u0644\u0645\u0644\u0635\u0642"],"Poster Image":["\u0635\u0648\u0631\u0629 \u0627\u0644\u0645\u0644\u0635\u0642"],"This block is deprecated. Please use the Columns block instead.":["\u0647\u0630\u0627 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0645\u064f\u0647\u0645\u0644. \u064a\u0631\u062c\u0649 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u0623\u0639\u0645\u062f\u0629 \u0628\u062f\u0644\u0627\u064b \u0645\u0646 \u0630\u0644\u0643."],"Text Columns (deprecated)":["\u0623\u0639\u0645\u062f\u0629 \u0627\u0644\u0646\u0635 (\u0645\u064f\u0647\u0645\u0644)"],"Row Count":["\u0639\u062f\u062f \u0627\u0644\u0635\u0641\u0648\u0641"],"Column Count":["\u0639\u062f\u062f \u0627\u0644\u0623\u0639\u0645\u062f\u0629"],"This block is deprecated. Please use the Paragraph block instead.":["\u0647\u0630\u0627 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0645\u064f\u0647\u0645\u0644. \u064a\u0631\u062c\u0649 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u0641\u0642\u0631\u0629 \u0628\u062f\u0644\u0627\u064b \u0645\u0646 \u0630\u0644\u0643."],"Subheading (deprecated)":["\u0639\u0646\u0648\u0627\u0646 \u0641\u0631\u0639\u064a (\u0645\u064f\u0647\u0645\u0644)"],blockquote:["\u0635\u0646\u062f\u0648\u0642 \u0627\u0642\u062a\u0628\u0627\u0633"],"Change the block type after adding a new paragraph.":["\u062a\u063a\u064a\u064a\u0631 \u0646\u0648\u0639 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0628\u0639\u062f \u0625\u0636\u0627\u0641\u0629 \u0641\u0642\u0631\u0629 \u062c\u062f\u064a\u062f\u0629."],"Spotlight Mode":["\u0648\u0636\u0639 \u062a\u0633\u0644\u064a\u0637 \u0627\u0644\u0636\u0648\u0621"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u0627\u0644\u0648\u0633\u0648\u0645 \u062a\u0633\u0627\u0639\u062f \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0648\u0645\u062d\u0631\u0643\u0627\u062a \u0627\u0644\u0628\u062d\u062b \u0628\u0627\u0644\u062a\u0646\u0642\u0644 \u0641\u064a \u0645\u0648\u0642\u0639\u0643 \u0648\u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643. \u0623\u0636\u0641 \u0628\u0639\u0636 \u0627\u0644\u0643\u0644\u0645\u0627\u062a \u0627\u0644\u062f\u0644\u064a\u0644\u064a\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0644\u0648\u0635\u0641 \u0645\u0642\u0627\u0644\u062a\u0643."],"Add tags":["\u0625\u0636\u0627\u0641\u0629 \u0648\u0633\u0648\u0645"],"Apply the \"%1$s\" format.":["\u062a\u0637\u0628\u064a\u0642 \u0627\u0644\u062a\u0646\u0633\u064a\u0642 \"%1$s\" \u0644\u0628\u0646\u064a\u0629 \u0627\u0644\u0645\u0642\u0627\u0644\u0629."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u064a\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0642\u0627\u0644\u0628 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u062a\u0646\u0633\u064a\u0642\u0627\u062a \u0628\u0646\u064a\u0629 \u0627\u0644\u0645\u0642\u0627\u0644\u0629 \u0644\u0625\u0628\u0631\u0627\u0632 \u0623\u0646\u0648\u0627\u0639 \u0645\u062e\u062a\u0644\u0641\u0629 \u0645\u0646 \u0627\u0644\u0645\u062d\u062a\u0648\u0649\u060c \u0645\u062b\u0644 \u0627\u0644\u0635\u0648\u0631 \u0623\u0648 \u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0641\u064a\u062f\u064a\u0648. \u0642\u0645 \u0628\u062a\u0637\u0628\u064a\u0642 \u062a\u0646\u0633\u064a\u0642 \u0628\u0646\u064a\u0629 \u0627\u0644\u0645\u0642\u0627\u0644\u0629 \u0644\u062a\u0631\u0649 \u0647\u0630\u0627 \u0627\u0644\u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062e\u0627\u0635."],"Use a post format":["\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0628\u0646\u064a\u0629 \u0627\u0644\u0645\u0642\u0627\u0644\u0629"],"Insert After":["\u0625\u062f\u0631\u0627\u062c \u0628\u0639\u062f"],"Insert Before":["\u0625\u062f\u0631\u0627\u062c \u0642\u0628\u0644"],"Move %1$d block from position %2$d down by one place":["\u062a\u062d\u0631\u064a\u0643 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0633\u0641\u0644 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f","\u062a\u062d\u0631\u064a\u0643 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0633\u0641\u0644 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f","\u062a\u062d\u0631\u064a\u0643 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u064a\u0646 \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0633\u0641\u0644 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f","\u062a\u062d\u0631\u064a\u0643 %1$d \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0633\u0641\u0644 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f","\u062a\u062d\u0631\u064a\u0643 %1$d \u0645\u0643\u0648\u0651\u0646 \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0633\u0641\u0644 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f","\u062a\u062d\u0631\u064a\u0643 %1$d \u0645\u0643\u0648\u0651\u0646 \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0633\u0641\u0644 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f"],"Move %1$d block from position %2$d up by one place":["\u062a\u062d\u0631\u064a\u0643 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0639\u0644\u0649 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f","\u062a\u062d\u0631\u064a\u0643 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0639\u0644\u0649 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f","\u062a\u062d\u0631\u064a\u0643 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u064a\u0646 \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0639\u0644\u0649 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f","\u062a\u062d\u0631\u064a\u0643 %1$d \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0639\u0644\u0649 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f","\u062a\u062d\u0631\u064a\u0643 %1$d \u0645\u0643\u0648\u0651\u0646 \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0639\u0644\u0649 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f","\u062a\u062d\u0631\u064a\u0643 %1$d \u0645\u0643\u0648\u0651\u0646 \u0645\u0646 \u0627\u0644\u0645\u0648\u0636\u0639 %2$d \u0644\u0644\u0623\u0639\u0644\u0649 \u0628\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0636\u0639 \u0648\u0627\u062d\u062f"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["\u0641\u064a\u0644\u0645"],"Insert a new block before the selected block(s).":["\u0625\u062f\u0631\u0627\u062c \u0645\u0643\u0648\u0651\u0646 \u062c\u062f\u064a\u062f \u0642\u0628\u0644 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0645\u064f\u062d\u062f\u062f\u0629."],"Remove the selected block(s).":["\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0645\u064f\u062d\u062f\u062f\u0629."],"Duplicate the selected block(s).":["\u062a\u0643\u0631\u0627\u0631 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0645\u064f\u062d\u062f\u062f\u0629."],"Block shortcuts":["\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Clear selection.":["\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u062a\u062d\u062f\u064a\u062f."],"Select all text when typing. Press again to select all blocks.":["\u062a\u062d\u062f\u064a\u062f \u0643\u0644 \u0627\u0644\u0646\u0635 \u0639\u0646\u062f \u0627\u0644\u0643\u062a\u0627\u0628\u0629. \u0627\u0636\u063a\u0637 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649 \u0644\u062a\u062d\u062f\u064a\u062f \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a."],"Selection shortcuts":["\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0627\u0644\u062a\u062d\u062f\u064a\u062f"],"Switch between Visual Editor and Code Editor.":["\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0628\u064a\u0646 \u0627\u0644\u0645\u064f\u062d\u0631\u0631 \u0627\u0644\u0645\u0631\u0626\u064a \u0648 \u0645\u062d\u0631\u0631 \u0627\u0644\u0634\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629."],"Navigate to the previous part of the editor (alternative).":["\u0627\u0644\u0625\u0646\u062a\u0642\u0627\u0644 \u0625\u0644\u0649 \u0627\u0644\u062c\u0632\u0621 \u0627\u0644\u0633\u0627\u0628\u0642 \u0645\u0646 \u0627\u0644\u0645\u064f\u062d\u0631\u0631 (\u0628\u062f\u064a\u0644)."],"Navigate to the next part of the editor (alternative).":["\u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0625\u0644\u0649 \u0627\u0644\u062c\u0632\u0621 \u0627\u0644\u062a\u0627\u0644\u064a \u0645\u0646 \u0627\u0644\u0645\u064f\u062d\u0631\u0631 (\u0628\u062f\u064a\u0644)."],"Navigate to the previous part of the editor.":["\u0627\u0644\u0625\u0646\u062a\u0642\u0627\u0644 \u0625\u0644\u0649 \u0627\u0644\u062c\u0632\u0621 \u0627\u0644\u0633\u0627\u0628\u0642 \u0645\u0646 \u0627\u0644\u0645\u064f\u062d\u0631\u0631."],"Navigate to the next part of the editor.":["\u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0625\u0644\u0649 \u0627\u0644\u062c\u0632\u0621 \u0627\u0644\u062a\u0627\u0644\u064a \u0645\u0646 \u0627\u0644\u0645\u064f\u062d\u0631\u0631."],"Show or hide the settings sidebar.":["\u0625\u0638\u0647\u0627\u0631 \u0623\u0648 \u0625\u062e\u0641\u0627\u0621 \u0627\u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u062c\u0627\u0646\u0628\u064a \u0644\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a."],"Redo your last undo.":["\u0625\u0639\u0627\u062f\u0629 \u0622\u062e\u0631 \u062a\u0639\u062f\u064a\u0644\u0627\u062a\u0643."],"Undo your last changes.":["\u062a\u0631\u0627\u062c\u0639 \u0639\u0646 \u0622\u062e\u0631 \u062a\u0639\u062f\u064a\u0644\u0627\u062a\u0643."],"Save your changes.":["\u062d\u0641\u0638 \u062a\u0639\u062f\u064a\u0644\u0627\u062a\u0643."],"Global shortcuts":["\u0627\u062e\u0646\u0635\u0627\u0631\u0627\u062a \u0639\u0627\u0645\u0629"],"Remove a link.":["\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0631\u0627\u0628\u0637."],"Convert the selected text into a link.":["\u062a\u062d\u0648\u064a\u0644 \u0627\u0644\u0646\u0635 \u0627\u0644\u0645\u064f\u062d\u062f\u062f \u0625\u0644\u0649 \u0631\u0627\u0628\u0637."],"Underline the selected text.":["\u0648\u0636\u0639 \u062e\u0637 \u062a\u062d\u062a \u0627\u0644\u0646\u0635 \u0627\u0644\u0645\u064f\u062d\u062f\u062f."],"Make the selected text italic.":["\u0627\u062c\u0639\u0644 \u0627\u0644\u0646\u0635 \u0627\u0644\u0645\u064f\u062d\u062f\u062f \u0645\u0627\u0626\u0644\u0627\u064b."],"Make the selected text bold.":["\u0627\u062c\u0639\u0644 \u0627\u0644\u0646\u0635 \u0627\u0644\u0645\u064f\u062d\u062f\u062f \u0639\u0631\u064a\u0636\u064b\u0627."],"Text formatting":["\u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u0646\u0635"],"Insert a new block after the selected block(s).":["\u0625\u062f\u0631\u0627\u062c \u0645\u0643\u0648\u0651\u0646 \u062c\u062f\u064a\u062f \u0628\u0639\u062f \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0645\u064f\u062d\u062f\u062f\u0629."],"Keyboard Shortcuts":["\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d"],"Thanks for testing Gutenberg!":["\u0634\u0643\u0631\u0627\u064b \u0644\u0643 \u0639\u0644\u0649 \u062a\u062c\u0631\u0628\u0629 \u0645\u064f\u062d\u0631\u0631 Gutenberg!"],"Help build Gutenberg":["\u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629 \u0641\u064a \u0628\u0646\u0627\u0621 Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["\u0625\u0630\u0627 \u0643\u0646\u062a \u062a\u0631\u064a\u062f \u0645\u0639\u0631\u0641\u0629 \u0627\u0644\u0645\u0632\u064a\u062f \u062d\u0648\u0644 \u0643\u064a\u0641\u064a\u0629 \u0628\u0646\u0627\u0621 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0645\u064f\u062d\u0631\u0631 \u0627\u0644\u0625\u0636\u0627\u0641\u064a\u0629\u060c \u0623\u0648 \u0625\u0630\u0627 \u0643\u0646\u062a \u0645\u0647\u062a\u0645\u0627\u064b \u0628\u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629 \u0641\u064a \u0627\u0644\u0645\u0634\u0631\u0648\u0639\u060c \u0641\u0627\u0646\u062a\u0642\u0644 \u0625\u0644\u0649 \u0645\u0633\u062a\u0648\u062f\u0639 GitHub."],"The WordPress community":["\u0645\u062c\u062a\u0645\u0639 \u0627\u0644\u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633"],"Code is Poetry":["\u0627\u0644\u0643\u0648\u062f \u0634\u0639\u0631"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["\u064a\u0645\u0643\u0646\u0643 \u0628\u0646\u0627\u0621 \u0623\u064a \u0645\u0643\u0648\u0651\u0646 \u062a\u0631\u064a\u062f\u0647\u060c \u062b\u0627\u0628\u062a \u0623\u0648 \u062f\u064a\u0646\u0627\u0645\u064a\u0643\u064a\u060c \u0628\u0646\u0635\u0651 \u0639\u0627\u062f\u064a \u0623\u0648 \u0645\u0632\u062e\u0631\u0641 \u0648\u0628\u0631\u0645\u0648\u0632 \u0623\u0648 \u0623\u064a\u0642\u0648\u0646\u0627\u062a \u062e\u0627\u0635\u0629. \u0648\u0625\u0644\u064a\u0643 \u0647\u0646\u0627 \u0645\u0643\u0648\u0651\u0646 \u0627\u0642\u062a\u0628\u0627\u0633 \u0645\u0627\u0626\u0644:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["\u064a\u0645\u0643\u0646 \u0644\u0623\u064a \u0645\u0643\u0648\u0651\u0646 \u0623\u0646 \u064a\u062e\u062a\u0627\u0631 \u0647\u0630\u0647 \u0627\u0644\u0645\u062d\u0627\u0630\u0627\u0629. \u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u062a\u0636\u0645\u064a\u0646 \u0644\u062f\u064a\u0647 \u0627\u0644\u0623\u0633\u0644\u0648\u0628\u060c \u0648\u0627\u0644\u0625\u0633\u062a\u062c\u0627\u0628\u0629 \u0644\u0637\u0631\u064a\u0642\u0629 \u0627\u0644\u062e\u0631\u0648\u062c \u0645\u0646 \u0627\u0644\u0635\u0646\u062f\u0648\u0642:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["\u0645\u0627\u0633\u0628\u0642 \u0647\u0648 \u0645\u0639\u0631\u0636 \u0635\u0648\u0631 \u0645\u0643\u0648\u0651\u0646 \u0645\u0646 \u0635\u0648\u0631\u062a\u064a\u0646 \u0641\u0642\u0637\u060c \u0625\u0646\u0647\u0627 \u0637\u0631\u064a\u0642\u0629 \u0623\u0633\u0647\u0644 \u0644\u0625\u0646\u0634\u0627\u0621 \u062a\u0646\u0633\u064a\u0642\u0627\u062a \u062c\u0630\u0627\u0628\u0629 \u0628\u0635\u0631\u064a\u0627\u064b\u060c \u062f\u0648\u0646 \u0627\u0644\u0627\u0636\u0637\u0631\u0627\u0631 \u0644\u0644\u062a\u0639\u0627\u0645\u0644 \u0645\u0639 \u0645\u0648\u0636\u0639 \u0627\u0644\u0635\u0648\u0631. \u064a\u0645\u0643\u0646\u0643 \u0623\u064a\u0636\u064b\u0627 \u062a\u062d\u0648\u064a\u0644 \u0627\u0644\u0645\u0639\u0631\u0636 \u0628\u0633\u0647\u0648\u0644\u0629 \u0625\u0644\u0649 \u0635\u0648\u0631 \u0641\u0631\u062f\u064a\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649\u060c \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0632\u0631 \u062a\u063a\u064a\u064a\u0631 \u0646\u0648\u0639 \u0627\u0644\u0645\u0643\u0648\u0651\u0646."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["\u0644\u0627 \u0634\u0643! \u0623\u0646 \u0627\u0644\u0635\u0648\u0631\u0629 \u0628\u0639\u0631\u0636 \u0643\u0627\u0645\u0644 \u0642\u062f \u062a\u0643\u0648\u0646 \u0643\u0628\u064a\u0631\u0629 \u062c\u062f\u0627\u064b. \u0644\u0643\u0646 \u0641\u064a \u0628\u0639\u0636 \u0627\u0644\u0623\u062d\u064a\u0627\u0646 \u062a\u0633\u062a\u062d\u0642 \u0627\u0644\u0635\u0648\u0631\u0629 \u0630\u0644\u0643."],"Accessibility is important — don’t forget image alt attribute":["\u0625\u0645\u0643\u0627\u0646\u064a\u0629 \u0627\u0644\u0648\u0635\u0648\u0644 \u0645\u0647\u0645\u0629 — \u0644\u0627 \u062a\u0646\u0633\u0649 \u0645\u064a\u0632\u0629 \u0627\u0644\u0646\u0635 \u0627\u0644\u0628\u062f\u064a\u0644 \"alt\" \u0644\u0644\u0635\u0648\u0631\u0629"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["\u0625\u0630\u0627 \u0642\u0645\u062a \u0628\u0636\u0645\u0651 \u0648\u062c\u0645\u0639 \u0627\u0644\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u062c\u062f\u064a\u062f\u0629 \u0648\u0627\u0633\u0639 \u0648 \u0639\u0631\u0636 \u0648\u0627\u0633\u0639 \u0645\u0639 \u0627\u0644\u0645\u0639\u0627\u0631\u0636\u060c \u0641\u064a\u0645\u0643\u0646\u0643 \u0625\u0646\u0634\u0627\u0621 \u062a\u062e\u0637\u064a\u0637 \u062b\u0631\u064a \u062c\u062f\u0627\u064b \u0628\u0627\u0644\u0648\u0633\u0627\u0626\u0637\u060c \u0648\u0628\u0633\u0631\u0639\u0629 \u0643\u0628\u064a\u0631\u0629:"],"Media Rich":["\u0648\u0633\u0627\u0626\u0637 \u062b\u0631\u064a\u0629"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["\u064a\u0645\u0643\u0646\u0643 \u062a\u063a\u064a\u064a\u0631 \u0639\u062f\u062f \u0627\u0644\u0623\u0639\u0645\u062f\u0629 \u0641\u064a \u0627\u0644\u0645\u0639\u0627\u0631\u0636 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643 \u0639\u0646 \u0637\u0631\u064a\u0642 \u0633\u062d\u0628 \u0634\u0631\u064a\u0637 \u0627\u0644\u062a\u0645\u0631\u064a\u0631 \u0645\u0646 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u0639\u0631\u0636 \u0644\u0644\u0645\u0643\u0648\u0651\u0646 \u0641\u064a \u0627\u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u062c\u0627\u0646\u0628\u064a."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["\u064a\u0645\u0643\u0646 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0623\u064a \u0634\u064a\u0621 \u0623\u0646\u062a \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u064a\u0647. \u0639\u0644\u0649 \u0633\u0628\u064a\u0644 \u0627\u0644\u0645\u062b\u0627\u0644\u060c \u0642\u062f \u062a\u0631\u063a\u0628 \u0641\u064a \u0625\u0636\u0627\u0641\u0629 \u0627\u0642\u062a\u0628\u0627\u0633 \u062e\u0627\u0641\u062a \u0643\u062c\u0632\u0621 \u0645\u0646 \u062a\u0631\u0643\u064a\u0628\u0629 \u0627\u0644\u0646\u0635 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643. \u0623\u0648 \u0642\u062f \u062a\u0641\u0636\u0651\u0644 \u0639\u0631\u0636\u0647\u0627 \u0628\u0623\u0633\u0644\u0648\u0628 \u0623\u0643\u0628\u0631. \u0643\u0644 \u0647\u0630\u0647 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a \u0645\u062a\u0627\u062d\u0629 \u0641\u064a \u0623\u062f\u0627\u0629 \u0627\u0644\u0625\u062f\u0631\u0627\u062c."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["\u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0630\u0627\u062a \u0627\u0644\u0635\u0644\u0629 \u0644\u0645\u0635\u062f\u0631 \u0627\u0644\u0627\u0642\u062a\u0628\u0627\u0633 \u0639\u0628\u0627\u0631\u0629 \u0639\u0646 \u062d\u0642\u0644 \u0646\u0635\u0651 \u0645\u0646\u0641\u0635\u0644\u060c \u0634\u0628\u064a\u0647\u0629 \u0628\u0627\u0644\u062a\u0633\u0645\u064a\u0627\u062a \u0627\u0644\u062a\u0648\u0636\u064a\u062d\u064a\u0629 \u0623\u0633\u0641\u0644 \u0627\u0644\u0635\u0648\u0631\u060c \u0644\u0630\u0627 \u062a\u062a\u0645 \u062d\u0645\u0627\u064a\u0629 \u0628\u0646\u064a\u0629 \u0627\u0644\u0627\u0642\u062a\u0628\u0627\u0633 \u062d\u062a\u0649 \u0625\u0630\u0627 \u0642\u0645\u062a \u0628\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0645\u0635\u062f\u0631 \u0623\u0648 \u062a\u0639\u062f\u064a\u0644\u0647 \u0623\u0648 \u0625\u0632\u0627\u0644\u062a\u0647. \u0645\u0646 \u0627\u0644\u0633\u0647\u0644 \u062f\u0627\u0626\u0645\u0627\u064b \u0625\u0639\u0627\u062f\u0629 \u0625\u0636\u0627\u0641\u062a\u0647."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["\u064a\u0633\u0639\u0649 \u0627\u0644\u0645\u064f\u062d\u0631\u0631 \u0639\u0644\u0649 \u0625\u0646\u0634\u0627\u0621 \u062a\u062c\u0631\u0628\u0629 \u0628\u0646\u0627\u0621 \u062c\u062f\u064a\u062f\u0629 \u0644\u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0635\u0641\u062d\u0627\u062a \u0648\u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062a \u0645\u0645\u0627 \u064a\u062c\u0639\u0644 \u0643\u062a\u0627\u0628\u0629 \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062a \u0627\u0644\u063a\u0646\u064a\u0629 \u0628\u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0628\u062c\u0647\u062f \u0623\u0642\u0644\u060c \u0643\u0645\u0627 \u0623\u0646 \u0627\u0644\u0645\u064f\u062d\u0631\u0631 \u0627\u0644\u062c\u062f\u064a\u062f \u0627\u0644\u062c\u062f\u064a\u062f \u0644\u062f\u064a\u0647 \"\u0645\u0643\u0648\u0651\u0646\u0627\u062a\" \u0644\u062c\u0639\u0644 \u0627\u0644\u0623\u0645\u0631 \u0633\u0647\u0644\u0627\u064b \u0628\u062f\u0644\u0627\u064b \u0645\u0646 \u0627\u0644\u0637\u0631\u064a\u0642\u0629 \u0627\u0644\u062a\u064a \u0646\u0642\u0648\u0645 \u0628\u0647\u0627 \u062d\u0627\u0644\u064a\u0627\u064b \u0639\u0646\u062f \u0627\u0644\u062a\u062d\u0631\u064a\u0631 \u0628\u0627\u0644\u0623\u0643\u0648\u0627\u062f \u0627\u0644\u0642\u0635\u064a\u0631\u0629 \u0623\u0648 \u0625\u0636\u0627\u0641\u0629 \u0634\u0641\u0631\u0627\u062a HTML \u0645\u062e\u0635\u0635\u0629 \u0623\u0648 \"\u0623\u0634\u064a\u0627\u0621 \u0623\u0643\u062b\u0631 \u063a\u0645\u0648\u0636\u0627\u064b\"."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["\u0645\u0646 \u0627\u0644\u0641\u0648\u0627\u0626\u062f \u0627\u0644\u0647\u0627\u0626\u0644\u0629 \u0644\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0623\u0646\u0647 \u064a\u0645\u0643\u0646\u0643 \u062a\u062d\u0631\u064a\u0631\u0647\u0627 \u0645\u0628\u0627\u0634\u0631\u0629 \u0641\u064a \u0645\u0643\u0627\u0646\u0647\u0627 \u0648\u0633\u0647\u0648\u0644\u0629 \u0645\u0639\u0627\u0644\u062c\u0629 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643. \u064a\u0645\u0643\u0646\u0643 \u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0645\u0628\u0627\u0634\u0631\u0629\u064b \u0628\u062f\u0644\u0627\u064b \u0645\u0646 \u0648\u062c\u0648\u062f \u062d\u0642\u0648\u0644 \u0644\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0623\u0634\u064a\u0627\u0621 \u0645\u0646 \u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u0642\u0627\u0644 \u0623\u0648 \u0627\u0644\u0635\u0641\u062d\u0629 \u0645\u062b\u0644: \u0645\u0635\u062f\u0631 \u0627\u0642\u062a\u0628\u0627\u0633\u060c \u0623\u0648 \u0646\u0635 \u0644\u0632\u0631 \u0645\u0627. \u062c\u0631\u0651\u0628 \u0637\u0631\u064a\u0642\u0629 \u0627\u0644\u062a\u062d\u0631\u064a\u0631 \u0644\u0644\u0627\u0642\u062a\u0628\u0627\u0633 \u0627\u0644\u062a\u0627\u0644\u064a:"],"Visual Editing":["\u062a\u062d\u0631\u064a\u0631 \u0645\u0631\u0626\u064a"],"And Lists like this one of course :)":["\u0648\u0645\u062b\u0644 \u0647\u0630\u0647 \u0627\u0644\u0640\u0642\u0648\u0627\u0626\u0645 \u0628\u0627\u0644\u0637\u0628\u0639 :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u062a\u062e\u0637\u064a\u0637\u060c \u0645\u062b\u0644 \u0627\u0644\u0623\u0632\u0631\u0627\u0631\u060c \u0635\u0648\u0631 \u0627\u0644\u0628\u0637\u0644\u060c \u0641\u0648\u0627\u0635\u0644\u060c \u0648\u063a\u064a\u0631 \u0630\u0644\u0643."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["\u062a\u0636\u0645\u064a\u0646\u060c \u0645\u062b\u0644 \u064a\u0648\u062a\u064a\u0648\u0628\u060c \u062a\u063a\u0631\u064a\u062f\u0627\u062a\u060c \u0623\u0648 \u0645\u0642\u0627\u0644\u0627\u062a \u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633 \u0623\u062e\u0631\u0649."],Galleries:["\u0645\u0639\u0627\u0631\u0636"],"Images & Videos":["\u0635\u0648\u0631 \u0648\u0645\u0642\u0627\u0637\u0639 \u0641\u064a\u062f\u064a\u0648"],"Text & Headings":["\u0646\u0635 \u0648\u0639\u0646\u0627\u0648\u064a\u0646"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["\u0642\u0645 \u0628\u062a\u062c\u0631\u0628\u062a\u0647\u0627\u060c \u0642\u062f \u062a\u0643\u062a\u0634\u0641 \u0623\u0634\u064a\u0627\u0621 \u0644\u0645 \u062a\u0643\u0646 \u062a\u0639\u0631\u0641\u0647\u0627 \u0645\u0646 \u0642\u0628\u0644 \u064a\u0633\u062a\u0637\u064a\u0639 \u0645\u0646 \u062e\u0644\u0627\u0644\u0647\u0627 \u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633 \u0623\u0646 \u064a\u0636\u064a\u0641\u0647\u0627 \u0628\u0627\u0644\u0641\u0639\u0644 \u0625\u0644\u0649 \u0645\u0642\u0627\u0644\u0627\u062a\u0643. \u0625\u0644\u064a\u0643 \u0642\u0627\u0626\u0645\u0629 \u0642\u0635\u064a\u0631\u0629 \u0628\u0645\u0627 \u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u064a\u0647 \u062d\u0627\u0644\u064a\u064b\u0627:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["\u062a\u062e\u064a\u0651\u0644 \u0623\u0646 \u0643\u0644 \u0645\u0627 \u064a\u0645\u0643\u0646 \u0644\u0640 \u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633 \u0641\u0639\u0644\u0647 \u0645\u062a\u0627\u062d \u0644\u0643 \u0628\u0633\u0631\u0639\u0629\u060c \u0648\u0641\u064a \u0627\u0644\u0645\u0643\u0627\u0646 \u0646\u0641\u0633\u0647 \u0639\u0644\u0649 \u0648\u0627\u062c\u0647\u0629 \u0627\u0644\u062a\u062d\u0631\u064a\u0631. \u0644\u0633\u062a \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0639\u0631\u0641\u0629 \u0648\u0633\u0648\u0645 HTML \u0623\u0648 \u0627\u0644\u0640 Classes \u0623\u0648 \u062a\u0630\u0643\u0651\u0631 \u0635\u064a\u063a\u0629 \u0627\u0644\u0623\u0643\u0648\u0627\u062f \u0627\u0644\u0642\u0635\u064a\u0631\u0629 \u0627\u0644\u0645\u0639\u0642\u062f\u0629. \u0647\u0630\u0647 \u0647\u064a \u0627\u0644\u0631\u0648\u062d \u0627\u0644\u062a\u064a \u062a\u0643\u0645\u0646 \u062e\u0644\u0641 \u0623\u062f\u0627\u0629 \u0627\u0644\u0625\u062f\u0631\u0627\u062c \u2014 \u0632\u0631 (+) \u0627\u0644\u0630\u064a \u0633\u062a\u0631\u0627\u0647 \u0628\u0623\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u064f\u062d\u0631\u0631 \u2014 \u0648\u0627\u0644\u0630\u064a \u064a\u0633\u0645\u062d \u0644\u0643 \u0628\u0627\u0633\u062a\u0639\u0631\u0627\u0636 \u062c\u0645\u064a\u0639 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u062a\u0627\u062d\u0629\u060c \u0648\u0625\u0636\u0627\u0641\u062a\u0647\u0627 \u0625\u0644\u0649 \u0645\u0642\u0627\u0644\u0627\u062a\u0643. \u0643\u0645\u0627 \u064a\u0645\u0643\u0646 \u0644\u0644\u0625\u0636\u0627\u0641\u0627\u062a \u0648\u0627\u0644\u0642\u0648\u0627\u0644\u0628 \u062a\u0633\u062c\u064a\u0644 \u0648\u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0647\u0627\u060c \u0645\u0645\u0627 \u0633\u064a\u062a\u064a\u062d \u0648\u064a\u062c\u0639\u0644 \u0643\u0644 \u0623\u0646\u0648\u0627\u0639 \u0648\u0625\u0645\u0643\u0627\u0646\u064a\u0627\u062a \u0627\u0644\u062a\u062d\u0631\u064a\u0631 \u0648\u0627\u0644\u0646\u0634\u0631 \u0645\u0641\u062a\u0648\u062d\u0629 \u0648\u063a\u0646\u064a\u0629 \u0628\u0627\u0644\u0645\u062d\u062a\u0648\u064a\u0627\u062a."],"The Inserter Tool":["\u0623\u062f\u0627\u0629 \u0627\u0644\u0625\u062f\u0631\u0627\u062c"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["\u062c\u0631\u0651\u0628 \u062a\u062d\u062f\u064a\u062f \u0627\u0644\u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u062a\u0648\u0636\u064a\u062d\u064a\u0629 \u0623\u0648 \u0625\u0632\u0627\u0644\u062a\u0647\u0627 \u0623\u0648 \u062a\u0639\u062f\u064a\u0644\u0647\u0627\u060c \u0648\u062d\u0627\u0644\u064a\u0627\u064b \u0644\u0627 \u064a\u062a\u0639\u064a\u0646 \u0639\u0644\u064a\u0643 \u062a\u0648\u062e\u064a \u0627\u0644\u062d\u0630\u0631 \u0639\u0646\u062f \u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0635\u0648\u0631\u0629 \u0623\u0648 \u0623\u064a \u0646\u0635 \u0622\u062e\u0631 \u0639\u0646 \u0637\u0631\u064a\u0642 \u0627\u0644\u062e\u0637\u0623 \u0627\u0644\u0630\u064a \u064a\u0624\u062f\u064a \u0644\u0641\u0642\u062f\u0627\u0646 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0639\u0631\u0636 \u0623\u0648 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0630\u064a \u062a\u0639\u0645\u0644 \u0645\u0646 \u0623\u062c\u0644\u0647."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["\u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0642\u0627\u0644\u0628 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u064a\u062f\u0639\u0645 \u0627\u0644\u062a\u0633\u0645\u064a\u0627\u062a\u060c \u0641\u0633\u062a\u0631\u0649 \u0627\u0644\u0632\u0631 \"\u0639\u0631\u0636 \u0648\u0627\u0633\u0639\" \u0639\u0644\u0649 \u0634\u0631\u064a\u0637 \u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0635\u0648\u0631\u0629. \u062c\u0631\u0651\u0628\u0647\u0627."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["\u062a\u0645 \u0627\u0644\u0627\u0647\u062a\u0645\u0627\u0645 \u0648\u0627\u0644\u062a\u0631\u0643\u064a\u0632 \u0648\u0628\u0639\u0646\u0627\u064a\u0629 \u0641\u0627\u0626\u0642\u0629 \u0641\u064a \u0637\u0631\u064a\u0642\u0629 \u0627\u0644\u062a\u0639\u0627\u0645\u0644 \u0645\u0639 \u0627\u0644\u0635\u0648\u0631 \u0648\u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0641\u064a \u0627\u0644\u0645\u064f\u062d\u0631\u0631 \u0627\u0644\u062c\u062f\u064a\u062f. \u0646\u0623\u0645\u0644 \u0623\u0646 \u062a\u062c\u062f \u0627\u0644\u0633\u0647\u0648\u0644\u0629 \u0648\u0627\u0644\u0642\u0648\u0629 \u0623\u0643\u062b\u0631 \u0645\u0646 \u0623\u064a \u0648\u0642\u062a \u0633\u0627\u0628\u0642 \u0645\u0646 \u0646\u0627\u062d\u064a\u0629 \u0625\u0636\u0627\u0641\u0629 \u062a\u0633\u0645\u064a\u0627\u062a \u062a\u0648\u0636\u064a\u062d\u064a\u0629 \u0623\u0648 \u0625\u062f\u0631\u0627\u062c \u0635\u0648\u0631\u0643 \u0628\u0639\u0631\u0636 \u0643\u0627\u0645\u0644."],"A Picture is Worth a Thousand Words":["\u0627\u0644\u0635\u0648\u0631\u0629 \u062a\u0639\u0627\u062f\u0644 \u0623\u0644\u0641 \u0643\u0644\u0645\u0629"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["\u0643\u0630\u0644\u0643 \u062a\u0639\u062a\u0628\u0631 \u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 \u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0645\u0646\u0641\u0635\u0644\u0629\u060c \u0648\u0627\u0644\u062a\u064a \u062a\u0633\u0627\u0639\u062f\u0643 \u0641\u064a \u062a\u062e\u0637\u064a\u0637 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u0648\u062a\u0646\u0638\u064a\u0645\u0647."],"... like this one, which is right aligned.":["... \u0645\u062b\u0644 \u0647\u0630\u0647 \u0627\u0644\u0641\u0642\u0631\u0629\u060c \u0648\u0627\u0644\u0630\u064a \u062a\u0645 \u0648\u0636\u0639\u0647\u0627 \u0628\u0645\u062d\u0627\u0630\u0627\u0629 \u0627\u0644\u064a\u0645\u064a\u0646."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["\u0645\u0627 \u062a\u0642\u0631\u0623\u0647 \u0627\u0644\u0622\u0646 \u0647\u0648 \u0645\u0643\u0648\u0651\u0646 \u0646\u0635 \u0648\u0647\u0648 \u0623\u0643\u062b\u0631 \u0645\u0643\u0648\u0651\u0646 \u0628\u0633\u064a\u0637 \u0628\u064a\u0646 \u0628\u0642\u064a\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a. \u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u0646\u0635 \u0644\u062f\u064a\u0647 \u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u062a\u062d\u0643\u0645 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0647 \u0644\u064a\u062a\u0645 \u0646\u0642\u0644\u0647 \u0628\u062d\u0631\u064a\u0651\u0629 \u0628\u064a\u0646 \u0623\u062c\u0632\u0627\u0621 \u0627\u0644\u0645\u0642\u0627\u0644\u0629."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["\u0627\u0644\u0647\u062f\u0641 \u0645\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u064f\u062d\u0631\u0631 \u0627\u0644\u062c\u062f\u064a\u062f \u0647\u0648 \u0625\u0636\u0627\u0641\u0629 \u0645\u062d\u062a\u0648\u0649 \u062b\u0631\u064a\u0651 \u0625\u0644\u0649 \u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633 \u0628\u0634\u0643\u0644 \u0628\u0633\u064a\u0637 \u0648\u0645\u0645\u062a\u0639. \u062a\u062a\u0643\u0648\u0646 \u0647\u0630\u0647 \u0627\u0644\u0645\u0642\u0627\u0644\u0629 \u0628\u0627\u0644\u0643\u0627\u0645\u0644 \u0645\u0646 \u0623\u062c\u0632\u0627\u0621 \u0645\u0646 \u0627\u0644\u0645\u062d\u062a\u0648\u0649\u2014 \u062a\u0634\u0628\u0647 \u0625\u0644\u0649 \u062d\u062f\u0651 \u0645\u0627 \u0645\u0643\u0639\u0628\u0627\u062a LEGO\u2014 \u0627\u0644\u062a\u064a \u064a\u0645\u0643\u0646\u0643 \u062a\u062d\u0631\u064a\u0643\u0647\u0627 \u0648\u0627\u0644\u062a\u0646\u0642\u0644 \u0628\u0647\u0627 \u0648\u0627\u0644\u062a\u0641\u0627\u0639\u0644 \u0645\u0639\u0647\u0627. \u062d\u0631\u0651\u0643 \u0627\u0644\u0645\u0624\u0634\u0631 \u062d\u0648\u0644\u0643 \u0648\u0633\u062a\u0644\u0627\u062d\u0638 \u0623\u0646 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0645\u062e\u062a\u0644\u0641\u0629 \u062a\u0636\u064a\u0621 \u0645\u0639 \u0627\u0644\u0645\u062e\u0637\u0637\u0627\u062a \u0648\u0627\u0644\u0623\u0633\u0647\u0645. \u0627\u0636\u063a\u0637 \u0639\u0644\u0649 \u0627\u0644\u0623\u0633\u0647\u0645 \u0644\u0625\u0639\u0627\u062f\u0629 \u0636\u0628\u0637 \u0645\u0648\u0636\u0639 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0628\u0633\u0631\u0639\u0629\u060c \u062f\u0648\u0646 \u062e\u0648\u0641 \u0645\u0646 \u0641\u0642\u062f\u0627\u0646 \u0627\u0644\u0645\u062d\u062a\u0648\u064a\u0627\u062a \u0648\u0627\u0644\u0623\u0634\u064a\u0627\u0621 \u0623\u062b\u0646\u0627\u0621 \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0646\u0633\u062e \u0648\u0627\u0644\u0644\u0635\u0642."],"Of Mountains & Printing Presses":["\u0639\u0628\u0631 \u0627\u0644\u062c\u0628\u0627\u0644 \u0648\u0622\u0644\u064a\u0629 \u0627\u0644\u0637\u0628\u0627\u0639\u0629"],"Welcome to the Gutenberg Editor":["\u0623\u0647\u0644\u0627\u064b \u0628\u0643 \u0641\u064a \u0645\u062d\u0631\u0631 Gutenberg"],"block name\x04More":["\u0627\u0644\u0645\u0632\u064a\u062f"],"button to expand options\x04More":["\u0627\u0644\u0645\u0632\u064a\u062f"],"Are you sure you want to unschedule this post?":["\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0631\u063a\u0628\u062a\u0643 \u0628\u0625\u0644\u063a\u0627\u0621 \u062c\u062f\u0648\u0644\u0629 \u0647\u0630\u0647 \u0627\u0644\u0645\u0642\u0627\u0644\u0629\u061f"],"Alt Text (Alternative Text)":["\u0627\u0644\u0646\u0635 \u0627\u0644\u0628\u062f\u064a\u0644"],"Reusable Block":["\u0645\u0643\u0648\u0651\u0646 \u0642\u0627\u0628\u0644 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645"],"Unique identifier for the object.":["\u0645\u064f\u0639\u0631\u0651\u0641 \u0641\u0631\u064a\u062f \u0644\u0644\u0643\u0627\u0626\u0646."],"Untitled Reusable Block":["\u0645\u0643\u0648\u0651\u0646 \u0642\u0627\u0628\u0644 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0628\u062f\u0648\u0646 \u0639\u0646\u0648\u0627\u0646"],Small:["\u0635\u063a\u064a\u0631"],"(%s: %s)":["(%s: %s)"],Reusable:["\u0642\u0627\u0628\u0644 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645"],"(current %s: %s)":["(%s \u0627\u0644\u062d\u0627\u0644\u064a: %s)"],"Remove from Reusable Blocks":["\u062d\u0630\u0641 \u0645\u0646 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0642\u0627\u0628\u0644\u0629 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645"],"Add to Reusable Blocks":["\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0642\u0627\u0628\u0644\u0629 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645"],"Keep as HTML":["\u0627\u0644\u0627\u062d\u062a\u0641\u0627\u0638 \u0643\u0640 HTML"],"Edit URL":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0631\u0627\u0628\u0637"],"Color Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0623\u0644\u0648\u0627\u0646"],"The response is not a valid JSON response.":["\u0627\u0644\u0627\u0633\u062a\u062c\u0627\u0628\u0629 \u0644\u0627 \u062a\u0645\u062b\u0644 \u0631\u062f JSON \u0635\u062d\u064a\u062d."],"Editor publish":["\u0645\u062d\u0631\u0631 \u0627\u0644\u0646\u0634\u0631"],Muted:["\u062a\u0645 \u0627\u0644\u062a\u062c\u0627\u0647\u0644"],"Video Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0641\u064a\u062f\u064a\u0648"],"recent comments":["\u0623\u062d\u062f\u062b \u0627\u0644\u062a\u0639\u0644\u064a\u0642\u0627\u062a"],"Latest Comments":["\u0622\u062e\u0631 \u0627\u0644\u062a\u0639\u0644\u064a\u0642\u0627\u062a"],"Display Excerpt":["\u0639\u0631\u0636 \u0627\u0644\u0645\u0642\u062a\u0637\u0641"],"Display Date":["\u0639\u0631\u0636 \u0627\u0644\u062a\u0627\u0631\u064a\u062e"],"Display Avatar":["\u0639\u0631\u0636 \u0627\u0644\u0635\u0648\u0631\u0629 \u0627\u0644\u0631\u0645\u0632\u064a\u0629"],"Latest Comments Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0623\u062d\u062f\u062b \u0627\u0644\u062a\u0639\u0644\u064a\u0642\u0627\u062a"],"Number of Comments":["\u0639\u062f\u062f \u0627\u0644\u062a\u0639\u0644\u064a\u0642\u0627\u062a"],"Background Opacity":["\u0634\u0641\u0627\u0641\u064a\u0629 \u0627\u0644\u062e\u0644\u0641\u064a\u0629"],Auto:["\u062a\u0644\u0642\u0627\u0626\u064a"],Preload:["\u062a\u062d\u0645\u064a\u0644 \u0645\u0633\u0628\u0642"],"Audio Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0635\u0648\u062a"],"Display a monthly archive of your posts.":["\u0639\u0631\u0636 \u0623\u0631\u0634\u064a\u0641 \u0634\u0647\u0631\u064a \u0644\u0645\u0642\u0627\u0644\u0627\u062a \u0645\u0648\u0642\u0639\u0643."],"Display as Dropdown":["\u0639\u0631\u0636 \u0643\u0642\u0627\u0626\u0645\u0629 \u0645\u0646\u0633\u062f\u0644\u0629"],"Show Post Counts":["\u0639\u0631\u0636 \u0639\u062f\u062f \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062a"],"Archives Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0623\u0631\u0634\u064a\u0641"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u0627\u0644\u062f\u0639\u0645"],"No comments to show.":["\u0644\u0627 \u062a\u0648\u062c\u062f \u062a\u0639\u0644\u064a\u0642\u0627\u062a \u0644\u0644\u0639\u0631\u0636."],"%1$s on %2$s":["%1$s \u0639\u0644\u0649 %2$s"],"Select Post":["\u062a\u062d\u062f\u064a\u062f \u0645\u0642\u0627\u0644\u0629"],"Select Week":["\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0623\u0633\u0628\u0648\u0639"],"Select Day":["\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u064a\u0648\u0645"],"Select Month":["\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0634\u0647\u0631"],"Select Year":["\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0633\u0646\u0629"],Archives:["\u0627\u0644\u0623\u0631\u0634\u064a\u0641"],"Very dark gray":["\u0631\u0645\u0627\u062f\u064a \u063a\u0627\u0645\u0642 \u062c\u062f\u0627\u064b"],"Cyan bluish gray":["\u0623\u0632\u0631\u0642 \u0633\u0645\u0627\u0648\u064a \u0631\u0645\u0627\u062f\u064a"],"Very light gray":["\u0631\u0645\u0627\u062f\u064a \u0641\u0627\u062a\u062d \u062c\u062f\u0627\u064b"],"Vivid cyan blue":["\u0623\u0632\u0631\u0642 \u0633\u0645\u0627\u0648\u064a \u062d\u064a\u0648\u064a"],"Pale cyan blue":["\u0623\u0632\u0631\u0642 \u0633\u0645\u0627\u0648\u064a \u0634\u0627\u062d\u0628"],"Vivid green cyan":["\u0623\u062e\u0636\u0631 \u0633\u0645\u0627\u0648\u064a \u062d\u064a\u0648\u064a"],"Light green cyan":["\u0623\u062e\u0636\u0631 \u0633\u0645\u0627\u0648\u064a \u0641\u0627\u062a\u062d"],"Luminous vivid amber":["\u0628\u0631\u062a\u0642\u0627\u0644\u064a \u0646\u0627\u0631\u064a"],"Luminous vivid orange":["\u0628\u0631\u062a\u0642\u0627\u0644\u064a \u0641\u0627\u0642\u0639"],"Vivid red":["\u0623\u062d\u0645\u0631 \u0641\u0627\u0642\u0639"],"Pale pink":["\u0632\u0647\u0631\u064a \u0641\u0627\u062a\u062d"],"Inline image":["\u0635\u0648\u0631\u0629 \u0645\u0636\u0645\u0646\u0629"],"Available block types":["\u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u0645\u062a\u0627\u062d\u0629"],"Transform To:":["\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649:"],"Remove Block":["\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"Open publish panel":["\u0641\u062a\u062d \u0644\u0648\u062d\u0629 \u0627\u0644\u0646\u0634\u0631"],Dots:["\u0646\u0642\u0627\u0637"],"Wide Line":["\u062e\u0637 \u0639\u0631\u064a\u0636"],Large:["\u062d\u062c\u0645 \u0643\u0628\u064a\u0631"],"Show download button":["\u0639\u0631\u0636 \u0632\u0631 \u0627\u0644\u062a\u0646\u0632\u064a\u0644"],"Download button settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0632\u0631 \u0627\u0644\u062a\u0646\u0632\u064a\u0644"],"Link To":["\u0631\u0627\u0628\u0637 \u0644\u0640"],"Text link settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0646\u0635 \u0627\u0644\u0631\u0627\u0628\u0637"],pdf:["pdf"],document:["\u0645\u0633\u062a\u0646\u062f"],"Copy URL":["\u0646\u0633\u062e \u0627\u0644\u0631\u0627\u0628\u0637 URL"],"Write file name\u2026":["\u0643\u062a\u0627\u0628\u0629 \u0627\u0633\u0645 \u0627\u0644\u0645\u0644\u0641\u2026"],"Edit file":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0645\u0644\u0641"],File:["\u0645\u0644\u0641"],"A single column within a columns block.":["\u0639\u0645\u0648\u062f \u0648\u0627\u062d\u062f \u062f\u0627\u062e\u0644 \u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u0623\u0639\u0645\u062f\u0629."],Column:["\u0639\u0645\u0648\u062f"],Outline:["\u0645\u064f\u062d\u062f\u062f"],Loop:["\u062d\u0644\u0642\u0629"],Autoplay:["\u062a\u0634\u063a\u064a\u0644 \u062a\u0644\u0642\u0627\u0626\u064a"],"Playback Controls":["\u0636\u0648\u0627\u0628\u0637 \u0627\u0644\u062a\u0634\u063a\u064a\u0644"],"Close dialog":["\u0625\u063a\u0644\u0627\u0642 \u0645\u0631\u0628\u0639 \u0627\u0644\u062d\u0648\u0627\u0631"],"Sorry, this file type is not permitted for security reasons.":["\u0627\u0644\u0645\u0639\u0630\u0631\u0629\u060c \u0646\u0648\u0639 \u0627\u0644\u0645\u0644\u0641 \u0647\u0630\u0627 \u063a\u064a\u0631 \u0645\u0633\u0645\u0648\u062d \u0628\u0647 \u0644\u0623\u0633\u0628\u0627\u0628 \u0623\u0645\u0646\u064a\u0629."],"Disable tips":["\u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u062a\u0644\u0645\u064a\u062d\u0627\u062a"],"Got it":["\u0641\u0647\u0645\u062a"],"See next tip":["\u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u062a\u0644\u0645\u064a\u062d \u0627\u0644\u062a\u0627\u0644\u064a"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u0639\u0646\u062f\u0645\u0627 \u062a\u0643\u0648\u0646 \u062c\u0627\u0647\u0632\u0627\u064b\u060c \u0623\u0631\u0633\u0644 \u0639\u0645\u0644\u0643 \u0644\u0644\u0645\u0631\u0627\u062c\u0639\u0629\u060c \u0644\u064a\u062a\u0645\u0643\u0646 \u0627\u0644\u0645\u062d\u0631\u0631 \u0645\u0646 \u0627\u0644\u0645\u0648\u0627\u0641\u0642\u0629 \u0639\u0644\u064a\u0647 \u0646\u064a\u0627\u0628\u0629 \u0639\u0646\u0643."],"Are you ready to submit for review?":["\u0647\u0644 \u0623\u0646\u062a \u0645\u0633\u062a\u0639\u062f \u0644\u0644\u062a\u0642\u062f\u064a\u0645 \u0644\u0623\u062c\u0644 \u0627\u0644\u0645\u0631\u0627\u062c\u0639\u0629\u061f"],"Replace image":["\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0627\u0644\u0635\u0648\u0631\u0629"],"Remove image":["\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0635\u0648\u0631\u0629"],"Error while uploading file %s to the media library.":["\u062d\u062f\u062b \u062e\u0637\u0623 \u0623\u062b\u0646\u0627\u0621 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0645\u0644\u0641 %s \u0625\u0644\u0649 \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637."],"This file exceeds the maximum upload size for this site.":["\u064a\u062a\u062c\u0627\u0648\u0632 \u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u062d\u062f\u0651 \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u062d\u062c\u0645 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0631\u0641\u0648\u0639\u0629 \u0644\u0647\u0630\u0627 \u0627\u0644\u0645\u0648\u0642\u0639."],"View the autosave":["\u0639\u0631\u0636 \u0627\u0644\u062d\u0641\u0638 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a"],"There is an autosave of this post that is more recent than the version below.":["\u0647\u0646\u0627\u0643 \u062d\u0641\u0638 \u062a\u0644\u0642\u0627\u0626\u064a \u0644\u0647\u0630\u0647 \u0627\u0644\u0645\u0642\u0627\u0644\u0629 \u0623\u062d\u062f\u062b \u0645\u0646 \u0627\u0644\u0646\u0633\u062e\u0629 \u0623\u062f\u0646\u0627\u0647."],Autosaving:["\u062d\u0641\u0638 \u062a\u0644\u0642\u0627\u0626\u064a"],"Enter URL here\u2026":["\u0623\u062f\u062e\u0644 \u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0627\u0628\u0637 \u0647\u0646\u0627\u2026"],"Pin to toolbar":["\u0627\u0644\u062a\u062b\u0628\u064a\u062a \u0625\u0644\u0649 \u0634\u0631\u064a\u0637 \u0627\u0644\u0623\u062f\u0648\u0627\u062a"],"Unpin from toolbar":["\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u062a\u062b\u0628\u064a\u062a \u0645\u0646 \u0634\u0631\u064a\u0637 \u0627\u0644\u0623\u062f\u0648\u0627\u062a"],"Insert a table \u2014 perfect for sharing charts and data.":["\u0625\u062f\u0631\u0627\u062c \u062c\u062f\u0648\u0644 \u2014 \u0645\u062b\u0627\u0644\u064a \u0644\u0645\u0634\u0627\u0631\u0643\u0629 \u0627\u0644\u0631\u0633\u0648\u0645 \u0627\u0644\u0628\u064a\u0627\u0646\u064a\u0629 \u0648\u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a."],"Fixed width table cells":["\u062e\u0644\u0627\u064a\u0627 \u0627\u0644\u062c\u062f\u0648\u0644 \u0630\u0627\u062a \u0639\u0631\u0636 \u062b\u0627\u0628\u062a"],"Table Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062c\u062f\u0648\u0644"],"Add text that respects your spacing and tabs, and also allows styling.":["\u0625\u0636\u0627\u0641\u0629 \u0646\u0635 \u064a\u062d\u062a\u0631\u0645 \u0627\u0644\u0641\u0631\u0627\u063a\u0627\u062a \u0648\u0639\u0644\u0627\u0645\u0627\u062a \u0627\u0644\u062a\u0628\u0648\u064a\u0628 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643\u060c \u0643\u0645\u0627 \u064a\u0633\u0645\u062d \u0623\u064a\u0636\u064b\u0627 \u0628\u0627\u0644\u0623\u0646\u0645\u0627\u0637."],"Display a list of your most recent posts.":["\u0639\u0631\u0636 \u0642\u0627\u0626\u0645\u0629 \u0628\u0623\u062d\u062f\u062b \u0645\u0634\u0627\u0631\u0643\u0627\u062a\u0643."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\u0625\u0636\u0627\u0641\u0629 \u0645\u0643\u0648\u0651\u0646 \u064a\u0639\u0631\u0636 \u0645\u062d\u062a\u0648\u0649 \u062a\u0645 \u0633\u062d\u0628\u0647 \u0645\u0646 \u0645\u0648\u0627\u0642\u0639 \u0623\u062e\u0631\u0649\u060c \u0645\u062b\u0644 Twitter \u0623\u0648 Instagram \u0623\u0648 YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u0623\u0636\u0641 \u0645\u0643\u0648\u0651\u0646 \u064a\u0639\u0631\u0636 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0641\u064a \u0623\u0639\u0645\u062f\u0629 \u0645\u062a\u0639\u062f\u062f\u0629\u060c \u062b\u0645 \u0623\u0636\u0641 \u0623\u064a \u0645\u062d\u062a\u0648\u0649 \u062a\u0631\u064a\u062f\u0647."],"Error loading block: %s":["\u062e\u0637\u0623 \u0641\u064a \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0645\u0643\u0648\u0651\u0646: %s"],"Unknown error":["\u062e\u0637\u0623 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641"],"Embed Handler":["\u062a\u0636\u0645\u064a\u0646 \u0645\u0639\u0627\u0644\u062c"],"term\x04Remove %s":["\u0625\u0632\u0627\u0644\u0629 %s"],"Copy the permalink":["\u0646\u0633\u062e \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u062f\u0627\u0626\u0645"],"Permalink copied":["\u062a\u0645 \u0646\u0633\u062e \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u062f\u0627\u0626\u0645"],"Height in pixels":["\u0627\u0644\u0627\u0631\u062a\u0641\u0627\u0639 \u0628\u0627\u0644\u0628\u0643\u0633\u0644"],"Spacer Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0641\u0627\u0635\u0644"],Spacer:["\u0641\u0631\u0627\u063a \u0641\u0627\u0635\u0644"],"Toggle to show a large initial letter.":["\u062a\u0628\u062f\u064a\u0644 \u0644\u0639\u0631\u0636 \u0623\u0648\u0644 \u062d\u0631\u0641 \u0639\u0646\u062f \u0628\u062f\u0627\u064a\u0629 \u0627\u0644\u0641\u0642\u0631\u0629 \u0628\u0634\u0643\u0644 \u0643\u0628\u064a\u0631."],"Showing large initial letter.":["\u064a\u064f\u0639\u0631\u0636 \u0627\u0644\u062d\u0631\u0641 \u0627\u0644\u0623\u0648\u0644 \u0643\u0628\u064a\u0631\u064b\u0627."],"Name:":["\u0627\u0644\u0627\u0633\u0645:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s \u0645\u0646 %3$s)"],"Remove item":["\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0639\u0646\u0635\u0631"],"Color code: %s":["\u0631\u0645\u0632 \u0627\u0644\u0644\u0648\u0646: %s"],"Skip to the selected block":["\u0627\u0644\u062a\u062e\u0637\u064a \u0625\u0644\u0649 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u0645\u064f\u062d\u062f\u062f"],"Publish\u2026":["\u0646\u0634\u0631\u2026"],"Schedule\u2026":["\u062c\u062f\u0648\u0644\u0629\u2026"],"Edit post permalink":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u062f\u0627\u0626\u0645 \u0644\u0644\u0645\u0642\u0627\u0644\u0629"],"Show Block Settings":["\u0625\u0638\u0647\u0627\u0631 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"Hide Block Settings":["\u0625\u062e\u0641\u0627\u0621 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"Block settings closed":["\u062a\u0645 \u0625\u063a\u0644\u0627\u0642 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"Close plugin":["\u0625\u063a\u0644\u0627\u0642 \u0627\u0644\u0625\u0636\u0627\u0641\u0629"],"Link settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0631\u0627\u0628\u0637"],Unlink:["\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0631\u0628\u0637"],"Page break":["\u0641\u0627\u0635\u0644 \u0627\u0644\u0635\u0641\u062d\u0629"],pagination:["\u062a\u0639\u062f\u062f \u0627\u0644\u0635\u0641\u062d\u0627\u062a"],"next page":["\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629"],"Image Size":["\u062d\u062c\u0645 \u0627\u0644\u0635\u0648\u0631\u0629"],Height:["\u0627\u0644\u0627\u0631\u062a\u0641\u0627\u0639"],Width:["\u0627\u0644\u0639\u0631\u0636"],"Image Dimensions":["\u0623\u0628\u0639\u0627\u062f \u0627\u0644\u0635\u0648\u0631\u0629"],"Thumbnails are not cropped.":["\u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u0635\u063a\u0631\u0629 \u063a\u064a\u0631 \u0645\u0642\u0635\u0648\u0635\u0629."],"Thumbnails are cropped to align.":["\u064a\u062a\u0645 \u0627\u0642\u062a\u0635\u0627\u0635 \u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u0635\u063a\u0651\u0631\u0629 \u0644\u0636\u0628\u0637 \u0627\u0644\u0645\u062d\u0627\u0630\u0627\u0629."],"Media Library":["\u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637"],Advanced:["\u0645\u062a\u0642\u062f\u0645"],"Add item":["\u0625\u0636\u0627\u0641\u0629 \u0639\u0646\u0635\u0631"],"Reset the template":["\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0627\u0644\u0642\u0627\u0644\u0628"],"Keep it as is":["\u0627\u0628\u0642\u0647\u0627 \u0643\u0645\u0627 \u0647\u064a"],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u0644\u0627 \u064a\u062a\u0637\u0627\u0628\u0642 \u0645\u062d\u062a\u0648\u0649 \u0645\u0642\u0627\u0644\u062a\u0643 \u0645\u0639 \u0627\u0644\u0642\u0627\u0644\u0628 \u0627\u0644\u0645\u062e\u0635\u0635 \u0644\u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 \u0645\u0646 \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643."],"Resetting the template may result in loss of content, do you want to continue?":["\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0627\u0644\u0642\u0627\u0644\u0628 \u0642\u062f \u064a\u0624\u062f\u064a \u0625\u0644\u0649 \u0641\u0642\u062f\u0627\u0646 \u0627\u0644\u0645\u062d\u062a\u0648\u0649\u060c \u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629\u061f"],"Document Statistics":["\u0625\u062d\u0635\u0627\u0626\u064a\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u0646\u062f"],"is now scheduled. It will go live on":["\u0644\u0642\u062f \u062a\u0645\u062a \u0627\u0644\u062c\u062f\u0648\u0644\u0629. \u0633\u064a\u062a\u0645 \u0627\u0644\u0646\u0634\u0631 \u0641\u064a"],Scheduled:["\u0645\u062c\u062f\u0648\u0644"],"Scheduling\u2026":["\u062c\u0627\u0631\u064a \u0627\u0644\u062c\u062f\u0648\u0644\u0629..."],"Code editor selected":["\u0645\u064f\u062d\u0631\u0631 \u0627\u0644\u0634\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0627\u0644\u0645\u064f\u062d\u062f\u062f"],"Visual editor selected":["\u0627\u0644\u0645\u062d\u0631\u0631 \u0627\u0644\u0645\u0631\u0626\u064a \u0627\u0644\u0645\u064f\u062d\u062f\u062f"],Plugins:["\u0627\u0644\u0625\u0636\u0627\u0641\u0627\u062a"],"Custom Size":["\u062d\u062c\u0645 \u0645\u062e\u0635\u0635"],"Layout Elements":["\u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u062a\u062e\u0637\u064a\u0637"],"term\x04%s removed":["\u062a\u0645\u0651 \u0625\u0632\u0627\u0644\u0629 %s"],"term\x04%s added":["\u062a\u0645\u0651 \u0625\u0636\u0627\u0641\u0629 %s"],"imperative verb\x04Preview":["\u0645\u0639\u0627\u064a\u0646\u0629"],"Block deleted.":["\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0645\u0643\u0648\u0651\u0646."],"Block updated.":["\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0645\u0643\u0648\u0651\u0646."],"Block created.":["\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u0643\u0648\u0651\u0646."],"Trashing failed":[" \u0641\u0634\u0644\u062a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u062d\u0630\u0641"],"Updating failed.":["\u0641\u0634\u0644\u062a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u062a\u062d\u062f\u064a\u062b."],"Scheduling failed.":["\u0641\u0634\u0644\u062a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u062c\u062f\u0648\u0644\u0629."],"Publishing failed.":["\u0641\u0634\u0644\u062a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0646\u0634\u0631."],"View Post":["\u0639\u0631\u0636 \u0627\u0644\u0645\u0642\u0627\u0644\u0629"],"You have unsaved changes. If you proceed, they will be lost.":["\u0644\u062f\u064a\u0643 \u062a\u0639\u062f\u064a\u0644\u0627\u062a \u063a\u064a\u0631 \u0645\u062d\u0641\u0638\u0629. \u0641\u064a \u062d\u0627\u0644 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629\u060c \u0633\u0648\u0641 \u062a\u0644\u063a\u0649 \u0627\u0644\u062a\u0639\u062f\u064a\u0644\u0627\u062a."],"Document Outline":["\u0645\u0644\u062e\u0635 \u0639\u0646\u0627\u0648\u064a\u0646 \u0627\u0644\u0645\u0633\u062a\u0646\u062f"],Paragraphs:["\u0641\u0642\u0631\u0627\u062a"],Headings:["\u0639\u0646\u0627\u0648\u064a\u0646"],Words:["\u0623\u062d\u0631\u0641"],"Content structure":["\u0628\u0646\u064a\u0629 \u0627\u0644\u0645\u062d\u062a\u0648\u0649"],Public:["\u0639\u0627\u0645"],"Protected with a password you choose. Only those with the password can view this post.":["\u0645\u062d\u0645\u064a \u0628\u0643\u0644\u0645\u0629 \u0645\u0631\u0648\u0631 \u0642\u0645\u062a \u0628\u0627\u062e\u062a\u064a\u0627\u0631\u0647\u0627. \u0633\u062a\u0638\u0647\u0631 \u0627\u0644\u0635\u0641\u062d\u0629 \u0644\u0645\u0646 \u064a\u0645\u0644\u0643 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u0641\u0642\u0637."],"Password Protected":["\u0645\u062d\u0645\u064a \u0628\u0643\u0644\u0645\u0629 \u0645\u0631\u0648\u0631"],"Only visible to site admins and editors.":["\u062a\u0638\u0647\u0631 \u0641\u0642\u0637 \u0644\u0645\u062f\u0631\u0627\u0621 \u0627\u0644\u0645\u0648\u0642\u0639 \u0648\u0627\u0644\u0645\u062d\u0631\u0631\u064a\u0646."],Private:["\u062e\u0627\u0635"],"Visible to everyone.":["\u0645\u0631\u0626\u064a \u0644\u0644\u062c\u0645\u064a\u0639."],"Post Visibility":["\u062d\u0627\u0644\u0629 \u0627\u0644\u0638\u0647\u0648\u0631"],"Would you like to privately publish this post now?":["\u0647\u0644 \u062a\u0648\u062f\u0651 \u0646\u0634\u0631 \u0647\u0630\u0647 \u0627\u0644\u0645\u0642\u0627\u0644\u0629 \u0627\u0644\u0622\u0646 \u0628\u0635\u0648\u0631\u0629 \u062e\u0627\u0635\u0629\u061f"],"Use a secure password":["\u0627\u0633\u062a\u062e\u062f\u0645 \u0643\u0644\u0645\u0629 \u0645\u0631\u0648\u0631 \u0622\u0645\u0646\u0629"],"Create password":["\u0625\u0646\u0634\u0627\u0621 \u0643\u0644\u0645\u0629 \u0645\u0631\u0648\u0631"],"Move to Trash":["\u0646\u0642\u0644 \u0625\u0644\u0649 \u0633\u0644\u0629 \u0627\u0644\u0645\u064f\u0647\u0645\u0644\u0627\u062a"],"Parent Term":["\u0627\u0644\u0639\u0646\u0635\u0631 \u0627\u0644\u0631\u0626\u064a\u0633\u064a"],"Parent Category":["\u0627\u0644\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0623\u0628"],"Add new term":["\u0625\u0636\u0627\u0641\u0629 \u0639\u0646\u0635\u0631 \u062c\u062f\u064a\u062f"],"Add new category":["\u0625\u0636\u0627\u0641\u0629 \u062a\u0635\u0646\u064a\u0641 \u062c\u062f\u064a\u062f"],Term:["\u0639\u0646\u0635\u0631"],Tag:["\u0648\u0633\u0645"],"Add New Term":["\u0625\u0636\u0627\u0641\u0629 \u0639\u0646\u0635\u0631 \u062c\u062f\u064a\u062f"],"Add New Tag":["\u0625\u0636\u0627\u0641\u0629 \u0648\u0633\u0645 \u062c\u062f\u064a\u062f"],"Switch to Draft":["\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649 \u0645\u0633\u0648\u062f\u0629"],"Are you sure you want to unpublish this post?":["\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0625\u0644\u063a\u0627\u0621 \u0646\u0634\u0631 \u0647\u0630\u0627 \u0627\u0644\u0645\u0642\u0627\u0644\u061f"],Immediately:["\u0641\u0648\u0631\u0627\u064b"],"Save Draft":["\u062d\u0641\u0638 \u0627\u0644\u0645\u0633\u0648\u062f\u0629"],Saving:["\u062c\u0627\u0631\u064a \u0627\u0644\u062d\u0641\u0638"],"Publish:":["\u0646\u0634\u0631:"],"Visibility:":["\u0627\u0644\u0638\u0647\u0648\u0631:"],"Are you ready to publish?":["\u0647\u0644 \u0623\u0646\u062a \u0645\u064f\u0633\u062a\u0639\u062f \u0644\u0644\u0646\u0634\u0631\u061f"],"Copy Link":["\u0646\u0633\u062e \u0627\u0644\u0631\u0627\u0628\u0637"],"What\u2019s next?":["\u0645\u0627 \u0647\u0648 \u0627\u0644\u062a\u0627\u0644\u064a\u061f"],"is now live.":["\u062a\u0645\u0651 \u0646\u0634\u0631\u0647 \u0627\u0644\u0622\u0646."],Published:["\u0645\u0646\u0634\u0648\u0631"],Schedule:["\u062c\u062f\u0648\u0644\u0629"],Update:["\u062a\u062d\u062f\u064a\u062b"],"Submit for Review":["\u0625\u0631\u0633\u0627\u0644 \u0644\u0644\u0645\u0631\u0627\u062c\u0639\u0629"],"Updating\u2026":["\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u062d\u062f\u064a\u062b\u2026"],"Publishing\u2026":["\u062c\u0627\u0631\u064a \u0627\u0644\u0646\u0634\u0631\u2026"],"Allow Pingbacks & Trackbacks":["\u0627\u0644\u0633\u0645\u0627\u062d \u0628\u0627\u0644\u062a\u0646\u0628\u064a\u0647\u0627\u062a \u0648\u0627\u0644\u062a\u0639\u0642\u064a\u0628\u0627\u062a"],"Permalink:":["\u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u062f\u0627\u0626\u0645:"],"Pending Review":["\u0628\u0625\u0646\u062a\u0638\u0627\u0631 \u0627\u0644\u0645\u0631\u0627\u062c\u0639\u0629"],"%d Revision":["%d \u0645\u0631\u0627\u062c\u0639\u0627\u062a","%d \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0645\u0631\u0627\u062c\u0639\u062a\u0627\u0646","%d \u0645\u0631\u0627\u062c\u0639\u0627\u062a","%d \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0645\u0631\u0627\u062c\u0639\u0629"],"Suggestion:":["\u0627\u0642\u062a\u0631\u0627\u062d:"],"Post Format":["\u0628\u0646\u064a\u0629 \u0627\u0644\u0645\u0642\u0627\u0644\u0629"],Chat:["\u0645\u062d\u0627\u062f\u062b\u0629"],Status:["\u0627\u0644\u062d\u0627\u0644\u0629"],Standard:["\u0642\u064a\u0627\u0633\u064a"],Aside:["\u0627\u0644\u062c\u0627\u0646\u0628"],"Set Featured Image":["\u062a\u0639\u064a\u064a\u0646 \u0635\u0648\u0631\u0629 \u0628\u0627\u0631\u0632\u0629"],"Learn more about manual excerpts":["\u062a\u0639\u0644\u0645 \u0627\u0644\u0645\u0632\u064a\u062f \u062d\u0648\u0644 \u0627\u0644\u0645\u0642\u062a\u0637\u0641\u0627\u062a \u0627\u0644\u064a\u062f\u0648\u064a\u0629"],"Write an excerpt (optional)":["\u0643\u062a\u0627\u0628\u0629 \u0645\u0642\u062a\u0637\u0641 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)"],"Allow Comments":["\u0627\u0644\u0633\u0645\u0627\u062d \u0628\u0627\u0644\u062a\u0639\u0644\u064a\u0642\u0627\u062a"],"Template:":["\u0627\u0644\u0642\u0627\u0644\u0628:"],"no parent":["\u0644\u0627 \u062a\u0648\u062c\u062f \u0635\u0641\u062d\u0629 \u0623\u0633\u0627\u0633\u064a\u0629"],"no title":["\u0628\u0644\u0627 \u0639\u0646\u0648\u0627\u0646"],Order:["\u062a\u0631\u062a\u064a\u0628"],"No blocks found.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0643\u0648\u0651\u0646\u0627\u062a."],"%d result found.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0646\u062a\u0627\u0626\u062c.","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0646\u062a\u064a\u062c\u0629 \u0648\u0627\u062d\u062f\u0629.","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0646\u062a\u064a\u062c\u062a\u064a\u0646.","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0646\u062a\u0627\u0626\u062c.","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0646\u062a\u064a\u062c\u0629.","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0646\u062a\u064a\u062c\u0629."],Saved:["\u062a\u0645 \u0627\u0644\u062d\u0641\u0638"],Embeds:["\u0627\u0644\u062a\u0636\u0645\u064a\u0646\u0627\u062a"],Blocks:["\u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Search for a block":["\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0645\u0643\u0648\u0651\u0646"],"Add block":["\u0625\u0636\u0627\u0641\u0629 \u0645\u0643\u0648\u0651\u0646"],"Add %s":["\u0625\u0636\u0627\u0641\u0629 %s"],"Copy Error":["\u062e\u0637\u0623 \u0641\u064a \u0627\u0644\u0646\u0633\u062e"],"Copy Post Text":["\u0646\u0633\u062e \u0646\u0635 \u0627\u0644\u0645\u0642\u0627\u0644\u0629"],"Attempt Recovery":["\u0645\u062d\u0627\u0648\u0644\u0629 \u0627\u0644\u0627\u0633\u062a\u0631\u062f\u0627\u062f"],"The editor has encountered an unexpected error.":["\u0648\u0627\u062c\u0647 \u0627\u0644\u0645\u062d\u0631\u0631 \u062e\u0637\u0623 \u063a\u064a\u0631 \u0645\u062a\u0648\u0642\u0639."],Undo:["\u062a\u0631\u0627\u062c\u0639"],Redo:["\u0625\u0639\u0627\u062f\u0629"],"(Multiple H1 headings are not recommended)":["(\u0644\u0627 \u064a\u0648\u0635\u0649 \u0628\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 H1 \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629)"],"(Your theme may already use a H1 for the post title)":["(\u0627\u0644\u0642\u0627\u0644\u0628 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u0642\u062f \u064a\u0633\u062a\u062e\u062f\u0645 \u0628\u0627\u0644\u0641\u0639\u0644 \u0639\u0646\u0648\u0627\u0646 H1 \u0644\u0639\u0646\u0648\u0627\u0646 \u0647\u0630\u0647 \u0627\u0644\u0645\u0642\u0627\u0644\u0629)"],"(Incorrect heading level)":["(\u0645\u0633\u062a\u0648\u0649 \u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u063a\u064a\u0631 \u0635\u062d\u064a\u062d)"],"(Empty heading)":["(\u0639\u0646\u0648\u0627\u0646 \u0641\u0627\u0631\u063a)"],"Block Styles":["\u0623\u0646\u0645\u0627\u0637 \u0627\u0644\u0645\u0643\u0648\u0651\u0646"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u0642\u0633\u0645 \u0627\u0644\u0630\u064a \u064a\u0645\u0643\u0646\u0643 \u0625\u0639\u0627\u062f\u0629 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647\u061f\n\n\u0633\u064a\u062a\u0645 \u0625\u0632\u0627\u0644\u062a\u0647\u0627 \u0646\u0647\u0627\u0626\u064a\u0627\u064b \u0645\u0646 \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062a \u0648\u0627\u0644\u0635\u0641\u062d\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u0633\u062a\u062e\u062f\u0645\u0647\u0627."],"Convert to Regular Block":["\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649 \u0645\u0643\u0648\u0651\u0646 \u0639\u0627\u062f\u064a"],"More options":["\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a"],"Edit visually":["\u062a\u062d\u0631\u064a\u0631 \u0628\u0634\u0643\u0644 \u0645\u0631\u0626\u064a"],Duplicate:["\u062a\u0643\u0631\u0627\u0631"],"Blocks cannot be moved down as they are already at the bottom":["\u0644\u0627 \u064a\u0645\u0643\u0646 \u0646\u0642\u0644 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0625\u0644\u0649 \u0623\u0633\u0641\u0644 \u0644\u0623\u0646\u0647\u0627 \u0628\u0627\u0644\u0641\u0639\u0644 \u0628\u0627\u0644\u0623\u0633\u0641\u0644"],"Blocks cannot be moved up as they are already at the top":["\u0644\u0627 \u064a\u0645\u0643\u0646 \u0646\u0642\u0644 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0625\u0644\u0649 \u0623\u0639\u0644\u0649 \u0644\u0623\u0646\u0647\u0627 \u0628\u0627\u0644\u0641\u0639\u0644 \u0628\u0627\u0644\u0623\u0639\u0644\u0649"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["\u0627\u0644\u0645\u0643\u0648\u0651\u0646 %s \u0647\u0648 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0627\u0644\u0648\u062d\u064a\u062f\u060c \u0648\u0644\u0627 \u064a\u0645\u0643\u0646 \u062a\u062d\u0631\u064a\u0643\u0647"],"Edit as HTML":["\u062a\u062d\u0631\u064a\u0631 \u0643\u0640 HTML"],"Convert to Blocks":["\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649 \u0645\u0643\u0648\u0651\u0646\u0627\u062a"],"Block: %s":["\u0627\u0644\u0645\u0643\u0648\u0651\u0646: %s"],"This block has encountered an error and cannot be previewed.":["\u0644\u0642\u062f \u0648\u0627\u062c\u0647 \u0647\u0630\u0647 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u062e\u0637\u0623 \u0648\u0644\u0627 \u064a\u0645\u0643\u0646 \u0645\u0639\u0627\u064a\u0646\u062a\u0647."],"No block selected.":["\u0644\u0645 \u064a\u062a\u0645 \u062a\u062d\u062f\u064a\u062f \u0623\u064a \u0645\u0643\u0648\u0651\u0646."],"Transform into:":["\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649:"],Remove:["\u0625\u0632\u0627\u0644\u0629"],"Find original":["\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u0623\u0635\u0644"],"Copy All Content":["\u0646\u0633\u062e \u0643\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u0649"],"Copied!":["\u062a\u0645 \u0627\u0644\u0646\u0633\u062e!"],"Additional settings are now available in the Editor block settings sidebar":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0625\u0636\u0627\u0641\u064a\u0629 \u0645\u062a\u0627\u062d\u0629 \u0627\u0644\u0622\u0646 \u0641\u064a \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0645\u062d\u0631\u0631 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0636\u0645\u0646 \u0627\u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u062c\u0627\u0646\u0628\u064a"],Visibility:["\u0627\u0644\u0638\u0647\u0648\u0631"],"Status & Visibility":["\u0627\u0644\u062d\u0627\u0644\u0629 \u0648\u0627\u0644\u0638\u0647\u0648\u0631"],"Page Attributes":["\u0633\u0645\u0627\u062a \u0627\u0644\u0635\u0641\u062d\u0629"],Block:["\u0627\u0644\u0645\u0643\u0648\u0651\u0646"],Document:["\u0627\u0644\u0645\u0633\u062a\u0646\u062f"],"Featured Image":["\u0627\u0644\u0635\u0648\u0631\u0629 \u0627\u0644\u0628\u0627\u0631\u0632\u0629"],"Close settings":["\u0625\u063a\u0644\u0627\u0642 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a"],"Editor content":["\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u062d\u0631\u0631"],Tools:["\u0623\u062f\u0648\u0627\u062a"],Editor:["\u0627\u0644\u0645\u064f\u062d\u0631\u0631"],"Code Editor":["\u0645\u062d\u0631\u0631 \u0627\u0644\u0634\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629"],"Visual Editor":["\u0645\u062d\u0631\u0631 \u0645\u0631\u0626\u064a"],"Editor top bar":["\u0634\u0631\u064a\u0637 \u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0645\u062d\u0631\u0631 \u0627\u0644\u0639\u0644\u0648\u064a"],Settings:["\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a"],Reset:["\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646"],"Dismiss this notice":["\u0625\u062e\u0641\u0627\u0621 \u0647\u0630\u0647 \u0627\u0644\u0645\u0644\u0627\u062d\u0638\u0629"],"Item removed.":["\u062a\u0645\u0651 \u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0639\u0646\u0635\u0631."],"Item added.":["\u062a\u0645\u0651 \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0639\u0646\u0635\u0631."],"Drop files to upload":["\u0623\u0633\u0642\u0637 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0644\u0644\u062a\u062d\u0645\u064a\u0644"],PM:["\u0645\u0633\u0627\u0621\u064b"],AM:["\u0635\u0628\u0627\u062d\u064b\u0627"],"An unknown error occurred.":["\u062d\u0635\u0644 \u062e\u0637\u0623 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641."],"No results.":["\u0644\u0627 \u062a\u0648\u062c\u062f \u0646\u062a\u0627\u0626\u062c."],"%d result found, use up and down arrow keys to navigate.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0646\u062a\u0627\u0626\u062c.","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0646\u062a\u064a\u062c\u0629 \u0648\u0627\u062d\u062f\u0629.","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0646\u062a\u064a\u062c\u062a\u064a\u0646\u060c \u0627\u0633\u062a\u062e\u062f\u0645 \u0645\u0641\u0627\u062a\u064a\u062d \u0627\u0644\u0623\u0633\u0647\u0645 \u0644\u0644\u0623\u0639\u0644\u0649 \u0648\u0627\u0644\u0623\u0633\u0641\u0644 \u0644\u0644\u062a\u0646\u0642\u0644.","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0646\u062a\u0627\u0626\u062c\u060c \u0627\u0633\u062a\u062e\u062f\u0645 \u0645\u0641\u0627\u062a\u064a\u062d \u0627\u0644\u0623\u0633\u0647\u0645 \u0644\u0644\u0623\u0639\u0644\u0649 \u0648\u0627\u0644\u0623\u0633\u0641\u0644 \u0644\u0644\u062a\u0646\u0642\u0644.","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0646\u062a\u064a\u062c\u0629\u060c \u0627\u0633\u062a\u062e\u062f\u0645 \u0645\u0641\u0627\u062a\u064a\u062d \u0627\u0644\u0623\u0633\u0647\u0645 \u0644\u0644\u0623\u0639\u0644\u0649 \u0648\u0627\u0644\u0623\u0633\u0641\u0644 \u0644\u0644\u062a\u0646\u0642\u0644.","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0646\u062a\u064a\u062c\u0629\u060c \u0627\u0633\u062a\u062e\u062f\u0645 \u0645\u0641\u0627\u062a\u064a\u062d \u0627\u0644\u0623\u0633\u0647\u0645 \u0644\u0644\u0623\u0639\u0644\u0649 \u0648\u0627\u0644\u0623\u0633\u0641\u0644 \u0644\u0644\u062a\u0646\u0642\u0644."],"(no title)":["(\u0628\u0644\u0627 \u0639\u0646\u0648\u0627\u0646)"],URL:["\u0631\u0627\u0628\u0637 \u0627\u0644\u0640"],Submit:["\u0625\u0631\u0633\u0627\u0644"],Close:["\u0625\u063a\u0644\u0627\u0642"],"Insert link":["\u0625\u062f\u0631\u0627\u062c \u0631\u0627\u0628\u0637"],"Edit link":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0631\u0627\u0628\u0637"],Link:["\u0631\u0627\u0628\u0637"],Strikethrough:["\u0646\u0635\u0651 \u0645\u0634\u0637\u0648\u0628"],Italic:["\u0645\u0627\u0626\u0644"],Bold:["\u062e\u0637 \u0639\u0631\u064a\u0636"],"Remove link":["\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0631\u0627\u0628\u0637"],"Number of items":["\u0639\u062f\u062f \u0627\u0644\u0639\u0646\u0627\u0635\u0631"],All:["\u0627\u0644\u0643\u0644"],Category:["\u062a\u0635\u0646\u064a\u0641"],"Z \u2192 A":["\u064a \u2190 \u0623"],"A \u2192 Z":["\u0623 \u2190 \u064a"],"Oldest to Newest":["\u0627\u0644\u0623\u0642\u062f\u0645 \u0627\u0644\u0649 \u0627\u0644\u0623\u062d\u062f\u062b"],"Newest to Oldest":["\u0627\u0644\u0623\u062d\u062f\u062b \u0627\u0644\u0649 \u0627\u0644\u0623\u0642\u062f\u0645"],"Order by":["\u0627\u0644\u062a\u0631\u062a\u064a\u0628 \u062d\u0633\u0628"],Select:["\u062a\u062d\u062f\u064a\u062f"],"Select or Upload Media":["\u062a\u062d\u062f\u064a\u062f \u0623\u0648 \u0631\u0641\u0639 \u0648\u0633\u0627\u0626\u0637"],Video:["\u0641\u064a\u062f\u064a\u0648"],"Edit video":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0641\u064a\u062f\u064a\u0648"],"Write\u2026":["\u0643\u062a\u0627\u0628\u0629\u2026"],poetry:["\u0627\u0644\u0634\u0650\u0639\u0631"],Verse:["\u0628\u064a\u062a \u0634\u0639\u0631/\u0639\u0628\u0627\u0631\u0629"],"New Column":["\u0639\u0645\u0648\u062f \u062c\u062f\u064a\u062f"],"Delete Column":["\u062d\u0630\u0641 \u0627\u0644\u0639\u0645\u0648\u062f"],"Add Column After":["\u0625\u0636\u0627\u0641\u0629 \u0639\u0645\u0648\u062f \u0628\u0639\u062f"],"Add Column Before":["\u0625\u0636\u0627\u0641\u0629 \u0639\u0645\u0648\u062f \u0642\u0628\u0644"],"Delete Row":["\u062d\u0630\u0641 \u0627\u0644\u0635\u0641"],"Add Row After":["\u0625\u0636\u0627\u0641\u0629 \u0635\u0641 \u0628\u0639\u062f"],"Add Row Before":["\u0625\u0636\u0627\u0641\u0629 \u0635\u0641 \u0642\u0628\u0644"],"Edit table":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u062c\u062f\u0648\u0644"],Table:["\u062c\u062f\u0648\u0644"],"Write subheading\u2026":["\u0643\u062a\u0627\u0628\u0629 \u0639\u0646\u0648\u0627\u0646 \u0641\u0631\u0639\u064a\u2026"],"Write shortcode here\u2026":["\u0643\u062a\u0627\u0628\u0629 \u0627\u0644\u0643\u0648\u062f \u0627\u0644\u0642\u0635\u064a\u0631 \u0647\u0646\u0627\u2026"],Shortcode:["\u0643\u0648\u062f \u0642\u0635\u064a\u0631"],divider:["\u0645\u064f\u0642\u0633\u0651\u0645"],"horizontal-line":["\u062e\u0637 \u0623\u0641\u0642\u064a"],Separator:["\u0641\u0627\u0635\u0644"],Quote:["\u0627\u0642\u062a\u0628\u0627\u0633"],"Write citation\u2026":["\u0643\u062a\u0627\u0628\u0629 \u0627\u0642\u062a\u0628\u0627\u0633\u2026"],"Write quote\u2026":["\u0643\u062a\u0627\u0628\u0629 \u0627\u0642\u062a\u0628\u0627\u0633..."],Pullquote:["\u0627\u0642\u062a\u0628\u0627\u0633 \u0645\u0627\u0626\u0644"],"Write preformatted text\u2026":["\u0643\u062a\u0627\u0628\u0629 \u0646\u0635 \u0645\u0647\u064a\u0623 \u0645\u0633\u0628\u0642\u064b\u0627\u2026"],Preformatted:["\u0645\u0647\u064a\u0623 \u0645\u0633\u0628\u0642\u0627"],text:["\u0646\u0635"],Paragraph:["\u0641\u0642\u0631\u0629"],"Font Size":["\u062d\u062c\u0645 \u0627\u0644\u062e\u0637"],"Drop Cap":["\u0627\u0644\u062d\u0631\u0641 \u0627\u0644\u0643\u0628\u064a\u0631"],"Text Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0646\u0635"],"Read more":["\u0627\u0642\u0631\u0623 \u0627\u0644\u0645\u0632\u064a\u062f"],"Write list\u2026":["\u0643\u062a\u0627\u0628\u0629 \u0642\u0627\u0626\u0645\u0629\u2026"],"numbered list":["\u0642\u0627\u0626\u0645\u0629 \u0645\u0631\u0642\u0651\u0645\u0629"],"ordered list":["\u0642\u0627\u0626\u0645\u0629 \u0645\u0631\u062a\u0628\u0629"],"bullet list":["\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0646\u0642\u0627\u0637"],"Indent list item":["\u0623\u0636\u0641 \u0645\u0633\u0627\u0641\u0629 \u0628\u0627\u062f\u0626\u0629 \u0644\u0639\u0646\u0635\u0631 \u0627\u0644\u0642\u0627\u0626\u0645\u0629"],"Outdent list item":["\u062a\u062d\u0631\u064a\u0643 \u0639\u0646\u0635\u0631 \u0627\u0644\u0642\u0627\u0626\u0645\u0629"],"Convert to ordered list":["\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649 \u0642\u0627\u0626\u0645\u0629 \u0645\u0631\u0642\u0651\u0645\u0629"],"Convert to unordered list":["\u062a\u062d\u0648\u064a\u0644 \u0625\u0644\u0649 \u0642\u0627\u0626\u0645\u0629 \u0646\u0642\u0637\u064a\u0629"],List:["\u0642\u0627\u0626\u0645\u0629"],"recent posts":["\u0623\u062d\u062f\u062b \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062a"],"No posts found.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0642\u0627\u0644\u0627\u062a."],"Latest Posts":["\u0622\u062e\u0631 \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062a"],"Display post date":["\u0639\u0631\u0636 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0646\u0634\u0631"],"Grid view":["\u0639\u0631\u0636 \u0634\u0628\u0643\u064a"],"List view":["\u0639\u0631\u0636 \u0627\u0644\u0642\u0627\u0626\u0645\u0629"],photo:["\u0635\u0648\u0631\u0629"],"Image Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0635\u0648\u0631\u0629"],Image:["\u0635\u0648\u0631\u0629"],Preview:["\u0645\u0639\u0627\u064a\u0646\u0629"],embed:["\u062a\u0636\u0645\u064a\u0646"],"Custom HTML":["HTML \u0645\u062e\u0635\u0635"],subtitle:["\u0639\u0646\u0648\u0627\u0646 \u0641\u0631\u0639\u064a"],title:["\u0627\u0644\u0639\u0646\u0648\u0627\u0646"],Heading:["\u0639\u0646\u0648\u0627\u0646"],"Write heading\u2026":["\u0643\u062a\u0627\u0628\u0629 \u0639\u0646\u0648\u0627\u0646\u2026"],"Heading %d":["\u0627\u0644\u0639\u0646\u0648\u0627\u0646 %d"],Level:["\u0627\u0644\u0645\u0633\u062a\u0648\u0649"],"Heading Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646"],photos:["\u0635\u0648\u0631"],images:["\u0627\u0644\u0635\u0648\u0631"],"Remove Image":["\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0635\u0648\u0631\u0629"],None:["\u0628\u062f\u0648\u0646"],"Media File":["\u0645\u0644\u0641 \u0627\u0644\u0648\u0633\u0627\u0626\u0637"],"Attachment Page":["\u0635\u0641\u062d\u0629 \u0627\u0644\u0645\u0631\u0641\u0642"],"Crop Images":["\u0627\u0642\u062a\u0635\u0627\u0635 \u0627\u0644\u0635\u0648\u0631"],"Gallery Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u0639\u0631\u0636"],Gallery:["\u0645\u0639\u0631\u0636"],Classic:["\u062a\u0642\u0644\u064a\u062f\u064a"],video:["\u0641\u064a\u062f\u064a\u0648"],audio:["\u0635\u0648\u062a\u064a\u0627\u062a"],music:["\u0645\u0648\u0633\u064a\u0642\u0649"],image:["\u0635\u0648\u0631\u0629"],blog:["\u0645\u062f\u0648\u0646\u0629"],post:["\u0627\u0644\u0645\u0642\u0627\u0644\u0629"],"Embedded content from %s":["\u0645\u062d\u062a\u0648\u0649 \u0645\u0636\u0645\u0651\u0646 \u0645\u0646 %s"],"Enter URL to embed here\u2026":["\u0623\u062f\u062e\u0644 \u0627\u0644\u0631\u0627\u0628\u0637 \u0644\u062a\u0636\u0645\u064a\u0646\u0647 \u0647\u0646\u0627..."],"%s URL":["\u0627\u0644\u0631\u0627\u0628\u0637 %s"],"Embedding\u2026":["\u062a\u0636\u0645\u064a\u0646\u2026"],"Write title\u2026":["\u0643\u062a\u0627\u0628\u0629 \u0639\u0646\u0648\u0627\u0646\u2026"],"Fixed Background":["\u062e\u0644\u0641\u064a\u0629 \u062b\u0627\u0628\u062a\u0629"],"Edit image":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0635\u0648\u0631\u0629"],Columns:["\u0623\u0639\u0645\u062f\u0629"],Experiments:["\u0627\u0644\u062a\u062c\u0627\u0631\u0628"],Code:["\u0643\u0648\u062f"],"Write code\u2026":["\u0643\u062a\u0627\u0628\u0629 \u0643\u0648\u062f\u2026"],Categories:["\u062a\u0635\u0646\u064a\u0641\u0627\u062a"],"Show Hierarchy":["\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u062a\u0633\u0644\u0633\u0644 \u0627\u0644\u0647\u0631\u0645\u064a"],"Show post counts":["\u0639\u0631\u0636 \u0639\u062f\u062f \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062a"],"Categories Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062a\u0635\u0646\u064a\u0641\u0627\u062a"],"Add text\u2026":["\u0625\u0636\u0627\u0641\u0629 \u0646\u0635\u2026"],Button:["\u0632\u0631"],Apply:["\u062a\u0637\u0628\u064a\u0642"],"Text Color":["\u0644\u0648\u0646 \u0627\u0644\u062e\u0637"],"Background Color":["\u0644\u0648\u0646 \u0627\u0644\u062e\u0644\u0641\u064a\u0629"],"Block has been deleted or is unavailable.":["\u0644\u0642\u062f \u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0623\u0648 \u0623\u0646\u0647 \u063a\u064a\u0631 \u0645\u062a\u0627\u062d."],"Reusable Blocks":["\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0642\u0627\u0628\u0644\u0629 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645"],Cancel:["\u0625\u0644\u063a\u0627\u0621"],Edit:["\u062a\u062d\u0631\u064a\u0631"],"Edit audio":["\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0635\u0648\u062a"],"Write caption\u2026":["\u0643\u062a\u0627\u0628\u0629 \u062a\u0633\u0645\u064a\u0629 \u062a\u0648\u0636\u064a\u062d\u064a\u0629\u2026"],"Use URL":["\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0631\u0627\u0628\u0637 URL"],Audio:["\u0635\u0648\u062a"],Upload:["\u0631\u0641\u0639"],"Additional CSS Class(es)":["\u0648\u0636\u0639 \u0641\u0626\u0629 CSS Class \u0625\u0636\u0627\u0641\u064a"],"HTML Anchor":["\u0631\u0627\u0628\u0637 \u0627\u0644\u0642\u0641\u0632 HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u0642\u062f \u064a\u0643\u0648\u0646 \u0645\u0646 \u0627\u0644\u0635\u0639\u0628 \u0642\u0631\u0627\u0621\u0629 \u062a\u0631\u0643\u064a\u0628\u0629 \u0627\u0644\u0623\u0644\u0648\u0627\u0646 \u0647\u0630\u0647. \u062c\u0631\u0628 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0644\u0648\u0646 \u062e\u0644\u0641\u064a\u0629 \u0623\u0643\u062b\u0631 \u0625\u0634\u0631\u0627\u0642\u0627\u064b \u0648/\u0623\u0648 \u0644\u0648\u0646 \u0646\u0635 \u062f\u0627\u0643\u0646."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u0642\u062f \u064a\u0643\u0648\u0646 \u0645\u0646 \u0627\u0644\u0635\u0639\u0628 \u0642\u0631\u0627\u0621\u0629 \u062a\u0631\u0643\u064a\u0628\u0629 \u0627\u0644\u0623\u0644\u0648\u0627\u0646 \u0647\u0630\u0647. \u062c\u0631\u0628 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0644\u0648\u0646 \u062e\u0644\u0641\u064a\u0629 \u0623\u0643\u062b\u0631 \u0625\u0634\u0631\u0627\u0642\u0627\u064b \u0648/\u0623\u0648 \u0644\u0648\u0646 \u0646\u0635 \u062f\u0627\u0643\u0646."],Clear:["\u0645\u0633\u062d"],"Custom color picker":["\u0645\u0644\u062a\u0642\u0637 \u0627\u0644\u0644\u0648\u0646 \u0627\u0644\u0645\u064f\u062e\u0635\u0635"],"Color: %s":["\u0627\u0644\u0644\u0648\u0646: %s"],"Full Width":["\u0639\u0631\u0636 \u0643\u0627\u0645\u0644"],"Wide Width":["\u0639\u0631\u0636 \u0648\u0627\u0633\u0639"],Widgets:["\u0648\u062f\u062c\u0627\u062a"],Formatting:["\u0627\u0644\u062a\u0646\u0633\u064a\u0642"],"Common Blocks":["\u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u0634\u0627\u0626\u0639\u0629"],"Align Right":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0644\u0644\u064a\u0645\u064a\u0646"],"Align Center":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0644\u0644\u0648\u0633\u0637"],"Align Left":["\u0645\u062d\u0627\u0630\u0627\u0629 \u0644\u0644\u064a\u0633\u0627\u0631"],"Printing since 1440. This is the development plugin for the new block editor in core.":["\u0627\u0644\u0637\u0628\u0627\u0639\u0629 \u0645\u0646\u0630 1440. \u0647\u0630\u0647 \u0647\u064a \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u062a\u0637\u0648\u064a\u0631 \u0645\u0646 \u0623\u062c\u0644 \u0645\u062d\u0631\u0631 \u0627\u0644\u0645\u0643\u0648\u0651\u0646\u0627\u062a \u0627\u0644\u062c\u062f\u064a\u062f \u0641\u064a \u0646\u0648\u0627\u0629 \u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633."],"Add title":["\u0625\u0636\u0627\u0641\u0629 \u0639\u0646\u0648\u0627\u0646"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["\u064a\u062a\u0637\u0644\u0628 \u0648\u0636\u0639 \u062a\u0637\u0648\u064a\u0631 \u0625\u0636\u0627\u0641\u0629 Gutenberg \u0625\u0646\u0634\u0627\u0621 \u0628\u0639\u0636 \u0627\u0644\u0645\u0644\u0641\u0627\u062a. \u0642\u0645 \u0628\u062a\u0634\u063a\u064a\u0644 npm install \u0644\u062a\u0646\u0635\u064a\u0628 \u0627\u0644\u062a\u0628\u0639\u064a\u0627\u062a npm run build \u0644\u0628\u0646\u0627\u0621 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0623\u0648 npm run dev \u0644\u0628\u0646\u0627\u0621 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0648\u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u062a\u063a\u064a\u064a\u0631\u0627\u062a. \u064a\u0631\u062c\u0649 \u0642\u0631\u0627\u0621\u0629 \u0645\u0644\u0641 \u0643\u064a\u0641\u064a\u0629 \u0627\u0644\u0645\u0633\u0627\u0647\u0645\u0629 \u0644\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a."],Author:["\u0643\u0627\u062a\u0628"],Slug:["\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0644\u0637\u064a\u0641"],Discussion:["\u0645\u0646\u0627\u0642\u0634\u0629"],"Custom Fields":["\u0627\u0644\u062d\u0642\u0648\u0644 \u0627\u0644\u0645\u062e\u0635\u0635\u0629"],Excerpt:["\u0627\u0644\u0645\u0642\u062a\u0637\u0641"],Publish:["\u0646\u0634\u0631"],Metadata:["\u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0648\u0635\u0641\u064a\u0629"],Save:["\u062d\u0641\u0638"],Documentation:["\u0648\u062b\u0627\u0626\u0642 \u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629"],"Select Category":["\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u062a\u0635\u0646\u064a\u0641"],"(Untitled)":["(\u0628\u062f\u0648\u0646 \u0639\u0646\u0648\u0627\u0646)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["\u062a\u062a\u0637\u0644\u0628 \u0625\u0636\u0627\u0641\u0629 Gutenberg \u0625\u0635\u062f\u0627\u0631 \u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633 %s \u0623\u0648 \u0623\u062d\u062f\u062b \u0644\u062a\u0639\u0645\u0644 \u0628\u0634\u0643\u0644 \u0635\u062d\u064a\u062d. \u064a\u0631\u062c\u0649 \u062a\u0631\u0642\u064a\u0629 \u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633 \u0642\u0628\u0644 \u062a\u0641\u0639\u064a\u0644 \u0625\u0636\u0627\u0641\u0629 Gutenberg."],"Gutenberg Team":["\u0641\u0631\u064a\u0642 Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["\u0639\u0631\u0636 \u062a\u0648\u0636\u064a\u062d\u064a"],"%s ago":["\u0642\u0628\u0644 %s"],"Block style name must be a string.":["\u064a\u062c\u0628 \u0623\u0646 \u064a\u062d\u062a\u0648\u064a \u0627\u0633\u0645 \u0646\u0645\u0637 \u0627\u0644\u0645\u0643\u0648\u0651\u0646 \u0639\u0644\u0649 \u0623\u062d\u0631\u0641 \u0641\u0642\u0637."]}},824,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":["\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043e\u0442\u0432\u0430\u0440\u044f\u043d\u0435 \u043d\u0430 \u0445\u0440\u0430\u043d\u0438\u043b\u043a\u0430\u0442\u0430. \u0412\u0435\u0440\u043e\u044f\u0442\u043d\u043e \u0437\u0430 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0438, \u043e\u043f\u0438\u0442\u0430\u0439\u0442\u0435 \u0441\u043a\u043e\u0440\u043e \u043f\u0430\u043a."],"RSS Error:":["\u0413\u0440\u0435\u0448\u043a\u0430 \u0432 RSS:"],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:["\u041d\u0430\u0437\u0430\u0434"],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:["RSS "],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:["\u041f\u043e\u0434\u0447\u0435\u0440\u0442\u0430\u043d"],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":["\u0411\u043b\u043e\u043a (\u0438\u0437\u0431\u0440\u0430\u043d)"],"Document (selected)":["\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 (\u0438\u0437\u0431\u0440\u0430\u043d)"],"%d word":["%d \u0434\u0443\u043c\u0430","%d \u0434\u0443\u043c\u0438"],"Top Toolbar":["\u0413\u043e\u0440\u043d\u0430 \u043b\u0435\u043d\u0442\u0430 \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438"],"Link Rel":["rel \u0430\u0442\u0440\u0438\u0431\u0443\u0442"],"Link CSS Class":["\u0421\u0432\u044a\u0440\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 CSS \u043a\u043b\u0430\u0441"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u0421\u044a\u0437\u0434\u0430\u0439\u0442\u0435 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0438 \u0433\u043e \u0437\u0430\u043f\u0430\u0437\u0435\u0442\u0435, \u0437\u0430 \u0434\u0430 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u0440\u0435\u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u043e\u0442 \u0432\u0430\u0441 \u0438 \u0434\u0440\u0443\u0433\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0432 \u0441\u0430\u0439\u0442\u0430 \u0432\u0438. \u041e\u0431\u043d\u043e\u0432\u0435\u0442\u0435 \u0431\u043b\u043e\u043a\u0430 \u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u0449\u0435 \u0441\u0435 \u043e\u0442\u0440\u0430\u0437\u044f\u0442 \u043d\u0430\u0432\u0441\u044f\u043a\u044a\u0434\u0435, \u043a\u044a\u0434\u0435\u0442\u043e \u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430."],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":["(\u0438\u0437\u0431\u0440\u0430\u043d \u0431\u043b\u043e\u043a)"],"Block tools":["\u0411\u043b\u043e\u043a \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438"],Permalink:["\u041f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430"],"This image has an empty alt attribute":["\u0421\u043d\u0438\u043c\u043a\u0430\u0442\u0430 \u0438\u043c\u0430 \u043f\u0440\u0430\u0437\u0435\u043d alt \u0430\u0442\u0440\u0438\u0431\u0443\u0442"],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":[],"add new on admin bar\x04Block Area":[],"Link inserted.":["\u0412\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0435 \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0430."],"Warning: the link has been inserted but may have errors. Please test it.":["\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u0412\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0435 \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0430, \u043d\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430 \u0433\u0440\u0435\u0448\u043a\u0438. \u041f\u0440\u043e\u0432\u0435\u0440\u0435\u0442\u0435 \u044f."],"%s block selected.":["\u0418\u0437\u0431\u0440\u0430\u043d \u0435 %s \u0431\u043b\u043e\u043a.","\u0418\u0437\u0431\u0440\u0430\u043d\u0438 \u0441\u0430 %s \u0431\u043b\u043e\u043a\u0430."],Thumbnail:["\u0423\u043c\u0430\u043b\u0435\u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430"],"Full Size":["\u041f\u044a\u043b\u0435\u043d \u0440\u0430\u0437\u043c\u0435\u0440"],"Link selected.":["\u0412\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0435 \u0438\u0437\u0431\u0440\u0430\u043d\u0430."],"Start writing with text or HTML":["\u0417\u0430\u043f\u043e\u0447\u043d\u0435\u0442\u0435 \u0434\u0430 \u043f\u0438\u0448\u0435\u0442\u0435 \u0442\u0435\u043a\u0441\u0442 \u0438\u043b\u0438 HTML"],"Type text or HTML":[],"Block icon":["\u0411\u043b\u043e\u043a \u0438\u043a\u043e\u043d\u0430"],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":["\u0417\u0430\u043f\u043e\u0447\u043d\u0435\u0442\u0435 \u0434\u0430 \u043f\u0438\u0448\u0435\u0442\u0435 \u0438\u043b\u0438 \u043d\u0430\u043f\u0438\u0448\u0435\u0442\u0435 / \u0437\u0430 \u0434\u0430 \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0431\u043b\u043e\u043a "],"Empty block; start writing or type forward slash to choose a block":["\u041f\u0440\u0430\u0437\u0435\u043d \u0431\u043b\u043e\u043a; \u0437\u0430\u043f\u043e\u0447\u043d\u0435\u0442\u0435 \u0434\u0430 \u043f\u0438\u0448\u0435\u0442\u0435 \u0438\u043b\u0438 \u043d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u043d\u0430\u043a\u043b\u043e\u043d\u0435\u043d\u0430 \u043d\u0430\u043f\u0440\u0435\u0434 \u0447\u0435\u0440\u0442\u0430, \u0437\u0430 \u0434\u0430 \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0431\u043b\u043e\u043a"],"Paragraph block":["\u0411\u043b\u043e\u043a \u0437\u0430 \u0430\u0431\u0437\u0430\u0446"],"Page Break":["\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430"],"Stack on mobile":[],Annotation:[],"Drag images, upload new ones or select files from your library.":[],"blocks\x04Most Used":[],"imperative verb\x04Resolve":[],"font size name\x04Huge":[],"font size name\x04Large":[],"font size name\x04Medium":[],"font size name\x04Small":[],"font size name\x04Normal":[],"keyboard button\x04Enter":[],"button label\x04Import":["\u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u043d\u0435"],"button label\x04Download":["\u0418\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435"],"button label\x04Embed":["\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435"],"block title\x04Embed":[],"block title\x04Classic":["\u041a\u043b\u0430\u0441\u0438\u0447\u0435\u0441\u043a\u0438"],"block style\x04Large":["\u0413\u043e\u043b\u044f\u043c"],"%s (opens in a new tab)":["%s (\u043e\u0442\u0432\u0430\u0440\u044f \u0441\u0435 \u0432 \u043d\u043e\u0432 \u043f\u043e\u0434\u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446)"],"Link edited.":["\u0412\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d\u0430."],"Link removed.":["\u0412\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0435 \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430\u0442\u0430."],media:["\u043c\u0435\u0434\u0438\u044f"],"Double-check your settings before publishing.":[],"Generating preview\u2026":[],"Edit or update the image":[],Media:["\u041c\u0435\u0434\u0438\u044f"],"Navigate to the nearest toolbar.":["\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u0434\u043e \u043d\u0430\u0439-\u0431\u043b\u0438\u0437\u043a\u0430\u0442\u0430 \u043b\u0435\u043d\u0442\u0430 \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438."],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":["\u0412\u0433\u0440\u0430\u0434\u0435\u0442\u0435 \u0432\u0438\u0434\u0435\u043e \u043e\u0442 \u0444\u0430\u0439\u043b\u043e\u0432\u0430\u0442\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0447\u0435\u0442\u0435 \u043d\u043e\u0432\u043e."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u043f\u043e\u0435\u0437\u0438\u044f. \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u043d\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0438 \u0437\u0430 \u043e\u0442\u0441\u0442\u043e\u044f\u043d\u0438\u0435. \u0418\u043b\u0438 \u0446\u0438\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u0435\u043a\u0441\u0442 \u043d\u0430 \u043f\u0435\u0441\u0435\u043d."],"Add white space between blocks and customize its height.":["\u0414\u043e\u0431\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e \u043c\u044f\u0441\u0442\u043e \u043c\u0435\u0436\u0434\u0443 \u0431\u043b\u043e\u043a\u043e\u0432\u0435\u0442\u0435 \u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u0442\u0435 \u0432\u0438\u0441\u043e\u0447\u0438\u043d\u0430\u0442\u0430 \u043c\u0443."],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0437\u0430 \u043c\u0435\u0434\u0438\u044f \u0438 \u0442\u0435\u043a\u0441\u0442"],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":["\u0414\u043e\u0431\u0430\u0432\u0435\u0442\u0435 \u0432\u0440\u044a\u0437\u043a\u0430 \u043a\u044a\u043c \u0444\u0430\u0439\u043b\u0430 \u0437\u0430 \u0438\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435."],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":["\u041e\u0440\u0430\u0437\u043c\u0435\u0440\u044f\u0432\u0430\u043d\u0435 \u0437\u0430 \u043f\u043e-\u043c\u0430\u043b\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430"],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":["\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0432\u0438\u0434\u0435\u043e \u043e\u0442 WordPress.tv."],"Embed a VideoPress video.":["\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0432\u0438\u0434\u0435\u043e \u043e\u0442 VideoPress."],"Embed a Tumblr post.":["\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u044f \u043e\u0442 Tumblr."],"Embed a TED video.":["\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0432\u0438\u0434\u0435\u043e \u043e\u0442 TED."],"Embed Speaker Deck content.":["\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043e\u0442 Speaker Deck."],"Embed a YouTube video.":[],"Embed SmugMug content.":["\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043e\u0442 SmugMug."],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay \u2014 great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":["\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u043f\u0438\u0441\u044a\u043a \u0441 \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438."],"Embed a simple audio player.":["\u0412\u0433\u0440\u0430\u0434\u0435\u0442\u0435 \u043e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d \u0430\u0443\u0434\u0438\u043e \u043f\u043b\u0435\u0439\u044a\u0440."],"noun\x04View":[],"editor button\x04Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],Styles:[],"Advanced Panels":[],"Document Panels":[],General:[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],Options:[],"(opens in a new tab)":[],Minutes:[],Hours:[],Time:[],Year:[],Day:[],December:[],November:[],October:[],September:[],August:[],July:[],June:[],May:[],April:[],March:[],February:[],January:[],Month:[],Date:[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],Stripes:[],"Your site doesn\u2019t include support for this block.":[],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:["\u041e\u0431\u043b\u043e\u0436\u043a\u0430"],"Border Settings":[],"Edit media":[],Medium:[],"Paste URL or type to search":[],Terms:[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],Avatar:[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],HTML:[],"Write HTML\u2026":[],"Media Settings":[],"Overlay Color":[],Overlay:[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":[],Backtick:[],Period:[],Comma:[],"Change type of %d block":[],Current:[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],Escape:[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage All Reusable Blocks":[],Title:["\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435"],"Fullscreen Mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],blockquote:[],"Change the block type after adding a new paragraph.":[],"Spotlight Mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual Editor and Code Editor.":[],"Navigate to the previous part of the editor (alternative).":[],"Navigate to the next part of the editor (alternative).":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard Shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\x04More":[],"button to expand options\x04More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":[],Small:[],"(%s: %s)":[],Reusable:[],"(current %s: %s)":[],"Remove from Reusable Blocks":[],"Add to Reusable Blocks":[],"Keep as HTML":[],"Edit URL":[],"Color Settings":[],"The response is not a valid JSON response.":[],"Editor publish":[],Muted:[],"Video Settings":[],"recent comments":[],"Latest Comments":[],"Display Excerpt":[],"Display Date":[],"Display Avatar":[],"Latest Comments Settings":[],"Number of Comments":[],"Background Opacity":[],Auto:[],Preload:[],"Audio Settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":[],"Show Post Counts":[],"Archives Settings":[],"https://wordpress.org/support/plugin/gutenberg":[],Support:[],"No comments to show.":[],"%1$s on %2$s":[],"Select Post":[],"Select Week":[],"Select Day":[],"Select Month":[],"Select Year":[],Archives:[],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":[],"Transform To:":[],"Remove Block":[],"Open publish panel":[],Dots:[],"Wide Line":[],Large:[],"Show download button":[],"Download button settings":[],"Link To":[],"Text link settings":[],pdf:[],document:[],"Copy URL":[],"Write file name\u2026":[],"Edit file":[],File:[],"A single column within a columns block.":[],Column:[],Outline:[],Loop:[],Autoplay:[],"Playback Controls":[],"Close dialog":[],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":[],"Got it":[],"See next tip":[],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":[],"Remove image":[],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":[],"View the autosave":[],"There is an autosave of this post that is more recent than the version below.":[],Autosaving:[],"Enter URL here\u2026":[],"Pin to toolbar":[],"Unpin from toolbar":[],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table Settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":[],"Error loading block: %s":[],"Unknown error":[],"Embed Handler":[],"term\x04Remove %s":[],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer Settings":[],Spacer:[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":[],"Skip to the selected block":[],"Publish\u2026":[],"Schedule\u2026":[],"Edit post permalink":[],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Link settings":[],Unlink:[],"Page break":[],pagination:[],"next page":[],"Image Size":[],Height:[],Width:[],"Image Dimensions":[],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":[],Advanced:[],"Add item":[],"Reset the template":[],"Keep it as is":[],"The content of your post doesn\u2019t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":[],"is now scheduled. It will go live on":[],Scheduled:[],"Scheduling\u2026":[],"Code editor selected":[],"Visual editor selected":[],Plugins:[],"Custom Size":[],"Layout Elements":[],"term\x04%s removed":[],"term\x04%s added":[],"imperative verb\x04Preview":[],"Block deleted.":[],"Block updated.":[],"Block created.":[],"Trashing failed":[],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":[],"Document Outline":[],Paragraphs:[],Headings:[],Words:[],"Content structure":[],Public:[],"Protected with a password you choose. Only those with the password can view this post.":[],"Password Protected":[],"Only visible to site admins and editors.":[],Private:[],"Visible to everyone.":[],"Post Visibility":[],"Would you like to privately publish this post now?":[],"Use a secure password":[],"Create password":[],"Move to Trash":[],"Parent Term":[],"Parent Category":[],"Add new term":[],"Add new category":[],Term:[],Tag:[],"Add New Term":[],"Add New Tag":[],"Switch to Draft":[],"Are you sure you want to unpublish this post?":[],Immediately:[],"Save Draft":[],Saving:[],"Publish:":[],"Visibility:":[],"Are you ready to publish?":[],"Copy Link":[],"What\u2019s next?":[],"is now live.":[],Published:[],Schedule:[],Update:[],"Submit for Review":[],"Updating\u2026":[],"Publishing\u2026":[],"Allow Pingbacks & Trackbacks":[],"Permalink:":[],"Pending Review":[],"%d Revision":[],"Suggestion:":[],"Post Format":[],Chat:[],Status:[],Standard:[],Aside:[],"Set Featured Image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow Comments":[],"Template:":[],"no parent":[],"no title":["\u043d\u044f\u043c\u0430 \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u0435"],Order:[],"No blocks found.":[],"%d result found.":[],Saved:[],Embeds:[],Blocks:[],"Search for a block":[],"Add block":[],"Add %s":[],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],Undo:[],Redo:[],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":[],"Edit visually":[],Duplicate:[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":[],"Convert to Blocks":[],"Block: %s":[],"This block has encountered an error and cannot be previewed.":[],"No block selected.":[],"Transform into:":[],Remove:[],"Find original":[],"Copy All Content":[],"Copied!":[],"Additional settings are now available in the Editor block settings sidebar":[],Visibility:[],"Status & Visibility":[],"Page Attributes":[],Block:[],Document:[],"Featured Image":[],"Close settings":[],"Editor content":[],Tools:[],Editor:[],"Code Editor":[],"Visual Editor":[],"Editor top bar":[],Settings:[],Reset:[],"Dismiss this notice":[],"Item removed.":[],"Item added.":[],"Drop files to upload":[],PM:[],AM:[],"An unknown error occurred.":[],"No results.":[],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":[],URL:[],Submit:[],Close:[],"Insert link":[],"Edit link":[],Link:[],Strikethrough:[],Italic:[],Bold:[],"Remove link":[],"Number of items":[],All:[],Category:[],"Z \u2192 A":[],"A \u2192 Z":[],"Oldest to Newest":[],"Newest to Oldest":[],"Order by":[],Select:[],"Select or Upload Media":[],Video:[],"Edit video":[],"Write\u2026":[],poetry:[],Verse:[],"New Column":[],"Delete Column":[],"Add Column After":[],"Add Column Before":[],"Delete Row":[],"Add Row After":[],"Add Row Before":[],"Edit table":[],Table:[],"Write subheading\u2026":[],"Write shortcode here\u2026":[],Shortcode:[],divider:[],"horizontal-line":[],Separator:[],Quote:["\u0426\u0438\u0442\u0430\u0442"],"Write citation\u2026":[],"Write quote\u2026":[],Pullquote:[],"Write preformatted text\u2026":[],Preformatted:[],text:[],Paragraph:[],"Font Size":[],"Drop Cap":[],"Text Settings":[],"Read more":[],"Write list\u2026":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],List:[],"recent posts":[],"No posts found.":[],"Latest Posts":[],"Display post date":[],"Grid view":[],"List view":[],photo:[],"Image Settings":[],Image:[],Preview:[],embed:[],"Custom HTML":[],subtitle:["\u043f\u043e\u0434\u0437\u0430\u0433\u043b\u0430\u0432\u0438\u0435"],title:[],Heading:["\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435"],"Write heading\u2026":[],"Heading %d":[],Level:[],"Heading Settings":[],photos:[],images:[],"Remove Image":[],None:[],"Media File":[],"Attachment Page":[],"Crop Images":[],"Gallery Settings":[],Gallery:["\u0413\u0430\u043b\u0435\u0440\u0438\u044f"],Classic:[],video:[],audio:[],music:[],image:[],blog:[],post:[],"Embedded content from %s":[],"Enter URL to embed here\u2026":[],"%s URL":[],"Embedding\u2026":[],"Write title\u2026":[],"Fixed Background":[],"Edit image":[],Columns:[],Experiments:[],Code:[],"Write code\u2026":[],Categories:[],"Show Hierarchy":[],"Show post counts":[],"Categories Settings":[],"Add text\u2026":[],Button:[],Apply:[],"Text Color":[],"Background Color":[],"Block has been deleted or is unavailable.":[],"Reusable Blocks":[],Cancel:[],Edit:[],"Edit audio":[],"Write caption\u2026":[],"Use URL":[],Audio:[],Upload:[],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],Clear:[],"Custom color picker":[],"Color: %s":[],"Full Width":[],"Wide Width":[],Widgets:[],Formatting:[],"Common Blocks":[],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u0435"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:[],Slug:[],Discussion:[],"Custom Fields":[],Excerpt:[],Publish:[],Metadata:[],Save:[],Documentation:[],"Select Category":[],"(Untitled)":[],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":[],"https://github.com/WordPress/gutenberg":[],Gutenberg:[],Demo:[],"%s ago":[],"Block style name must be a string.":[]}},825,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":["2018 \u0f63\u0f7c\u0f60\u0f72\u0f0b\u0f5f\u0fb3 12 \u0f5a\u0f7a\u0f66 6 \u0f49\u0f72\u0f53\u0f0d"],"February 21, 2019":["2019 \u0f63\u0f7c\u0f60\u0f72\u0f0b\u0f5f\u0fb3 2 \u0f5a\u0f7a\u0f66 21 \u0f49\u0f72\u0f53\u0f0d"],"May 7, 2019":["2019 \u0f63\u0f7c\u0f60\u0f72\u0f0b\u0f5f\u0fb3 5 \u0f5a\u0f7a\u0f66 7 \u0f49\u0f72\u0f53\u0f0d"],"Release Date":["\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f0b\u0f66\u0fa4\u0f7a\u0f63\u0f0b\u0f5f\u0fb3\u0f0b\u0f5a\u0f7a\u0f66\u0f0d"],"Jazz Musician":["\u0f47\u0f71\u0f5b\u0f0b\u0f62\u0f7c\u0f63\u0f0b\u0f58\u0f7c\u0f0b\u0f56\u0f0d"],Version:["\u0f50\u0f7c\u0f53\u0f0b\u0f62\u0f72\u0f58\u0f0d"],"Six.":["\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54\u0f0d"],"Five.":["\u0f63\u0f94\u0f0b\u0f56\u0f0d"],"Four.":["\u0f56\u0f5e\u0f72\u0f0b\u0f56\u0f0d"],"Three.":["\u0f42\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0d"],"Two.":["\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0d"],"One.":["\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f0d"],"One of the hardest things to do in technology is disrupt yourself.":["\u0f56\u0fb3\u0f7c\u0f0b\u0f51\u0f44\u0f0b\u0f63\u0fa1\u0f53\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f5a\u0f72\u0f42\u0f0b\u0f51\u0f42\u0f0b\u0f53\u0f72\u0f0d\u0f0d"],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["\u0f51\u0f7a\u0f60\u0f72\u0f0b\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c\u0f0b\u0f50\u0f74\u0f53\u0f0b\u0f50\u0f0b\u0f58\u0f0b\u0f63\u0f0b\u0f56\u0f56\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f5a\u0f7a\u0f0b\u0f62\u0f97\u0f7a\u0f0b\u0f56\u0f7c\u0f0b\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f58\u0f5a\u0f53\u0f0b\u0f63\u0f58\u0f0b\u0f51\u0f74\u0f0d \u0f56\u0f74\u0f51\u0f0b\u0f58\u0f7a\u0f51\u0f0b\u0f51\u0f56\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f58\u0f51\u0f44\u0f66\u0f0b\u0f60\u0f5b\u0f72\u0f53\u0f0b\u0f54\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f53\u0f0b\u0f62\u0f7a\u0f0d \u0f53\u0f44\u0f0b\u0f54\u0f62\u0f0b\u0f66\u0f94\u0f62\u0f0b\u0f63\u0f44\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f56\u0f0b\u0f63\u0f66\u0f0b\u0f64\u0f74\u0f63\u0f0b\u0f63\u0f58\u0f0b\u0f51\u0f74\u0f0b\u0f5f\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f56\u0fb1\u0f7a\u0f0b\u0f56\u0fb2\u0f42\u0f0b\u0f4f\u0f74\u0f0b\u0f42\u0f4f\u0f7c\u0f42\u0f66\u0f0b\u0f54\u0f0b\u0f61\u0f72\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f60\u0f7c\u0f44\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f7c\u0f44\u0f0b\u0f56\u0f0b\u0f63\u0f0b\u0f58\u0f0b\u0f63\u0f9f\u0f7c\u0f66\u0f0b\u0f54\u0f62\u0f0b\u0f42\u0f44\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f56\u0f0b\u0f40\u0f74\u0f53\u0f0b\u0f56\u0f66\u0fb2\u0f7a\u0f66\u0f0b\u0f63\u0f0b\u0f56\u0f74\u0f0b\u0f41\u0fb1\u0f7c\u0f51\u0f0b\u0f40\u0fb1\u0f44\u0f0b\u0f63\u0f7c\u0f44\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f45\u0f72\u0f42\u0f0b\u0f51\u0f44\u0f0c\u0f0d \u0f66\u0f90\u0fb1\u0f7a\u0f0b\u0f56\u0f7c\u0f0b\u0f58\u0f46\u0f7c\u0f42\u0f0b\u0f51\u0f58\u0f53\u0f0b\u0f40\u0f74\u0f53\u0f0b\u0f63\u0f0b\u0f61\u0f44\u0f0b\u0f56\u0fb1\u0f72\u0f53\u0f0b\u0f45\u0f72\u0f42 \u0f5f\u0f66\u0f0b\u0f51\u0f7a\u0f0b\u0f63\u0f0b\u0f42\u0f44\u0f0b\u0f63\u0f7c\u0f44\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f54\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0b\u0f40\u0f74\u0f53\u0f0b\u0f55\u0fb1\u0f72\u0f0b\u0f62\u0f56\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f41\u0fb1\u0f7c\u0f51\u0f0b\u0f51\u0f44\u0f0b\u0f62\u0f9f\u0f7a\u0f53\u0f0b\u0f60\u0f56\u0fb2\u0f7a\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f66\u0f92\u0f7c\u0f0b\u0f58\u0f0b\u0f60\u0f46\u0f7c\u0f63\u0f0b\u0f56\u0f0b\u0f61\u0f72\u0f53\u0f0d \u0f42\u0f63\u0f0b\u0f4f\u0f7a\u0f0b\u0f51\u0f7a\u0f62\u0f0b\u0f58\u0f0b\u0f60\u0f51\u0f74\u0f66\u0f0b\u0f54\u0f0b\u0f51\u0f44\u0f0c\u0f0d"],"Window, very small in the distance, illuminated.":["\u0f5f\u0f66\u0f0b\u0f63\u0f0b\u0f66\u0f7c\u0f58\u0f0b\u0f49\u0f72\u0f60\u0f72\u0f0b\u0f51\u0f56\u0f44\u0f0b\u0f42\u0f72\u0f66\u0f0b\u0f63\u0f7c\u0f44\u0f66\u0f0b\u0f58\u0f72\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f54\u0f0b\u0f53\u0f72\u0f0b\u0f63\u0f7a\u0f42\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f50\u0f58\u0f66\u0f0b\u0f45\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f66\u0f90\u0f63\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f58\u0f72\u0f0b\u0f63\u0fa1\u0f53\u0f0b\u0f54\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f54\u0f62\u0f0b\u0f42\u0f7c\u0f0b\u0f56\u0f62\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f64\u0f72\u0f42 \u0f45\u0f7a\u0f66\u0f0b\u0f56\u0fb1\u0f0b\u0f56\u0f0b\u0f62\u0fa8\u0f72\u0f66\u0f0b\u0f66\u0f7c\u0f0d\u0f0d"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["\u0f58\u0f51\u0f7c\u0f0b\u0f58\u0f41\u0f62\u0f0b\u0f5e\u0f56\u0f66\u0f0b\u0f51\u0fb2\u0f74\u0f44\u0f0b\u0f5a\u0f7a\u0f0b\u0f62\u0f72\u0f44\u0f0b\u0f51\u0f56\u0f44\u0f0b\u0f62\u0f92\u0fb1\u0f63\u0f0d - \u0f58\u0f72\u0f0b\u0f51\u0f56\u0f44\u0f0b\u0f62\u0f9f\u0f7c\u0f42\u0f66\u0f0b\u0f56\u0f62\u0f97\u0f7c\u0f51\u0f0d - \u0f21\u0f27\u0f21\u0f21\u0f63\u0f7c\u0f62\u0f0d"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["\u0f53\u0f42\u0f66\u0f0b\u0f56\u0fb1\u0f72\u0f60\u0f74\u0f0b\u0f61\u0f72\u0f0b
\u0f63\u0fb7\u0f72\u0f44\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b
\u0f60\u0f5a\u0f7c\u0f0b\u0f56\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f66\u0f9f\u0f44\u0f66\u0f0d"],"Welcome to the wonderful world of blocks\u2026":["\u0f44\u0f7c\u0f0b\u0f58\u0f5a\u0f62\u0f0b\u0f46\u0f7a\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f60\u0f47\u0f72\u0f42\u0f0b\u0f62\u0f9f\u0f7a\u0f53\u0f0b\u0f63\u0f0b\u0f56\u0fb1\u0f7c\u0f53\u0f0b\u0f54\u0f0b\u0f63\u0f7a\u0f42\u0f66\u2026"],"Snow Patrol":["\u0f56\u0f66\u0f72\u0f63\u0f0b\u0f63\u0fa1\u0f53\u0f0b\u0f41\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f63\u0f97\u0f7c\u0f44\u0f66\u0f0d"],Dimensions:["\u0f46\u0f0b\u0f5a\u0f51\u0f0d"],"Minimum height in pixels":["\u0f49\u0f74\u0f44\u0f0b\u0f58\u0f50\u0f60\u0f72\u0f0b\u0f58\u0f50\u0f7c\u0f0b\u0f5a\u0f51\u0f0b\u0f54\u0f72\u0f42\u0f0b\u0f5f\u0f7a\u0f63\u0f0d"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["\u0f53\u0f44\u0f0b\u0f54\u0f62\u0f0b\u0f62\u0fa8\u0f72\u0f0b\u0f63\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f58\u0f50\u0f60\u0f0b\u0f56\u0f64\u0f51\u0f0b\u0f51\u0f7a\u0f0d \u0f63\u0f58\u0f0b\u0f51\u0f74\u0f0b\u0f5e\u0f74\u0f42\u0f66\u0f0b\u0f54\u0f0b\u0f63\u0f66\u0f0d \u0f47\u0f72\u0f0b\u0f59\u0f58\u0f0b\u0f53\u0f0b\u0f42\u0f5e\u0f7c\u0f53\u0f0b\u0f53\u0f74\u0f0b\u0f58\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f66\u0fa3\u0f7c\u0f51\u0f0b\u0f56\u0f5f\u0f44\u0f0b\u0f56\u0f7c\u0f0b\u0f60\u0f7c\u0f0b\u0f58\u0f66\u0f0b\u0f56\u0f40\u0f44\u0f0b\u0f56\u0f0b\u0f50\u0f7c\u0f42\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f60\u0f42\u0fb2\u0f7c\u0f0b\u0f56\u0f0b\u0f42\u0f5f\u0f72\u0f42\u0f66\u0f0b\u0f54\u0f0b\u0f53\u0f0d \u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c\u0f60\u0f72\u0f0b\u0f62\u0fa8\u0f72\u0f0b\u0f63\u0f58\u0f0b\u0f51\u0fb2\u0f53\u0f0b\u0f54\u0f62\u0f0b\u0f42\u0fb1\u0f74\u0f62\u0f0b\u0f4f\u0f7a\u0f0b\u0f66\u0fa3\u0f7c\u0f51\u0f0b\u0f60\u0f7c\u0f0b\u0f58\u0f66\u0f0b\u0f42\u0f44\u0f0b\u0f56\u0f0b\u0f51\u0f7a\u0f0b\u0f49\u0f72\u0f51\u0f0b\u0f60\u0f55\u0fb2\u0f7c\u0f42\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f56\u0f51\u0f42\u0f0b\u0f42\u0f72\u0f62\u0f0b\u0f56\u0f5f\u0f74\u0f44\u0f0c\u0f0d"],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["\u0f47\u0f72\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f53\u0f0b\u0f5e\u0f58\u0f0b\u0f62\u0f72\u0f44\u0f0b\u0f56\u0f66\u0f0b\u0f5f\u0f0b\u0f58\u0f0b\u0f4f\u0f7c\u0f42\u0f0b\u0f47\u0f0b\u0f56\u0f5f\u0f44\u0f0b\u0f54\u0f7c\u0f66\u0f0b\u0f42\u0f44\u0f0b\u0f56\u0f0b\u0f41\u0fb1\u0f7a\u0f62\u0f0b\u0f60\u0f7c\u0f44\u0f66\u0f0b\u0f54\u0f0b\u0f51\u0f7a\u0f0b\u0f61\u0f44\u0f0b\u0f60\u0f7c\u0f0b\u0f58\u0f0b\u0f51\u0f44\u0f0b\u0f56\u0f66\u0fb2\u0f7a\u0f66\u0f0d \u0f50\u0f7c\u0f53\u0f0b\u0f62\u0f72\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f66\u0f0b\u0f63\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f54\u0f0b\u0f51\u0f7a\u0f60\u0f72\u0f0b\u0f56\u0fb2\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f5a\u0f0b\u0f56\u0f0b\u0f41\u0fb1\u0f7a\u0f62\u0f0b\u0f60\u0f7c\u0f44\u0f66\u0f0b\u0f54\u0f0b\u0f61\u0f44\u0f0b\u0f51\u0f7a\u0f60\u0f72\u0f0b\u0f66\u0f9f\u0f7a\u0f44\u0f0b\u0f51\u0f74\u0f0b\u0f56\u0f66\u0fb2\u0f7a\u0f66\u0f0d \u0f49\u0f7a\u0f0b\u0f60\u0f51\u0f56\u0f66\u0f0b\u0f53\u0f0b\u0f62\u0f92\u0f53\u0f0b\u0f58\u0f7c\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f42\u0f72\u0f66\u0f0b\u0f46\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f66\u0f99\u0f72\u0f44\u0f0b\u0f54\u0f7c\u0f0b\u0f56\u0f4f\u0f7c\u0f53\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f66\u0fa6\u0f44\u0f0b\u0f58\u0f0b\u0f51\u0f44\u0f0c\u0f0d \u0f58\u0f62\u0f0b\u0f62\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f60\u0f56\u0f60\u0f0b\u0f46\u0f0b\u0f51\u0f44\u0f0c\u0f0d \u0f46\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f61\u0f44\u0f0b\u0f5a\u0f0b\u0f56\u0f66\u0fb2\u0f7a\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f56\u0f0b\u0f42\u0fb3\u0f44\u0f0b\u0f58\u0f7c\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f63\u0f0b\u0f66\u0f9f\u0f7a\u0f62\u0f0b\u0f56\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0b\u0f51\u0f7a\u0f0b\u0f61\u0f44\u0f0b\u0f56\u0fb3\u0f44\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f56\u0f66\u0fb2\u0f7a\u0f66\u0f0d"],"Call to Action":["\u0f56\u0f40\u0f7c\u0f63\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f62\u0f0b\u0f60\u0f56\u0f7c\u0f51\u0f0d"],"In quoting others, we cite ourselves.":["\u0f58\u0f72\u0f0b\u0f42\u0f5e\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f56\u0f64\u0f51\u0f0b\u0f5a\u0f74\u0f63\u0f0b\u0f51\u0fb2\u0f44\u0f66\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f53\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f49\u0f72\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f62\u0f92\u0fb1\u0f66\u0f0b\u0f56\u0f64\u0f51\u0f0b\u0f63\u0f0b\u0f64\u0f74\u0f42\u0f66\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f62\u0f92\u0fb1\u0f42\u0f0b\u0f46\u0f7a\u0f51\u0f0b\u0f61\u0f72\u0f53\u0f0d"],cite:["\u0f63\u0f74\u0f44\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Mont Blanc appears\u2014still, snowy, and serene.":["\u0f54\u0f7c\u0f0b\u0f63\u0f53\u0f0b\u0f62\u0f72\u0f0b\u0f62\u0fa9\u0f7a\u0f0b\u0f53\u0f72\u0f0b\u0f66\u0f94\u0f62\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f63\u0fb7\u0f72\u0f44\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f41\u0f0b\u0f56\u0f66\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f42\u0f61\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f74\u0f42"],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["\u0f45\u0f44\u0f0b\u0f58\u0f0b\u0f60\u0f42\u0f7c\u0f62\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63\u0f0d \u0f58\u0f72\u0f0b\u0f51\u0fb2\u0f42\u0f0b\u0f45\u0f72\u0f42\u0f0b\u0f45\u0f7c\u0f0b\u0f58\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f66\u0fa1\u0f7a\u0f0b\u0f56\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f74\u0f0b\u0f56\u0f66\u0fa1\u0f51\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f63\u0f0d \u0f42\u0fb2\u0f7c\u0f44\u0f0b\u0f5a\u0f7c\u0f60\u0f72\u0f0b\u0f58\u0f72\u0f44\u0f0b\u0f44\u0f66\u0f0b\u0f56\u0f64\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f7c\u0f51\u0f0d \u0f58\u0f72\u0f0b\u0f51\u0fb2\u0f42\u0f0b\u0f51\u0f7a\u0f0b\u0f62\u0f72\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f51\u0f74\u0f66\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f53\u0f0b\u0f58\u0f7a\u0f0b\u0f58\u0f51\u0f60\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f58\u0f7a\u0f0b\u0f58\u0f51\u0f60\u0f72\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f66\u0f9f\u0f7a\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f56\u0f5e\u0f42\u0f0b\u0f53\u0f66\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f63\u0f0d \u0f42\u0f53\u0f60\u0f0b\u0f56\u0f7c\u0f60\u0f72\u0f0b\u0f55\u0f74\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f0d \u0f62\u0f9f\u0f0b\u0f66\u0f90\u0f58\u0f0b\u0f54\u0f7c\u0f0b\u0f42\u0f45\u0f72\u0f42 \u0f51\u0f0b\u0f51\u0f74\u0f44\u0f0b\u0f64\u0f0b\u0f41\u0fb1\u0f72\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f56\u0f45\u0f66\u0f0b\u0f61\u0f7c\u0f51\u0f0d"],"Block navigation":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Enable Full Site Editing":["\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f46\u0f0b\u0f5a\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f60\u0f42\u0f7c\u0f0b\u0f60\u0f5b\u0f74\u0f42\u0f66\u0f0b\u0f54\u0f0d"],"Full Site Editing":["\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f46\u0f0b\u0f5a\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Templates to include in your theme.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f66\u0f92\u0fb2\u0f7c\u0f58\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f74\u0f0b\u0f50\u0f7a\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f54\u0f44\u0f0b\u0f0d"],Templates:["\u0f51\u0f54\u0f7a\u0f0b\u0f54\u0f44\u0f0b\u0f0d"],"Inserter Help Panel":["\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0b\u0f62\u0f58\u0f0b\u0f54\u0f44\u0f0b\u0f63\u0f7a\u0f56\u0f0d"],"Pre-publish Checks":["\u0f58\u0f0b\u0f66\u0fa4\u0f7a\u0f63\u0f0b\u0f42\u0f7c\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f5e\u0f72\u0f56\u0f0b\u0f56\u0f64\u0f7a\u0f62\u0f0d"],"Please contact your site administrator to install new blocks.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f51\u0f7c\u0f0b\u0f51\u0f58\u0f0b\u0f54\u0f62\u0f0b\u0f60\u0f56\u0fb2\u0f7a\u0f63\u0f0b\u0f42\u0f4f\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0d"],"No blocks found in your library. Please contact your site administrator to install new blocks.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f63\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f62\u0f99\u0f7a\u0f51\u0f0b\u0f58\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f51\u0f7c\u0f0b\u0f51\u0f58\u0f0b\u0f54\u0f62\u0f0b\u0f60\u0f56\u0fb2\u0f7a\u0f63\u0f0b\u0f42\u0f4f\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0d"],"No blocks found in your library.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f63\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f62\u0f99\u0f7a\u0f51\u0f0b\u0f58\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d"],"No blocks found in your library. These blocks can be downloaded and installed:":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f63\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f62\u0f99\u0f7a\u0f51\u0f0b\u0f58\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d \u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f51\u0f42\u0f0b\u0f55\u0f56\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f51\u0f44\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f62\u0f7c\u0f42\u0f66:"],"No blocks found in your library. We did find %d block available for download.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f63\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f62\u0f99\u0f7a\u0f51\u0f0b\u0f58\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d \u0f44\u0f0b\u0f5a\u0f7c\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c %d \u0f62\u0f99\u0f7a\u0f51\u0f0b\u0f66\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f74\u0f44\u0f0b\u0f56\u0f0b\u0f55\u0f56\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f61\u0f7c\u0f51\u0f0d"],"Block previews can\u2019t load.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63\u0f9f\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f58\u0f0b\u0f50\u0f74\u0f56\u0f0d"],Retry:["\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f0d"],"Block previews can't install.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63\u0f9f\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f0b\u0f58\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Updated %s":["%s \u0f42\u0f66\u0f62\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"%d active installation":["\u0f60\u0f42\u0f74\u0f63\u0f0b\u0f63\u0fa1\u0f53\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5a\u0f51: %d"],"This author has %d block, with an average rating of %d.":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f54\u0f0b\u0f54\u0f7c\u0f0b\u0f60\u0f51\u0f72\u0f62\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c %d \u0f61\u0f7c\u0f51\u0f0b\u0f63\u0f0d \u0f46\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f42\u0f51\u0f7a\u0f44\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f53\u0f72\u0f0b\u0f66\u0f90\u0f62 %d \u0f61\u0f72\u0f53\u0f0d"],"Authored by %s":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f54\u0f0b\u0f54\u0f7c\u0f0d %s"],Add:["\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"%d total rating":["\u0f56\u0f66\u0fa1\u0f7c\u0f58\u0f66\u0f0b\u0f42\u0fb2\u0f44\u0f66 %d \u0f61\u0f72\u0f0b\u0f42\u0f51\u0f7a\u0f44\u0f0b\u0f60\u0f47\u0f7c\u0f42"],"%s out of 5 stars":["\u0f66\u0f90\u0f62\u0f0b\u0f58 %s \u0f67\u0fb2\u0f72\u0f63\u0f0b\u0f66\u0f90\u0f62\u0f0b\u0f53\u0f72 5 \u0f61\u0f72\u0f53\u0f0d"],"Enter Address":["\u0f66\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f56\u0fb3\u0f74\u0f42\u0f66\u0f0d"],"Pill Shape":["\u0f66\u0fa8\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f62\u0f72\u0f63\u0f0b\u0f56\u0f74\u0f60\u0f72\u0f0b\u0f51\u0f56\u0fb1\u0f72\u0f56\u0f66\u0f0d"],"Logos Only":["\u0f63\u0f66\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f41\u0f7c\u0f0b\u0f53\u0f0d"],"Create a block of links to your social media or external sites":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f0b\u0f60\u0f5b\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f55\u0fb1\u0f72\u0f60\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f63\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0f90\u0fb2\u0f74\u0f53\u0f0d"],"Social links":["\u0f60\u0f51\u0f74\u0f0b\u0f60\u0f5b\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0d"],"Open block navigator":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0b\u0f46\u0f66\u0f0b\u0f41\u0f0b\u0f55\u0fb1\u0f7a\u0f0d"],"Attachment page":["\u0f5e\u0f62\u0f0b\u0f56\u0fb1\u0f74\u0f44\u0f0b\u0f64\u0f7c\u0f42\u0f0b\u0f44\u0f7c\u0f66\u0f0d"],Fill:["\u0f60\u0f42\u0f7a\u0f44\u0f0b\u0f54\u0f0d"],"Link rel":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51 Rel"],"Border Radius":["\u0f58\u0f50\u0f60\u0f0b\u0f66\u0f92\u0fb2\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f55\u0fb1\u0f7a\u0f51\u0f0b\u0f5a\u0f44\u0f66\u0f0b\u0f50\u0f72\u0f42"],"Write gallery caption\u2026":["\u0f54\u0f62\u0f0b\u0f51\u0f7a\u0f56\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f56\u0f64\u0f51\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],"Content Blocks":["\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0d"],"Restore the backup":["\u0f42\u0fb2\u0f56\u0f66\u0f0b\u0f49\u0f62\u0f0b\u0f66\u0fb3\u0f62\u0f0b\u0f42\u0f66\u0f7c\u0f0d"],"The backup of this post in your browser is different from the version below.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f56\u0f64\u0f62\u0f0b\u0f63\u0f9f\u0f0b\u0f46\u0f66\u0f0b\u0f53\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f60\u0f72\u0f0b\u0f42\u0fb2\u0f56\u0f66\u0f0b\u0f49\u0f62\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f64\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f54\u0f62\u0f0b\u0f42\u0f5e\u0f72\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0fb2\u0f0d"],"Enable Block Directory search":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f51\u0f40\u0f62\u0f0b\u0f46\u0f42\u0f0b\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f60\u0f42\u0f7c\u0f0b\u0f60\u0f5b\u0f74\u0f42\u0f66\u0f0b\u0f54\u0f0d"],"Block Directory":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f51\u0f40\u0f62\u0f0b\u0f46\u0f42"],"Unable to connect to the filesystem. Please confirm your credentials.":["\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f58\u0f0b\u0f63\u0f42\u0f0b\u0f63\u0f0b\u0f60\u0f56\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f56\u0fb1\u0f0b\u0f58\u0f0b\u0f50\u0f74\u0f56\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0f54\u0f44\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f63\u0f0b\u0f44\u0f7c\u0f66\u0f0b\u0f60\u0f5b\u0f72\u0f53\u0f0b\u0f56\u0fb1\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0d"],"Sorry, you are not allowed to install blocks.":["\u0f51\u0f42\u0f7c\u0f44\u0f66\u0f0b\u0f51\u0f42 \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f63\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f51\u0f56\u0f44\u0f0b\u0f5a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"%1$d block is disabled.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c %1$d \u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f58\u0f7a\u0f51\u0f0d"],"Reverse List Numbering":["\u0f63\u0fa1\u0f7c\u0f42\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0b\u0f68\u0f44\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0d"],"Start Value":["\u0f60\u0f42\u0f7c\u0f0b\u0f60\u0f5b\u0f74\u0f42\u0f66\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f50\u0f44\u0f0b\u0f0d"],"Ordered List Settings":["\u0f66\u0f9f\u0f62\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Clear Media":["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f42\u0f59\u0f44\u0f0b\u0f66\u0f7a\u0f63\u0f0d"],"block style\x04Circle Mask":["\u0f66\u0f92\u0f7c\u0f62\u0f0b\u0f51\u0f56\u0fb1\u0f72\u0f56\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f56\u0f0b\u0f54\u0f0d"],"Default Style":["\u0f66\u0f7c\u0f62\u0f0b\u0f56\u0f5e\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f63\u0f9f\u0f0d"],"Not set":["\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f63\u0f0b\u0f56\u0f64\u0f62\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f66\u0f7c\u0f0b\u0f66\u0f7c\u0f60\u0f72\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f53\u0f74\u0f66\u0f0b\u0f66\u0f90\u0f7c\u0f62\u0f0b\u0f63\u0f0b\u0f5e\u0f72\u0f56\u0f0b\u0f4f\u0f74\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f66\u0f0b\u0f63\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f46\u0f7c\u0f42"],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f66\u0fa3\u0f0b\u0f5a\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f54: \u0f51\u0f54\u0f7a\u0f62\u0f0b\u0f53\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f51\u0f44\u0f0b\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f0d \u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0d \u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0d \u0f62\u0f7a\u0f60\u0f74\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f66\u0f7c\u0f42\u0f66\u0f0d"],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["\u0f44\u0f7c\u0f0b\u0f58\u0f5a\u0f62\u0f0b\u0f46\u0f7a\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f60\u0f47\u0f72\u0f42\u0f0b\u0f62\u0f9f\u0f7a\u0f53\u0f0b\u0f63\u0f0b\u0f56\u0fb1\u0f7c\u0f53\u0f0b\u0f54\u0f0b\u0f63\u0f7a\u0f42\u0f66\u0f0d \u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f53\u0f72\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f62\u0fa8\u0f44\u0f0b\u0f42\u0f5e\u0f72\u0f0b\u0f61\u0f72\u0f53\u0f0d"],"Version of the content block format used by the object.":["\u0f56\u0fb1\u0f0b\u0f61\u0f74\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0f5e\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f50\u0f7c\u0f53\u0f0b\u0f62\u0f72\u0f58\u0f0d"],"HTML content for the object, transformed for display.":["\u0f56\u0fb1\u0f0b\u0f61\u0f74\u0f63\u0f0b\u0f42\u0fb1\u0f72 HTML \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0d \u0f51\u0f56\u0fb1\u0f72\u0f56\u0f66\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0b\u0f56\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f46\u0f7a\u0f51\u0f0b\u0f51\u0f74\u0f0d"],"Content for the object, as it exists in the database.":["\u0f56\u0fb1\u0f0b\u0f61\u0f74\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f51\u0f7a\u0f0d \u0f42\u0f5e\u0f72\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f61\u0f7c\u0f51\u0f0d"],"The content for the object.":["\u0f56\u0fb1\u0f0b\u0f61\u0f74\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0d"],"Change column alignment":["\u0f66\u0f9f\u0f62\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f5a\u0f74\u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f60\u0f42\u0fb1\u0f74\u0f62\u0f0d"],"Align Column Right":["\u0f66\u0f9f\u0f62\u0f0b\u0f42\u0f61\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Align Column Center":["\u0f66\u0f9f\u0f62\u0f0b\u0f51\u0f40\u0fb1\u0f72\u0f63\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Align Column Left":["\u0f66\u0f9f\u0f62\u0f0b\u0f42\u0f61\u0f7c\u0f53\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],Color:["\u0f41\u0f0b\u0f51\u0f7c\u0f42"],"Vivid purple":["\u0f42\u0f66\u0f63\u0f0b\u0f46\u0f0b\u0f46\u0f7a\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f62\u0f92\u0fb1\u0f0b\u0f66\u0fa8\u0f74\u0f42"],"Disable & Reload":["\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f58\u0f5a\u0f58\u0f66\u0f0b\u0f56\u0f5e\u0f42\u0f0b\u0f53\u0f66\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Enable & Reload":["\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f60\u0f42\u0f7c\u0f0b\u0f56\u0f59\u0f74\u0f42\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"A page reload is required for this change. Make sure your content is saved before reloading.":["\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f60\u0f42\u0fb1\u0f74\u0f62\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f63\u0f0b\u0f44\u0f7a\u0f66\u0f0b\u0f54\u0f62\u0f0b\u0f4f\u0f74\u0f0b\u0f64\u0f7c\u0f42\u0f0b\u0f44\u0f7c\u0f66\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0d \u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f58\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f74\u0f0b\u0f62\u0f44\u0f0b\u0f49\u0f72\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f49\u0f62\u0f0b\u0f5a\u0f42\u0f66\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0d"],"Display these keyboard shortcuts.":["\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f5e\u0f7c\u0f44\u0f0b\u0f58\u0fb1\u0f74\u0f62\u0f0b\u0f63\u0f58\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f51\u0f42\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Experiments Settings":["\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f60\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f45\u0f53\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":["\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f60\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f45\u0f53\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Block name name must be a string.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f58\u0f72\u0f44\u0f0b\u0f53\u0f72\u0f0b\u0f44\u0f7a\u0f66\u0f0b\u0f54\u0f62\u0f0b\u0f51\u0f74\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f55\u0fb2\u0f7a\u0f44\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0d"],Custom:["\u0f62\u0f44\u0f0b\u0f56\u0f5f\u0f7c\u0f0d"],Draft:["\u0f58\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c \"%1$s\" \u0f61\u0f72\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f58\u0f72\u0f44\u0f0b\u0f63 \"%2$s.\" \u0f61\u0f72\u0f53\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f63\u0f9f\u0f0b\u0f5a\u0f74\u0f51\u0f0b\u0f58\u0f7a\u0f51\u0f0d"],"Learn more about anchors":["\u0f62\u0f9f\u0f7c\u0f51\u0f0b\u0f55\u0f74\u0f62\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f66\u0f90\u0f7c\u0f62\u0f0b\u0f53\u0f66\u0f0b\u0f5e\u0f72\u0f56\u0f0b\u0f4f\u0f74\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f66\u0f0b\u0f63\u0f7c\u0f53\u0f0d"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["\u0f58\u0f72\u0f44\u0f0b\u0f5a\u0f72\u0f42\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f56\u0fb3\u0f74\u0f42\u0f66\u0f0b\u0f53\u0f66\u0f0b \u2014\xa0\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f66 \u2014\xa0\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f63\u0f0b\u0f51\u0f7a\u0f0b\u0f41\u0f7c\u0f0b\u0f53\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f64\u0f72\u0f42\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f0b\u0f51\u0f7a\u0f0b\u0f63\u0f0b \u201c\u0f62\u0f9f\u0f7c\u0f51\u0f0b\u0f55\u0f74\u0f62\u0f0b\u201d \u0f5f\u0f7a\u0f62\u0f0d \u0f51\u0f7a\u0f66\u0f0b\u0f50\u0f62\u0f0b\u0f40\u0f62\u0f0b\u0f51\u0f74\u0f0b\u0f62\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f64\u0f7c\u0f42\u0f0b\u0f44\u0f7c\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f5a\u0f53\u0f0b\u0f54\u0f0b\u0f60\u0f51\u0f72\u0f62\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f50\u0f74\u0f56\u0f0b\u0f54\u0f0b\u0f61\u0f72\u0f53\u0f0d"],"Widget Blocks (Experimental)":["\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0d (\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f60\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f45\u0f53\u0f0d)"],"Upload a video file, pick one from your media library, or add one with a URL.":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d \u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f63\u0f66\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53 URL \u0f56\u0f62\u0f92\u0fb1\u0f74\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Upload an image file, pick one from your media library, or add one with a URL.":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d \u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f63\u0f66\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53 URL \u0f56\u0f62\u0f92\u0fb1\u0f74\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Upload an audio file, pick one from your media library, or add one with a URL.":["\u0f66\u0f92\u0fb2\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d \u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f63\u0f66\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53 URL \u0f56\u0f62\u0f92\u0fb1\u0f74\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Upload a media file or pick one from your media library.":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f54\u0f0d"],Skip:["\u0f58\u0f46\u0f7c\u0f44\u0f0b\u0f54\u0f0d"],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":["\u0f60\u0f51\u0f72\u0f0b\u0f53\u0f72\u0f0b\u0f45\u0f72\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f53\u0f58\u0f0d"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0b\u0f58\u0f0b\u0f60\u0f55\u0fb2\u0f74\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f63\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f60\u0f51\u0f7a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0f7a\u0f0b\u0f56\u0f0b\u0f60\u0f51\u0f7c\u0f53\u0f0d"],"Provide more context about where the link goes.":["\u0f60\u0f56\u0fb2\u0f7a\u0f63\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f42\u0f7c\u0f44\u0f0b\u0f60\u0f7c\u0f42\u0f0b\u0f51\u0f7a\u0f0b\u0f56\u0f66\u0f0b\u0f58\u0f44\u0f0b\u0f56\u0f0b\u0f58\u0f41\u0f7c\u0f0b\u0f60\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Title Attribute":["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f42\u0f4f\u0f7c\u0f42\u0f66\u0f0b\u0f42\u0f64\u0f72\u0f66\u0f0d"],"SEO Settings":["SEO \u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],Description:["\u0f5e\u0f72\u0f56\u0f0b\u0f56\u0f62\u0f97\u0f7c\u0f51\u0f0d"],"Open in new tab":["\u0f42\u0f51\u0f58\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f41\u0f0b\u0f55\u0fb1\u0f7a\u0f0d"],links:["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0d"],navigation:["\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],menu:["\u0f42\u0f51\u0f58\u0f0b\u0f50\u0f7c\u0f0d"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f54\u0f0d"],"Learn more about embeds":["\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f66\u0f90\u0f7c\u0f62\u0f0b\u0f53\u0f66\u0f0b\u0f5e\u0f72\u0f56\u0f0b\u0f4f\u0f74\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f66\u0f0b\u0f63\u0f7c\u0f53\u0f0d"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7a\u0f44\u0f0b\u0f51\u0f74\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f66\u0fa6\u0fb1\u0f7c\u0f62\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0d"],"Upload an image or video file, or pick one from your media library.":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f58\u0f0d \u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f63\u0f66\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f54\u0f0d"],"Three columns; wide center column":["\u0f66\u0f74\u0f58\u0f0b\u0f66\u0f9f\u0f62\u0f0d \u0f58\u0f50\u0f60\u0f0b\u0f56\u0fb2\u0f63\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f51\u0f40\u0fb1\u0f72\u0f63\u0f0b\u0f66\u0f9f\u0f62\u0f0d"],"Three columns; equal split":["\u0f66\u0f74\u0f58\u0f0b\u0f66\u0f9f\u0f62\u0f0d \u0f5e\u0f7a\u0f44\u0f0b\u0f58\u0f49\u0f58\u0f0d"],"Two columns; two-thirds, one-third split":["\u0f49\u0f72\u0f66\u0f0b\u0f66\u0f9f\u0f62\u0f0d \u0f5e\u0f7a\u0f44\u0f0b\u0f63\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f5e\u0f7a\u0f44\u0f0b\u0f63\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f42\u0f45\u0f72\u0f42"],"Two columns; one-third, two-thirds split":["\u0f49\u0f72\u0f66\u0f0b\u0f66\u0f9f\u0f62\u0f0d \u0f5e\u0f7a\u0f44\u0f0b\u0f63\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f51\u0f44\u0f0b\u0f5e\u0f7a\u0f44\u0f0b\u0f63\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0d"],"Two columns; equal split":["\u0f49\u0f72\u0f66\u0f0b\u0f66\u0f9f\u0f62\u0f0d \u0f5e\u0f7a\u0f44\u0f0b\u0f58\u0f49\u0f58\u0f0d"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f66\u0f74 %s \u0f66\u0f90\u0f7c\u0f62\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f42\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f58\u0f7a\u0f51\u0f0b\u0f54\u0f66\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f66\u0f94\u0f62\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f62\u0f74\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f0b\u0f42\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f58\u0f7a\u0f51\u0f0d"],"More tools & options":["\u0f51\u0f7a\u0f0b\u0f63\u0f66\u0f0b\u0f58\u0f44\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f63\u0f42\u0f0b\u0f46\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f51\u0f58\u0f0b\u0f5a\u0f53\u0f0d"],"Create Table":["\u0f62\u0f7a\u0f60\u0f74\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0f90\u0fb2\u0f74\u0f53\u0f0d"],"Insert a table for sharing data.":["\u0f62\u0f7a\u0f60\u0f74\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f42\u0f5e\u0f72\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f58\u0f49\u0f58\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["\u0f5a\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f63\u0f0b\u0f63\u0f66\u0f0b\u0f42\u0fb2\u0f7c\u0f63\u0f0d"],"verb\x04Group":["\u0f5a\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f63\u0f0d"],"Separate with commas or the Enter key.":["\u0f56\u0f62\u0f0b\u0f5a\u0f7a\u0f42\u0f66\u0f0b(,) \u0f60\u0f51\u0f72\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f60\u0f56\u0f7a\u0f56\u0f66\u0f0b\u0f56\u0f62\u0fa1\u0f60\u0f72\u0f0b\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f51\u0f56\u0fb1\u0f7a\u0f0b\u0f58\u0f5a\u0f58\u0f66\u0f0b\u0f42\u0f45\u0f7c\u0f51\u0f0b\u0f54\u0f0d"],"Separate with commas, spaces, or the Enter key.":["\u0f56\u0f62\u0f0b\u0f5a\u0f7a\u0f42\u0f66\u0f0b(,) \u0f60\u0f51\u0f72\u0f0b\u0f51\u0f44\u0f0b\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f58\u0f72\u0f42 \u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f60\u0f56\u0f7a\u0f56\u0f66\u0f0b\u0f56\u0f62\u0fa1\u0f60\u0f72\u0f0b\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f51\u0f56\u0fb1\u0f7a\u0f0b\u0f58\u0f5a\u0f58\u0f66\u0f0b\u0f42\u0f45\u0f7c\u0f51\u0f0b\u0f54\u0f0d"],"Separate multiple classes with spaces.":["\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f42\u0f72\u0f66\u0f0b\u0f62\u0f72\u0f42\u0f66\u0f0b\u0f42\u0fb2\u0f66\u0f0b\u0f51\u0f74\u0f0b\u0f58\u0f60\u0f72\u0f0b\u0f56\u0f62\u0f0b\u0f42\u0f45\u0f7c\u0f51\u0f0d"],"Move image forward":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f58\u0f51\u0f74\u0f53\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0d"],"Move image backward":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f62\u0f92\u0fb1\u0f56\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0d"],"Sorry, you are not allowed to edit sidebars.":["\u0f51\u0f42\u0f7c\u0f44\u0f66\u0f0b\u0f51\u0f42 \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f63\u0f0b\u0f60\u0f42\u0fb2\u0f58\u0f0b\u0f5a\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f51\u0f56\u0f44\u0f0b\u0f5a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"Sorry, you are not allowed to read sidebars.":["\u0f51\u0f42\u0f7c\u0f44\u0f66\u0f0b\u0f51\u0f42 \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f63\u0f0b\u0f60\u0f42\u0fb2\u0f58\u0f0b\u0f5a\u0f44\u0f0b\u0f40\u0fb3\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f7c\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f51\u0f56\u0f44\u0f0b\u0f5a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"The sidebar\u2019s ID.":[],"Displays a set of blocks":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f5a\u0f7c\u0f42\u0f66\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Blocks Area":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0d"],"Block rendered as empty.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f56\u0f62\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Inline Code":["\u0f53\u0f44\u0f0b\u0f41\u0f74\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f0d"],"Note: Autoplaying videos may cause usability issues for some visitors.":["\u0f5e\u0f62\u0f0b\u0f58\u0f46\u0f53: \u0f62\u0f44\u0f0b\u0f60\u0f42\u0f74\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f42\u0f4f\u0f7c\u0f44\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f60\u0f5a\u0f58\u0f66\u0f0b\u0f60\u0f51\u0fb2\u0f72\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f41\u0f53\u0f0b\u0f63\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f42\u0f7c\u0f0b\u0f46\u0f7c\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f42\u0f53\u0f51\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f66\u0fb2\u0f72\u0f51\u0f0d"],"Footer section":["\u0f44\u0f7c\u0f66\u0f0b\u0f5e\u0f56\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f5a\u0f53\u0f0b\u0f54\u0f0d"],"Header section":["\u0f60\u0f42\u0f7c\u0f0b\u0f56\u0f62\u0f97\u0f7c\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f5a\u0f53\u0f0b\u0f54\u0f0d"],"Sorting and Filtering":["\u0f62\u0f72\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f51\u0f58\u0f0b\u0f42\u0f66\u0f7a\u0f66\u0f0d"],"Post Meta Settings":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f5f\u0f74\u0f62\u0f0b\u0f56\u0f62\u0f97\u0f7c\u0f51\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Post Content":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0d"],"Post Content Settings":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Percentage width":["\u0f5e\u0f7a\u0f44\u0f0b\u0f5a\u0f51\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f60\u0f56\u0f56\u0f0d"],"Column Settings":["\u0f66\u0f9f\u0f62\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Note: Autoplaying audio may cause usability issues for some visitors.":["\u0f5e\u0f62\u0f0b\u0f58\u0f46\u0f53: \u0f62\u0f44\u0f0b\u0f60\u0f42\u0f74\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f42\u0f4f\u0f7c\u0f44\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f66\u0f92\u0fb2\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f60\u0f5a\u0f58\u0f66\u0f0b\u0f60\u0f51\u0fb2\u0f72\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f41\u0f53\u0f0b\u0f63\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f42\u0f7c\u0f0b\u0f46\u0f7c\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f42\u0f53\u0f51\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f66\u0fb2\u0f72\u0f51\u0f0d"],"Block area updated.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Block area scheduled.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0b\u0f51\u0f74\u0f66\u0f0b\u0f56\u0f40\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Block area published.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Block areas list":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0d"],"Block areas list navigation":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Filter block areas list":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0b\u0f42\u0f51\u0f58\u0f0b\u0f42\u0f66\u0f7a\u0f66\u0f0d"],"No block area found.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f62\u0f99\u0f7a\u0f51\u0f0b\u0f58\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d"],"Search Block Areas":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0d"],"All Block Areas":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0d"],"View Block Area":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f63\u0f9f\u0f0b\u0f5e\u0f72\u0f56\u0f0d"],"Edit Block Area":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"New Block Area":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f0d"],"Add New Block Area":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"admin menu\x04Block Areas":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0d"],"post type singular name\x04Block Area (Experimental)":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0d (\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f60\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f45\u0f53)"],"post type general name\x04Block Area (Experimental)":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0d (\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f60\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f45\u0f53)"],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":["\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f61\u0f7c\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0d"],"Widgets advanced settings":["\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f58\u0f50\u0f7c\u0f0b\u0f62\u0f72\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"(experimental)":["(\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f60\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f45\u0f53)"],"Block Areas":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0d"],"Widgets screen top bar":["\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f61\u0f7c\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f62\u0fa9\u0f7a\u0f60\u0f72\u0f0b\u0f5a\u0f44\u0f0b\u0f0d"],"This color combination may be hard for people to read.":["\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f58\u0f49\u0f58\u0f0b\u0f66\u0fa1\u0f7a\u0f56\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5a\u0f7a\u0f0b\u0f40\u0fb3\u0f7c\u0f42\u0f0b\u0f58\u0f41\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f40\u0fb3\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f62\u0f0b\u0f51\u0f40\u0f60\u0f0b\u0f44\u0f63\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f66\u0fb2\u0f72\u0f51\u0f0d"],"There is no poster image currently selected":["\u0f58\u0f72\u0f42\u0f0b\u0f66\u0f94\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f64\u0f7c\u0f42\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f42\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"The current poster image url is %s":["\u0f58\u0f72\u0f42\u0f0b\u0f66\u0f94\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f64\u0f7c\u0f42\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f53\u0f72\u0f0d %s"],section:["\u0f5a\u0f53\u0f0b\u0f54\u0f0d"],row:["\u0f55\u0fb2\u0f7a\u0f44\u0f0b\u0f0d"],wrapper:["\u0f55\u0fb1\u0f72\u0f0b\u0f64\u0f74\u0f56\u0f66\u0f0d"],container:["\u0f66\u0fa3\u0f7c\u0f51\u0f0b\u0f46\u0f66\u0f0d"],"A block that groups other blocks.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f42\u0f5e\u0f53\u0f0b\u0f54\u0f0b\u0f5a\u0f7c\u0f0b\u0f41\u0f42\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f50\u0f74\u0f56\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0d"],Group:["\u0f5a\u0f7c\u0f0b\u0f41\u0f42"],"Crop image to fill entire column":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f51\u0fb2\u0f66\u0f0b\u0f42\u0f4f\u0f74\u0f56\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f66\u0f9f\u0f62\u0f0b\u0f67\u0fb2\u0f72\u0f63\u0f0b\u0f56\u0f7c\u0f0b\u0f60\u0f42\u0f7a\u0f44\u0f0b\u0f54\u0f0d"],"Play inline":["\u0f53\u0f44\u0f0b\u0f60\u0f56\u0fb2\u0f7a\u0f63\u0f0b\u0f42\u0f4f\u0f7c\u0f44\u0f0b\u0f56\u0f0d"],"Leave empty if the image is purely decorative.":["\u0f42\u0f63\u0f0b\u0f4f\u0f7a\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f53\u0f72\u0f0b\u0f62\u0f92\u0fb1\u0f53\u0f0b\u0f66\u0fa4\u0fb2\u0f7c\u0f66\u0f0b\u0f41\u0f7c\u0f0b\u0f53\u0f60\u0f72\u0f0b\u0f46\u0f7a\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f5a\u0f7a\u0f0b\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f56\u0f62\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f74\u0f62\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0d"],"Describe the purpose of the image":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f66\u0f92\u0f7c\u0f0b\u0f5e\u0f72\u0f56\u0f0b\u0f56\u0f62\u0f97\u0f7c\u0f51\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Add a block":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Block vertical alignment setting label\x04Change vertical alignment":["\u0f51\u0fb2\u0f44\u0f0b\u0f60\u0f55\u0fb1\u0f44\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f5a\u0f74\u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f60\u0f42\u0fb1\u0f74\u0f62\u0f0d"],"Block vertical alignment setting\x04Vertically Align Bottom":["\u0f5e\u0f56\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f44\u0f0b\u0f60\u0f55\u0fb1\u0f44\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Block vertical alignment setting\x04Vertically Align Middle":["\u0f51\u0f40\u0fb1\u0f72\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f44\u0f0b\u0f60\u0f55\u0fb1\u0f44\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Replace Image":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0fa4\u0f7c\u0f62\u0f0d"],"Block vertical alignment setting\x04Vertically Align Top":["\u0f62\u0fa9\u0f7a\u0f60\u0f72\u0f0b\u0f51\u0fb2\u0f44\u0f0b\u0f60\u0f55\u0fb1\u0f44\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Display a legacy widget.":["\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f62\u0f99\u0f72\u0f44\u0f0b\u0f54\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Legacy Widget (Experimental)":["\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f62\u0f99\u0f72\u0f44\u0f0b\u0f54\u0f0d (\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f60\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f45\u0f53\u0f0d)"],"Change widget":["\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f60\u0f42\u0fb1\u0f74\u0f62\u0f0d"],"Legacy Widget":["\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f62\u0f99\u0f72\u0f44\u0f0b\u0f54\u0f0d"],"You don't have permissions to use widgets on this site.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f63\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f60\u0f51\u0f72\u0f62\u0f0b\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f56\u0f40\u0f7c\u0f63\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f51\u0f56\u0f44\u0f0b\u0f5a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"Select a legacy widget to display:":["\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f62\u0f99\u0f72\u0f44\u0f0b\u0f54\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66:"],"There are no widgets available.":["\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"Change block type or style":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f62\u0f72\u0f42\u0f66\u0f0b\u0f42\u0fb2\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f60\u0f42\u0fb1\u0f74\u0f62\u0f0d"],"keyboard key\x04Space":["\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f58\u0f72\u0f42"],"keyboard key\x04Backspace":["\u0f55\u0fb1\u0f72\u0f62\u0f0b\u0f56\u0f64\u0f7c\u0f63\u0f0d"],"More rich text controls":["\u0f51\u0f7a\u0f0b\u0f63\u0f66\u0f0b\u0f58\u0f44\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f55\u0f74\u0f53\u0f0b\u0f5a\u0f7c\u0f42\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f66\u0f9f\u0f44\u0f66\u0f0b\u0f60\u0f5b\u0f72\u0f53\u0f0d"],"Search Terms":["\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0b\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0d"],"Exit the Editor":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f55\u0fb1\u0f72\u0f62\u0f0b\u0f50\u0f7c\u0f53\u0f0d"],"Block Manager":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f51\u0f7c\u0f0b\u0f51\u0f58\u0f0b\u0f46\u0f66\u0f0d"],"Class name of the widget.":["\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f42\u0f72 Class \u0f58\u0f72\u0f44\u0f0b\u0f0d"],"Sorry, you are not allowed to access widgets on this site.":["\u0f51\u0f42\u0f7c\u0f44\u0f66\u0f0b\u0f51\u0f42\u0f0b\u0f5e\u0f74\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f63\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f60\u0f51\u0f72\u0f60\u0f72\u0f0b\u0f66\u0f9f\u0f7a\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f63\u0f0b\u0f56\u0f45\u0f62\u0f0b\u0f60\u0f51\u0fb2\u0f72\u0f60\u0f72\u0f0b\u0f51\u0f56\u0f44\u0f0b\u0f5a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"Widgets (beta)":["\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f0d (beta)"],link:["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0d"],"Embedded content from %s can't be previewed in the editor.":["%s \u0f53\u0f66\u0f0b\u0f50\u0f7c\u0f53\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f51\u0f7a\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Custom Color":["\u0f62\u0f44\u0f0b\u0f56\u0f5f\u0f7c\u0f66\u0f0b\u0f41\u0f0b\u0f51\u0f7c\u0f42"],"Prompt visitors to take action with a button-style link.":["\u0f56\u0f45\u0f62\u0f0b\u0f60\u0f51\u0fb2\u0f72\u0f0b\u0f58\u0f41\u0f53\u0f0b\u0f63\u0f0b\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f45\u0f74\u0f66\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f63\u0f9f\u0f60\u0f72\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f56\u0f40\u0f7c\u0f63\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f62\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f60\u0f51\u0f7a\u0f56\u0f66\u0f0b\u0f42\u0f4f\u0f7c\u0f44\u0f0b\u0f56\u0f0d"],"Stick to the top of the blog":["\u0f54\u0f7c\u0f51\u0f0b\u0f41\u0f74\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0fa9\u0f7a\u0f0b\u0f62\u0f74\u0f0b\u0f66\u0fa6\u0fb1\u0f7c\u0f62\u0f0b\u0f56\u0f0d"],"Read about permalinks":["\u0f42\u0f4f\u0f53\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f66\u0f90\u0f7c\u0f62\u0f0b\u0f63\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f66\u0f0b\u0f63\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"The last part of the URL.":["URL \u0f61\u0f72\u0f0b\u0f58\u0f47\u0f74\u0f42\u0f0b\u0f58\u0f50\u0f60\u0f72\u0f0b\u0f46\u0f0b\u0f64\u0f66\u0f0d"],"URL Slug":["URL \u0f61\u0f72\u0f0b\u0f58\u0f72\u0f44\u0f0b\u0f42\u0f5e\u0f53\u0f0d"],"A cloud of your most used tags.":["\u0f46\u0f7a\u0f66\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f53\u0f0b\u0f56\u0f40\u0f7c\u0f63\u0f0b\u0f42\u0fb1\u0f72 Tag \u0f66\u0fa4\u0fb2\u0f72\u0f53\u0f0d"],"Tag Cloud":["Cloud \u0f60\u0f42\u0fb2\u0f7a\u0f63\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f0d"],Taxonomy:["\u0f62\u0f72\u0f42\u0f66\u0f0b\u0f51\u0f42\u0f62\u0f0b\u0f50\u0f56\u0f66\u0f0d"],"Tag Cloud Settings":["Cloud \u0f60\u0f42\u0fb2\u0f7a\u0f63\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"- Select -":["- \u0f60\u0f51\u0f7a\u0f58\u0f66 -"],Default:["\u0f66\u0f7c\u0f62\u0f0b\u0f56\u0f5e\u0f42"],find:["\u0f60\u0f5a\u0f7c\u0f63\u0f0d"],"Help visitors find your content.":["\u0f56\u0f45\u0f62\u0f0b\u0f60\u0f51\u0fb2\u0f72\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f41\u0f53\u0f0b\u0f63\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0b\u0f62\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0d"],Search:["\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0d"],"Add button text\u2026":["\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f45\u0f74\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u2026"],"Button text":["\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f45\u0f74\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f0d"],"Optional placeholder\u2026":["\u0f62\u0f44\u0f0b\u0f58\u0f7c\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f56\u0f5f\u0f74\u0f44\u0f0b\u0f62\u0f9f\u0f42\u0f66\u2026"],"Optional placeholder text":["\u0f62\u0f44\u0f0b\u0f58\u0f7c\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f56\u0f5f\u0f74\u0f44\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f0d"],"Add label\u2026":["\u0f64\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u2026"],"Label text":["\u0f64\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f0d"],"image %1$d of %2$d in gallery":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66 %1$d \u0f54\u0f0d \u0f54\u0f62\u0f0b\u0f51\u0f7a\u0f56\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66 %2$d \u0f61\u0f7c\u0f51\u0f0d"],archive:["\u0f61\u0f72\u0f42\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0d"],posts:["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42"],"A calendar of your site\u2019s posts.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f63\u0f7c\u0f0b\u0f50\u0f7c\u0f0d"],Calendar:["\u0f63\u0f7c\u0f0b\u0f50\u0f7c\u0f0d"],by:["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f54\u0f0b\u0f54\u0f7c\u0f0d"],"An error has occurred, which probably means the feed is down. Try again later.":["\u0f53\u0f7c\u0f62\u0f0b\u0f60\u0f41\u0fb2\u0f74\u0f63\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f74\u0f44\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d \u0f41\u0fb1\u0f56\u0f0b\u0f66\u0fa4\u0f7a\u0f63\u0f0b\u0f58\u0f7a\u0f51\u0f0b\u0f54\u0f0b\u0f60\u0f51\u0fb2\u0f0b\u0f56\u0f66\u0f0d \u0f61\u0f74\u0f51\u0f0b\u0f59\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0fb1\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0d"],"RSS Error:":["RSS \u0f53\u0f7c\u0f62\u0f0b\u0f60\u0f41\u0fb2\u0f74\u0f63:"],"block style\x04Default":["\u0f66\u0f7c\u0f62\u0f0b\u0f56\u0f5e\u0f42"],"Fullscreen mode deactivated":["\u0f61\u0f7c\u0f63\u0f0b\u0f42\u0f44\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f58\u0f5a\u0f58\u0f66\u0f0b\u0f56\u0f5e\u0f42\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Fullscreen mode activated":["\u0f61\u0f7c\u0f63\u0f0b\u0f42\u0f44\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f53\u0f74\u0f66\u0f0b\u0f66\u0fb3\u0f7c\u0f44\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Spotlight mode deactivated":["\u0f60\u0f7c\u0f51\u0f0b\u0f60\u0f51\u0f74\u0f60\u0f72\u0f0b\u0f42\u0fb3\u0f7c\u0f42\u0f0b\u0f5e\u0f74\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f58\u0f5a\u0f58\u0f66\u0f0b\u0f56\u0f5e\u0f42\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Spotlight mode activated":["\u0f60\u0f7c\u0f51\u0f0b\u0f60\u0f51\u0f74\u0f60\u0f72\u0f0b\u0f42\u0fb3\u0f7c\u0f42\u0f0b\u0f5e\u0f74\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f53\u0f74\u0f66\u0f0b\u0f66\u0fb3\u0f7c\u0f44\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Top toolbar deactivated":["\u0f62\u0fa9\u0f7a\u0f60\u0f72\u0f0b\u0f63\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f5a\u0f44\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f58\u0f5a\u0f58\u0f66\u0f0b\u0f56\u0f5e\u0f42\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Top toolbar activated":["\u0f62\u0fa9\u0f7a\u0f60\u0f72\u0f0b\u0f63\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f5a\u0f44\u0f0b\u0f53\u0f74\u0f66\u0f0b\u0f66\u0fb3\u0f7c\u0f44\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],Back:["\u0f55\u0fb1\u0f72\u0f62\u0f0b\u0f63\u0f7c\u0f42"],"Feature activated":["\u0f41\u0fb1\u0f51\u0f0b\u0f42\u0f64\u0f72\u0f66\u0f0b\u0f53\u0f74\u0f66\u0f0b\u0f66\u0fb3\u0f7c\u0f44\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Feature deactivated":["\u0f41\u0fb1\u0f51\u0f0b\u0f42\u0f64\u0f72\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f58\u0f5a\u0f58\u0f66\u0f0b\u0f56\u0f5e\u0f42\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Vertical Pos.":["\u0f51\u0fb2\u0f44\u0f0b\u0f60\u0f55\u0fb1\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f61\u0f74\u0f63\u0f0d"],"Horizontal Pos.":["\u0f46\u0f74\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f61\u0f74\u0f63\u0f0d"],feed:["feed"],atom:["atom"],"Display entries from any RSS or Atom feed.":["RSS \u0f42\u0f44\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53 Atom feed \u0f53\u0f66\u0f0b\u0f50\u0f7c\u0f53\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f56\u0f45\u0f51\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],RSS:["RSS"],"Max number of words in excerpt":["\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f42\u0f53\u0f51\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f5a\u0f51\u0f0b\u0f56\u0f40\u0f42"],"Display excerpt":["\u0f42\u0f53\u0f51\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Display date":["\u0f5f\u0fb3\u0f0b\u0f5a\u0f7a\u0f66\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Display author":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f54\u0f0b\u0f54\u0f7c\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"RSS Settings":["RSS \u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Edit RSS URL":["RSS URL \u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Content before this block will be shown in the excerpt on your archives page.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f60\u0f51\u0f72\u0f60\u0f72\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f51\u0f42\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f64\u0f7c\u0f42\u0f0b\u0f44\u0f7c\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f42\u0f53\u0f51\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0b\u0f61\u0f72\u0f53\u0f0d"],"Hide the excerpt on the full content page":["\u0f64\u0f7c\u0f42\u0f0b\u0f44\u0f7c\u0f66\u0f0b\u0f46\u0f0b\u0f5a\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f42\u0f53\u0f51\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f42\u0f56\u0f0d"],"The excerpt is visible.":["\u0f42\u0f53\u0f51\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f53\u0f72\u0f0b\u0f58\u0f44\u0f7c\u0f53\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f61\u0f72\u0f53\u0f0d"],"The excerpt is hidden.":["\u0f42\u0f53\u0f51\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f53\u0f72\u0f0b\u0f66\u0fa6\u0f66\u0f0b\u0f66\u0f90\u0f74\u0f44\u0f0b\u0f61\u0f72\u0f53\u0f0d"],"Sorry, this content could not be embedded.":["\u0f51\u0f42\u0f7c\u0f44\u0f66\u0f0b\u0f51\u0f42\u0f0b\u0f5e\u0f74\u0f0d \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Embed Amazon Kindle content.":["Amazon Kindle \u0f61\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],ebook:["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Crowdsignal (\u0f51\u0f7a\u0f0b\u0f66\u0f94\u0f60\u0f72\u0f0b Polldaddy) \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Focal Point Picker":["\u0f58\u0f51\u0f7c\u0f0b\u0f5a\u0f7a\u0f42\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f46\u0f66\u0f0d"],Underline:["\u0f60\u0f7c\u0f42\u0f0b\u0f50\u0f72\u0f42"],"Attempt Block Recovery":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f55\u0fb1\u0f72\u0f62\u0f0b\u0f66\u0f7c\u0f53\u0f0b\u0f63\u0f0b\u0f60\u0f56\u0f51\u0f0d"],"Word count type. Do not translate!\x04words":["characters_excluding_spaces"],"content placeholder\x04Content\u2026":["\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u2026"],"button label\x04Convert to link":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0d"],"button label\x04Try again":["\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0d"],"Editor tips":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f66\u0fa3\u0f7a\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Block (selected)":["\u0f62\u0fa1\u0f7c\u0f42 (\u0f56\u0f51\u0f58\u0f66\u0f0b\u0f5f\u0f72\u0f53)"],"Document (selected)":["\u0f61\u0f72\u0f42\u0f0b\u0f5a\u0f42\u0f66\u0f0d (\u0f56\u0f51\u0f58\u0f66\u0f0b\u0f5f\u0f72\u0f53)"],"%d word":["\u0f61\u0f72\u0f42\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0d %d"],"Top Toolbar":["\u0f62\u0fa9\u0f7a\u0f60\u0f72\u0f0b\u0f63\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f5a\u0f44\u0f0b\u0f0d"],"Link Rel":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51 Rel"],"Link CSS Class":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51 CSS \u0f62\u0f72\u0f42\u0f66\u0f0d"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0f90\u0fb2\u0f74\u0f53\u0f0b\u0f51\u0f44\u0f0b\u0f49\u0f62\u0f0b\u0f5a\u0f42\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f62\u0f44\u0f0b\u0f51\u0f44\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f58\u0f41\u0f53\u0f0b\u0f42\u0f5e\u0f53\u0f0b\u0f54\u0f66\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7a\u0f44\u0f0b\u0f51\u0f74\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f54\u0f62\u0f0b\u0f66\u0f9f\u0f56\u0f66\u0f0b\u0f56\u0f51\u0f7a\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f0d \u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f54\u0f0b\u0f51\u0f42\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f42\u0f44\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f54\u0f0b\u0f61\u0f72\u0f53\u0f0d"],"To edit the featured image, you need permission to upload media.":["\u0f41\u0fb1\u0f51\u0f0b\u0f63\u0fa1\u0f53\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f63\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0b\u0f53\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f63\u0f0b\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f51\u0f56\u0f44\u0f0b\u0f5a\u0f51\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"To edit this block, you need permission to upload media.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f63\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0b\u0f53\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f63\u0f0b\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f51\u0f56\u0f44\u0f0b\u0f5a\u0f51\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"(selected block)":["(\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f51\u0f58\u0f0b\u0f5f\u0f72\u0f53)"],"Block tools":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f63\u0f42\u0f0b\u0f46\u0f0d"],Permalink:["\u0f42\u0f4f\u0f53\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0d"],"This image has an empty alt attribute":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f60\u0f51\u0f72\u0f62 alt \u0f42\u0f4f\u0f7c\u0f42\u0f66\u0f0b\u0f42\u0f64\u0f72\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f56\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f60\u0f51\u0f74\u0f42"],"This image has an empty alt attribute; its file name is %s":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f60\u0f51\u0f72\u0f62 alt \u0f42\u0f4f\u0f7c\u0f42\u0f66\u0f0b\u0f42\u0f64\u0f72\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f56\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f60\u0f51\u0f74\u0f42 \u0f51\u0f7a\u0f60\u0f72\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f58\u0f72\u0f44\u0f0b\u0f53\u0f72\u0f0d %s"],"Block area reverted to draft.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0b\u0f58\u0f0b\u0f5f\u0f72\u0f53\u0f0b\u0f63\u0f0b\u0f66\u0f7c\u0f62\u0f0b\u0f66\u0fb3\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Block area published privately.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0b\u0f63\u0f90\u0f7c\u0f42\u0f0b\u0f4f\u0f74\u0f0b\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"No block areas found in Trash.":["\u0f66\u0f99\u0f72\u0f42\u0f66\u0f0b\u0f66\u0fa3\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0b\u0f62\u0f99\u0f7a\u0f51\u0f0b\u0f58\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d"],"Block\x04Add New":["\u0f42\u0f66\u0f62\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"add new on admin bar\x04Block Area":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0d"],"Link inserted.":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f56\u0f45\u0f74\u0f42\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Warning: the link has been inserted but may have errors. Please test it.":["\u0f49\u0f7a\u0f53\u0f0b\u0f56\u0f62\u0fa1: \u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0b\u0f58\u0f7c\u0f51\u0f0d \u0f60\u0f7c\u0f53\u0f0b\u0f40\u0fb1\u0f44\u0f0b\u0f66\u0f90\u0fb1\u0f7c\u0f53\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f66\u0fb2\u0f72\u0f51\u0f0b\u0f54\u0f66\u0f0d \u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0d"],"%s block selected.":["\u0f62\u0fa1\u0f7c\u0f42 %s \u0f42\u0f51\u0f58\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],Thumbnail:["\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f62\u0f72\u0f66\u0f0d"],"Full Size":["\u0f46\u0f7a\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f46\u0f0b\u0f5a\u0f44\u0f0b\u0f0d"],"Link selected.":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f56\u0f51\u0f58\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Start writing with text or HTML":["\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53 HTML \u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f58\u0f42\u0f7c\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0d"],"Type text or HTML":["\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53 HTML \u0f56\u0fb3\u0f74\u0f42\u0f66\u0f0d"],"Block icon":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f62\u0f72\u0f66\u0f0d"],"Align Text Right":["\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f42\u0f61\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Align Text Center":["\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f51\u0f40\u0fb1\u0f72\u0f63\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Align Text Left":["\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f42\u0f61\u0f7c\u0f53\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Start writing or type / to choose a block":["\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f58\u0f42\u0f7c\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f42\u0f66\u0f7a\u0f42\u0f0b\u0f50\u0f72\u0f42 / \u0f56\u0fb3\u0f74\u0f42\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Empty block; start writing or type forward slash to choose a block":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f56\u0f0d \u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f58\u0f42\u0f7c\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f42\u0f66\u0f7a\u0f42\u0f0b\u0f50\u0f72\u0f42 / \u0f56\u0fb3\u0f74\u0f42\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Paragraph block":["\u0f51\u0f74\u0f58\u0f0b\u0f5a\u0f53\u0f0b\u0f62\u0fa1\u0f7c\u0f42"],"Page Break":["\u0f64\u0f7c\u0f42\u0f0b\u0f44\u0f7c\u0f66\u0f0b\u0f51\u0f56\u0fb1\u0f7a\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0d"],"Stack on mobile":["\u0f66\u0fa4\u0f7c\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f66\u0f9f\u0f7a\u0f44\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0fa4\u0f74\u0f44\u0f0b\u0f62\u0fa9\u0f7a\u0f42"],Annotation:["\u0f58\u0f46\u0f53\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f63\u0f0d"],"Drag images, upload new ones or select files from your library.":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f60\u0f51\u0fb2\u0f74\u0f51\u0f0b\u0f54\u0f0d \u0f42\u0f66\u0f62\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f63\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"blocks\x04Most Used":["\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f58\u0f44\u0f0b\u0f64\u0f7c\u0f66\u0f0d"],"imperative verb\x04Resolve":["\u0f50\u0f42\u0f0b\u0f42\u0f45\u0f7c\u0f51\u0f0b\u0f54\u0f0d"],"font size name\x04Huge":["\u0f64\u0f72\u0f53\u0f0b\u0f4f\u0f74\u0f0b\u0f46\u0f7a\u0f53\u0f0b\u0f54\u0f7c\u0f0d"],"font size name\x04Large":["\u0f46\u0f7a\u0f0b\u0f56\u0f0d"],"font size name\x04Medium":["\u0f60\u0f56\u0fb2\u0f72\u0f44\u0f0b\u0f56\u0f0d"],"font size name\x04Small":["\u0f46\u0f74\u0f44\u0f0b\u0f56\u0f0d"],"font size name\x04Normal":["\u0f66\u0fa4\u0fb1\u0f72\u0f62\u0f0b\u0f56\u0f4f\u0f44\u0f0b\u0f54\u0f0d"],"keyboard button\x04Enter":["\u0f50\u0f7c\u0f44\u0f0b\u0f0d"],"button label\x04Import":["\u0f53\u0f44\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0d"],"button label\x04Download":["\u0f55\u0f56\u0f0b\u0f63\u0f7a\u0f53\u0f0d"],"button label\x04Embed":["\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"block title\x04Embed":["\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"block title\x04Classic":["\u0f5a\u0f51\u0f0b\u0f63\u0fa1\u0f53\u0f0d"],"block style\x04Large":["\u0f46\u0f7a\u0f0b\u0f56\u0f0d"],"%s (opens in a new tab)":["%s (\u0f42\u0f51\u0f58\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f54\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f53\u0f66\u0f0b\u0f41\u0f0b\u0f55\u0fb1\u0f7a)"],"Link edited.":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f50\u0f42\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Link removed.":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f50\u0f42\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],media:["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0d"],"Double-check your settings before publishing.":["\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f58\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0b\u0f63\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f5e\u0f72\u0f56\u0f0b\u0f56\u0fb1\u0f7c\u0f66\u0f0d"],"Generating preview\u2026":["\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63\u0f9f\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f51\u0f0b\u0f42\u0fb2\u0f74\u0f56\u0f0b\u0f66\u0f92\u0f44\u2026"],"Edit or update the image":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0d"],Media:["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0d"],"Navigate to the nearest toolbar.":["\u0f46\u0f7a\u0f66\u0f0b\u0f49\u0f7a\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f63\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f5a\u0f44\u0f0b\u0f63\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Document tools":["\u0f61\u0f72\u0f42\u0f0b\u0f5a\u0f42\u0f66\u0f0b\u0f63\u0f42\u0f0b\u0f46\u0f0d"],"Document and block tools":["\u0f61\u0f72\u0f42\u0f0b\u0f5a\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f63\u0f42\u0f0b\u0f46\u0f0d"],"Embed a video from your media library or upload a new one.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f63\u0f66\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u0f66\u0f99\u0f53\u0f0b\u0f44\u0f42\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d \u0f51\u0f58\u0f72\u0f42\u0f66\u0f0b\u0f56\u0f66\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f56\u0f62\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0f5e\u0f42\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f42\u0f5e\u0f66\u0f0b\u0f5a\u0f72\u0f42\u0f0b\u0f63\u0f74\u0f44\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Add white space between blocks and customize its height.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f51\u0f56\u0f62\u0f0b\u0f51\u0f74\u0f0b\u0f56\u0f62\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0b\u0f51\u0f44\u0f0b\u0f51\u0f7a\u0f60\u0f72\u0f0b\u0f58\u0f50\u0f7c\u0f0b\u0f5a\u0f51\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Insert additional custom elements with a WordPress shortcode.":["WordPress \u0f61\u0f72\u0f0b\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f50\u0f74\u0f44\u0f0b\u0f56\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f42\u0fb2\u0f74\u0f56\u0f0b\u0f46\u0f0b\u0f60\u0f55\u0f62\u0f0b\u0f58\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Create a break between ideas or sections with a horizontal separator.":["\u0f46\u0f74\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f56\u0f62\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f56\u0fb3\u0f7c\u0f0b\u0f56\u0f40\u0f7c\u0f51\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f5a\u0f53\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f51\u0f56\u0f62\u0f0b\u0f63\u0f0b\u0f58\u0f5a\u0f58\u0f66\u0f0b\u0f42\u0f45\u0f7c\u0f51\u0f0b\u0f54\u0f0d"],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u0f51\u0fb2\u0f44\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f63\u0f74\u0f44\u0f0b\u0f5a\u0f72\u0f42\u0f0b\u0f63\u0f0b\u0f51\u0f44\u0f7c\u0f66\u0f0b\u0f66\u0fa3\u0f44\u0f0b\u0f42\u0f72\u0f66\u0f0b\u0f62\u0fa9\u0f63\u0f0b\u0f60\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0b\u0f66\u0f9f\u0f7a\u0f0d \"\u0f42\u0f5e\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f56\u0f64\u0f51\u0f0b\u0f5a\u0f74\u0f63\u0f0b\u0f63\u0f74\u0f44\u0f0b\u0f51\u0f74\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0b\u0f54\u0f0b\u0f53\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f66\u0f92\u0fb2\u0f74\u0f56\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f56\u0f62\u0f9f\u0f53\u0f0b\u0f54\u0f7c\u0f62\u0f0b\u0f42\u0f4f\u0f7c\u0f44\u0f0b\u0f46\u0f7a\u0f51\u0f0b\u0f61\u0f72\u0f53\u0f0d\" \u2014 \u0f47\u0f74\u0f0b\u0f63\u0f72\u0f60\u0f7c\u2022\u0f41\u0f7c\u0f0b\u0f50\u0f0b\u0f5f\u0f62\u0f0d"],"Give special visual emphasis to a quote from your text.":["\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f60\u0f72\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f63\u0f74\u0f44\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0b\u0f42\u0f63\u0f0b\u0f46\u0f7a\u0f0b\u0f5a\u0f74\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f51\u0f58\u0f72\u0f42\u0f66\u0f0b\u0f56\u0f66\u0f63\u0f0b\u0f50\u0f51\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f66\u0f9f\u0f7a\u0f62\u0f0b\u0f56\u0f0d"],"Start with the building block of all narrative.":["\u0f62\u0f92\u0fb1\u0f66\u0f0b\u0f56\u0f64\u0f51\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0f90\u0fb2\u0f74\u0f53\u0f0b\u0f53\u0f66\u0f0b\u0f58\u0f42\u0f7c\u0f0b\u0f60\u0f5b\u0f74\u0f42\u0f66\u0f0b\u0f54\u0f0d"],"Separate your content into a multi-page experience.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f51\u0f7a\u0f0b\u0f64\u0f7c\u0f42\u0f0b\u0f44\u0f7c\u0f66\u0f0b\u0f51\u0f74\u0f0b\u0f58\u0f62\u0f0b\u0f56\u0f42\u0f7c\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f0b\u0f61\u0f72\u0f53\u0f0d"],"Set media and words side-by-side for a richer layout.":["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f58\u0f72\u0f44\u0f0b\u0f5a\u0f72\u0f42\u0f0b\u0f42\u0fb2\u0f63\u0f0b\u0f66\u0f9f\u0f62\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f55\u0f74\u0f53\u0f0b\u0f5a\u0f7c\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f56\u0f40\u0f7c\u0f51\u0f0b\u0f54\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f46\u0f7c\u0f42"],"Media & Text Settings":["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0d & \u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Create a bulleted or numbered list.":["\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f66\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f68\u0f44\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0f90\u0fb2\u0f74\u0f53\u0f0d"],"Display a list of your most recent comments.":["\u0f49\u0f7a\u0f0b\u0f46\u0f62\u0f0b\u0f66\u0fa4\u0f7a\u0f63\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f51\u0f54\u0fb1\u0f51\u0f0b\u0f58\u0f46\u0f53\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f0d"],"Insert an image to make a visual statement.":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f50\u0f51\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f56\u0f66\u0f92\u0fb2\u0f42\u0f66\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f0d"],"Add custom HTML code and preview it as you edit.":["\u0f62\u0f44\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f40\u0fb1\u0f72 HTML \u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0b\u0f51\u0f44\u0f0b\u0f66\u0fa6\u0fb2\u0f42\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f51\u0f74\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0d"],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u0f5a\u0f53\u0f0b\u0f54\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0b\u0f54\u0f0b\u0f51\u0f44\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f51\u0f7c\u0f0b\u0f51\u0f58\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f56\u0f45\u0f62\u0f0b\u0f60\u0f51\u0fb2\u0f72\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f41\u0f53 (\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0b\u0f58\u0f0b\u0f60\u0f55\u0fb2\u0f74\u0f63\u0f0b) \u0f63\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0b\u0f62\u0f58\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f42\u0f5e\u0f72\u0f0b\u0f66\u0f92\u0fb2\u0f7c\u0f58\u0f0b\u0f63\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f66\u0f0b\u0f63\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Display multiple images in a rich gallery.":["\u0f55\u0f74\u0f53\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f5a\u0f7c\u0f42\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f54\u0f62\u0f0b\u0f51\u0f7a\u0f56\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f51\u0f74\u0f0b\u0f58\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f0d"],"Add a link to a downloadable file.":["\u0f55\u0f56\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f50\u0f74\u0f56\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Embed videos, images, tweets, audio, and other content from external sources.":["\u0f55\u0fb1\u0f72\u0f60\u0f72\u0f0b\u0f50\u0f7c\u0f53\u0f0b\u0f41\u0f74\u0f44\u0f66\u0f0b\u0f63\u0f66\u0f0b\u0f56\u0fb1\u0f74\u0f44\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0d \u0f50\u0f7c\u0f66\u0f0b\u0f61\u0f72\u0f42 \u0f66\u0f92\u0fb2\u0f0b\u0f51\u0f44\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f42\u0f5e\u0f53\u0f0b\u0f54\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Resize for smaller devices":["\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f45\u0f74\u0f44\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f46\u0f7a\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f63\u0f7a\u0f42\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u0f56\u0f64\u0f62\u0f0b\u0f63\u0f9f\u0f0b\u0f46\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f46\u0f7a\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f63\u0f7a\u0f42\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f51\u0f74\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f51\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f5e\u0f7a\u0f44\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f62\u0f0b\u0f5a\u0f51\u0f0b\u0f66\u0f7c\u0f62\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0b\u0f40\u0fb1\u0f44\u0f0b\u0f66\u0fb2\u0f72\u0f51\u0f0d"],"This embed will preserve its aspect ratio when the browser is resized.":["\u0f56\u0f64\u0f62\u0f0b\u0f63\u0f9f\u0f0b\u0f46\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f46\u0f7a\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f63\u0f7a\u0f42\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f51\u0f74\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f51\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f5e\u0f7a\u0f44\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f62\u0f0b\u0f5a\u0f51\u0f0b\u0f66\u0f7c\u0f62\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0b\u0f61\u0f72\u0f53\u0f0d"],"Embed an Animoto video.":["Animoto \u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed a Vimeo video.":["Vimeo \u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Flickr content.":["Flickr \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Spotify content.":["Spotify \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed SoundCloud content.":["SoundCloud \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed a WordPress post.":["WordPress \u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed an Instagram post.":["Instagram \u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed a Facebook post.":["Facebook \u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed a WordPress.tv video.":["WordPress.tv \u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed a VideoPress video.":["VideoPress \u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed a Tumblr post.":["Tumblr \u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed a TED video.":["TED \u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Speaker Deck content.":["Speaker Deck \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed a YouTube video.":["YouTube \u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed SmugMug content.":["SmugMug \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Slideshare content.":["Slideshare \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Scribd content.":["Scribd \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Screencast content.":["Screencast \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed ReverbNation content.":["ReverbNation \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed a Reddit thread.":["Reddit thread \u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Polldaddy content.":["Polldaddy \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Mixcloud content.":["Mixcloud \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed a tweet.":["tweet \u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Meetup.com content.":["Meetup.com \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Kickstarter content.":["Kickstarter \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Issuu content.":["Issuu \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Imgur content.":["Imgur \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Hulu content.":["Hulu \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed a Dailymotion video.":["Dailymotion \u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed CollegeHumor content.":["CollegeHumor \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Embed Cloudup content.":["Cloudup \u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Add an image or video with a text overlay \u2014 great for headers.":["\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f63\u0fa1\u0f53\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0f62\u0fa9\u0f7a\u0f42\u0f66\u0f0b\u0f45\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d \u2014 \u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f63\u0f0b\u0f67\u0f0b\u0f45\u0f44\u0f0b\u0f60\u0f5a\u0f58\u0f66\u0f0d"],"Display code snippets that respect your spacing and tabs.":["\u0f56\u0f62\u0f0b\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f51\u0f58\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f63\u0f0b\u0f66\u0f92\u0f7c\u0f0b\u0f56\u0f66\u0f9f\u0f74\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f51\u0f74\u0f58\u0f0b\u0f56\u0f74\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f0d"],"Use the classic WordPress editor.":["\u0f5a\u0f51\u0f0b\u0f63\u0fa1\u0f53\u0f0b\u0f42\u0fb1\u0f72 WordPress \u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f56\u0f40\u0f7c\u0f63\u0f0b\u0f56\u0f0d"],"Display a list of all categories.":["\u0f51\u0f40\u0f62\u0f0b\u0f46\u0f42\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f0d"],"Embed a simple audio player.":["\u0f66\u0f9f\u0f56\u0f66\u0f0b\u0f56\u0f51\u0f7a\u0f60\u0f72\u0f0b\u0f66\u0f92\u0fb2\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f42\u0f4f\u0f7c\u0f44\u0f0b\u0f46\u0f66\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"noun\x04View":["\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f66\u0fa3\u0f44\u0f0b\u0f0d"],"editor button\x04Left to right":["\u0f42\u0f61\u0f7c\u0f53\u0f0b\u0f53\u0f66\u0f0b\u0f42\u0f61\u0f66\u0f0d"],"Save as Pending":["\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f66\u0f92\u0f74\u0f42\u0f0b\u0f63\u0f0b\u0f49\u0f62\u0f0b\u0f5a\u0f42\u0f66\u0f0d"],"%s address":["%s \u0f66\u0f0b\u0f42\u0f53\u0f66\u0f0d"],"Paste or type URL":["URL \u0f66\u0fa6\u0fb1\u0f7c\u0f62\u0f0b\u0f56\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f56\u0fb3\u0f74\u0f42\u0f66\u0f0d"],"Insert from URL":["URL \u0f53\u0f66\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Block Navigator":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0b\u0f46\u0f66\u0f0d"],Styles:["\u0f56\u0f5f\u0f7c\u0f0b\u0f63\u0f9f\u0f0d"],"Advanced Panels":["\u0f58\u0f50\u0f7c\u0f0b\u0f62\u0f72\u0f58\u0f0b\u0f54\u0f44\u0f0b\u0f63\u0f7a\u0f56\u0f0d"],"Document Panels":["\u0f61\u0f72\u0f42\u0f0b\u0f5a\u0f42\u0f66\u0f0b\u0f54\u0f44\u0f0b\u0f63\u0f7a\u0f56\u0f0d"],General:["\u0f62\u0f92\u0fb1\u0f74\u0f53\u0f0b\u0f63\u0fa1\u0f53\u0f0d"],"Open the block navigation menu.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0b\u0f42\u0f51\u0f58\u0f0b\u0f50\u0f7c\u0f0b\u0f41\u0f0b\u0f55\u0fb1\u0f7a\u0f0d"],"Work without distraction":["\u0f63\u0f66\u0f0b\u0f40\u0f62\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0f61\u0f7a\u0f44\u0f0b\u0f58\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Focus on one block at a time":["\u0f50\u0f7a\u0f44\u0f66\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f63\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f51\u0f7c\u0f0b\u0f66\u0fa3\u0f44\u0f0b\u0f0d"],"Access all block and document tools in a single place":["\u0f42\u0f53\u0f66\u0f0b\u0f61\u0f74\u0f63\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f5a\u0f42\u0f66\u0f0b\u0f63\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f5a\u0f44\u0f0b\u0f63\u0f0b\u0f56\u0f45\u0f62\u0f0b\u0f60\u0f51\u0fb2\u0f72\u0f0d"],Options:["\u0f42\u0f51\u0f58\u0f0b\u0f5a\u0f53\u0f0d"],"(opens in a new tab)":["(\u0f42\u0f51\u0f58\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f41\u0f0b\u0f55\u0fb1\u0f7a)"],Minutes:["\u0f66\u0f90\u0f62\u0f0b\u0f58\u0f0d"],Hours:["\u0f46\u0f74\u0f0b\u0f5a\u0f7c\u0f51\u0f0d"],Time:["\u0f51\u0f74\u0f66\u0f0b\u0f5a\u0f7c\u0f51\u0f0d"],Year:["\u0f63\u0f7c\u0f0d"],Day:["\u0f49\u0f72\u0f53\u0f0d"],December:["\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0d"],November:["\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0d"],October:["\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0d"],September:["\u0f5f\u0fb3\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0d"],August:["\u0f5f\u0fb3\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0d"],July:["\u0f5f\u0fb3\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0d"],June:["\u0f5f\u0fb3\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54\u0f0d"],May:["\u0f5f\u0fb3\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0d"],April:["\u0f5f\u0fb3\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f56\u0f0d"],March:["\u0f5f\u0fb3\u0f0b\u0f42\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0d"],February:["\u0f5f\u0fb3\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0d"],January:["\u0f5f\u0fb3\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f0d"],Month:["\u0f5f\u0fb3\u0f0b\u0f56\u0f0d"],Date:["\u0f5f\u0fb3\u0f0b\u0f5a\u0f7a\u0f66\u0f0d"],"Go to the first (home) or last (end) day of a week.":["\u0f58\u0f50\u0f7a\u0f56 Home \u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53 End \u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f42\u0f5f\u0f60\u0f0b\u0f60\u0f41\u0f7c\u0f62\u0f0b\u0f51\u0f7a\u0f60\u0f72\u0f0b\u0f49\u0f72\u0f53\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f49\u0f72\u0f53\u0f0b\u0f58\u0f50\u0f60\u0f0b\u0f58\u0f0b\u0f63\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f7c\u0f51\u0f0d"],"Home/End":["Home/End"],"Home and End":["\u0f58\u0f50\u0f7a\u0f56 Home \u0f51\u0f44 End"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u0f58\u0f50\u0f7a\u0f56 PgUp \u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53 PgDn \u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f62\u0f7a\u0f0b\u0f62\u0fa9\u0f72\u0f66\u0f0b\u0f42\u0f5e\u0f72\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f58\u0f47\u0f74\u0f42\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0d"],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up \u0f51\u0f44 Page Down"],"Move backward (up) or forward (down) by one week.":["\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f61\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f58\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f42\u0f5f\u0f60\u0f0b\u0f60\u0f41\u0f7c\u0f62\u0f0b\u0f62\u0f7a\u0f0b\u0f62\u0fa9\u0f72\u0f66\u0f0b\u0f42\u0f5e\u0f72\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f58\u0f47\u0f74\u0f42\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0d"],"Up and Down Arrows":["\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f61\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f58\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0d"],"Move backward (left) or forward (right) by one day.":["\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f61\u0f7c\u0f53\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f61\u0f66\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f49\u0f72\u0f53\u0f0b\u0f62\u0f7a\u0f0b\u0f62\u0fa9\u0f72\u0f66\u0f0b\u0f42\u0f5e\u0f72\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f58\u0f47\u0f74\u0f42\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0d"],"Left and Right Arrows":["\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f61\u0f7c\u0f53\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f61\u0f66\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0d"],"Select the date in focus.":["\u0f60\u0f51\u0f74\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f5a\u0f7a\u0f66\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Navigating with a keyboard":["\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f5e\u0f7c\u0f44\u0f0b\u0f56\u0f40\u0f7c\u0f63\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f66\u0f9f\u0f44\u0f66\u0f0d"],"Click the desired day to select it.":["\u0f51\u0f42\u0f7c\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f5a\u0f7a\u0f66\u0f0b\u0f58\u0f53\u0f53\u0f0b\u0f5a\u0f7a\u0f0b\u0f51\u0f7a\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Click the right or left arrows to select other months in the past or the future.":["\u0f42\u0f61\u0f66\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f61\u0f7c\u0f53\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f58\u0f53\u0f53\u0f0b\u0f53\u0f66\u0f0b\u0f60\u0f51\u0f66\u0f0b\u0f54\u0f0b\u0f51\u0f44\u0f0b\u0f58\u0f0b\u0f60\u0f7c\u0f44\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Click to Select":["\u0f58\u0f53\u0f53\u0f0b\u0f53\u0f66\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Calendar Help":["\u0f63\u0f7c\u0f0b\u0f50\u0f7c\u0f60\u0f72\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0b\u0f62\u0f58\u0f0d"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f5e\u0f7c\u0f44\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f58\u0f51\u0f60\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0fa9\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f63\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f46\u0f7c\u0f42 \u0f61\u0f62\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f58\u0f62\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f47\u0f7a\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f51\u0f44\u0f0b\u0f47\u0f7a\u0f0b\u0f53\u0f42\u0f0b\u0f4f\u0f74\u0f0b\u0f42\u0f4f\u0f7c\u0f44\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f0d \u0f42\u0f61\u0f66\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f61\u0f7c\u0f53\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f5a\u0f51\u0f0b\u0f63\u0f7c\u0f44\u0f66\u0f0b\u0f5a\u0f51\u0f0b\u0f47\u0f7a\u0f0b\u0f58\u0f50\u0f7c\u0f0b\u0f51\u0f44\u0f0b\u0f47\u0f7a\u0f0b\u0f51\u0f58\u0f60\u0f0b\u0f62\u0f74\u0f0b\u0f42\u0f4f\u0f7c\u0f44\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Choose a shade":["\u0f42\u0fb2\u0f72\u0f56\u0f0b\u0f58\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Change color format":["\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0f5e\u0f42\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0d"],"Color value in HSL":["HSL \u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f50\u0f44\u0f0b\u0f0d"],"Color value in RGB":["RGB \u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f50\u0f44\u0f0b\u0f0d"],"Color value in hexadecimal":["Hex (\u0f56\u0f45\u0f74\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f42\u0f7c\u0f44\u0f0b\u0f60\u0f42\u0fb2\u0f72\u0f63\u0f0b\u0f63\u0f74\u0f42\u0f66) \u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f50\u0f44\u0f0b\u0f0d"],"RGB mode active":["RGB \u0f51\u0f54\u0f7a\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Hex color mode active":["Hex \u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Hue/saturation/lightness mode active":["\u0f5a\u0f7c\u0f53\u0f0b\u0f58\u0f51\u0f44\u0f66\u0f0d/\u0f5a\u0f51\u0f0b\u0f63\u0f7c\u0f44\u0f66\u0f0b\u0f5a\u0f51\u0f0d/\u0f42\u0f66\u0f63\u0f0b\u0f5a\u0f51\u0f0b \u0f51\u0f54\u0f7a\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Move the arrow left or right to change hue.":["\u0f42\u0f61\u0f7c\u0f53\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f61\u0f66\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f58\u0f53\u0f53\u0f0b\u0f53\u0f66\u0f0b\u0f5a\u0f7c\u0f53\u0f0b\u0f58\u0f51\u0f44\u0f66\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0d"],"Hue value in degrees, from 0 to 359.":["\u0f5a\u0f7c\u0f53\u0f0b\u0f58\u0f51\u0f44\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f50\u0f44\u0f0b\u0f53\u0f72\u0f0b\u0f4f\u0f74\u0f60\u0f74\u0f0b\u0f61\u0f72\u0f66\u0f0b\u0f60\u0f47\u0f63\u0f0b\u0f4f\u0f7a\u0f0d 0 \u0f53\u0f66 359 \u0f51\u0f56\u0f62\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f50\u0f44\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f46\u0f7c\u0f42"],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha \u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f50\u0f44\u0f0b\u0f53\u0f72\u0f0d 0 (\u0f53\u0f44\u0f0b\u0f42\u0f66\u0f63\u0f0d) \u0f53\u0f66 1 (\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f53\u0f44\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f58\u0f72\u0f53\u0f0b\u0f54\u0f0d) \u0f51\u0f56\u0f62\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f46\u0f7c\u0f42"],Stripes:["\u0f41\u0fb2\u0f0b\u0f50\u0f72\u0f42"],"Your site doesn\u2019t include support for this block.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f60\u0f72\u0f0b\u0f62\u0f58\u0f0b\u0f60\u0f51\u0f7a\u0f42\u0f66\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f7a\u0f0d"],"Unrecognized Block":["\u0f44\u0f7c\u0f66\u0f0b\u0f60\u0f5b\u0f72\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b \"%s\" \u0f61\u0f72\u0f0b\u0f62\u0f58\u0f0b\u0f60\u0f51\u0f7a\u0f42\u0f66\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f7a\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0f7c\u0f62\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f0b\u0f61\u0f72\u0f53\u0f0d"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b \"%s\" \u0f61\u0f72\u0f0b\u0f62\u0f58\u0f0b\u0f60\u0f51\u0f7a\u0f42\u0f66\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f7a\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0f7c\u0f62\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f51\u0f7a\u0f60\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f51\u0f7a\u0f0b\u0f62\u0f44\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f40\u0fb1\u0f72 HTML \u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f0b\u0f61\u0f72\u0f53\u0f0d"],"Media area":["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f66\u0f0b\u0f41\u0f74\u0f63\u0f0d"],"Media & Text":["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0d & \u0f61\u0f72\u0f0b\u0f42\u0f7a"],"Show media on right":["\u0f42\u0f61\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f60\u0f46\u0f62\u0f0d"],"Show media on left":["\u0f42\u0f61\u0f7c\u0f53\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f60\u0f46\u0f62\u0f0d"],"Open in New Tab":["\u0f42\u0f51\u0f58\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f41\u0f0b\u0f55\u0fb1\u0f7a\u0f0d"],Cover:["\u0f55\u0fb1\u0f72\u0f0b\u0f66\u0f90\u0f7c\u0f42\u0f66\u0f0d"],"Border Settings":["\u0f58\u0f50\u0f60\u0f0b\u0f66\u0f92\u0fb2\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Edit media":["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],Medium:["\u0f60\u0f56\u0fb2\u0f72\u0f44\u0f0b\u0f56\u0f0d"],"Paste URL or type to search":["URL \u0f66\u0fa6\u0fb1\u0f7c\u0f62\u0f0b\u0f56\u0f60\u0f58\u0f0b\u0f56\u0fb3\u0f74\u0f42\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0d"],Terms:["\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0d"],"Your work will be published at the specified date and time.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f56\u0f62\u0fa9\u0f58\u0f66\u0f0b\u0f46\u0f7c\u0f66\u0f0b\u0f51\u0f7a\u0f0b\u0f51\u0f58\u0f72\u0f42\u0f66\u0f0b\u0f60\u0f5b\u0f74\u0f42\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f5a\u0f7a\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f51\u0f74\u0f66\u0f0b\u0f5a\u0f7c\u0f51\u0f0b\u0f66\u0f9f\u0f7a\u0f44\u0f0b\u0f51\u0f74\u0f0b\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f62\u0f7a\u0f51\u0f0d"],"Are you ready to schedule?":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f51\u0f74\u0f66\u0f0b\u0f56\u0f40\u0f42\u0f0b\u0f42\u0fb2\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f51\u0f58\u0f0d"],"Always show pre-publish checks.":["\u0f53\u0f58\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f61\u0f44\u0f0b\u0f58\u0f0b\u0f66\u0fa4\u0f7a\u0f63\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f5e\u0f72\u0f56\u0f0b\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f60\u0f46\u0f62\u0f0d"],"Take Over":["\u0f62\u0fa9\u0f72\u0f66\u0f0b\u0f63\u0f7a\u0f53\u0f0d"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f58\u0f41\u0f53\u0f0b\u0f42\u0f5e\u0f53\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f42\u0f72\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f62\u0f0b\u0f63\u0f66\u0f0b\u0f40\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f60\u0f51\u0f74\u0f42\u0f0b\u0f54\u0f66\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f62\u0f92\u0fb1\u0f42\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0d \u0f62\u0fa9\u0f72\u0f66\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f0b\u0f58\u0f0b\u0f42\u0f4f\u0f7c\u0f42\u0f66\u0f0d"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s \u0f61\u0f72\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f62\u0f0b\u0f63\u0f66\u0f0b\u0f40\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f60\u0f51\u0f74\u0f42\u0f0b\u0f54\u0f66\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f62\u0f92\u0fb1\u0f42\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0d \u0f62\u0fa9\u0f72\u0f66\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f0b\u0f58\u0f0b\u0f42\u0f4f\u0f7c\u0f42\u0f66\u0f0d"],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u0f51\u0f0b\u0f63\u0f9f\u0f60\u0f72\u0f0b\u0f46\u0f62\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f60\u0f51\u0f72\u0f60\u0f72\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f66\u0f9f\u0f44\u0f66\u0f0b\u0f60\u0f5b\u0f72\u0f53\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f58\u0f41\u0f53\u0f0b\u0f42\u0f5e\u0f53\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f63\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f60\u0f51\u0f74\u0f42 \u0f66\u0f7a\u0f58\u0f66\u0f0b\u0f41\u0f74\u0f62\u0f0b\u0f58\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f51\u0f44\u0f0b\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f54\u0f0b\u0f51\u0f42\u0f0b\u0f49\u0f62\u0f0b\u0f5f\u0f72\u0f53\u0f0b\u0f61\u0f7c\u0f51\u0f0d"],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u0f51\u0f0b\u0f63\u0f9f\u0f60\u0f72\u0f0b\u0f46\u0f62\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f60\u0f51\u0f72\u0f60\u0f72\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f66\u0f9f\u0f44\u0f66\u0f0b\u0f60\u0f5b\u0f72\u0f53 %s \u0f63\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f60\u0f51\u0f74\u0f42 \u0f66\u0f7a\u0f58\u0f66\u0f0b\u0f41\u0f74\u0f62\u0f0b\u0f58\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f51\u0f44\u0f0b\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f54\u0f0b\u0f51\u0f42\u0f0b\u0f49\u0f62\u0f0b\u0f5f\u0f72\u0f53\u0f0b\u0f61\u0f7c\u0f51\u0f0d"],Avatar:["\u0f51\u0f56\u0f74\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0d"],"This post is already being edited.":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f60\u0f51\u0f72\u0f62\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Someone else has taken over this post.":["\u0f42\u0f5e\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f62\u0fa9\u0f72\u0f66\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f60\u0f51\u0f74\u0f42"],"This block contains unexpected or invalid content.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f62\u0f0b\u0f50\u0f7c\u0f63\u0f0b\u0f62\u0f92\u0fb1\u0f42\u0f0b\u0f42\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f53\u0f74\u0f66\u0f0b\u0f58\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f5a\u0f74\u0f51\u0f0b\u0f60\u0f51\u0f74\u0f42"],"Resolve Block":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f50\u0f42\u0f0b\u0f42\u0f45\u0f7c\u0f51\u0f0d"],"Convert to HTML":["HTML \u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0d"],"This block can only be used once.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f50\u0f7a\u0f44\u0f66\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f63\u0f0b\u0f58\u0f0b\u0f42\u0f4f\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Exit Code Editor":["\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f63\u0f66\u0f0b\u0f55\u0fb1\u0f72\u0f62\u0f0b\u0f50\u0f7c\u0f53\u0f0d"],"Editing Code":["\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Solid Color":["\u0f58\u0f51\u0f7c\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f0d"],"Main Color":["\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f42\u0f59\u0f7c\u0f0b\u0f56\u0f7c\u0f0d"],HTML:["HTML"],"Write HTML\u2026":["HTML \u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],"Media Settings":["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Overlay Color":["\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0f62\u0fa9\u0f7a\u0f42\u0f66\u0f0d"],Overlay:["\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0f62\u0fa9\u0f7a\u0f42\u0f66\u0f0d"],"Insert Media":["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Reusable block imported successfully!":["\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f0b\u0f56\u0f51\u0f7a\u0f0b\u0f56\u0fb3\u0f42\u0f0b\u0f44\u0f44\u0f0b\u0f53\u0f44\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Invalid Reusable Block JSON file":["\u0f53\u0f74\u0f66\u0f0b\u0f58\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42 JSON \u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0d"],"Invalid JSON file":["\u0f53\u0f74\u0f66\u0f0b\u0f58\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72 JSON \u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0d"],"Import from JSON":["JSON \u0f63\u0f66\u0f0b\u0f53\u0f44\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0d"],Backtick:["Backtick \u0f42\u0f66\u0f7a\u0f42\u0f0b\u0f5a\u0f7a\u0f42"],Period:["Period"],Comma:["Comma"],"Change type of %d block":["\u0f62\u0fa1\u0f7c\u0f42 %d \u0f61\u0f72\u0f0b\u0f62\u0f72\u0f42\u0f66\u0f0b\u0f42\u0fb2\u0f66\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0d"],Current:["\u0f58\u0f72\u0f42\u0f0b\u0f66\u0f94\u0f62\u0f0d"],"After Conversion":["\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f56\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0b\u0f56\u0f4f\u0f44\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0d"],"Change alignment":["\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f5a\u0f74\u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f60\u0f42\u0fb1\u0f74\u0f62\u0f0d"],"Change text alignment":["\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f5a\u0f74\u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f60\u0f42\u0fb1\u0f74\u0f62\u0f0d"],"%d block":["\u0f62\u0fa1\u0f7c\u0f42 %d"],Escape:["Escape \u0f58\u0f50\u0f7a\u0f56\u0f0d"],"Forward-slash":["\u0f42\u0f66\u0f7a\u0f42\u0f0b\u0f64\u0f51\u0f0d"],"No archives to show.":["\u0f61\u0f72\u0f42\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0b\u0f54\u0f0b\u0f58\u0f7a\u0f51\u0f0d"],"This file is empty.":["\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f56\u0f0b\u0f62\u0f7a\u0f51\u0f0d"],"Sorry, this file type is not supported here.":["\u0f51\u0f42\u0f7c\u0f44\u0f66\u0f0b\u0f51\u0f42\u0f0b\u0f5e\u0f74\u0f0d \u0f42\u0f53\u0f66\u0f0b\u0f60\u0f51\u0f72\u0f62\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f62\u0f72\u0f42\u0f66\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f63\u0f0b\u0f62\u0f58\u0f0b\u0f60\u0f51\u0f7a\u0f42\u0f66\u0f0b\u0f58\u0f72\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0d"],"Manage All Reusable Blocks":["\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f51\u0f7c\u0f0b\u0f51\u0f58\u0f0d"],Title:["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f0d"],"Fullscreen Mode":["\u0f61\u0f7c\u0f63\u0f0b\u0f42\u0f44\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f62\u0fa3\u0f58\u0f0d"],"Beautiful landscape":["\u0f63\u0f9f\u0f0b\u0f53\u0f0b\u0f66\u0fa1\u0f74\u0f42\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f61\u0f74\u0f63\u0f0b\u0f63\u0f97\u0f7c\u0f44\u0f66\u0f0d"],"Close panel":["\u0f54\u0f44\u0f0b\u0f63\u0f7a\u0f56\u0f0b\u0f41\u0f0b\u0f62\u0f92\u0fb1\u0f42"],"Convert to Classic Block":["\u0f5a\u0f51\u0f0b\u0f63\u0fa1\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0d"],"Remove Poster Image":["\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f0b\u0f64\u0f7c\u0f42\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0d"],"Select Poster Image":["\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f64\u0f7c\u0f42\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Poster Image":["\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f64\u0f7c\u0f42\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0d"],"This block is deprecated. Please use the Columns block instead.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f0b\u0f58\u0f72\u0f0b\u0f63\u0f7a\u0f42\u0f66\u0f0d \u0f66\u0f9f\u0f62\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0b\u0f5e\u0f74\u0f0d"],"Text Columns (deprecated)":["\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f60\u0f72\u0f0b\u0f66\u0f9f\u0f62\u0f0d (\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f0b\u0f58\u0f72\u0f0b\u0f63\u0f7a\u0f42\u0f66)"],"Row Count":["\u0f55\u0fb2\u0f7a\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0d"],"Column Count":["\u0f66\u0f9f\u0f62\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0d"],"This block is deprecated. Please use the Paragraph block instead.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f0b\u0f58\u0f72\u0f0b\u0f63\u0f7a\u0f42\u0f66\u0f0d \u0f51\u0f74\u0f58\u0f0b\u0f5a\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0b\u0f5e\u0f74\u0f0d"],"Subheading (deprecated)":["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f55\u0f63\u0f0b\u0f56\u0f0d (\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f0b\u0f58\u0f72\u0f0b\u0f63\u0f7a\u0f42\u0f66\u0f0d)"],blockquote:["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0b\u0f56\u0f40\u0f7c\u0f63\u0f0d"],"Change the block type after adding a new paragraph.":["\u0f51\u0f74\u0f58\u0f0b\u0f5a\u0f53\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f54\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f62\u0f72\u0f42\u0f66\u0f0b\u0f42\u0fb2\u0f66\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0d"],"Spotlight Mode":["\u0f60\u0f7c\u0f51\u0f0b\u0f60\u0f51\u0f74\u0f60\u0f72\u0f0b\u0f42\u0fb3\u0f7c\u0f42\u0f0b\u0f5e\u0f74\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f62\u0fa3\u0f58\u0f0d"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u0f60\u0f42\u0fb2\u0f7a\u0f63\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f42\u0f72\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f58\u0f41\u0f53\u0f0b\u0f51\u0f44\u0f0b\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0b\u0f58\u0f0b\u0f60\u0f55\u0fb2\u0f74\u0f63\u0f0b\u0f63\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0b\u0f56\u0f62\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0b\u0f62\u0f58\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0f72\u0f0b\u0f62\u0f7a\u0f51\u0f0d \u0f42\u0f53\u0f51\u0f0b\u0f5a\u0f72\u0f42\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f62\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f63\u0f0b\u0f5e\u0f72\u0f56\u0f0b\u0f56\u0f62\u0f97\u0f7c\u0f51\u0f0b\u0f56\u0fb1\u0f7c\u0f66\u0f0d"],"Add tags":["\u0f60\u0f42\u0fb2\u0f7a\u0f63\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Apply the \"%1$s\" format.":["\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0f5e\u0f42 \"%1$s\" \u0f56\u0f40\u0f7c\u0f63\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0d"],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f66\u0f92\u0fb2\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0f5e\u0f42\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0f72\u0f42\u0f66\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0fb2\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f51\u0f58\u0f72\u0f42\u0f66\u0f0b\u0f56\u0f66\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0f7a\u0f51\u0f0d \u0f51\u0f54\u0f7a\u0f62\u0f0b\u0f53\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0f74\u0f0d \u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0f5e\u0f42\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f51\u0f58\u0f72\u0f42\u0f66\u0f0b\u0f56\u0f66\u0f63\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f63\u0f9f\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f63\u0f0b\u0f63\u0f9f\u0f7c\u0f66\u0f0d"],"Use a post format":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0f5e\u0f42\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f54\u0f0d"],"Insert After":["\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Insert Before":["\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f51\u0f74\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Move %1$d block from position %2$d down by one place":["\u0f62\u0fa1\u0f7c\u0f42 %1$d \u0f42\u0f53\u0f66\u0f0b\u0f61\u0f74\u0f63 %2$d \u0f53\u0f66\u0f0b\u0f58\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0f0b\u0f46\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0d"],"Move %1$d block from position %2$d up by one place":["\u0f62\u0fa1\u0f7c\u0f42 %1$d \u0f42\u0f53\u0f66\u0f0b\u0f61\u0f74\u0f63 %2$d \u0f53\u0f66\u0f0b\u0f61\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0f0b\u0f46\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0d"],"Move %1$s block from position %2$d %3$s to position %4$d":["\u0f42\u0f53\u0f66\u0f0b\u0f61\u0f74\u0f63 %2$d \u0f61\u0f72\u0f53\u0f0b\u0f54\u0f60\u0f72\u0f0b[%1$s]\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c %3$s \u0f51\u0f7a\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f61\u0f74\u0f63 %4$d \u0f63\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0d"],movie:["\u0f42\u0fb3\u0f7c\u0f42\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0d"],"Insert a new block before the selected block(s).":["\u0f42\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f51\u0f74\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f54\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Remove the selected block(s).":["\u0f42\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0d"],"Duplicate the selected block(s).":["\u0f42\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0fb2\u0f0b\u0f56\u0f5f\u0f7c\u0f0d"],"Block shortcuts":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f58\u0fb1\u0f74\u0f62\u0f0b\u0f63\u0f58\u0f0d"],"Clear selection.":["\u0f60\u0f51\u0f7a\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f74\u0f42\u0f0b\u0f42\u0f59\u0f44\u0f0b\u0f66\u0f7a\u0f63\u0f0d"],"Select all text when typing. Press again to select all blocks.":["\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f42\u0f4f\u0f42\u0f0b\u0f51\u0f74\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d \u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f58\u0f53\u0f53\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Selection shortcuts":["\u0f58\u0fb1\u0f74\u0f62\u0f0b\u0f63\u0f58\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f74\u0f42"],"Switch between Visual Editor and Code Editor.":["\u0f50\u0f51\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f55\u0f62\u0f0b\u0f5a\u0f74\u0f62\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f56\u0f0d"],"Navigate to the previous part of the editor (alternative).":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f46\u0f0b\u0f64\u0f66\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f58\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d (\u0f50\u0f56\u0f66\u0f0b\u0f42\u0f5e\u0f53\u0f0d)"],"Navigate to the next part of the editor (alternative).":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f46\u0f0b\u0f64\u0f66\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f58\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d (\u0f50\u0f56\u0f66\u0f0b\u0f42\u0f5e\u0f53\u0f0d)"],"Navigate to the previous part of the editor.":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f46\u0f0b\u0f64\u0f66\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f58\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Navigate to the next part of the editor.":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f46\u0f0b\u0f64\u0f66\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f58\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Show or hide the settings sidebar.":["\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0b\u0f60\u0f42\u0fb2\u0f58\u0f0b\u0f5a\u0f44\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f60\u0f58\u0f0b\u0f42\u0f56\u0f0b\u0f54\u0f0d"],"Redo your last undo.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f58\u0f50\u0f60\u0f0b\u0f58\u0f60\u0f72\u0f0b\u0f55\u0fb1\u0f72\u0f62\u0f0b\u0f60\u0f50\u0f7a\u0f53\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f56\u0f5f\u0f7c\u0f0d"],"Undo your last changes.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f58\u0f50\u0f60\u0f0b\u0f58\u0f60\u0f72\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f55\u0fb1\u0f72\u0f62\u0f0b\u0f60\u0f50\u0f7a\u0f53\u0f0d"],"Save your changes.":["\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f49\u0f62\u0f0b\u0f5a\u0f42\u0f66\u0f0d"],"Global shortcuts":["\u0f41\u0fb1\u0f7c\u0f53\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f58\u0fb1\u0f74\u0f62\u0f0b\u0f63\u0f58\u0f0d"],"Remove a link.":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f50\u0f42\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0d"],"Convert the selected text into a link.":["\u0f42\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0d"],"Underline the selected text.":["\u0f42\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f62\u0f0b\u0f60\u0f7c\u0f42\u0f0b\u0f50\u0f72\u0f42\u0f0b\u0f60\u0f47\u0f7c\u0f42"],"Make the selected text italic.":["\u0f42\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f42\u0f66\u0f7a\u0f42\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f56\u0f45\u0f60\u0f0b\u0f56\u0f0d"],"Make the selected text bold.":["\u0f42\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f64\u0f0b\u0f46\u0f7a\u0f53\u0f0b\u0f56\u0f45\u0f60\u0f0b\u0f56\u0f0d"],"Text formatting":["\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f60\u0f72\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0f5e\u0f42"],"Insert a new block after the selected block(s).":["\u0f42\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f54\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Keyboard Shortcuts":["\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f5e\u0f7c\u0f44\u0f0b\u0f58\u0fb1\u0f74\u0f62\u0f0b\u0f58\u0f50\u0f7a\u0f56\u0f0d"],"Thanks for testing Gutenberg!":["Gutenberg \u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f0b\u0f42\u0f53\u0f44\u0f0b\u0f56\u0f62\u0f0b\u0f50\u0f74\u0f42\u0f66\u0f0b\u0f62\u0f97\u0f7a\u0f0b\u0f46\u0f7a\u0f0b\u0f5e\u0f74\u0f0d"],"Help build Gutenberg":["Gutenberg \u0f63\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0b\u0f62\u0f58\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f60\u0f5b\u0f74\u0f42\u0f66\u0f0b\u0f66\u0f90\u0fb2\u0f74\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["\u0f42\u0f63\u0f0b\u0f4f\u0f7a\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f5e\u0f53\u0f0b\u0f54\u0f0b\u0f60\u0f5b\u0f74\u0f42\u0f66\u0f0b\u0f66\u0f90\u0fb2\u0f74\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f50\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f51\u0f7a\u0f0b\u0f63\u0f66\u0f0b\u0f58\u0f44\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f5a\u0f74\u0f63\u0f0b\u0f58\u0f41\u0fb1\u0f7a\u0f53\u0f0b\u0f60\u0f51\u0f7c\u0f51\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f63\u0f7a\u0f42\u0f66\u0f0b\u0f60\u0f42\u0fb2\u0f74\u0f56\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f62\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0b\u0f62\u0f58\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f60\u0f51\u0f7c\u0f51\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f5a\u0f7a\u0f0d GitHub repository \u0f66\u0f9f\u0f7a\u0f44\u0f0b\u0f63\u0f0b\u0f55\u0f7a\u0f56\u0f66\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0d"],"The WordPress community":["WordPress \u0f58\u0f72\u0f0b\u0f66\u0fa1\u0f7a\u0f0d"],"Code is Poetry":["\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f53\u0f72\u0f0b\u0f66\u0f99\u0f53\u0f0b\u0f44\u0f42\u0f0b\u0f42\u0f7c\u0f0d"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f62\u0f44\u0f0b\u0f49\u0f72\u0f51\u0f0b\u0f58\u0f7c\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f44\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f60\u0f5b\u0f74\u0f42\u0f66\u0f0b\u0f66\u0f90\u0fb2\u0f74\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f0b\u0f61\u0f72\u0f53\u0f0d \u0f42\u0f66\u0f7c\u0f62\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f66\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f66\u0f92\u0f74\u0f63\u0f0b\u0f63\u0fa1\u0f53\u0f0d \u0f62\u0f92\u0fb1\u0f53\u0f0b\u0f56\u0f40\u0f7c\u0f51\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f46\u0f0b\u0f51\u0f7c\u0f51\u0f0b\u0f54\u0f7c\u0f0d \u0f60\u0f51\u0f72\u0f0b\u0f53\u0f72 pullquote \u0f61\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f61\u0f72\u0f53:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":["\u0f55\u0f74\u0f53\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f5a\u0f7c\u0f42\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0d"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg \u0f61\u0f72\u0f66 2017 \u0f63\u0f7c\u0f62\u0f0b\u0f56\u0f62\u0fa9\u0f58\u0f66\u0f0d"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["\u0f50\u0f51\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:["\u0f54\u0f62\u0f0b\u0f51\u0f7a\u0f56\u0f0d"],"Images & Videos":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0d & \u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0d"],"Text & Headings":["\u0f61\u0f72\u0f0b\u0f42\u0f7a & \u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f0d"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":["\u0f63\u0f42\u0f0b\u0f46\u0f0b \u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Gutenberg \u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f56\u0fb1\u0f7c\u0f53\u0f0b\u0f54\u0f0b\u0f63\u0f7a\u0f42\u0f66\u0f0d"],"block name\x04More":["\u0f51\u0f7a\u0f0b\u0f63\u0f66\u0f0b\u0f58\u0f44\u0f0b\u0f0d"],"button to expand options\x04More":["\u0f51\u0f7a\u0f0b\u0f63\u0f66\u0f0b\u0f58\u0f44\u0f0b\u0f0d"],"Are you sure you want to unschedule this post?":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f60\u0f51\u0f72\u0f62\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f5a\u0f74\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f42\u0f64\u0f7c\u0f58\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f58\u0f72\u0f53\u0f0b\u0f53\u0f58\u0f0d"],"Alt Text (Alternative Text)":["\u0f5a\u0f56\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f60\u0f72\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f56\u0f64\u0f51\u0f0d"],"Reusable Block":["\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42"],"Unique identifier for the object.":["\u0f56\u0fb1\u0f0b\u0f61\u0f74\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f58\u0f5a\u0f7c\u0f53\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f49\u0f42\u0f0b\u0f42\u0f45\u0f72\u0f42"],"Untitled Reusable Block":["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f58\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42"],Small:[],"(%s: %s)":["(%s: %s)"],Reusable:["\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f0d"],"(current %s: %s)":["(\u0f58\u0f72\u0f42\u0f0b\u0f66\u0f94\u0f62\u0f0d %s: %s)"],"Remove from Reusable Blocks":["\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f63\u0f66\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0d"],"Add to Reusable Blocks":["\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Keep as HTML":["HTML \u0f66\u0fb2\u0f74\u0f44\u0f0b\u0f60\u0f5b\u0f72\u0f53\u0f0d"],"Edit URL":["URL \u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Color Settings":["\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"The response is not a valid JSON response.":["\u0f61\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f53\u0f72\u0f0b\u0f53\u0f74\u0f66\u0f0b\u0f63\u0fa1\u0f53\u0f0b\u0f42\u0fb1\u0f72 JSON \u0f61\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f58\u0f0b\u0f62\u0f7a\u0f51\u0f0d"],"Editor publish":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0d"],Muted:["\u0f66\u0f92\u0fb2\u0f0b\u0f58\u0f7a\u0f51\u0f0d"],"Video Settings":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"recent comments":["\u0f49\u0f7a\u0f0b\u0f58\u0f46\u0f53\u0f0d"],"Latest Comments":["\u0f58\u0f46\u0f53\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f64\u0f7c\u0f66\u0f0d"],"Display Excerpt":["\u0f42\u0f53\u0f51\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f0d"],"Display Date":["\u0f5f\u0fb3\u0f0b\u0f5a\u0f7a\u0f66\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f0d"],"Display Avatar":["\u0f51\u0f56\u0f74\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f0d"],"Latest Comments Settings":["\u0f58\u0f46\u0f53\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Number of Comments":["\u0f51\u0f54\u0fb1\u0f51\u0f0b\u0f58\u0f46\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f41\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0d"],"Background Opacity":["\u0f62\u0f92\u0fb1\u0f56\u0f0b\u0f63\u0f97\u0f7c\u0f44\u0f66\u0f0b\u0f53\u0f44\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f58\u0f72\u0f53\u0f0b\u0f5a\u0f51\u0f0d"],Auto:["\u0f62\u0f44\u0f0b\u0f60\u0f42\u0f74\u0f63\u0f0d"],Preload:["\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Audio Settings":["\u0f66\u0f92\u0fb2\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Display a monthly archive of your posts.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f60\u0f41\u0f7c\u0f62\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f0d"],"Display as Dropdown":["\u0f58\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f63\u0f9f\u0f62\u0f0b\u0f60\u0f46\u0f62\u0f0d"],"Show Post Counts":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f41\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f60\u0f46\u0f62\u0f0d"],"Archives Settings":["\u0f61\u0f72\u0f42\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u0f62\u0f58\u0f0b\u0f60\u0f51\u0f7a\u0f42\u0f66\u0f0d"],"No comments to show.":["\u0f51\u0f54\u0fb1\u0f51\u0f0b\u0f58\u0f46\u0f53\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0b\u0f54\u0f0b\u0f58\u0f7a\u0f51\u0f0d"],"%1$s on %2$s":["%1$s \u0f63\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f66 «%2$s» \u0f66\u0f9f\u0f7a\u0f44\u0f0b\u0f51\u0f74\u0f0d"],"Select Post":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Select Week":["\u0f42\u0f5f\u0f60\u0f0b\u0f60\u0f41\u0f7c\u0f62\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Select Day":["\u0f49\u0f72\u0f53\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Select Month":["\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Select Year":["\u0f63\u0f7c\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],Archives:["\u0f61\u0f72\u0f42\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0d"],"Very dark gray":["\u0f42\u0f7c\u0f0b\u0f50\u0f63\u0f0b\u0f58\u0f51\u0f7c\u0f42"],"Cyan bluish gray":["\u0f66\u0f94\u0f7c\u0f0b\u0f63\u0f97\u0f44\u0f0b\u0f50\u0f63\u0f0b\u0f58\u0f51\u0f7c\u0f42"],"Very light gray":["\u0f64\u0f72\u0f53\u0f0b\u0f4f\u0f74\u0f0b\u0f66\u0f90\u0fb1\u0f0b\u0f56\u0f7c\u0f0d"],"Vivid cyan blue":["\u0f66\u0f94\u0f7c\u0f0b\u0f63\u0f97\u0f44\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f54\u0f7c\u0f0d"],"Pale cyan blue":["\u0f66\u0f94\u0f7c\u0f0b\u0f63\u0f97\u0f44\u0f0b\u0f66\u0f90\u0fb1\u0f0b\u0f58\u0f51\u0f44\u0f66\u0f0d"],"Vivid green cyan":["\u0f66\u0f94\u0f7c\u0f0b\u0f63\u0f97\u0f44\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f54\u0f7c\u0f0d"],"Light green cyan":["\u0f66\u0f94\u0f7c\u0f0b\u0f63\u0f97\u0f44\u0f0b\u0f60\u0f7c\u0f51\u0f0b\u0f45\u0f53\u0f0d"],"Luminous vivid amber":["\u0f66\u0fa4\u0f7c\u0f66\u0f0b\u0f64\u0f7a\u0f63\u0f0b\u0f56\u0f40\u0fb2\u0f0b\u0f58\u0f51\u0f44\u0f66\u0f0b\u0f45\u0f53\u0f0d"],"Luminous vivid orange":["\u0f63\u0f72\u0f0b\u0f58\u0f51\u0f7c\u0f42\u0f0b\u0f56\u0f40\u0fb2\u0f0b\u0f58\u0f51\u0f44\u0f66\u0f0b\u0f45\u0f53\u0f0d"],"Vivid red":["\u0f51\u0f58\u0f62\u0f0b\u0f42\u0f66\u0f63\u0f0d"],"Pale pink":["\u0f5f\u0f72\u0f44\u0f0b\u0f66\u0f90\u0fb1\u0f0d"],"Inline image":["\u0f53\u0f44\u0f0b\u0f41\u0f74\u0f63\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0d"],"Available block types":["\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0f72\u0f42\u0f66\u0f0d"],"Transform To:":["\u0f51\u0f56\u0fb1\u0f72\u0f56\u0f66\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0b\u0f56:"],"Remove Block":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0d"],"Open publish panel":["\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f54\u0f44\u0f0b\u0f63\u0f7a\u0f56\u0f0b\u0f41\u0f0b\u0f55\u0fb1\u0f7a\u0f0d"],Dots:["\u0f5a\u0f7a\u0f42"],"Wide Line":["\u0f50\u0f72\u0f42\u0f0b\u0f62\u0f72\u0f44\u0f0b\u0f0d"],Large:["\u0f46\u0f7a\u0f0b\u0f56\u0f0d"],"Show download button":["\u0f55\u0f56\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f45\u0f74\u0f66\u0f0b\u0f44\u0f7c\u0f58\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"Download button settings":["\u0f55\u0f56\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f45\u0f74\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Link To":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f61\u0f74\u0f63\u0f0d"],"Text link settings":["\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],pdf:["pdf"],document:["\u0f61\u0f72\u0f42\u0f0b\u0f5a\u0f42\u0f66\u0f0d"],"Copy URL":["URL \u0f58\u0f41\u0f7c\u0f0b\u0f55\u0f56\u0f0d"],"Write file name\u2026":["\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f58\u0f72\u0f44\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],"Edit file":["\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],File:["\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0d"],"A single column within a columns block.":["\u0f66\u0f9f\u0f62\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f66\u0f9f\u0f62\u0f0b\u0f46\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f0d"],Column:["\u0f66\u0f9f\u0f62\u0f0d"],Outline:["\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f41\u0f7c\u0f42"],Loop:["\u0f62\u0f7a\u0f66\u0f0b\u0f60\u0f41\u0f7c\u0f62\u0f0d"],Autoplay:["\u0f62\u0f44\u0f0b\u0f60\u0f42\u0f74\u0f63\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f42\u0f4f\u0f7c\u0f44\u0f0b\u0f0d"],"Playback Controls":["\u0f42\u0f4f\u0f7c\u0f44\u0f0b\u0f46\u0f66\u0f0b\u0f66\u0f9f\u0f44\u0f66\u0f0b\u0f60\u0f5b\u0f72\u0f53\u0f0d"],"Close dialog":["\u0f42\u0fb3\u0f7a\u0f44\u0f0b\u0f66\u0f92\u0fb2\u0f7c\u0f58\u0f0b\u0f41\u0f0b\u0f62\u0f92\u0fb1\u0f42"],"Sorry, this file type is not permitted for security reasons.":["\u0f51\u0f42\u0f7c\u0f44\u0f66\u0f0b\u0f51\u0f42\u0f0b\u0f5e\u0f74\u0f0d \u0f56\u0f51\u0f7a\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f62\u0f90\u0fb1\u0f7a\u0f53\u0f0b\u0f54\u0f66\u0f0d \u0f61\u0f72\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f62\u0f72\u0f42\u0f66\u0f0b\u0f42\u0fb2\u0f66\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f63\u0f0b\u0f62\u0f92\u0fb1\u0f56\u0f0b\u0f66\u0f90\u0fb1\u0f7c\u0f62\u0f0b\u0f58\u0f7a\u0f51\u0f0d"],"Disable tips":["\u0f66\u0fa3\u0f7a\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0b\u0f58\u0f72\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0d"],"Got it":["\u0f64\u0f7a\u0f66\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d"],"See next tip":["\u0f66\u0fa3\u0f7a\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f58\u0f62\u0f0b\u0f56\u0f63\u0f9f\u0f0d"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u0f42\u0fb2\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5a\u0f62\u0f0b\u0f51\u0f74\u0f66\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f56\u0f62\u0fa9\u0f58\u0f66\u0f0b\u0f46\u0f7c\u0f66\u0f0b\u0f60\u0f56\u0f74\u0f63\u0f0b\u0f66\u0fa4\u0fb2\u0f7c\u0f51\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f4f\u0f7a\u0f0b\u0f5e\u0f72\u0f56\u0f0b\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f46\u0f74\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f0d \u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f54\u0f66\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f63\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f58\u0f46\u0f53\u0f0b\u0f66\u0fa4\u0fb2\u0f7c\u0f51\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0f7a\u0f51\u0f0d"],"Are you ready to submit for review?":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f5e\u0f72\u0f56\u0f0b\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f60\u0f56\u0f74\u0f63\u0f0b\u0f66\u0fa4\u0fb2\u0f7c\u0f51\u0f0b\u0f42\u0fb2\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f51\u0f58\u0f0d"],"Replace image":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0fa4\u0f7c\u0f62\u0f0d"],"Remove image":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0d"],"Error while uploading file %s to the media library.":["\u0f61\u0f72\u0f42\u0f0b\u0f46 %s \u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f51\u0f74\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f53\u0f7c\u0f62\u0f0b\u0f60\u0f41\u0fb2\u0f74\u0f63\u0f0b\u0f56\u0fb1\u0f74\u0f44\u0f0b\u0f56\u0f0d"],"This file exceeds the maximum upload size for this site.":["\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f60\u0f51\u0f72\u0f60\u0f72\u0f0b\u0f46\u0f7a\u0f66\u0f0b\u0f46\u0f7a\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f46\u0f7a\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f63\u0f66\u0f0b\u0f56\u0f62\u0f92\u0f63\u0f0b\u0f60\u0f51\u0f74\u0f42"],"View the autosave":["\u0f62\u0f44\u0f0b\u0f60\u0f42\u0f74\u0f63\u0f0b\u0f49\u0f62\u0f0b\u0f5a\u0f42\u0f66\u0f0b\u0f63\u0f0b\u0f56\u0f63\u0f9f\u0f0d"],"There is an autosave of this post that is more recent than the version below.":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f60\u0f51\u0f72\u0f60\u0f72\u0f0b\u0f62\u0f44\u0f0b\u0f60\u0f42\u0f74\u0f63\u0f0b\u0f49\u0f62\u0f0b\u0f5a\u0f42\u0f66\u0f0b\u0f53\u0f72\u0f0b\u0f42\u0f64\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f50\u0f7c\u0f53\u0f0b\u0f62\u0f72\u0f58\u0f0b\u0f63\u0f66\u0f0b\u0f40\u0fb1\u0f44\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f0b\u0f61\u0f72\u0f53\u0f0d"],Autosaving:["\u0f62\u0f44\u0f0b\u0f60\u0f42\u0f74\u0f63\u0f0b\u0f49\u0f62\u0f0b\u0f5a\u0f42\u0f66\u0f0d"],"Enter URL here\u2026":["\u0f60\u0f51\u0f72\u0f62\u0f0b URL \u0f56\u0fb3\u0f74\u0f42\u0f66\u2026"],"Pin to toolbar":["\u0f63\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f5a\u0f44\u0f0b\u0f63\u0f0b\u0f42\u0f4f\u0f53\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0d"],"Unpin from toolbar":["\u0f63\u0f42\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f5a\u0f44\u0f0b\u0f53\u0f66\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f54\u0f0d"],"Insert a table \u2014 perfect for sharing charts and data.":["\u0f62\u0f7a\u0f60\u0f74\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42 \u2014 \u0f62\u0f7a\u0f60\u0f74\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f5e\u0f72\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f58\u0f49\u0f58\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f62\u0f0b\u0f64\u0f72\u0f53\u0f0b\u0f4f\u0f74\u0f0b\u0f60\u0f5a\u0f58\u0f0d"],"Fixed width table cells":["\u0f5e\u0f7a\u0f44\u0f0b\u0f5a\u0f51\u0f0b\u0f42\u0f4f\u0f53\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0f7a\u0f60\u0f74\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0b\u0f58\u0f72\u0f42"],"Table Settings":["\u0f62\u0f7a\u0f60\u0f74\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Add text that respects your spacing and tabs, and also allows styling.":["\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f44\u0f0b\u0f42\u0f51\u0f58\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f56\u0f62\u0fa9\u0f72\u0f0b\u0f60\u0f47\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f56\u0fb3\u0f74\u0f42\u0f66\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f0b\u0f58\u0f0b\u0f5f\u0f51\u0f0d \u0f56\u0f5f\u0f7c\u0f0b\u0f63\u0f9f\u0f0b\u0f45\u0f53\u0f0b\u0f51\u0f74\u0f60\u0f44\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f0b\u0f61\u0f72\u0f53\u0f0d"],"Display a list of your most recent posts.":["\u0f49\u0f7a\u0f0b\u0f46\u0f62\u0f0b\u0f66\u0fa4\u0f7a\u0f63\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f0d"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f42\u0f5e\u0f53\u0f0b\u0f54 (\u0f51\u0f54\u0f7a\u0f62\u0f0b\u0f53\u0f0d Twitter, Instagram \u0f61\u0f44\u0f0b\u0f53 YouTube \u0f66\u0f7c\u0f42\u0f66\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0f74) \u0f63\u0f66\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f63\u0f7a\u0f53\u0f0b\u0f54\u0f0d"],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u0f66\u0f9f\u0f62\u0f0b\u0f51\u0f74\u0f0b\u0f58\u0f60\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f63\u0f0b\u0f58\u0f41\u0f7c\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f44\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0d"],"Error loading block: %s":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f51\u0f74\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f53\u0f7c\u0f62\u0f0b\u0f60\u0f41\u0fb2\u0f74\u0f63: %s"],"Unknown error":["\u0f58\u0f0b\u0f64\u0f7a\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f53\u0f7c\u0f62\u0f0b\u0f60\u0f41\u0fb2\u0f74\u0f63\u0f0d"],"Embed Handler":["\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f42\u0f45\u0f7c\u0f51\u0f0b\u0f56\u0fb1\u0f0b\u0f62\u0f72\u0f58\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"term\x04Remove %s":["%s \u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0d"],"Copy the permalink":["\u0f42\u0f4f\u0f53\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f58\u0f41\u0f7c\u0f0b\u0f55\u0f56\u0f0d"],"Permalink copied":["\u0f42\u0f4f\u0f53\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f58\u0f41\u0f7c\u0f0b\u0f55\u0f56\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Height in pixels":["\u0f58\u0f50\u0f7c\u0f0b\u0f5a\u0f51\u0f0b\u0f54\u0f72\u0f42\u0f0b\u0f5f\u0f7a\u0f63\u0f0d"],"Spacer Settings":["\u0f56\u0f62\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],Spacer:["\u0f56\u0f62\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0d"],"Toggle to show a large initial letter.":["\u0f42\u0f66\u0f63\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f50\u0f7c\u0f42\u0f0b\u0f58\u0f0b\u0f46\u0f7a\u0f0b\u0f56\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f62\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0d"],"Showing large initial letter.":["\u0f42\u0f66\u0f63\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f50\u0f7c\u0f42\u0f0b\u0f58\u0f0b\u0f46\u0f7a\u0f0b\u0f56\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f0d"],"Name:":["\u0f58\u0f72\u0f44:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s/%3$s)"],"Remove item":["\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0d"],"Color code: %s":["\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f5a\u0f56\u0f0b\u0f68\u0f44: %s"],"Skip to the selected block":["\u0f42\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f63\u0f66\u0f0b\u0f58\u0f46\u0f7c\u0f44\u0f0b\u0f0d"],"Publish\u2026":["\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u2026"],"Schedule\u2026":["\u0f51\u0f74\u0f66\u0f0b\u0f56\u0f40\u0f42\u2026"],"Edit post permalink":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f42\u0f4f\u0f53\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Show Block Settings":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0b\u0f60\u0f46\u0f62\u0f0d"],"Hide Block Settings":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0b\u0f42\u0f56\u0f0d"],"Block settings closed":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0b\u0f41\u0f0b\u0f56\u0f45\u0f51\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Close plugin":["\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f66\u0fa3\u0f7a\u0f60\u0f72\u0f0b\u0f41\u0f0b\u0f62\u0f92\u0fb1\u0f42"],"Link settings":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],Unlink:["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f51\u0f7c\u0f62\u0f0d"],"Page break":["\u0f64\u0f7c\u0f42\u0f0b\u0f44\u0f7c\u0f66\u0f0b\u0f51\u0f56\u0fb1\u0f7a\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0d"],pagination:["\u0f64\u0f7c\u0f42\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f56\u0f40\u0f7c\u0f51\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"next page":["\u0f64\u0f7c\u0f42\u0f0b\u0f44\u0f7c\u0f66\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f58\u0f0d"],"Image Size":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f46\u0f7a\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f0d"],Height:["\u0f58\u0f50\u0f7c\u0f0b\u0f5a\u0f51\u0f0d"],Width:["\u0f5e\u0f7a\u0f44\u0f0b\u0f5a\u0f51\u0f0d"],"Image Dimensions":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f60\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f55\u0fb1\u0f7c\u0f51\u0f0d"],"Thumbnails are not cropped.":["\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f51\u0fb2\u0f66\u0f0b\u0f42\u0f4f\u0f74\u0f56\u0f0b\u0f58\u0f72\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0d"],"Thumbnails are cropped to align.":["\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f63\u0f0b\u0f51\u0fb2\u0f66\u0f0b\u0f42\u0f4f\u0f74\u0f56\u0f0b\u0f58\u0f72\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0d"],"Media Library":["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f58\u0f5b\u0f7c\u0f51\u0f0d"],Advanced:["\u0f58\u0f50\u0f7c\u0f0b\u0f62\u0f72\u0f58\u0f0d"],"Add item":["\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Reset the template":["\u0f51\u0f54\u0f7a\u0f0b\u0f54\u0f44\u0f0b\u0f66\u0f7c\u0f62\u0f0b\u0f66\u0fb3\u0f7c\u0f42"],"Keep it as is":["\u0f58\u0f0b\u0f42\u0f5e\u0f72\u0f60\u0f72\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f54\u0f0b\u0f66\u0fb2\u0f74\u0f44\u0f0b\u0f60\u0f5b\u0f72\u0f53\u0f0d"],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f51\u0f44\u0f0b\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f63\u0f0b\u0f66\u0fa4\u0fb2\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f72\u0f42\u0f66\u0f0b\u0f42\u0fb2\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f54\u0f44\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f5f\u0fb3\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f42\u0fb2\u0f72\u0f42"],"Resetting the template may result in loss of content, do you want to continue?":["\u0f51\u0f54\u0f7a\u0f0b\u0f54\u0f44\u0f0b\u0f66\u0f7c\u0f62\u0f0b\u0f66\u0fb3\u0f7c\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5a\u0f7a\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f7c\u0f62\u0f0b\u0f56\u0f62\u0fb3\u0f42\u0f0b\u0f60\u0f56\u0fb1\u0f74\u0f44\u0f0b\u0f66\u0fb2\u0f72\u0f51\u0f0d \u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f58\u0f74\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f60\u0f51\u0f7c\u0f51\u0f0b\u0f51\u0f58\u0f0d"],"Document Statistics":["\u0f61\u0f72\u0f42\u0f0b\u0f5a\u0f42\u0f66\u0f0b\u0f56\u0f66\u0fa1\u0f7c\u0f58\u0f66\u0f0b\u0f62\u0fa9\u0f72\u0f66\u0f0d"],"is now scheduled. It will go live on":["\u0f51\u0f0b\u0f63\u0f9f\u0f0b\u0f51\u0f74\u0f66\u0f0b\u0f56\u0f40\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d \u0f51\u0f7a\u0f0b\u0f42\u0f0b\u0f58\u0f74\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f44\u0f7a\u0f66\u0f0d"],Scheduled:["\u0f51\u0f74\u0f66\u0f0b\u0f56\u0f40\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Scheduling\u2026":["\u0f56\u0f40\u0f7c\u0f51\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f66\u0f92\u0f44\u2026"],"Code editor selected":["\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f42\u0f51\u0f58\u0f0d"],"Visual editor selected":["\u0f50\u0f51\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],Plugins:["\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f66\u0fa3\u0f7a\u0f0d"],"Custom Size":["\u0f62\u0f44\u0f0b\u0f56\u0f5f\u0f7c\u0f66\u0f0b\u0f46\u0f7a\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f0d"],"Layout Elements":["\u0f42\u0fb2\u0f74\u0f56\u0f0b\u0f46\u0f60\u0f72\u0f0b\u0f56\u0f40\u0f7c\u0f51\u0f0b\u0f54\u0f0d"],"term\x04%s removed":["%s \u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"term\x04%s added":["%s \u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"imperative verb\x04Preview":["\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63\u0f9f\u0f0d"],"Block deleted.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f66\u0f74\u0f56\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Block updated.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Block created.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0f90\u0fb2\u0f74\u0f53\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Trashing failed":["\u0f66\u0f99\u0f72\u0f42\u0f66\u0f0b\u0f66\u0fa3\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f42\u0f61\u0f74\u0f42\u0f0b\u0f58\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Updating failed.":["\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f56\u0fb1\u0f0b\u0f58\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Scheduling failed.":["\u0f56\u0f40\u0f7c\u0f51\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f0b\u0f58\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Publishing failed.":["\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"View Post":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f63\u0f0b\u0f63\u0f9f\u0f0d"],"You have unsaved changes. If you proceed, they will be lost.":["\u0f49\u0f62\u0f0b\u0f5a\u0f42\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f58\u0f7a\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f63\u0fb7\u0f42\u0f66\u0f0b\u0f60\u0f51\u0f74\u0f42\u0f0b\u0f54\u0f66\u0f0b\u0f42\u0f63\u0f0b\u0f66\u0fb2\u0f72\u0f51\u0f0b\u0f58\u0f74\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5a\u0f7a\u0f0b\u0f51\u0f7a\u0f0b\u0f51\u0f42\u0f0b\u0f56\u0f7c\u0f62\u0f0b\u0f66\u0fb2\u0f72\u0f51\u0f0d"],"Document Outline":["\u0f61\u0f72\u0f42\u0f0b\u0f5a\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f41\u0f7c\u0f42"],Paragraphs:["\u0f51\u0f74\u0f58\u0f0b\u0f5a\u0f53\u0f0d"],Headings:["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f0d"],Words:["\u0f61\u0f72\u0f42\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0d"],"Content structure":["\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f42\u0f5e\u0f72\u0f0b\u0f66\u0f92\u0fb2\u0f7c\u0f58\u0f0d"],Public:["\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f56\u0f66\u0f92\u0fb2\u0f42\u0f66\u0f0d"],"Protected with a password you choose. Only those with the password can view this post.":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f42\u0f51\u0f58\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f42\u0f66\u0f44\u0f0b\u0f68\u0f44\u0f0b\u0f42\u0f72\u0f66\u0f0b\u0f66\u0fb2\u0f74\u0f44\u0f0b\u0f66\u0f90\u0fb1\u0f7c\u0f56\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d \u0f42\u0f66\u0f44\u0f0b\u0f68\u0f44\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f58\u0f72\u0f0b\u0f41\u0f7c\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f60\u0f51\u0f72\u0f62\u0f0b\u0f56\u0f63\u0f9f\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Password Protected":["\u0f42\u0f66\u0f44\u0f0b\u0f68\u0f44\u0f0b\u0f42\u0f72\u0f66\u0f0b\u0f66\u0fb2\u0f74\u0f44\u0f0b\u0f66\u0f90\u0fb1\u0f7c\u0f56\u0f0d"],"Only visible to site admins and editors.":["\u0f51\u0fb2\u0f0b\u0f5a\u0f72\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0f7c\u0f0b\u0f51\u0f58\u0f0b\u0f54\u0f0b\u0f51\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f54\u0f0b\u0f41\u0f7c\u0f0b\u0f53\u0f66\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f50\u0f74\u0f56\u0f0d"],Private:["\u0f42\u0f66\u0f44\u0f0b\u0f56\u0f0d"],"Visible to everyone.":["\u0f58\u0f72\u0f0b\u0f66\u0f74\u0f66\u0f0b\u0f40\u0fb1\u0f44\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Post Visibility":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f56\u0f66\u0f92\u0fb2\u0f42\u0f66\u0f0b\u0f5a\u0f51\u0f0d"],"Would you like to privately publish this post now?":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f51\u0f0b\u0f63\u0f9f\u0f0b\u0f63\u0f90\u0f7c\u0f42\u0f0b\u0f4f\u0f74\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f60\u0f51\u0f7c\u0f51\u0f0b\u0f51\u0f58\u0f0d"],"Use a secure password":["\u0f49\u0f7a\u0f53\u0f0b\u0f58\u0f7a\u0f51\u0f0b\u0f42\u0f66\u0f44\u0f0b\u0f68\u0f44\u0f0b\u0f56\u0f40\u0f7c\u0f63\u0f0b\u0f56\u0f0d"],"Create password":["\u0f42\u0f66\u0f44\u0f0b\u0f68\u0f44\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0f90\u0fb2\u0f74\u0f53\u0f0d"],"Move to Trash":["\u0f66\u0f99\u0f72\u0f42\u0f66\u0f0b\u0f66\u0fa3\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0d"],"Parent Term":["\u0f55\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f51\u0f0b\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0d"],"Parent Category":["\u0f55\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f51\u0f0b\u0f51\u0f40\u0f62\u0f0b\u0f46\u0f42"],"Add new term":["\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Add new category":["\u0f51\u0f40\u0f62\u0f0b\u0f46\u0f42\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],Term:["\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0d"],Tag:["\u0f60\u0f42\u0fb2\u0f7a\u0f63\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f0d"],"Add New Term":["\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Add New Tag":["\u0f60\u0f42\u0fb2\u0f7a\u0f63\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Switch to Draft":["\u0f58\u0f0b\u0f5f\u0f72\u0f53\u0f0b\u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0d"],"Are you sure you want to unpublish this post?":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f58\u0f72\u0f53\u0f0b\u0f53\u0f58\u0f0d"],Immediately:["\u0f60\u0f55\u0fb2\u0f63\u0f0b\u0f51\u0f74\u0f0d"],"Save Draft":["\u0f58\u0f0b\u0f5f\u0f72\u0f53\u0f0b\u0f51\u0f74\u0f0b\u0f49\u0f62\u0f0d"],Saving:["\u0f49\u0f62\u0f0b\u0f5a\u0f42\u0f66\u0f0d"],"Publish:":["\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66:"],"Visibility:":["\u0f56\u0f66\u0f92\u0fb2\u0f42\u0f66\u0f0b\u0f5a\u0f51:"],"Are you ready to publish?":["\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f42\u0fb2\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f51\u0f58\u0f0d"],"Copy Link":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f58\u0f41\u0f7c\u0f0b\u0f55\u0f56\u0f0d"],"What\u2019s next?":["\u0f42\u0f7c\u0f58\u0f0b\u0f54\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f58\u0f0b\u0f53\u0f72\u0f0b\u0f42\u0f44\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f53\u0f58\u0f0d"],"is now live.":["\u0f66\u0fa4\u0f7a\u0f63\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],Published:["\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],Schedule:["\u0f51\u0f74\u0f66\u0f0b\u0f56\u0f40\u0f42"],Update:["\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0d"],"Submit for Review":["\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f66\u0fa4\u0fb2\u0f7c\u0f51\u0f0d"],"Updating\u2026":["\u0f42\u0f66\u0f62\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f66\u0f92\u0f44\u2026"],"Publishing\u2026":["\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0b\u0f66\u0f92\u0f44\u2026"],"Allow Pingbacks & Trackbacks":["Pingbacks \u0f51\u0f44 Trackbacks \u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f0d"],"Permalink:":["\u0f42\u0f4f\u0f53\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0b\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51:"],"Pending Review":["\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f63\u0f0b\u0f66\u0f92\u0f74\u0f42"],"%d Revision":["\u0f56\u0f5f\u0f7c\u0f0b\u0f56\u0f45\u0f7c\u0f66\u0f0b\u0f54\u0f62\u0f0b\u0f42\u0f5e\u0f72\u0f0d %d"],"Suggestion:":["\u0f42\u0fb2\u0f7c\u0f66\u0f0b\u0f60\u0f51\u0f7c\u0f53:"],"Post Format":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0f5e\u0f42"],Chat:["\u0f42\u0fb3\u0f7a\u0f44\u0f0b\u0f58\u0f7c\u0f63\u0f0d"],Status:["\u0f42\u0f53\u0f66\u0f0b\u0f56\u0f56\u0f66\u0f0d"],Standard:["\u0f5a\u0f51\u0f0b\u0f63\u0fa1\u0f53\u0f0d"],Aside:["\u0f46\u0f72\u0f42\u0f0b\u0f63\u0f56\u0f0d"],"Set Featured Image":["\u0f41\u0fb1\u0f51\u0f0b\u0f63\u0fa1\u0f53\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Learn more about manual excerpts":["\u0f63\u0f42\u0f0b\u0f50\u0f56\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f66\u0f0b\u0f42\u0f53\u0f51\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f56\u0fb3\u0f74\u0f42\u0f66\u0f0b\u0f54\u0f62\u0f0b\u0f5e\u0f72\u0f56\u0f0b\u0f4f\u0f74\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f66\u0f0b\u0f63\u0f7c\u0f53\u0f0d"],"Write an excerpt (optional)":["\u0f42\u0f53\u0f51\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u0f0d (\u0f62\u0f44\u0f0b\u0f58\u0f7c\u0f66)"],"Allow Comments":["\u0f51\u0f54\u0fb1\u0f51\u0f0b\u0f58\u0f46\u0f53\u0f0b\u0f66\u0fa4\u0f7a\u0f63\u0f0b\u0f46\u0f7c\u0f42"],"Template:":["\u0f51\u0f54\u0f7a\u0f0b\u0f54\u0f44:"],"no parent":["\u0f55\u0f0b\u0f62\u0f92\u0fb1\u0f74\u0f51\u0f0b\u0f58\u0f7a\u0f51\u0f0d"],"no title":["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f58\u0f7a\u0f51\u0f0d"],Order:["\u0f66\u0f9f\u0f62\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"No blocks found.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f62\u0f99\u0f7a\u0f51\u0f0b\u0f58\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d"],"%d result found.":["\u0f58\u0f50\u0f60\u0f0b\u0f60\u0f56\u0fb2\u0f66 %d \u0f62\u0f99\u0f7a\u0f51\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d"],Saved:["\u0f49\u0f62\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],Embeds:["\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],Blocks:["\u0f62\u0fa1\u0f7c\u0f42"],"Search for a block":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f56\u0f64\u0f7a\u0f62\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0d"],"Add block":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Add %s":["%s \u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Copy Error":["\u0f58\u0f41\u0f7c\u0f0b\u0f55\u0f56\u0f0b\u0f53\u0f7c\u0f62\u0f0b\u0f60\u0f41\u0fb2\u0f74\u0f63\u0f0d"],"Copy Post Text":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f58\u0f41\u0f7c\u0f0b\u0f55\u0f56\u0f0d"],"Attempt Recovery":["\u0f55\u0fb1\u0f72\u0f62\u0f0b\u0f66\u0f7c\u0f53\u0f0b\u0f63\u0f0b\u0f60\u0f56\u0f51\u0f0d"],"The editor has encountered an unexpected error.":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f63\u0f0b\u0f42\u0fb3\u0f7c\u0f0b\u0f56\u0f74\u0f62\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f53\u0f7c\u0f62\u0f0b\u0f60\u0f41\u0fb2\u0f74\u0f63\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f63\u0f0b\u0f60\u0f55\u0fb2\u0f51\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d"],Undo:["\u0f55\u0fb1\u0f72\u0f62\u0f0b\u0f60\u0f50\u0f7a\u0f53\u0f0d"],Redo:["\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f56\u0f5f\u0f7c\u0f0d"],"(Multiple H1 headings are not recommended)":["(\u0f41\u0f0b\u0f56\u0fb1\u0f44 H1 \u0f51\u0f74\u0f0b\u0f58\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f0b\u0f58\u0f72\u0f0b\u0f63\u0f7a\u0f42\u0f66\u0f0d)"],"(Your theme may already use a H1 for the post title)":["(\u0f41\u0fb1\u0f7a\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f51\u0f54\u0f7a\u0f0b\u0f66\u0f92\u0fb2\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f66\u0f0b\u0f66\u0f94\u0f0b\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f63 H1 \u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f66\u0fb2\u0f72\u0f51\u0f0d)"],"(Incorrect heading level)":["(\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f5a\u0f51\u0f0b\u0f53\u0f7c\u0f62\u0f0b\u0f56\u0f0d)"],"(Empty heading)":["(\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f66\u0f9f\u0f7c\u0f44\u0f0b\u0f56\u0f0d)"],"Block Styles":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f63\u0f9f\u0f0d"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":["\u0f66\u0fa4\u0fb1\u0f72\u0f62\u0f0b\u0f56\u0f4f\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0d"],"More options":["\u0f51\u0f7a\u0f0b\u0f63\u0f66\u0f0b\u0f58\u0f44\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f42\u0f51\u0f58\u0f0b\u0f5a\u0f53\u0f0d"],"Edit visually":["\u0f50\u0f51\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f42\u0f72\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],Duplicate:["\u0f60\u0f51\u0fb2\u0f0b\u0f56\u0f5f\u0f7c\u0f0d"],"Blocks cannot be moved down as they are already at the bottom":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f51\u0f7a\u0f0b\u0f58\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0d \u0f51\u0f7a\u0f0b\u0f53\u0f72\u0f0b\u0f5e\u0f56\u0f66\u0f0b\u0f53\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f54\u0f66\u0f0b\u0f62\u0f7a\u0f51\u0f0d"],"Blocks cannot be moved up as they are already at the top":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f51\u0f7a\u0f0b\u0f61\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0d \u0f51\u0f7a\u0f0b\u0f53\u0f72\u0f0b\u0f62\u0fa9\u0f7a\u0f0b\u0f53\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f54\u0f66\u0f0b\u0f62\u0f7a\u0f51\u0f0d"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c %1$s \u0f51\u0f7a\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f62\u0fa9\u0f7a\u0f0b\u0f62\u0f74\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f54\u0f66 %2$s \u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c %1$s \u0f51\u0f7a\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f58\u0f47\u0f74\u0f42\u0f0b\u0f53\u0f0b\u0f61\u0f7c\u0f51\u0f0b\u0f54\u0f66 %2$s \u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Block %s is the only block, and cannot be moved":["\u0f62\u0fa1\u0f7c\u0f42 %s \u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f74\u0f0b\u0f51\u0f7a\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f54\u0f66\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f56\u0f66\u0fa3\u0f74\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f50\u0f74\u0f56\u0f0d"],"Edit as HTML":["HTML \u0f47\u0f72\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Convert to Blocks":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f63\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0d"],"Block: %s":["\u0f62\u0fa1\u0f7c\u0f42: %s"],"This block has encountered an error and cannot be previewed.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f53\u0f7c\u0f62\u0f0b\u0f60\u0f41\u0fb2\u0f74\u0f63\u0f0b\u0f5e\u0f72\u0f42\u0f0b\u0f51\u0f44\u0f0b\u0f60\u0f55\u0fb2\u0f51\u0f0b\u0f54\u0f66\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0fb1\u0f0b\u0f50\u0f56\u0f66\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"No block selected.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f42\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f42\u0f51\u0f58\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f51\u0f74\u0f42"],"Transform into:":["\u0f51\u0f56\u0fb1\u0f72\u0f56\u0f66\u0f0b\u0f62\u0fa3\u0f58\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0b\u0f53\u0f66:"],Remove:["\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0d"],"Find original":["\u0f42\u0f51\u0f7c\u0f51\u0f0b\u0f58\u0f0b\u0f60\u0f5a\u0f7c\u0f63\u0f0d"],"Copy All Content":["\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0b\u0f58\u0f41\u0f7c\u0f0b\u0f55\u0f56\u0f0d"],"Copied!":["\u0f58\u0f41\u0f7c\u0f0b\u0f55\u0f56\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Additional settings are now available in the Editor block settings sidebar":["\u0f51\u0f0b\u0f63\u0f9f\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0b\u0f60\u0f42\u0fb2\u0f58\u0f0b\u0f5a\u0f44\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f51\u0f74\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0b\u0f60\u0f55\u0f62\u0f0b\u0f58\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f56\u0f0b\u0f61\u0f72\u0f53\u0f0d"],Visibility:["\u0f56\u0f66\u0f92\u0fb2\u0f42\u0f66\u0f0b\u0f5a\u0f51\u0f0d"],"Status & Visibility":["\u0f42\u0f53\u0f66\u0f0b\u0f56\u0f56\u0f66\u0f0d & \u0f56\u0f66\u0f92\u0fb2\u0f42\u0f66\u0f0b\u0f5a\u0f51\u0f0d"],"Page Attributes":["\u0f64\u0f7c\u0f42\u0f0b\u0f44\u0f7c\u0f66\u0f0b\u0f42\u0f4f\u0f7c\u0f42\u0f66\u0f0b\u0f42\u0f64\u0f72\u0f66\u0f0d"],Block:["\u0f62\u0fa1\u0f7c\u0f42"],Document:["\u0f61\u0f72\u0f42\u0f0b\u0f5a\u0f42\u0f66\u0f0d"],"Featured Image":["\u0f41\u0fb1\u0f51\u0f0b\u0f63\u0fa1\u0f53\u0f0b\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0d"],"Close settings":["\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0b\u0f41\u0f0b\u0f62\u0f92\u0fb1\u0f42"],"Editor content":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0d"],Tools:["\u0f63\u0f42\u0f0b\u0f46\u0f0d"],Editor:["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0d"],"Code Editor":["\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0d"],"Visual Editor":["\u0f50\u0f51\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0d"],"Editor top bar":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f46\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f62\u0fa9\u0f7a\u0f60\u0f72\u0f0b\u0f5a\u0f44\u0f0b\u0f0d"],Settings:["\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],Reset:["\u0f66\u0f7c\u0f62\u0f0b\u0f66\u0fb3\u0f7c\u0f42"],"Dismiss this notice":["\u0f56\u0f62\u0fa1\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f58\u0f72\u0f0b\u0f60\u0f46\u0f62\u0f0d"],"Item removed.":["\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Item added.":["\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5f\u0f72\u0f53\u0f0d"],"Drop files to upload":["\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0b\u0f51\u0fb2\u0f74\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42"],PM:["\u0f55\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f7c\u0f0d"],AM:["\u0f66\u0f94\u0f0b\u0f51\u0fb2\u0f7c\u0f0d"],"An unknown error occurred.":["\u0f58\u0f0b\u0f64\u0f7a\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f53\u0f7c\u0f62\u0f0b\u0f60\u0f41\u0fb2\u0f74\u0f63\u0f0b\u0f56\u0fb1\u0f74\u0f44\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d"],"No results.":["\u0f58\u0f50\u0f60\u0f0b\u0f60\u0f56\u0fb2\u0f66\u0f0b\u0f58\u0f7a\u0f51\u0f0d"],"%d result found, use up and down arrow keys to navigate.":["\u0f58\u0f50\u0f60\u0f0b\u0f60\u0f56\u0fb2\u0f66 %d \u0f62\u0f99\u0f7a\u0f51\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d \u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f5e\u0f7c\u0f44\u0f0b\u0f41\u0fb2\u0f7c\u0f51\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f61\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f51\u0f44\u0f0b\u0f58\u0f62\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0fa4\u0fb1\u0f51\u0f0b\u0f53\u0f66\u0f0b\u0f55\u0fb1\u0f7c\u0f42\u0f66\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f46\u0f7c\u0f42"],"(no title)":["(\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f58\u0f7a\u0f51)"],URL:["URL"],Submit:["\u0f60\u0f56\u0f74\u0f63\u0f0b\u0f66\u0fa4\u0fb2\u0f7c\u0f51\u0f0d"],Close:["\u0f41\u0f0b\u0f62\u0f92\u0fb1\u0f42"],"Insert link":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f56\u0f62\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Edit link":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],Link:["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0d"],Strikethrough:["\u0f66\u0f74\u0f56\u0f0b\u0f50\u0f72\u0f42"],Italic:["\u0f42\u0f66\u0f7a\u0f42\u0f0b\u0f61\u0f72\u0f42"],Bold:["\u0f64\u0f0b\u0f46\u0f7a\u0f53\u0f0d"],"Remove link":["\u0f66\u0fa6\u0fb2\u0f7a\u0f63\u0f0b\u0f58\u0f50\u0f74\u0f51\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0d"],"Number of items":["\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f41\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0d"],All:["\u0f61\u0f7c\u0f44\u0f66\u0f0d"],Category:["\u0f51\u0f40\u0f62\u0f0b\u0f46\u0f42"],"Z \u2192 A":["Z \u0f53\u0f66 A"],"A \u2192 Z":["A \u0f53\u0f66 Z"],"Oldest to Newest":["\u0f62\u0f99\u0f72\u0f44\u0f0b\u0f64\u0f7c\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f64\u0f7c\u0f66\u0f0d"],"Newest to Oldest":["\u0f42\u0f66\u0f62\u0f0b\u0f64\u0f7c\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f62\u0f99\u0f72\u0f44\u0f0b\u0f64\u0f7c\u0f66\u0f0d"],"Order by":["\u0f66\u0f9f\u0f62\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],Select:["\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"Select or Upload Media":["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42"],Video:["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0d"],"Edit video":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Write\u2026":["\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],poetry:["\u0f66\u0f99\u0f53\u0f0b\u0f44\u0f42"],Verse:["\u0f66\u0f99\u0f53\u0f0b\u0f44\u0f42"],"New Column":["\u0f66\u0f9f\u0f62\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f54\u0f0d"],"Delete Column":["\u0f66\u0f9f\u0f62\u0f0b\u0f66\u0f74\u0f56\u0f0d"],"Add Column After":["\u0f66\u0f9f\u0f62\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Add Column Before":["\u0f66\u0f9f\u0f62\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f51\u0f74\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Delete Row":["\u0f55\u0fb2\u0f7a\u0f44\u0f0b\u0f66\u0f74\u0f56\u0f0d"],"Add Row After":["\u0f55\u0fb2\u0f7a\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0f97\u0f7a\u0f66\u0f0b\u0f66\u0f74\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Add Row Before":["\u0f55\u0fb2\u0f7a\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f51\u0f74\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Edit table":["\u0f62\u0f7a\u0f60\u0f74\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],Table:["\u0f62\u0f7a\u0f60\u0f74\u0f0b\u0f58\u0f72\u0f42"],"Write subheading\u2026":["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f55\u0f63\u0f0b\u0f56\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],"Write shortcode here\u2026":["\u0f60\u0f51\u0f72\u0f0b\u0f62\u0f74\u0f0b\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],Shortcode:["\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f50\u0f74\u0f44\u0f0b\u0f56\u0f0d"],divider:["\u0f58\u0f5a\u0f58\u0f66\u0f0b\u0f42\u0f45\u0f7c\u0f51\u0f0b\u0f50\u0f72\u0f42"],"horizontal-line":["\u0f46\u0f74\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0b\u0f50\u0f72\u0f42"],Separator:["\u0f58\u0f5a\u0f58\u0f66\u0f0b\u0f42\u0f45\u0f7c\u0f51\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0d"],Quote:["\u0f63\u0f74\u0f44\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0d"],"Write citation\u2026":["\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0b\u0f5a\u0f72\u0f42\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],"Write quote\u2026":["\u0f63\u0f74\u0f44\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0b\u0f54\u2026"],Pullquote:["\u0f63\u0f74\u0f44\u0f0b\u0f42\u0f63\u0f0b\u0f46\u0f7a\u0f53\u0f0b\u0f60\u0f51\u0fb2\u0f7a\u0f53\u0f0b\u0f54\u0f0d"],"Write preformatted text\u2026":["preformatted \u0f45\u0f53\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],Preformatted:["Preformatted"],text:["\u0f61\u0f72\u0f0b\u0f42\u0f7a"],Paragraph:["\u0f51\u0f74\u0f58\u0f0b\u0f5a\u0f53\u0f0d"],"Font Size":["\u0f61\u0f72\u0f42\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f46\u0f7a\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f0d"],"Drop Cap":["\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f0b\u0f58\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f72\u0f56\u0f0d"],"Text Settings":["\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Read more":["\u0f58\u0f44\u0f0b\u0f51\u0f74\u0f0b\u0f40\u0fb3\u0f7c\u0f42"],"Write list\u2026":["\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],"numbered list":["\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f68\u0f44\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0d"],"ordered list":["\u0f66\u0f9f\u0f62\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0d"],"bullet list":["\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0d"],"Indent list item":["\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0b\u0f66\u0f90\u0f74\u0f58\u0f0b\u0f54\u0f0d"],"Outdent list item":["\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f60\u0f72\u0f0b\u0f66\u0fa1\u0f7a\u0f0b\u0f5a\u0f53\u0f0b\u0f66\u0f90\u0fb1\u0f7a\u0f51\u0f0b\u0f54\u0f0d"],"Convert to ordered list":["\u0f66\u0f9f\u0f62\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f62\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0d"],"Convert to unordered list":["\u0f66\u0f9f\u0f62\u0f0b\u0f58\u0f7a\u0f51\u0f0b\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f62\u0f0b\u0f56\u0f62\u0f97\u0f7a\u0f0b\u0f66\u0f92\u0fb1\u0f74\u0f62\u0f0d"],List:["\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0d"],"recent posts":["\u0f49\u0f7a\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0d"],"No posts found.":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f99\u0f7a\u0f51\u0f0b\u0f58\u0f0b\u0f66\u0f7c\u0f44\u0f0b\u0f0d"],"Latest Posts":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f42\u0f66\u0f62\u0f0b\u0f64\u0f7c\u0f66\u0f0d"],"Display post date":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f5a\u0f7a\u0f66\u0f0b\u0f60\u0f46\u0f62\u0f0b\u0f56\u0f0d"],"Grid view":["\u0f51\u0fb2\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f62\u0f72\u0f66\u0f0d"],"List view":["\u0f42\u0f66\u0f63\u0f0b\u0f50\u0f7c\u0f0b\u0f58\u0f50\u0f7c\u0f44\u0f0b\u0f62\u0f72\u0f66\u0f0d"],photo:["\u0f60\u0f51\u0fb2\u0f0b\u0f54\u0f62\u0f0d"],"Image Settings":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],Image:["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0d"],Preview:["\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63\u0f9f\u0f0d"],embed:["\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Custom HTML":["\u0f62\u0f44\u0f0b\u0f56\u0f5f\u0f7c\u0f66 HTML"],subtitle:["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f55\u0f63\u0f0b\u0f56\u0f0d"],title:["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f0d"],Heading:["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f0d"],"Write heading\u2026":["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],"Heading %d":["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f0d %d"],Level:["\u0f44\u0f7c\u0f66\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f0d"],"Heading Settings":["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],photos:["\u0f60\u0f51\u0fb2\u0f0b\u0f54\u0f62\u0f0d"],images:["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0d"],"Remove Image":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f66\u0fa4\u0f7c\u0f0b\u0f60\u0f56\u0f74\u0f51\u0f0d"],None:["\u0f58\u0f7a\u0f51\u0f0d"],"Media File":["\u0f66\u0fa8\u0fb1\u0f53\u0f0b\u0f42\u0f5f\u0f74\u0f42\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0d"],"Attachment Page":["\u0f5e\u0f62\u0f0b\u0f56\u0fb1\u0f74\u0f44\u0f0b\u0f64\u0f7c\u0f42\u0f0b\u0f44\u0f7c\u0f66\u0f0d"],"Crop Images":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f51\u0fb2\u0f66\u0f0b\u0f42\u0f4f\u0f74\u0f56\u0f0d"],"Gallery Settings":["\u0f54\u0f62\u0f0b\u0f51\u0f7a\u0f56\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],Gallery:["\u0f54\u0f62\u0f0b\u0f51\u0f7a\u0f56\u0f0d"],Classic:["\u0f5a\u0f51\u0f0b\u0f63\u0fa1\u0f53\u0f0d"],video:["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0d"],audio:["\u0f66\u0f92\u0fb2\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0d"],music:["\u0f62\u0f7c\u0f63\u0f0b\u0f51\u0f56\u0fb1\u0f44\u0f66\u0f0d"],image:["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0d"],blog:["\u0f54\u0f7c\u0f51\u0f0b\u0f41\u0f74\u0f42"],post:["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42"],"Embedded content from %s":["%s \u0f63\u0f66\u0f0b\u0f60\u0f55\u0fb2\u0f7c\u0f66\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f53\u0f44\u0f0b\u0f51\u0f7c\u0f53\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42"],"Enter URL to embed here\u2026":["\u0f60\u0f51\u0f72\u0f62 URL \u0f56\u0fb3\u0f74\u0f42\u0f66\u0f0b\u0f53\u0f66\u0f0b\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["\u0f56\u0f59\u0f74\u0f51\u0f0b\u0f60\u0f47\u0f74\u0f42\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f56\u0f5e\u0f72\u0f53\u0f0b\u0f54\u2026"],"Write title\u2026":["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],"Fixed Background":["\u0f62\u0f92\u0fb1\u0f56\u0f0b\u0f63\u0f97\u0f7c\u0f44\u0f66\u0f0b\u0f42\u0f4f\u0f53\u0f0b\u0f60\u0f47\u0f42\u0f66\u0f0d"],"Edit image":["\u0f56\u0f62\u0f99\u0f53\u0f0b\u0f62\u0f72\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],Columns:["\u0f66\u0f9f\u0f62\u0f0d"],Experiments:[],Code:["\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f0d"],"Write code\u2026":["\u0f5a\u0f56\u0f0b\u0f68\u0f44\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],Categories:["\u0f51\u0f40\u0f62\u0f0b\u0f46\u0f42"],"Show Hierarchy":["\u0f62\u0fa9\u0f7a\u0f42\u0f0b\u0f62\u0f72\u0f58\u0f0b\u0f60\u0f56\u0fb2\u0f7a\u0f63\u0f0b\u0f56\u0f0b\u0f58\u0f44\u0f7c\u0f53\u0f0d"],"Show post counts":["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f42\u0fb1\u0f72\u0f0b\u0f41\u0f0b\u0f42\u0fb2\u0f44\u0f66\u0f0b\u0f60\u0f46\u0f62\u0f0d"],"Categories Settings":["\u0f51\u0f40\u0f62\u0f0b\u0f46\u0f42\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42\u0f0b\u0f60\u0f42\u0f7c\u0f51\u0f0d"],"Add text\u2026":["\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u2026"],Button:["\u0f58\u0f50\u0f7a\u0f56\u0f0b\u0f42\u0f45\u0f74\u0f66\u0f0d"],Apply:["\u0f56\u0f40\u0f7c\u0f63\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0d"],"Text Color":["\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f90\u0fb1\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f41\u0f0b\u0f51\u0f7c\u0f42"],"Background Color":["\u0f62\u0f92\u0fb1\u0f56\u0f0b\u0f63\u0f97\u0f7c\u0f44\u0f66\u0f0b\u0f41\u0f0b\u0f51\u0f7c\u0f42"],"Block has been deleted or is unavailable.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f66\u0f74\u0f56\u0f0b\u0f5f\u0f72\u0f53\u0f0b\u0f54\u0f60\u0f58\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f58\u0f72\u0f0b\u0f62\u0f74\u0f44\u0f0b\u0f56\u0f0d"],"Reusable Blocks":["\u0f61\u0f44\u0f0b\u0f56\u0f66\u0f90\u0fb1\u0f62\u0f0b\u0f66\u0fa4\u0fb1\u0f7c\u0f51\u0f0b\u0f46\u0f7c\u0f42\u0f0b\u0f54\u0f60\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42"],Cancel:["\u0f60\u0f51\u0f7c\u0f62\u0f0b\u0f56\u0f0d"],Edit:["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Edit audio":["\u0f66\u0f92\u0fb2\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0b\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f66\u0f92\u0fb2\u0f72\u0f42"],"Write caption\u2026":["\u0f42\u0f66\u0f63\u0f0b\u0f56\u0f64\u0f51\u0f0b\u0f60\u0f56\u0fb2\u0f72\u0f0b\u0f56\u2026"],"Use URL":["URL \u0f56\u0f40\u0f7c\u0f63\u0f0b\u0f56\u0f0d"],Audio:["\u0f66\u0f92\u0fb2\u0f0b\u0f5f\u0fb3\u0f7c\u0f66\u0f0d"],Upload:["\u0f66\u0f90\u0fb1\u0f7a\u0f63\u0f0b\u0f60\u0f47\u0f7c\u0f42"],"Additional CSS Class(es)":["CSS \u0f62\u0f72\u0f42\u0f66\u0f0b\u0f60\u0f55\u0f62\u0f0b\u0f58\u0f0d"],"HTML Anchor":["HTML \u0f62\u0f9f\u0f7c\u0f51\u0f0b\u0f55\u0f74\u0f62\u0f0d"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f58\u0f49\u0f58\u0f0b\u0f66\u0fa1\u0f7a\u0f56\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5a\u0f7a\u0f0b\u0f58\u0f72\u0f66\u0f0b\u0f40\u0fb3\u0f7c\u0f42\u0f0b\u0f54\u0f62\u0f0b\u0f51\u0f40\u0f60\u0f0b\u0f44\u0f63\u0f0b\u0f60\u0f55\u0fb2\u0f51\u0f0b\u0f66\u0fb2\u0f72\u0f51\u0f0d \u0f62\u0f92\u0fb1\u0f56\u0f0b\u0f63\u0f97\u0f7c\u0f44\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f51\u0f7a\u0f0b\u0f63\u0f66\u0f0b\u0f56\u0f40\u0fb2\u0f42\u0f0b\u0f58\u0f51\u0f44\u0f66\u0f0b\u0f45\u0f53\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f60\u0f72\u0f0b\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f51\u0f7a\u0f0b\u0f63\u0f66\u0f0b\u0f58\u0f74\u0f53\u0f0b\u0f53\u0f42\u0f0b\u0f4f\u0f74\u0f0b\u0f56\u0f4f\u0f44\u0f0b\u0f53\u0f66\u0f0b\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0fb1\u0f7c\u0f66\u0f0d"],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f72\u0f0b\u0f58\u0f49\u0f58\u0f0b\u0f66\u0fa1\u0f7a\u0f56\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f5a\u0f7a\u0f0b\u0f58\u0f72\u0f66\u0f0b\u0f40\u0fb3\u0f7c\u0f42\u0f0b\u0f54\u0f62\u0f0b\u0f51\u0f40\u0f60\u0f0b\u0f44\u0f63\u0f0b\u0f60\u0f55\u0fb2\u0f51\u0f0b\u0f66\u0fb2\u0f72\u0f51\u0f0d \u0f62\u0f92\u0fb1\u0f56\u0f0b\u0f63\u0f97\u0f7c\u0f44\u0f66\u0f0b\u0f40\u0fb1\u0f72\u0f0b\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f51\u0f7a\u0f0b\u0f63\u0f66\u0f0b\u0f58\u0f74\u0f53\u0f0b\u0f53\u0f42\u0f0b\u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f61\u0f72\u0f0b\u0f42\u0f7a\u0f60\u0f72\u0f0b\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f51\u0f7a\u0f0b\u0f63\u0f66\u0f0b\u0f56\u0f40\u0fb2\u0f42\u0f0b\u0f58\u0f51\u0f44\u0f66\u0f0b\u0f45\u0f53\u0f0b\u0f51\u0f74\u0f0b\u0f56\u0f4f\u0f44\u0f0b\u0f53\u0f66\u0f0b\u0f5a\u0f7c\u0f51\u0f0b\u0f63\u0f9f\u0f0b\u0f56\u0fb1\u0f7c\u0f66\u0f0d"],Clear:["\u0f42\u0f59\u0f44\u0f0b\u0f66\u0f7a\u0f63\u0f0d"],"Custom color picker":["\u0f62\u0f44\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f41\u0f0b\u0f51\u0f7c\u0f42\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0b\u0f46\u0f66\u0f0d"],"Color: %s":["\u0f41\u0f0b\u0f51\u0f7c\u0f42: %s"],"Full Width":["\u0f5e\u0f7a\u0f44\u0f0b\u0f61\u0f7c\u0f44\u0f66\u0f0d"],"Wide Width":["\u0f5e\u0f7a\u0f44\u0f0b\u0f58\u0f50\u0f60\u0f0b\u0f56\u0fb2\u0f63\u0f0d"],Widgets:["\u0f63\u0fb7\u0f74\u0f0b\u0f46\u0f74\u0f44\u0f0b\u0f0d"],Formatting:["\u0f62\u0fa3\u0f58\u0f0b\u0f42\u0f5e\u0f42"],"Common Blocks":["\u0f66\u0fa4\u0fb1\u0f72\u0f62\u0f0b\u0f56\u0f4f\u0f44\u0f0b\u0f42\u0f72\u0f0b\u0f62\u0fa1\u0f7c\u0f42"],"Align Right":["\u0f42\u0f61\u0f66\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0d"],"Align Center":["\u0f51\u0f40\u0fb1\u0f72\u0f63\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0d"],"Align Left":["\u0f42\u0f61\u0f7c\u0f53\u0f0b\u0f66\u0f99\u0f7c\u0f58\u0f66\u0f0d"],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f41\u0f0b\u0f66\u0fa3\u0f7c\u0f53\u0f0d"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f54\u0f0b\u0f54\u0f7c\u0f0d"],Slug:["\u0f58\u0f72\u0f44\u0f0b\u0f42\u0f5e\u0f53\u0f0d"],Discussion:["\u0f56\u0f42\u0fb2\u0f7c\u0f0b\u0f42\u0fb3\u0f7a\u0f44\u0f0b\u0f0d"],"Custom Fields":["\u0f62\u0f44\u0f0b\u0f56\u0f5f\u0f7c\u0f66\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f51\u0f74\u0f58\u0f0d"],Excerpt:["\u0f42\u0f53\u0f51\u0f0b\u0f56\u0f66\u0fa1\u0f74\u0f66\u0f0d"],Publish:["\u0f54\u0f62\u0f0b\u0f60\u0f42\u0fb2\u0f7a\u0f58\u0f66\u0f0d"],Metadata:["\u0f62\u0fa9\u0f7c\u0f58\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f42\u0f72\u0f0b\u0f42\u0f53\u0f66\u0f0b\u0f5a\u0f74\u0f63\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f46\u0f0d"],Save:["\u0f49\u0f62\u0f0b\u0f5a\u0f42\u0f66\u0f0d"],Documentation:["\u0f61\u0f72\u0f42\u0f0b\u0f5a\u0f42\u0f66\u0f0d"],"Select Category":["\u0f51\u0f40\u0f62\u0f0b\u0f46\u0f42\u0f0b\u0f60\u0f51\u0f7a\u0f58\u0f66\u0f0d"],"(Untitled)":["(\u0f41\u0f0b\u0f56\u0fb1\u0f44\u0f0b\u0f58\u0f7a\u0f51)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg \u0f63\u0f0b\u0f44\u0f7a\u0f66\u0f0b\u0f54\u0f62\u0f0b\u0f5a\u0f44\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0b\u0f54\u0f0b\u0f53\u0f72 WordPress %s \u0f51\u0f44\u0f0b\u0f61\u0f44\u0f0b\u0f53\u0f0b\u0f51\u0f7a\u0f0b\u0f63\u0f66\u0f0b\u0f58\u0f50\u0f7c\u0f0b\u0f56\u0f60\u0f72\u0f0b\u0f50\u0f7c\u0f53\u0f0b\u0f62\u0f72\u0f58\u0f0b\u0f61\u0f72\u0f53\u0f0d Gutenberg \u0f53\u0f74\u0f66\u0f0b\u0f66\u0fb3\u0f7c\u0f44\u0f0b\u0f58\u0f0b\u0f56\u0fb1\u0f66\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b\u0f63 WordPress \u0f62\u0f72\u0f58\u0f0b\u0f66\u0fa4\u0f62\u0f0b\u0f56\u0fb1\u0f7a\u0f51\u0f0b\u0f62\u0f7c\u0f42\u0f66\u0f0b\u0f42\u0f53\u0f44\u0f0b\u0f0d"],"Gutenberg Team":["Gutenberg \u0f5a\u0f53\u0f0b\u0f41\u0f42"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["\u0f51\u0f54\u0f7a\u0f0b\u0f66\u0f9f\u0f7c\u0f53\u0f0d"],"%s ago":["%s \u0f66\u0f94\u0f7c\u0f53\u0f0d"],"Block style name must be a string.":["\u0f62\u0fa1\u0f7c\u0f42\u0f0b\u0f54\u0f7c\u0f60\u0f72\u0f0b\u0f56\u0f5f\u0f7c\u0f0b\u0f63\u0f9f\u0f60\u0f72\u0f0b\u0f58\u0f72\u0f44\u0f0b\u0f53\u0f72\u0f0b\u0f44\u0f7a\u0f66\u0f0b\u0f54\u0f62\u0f0b\u0f51\u0f74\u0f0b\u0f61\u0f72\u0f42\u0f0b\u0f62\u0f9f\u0f42\u0f66\u0f0b\u0f55\u0fb2\u0f7a\u0f44\u0f0b\u0f61\u0f72\u0f53\u0f0b\u0f51\u0f42\u0f7c\u0f66\u0f0d"]}},826,[]); +__d(function(e,a,t,o,i,s,r){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:["Versi\xf3"],"Six.":["Sis."],"Five.":["Cinc."],"Four.":["Quatre."],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":["Contingut de la pantalla dels ginys"],"Widgets advanced settings":["Configuraci\xf3 avan\xe7ada dels ginys"],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":["Barra superior de la pantalla dels ginys"],"This color combination may be hard for people to read.":["Amb aquesta combinaci\xf3 de colors podria ser complicat llegir."],"There is no poster image currently selected":["Actualment no hi ha cap imatge seleccionada de l'autor de l'entrada"],"The current poster image url is %s":["La imatge actual de l'autor de l'entrada \xe9s %s"],section:["secci\xf3"],row:["fila"],wrapper:[],container:["contenidor"],"A block that groups other blocks.":[],Group:["Grup"],"Crop image to fill entire column":["Retalleu la imatge per fer servir la columna sencera"],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":["Edita l'URL de l'RSS"],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:["llibre electr\xf2nic"],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:["Subratllat"],"Attempt Block Recovery":["Intenta restablir el bloc"],"Word count type. Do not translate!\x04words":["paraules"],"content placeholder\x04Content\u2026":["Contingut\u2026"],"button label\x04Convert to link":["Converteix en enlla\xe7"],"button label\x04Try again":["Prova de nou"],"Editor tips":["Consells de l'editor"],"Block (selected)":["Bloc (seleccionat)"],"Document (selected)":["Document (seleccionat)"],"%d word":["%d paraula","%d paraules"],"Top Toolbar":["Barra d'eines superior"],"Link Rel":["Atribut link rel"],"Link CSS Class":["Enlla\xe7a la classe CSS"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Creeu contingut, i deseu-lo per a vosaltres i altres co\u0140laboradors al llarg del web. Actualitzeu el bloc, i els canvis s'aplicaran on s'utilitzi el bloc."],"To edit the featured image, you need permission to upload media.":["Per editar la imatge destacada, necessiteu permisos per penjar m\xe8dia."],"To edit this block, you need permission to upload media.":["Per editar aquest bloc, necessiteu permisos per a penjar m\xe8dia."],"(selected block)":["(bloc seleccionat)"],"Block tools":["Eines de bloc"],Permalink:["Enlla\xe7 permanent"],"This image has an empty alt attribute":["Aquesta imatge t\xe9 un atribut alt buit"],"This image has an empty alt attribute; its file name is %s":["Aquesta imatge t\xe9 un atribut alt buit; el nom de fitxer \xe9s %s"],"Block area reverted to draft.":["S'ha revertit l'\xe0rea de blocs a esborrany."],"Block area published privately.":["S'ha publicat l'\xe0rea de blocs de forma privada."],"No block areas found in Trash.":["No s'ha trobat cap \xe0rea de blocs a la paperera."],"Block\x04Add New":["Afegeix"],"add new on admin bar\x04Block Area":["\xc0rea de blocs"],"Link inserted.":["Enlla\xe7 inserit."],"Warning: the link has been inserted but may have errors. Please test it.":["Atenci\xf3: l'enlla\xe7 s'ha inserit per\xf2 pot tenir errors. Comproveu-lo."],"%s block selected.":["S'ha seleccionat %s bloc.","S'han seleccionat %s blocs."],Thumbnail:["Miniatura"],"Full Size":["Mida completa"],"Link selected.":["Enlla\xe7 seleccionat."],"Start writing with text or HTML":["Comenceu a escriure text o HTML"],"Type text or HTML":["Teclegeu text o HTML"],"Block icon":["Icona del bloc"],"Align Text Right":["Alinea el text a la dreta"],"Align Text Center":["Alinea el text al centre"],"Align Text Left":["Alinea el text a l'esquerra"],"Start writing or type / to choose a block":["Comenceu a escriure o teclegeu / per triar un bloc"],"Empty block; start writing or type forward slash to choose a block":["Bloc buit; comenceu a escriure o teclegeu una barra obliqua per triar un bloc"],"Paragraph block":["Bloc de par\xe0graf"],"Page Break":["Salt de p\xe0gina"],"Stack on mobile":["Apila al m\xf2bil"],Annotation:["Anotaci\xf3"],"Drag images, upload new ones or select files from your library.":["Arrossegueu imatges, pugeu-ne algunes o seleccioneu-les des de la biblioteca."],"blocks\x04Most Used":["M\xe9s usats"],"imperative verb\x04Resolve":["Resol"],"font size name\x04Huge":["Enorme"],"font size name\x04Large":["Gran"],"font size name\x04Medium":["Mitjana"],"font size name\x04Small":["Petita"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Retorn"],"button label\x04Import":["Importa"],"button label\x04Download":["Baixa"],"button label\x04Embed":["Incrusta"],"block title\x04Embed":["Incrusta"],"block title\x04Classic":["Cl\xe0ssic"],"block style\x04Large":["Gran"],"%s (opens in a new tab)":["%s (s'obre en una pestanya nova)"],"Link edited.":["S'ha editat l'enlla\xe7."],"Link removed.":["S'ha suprimit l'enlla\xe7."],media:["multim\xe8dia"],"Double-check your settings before publishing.":["Comproveu dues vegades els par\xe0metres abans de publicar."],"Generating preview\u2026":["S'est\xe0 generant la previsualitzaci\xf3..."],"Edit or update the image":["Edita o penja la imatge"],Media:["Multim\xe8dia"],"Navigate to the nearest toolbar.":["Navega a la barra d'eines m\xe9s propera."],"Document tools":["Eines del document"],"Document and block tools":["Eines del document i bloc"],"Embed a video from your media library or upload a new one.":["Incrusta un v\xeddeo de la mediateca o penja un nou."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Inseriu poesia. Useu formats d'espai especials. O citeu lletres de can\xe7ons."],"Add white space between blocks and customize its height.":["Afegeix espais en blanc entre blocs i personalitza l'al\xe7ada."],"Insert additional custom elements with a WordPress shortcode.":["Insereix elements personalitzats addicionals amb codis de substituci\xf3 del WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crea un salt entre l\xednies o seccions amb un separador horitzontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Emfatitza visualment el text citat. \"En citar a altres, ens citem a nosaltres.\" -- Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Doneu un \xe8mfasi visual especial a una cita des del text."],"Start with the building block of all narrative.":["Comenceu amb el bloc constructor de tota la narrativa."],"Separate your content into a multi-page experience.":["Separeu el contingut en una experi\xe8ncia multi p\xe0gina."],"Set media and words side-by-side for a richer layout.":["Defineix els m\xe8dia i les paraules un al costat de l'altre per a un format m\xe9s ric."],"Media & Text Settings":["Opcions del m\xe8dia i text"],"Create a bulleted or numbered list.":["Crea una llista amb pics o numerada."],"Display a list of your most recent comments.":["Mostra una llista dels comentaris m\xe9s recents."],"Insert an image to make a visual statement.":["Insereix una imatge per fer una declaraci\xf3 visual."],"Add custom HTML code and preview it as you edit.":["Afegiu un codi HTML personalitzat i previsualitzeu-lo mentre editeu."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introdu\xefu seccions noves i organitzeu continguts per ajudar els visitants (i els motors de cerca) a comprendre l'estructura del contingut."],"Display multiple images in a rich gallery.":["Mostra diverses imatges en una galeria."],"Add a link to a downloadable file.":["Afegeix un enlla\xe7 a un fitxer descarregable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incrusteu v\xeddeos, imatges, piulades, \xe0udio i altre contingut des d'or\xedgens externs."],"Resize for smaller devices":["Redimensiona per a dispositius petits"],"This embed may not preserve its aspect ratio when the browser is resized.":["Aquesta incrustaci\xf3 pot no preservar l'aspecte quan el navegador es redimensiona."],"This embed will preserve its aspect ratio when the browser is resized.":["Aquesta incrustaci\xf3 preservar\xe0 l'aspecte quan el navegador es redimensioni."],"Embed an Animoto video.":["Incrusta un v\xeddeo d'Animoto."],"Embed a Vimeo video.":["Incrusta un v\xeddeo de Vimeo."],"Embed Flickr content.":["Incrusta contingut de Flickr."],"Embed Spotify content.":["Incrusta contingut de Spotify."],"Embed SoundCloud content.":["Incrusta contingut de SoundCloud."],"Embed a WordPress post.":["Incrusta una entrada del WordPress."],"Embed an Instagram post.":["Incrusta una entrada d'Instagram."],"Embed a Facebook post.":["Incrusta una entrada de Facebook."],"Embed a WordPress.tv video.":["Incrusta un v\xeddeo de WordPress.tv."],"Embed a VideoPress video.":["Incrusta un v\xeddeo de VideoPress."],"Embed a Tumblr post.":["Incrusta una entrada de Tumblr."],"Embed a TED video.":["Incrusta un v\xeddeo de TED."],"Embed Speaker Deck content.":["Incrusta un contingut de Speaker Deck."],"Embed a YouTube video.":["Incrusta un v\xeddeo de YouTube."],"Embed SmugMug content.":["Incrusta contingut de SmugMug."],"Embed Slideshare content.":["Incrusta contingut de Slideshare."],"Embed Scribd content.":["Incrusta contingut de Scribd."],"Embed Screencast content.":["Incrusta contingut de Screencast."],"Embed ReverbNation content.":["Incrusta contingut de ReverbNation."],"Embed a Reddit thread.":["Incrusta un fil de Reddit."],"Embed Polldaddy content.":["Incrusta contingut de Polldaddy."],"Embed Mixcloud content.":["Incrusta contingut de Mixcloud."],"Embed a tweet.":["Incrusta una piulada."],"Embed Meetup.com content.":["Incrusta contingut de Meetup.com."],"Embed Kickstarter content.":["Incrusta contingut de Kickstarter."],"Embed Issuu content.":["Incrusta contingut d'Issuu."],"Embed Imgur content.":["Incrusta contingut d'Imgur."],"Embed Hulu content.":["Incrusta contingut de Hulu."],"Embed a Dailymotion video.":["Incrusta un v\xeddeo de Dalymotion."],"Embed CollegeHumor content.":["Incrusta contingut de CollegeHumor."],"Embed Cloudup content.":["Incrusta contingut de Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Afegeix una imatge o v\xeddeo amb una text superposat -- perfecte per a cap\xe7aleres."],"Display code snippets that respect your spacing and tabs.":["Mostra trossos de codi que respectin l'espaiat i les tabulacions."],"Use the classic WordPress editor.":["Utilitza l'editor cl\xe0ssic del WordPress."],"Display a list of all categories.":["Mostra una llista de totes les categories."],"Embed a simple audio player.":["Incrusta un reproductor d'\xe0udio simple."],"noun\x04View":["Visualitzaci\xf3:"],"editor button\x04Left to right":["Direcci\xf3 d'esquerra a dreta"],"Save as Pending":["Desa com a pendent"],"%s address":["%s adre\xe7a"],"Paste or type URL":["Enganxeu o escriviu l'URL"],"Insert from URL":["Insereix des d'un URL"],"Block Navigator":["Navegador de blocs"],Styles:["Estils"],"Advanced Panels":["Panells avan\xe7ats"],"Document Panels":["Panells del document"],General:["General"],"Open the block navigation menu.":["Obre el men\xfa de navegaci\xf3 del bloc."],"Work without distraction":["Treballa lliure de distraccions"],"Focus on one block at a time":["Posa el focus en un bloc cada vegada"],"Access all block and document tools in a single place":["Accedeix a totes les eines dels documents i blocs en un sol lloc"],Options:["Opcions"],"(opens in a new tab)":["(s'obre en una pestanya nova)"],Minutes:["Minuts"],Hours:["Hores"],Time:["Hora"],Year:["Any"],Day:["Dia"],December:["Desembre"],November:["Novembre"],October:["Octubre"],September:["Setembre"],August:["Agost"],July:["Juliol"],June:["Juny"],May:["Maig"],April:["Abril"],March:["Mar\xe7"],February:["Febrer"],January:["Gener"],Month:["Mes"],Date:["Data"],"Go to the first (home) or last (end) day of a week.":["V\xe9s al primer (p\xe0gina inicial) o l'\xfaltim (final) dia de la setmana."],"Home/End":["Inici/final"],"Home and End":["Inici i final"],"Move backward (PgUp) or forward (PgDn) by one month.":["V\xe9s enrere (Re P\xe0g) o endavant (Av P\xe0g) un mes."],"PgUp/PgDn":["Av P\xe0g/Re P\xe0g"],"Page Up and Page Down":["Avan\xe7a i retrocedeix la p\xe0gina"],"Move backward (up) or forward (down) by one week.":["V\xe9s enrere (amunt) o endavant (avall) una setmana."],"Up and Down Arrows":["Fletxes d'amunt i avall"],"Move backward (left) or forward (right) by one day.":["V\xe9s enrere (esquerra) o endavant (dreta) una setmana."],"Left and Right Arrows":["Fletxes de dreta i esquerra"],"Select the date in focus.":["Selecciona la data al focus."],"Navigating with a keyboard":["Navegaci\xf3 amb un teclat"],"Click the desired day to select it.":["Feu clic al dia desitjat per seleccionar-lo."],"Click the right or left arrows to select other months in the past or the future.":["Feu clic a les fletxes dreta o esquerra per seleccionar altres mesos en el passat o en el futur,"],"Click to Select":["Feu clic per a seleccionar"],"Calendar Help":["Ajuda del calendari"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Useu les tecles de fletxa per canviar el color base. Aneu amunt per a un color m\xe9s clar, avall per a un color m\xe9s obscur, esquerra per augmentar la saturaci\xf3, i dreta per a disminuir la saturaci\xf3."],"Choose a shade":["Tria una ombra"],"Change color format":["Canvia el format del color"],"Color value in HSL":["Valor del color en HSL"],"Color value in RGB":["Valor del color en RGB"],"Color value in hexadecimal":["Valor del color en hexadecimal"],"RGB mode active":["Mode RGB actiu"],"Hex color mode active":["Mode de color hexadecimal actiu"],"Hue/saturation/lightness mode active":["Mode de To/Saturaci\xf3/Lluminositat actiu"],"Move the arrow left or right to change hue.":["Mogueu la fletxa esquerra o dreta per canviat la tonalitat."],"Hue value in degrees, from 0 to 359.":["Valor de la tonalitat en graus, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor d'alfa, de 0 (transparent) a 1 (completament opac)."],Stripes:["Ratlles"],"Your site doesn\u2019t include support for this block.":["El lloc web no inclou suport per a aquest bloc."],"Unrecognized Block":["Bloc desconegut"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["El lloc web no inclou suport per al bloc \"%s\". Podeu deixar aquest bloc intacte o suprimir-lo completament."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["El lloc web no inclou suport per al bloc \"%s\". Podeu deixar aquest bloc intacte, convertir el contingut a un bloc HTML personalitzat, o suprimir-lo completament."],"Media area":["\xc0rea del m\xe8dia"],"Media & Text":["M\xe8dia i text"],"Show media on right":["Mostra el m\xe8dia a la dreta"],"Show media on left":["Mostra el m\xe8dia a l'esquerra"],"Open in New Tab":["Obre en una pestanya nova"],Cover:["Coberta"],"Border Settings":["Par\xe0metres de la vora"],"Edit media":["Edita el m\xe8dia"],Medium:["Mitj\xe0"],"Paste URL or type to search":["Enganxeu l'URL o escriviu per cercar"],Terms:["Termes"],"Your work will be published at the specified date and time.":["L'entrada es publicar\xe0 a la data i hora especificades."],"Are you ready to schedule?":["Esteu llestos per planificar?"],"Always show pre-publish checks.":["Sempre mostra les comprovacions abans de publicar."],"Take Over":["Pren possessi\xf3"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Altre usuari est\xe0 treballant ara amb aquesta entrada, el que significa que no podeu fer canvis, a no ser que prengueu possessi\xf3."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s est\xe0 treballant ara amb aquesta entrada, el que significa que no podeu fer canvis, a no ser que prengueu possessi\xf3."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Altre usuari t\xe9 control d'edici\xf3 ara sobre aquesta entrada. Els canvis fins ara s'han desat."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s t\xe9 control d'edici\xf3 ara sobre aquesta entrada. Els canvis fins ara s'han desat."],Avatar:["Avatar"],"This post is already being edited.":["Aquesta entrada ja s'est\xe0 editant."],"Someone else has taken over this post.":["Alg\xfa altre ha pres possessi\xf3 d'aquesta entrada."],"This block contains unexpected or invalid content.":["Aquest bloc cont\xe9 contingut no esperat o no v\xe0lid."],"Resolve Block":["Resol el bloc"],"Convert to HTML":["Converteix a HTML"],"This block can only be used once.":["Aquest bloc nom\xe9s es pot utilitzar una vegada."],"Exit Code Editor":["Surt de l'editor de codi"],"Editing Code":["S'est\xe0 editant el codi"],"Solid Color":["Color s\xf2lid"],"Main Color":["Color principal"],HTML:["HTML"],"Write HTML\u2026":["Escriu HTML..."],"Media Settings":["Opcions dels m\xe8dia"],"Overlay Color":["Color de la superposici\xf3"],Overlay:["Superposici\xf3"],"Insert Media":["Insereix un m\xe8dia"],"Reusable block imported successfully!":["El bloc reusable ha estat importat satisfact\xf2riament!"],"Invalid Reusable Block JSON file":["El fitxer JSON de blocs reutilitzable no \xe9s v\xe0lid"],"Invalid JSON file":["El fitxer JSON no \xe9s v\xe0lid"],"Import from JSON":["Importa des de JSON"],Backtick:["Accent obert"],Period:["Per\xedode"],Comma:["Coma"],"Change type of %d block":["Canvia el tipus d'%d bloc","Canvia el tipus de %d blocs"],Current:["Actual"],"After Conversion":["Despr\xe9s de convertir"],"Change alignment":["Canvia l'alineaci\xf3"],"Change text alignment":["Canvia l'alineaci\xf3 de text"],"%d block":["%d bloc","%d blocs"],Escape:["Tecla Esc"],"Forward-slash":["Barra inclinada"],"No archives to show.":["No hi ha arxius per a mostrar."],"This file is empty.":["Aquest fitxer \xe9s buit."],"Sorry, this file type is not supported here.":["Aquest tipus d'arxiu no \xe9s compatible."],"Manage All Reusable Blocks":["Gestiona tots els blocs reutilitzables."],Title:["T\xedtol"],"Fullscreen Mode":["Mode de pantalla completa"],"Beautiful landscape":["Paisatge bonic"],"Close panel":["Tanca el tauler"],"Convert to Classic Block":["Converteix a un bloc cl\xe0ssic"],"Remove Poster Image":["Elimina la imatge de p\xf2ster"],"Select Poster Image":["Selecciona la imatge de p\xf2ster"],"Poster Image":["Imatge de p\xf2ster"],"This block is deprecated. Please use the Columns block instead.":["Aquest bloc est\xe0 obsolet. Enlloc d'aix\xf2 utilitzeu el bloc de Columnes."],"Text Columns (deprecated)":["Columnes de text (obsoletes)"],"Row Count":["Recompte de files"],"Column Count":["Recompte de columnes"],"This block is deprecated. Please use the Paragraph block instead.":["Aquest bloc est\xe0 obsolet. Enlloc d'aix\xf2 utilitzeu el bloc de Par\xe0graf. "],"Subheading (deprecated)":["Cap\xe7alera secund\xe0ria (obsolet)"],blockquote:["Cita"],"Change the block type after adding a new paragraph.":["Canvia el tipus de bloc despr\xe8s d'afegir un nou par\xe0graf."],"Spotlight Mode":["Mode spotlight"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Les etiquetes ajuden als usuaris i als motors de cerca a navegar pel lloc web i trobar el contingut. Afegiu unes poques paraules claus per descriure la entrada."],"Add tags":["Afegeix etiquetes"],"Apply the \"%1$s\" format.":["Aplica el format \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["El tema utilitza formats d'entrada per destacar diferent tipus de contingut, com imatges o v\xeddeos. Apliqueu aquest format d'entrada per veure aquest estil especial. "],"Use a post format":["Usa un format d'entrada"],"Insert After":["Insereix despr\xe9s "],"Insert Before":["Insereix abans"],"Move %1$d block from position %2$d down by one place":["Mou %1$d bloc des de la posici\xf3 %2$d un lloc avall ","Mou %1$d blocs des de la posici\xf3 %2$d un lloc avall "],"Move %1$d block from position %2$d up by one place":["Mou %1$d bloc des de la posici\xf3 %2$d un lloc amunt ","Mou %1$d blocs des de la posici\xf3 %2$d un lloc amunt "],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["pel\xb7l\xedcula"],"Insert a new block before the selected block(s).":["Insereix un nou bloc abans del blocs seleccionats."],"Remove the selected block(s).":["Elimina els blocs seleccionats."],"Duplicate the selected block(s).":["Duplicat els blocs seleccionats."],"Block shortcuts":["Dreceres pels blocs."],"Clear selection.":["Neteja la selecci\xf3."],"Select all text when typing. Press again to select all blocks.":["Selecciona tot el text mentre escriviu. Torneu a pr\xe9mer per a seleccionar tots els blocs."],"Selection shortcuts":["Dreceres de selecci\xf3 "],"Switch between Visual Editor and Code Editor.":["Canvia entre l'editor visual i l'editor de codi"],"Navigate to the previous part of the editor (alternative).":["Navega a l'anterior part de l'editor (alternatiu)."],"Navigate to the next part of the editor (alternative).":["Navega a la seg\xfcent part de l'editor (alternatiu)."],"Navigate to the previous part of the editor.":["Navega a l'anterior part de l'editor."],"Navigate to the next part of the editor.":["Navega a la seg\xfcent part de l'editor."],"Show or hide the settings sidebar.":["Mostra o oculta la barra de configuraci\xf3."],"Redo your last undo.":["Ref\xe9s l'\xfaltim \xabdesf\xe9s\xbb."],"Undo your last changes.":["Desf\xe9s els ultims canvis"],"Save your changes.":["Desa els canvis."],"Global shortcuts":["Dreceres globals"],"Remove a link.":["Elimina l'enlla\xe7."],"Convert the selected text into a link.":["Converteix el text seleccionat en un enlla\xe7."],"Underline the selected text.":["Subratlla el text seleccionat"],"Make the selected text italic.":["Posa en cursiva el text seleccionat"],"Make the selected text bold.":["Posa en negreta el text seleccionat"],"Text formatting":["Format de text"],"Insert a new block after the selected block(s).":["Insereix un nou bloc despr\xe9s del blocs seleccionats."],"Keyboard Shortcuts":["Dreceres de teclat"],"Thanks for testing Gutenberg!":["Gr\xe0cies per provar el Gutenberg!"],"Help build Gutenberg":["Ajudeu a construir el Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si voleu aprendre m\xe9s sobre com construir blocs addicionals o si esteu interessats en ajudar amb el projecte, adreceu-vos al repositori GitHub."],"The WordPress community":["La comunitat de WordPress"],"Code is Poetry":["El codi es poesia"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Podeu construir qualsevol tipus de bloc, est\xe0tic o din\xe0mic, decoratiu o simple. Aqu\xed hi ha un bloc de contraportada. "],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Qualsevol bloc pot fer \xfas d'aquestes alineacions. El bloc incrustat tamb\xe9 les t\xe9 i \xe9s totalment responsiu:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Aix\xf2 \xe9s una galeria amb dues imatges. \xc9s una manera m\xe9s f\xe0cil de crear dissenys d'una manera visual sense haver de fer servir elements flotants. Tamb\xe9 podeu f\xe0cilment tornar a convertir la galeria a imatges individuals una altra vegada usant l'intercanviador de blocs."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["La imatge en mida completa potser molt gran per\xf2, de vegades, la imatge val la pena. "],"Accessibility is important — don’t forget image alt attribute":["L'accessibilitat \xe9s important; no oblideu l'atribut alt de la imatge."],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si combineu els nous alineaments ample i amplada completa amb les galeries, podeu crear una disposici\xf3 m\xe8dia molt rica, molt r\xe0pidament:"],"Media Rich":["Ric en m\xe8dia"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Podeu canviar la quantitat de columnes en la galeria arrossegant un despla\xe7ador situat a l'inspector de blocs de la barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Els blocs poden ser qualsevol cosa que necessiteu. Per exemple, podeu afegir una citaci\xf3 subtil com a part de la composicio del text, o potser preferiu mostrar-ne una gran i estilitzada. Totes aquestes opcions estan disponibles a l'eina d'inserci\xf3."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["La informaci\xf3 corresponent a la font de la citaci\xf3 \xe9s un camp de text diferent, semblant a les llegendes baix de les imatges, de manera que l'estructura de la citaci\xf3 est\xe0 protegida fins i tot si seleccioneu, modifiqueu o elimineu la font. Sempre \xe9s f\xe0cil tornar-la a afegir."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["L'editor us guiar\xe0 a crear una nova experi\xe8ncia de creaci\xf3 de p\xe0gines i entrades, que fa l'escriptura d'entrades riques sense esfor\xe7, i t\xe9 \xabblocs\xbb per a fer m\xe9s f\xe0cil el que avu\xed es fa mitjan\xe7at codis de substituci\xf3, HTML personalitzat o \"misteriosos\" descobriments d'elements incrustats."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un benefici molt gran dels blocs \xe9s que podeu editar-los en lloc i manipular el contingut directament. Enlloc de tindre camps per a editar coses com el codi d'una citaci\xf3 o el text d'un bot\xf3, podeu canviar el continngut directament. Proveu a editar la citaci\xf3 seg\xfcent:"],"Visual Editing":["Edici\xf3 visual"],"And Lists like this one of course :)":["I llistes com aquesta, \xe9s clar :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Plantilla de blocs, botons de m'agrada, imatges de cap\xe7alera, separadors, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Elements incrustats, com YouTube, tuits, o altres entrades del WordPress."],Galleries:["Galeries"],"Images & Videos":["Imatges i videos"],"Text & Headings":["Text i encap\xe7alaments"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Proveu-lo, podeu descubrir coses que no sab\xedeu que el WordPress ja pot afegir a les vostres entrades. Aqu\xed teniu una llista de qu\xe8 podeu trobar a hores d'ara:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine-vos que tot el que pot fer el WordPress est\xe0 disponible r\xe0pidament des del mateix lloc a la interf\xedcie. Sense necessitat d'encertar etiquetes HTML, classes, o recordar l'estranya sintaxi dels codis de substituci\xf3. Eixe \xe9s l'esperit de l'eina d'inserci\xf3 \u2014 el bot\xf3 (+) que veureu a l'editor \u2014 que us permetr\xe0 navegar per tots els blocs de contingut disponible i afegir-los a la vostra entrada. Extensions i temes poden registrar-ne de nous, obrint tot un ventall de possibilitats per a l'edici\xf3 rica i la publicaci\xf3."],"The Inserter Tool":["L'eina d'inserci\xf3"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Proveu a seleccionar i eliminar o editar la llegenda, ara no hey d'anar en compte amb seleccionar una imatge o un altre text per error i arruinar la presentaci\xf3."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["SI el tema \xe9s compatible, veureu el bot\xf3 \xabample\xbb a la barra d'eines de la imatge. Proveu-ho!"],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["La gesti\xf3 d'imatges i m\xe8dia amb la m\xe0xima cura \xe9s una de les prioritats del nou editor. Trobareu formes d'afegir llegendes o posar imatges a pantalla completa molt m\xe9s f\xe0cils i robustes que abans."],"A Picture is Worth a Thousand Words":["Una imatge val m\xe9s que mil paraules"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Les cap\xe7aleres tamb\xe9 s\xf3n blocs separats, que us ajuda a esquematitzar i organitzar el contingut."],"... like this one, which is right aligned.":["...com aquesta, que est\xe0 alineada a la dreta."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["El que esteu llegint \xe9s un bloc de text. Aquest \xe9s el bloc m\xe9s b\xe0sic de tots. El bloc de text t\xe9 els seus propis controls per moure'l lliurement per l'entrada..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["L'objectiu de l'editor nou \xe9s fer l'addici\xf3 de contingut ric al WordPress simple i entretingut. Aquesta entrada est\xe0 tota escrita amb peces de contingut \u2014 una cosa semblant a peces de LEGO \u2014 amb qu\xe8 podeu moure i interactuar. Moveu el cursos per la pantalla i veureu com diferents blocs s'iluminen amb vores i fletxes. Premeu les fletxes per a reposicionar r\xe0pidament els blocs, sense por a perdre res en el proc\xe9s de copiar i enganxar."],"Of Mountains & Printing Presses":["de muntanyes i impremtes"],"Welcome to the Gutenberg Editor":["Benvingut a l'editor Gutenberg"],"block name\x04More":["M\xe9s"],"button to expand options\x04More":["M\xe9s"],"Are you sure you want to unschedule this post?":["Esteu segur de desprogramar aquest missatge?"],"Alt Text (Alternative Text)":["Text Alt (Text alternatiu)"],"Reusable Block":["Bloc reutilitzable"],"Unique identifier for the object.":["Identificador \xfanic per a l'objecte."],"Untitled Reusable Block":["Blocs reutilitzables sense t\xedtol"],Small:["Petit"],"(%s: %s)":["(%s: %s)"],Reusable:["Reutilitzable"],"(current %s: %s)":["(%s actual: %s)"],"Remove from Reusable Blocks":["Elimina dels blocs reutilitzables"],"Add to Reusable Blocks":["Afegeix als blocs reutilitzables"],"Keep as HTML":["Mant\xe9 com a HTML"],"Edit URL":["Edita l'URL"],"Color Settings":["Par\xe0metres de color"],"The response is not a valid JSON response.":["La resposta no es una resposta JSON v\xe0lida."],"Editor publish":["Publicaci\xf3 de l'editor"],Muted:["Silenciat"],"Video Settings":["Par\xe0metres del v\xeddeo"],"recent comments":["comentaris recents"],"Latest Comments":["Ultims comentaris"],"Display Excerpt":["Mostra l'extracte"],"Display Date":["Mostra la data"],"Display Avatar":["Mostra l'avatar"],"Latest Comments Settings":["Configuraci\xf3 d'\xfaltims comentaris"],"Number of Comments":["N\xfamero de comentaris"],"Background Opacity":["Opacitat de fons"],Auto:["Auto"],Preload:["Precarrega"],"Audio Settings":["Par\xe0metres de so"],"Display a monthly archive of your posts.":["Mostra un arxiu mensual de les entrades."],"Display as Dropdown":["Mostra com a men\xfa desplegable"],"Show Post Counts":["Mostra el recompte d'entrades"],"Archives Settings":["Par\xe0metres dels arxius"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Suport"],"No comments to show.":["No s'han trobat comentaris."],"%1$s on %2$s":["%1$s a %2$s"],"Select Post":["Selecciona un post"],"Select Week":["Selecciona la setmana"],"Select Day":["Selecciona el dia"],"Select Month":["Selecciona el mes"],"Select Year":["Selecciona l'any"],Archives:["Arxius"],"Very dark gray":["Gris molt fosc"],"Cyan bluish gray":["Gris blav\xf3s"],"Very light gray":["Gris molt clar"],"Vivid cyan blue":["Blau cian viu"],"Pale cyan blue":["Blau cel p\xe0l\xb7lid"],"Vivid green cyan":["Verd cian viu"],"Light green cyan":["Turquesa verd\xf3s clar"],"Luminous vivid amber":["\xc0mbar viu i llumin\xf3s"],"Luminous vivid orange":["Taronja viu i llumin\xf3s"],"Vivid red":["Vermell viu"],"Pale pink":["Rosa p\xe0l\xb7lid"],"Inline image":["Imatge en l\xednia"],"Available block types":["Tipus de blocs disponibles"],"Transform To:":["Transforma a:"],"Remove Block":["Elimina el bloc"],"Open publish panel":["Obre el tauler de publicaci\xf3"],Dots:["Punts"],"Wide Line":["L\xednia ampla"],Large:["Gran"],"Show download button":["Mostra el bot\xf3 de baixada"],"Download button settings":["Par\xe0metres del bot\xf3 de baixada"],"Link To":["Enlla\xe7a a"],"Text link settings":["Par\xe0metres dels enlla\xe7os de text"],pdf:["pdf"],document:["document"],"Copy URL":["Copia l'URL"],"Write file name\u2026":["Escriu el nom de fitxer..."],"Edit file":["Edita el fitxer"],File:["Fitxer"],"A single column within a columns block.":["Una columna simple dins d'un bloc de columnes."],Column:["Columna"],Outline:["Esquema"],Loop:["Bucle"],Autoplay:["Reprodueix autom\xe0ticament"],"Playback Controls":["Controls de reproducci\xf3"],"Close dialog":["Tanca el di\xe0leg"],"Sorry, this file type is not permitted for security reasons.":["Aquest tipus de fitxer no est\xe0 perm\xe8s per raons de seguretat."],"Disable tips":["Deshabilita les sugger\xe8ncies"],"Got it":["Ho heu aconseguit"],"See next tip":["Mostra el seg\xfcent consell"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Quan h\xe0giu acabat, envieu la feina per a revisi\xf3 i un editor l'aprovar\xe0."],"Are you ready to submit for review?":["Esteu llest per enviar la revisi\xf3?"],"Replace image":["Reempla\xe7a la imatge"],"Remove image":["Suprimeix la imatge"],"Error while uploading file %s to the media library.":["S'ha produ\xeft un error carregant el fitxer %s a la mediateca."],"This file exceeds the maximum upload size for this site.":["El fitxer sobrepassa la mida m\xe0xima de c\xe0rrega per aquest lloc web."],"View the autosave":["Mostra el desat autom\xe0tic"],"There is an autosave of this post that is more recent than the version below.":["Hi ha una desat autom\xe0tic d'aquesta entrada que \xe9s m\xe9s recent que la versi\xf3 mostrada a sota. "],Autosaving:["Desat autom\xe0tic"],"Enter URL here\u2026":["Insereix l'URL aqui..."],"Pin to toolbar":["Fixa a la barra d'eines"],"Unpin from toolbar":["Treu de la barra d'eines"],"Insert a table \u2014 perfect for sharing charts and data.":["Insereix una taula -- perfecte per compartir gr\xe0fics i dades."],"Fixed width table cells":["Cel\xb7les de taula d'amplada fixa"],"Table Settings":["Configuraci\xf3 de la taula"],"Add text that respects your spacing and tabs, and also allows styling.":["Afegeix text que respecti els espais i tabulats, i que tamb\xe9 permeti estils."],"Display a list of your most recent posts.":["Mostra una llista de les entrades m\xe9s recents."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Afegeix un bloc que mostri contingut extret d'altres llocs, com Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Afegiu un bloc que mostri contingut en diverses columnes, i, a continuaci\xf3, afegiu qualsevol bloc de contingut que vulguis."],"Error loading block: %s":["Error en carregar el bloc: %s"],"Unknown error":["Error desconegut"],"Embed Handler":["Gestor del servei"],"term\x04Remove %s":["Suprimeix %s"],"Copy the permalink":["Copia l'enlla\xe7 permanent"],"Permalink copied":["S'ha copiat l'enlla\xe7 permanent"],"Height in pixels":["Al\xe7ada en p\xedxels"],"Spacer Settings":["Configuraci\xf3 de l'espaiador"],Spacer:["Espaiador"],"Toggle to show a large initial letter.":["Commuta per mostrar una lletra inicial gran."],"Showing large initial letter.":["S'est\xe0 mostrant la lletra inicial gran."],"Name:":["Nom:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Suprimeix element"],"Color code: %s":["Codi de color: %s"],"Skip to the selected block":["Salta al bloc seleccionat"],"Publish\u2026":["Publica..."],"Schedule\u2026":["Planifica..."],"Edit post permalink":["Edita l'enlla\xe7 permanent de l'entrada"],"Show Block Settings":["Mostra la configuraci\xf3 del bloc"],"Hide Block Settings":["Amaga la configuraci\xf3 del bloc"],"Block settings closed":["Configuraci\xf3 del bloc tancada"],"Close plugin":["Tanca l'extensi\xf3"],"Link settings":["Par\xe0metres de l'enlla\xe7"],Unlink:["Desenlla\xe7a"],"Page break":["Salt de p\xe0gina"],pagination:["paginaci\xf3"],"next page":["p\xe0gina seg\xfcent"],"Image Size":["Mida de la imatge"],Height:["Al\xe7ada"],Width:["Amplada"],"Image Dimensions":["Dimensions de la imatge"],"Thumbnails are not cropped.":["Les miniatures no estan escap\xe7ades."],"Thumbnails are cropped to align.":["Las miniatures s'escapcen alineades."],"Media Library":["Mediateca"],Advanced:["Avan\xe7at"],"Add item":["Afegeix un element"],"Reset the template":["Reinicia la plantilla"],"Keep it as is":["Deixa com est\xe0"],"The content of your post doesn\u2019t match the template assigned to your post type.":["El contingut de l'entrada no coincideix amb la plantilla assignada al tipus d'entrada."],"Resetting the template may result in loss of content, do you want to continue?":["La reinicialitzaci\xf3 de la plantilla pot provocar p\xe8rdues de contingut, voleu continuar?"],"Document Statistics":["Estad\xedstiques del document"],"is now scheduled. It will go live on":["est\xe0 planificada. Es publicar\xe0 el"],Scheduled:["Previst"],"Scheduling\u2026":["Planificant..."],"Code editor selected":["Editor de codi seleccionat"],"Visual editor selected":["Editor visual seleccionat"],Plugins:["Extensions"],"Custom Size":["Mida personalitzada"],"Layout Elements":["Elements de disseny"],"term\x04%s removed":["%s eliminat"],"term\x04%s added":["%s afegit"],"imperative verb\x04Preview":["Previsualitza"],"Block deleted.":["S'ha eliminat el bloc."],"Block updated.":["S'ha actualitzat el bloc."],"Block created.":["S'ha creat el bloc."],"Trashing failed":["L'enviament a la paperera ha fallat"],"Updating failed.":["L'actualitzaci\xf3 ha fallat."],"Scheduling failed.":["La planificaci\xf3 ha fallat."],"Publishing failed.":["La publicaci\xf3 ha fallat."],"View Post":["Mostra l'entrada"],"You have unsaved changes. If you proceed, they will be lost.":["Hi ha canvis sense desar. Si continueu es perdran."],"Document Outline":["Esquema del document"],Paragraphs:["Par\xe0grafs"],Headings:["Cap\xe7aleres"],Words:["Paraules"],"Content structure":["Estructura del contingut"],Public:["P\xfablica"],"Protected with a password you choose. Only those with the password can view this post.":["Protegida amb una contrasenya que trieu. Nom\xe9s aquells que coneguin la contrasenya podran veure aquesta entrada."],"Password Protected":["Protegit amb contrasenya"],"Only visible to site admins and editors.":["Nom\xe9s visible per administradors i editors."],Private:["Privada"],"Visible to everyone.":["Visible per tothom."],"Post Visibility":["Visibilitat de l'entrada"],"Would you like to privately publish this post now?":["Voleu publicar aquesta entrada de forma privada ara mateix?"],"Use a secure password":["Utilitza una contrasenya segura"],"Create password":["Crea una contrasenya"],"Move to Trash":["Mou a la paperera"],"Parent Term":["Terme pare"],"Parent Category":["Categoria mare"],"Add new term":["Afegeix un terme nou"],"Add new category":["Afegeix una categoria nova"],Term:["Terme"],Tag:["Etiqueta"],"Add New Term":["Afegeix un terme nou"],"Add New Tag":["Afegeix una etiqueta nova"],"Switch to Draft":["Canvia a esborrany"],"Are you sure you want to unpublish this post?":["Segur que voleu anul\xb7lar la publicaci\xf3 d'aquesta entrada?"],Immediately:["Immediatament"],"Save Draft":["Desa"],Saving:["S'est\xe0 desant"],"Publish:":["Publica:"],"Visibility:":["Visibilitat:"],"Are you ready to publish?":["Esteu preparats per publicar?"],"Copy Link":["Copia l'enlla\xe7"],"What\u2019s next?":["I ara qu\xe8?"],"is now live.":["\xe9s ara visible."],Published:["Publicada"],Schedule:["Planifica"],Update:["Actualitza"],"Submit for Review":["Envia per a revisi\xf3"],"Updating\u2026":["S'est\xe0 actualitzant..."],"Publishing\u2026":["S'est\xe0 publicant..."],"Allow Pingbacks & Trackbacks":["Permet retropings i retroenlla\xe7os"],"Permalink:":["Enlla\xe7 permanent:"],"Pending Review":["Pendent de revisi\xf3"],"%d Revision":["%d revisi\xf3","%d revisions"],"Suggestion:":["Suggeriment:"],"Post Format":["Format d'entrada"],Chat:["Xat"],Status:["Estat"],Standard:["Est\xe0ndard"],Aside:["Anotaci\xf3"],"Set Featured Image":["Defineix la imatge destacada"],"Learn more about manual excerpts":["M\xe9s informaci\xf3 sobre els resums manuals"],"Write an excerpt (optional)":["Escriu un resum (opcional)"],"Allow Comments":["Permet comentaris"],"Template:":["Plantilla:"],"no parent":["sense pare"],"no title":["sense t\xedtol"],Order:["Ordre"],"No blocks found.":["No s'ha trobat cap bloc."],"%d result found.":["S'ha trobat %d resultat.","S'han trobat %d resultats."],Saved:["S'ha desat"],Embeds:["Incrustats"],Blocks:["Blocs"],"Search for a block":["Cerca un bloc"],"Add block":["Afegeix bloc"],"Add %s":["Afegeix %s"],"Copy Error":["Error de c\xf2pia"],"Copy Post Text":["Copia el text de l'entrada"],"Attempt Recovery":["Intenta la recuperaci\xf3"],"The editor has encountered an unexpected error.":["L'editor s'ha trobat amb un error inesperat."],Undo:["Desf\xe9s"],Redo:["Ref\xe9s"],"(Multiple H1 headings are not recommended)":["(M\xfaltiples cap\xe7aleres H1 no s\xf3n recomanables)"],"(Your theme may already use a H1 for the post title)":["(El tema potser ja est\xe0 utilitzant una cap\xe7alera H1 per al t\xedtol de l'entrada)"],"(Incorrect heading level)":["(Nivell de cap\xe7alera incorrecte)"],"(Empty heading)":["(Cap\xe7alera buida)"],"Block Styles":["Estils de bloc"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Esteu segur que voleu suprimir aquest bloc reutilitzable?\n\nS'eliminar\xe0 de forma permanent de totes les entrades i p\xe0gines que el facin servir."],"Convert to Regular Block":["Converteix en bloc normal"],"More options":["M\xe9s opcions"],"Edit visually":["Edita visualment"],Duplicate:["Duplica"],"Blocks cannot be moved down as they are already at the bottom":["Els blocs no es poden moure m\xe9s avall perqu\xe8 ja es troben al final"],"Blocks cannot be moved up as they are already at the top":["Els blocs no es poden moure m\xe9s amunt perqu\xe8 ja es troben al principi"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["El bloc %s es l'\xfanic bloc i no es pot moure"],"Edit as HTML":["Edita com HTML"],"Convert to Blocks":["Converteix a blocs"],"Block: %s":["Bloc: %s"],"This block has encountered an error and cannot be previewed.":["Aquest bloc ha trobat un error i no es pot previsualitzar."],"No block selected.":["No s'ha seleccionat cap bloc."],"Transform into:":["Transforma en:"],Remove:["Suprimeix"],"Find original":["Troba l'original"],"Copy All Content":["Copia tot el contingut"],"Copied!":["S'ha copiat!"],"Additional settings are now available in the Editor block settings sidebar":["Ara hi ha par\xe0metres addicionals disponibles a la barra de configuraci\xf3 de l'editor de blocs"],Visibility:["Visibilitat"],"Status & Visibility":["Estat i visibilitat"],"Page Attributes":["Atributs de la p\xe0gina"],Block:["Bloc"],Document:["Document"],"Featured Image":["Imatge destacada"],"Close settings":["Tanca la configuraci\xf3"],"Editor content":["Contingut de l'editor"],Tools:["Eines"],Editor:["Editor"],"Code Editor":["Editor de codi"],"Visual Editor":["Editor visual"],"Editor top bar":["Editor de la barra superior"],Settings:["Opcions"],Reset:["Reinicia"],"Dismiss this notice":["Descarta aquest av\xeds"],"Item removed.":["S'ha suprimit l'element."],"Item added.":["S'ha afegit l'element."],"Drop files to upload":["Desa els fitxers per penjar"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["S'ha produ\xeft un error desconegut."],"No results.":["Cap resultat."],"%d result found, use up and down arrow keys to navigate.":["S'ha trobat %d resultat, feu servir les fletxes amunt i avall per navegar.","S'han trobat %d resultats, feu servir les fletxes amunt i avall per navegar."],"(no title)":["(sense t\xedtol)"],URL:["URL"],Submit:["Tramet"],Close:["Tanca"],"Insert link":["Insereix un enlla\xe7"],"Edit link":["Edita l'enlla\xe7"],Link:["Enlla\xe7"],Strikethrough:["Ratllat"],Italic:["It\xe0lica"],Bold:["Negreta"],"Remove link":[],"Number of items":["Nombre d'elements"],All:["Tot"],Category:["Categoria"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["De m\xe9s antigues a m\xe9s recents"],"Newest to Oldest":["De m\xe9s recents a m\xe9s antigues"],"Order by":["Ordena per"],Select:["Selecciona"],"Select or Upload Media":["Selecciona o penja fitxers multim\xe8dia"],Video:["V\xeddeo"],"Edit video":["Edita el v\xeddeo"],"Write\u2026":["Escriu..."],poetry:["poesia"],Verse:["Vers"],"New Column":["Columna nova"],"Delete Column":["Suprimeix la columna"],"Add Column After":["Afegeix una columna despr\xe9s de"],"Add Column Before":["Afegeix una columna abans de"],"Delete Row":["Suprimeix la fila"],"Add Row After":["Afegeix una fila despr\xe9s de"],"Add Row Before":["Afegeix una fila abans de"],"Edit table":["Edita la taula"],Table:["Taula"],"Write subheading\u2026":["Escriu un subt\xedtol..."],"Write shortcode here\u2026":["Escriu el codi de substituci\xf3 aqu\xed..."],Shortcode:["Codi de substituci\xf3"],divider:["divisor"],"horizontal-line":["l\xednia-horitzontal"],Separator:["Separador"],Quote:["Cita"],"Write citation\u2026":["Escriu una cita..."],"Write quote\u2026":["Escriu la cita..."],Pullquote:["Nota destacada"],"Write preformatted text\u2026":["Escriu text preformatat..."],Preformatted:["Preformatat"],text:["text"],Paragraph:["Par\xe0graf"],"Font Size":["Mida de la font"],"Drop Cap":["Lletra de caixa alta"],"Text Settings":["Configuraci\xf3 del text"],"Read more":["Llegeix m\xe9s"],"Write list\u2026":["Escriu una llista..."],"numbered list":["llista numerada"],"ordered list":["llista ordenada"],"bullet list":["llista de pics"],"Indent list item":["Sagna l'element de la llista"],"Outdent list item":["Desf\xe9s el sagnat de l'element de la llista"],"Convert to ordered list":["Converteix en llista ordenada"],"Convert to unordered list":["Converteix en llista no ordenada"],List:["Llista"],"recent posts":["entrades recents"],"No posts found.":["No s'ha trobat cap entrada."],"Latest Posts":["\xdaltimes entrades"],"Display post date":["Mostra la data de l'entrada"],"Grid view":["Vista en graella"],"List view":["Vista en llista"],photo:["foto"],"Image Settings":["Configuraci\xf3 de la imatge"],Image:["Imatge"],Preview:["Previsualitza"],embed:["incrusta"],"Custom HTML":["HTML personalitzat"],subtitle:["subt\xedtol"],title:["t\xedtol"],Heading:["Cap\xe7alera"],"Write heading\u2026":["Escriu la cap\xe7alera..."],"Heading %d":["Cap\xe7alera %d"],Level:["Nivell"],"Heading Settings":["Configuraci\xf3 de la cap\xe7alera"],photos:["fotos"],images:["imatges"],"Remove Image":["Suprimeix la imatge"],None:["Cap"],"Media File":["M\xe8dia"],"Attachment Page":["P\xe0gina dels adjunts"],"Crop Images":["Escap\xe7a imatges"],"Gallery Settings":["Configuraci\xf3 de la galeria"],Gallery:["Galeria"],Classic:["Edita el cl\xe0ssic"],video:["v\xeddeo"],audio:["\xe0udio"],music:["m\xfasica"],image:["imatge"],blog:["blog"],post:["entrada"],"Embedded content from %s":["Contingut incrustat des de %s"],"Enter URL to embed here\u2026":["Introdueix l'URL a incrustar aqu\xed..."],"%s URL":["URL %s"],"Embedding\u2026":["S'est\xe0 incrustant..."],"Write title\u2026":["Escriu un t\xedtol..."],"Fixed Background":["Fons fix"],"Edit image":["Edita la imatge"],Columns:["Columnes"],Experiments:["Experiments"],Code:["Codi"],"Write code\u2026":["Escriu codi..."],Categories:["Categories"],"Show Hierarchy":["Mostra la jerarquia"],"Show post counts":["Mostra el nombre d'entrades"],"Categories Settings":["Configuraci\xf3 de les categories"],"Add text\u2026":["Afegeix un text..."],Button:["Bot\xf3"],Apply:["Aplica"],"Text Color":["Color del text"],"Background Color":["Color de fons"],"Block has been deleted or is unavailable.":["El bloc s'ha eliminat o no est\xe0 disponible."],"Reusable Blocks":["Blocs reutilitzables"],Cancel:["Cancel\xb7la"],Edit:["Edita"],"Edit audio":["Edita l'\xe0udio"],"Write caption\u2026":["Escriu una llegenda..."],"Use URL":["Utilitza l'URL"],Audio:["\xc0udio"],Upload:["Penja"],"Additional CSS Class(es)":["Classe(s) CSS addicional(s)"],"HTML Anchor":["\xc0ncora HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Aquesta combinaci\xf3 de colors pot ser dif\xedcil de llegir. Intenteu fer servir un color de fons m\xe9s brillant i/o un color de text m\xe9s fosc."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Aquesta combinaci\xf3 de colors pot ser dif\xedcil de llegir. Intenteu fer servir un color de fons m\xe9s fosc i/o un color de text m\xe9s brillant."],Clear:["Neteja"],"Custom color picker":["Selector de color personalitzat"],"Color: %s":["Color: %s"],"Full Width":["Amplada completa"],"Wide Width":["Amplada gran"],Widgets:["Ginys"],Formatting:["Format"],"Common Blocks":["Blocs comuns"],"Align Right":["Alinea a la dreta"],"Align Center":["Alinea al centre"],"Align Left":["Alinea a l'esquerra"],"Printing since 1440. This is the development plugin for the new block editor in core.":["S'est\xe0 imprimint des de 1440. Aquesta \xe9s una extensi\xf3 en desenvolupament per a l'editor de blocs nou del nucli."],"Add title":["Afegeix t\xedtol"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["El mode de desenvolupament de Gutenberg necessita generar alguns fitxers. Executeu npm install per instal\xb7lar-ne les depend\xe8ncies, npm run build per generar els fitxers o npm run dev per generar els fitxers i mirar els canvis de codi. Vegeu el fitxer contribucions per a m\xe9s informaci\xf3."],Author:["Autor"],Slug:["Resum"],Discussion:["Debats "],"Custom Fields":["Camps personalitzats"],Excerpt:["Extracte"],Publish:["Publica"],Metadata:["Metadades"],Save:["Desa"],Documentation:["Documentaci\xf3 (en angl\xe8s)"],"Select Category":["Selecciona la categoria"],"(Untitled)":["(sense t\xedtol)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["El Gutenberg necessita el WordPress %s o superior per a funcionar correctament. Actualitzeu el WordPress abans d'activar el Gutenberg."],"Gutenberg Team":["Equip del Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["fa %s"],"Block style name must be a string.":["El nom de l'estil del bloc ha de ser una cadena de text."]}},827,[]); +__d(function(e,o,t,a,n,r,i){n.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":["Barevn\xfd p\u0159echod: %s"],"Gradient code: %s":["K\xf3d barevn\xe9ho p\u0159echodu: %s"],"All content copied.":["Ve\u0161ker\xfd obsah byl zkop\xedrov\xe1n."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Nahr\xe1v\xe1n\xed souboru se nezda\u0159ilo. Pokud se jedn\xe1 o fotku, nebo velk\xfd obr\xe1zek, zmen\u0161ete jeho rozm\u011bry a zkuste to znovu."],Gradient:["Barevn\xfd p\u0159echod"],"Gradient Presets":["P\u0159edvolby p\u0159echod\u016f"],"No Preview Available.":["N\xe1hled nen\xed k dispozici."],Midnight:["P\u016flnoc"],"Electric grass":["Elektrizuj\xedc\xed tr\xe1va"],"Pale ocean":["Bled\xfd oce\xe1n"],"Luminous dusk":["Sv\u011bt\xe9lkuj\xedc\xed prach"],"Blush bordeaux":["Purpurov\u011b \u010derven\xe1"],"Blush light purple":["Pastelov\u011b sv\u011btle fialov\xe1"],"Cool to warm spectrum":["Studen\xe9 a\u017e tepl\xe9 barvy"],"Very light gray to cyan bluish gray":["Velice sv\u011btle \u0161ed\xe1 a\u017e azurov\u011b-modro-\u0161ed\xe1"],"Luminous vivid orange to vivid red":["Sv\u011btl\xe1 syt\u011b oran\u017eov\xe1 a\u017e syt\u011b \u010derven\xe1"],"Luminous vivid amber to luminous vivid orange":["Sv\u011btl\xe1 syt\u011b \u017elut\xe1 a\u017e sv\u011btl\xe1 syt\u011b oran\u017eov\xe1"],"Light green cyan to vivid green cyan":["Sv\u011btl\xe1 azurov\u011b-zelen\xe1 a\u017e syt\u011b azurov\u011b-zelen\xe1"],"Vivid cyan blue to vivid purple":["Syt\u011b azurov\u011b-modr\xe1 a\u017e syt\u011b azurov\u011b-fialov\xe1"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6. prosince 2018"],"February 21, 2019":["21. ledna 2019"],"May 7, 2019":["7. kv\u011btna 2019"],"Release Date":["Datum vyd\xe1n\xed"],"Jazz Musician":["Jazzman"],Version:["Verze"],"Six.":["\u0160est."],"Five.":["P\u011bt."],"Four.":["\u010cty\u0159i."],"Three.":["T\u0159i."],"Two.":["Dv\u011b."],"One.":["Jedna."],"One of the hardest things to do in technology is disrupt yourself.":["Jednou z nejobt\xed\u017en\u011bj\u0161\xedch v\u011bc\xed s dne\u0161n\xed technikou je schopnost odpoutat se."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["V\u0161e okolo je t\xe9m\u011b\u0159 \u010dern\xe9. Nyn\xed, kdy\u017e se kamera pohybuje sm\u011brem k oknu, kter\xe9 je o velikosti po\u0161tovn\xed zn\xe1mky, objev\xed se jin\xe9 formy;"],"Window, very small in the distance, illuminated.":["Mal\xe9 okno, daleko, osv\u011btleno."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURA)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["The wren
Earns his living
Noiselessly."],"Welcome to the wonderful world of blocks\u2026":["V\xedtejte v b\xe1je\u010dn\xe9m sv\u011bte blok\u016f\u2026"],"Snow Patrol":["Sn\u011b\u017en\xe1 str\xe1\u017e"],Dimensions:["Rozm\u011bry"],"Minimum height in pixels":["Minim\xe1ln\xed v\xfd\u0161ka (v pixelech)"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["V\xfdzva k akci"],"In quoting others, we cite ourselves.":["\u010clov\u011bk by musel \u017e\xedt \xfapln\u011b nesmysln\u011b, aby tu nekone\u010dnou nesmyslnost nakonec prolomil."],cite:["cit\xe1t"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc \u2013 vypad\xe1 st\xe1le zasn\u011b\u017een\xe1, klidn\xe1 a vyrovnan\xe1."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vel eros non orci gravida lobortis a non felis. Sed ultrices id orci hendrerit tempus. Integer nulla risus, porttitor quis auctor quis, sodales quis eros."],"Block navigation":["Navigace mezi bloky"],"Enable Full Site Editing":["Povolit \xfapravy cel\xe9ho webu"],"Full Site Editing":["\xdapravy cel\xe9ho webu"],"Templates to include in your theme.":["\u0160ablony (str\xe1nek), kter\xe9 maj\xed b\xfdt obsa\u017eeny v \u0161ablon\u011b."],Templates:["\u0160ablony"],"Inserter Help Panel":["N\xe1hledy blok\u016f"],"Pre-publish Checks":["Kontrola p\u0159ed publikov\xe1n\xedm"],"Please contact your site administrator to install new blocks.":["Pro instalaci nov\xfdch blok\u016f nem\xe1te dostate\u010dn\xe9 opr\xe1vn\u011bn\xed."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["V adres\xe1\u0159i nebyly nalezeny \u017e\xe1dn\xe9 bloky. Pro instalaci nov\xfdch blok\u016f kontaktujte administr\xe1tora webu."],"No blocks found in your library.":["V adres\xe1\u0159i nebyly nalezeny \u017e\xe1dn\xe9 bloky."],"No blocks found in your library. These blocks can be downloaded and installed:":["V adres\xe1\u0159i nebyly nalezeny \u017e\xe1dn\xe9 bloky. Tyto bloky mohou b\xfdt sta\u017eeny a nainstalov\xe1ny:"],"No blocks found in your library. We did find %d block available for download.":["V adres\xe1\u0159i nebyly nalezeny \u017e\xe1dn\xe9 bloky. %d blok je dostupn\xfd ke sta\u017een\xed.","V adres\xe1\u0159i nebyly nalezeny \u017e\xe1dn\xe9 bloky. %d bloky jsou dostupn\xe9 ke sta\u017een\xed.","V adres\xe1\u0159i nebyly nalezeny \u017e\xe1dn\xe9 bloky. %d blok\u016f je dostupn\xfdch ke sta\u017een\xed."],"Block previews can\u2019t load.":["N\xe1hledy blok\u016f nelze na\u010d\xedst."],Retry:["Opakovat"],"Block previews can't install.":["N\xe1hledy blok\u016f nelze instalovat."],"Updated %s":["Aktualizov\xe1no %s"],"%d active installation":["%d aktivn\xed instalace","%d aktivn\xed instalace","%d aktivn\xedch instalac\xed"],"This author has %d block, with an average rating of %d.":["Autor m\xe1 %d blok, s pr\u016fm\u011brn\xfdm hodnocen\xedm %d.","Autor m\xe1 %d bloky, s pr\u016fm\u011brn\xfdm hodnocen\xedm %d.","Autor m\xe1 %d blok\u016f, s pr\u016fm\u011brn\xfdm hodnocen\xedm %d."],"Authored by %s":["Autor: %s"],Add:["P\u0159idat"],"%d total rating":["%d hodnocen\xed","%d hodnocen\xed","%d hodnocen\xed"],"%s out of 5 stars":["%s z 5 hv\u011bzdi\u010dek"],"Enter Address":["Zadejte adresu"],"Pill Shape":["Tvar pilulky"],"Logos Only":["Jen loga"],"Create a block of links to your social media or external sites":["Vytvo\u0159te blok odkaz\u016f na soci\xe1ln\xed s\xedt\u011b nebo extern\xed weby"],"Social links":["Odkazy soci\xe1ln\xedch s\xedt\xed"],"Open block navigator":["Otev\u0159\xedt blok navigace"],"Attachment page":["Str\xe1nku se zobrazen\xedm souboru"],Fill:["S v\xfdpln\xed"],"Link rel":["Druh odkazu (rel)"],"Border Radius":["Zaoblen\xed okraj\u016f"],"Write gallery caption\u2026":["Napi\u0161te titulek galerie\u2026"],"Content Blocks":["Bloky obsahu"],"Restore the backup":["Obnovit z\xe1lohu"],"The backup of this post in your browser is different from the version below.":["Z\xe1loha tohoto p\u0159\xedsp\u011bvku ve va\u0161em prohl\xed\u017ee\u010di se li\u0161\xed od n\xed\u017ee uveden\xe9 verze."],"Enable Block Directory search":["Povolit prohled\xe1v\xe1n\xed adres\xe1\u0159e blok\u016f"],"Block Directory":["Adres\xe1\u0159 blok\u016f"],"Unable to connect to the filesystem. Please confirm your credentials.":["Nelze se p\u0159ipojit k souborov\xe9mu syst\xe9mu. Potvr\u010fte sv\xe9 p\u0159ihla\u0161ovac\xed \xfadaje."],"Sorry, you are not allowed to install blocks.":["Pro instalaci blok\u016f nem\xe1te dostate\u010dn\xe9 opr\xe1vn\u011bn\xed."],"%1$d block is disabled.":["%1$d blok je zak\xe1z\xe1n.","%1$d bloky jsou zak\xe1z\xe1ny.","%1$d blok\u016f je zak\xe1z\xe1no."],"Reverse List Numbering":["Obr\xe1tit sm\u011br \u010d\xedslov\xe1n\xed"],"Start Value":["Prvn\xed hodnota"],"Ordered List Settings":["Nastaven\xed \u010d\xedslovan\xe9ho seznamu"],"Clear Media":["Vymazat m\xe9dia"],"block style\x04Circle Mask":["Kruhov\xe1 maska"],"Default Style":["V\xfdchoz\xed styl"],"Not set":["Nen\xed nastaveno"],"While writing, you can press / to quickly insert new blocks.":["B\u011bhem psan\xed m\u016f\u017eete stisknout kl\xe1vesu \u201e/\u201c, pro rychl\xe9 p\u0159id\xe1n\xed nov\xfdch blok\u016f."],"Browse through the library to learn more about what each block does.":["Projd\u011bte si adres\xe1\u0159 blok\u016f a zjist\u011bte, co ka\u017ed\xfd blok um\xed."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["K dispozici jsou bloky pro v\u0161echny druhy obsahu: m\u016f\u017eete vkl\xe1dat text, nadpisy, obr\xe1zky, seznamy, a mnoho dal\u0161\xedho."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["V\xedtejte v b\xe1je\u010dn\xe9m sv\u011bt\u011b blok\u016f! Blok je z\xe1kladn\xed \u010d\xe1st\xed obsahu v tomto editoru."],"Version of the content block format used by the object.":["Verze form\xe1tu bloku obsahu pou\u017eit\xe9ho objektem."],"HTML content for the object, transformed for display.":["Obsah HTML pro dan\xfd objekt, pro zobrazen\xed."],"Content for the object, as it exists in the database.":["Obsah objektu tak, jak existuje v datab\xe1zi."],"The content for the object.":["Obsah objektu."],"Change column alignment":["Zm\u011bnit zarovn\xe1n\xed sloupce"],"Align Column Right":["Zarovnat doprava"],"Align Column Center":["Zarovnat na st\u0159ed"],"Align Column Left":["Zarovnat doleva"],Color:["Barva"],"Vivid purple":["Syt\u011b fialov\xe1"],"Disable & Reload":["Zak\xe1zat a na\u010d\xedst znovu"],"Enable & Reload":["Povolit a na\u010d\xedst znovu"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Tato zm\u011bna vy\u017eaduje op\u011btovn\xe9 na\u010dten\xed str\xe1nky. P\u0159ed op\u011btovn\xfdm na\u010dten\xedm zkontrolujte, zda je obsah ulo\u017een."],"Display these keyboard shortcuts.":["Zobrazit tyto kl\xe1vesov\xe9 zkratky."],"Experiments Settings":["Nastaven\xed experiment\xe1ln\xedch funkc\xed"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg m\xe1 n\u011bkolik experiment\xe1ln\xedch funkc\xed, kter\xe9 m\u016f\u017eete zapnout. Jednodu\u0161e vyberete v\u0161e, co chcete pou\u017e\xedvat. Tyto funkce se v pr\u016fb\u011bhu \u010dasu budou pravd\u011bpodobn\u011b m\u011bnit, proto je d\u016frazn\u011b doporu\u010deno pou\u017e\xedvat je jen mimo produk\u010dn\xed prost\u0159ed\xed."],"Enable Widgets Screen and Legacy Widget Block":["Povolit widgety v Gutenbergu a blok star\u0161\xed verze widgetu"],"Experiment settings":["Nastaven\xed experiment\u016f"],"Block name name must be a string.":["N\xe1zev bloku mus\xed b\xfdt \u0159et\u011bzec."],Custom:["Vlastn\xed"],Draft:["Koncept"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blok \u201e%1$s\u201c neobsahuje styl s n\xe1zvem \u201e%2$s.\u201c."],"Learn more about anchors":["V\xedce o HTML z\xe1lo\u017ek\xe1ch"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Napi\u0161te jedno nebo dv\u011b slova, bez mezer, abyste vytvo\u0159ili jedine\u010dnou URL adresu pro tento nadpis, zvanou \u201ez\xe1lo\u017eka\u201c. Pot\xe9 budete moci p\u0159\xedmo odk\xe1zat na tuto \u010d\xe1st str\xe1nky."],"Widget Blocks (Experimental)":["Bloky widget (experiment\xe1ln\xed)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Nahrajte video, vyberte st\xe1vaj\xedc\xed z knihovny m\xe9di\xed, nebo jej p\u0159idejte pomoc\xed URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Nahrajte obr\xe1zek, vyberte st\xe1vaj\xedc\xed z knihovny m\xe9di\xed, nebo jej p\u0159idejte pomoc\xed URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Nahrajte audio, vyberte st\xe1vaj\xedc\xed z knihovny m\xe9di\xed, nebo jej p\u0159idejte pomoc\xed URL."],"Upload a media file or pick one from your media library.":["Nahrajte soubor, nebo vyberte st\xe1vaj\xedc\xed z knihovny m\xe9di\xed."],Skip:["P\u0159esko\u010dit"],"Select a pattern to start with.":["Vyberte s jak\xfdm rozvr\u017een\xedm chcete za\u010d\xedt."],"Add a page, link, or other item to your navigation.":["P\u0159idejte str\xe1nku, odkaz, nebo polo\u017eku do naviga\u010dn\xedho menu."],"What's this?":["V\xedce informac\xed"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Zak\xe1zat vyhled\xe1va\u010d\u016fm n\xe1sledovat tento odkaz."],"Provide more context about where the link goes.":["Poskytn\u011bte \u0161ir\u0161\xed kontext, kam odkaz sm\u011b\u0159uje."],"Title Attribute":["Atribut title"],"SEO Settings":["Nastaven\xed SEO"],Description:["Popis"],"Open in new tab":["Otev\xedrat v nov\xe9 z\xe1lo\u017ece"],links:["odkazy"],navigation:["navigace"],menu:["menu"],"Add a navigation block to your site.":["P\u0159id\xe1 na web naviga\u010dn\xed menu."],"Upload a file or pick one from your media library.":["Nahrajte soubor, nebo vyberte st\xe1vaj\xedc\xed z knihovny m\xe9di\xed."],"Learn more about embeds":["V\xedce o sd\xedlen\xe9m obsahu"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Vlo\u017ete odkaz na obsah, kter\xfd chcete vid\u011bt na sv\xe9m webu."],"Upload an image or video file, or pick one from your media library.":["Nahrajte obr\xe1zek \u010di video, nebo vyberte st\xe1vaj\xedc\xed soubor z knihovny m\xe9di\xed."],"Three columns; wide center column":["T\u0159i sloupce; \u0161irok\xfd st\u0159edn\xed sloupec"],"Three columns; equal split":["T\u0159i sloupce; rovnom\u011brn\u011b rozd\u011blen\xe9"],"Two columns; two-thirds, one-third split":["Dva sloupce; rozd\u011bleno na 2/3 a 1/3"],"Two columns; one-third, two-thirds split":["Dva sloupce; rozd\u011bleno na 1/3 a 2/3"],"Two columns; equal split":[" Dva sloupce; rovnom\u011brn\u011b rozd\u011blen\xe9"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Tento web nem\xe1 \u017e\xe1dn\xe9 %s, aktu\xe1ln\u011b zde proto nen\xed nic k zobrazen\xed."],"More tools & options":["V\xedce mo\u017enost\xed a n\xe1stroj\u016f"],"Create Table":["Vytvo\u0159it"],"Insert a table for sharing data.":["Vlo\u017ete tabulku pro sd\xedlen\xed dat."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Rozd\u011blit"],"verb\x04Group":["Seskupit"],"Separate with commas or the Enter key.":["Odd\u011blte je \u010d\xe1rkami nebo kl\xe1vesou ENTER."],"Separate with commas, spaces, or the Enter key.":["Odd\u011blte je \u010d\xe1rkami, mezerami nebo kl\xe1vesou ENTER."],"Separate multiple classes with spaces.":["V\xedce t\u0159\xedd odd\u011blte mezerami."],"Move image forward":["Posunout obr\xe1zek dop\u0159edu"],"Move image backward":["P\u0159esunout obr\xe1zek dozadu"],"Sorry, you are not allowed to edit sidebars.":["Nem\xe1te opr\xe1vn\u011bn\xed k \xfaprav\xe1m postrann\xedch panel\u016f."],"Sorry, you are not allowed to read sidebars.":["Nem\xe1te opr\xe1vn\u011bn\xed \u010d\xedst postrann\xed panely."],"The sidebar\u2019s ID.":["ID postrann\xedho panelu."],"Displays a set of blocks":["Zobraz\xed se jako sadu blok\u016f"],"Blocks Area":["Oblast blok\u016f"],"Block rendered as empty.":["Blok je vykreslen jako pr\xe1zdn\xfd."],"Inline Code":["Vlo\u017een\xfd k\xf3d"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Pozn\xe1mka: Automatick\xe9 p\u0159ehr\xe1v\xe1n\xed videa m\u016f\u017ee u n\u011bkter\xfdch n\xe1v\u0161t\u011bvn\xedk\u016f zp\u016fsobit probl\xe9my s pou\u017eitelnost\xed."],"Footer section":["Sekce z\xe1pat\xed"],"Header section":["Sekce z\xe1hlav\xed"],"Sorting and Filtering":["Filtry a \u0159azen\xed"],"Post Meta Settings":["Nastaven\xed dal\u0161\xedch informac\xed p\u0159\xedsp\u011bvku"],"Post Content":["Obsah p\u0159\xedsp\u011bvku"],"Post Content Settings":["Nastaven\xed obsahu p\u0159\xedsp\u011bvku"],"Percentage width":["\u0160\xed\u0159ka v procentech"],"Column Settings":["Nastaven\xed sloupc\u016f"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Pozn\xe1mka: Automatick\xe9 p\u0159ehr\xe1v\xe1n\xed zvuku m\u016f\u017ee u n\u011bkter\xfdch n\xe1v\u0161t\u011bvn\xedk\u016f zp\u016fsobit probl\xe9my s pou\u017eitelnost\xed."],"Block area updated.":["Oblast bloku byla aktualizov\xe1na."],"Block area scheduled.":["Oblast bloku byla napl\xe1nov\xe1na."],"Block area published.":["Oblast bloku byla publikov\xe1na."],"Block areas list":["Seznam oblast\xed blok\u016f"],"Block areas list navigation":["Navigace v seznamu oblast\xed blok\u016f"],"Filter block areas list":["Filtrovat seznam oblasti blok\u016f"],"No block area found.":["Nebyla nalezena \u017e\xe1dn\xe1 oblast bloku."],"Search Block Areas":["Hledat oblasti blok\u016f"],"All Block Areas":["V\u0161echny oblasti blok\u016f"],"View Block Area":["Zobrazit oblast bloku"],"Edit Block Area":["Upravit oblast bloku"],"New Block Area":["Nov\xe1 oblast bloku"],"Add New Block Area":["P\u0159idat novou oblast bloku"],"admin menu\x04Block Areas":["Oblasti blok\u016f"],"post type singular name\x04Block Area (Experimental)":["Oblast bloku (experiment\xe1ln\xed)"],"post type general name\x04Block Area (Experimental)":["Oblast blok\u016f (experiment\xe1ln\xed)"],"Experimental custom post type that will store block areas referenced by themes.":["Experiment\xe1ln\xed vlastn\xed typ obsahu, kter\xfd bude ukl\xe1dat oblasti blok\u016f odkazovan\xe9 \u0161ablonami."],"Widgets screen content":["Obsah obrazovky widget\u016f"],"Widgets advanced settings":["Pokro\u010dil\xe9 nastaven\xed widget\u016f"],"(experimental)":["(experiment\xe1ln\xed)"],"Block Areas":["Oblasti blok\u016f"],"Widgets screen top bar":["Horn\xed li\u0161ta obrazovky widget\u016f"],"This color combination may be hard for people to read.":["Tato barevn\xe1 kombinace m\u016f\u017ee b\xfdt h\u016f\u0159e \u010diteln\xe1."],"There is no poster image currently selected":["N\xe1hledov\xfd obr\xe1zek aktu\xe1ln\u011b nen\xed vybr\xe1n"],"The current poster image url is %s":["Aktu\xe1ln\xed URL n\xe1hledov\xe9ho obr\xe1zku je %s"],section:["sekce"],row:["\u0159\xe1dek"],wrapper:["wrapper"],container:["kontejner"],"A block that groups other blocks.":["Blok, kter\xfd seskupuje jin\xe9 bloky."],Group:["Skupina"],"Crop image to fill entire column":["O\u0159\xedznout obr\xe1zek, aby vyplnil cel\xfd sloupec"],"Play inline":["P\u0159ehr\xe1vat uvnit\u0159 obsahu str\xe1nky"],"Leave empty if the image is purely decorative.":["Nevypl\u0148ujte jestli je obr\xe1zek \u010dist\u011b dekorativn\xed."],"Describe the purpose of the image":["Popi\u0161te smysl obr\xe1zku"],"Add a block":["P\u0159idat blok"],"Block vertical alignment setting label\x04Change vertical alignment":["Zm\u011bnit svisl\xe9 zarovn\xe1n\xed"],"Block vertical alignment setting\x04Vertically Align Bottom":["Zarovnat dol\u016f"],"Block vertical alignment setting\x04Vertically Align Middle":["Zarovnat doprost\u0159ed"],"Replace Image":["Nahradit obr\xe1zek"],"Block vertical alignment setting\x04Vertically Align Top":["Zarovnat nahoru"],"Display a legacy widget.":["Zobraz\xed p\u016fvodn\xed WordPress widget."],"Legacy Widget (Experimental)":["Star\u0161\xed verze widgetu (experiment\xe1ln\xed)"],"Change widget":["Zm\u011bnit widget"],"Legacy Widget":["Star\u0161\xed verze widgetu"],"You don't have permissions to use widgets on this site.":["Nem\xe1te dostate\u010dn\xe9 opr\xe1vn\u011bn\xed pro pou\u017e\xedv\xe1n\xed widget\u016f na tomto webu."],"Select a legacy widget to display:":["Vyberte star\u0161\xed verzi widgetu, kter\xfd chcete zobrazit:"],"There are no widgets available.":["Nejsou k dispozici \u017e\xe1dn\xe9 widgety."],"Change block type or style":["Zm\u011bnit typ nebo styl bloku"],"keyboard key\x04Space":["Mezern\xedk"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["Dal\u0161\xed prvky form\xe1tovan\xe9ho textu"],"Search Terms":["Hledan\xe9 v\xfdrazy"],"Exit the Editor":["Ukon\u010dit editor"],"Block Manager":["Spr\xe1vce blok\u016f"],"Class name of the widget.":["N\xe1zev t\u0159\xeddy widgetu."],"Sorry, you are not allowed to access widgets on this site.":["Nem\xe1te dostate\u010dn\xe9 opr\xe1vn\u011bn\xed pro p\u0159\xedstup k widget\u016fm na tomto webu."],"Widgets (beta)":["Widgety (beta)"],link:["odkaz"],"Embedded content from %s can't be previewed in the editor.":["Vlo\u017een\xfd obsah z %s nelze v editoru zobrazit."],"Custom Color":["Vlastn\xed barva"],"Prompt visitors to take action with a button-style link.":["Vyzv\u011bte n\xe1v\u0161t\u011bvn\xedky k proveden\xed akce pomoc\xed odkazu ve stylu tla\u010d\xedtka."],"Stick to the top of the blog":["Zv\xfdraznit tento p\u0159\xedsp\u011bvek"],"Read about permalinks":["V\xedce o trval\xfdch odkazech (anglicky)"],"The last part of the URL.":["Posledn\xed \u010d\xe1st URL adresy."],"URL Slug":["N\xe1zev v URL"],"A cloud of your most used tags.":["Nejpou\u017e\xedvan\u011bj\u0161\xed \u0161t\xedtky (\u010di dal\u0161\xed voliteln\xe9 taxonomie) zobrazen\xe9 ve form\u011b p\u0159ehledn\xe9ho shluku."],"Tag Cloud":["\u0160t\xedtky"],Taxonomy:["Taxonomie"],"Tag Cloud Settings":["Nastaven\xed \u0161t\xedtk\u016f"],"- Select -":["- Vybrat -"],Default:["V\xfdchoz\xed"],find:["hledat"],"Help visitors find your content.":["Pomozte n\xe1v\u0161t\u011bvn\xedk\u016fm naj\xedt v\xe1\u0161 obsah."],Search:["Hledat"],"Add button text\u2026":["P\u0159idat text tla\u010d\xedtka\u2026"],"Button text":["Text tla\u010d\xedtka"],"Optional placeholder\u2026":["Voliteln\xfd z\xe1stupn\xfd text\u2026"],"Optional placeholder text":["Voliteln\xfd z\xe1stupn\xfd text"],"Add label\u2026":["P\u0159idat popisek\u2026"],"Label text":["Text popisku"],"image %1$d of %2$d in gallery":["%1$d. obr\xe1zek z %2$d v galerii"],archive:["archiv"],posts:["p\u0159\xedsp\u011bvky"],"A calendar of your site\u2019s posts.":["Kalend\xe1\u0159 publikovan\xfdch p\u0159\xedsp\u011bvk\u016f."],Calendar:["Kalend\xe1\u0159"],by:["od"],"An error has occurred, which probably means the feed is down. Try again later.":["Objevila se ne\u010dekan\xe1 chyba, RSS zdroj je pravd\u011bpodobn\u011b mimo provoz. Zkuste to pros\xedm pozd\u011bji."],"RSS Error:":["Chyba RSS:"],"block style\x04Default":["V\xfdchoz\xed"],"Fullscreen mode deactivated":["Celoobrazovkov\xfd re\u017eim byl deaktivov\xe1n"],"Fullscreen mode activated":["Celoobrazovkov\xfd re\u017eim byl aktivov\xe1n"],"Spotlight mode deactivated":["Re\u017eim nevyru\u0161ovan\xe9ho psan\xed byl deaktivov\xe1n"],"Spotlight mode activated":["Re\u017eim nevyru\u0161ovan\xe9ho psan\xed byl aktivov\xe1n"],"Top toolbar deactivated":["Horn\xed panel n\xe1stroj\u016f byl deaktivov\xe1n"],"Top toolbar activated":["Horn\xed panel n\xe1stroj\u016f byl aktivov\xe1n"],Back:["Zp\u011bt"],"Feature activated":["Prvek byl aktivov\xe1n"],"Feature deactivated":["Prvek byl deaktivov\xe1n"],"Vertical Pos.":["Vertik\xe1ln\xed poz."],"Horizontal Pos.":["Vodorovn\xe1 poz."],feed:["RSS"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Zobraz\xed polo\u017eky z libovoln\xe9ho informa\u010dn\xedho RSS nebo Atom kan\xe1lu."],RSS:["RSS"],"Max number of words in excerpt":["Maxim\xe1ln\xed po\u010det slov ve stru\u010dn\xe9m v\xfdpisu"],"Display excerpt":["Zobrazit stru\u010dn\xfd v\xfdpis"],"Display date":["Zobrazit datum"],"Display author":["Zobrazit autora"],"RSS Settings":["Nastaven\xed RSS"],"Edit RSS URL":["Upravit URL RSS"],"Content before this block will be shown in the excerpt on your archives page.":["Obsah nad t\xedmto blokem se v archivu zobraz\xed jako stru\u010dn\xfd v\xfdpis p\u0159\xedsp\u011bvku."],"Hide the excerpt on the full content page":["Nezobrazovat stru\u010dn\xfd v\xfdpis p\u0159i zobrazen\xed cel\xe9ho p\u0159\xedsp\u011bvku"],"The excerpt is visible.":["Stru\u010dn\xfd v\xfdpis p\u0159\xedsp\u011bvku je viditeln\xfd."],"The excerpt is hidden.":["Stru\u010dn\xfd v\xfdpis p\u0159\xedsp\u011bvku je skryt\xfd."],"Sorry, this content could not be embedded.":["Tento obsah nemohl b\xfdt vlo\u017een."],"Embed Amazon Kindle content.":["Vlo\u017ete obsah z Amazon Kindle."],ebook:["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Vlo\u017ete obsah z Crowdsignalu (d\u0159\xedve PollDaddy)."],"Focal Point Picker":["V\xfdb\u011br \xfast\u0159edn\xedho bodu"],Underline:["Podtr\u017een\xed"],"Attempt Block Recovery":["Pokusit se o obnoven\xed bloku"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Text\u2026"],"button label\x04Convert to link":["P\u0159ev\xe9st na odkaz"],"button label\x04Try again":["Zkusit znovu"],"Editor tips":["Tipy editoru"],"Block (selected)":["Blok (vybr\xe1no)"],"Document (selected)":["Dokument (vybr\xe1no)"],"%d word":["%d slovo","%d slova","%d slov"],"Top Toolbar":["Horn\xed panel n\xe1stroj\u016f"],"Link Rel":["Druh odkazu (rel)"],"Link CSS Class":["P\u0159ipojit t\u0159\xeddu CSS"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Vytvo\u0159te obsah a ulo\u017ete jej pro opakovan\xe9 pou\u017eit\xed v r\xe1mci webu. P\u0159i aktualizaci bloku se zm\u011bny projev\xed v\u0161ude, kde se dan\xfd blok pou\u017e\xedv\xe1."],"To edit the featured image, you need permission to upload media.":["Pro \xfapravu n\xe1hledov\xe9ho obr\xe1zku pot\u0159ebujete opr\xe1vn\u011bn\xed k nahr\xe1v\xe1n\xed medi\xe1ln\xedch soubor\u016f."],"To edit this block, you need permission to upload media.":["Chcete-li tento blok upravit, pot\u0159ebujete opr\xe1vn\u011bn\xed k nahr\xe1v\xe1n\xed medi\xe1ln\xedch soubor\u016f."],"(selected block)":["(vybran\xfd blok)"],"Block tools":["N\xe1stroje bloku"],Permalink:["Trval\xfd odkaz"],"This image has an empty alt attribute":["Tento obr\xe1zek nem\xe1 vypln\u011bn\xfd atribut alt."],"This image has an empty alt attribute; its file name is %s":["Tento obr\xe1zek nem\xe1 vypln\u011bn\xfd atribut alt; n\xe1zev souboru je %s."],"Block area reverted to draft.":["Blok byl p\u0159eveden zp\u011bt na koncept."],"Block area published privately.":["Blok byl publikov\xe1n soukrom\u011b."],"No block areas found in Trash.":["V ko\u0161i nebyly nalezeny \u017e\xe1dn\xe9 bloky."],"Block\x04Add New":["P\u0159idat nov\xfd"],"add new on admin bar\x04Block Area":["Oblast blok\u016f"],"Link inserted.":["Odkaz byl vlo\u017een."],"Warning: the link has been inserted but may have errors. Please test it.":["Upozorn\u011bn\xed: Pr\xe1v\u011b vlo\u017een\xfd odkaz m\u016f\u017ee obsahovat chyby, rad\u011bji ho pros\xedm vyzkou\u0161ejte."],"%s block selected.":["Je vybr\xe1n %s blok.","Jsou vybr\xe1ny %s bloky.","Je vybr\xe1no %s blok\u016f."],Thumbnail:["N\xe1hled"],"Full Size":["P\u016fvodn\xed velikost"],"Link selected.":["Odkaz byl vybr\xe1n."],"Start writing with text or HTML":["Za\u010dn\u011bte ps\xe1t text nebo k\xf3d HTML"],"Type text or HTML":["Zadejte text nebo HTML"],"Block icon":["Ikona bloku"],"Align Text Right":["Zarovnat doprava"],"Align Text Center":["Zarovnat na st\u0159ed"],"Align Text Left":["Zarovnat doleva"],"Start writing or type / to choose a block":["Za\u010dn\u011bte ps\xe1t nebo napi\u0161te / pro zvolen\xed bloku"],"Empty block; start writing or type forward slash to choose a block":["Pr\xe1zdn\xfd blok; za\u010dn\u011bte ps\xe1t nebo zadejte lom\xedtko pro zvolen\xed bloku"],"Paragraph block":["Blok odstavce"],"Page Break":["Rozd\u011blen\xed str\xe1nky"],"Stack on mobile":["Seskupit na mobilu"],Annotation:["Anotace"],"Drag images, upload new ones or select files from your library.":["P\u0159et\xe1hn\u011bte obr\xe1zky, nahrajte nov\xe9 nebo vyberte soubory z knihovny."],"blocks\x04Most Used":["Nejpou\u017e\xedvan\u011bj\u0161\xed"],"imperative verb\x04Resolve":["Opravit"],"font size name\x04Huge":["Obrovsk\xe9"],"font size name\x04Large":["Velk\xe9"],"font size name\x04Medium":["St\u0159edn\xed"],"font size name\x04Small":["Mal\xe9"],"font size name\x04Normal":["Norm\xe1ln\xed"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Importovat"],"button label\x04Download":["St\xe1hnout"],"button label\x04Embed":["Vlo\u017eit"],"block title\x04Embed":["Vlo\u017een\xed"],"block title\x04Classic":["Klasick\xfd editor"],"block style\x04Large":["Velk\xe9"],"%s (opens in a new tab)":["%s (otev\u0159e se na nov\xe9 z\xe1lo\u017ece)"],"Link edited.":["Odkaz byl upraven."],"Link removed.":["Odkaz byl odebr\xe1n."],media:["medi\xe1ln\xed soubor"],"Double-check your settings before publishing.":["P\u0159ed publikov\xe1n\xedm si zkontrolujte nastaven\xed."],"Generating preview\u2026":["Generov\xe1n\xed n\xe1hledu\u2026"],"Edit or update the image":["Upravte nebo aktualizujte obr\xe1zek"],Media:["M\xe9dia"],"Navigate to the nearest toolbar.":["P\u0159ej\xedt na nejbli\u017e\u0161\xed panel n\xe1stroj\u016f."],"Document tools":["N\xe1stroje dokumentu"],"Document and block tools":["N\xe1stroje pro dokument a bloky"],"Embed a video from your media library or upload a new one.":["Vlo\u017ete video z knihovny m\xe9di\xed, nebo nahrajte nov\xe9."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Napi\u0161te b\xe1se\u0148, nebo citujte text p\xedsn\u011b. Pou\u017e\xedvejte speci\xe1ln\xed form\xe1t mezer."],"Add white space between blocks and customize its height.":["P\u0159idejte mezeru mezi bloky a upravte jej\xed v\xfd\u0161ku."],"Insert additional custom elements with a WordPress shortcode.":["Vlo\u017ete dal\u0161\xed vlastn\xed prvky pomoci zkr\xe1cen\xe9ho z\xe1pisu (shortcode)."],"Create a break between ideas or sections with a horizontal separator.":["Odd\u011blte jednotliv\xe9 n\xe1pady nebo odd\xedly vodorovnou \u010darou."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Zv\xfdrazn\u011bte citovan\xfd text. \u201eP\u0159i citov\xe1n\xed ostatn\xedch, citujeme sami sebe.\u201c \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Zv\xfdrazn\u011bte vlastn\xed citovan\xfd text."],"Start with the building block of all narrative.":["Za\u010dn\u011bte z\xe1kladem v\u0161ech vypr\xe1v\u011bn\xed."],"Separate your content into a multi-page experience.":["Rozd\u011blte obsah na v\xedce str\xe1nek."],"Set media and words side-by-side for a richer layout.":["Um\xedst\u011bte vedle sebe text a medi\xe1ln\xed soubor, pro zaj\xedmav\u011bj\u0161\xed rozlo\u017een\xed."],"Media & Text Settings":["Nastaven\xed m\xe9di\xed a textu"],"Create a bulleted or numbered list.":["Vytvo\u0159te odr\xe1\u017ekov\xfd nebo \u010d\xedslovan\xfd seznam."],"Display a list of your most recent comments.":["Zobrazte seznam nejnov\u011bj\u0161\xedch koment\xe1\u0159\u016f."],"Insert an image to make a visual statement.":["Vlo\u017ete obr\xe1zek pro vytvo\u0159en\xed vizu\xe1ln\xedho prvku."],"Add custom HTML code and preview it as you edit.":["P\u0159idejte vlastn\xed k\xf3d HTML a zobrazte jeho n\xe1hled p\u0159i \xfaprav\xe1ch."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Uve\u010fte nov\xe9 odd\xedly a uspo\u0159\xe1dejte n\xe1v\u0161t\u011bvn\xedk\u016fm (a vyhled\xe1va\u010d\u016fm) obsah tak, aby pochopili strukturu textu."],"Display multiple images in a rich gallery.":["Zobrazte v\xedce obr\xe1zk\u016f v galerii."],"Add a link to a downloadable file.":["P\u0159idejte odkaz na soubor ke sta\u017een\xed."],"Embed videos, images, tweets, audio, and other content from external sources.":["Vkl\xe1dejte videa, obr\xe1zky, tweety, audio a dal\u0161\xed obsah z extern\xedch zdroj\u016f."],"Resize for smaller devices":["P\u0159izp\u016fsobit velikost pro men\u0161\xed za\u0159\xedzen\xed"],"This embed may not preserve its aspect ratio when the browser is resized.":["Tento embed nemus\xed zachovat sv\u016fj pom\u011br stran p\u0159i zm\u011bn\u011b velikosti okna."],"This embed will preserve its aspect ratio when the browser is resized.":["Tento embed zachov\xe1 sv\u016fj pom\u011br stran i p\u0159i zm\u011bn\u011b velikosti okna."],"Embed an Animoto video.":["Vlo\u017ete video z Animoto."],"Embed a Vimeo video.":["Vlo\u017ete video z Vimea."],"Embed Flickr content.":["Vlo\u017ete obsah z Flickru."],"Embed Spotify content.":["Vlo\u017ete obsah ze Spotify."],"Embed SoundCloud content.":["Vlo\u017ete obsah ze SoundCloudu."],"Embed a WordPress post.":["Vlo\u017ete p\u0159\xedsp\u011bvek z WordPressu."],"Embed an Instagram post.":["Vlo\u017ete p\u0159\xedsp\u011bvek z Instagramu."],"Embed a Facebook post.":["Vlo\u017ete p\u0159\xedsp\u011bvek z Facebooku."],"Embed a WordPress.tv video.":["Vlo\u017ete video z WordPress.tv."],"Embed a VideoPress video.":["Vlo\u017ete video z VideoPressu."],"Embed a Tumblr post.":["Vlo\u017ete p\u0159\xedsp\u011bvek z Tumblr."],"Embed a TED video.":["Vlo\u017ete video z TEDu."],"Embed Speaker Deck content.":["Vlo\u017ete obsah ze Speaker Deck."],"Embed a YouTube video.":["Vlo\u017ete video z YouTube."],"Embed SmugMug content.":["Vlo\u017ete obsah ze SmugMug."],"Embed Slideshare content.":["Vlo\u017ete obsah ze SlideShare."],"Embed Scribd content.":["Vlo\u017ete obsah ze Scribd."],"Embed Screencast content.":["Vlo\u017ete obsah ze Screencastu."],"Embed ReverbNation content.":["Vlo\u017ete obsah z ReverbNation."],"Embed a Reddit thread.":["Vlo\u017ete vl\xe1kno z Redditu."],"Embed Polldaddy content.":["Vlo\u017ete obsah z PollDaddy."],"Embed Mixcloud content.":["Vlo\u017ete obsah z Mixcloudu."],"Embed a tweet.":["Vlo\u017ete tweet."],"Embed Meetup.com content.":["Vlo\u017ete obsah z Meetup.com."],"Embed Kickstarter content.":["Vlo\u017ete obsah z Kickstarteru."],"Embed Issuu content.":["Vlo\u017ete obsah z Issuu."],"Embed Imgur content.":["Vlo\u017ete obsah z Imgur."],"Embed Hulu content.":["Vlo\u017ete obsah z Hulu."],"Embed a Dailymotion video.":["Vlo\u017ete video z Dailymotion."],"Embed CollegeHumor content.":["Vlo\u017ete obsah z CollegeHumor."],"Embed Cloudup content.":["Vlo\u017ete obsah z Cloudupu."],"Add an image or video with a text overlay \u2014 great for headers.":["P\u0159idejte obr\xe1zek nebo video p\u0159ekryt\xe9 textem \u2013 skv\u011bl\xe9 pro z\xe1hlav\xed."],"Display code snippets that respect your spacing and tabs.":["Zobrazte k\xf3d, kter\xfd respektuje va\u0161i strukturu."],"Use the classic WordPress editor.":["Pou\u017eijte klasick\xfd WordPress Editor."],"Display a list of all categories.":["Zobrazte seznam v\u0161ech rubrik."],"Embed a simple audio player.":["Vlo\u017ete jednoduch\xfd audio p\u0159ehr\xe1va\u010d."],"noun\x04View":["Zobrazen\xed"],"editor button\x04Left to right":["Zleva doprava"],"Save as Pending":["Ulo\u017eit do fronty na schv\xe1len\xed"],"%s address":["%s URL"],"Paste or type URL":["Vlo\u017ete nebo napi\u0161te adresu URL"],"Insert from URL":["Vlo\u017eit z URL adresy"],"Block Navigator":["Navigace mezi bloky"],Styles:["Styly"],"Advanced Panels":["Pokro\u010dil\xe9 panely"],"Document Panels":["Panely dokumentu"],General:["Obecn\xe9"],"Open the block navigation menu.":["Otev\u0159\xedt naviga\u010dn\xed menu bloku."],"Work without distraction":["Nenechte se p\u0159i psan\xed ru\u0161it"],"Focus on one block at a time":["Zam\u011b\u0159te se v\u017edy jen na jeden blok"],"Access all block and document tools in a single place":["M\u011bjte ve\u0161ker\xe9 n\xe1stroje dokumentu a aktivn\xedho bloku na jednom m\xedst\u011b"],Options:["Mo\u017enosti"],"(opens in a new tab)":["(otev\u0159e se na nov\xe9 z\xe1lo\u017ece)"],Minutes:["Minuty"],Hours:["Hodiny"],Time:["\u010cas"],Year:["Rok"],Day:["Den"],December:["Prosinec"],November:["Listopad"],October:["\u0158\xedjen"],September:["Z\xe1\u0159\xed"],August:["Srpen"],July:["\u010cervenec"],June:["\u010cerven"],May:["Kv\u011bten"],April:["Duben"],March:["B\u0159ezen"],February:["\xdanor"],January:["Leden"],Month:["M\u011bs\xedc"],Date:["Datum"],"Go to the first (home) or last (end) day of a week.":["P\u0159ej\xedt na prvn\xed (Home) nebo posledn\xed (End) den v t\xfddnu."],"Home/End":["Home/End"],"Home and End":["Home a end"],"Move backward (PgUp) or forward (PgDn) by one month.":["Posunout o jeden m\u011bs\xedc zp\u011bt (PgUp) nebo vp\u0159ed (PgDn)."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up a Page Down"],"Move backward (up) or forward (down) by one week.":["Posunout o jeden t\xfdden nazp\u011bt (nahoru) nebo vp\u0159ed (dol\u016f)."],"Up and Down Arrows":["\u0160ipky nahoru a dol\u016f"],"Move backward (left) or forward (right) by one day.":["Posunout o jeden den zp\u011bt (vlevo) nebo vp\u0159ed (vpravo)."],"Left and Right Arrows":["\u0160ipky vlevo a vpravo"],"Select the date in focus.":["Zvolit datum, kter\xe9 je ozna\u010deno."],"Navigating with a keyboard":["Navigace pomoc\xed kl\xe1vesnice"],"Click the desired day to select it.":["Klikn\u011bte na po\u017eadovan\xfd den pro jeho v\xfdb\u011br."],"Click the right or left arrows to select other months in the past or the future.":["Kliknut\xedm na \u0161ipku vlevo nebo vpravo vyberete p\u0159edchoz\xed nebo n\xe1sleduj\xedc m\u011bs\xedc."],"Click to Select":["Kliknut\xed pro v\xfdb\u011br"],"Calendar Help":["N\xe1pov\u011bda kalend\xe1\u0159e"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Pomoc\xed kl\xe1ves \u0161ipek zm\u011b\u0148te z\xe1kladn\xed barvu. \u0160ipkou nahoru barvu zesv\u011btl\xedte, \u0161ipkou dol\u016f ztmav\xedte, \u0161ipkou vlevo sn\xed\u017e\xedte sytost, a \u0161ipkou vpravo sytost zv\xfd\u0161\xedte."],"Choose a shade":["Vyberte odst\xedn"],"Change color format":["Zm\u011bnit form\xe1t barvy"],"Color value in HSL":["Hodnota barvy v HSL"],"Color value in RGB":["Hodnota barvy v RGB"],"Color value in hexadecimal":["Hodnota barvy v \u0161estn\xe1ctkov\xe9 soustav\u011b"],"RGB mode active":["RGB re\u017eim je aktivn\xed"],"Hex color mode active":["\u0160estn\xe1ctkov\xfd barevn\xfd re\u017eim je aktivn\xed"],"Hue/saturation/lightness mode active":["Re\u017eim odst\xedn/sytost/sv\u011btlost je aktivn\xed"],"Move the arrow left or right to change hue.":["Pro zm\u011bnu odst\xednu, pou\u017eijte \u0161ipky doleva nebo doprava."],"Hue value in degrees, from 0 to 359.":["Hodnota odst\xednu ve stupn\xedch, od 0 do 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Hodnota alfa od 0 (pr\u016fhledn\xe1) do 1 (zcela nepr\u016fhledn\xe9)."],Stripes:["Pruhy"],"Your site doesn\u2019t include support for this block.":["Tento web neobsahuje podporu pro tento blok."],"Unrecognized Block":["Nerozpoznan\xfd blok"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["V\xe1\u0161 web neobsahuje podporu pro blok \u201e%s\u201c. Tento blok m\u016f\u017eete ponechat nedot\u010den\xfd, nebo jej zcela odstranit."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["V\xe1\u0161 web neobsahuje podporu pro blok \u201e%s\u201c. Tento blok m\u016f\u017eete ponechat beze zm\u011bny, p\u0159ev\xe9st jeho obsah na vlastn\xed HTML blok nebo jej zcela odebrat."],"Media area":["Oblast m\xe9dia"],"Media & Text":["M\xe9dia a text"],"Show media on right":["Zobrazit m\xe9dia vpravo"],"Show media on left":["Zobrazit m\xe9dia vlevo"],"Open in New Tab":["Otev\xedrat v nov\xe9 z\xe1lo\u017ece"],Cover:["\xdavodn\xed obr\xe1zek"],"Border Settings":["Nastaven\xed okraj\u016f"],"Edit media":["Upravit medi\xe1ln\xed soubor"],Medium:["St\u0159edn\xed"],"Paste URL or type to search":["Vlo\u017ete URL adresu, nebo zadejte hledan\xfd v\xfdraz"],Terms:["Polo\u017eky"],"Your work will be published at the specified date and time.":["Va\u0161e pr\xe1ce bude zve\u0159ejn\u011bna v zadan\xe9m datu a \u010dase."],"Are you ready to schedule?":["Jste p\u0159ipraveni k napl\xe1nov\xe1n\xed?"],"Always show pre-publish checks.":["V\u017edy zobrazit kontrolu p\u0159ed publikov\xe1n\xedm."],"Take Over":["P\u0159evz\xedt kontrolu"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Jin\xfd u\u017eivatel moment\xe1ln\u011b upravuje tento p\u0159\xedsp\u011bvek. Dokud nad p\u0159\xedsp\u011bvkem nep\u0159evezmete kontrolu, nem\u016f\u017eete v n\u011bm prov\xe1d\u011bt zm\u011bny."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["U\u017eivatel %s moment\xe1ln\u011b upravuje tento p\u0159\xedsp\u011bvek. Dokud nad p\u0159\xedsp\u011bvkem nep\u0159evezmete kontrolu, nem\u016f\u017eete v n\u011bm prov\xe1d\u011bt zm\u011bny."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Jin\xfd u\u017eivatel nyn\xed prov\xe1d\xed \xfapravy tohoto p\u0159\xedsp\u011bvku. Va\u0161e dote\u010f proveden\xe9 zm\u011bny byly ulo\u017eeny."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["U\u017eivatel %s nyn\xed prov\xe1d\xed \xfapravy tohoto p\u0159\xedsp\u011bvku. Va\u0161e dote\u010f proveden\xe9 zm\u011bny byly ulo\u017eeny."],Avatar:["Avatar"],"This post is already being edited.":["Tento p\u0159\xedsp\u011bvek pr\xe1v\u011b upravuje n\u011bkdo jin\xfd."],"Someone else has taken over this post.":["N\u011bkdo jin\xfd p\u0159evzal tento p\u0159\xedsp\u011bvek."],"This block contains unexpected or invalid content.":["Tento blok obsahuje neo\u010dek\xe1van\xfd nebo neplatn\xfd obsah."],"Resolve Block":["P\u0159evod bloku"],"Convert to HTML":["P\u0159ev\xe9st na HTML"],"This block can only be used once.":["Tento blok lze pou\u017e\xedt jen jednou."],"Exit Code Editor":["Ukon\u010dit HTML editor"],"Editing Code":["Upravujete k\xf3d"],"Solid Color":["Pln\xe1 barva"],"Main Color":["Hlavn\xed barva"],HTML:["HTML"],"Write HTML\u2026":["Za\u010dn\u011bte ps\xe1t HTML\u2026"],"Media Settings":["Nastaven\xed m\xe9di\xed"],"Overlay Color":["Barva p\u0159ekryt\xed"],Overlay:["P\u0159ekryt\xed"],"Insert Media":["Vlo\u017ete medi\xe1ln\xed soubor"],"Reusable block imported successfully!":["Opakovateln\xfd blok byl \xfasp\u011b\u0161n\u011b importov\xe1n!"],"Invalid Reusable Block JSON file":["Neplatn\xfd soubor JSON opakovateln\xe9ho bloku"],"Invalid JSON file":["Neplatn\xfd soubor JSON"],"Import from JSON":["Importovat z JSON"],Backtick:["Zp\u011btn\xfd apostrof"],Period:["Te\u010dka"],Comma:["\u010c\xe1rka"],"Change type of %d block":["Zm\u011bnit typ %d bloku","Zm\u011bnit typ %d blok\u016f","Zm\u011bnit typ %d blok\u016f"],Current:["Aktu\xe1ln\u011b"],"After Conversion":["Po p\u0159evodu"],"Change alignment":["Zm\u011bnit zarovn\xe1n\xed"],"Change text alignment":["Zm\u011bnit zarovn\xe1n\xed textu"],"%d block":["%d blok","%d bloky","%d blok\u016f"],Escape:["Esc"],"Forward-slash":["/"],"No archives to show.":["\u017d\xe1dn\xe9 archivy k zobrazen\xed. "],"This file is empty.":["Soubor je pr\xe1zdny."],"Sorry, this file type is not supported here.":["Tento typ souboru zde nen\xed podporov\xe1n."],"Manage All Reusable Blocks":["Spravovat v\u0161echny opakovateln\xe9 bloky"],Title:["N\xe1zev"],"Fullscreen Mode":["Re\u017eim cel\xe9 obrazovky"],"Beautiful landscape":["N\xe1dhern\xe9 hory"],"Close panel":["Zav\u0159\xedt panel"],"Convert to Classic Block":["P\u0159ev\xe9st na klasick\xfd blok"],"Remove Poster Image":["Odstranit n\xe1hledov\xfd obr\xe1zek"],"Select Poster Image":["Zvolit n\xe1hledov\xfd obr\xe1zek"],"Poster Image":["N\xe1hledov\xfd obr\xe1zek"],"This block is deprecated. Please use the Columns block instead.":["Tento blok je zastaral\xfd. Pou\u017eijte m\xedsto n\u011bj blok sloupc\u016f."],"Text Columns (deprecated)":["Textov\xe9 sloupce (zastaral\xe9)"],"Row Count":["Po\u010det \u0159\xe1dk\u016f"],"Column Count":["Po\u010det sloupc\u016f"],"This block is deprecated. Please use the Paragraph block instead.":["Tento blok je zastaral\xfd. M\xedsto n\u011bj pou\u017eijte blok odstavce."],"Subheading (deprecated)":["Podnadpis (zastaral\xe9)"],blockquote:["citace"],"Change the block type after adding a new paragraph.":["Zm\u011bnit typ bloku po p\u0159id\xe1n\xed nov\xe9ho odstavce."],"Spotlight Mode":["Re\u017eim nevyru\u0161ovan\xe9ho psan\xed"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u0160t\xedtky pom\xe1haj\xed u\u017eivatel\u016fm a vyhled\xe1va\u010d\u016fm v orientaci na webu. P\u0159idejte n\u011bkolik kl\xed\u010dov\xfdch slov, kter\xe1 vystihuj\xed tento p\u0159\xedsp\u011bvek."],"Add tags":["P\u0159idat \u0161t\xedtky"],"Apply the \"%1$s\" format.":["Pou\u017e\xedt form\xe1t \u201e%1$s\u201c."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Tato \u0161ablona pou\u017e\xedv\xe1 form\xe1ty p\u0159\xedsp\u011bvku ke zv\xfdrazn\u011bn\xed r\u016fzn\xfdch druh\u016f obsahu, jako jsou obr\xe1zky nebo videa. Pro zobrazen\xed tohoto speci\xe1ln\xedho stylu, vyberte konkr\xe9tn\xed form\xe1t p\u0159\xedsp\u011bvku."],"Use a post format":["Pou\u017eijte form\xe1t p\u0159\xedsp\u011bvku"],"Insert After":["Vlo\u017eit pod"],"Insert Before":["Vlo\u017eit nad"],"Move %1$d block from position %2$d down by one place":["P\u0159esunout %1$d blok z %2$d. pozice o jednu pozici n\xed\u017ee","P\u0159esunout %1$d bloky z %2$d. pozice o jednu pozici n\xed\u017ee","P\u0159esunout %1$d blok\u016f z %2$d. pozice o jednu pozici n\xed\u017ee"],"Move %1$d block from position %2$d up by one place":["P\u0159esunout %1$d blok z %2$d. pozice o jednu pozici v\xfd\u0161e","P\u0159esunout %1$d bloky z %2$d. pozice o jednu pozici v\xfd\u0161e","P\u0159esunout %1$d blok\u016f z %2$d. pozice o jednu pozici v\xfd\u0161e"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["film"],"Insert a new block before the selected block(s).":["Vlo\u017eit nov\xfd blok p\u0159ed vybran\xe9 bloky."],"Remove the selected block(s).":["Odstranit vybran\xe9 bloky."],"Duplicate the selected block(s).":["Duplikovat vybran\xe9 bloky."],"Block shortcuts":["Pr\xe1ce s bloky"],"Clear selection.":["Zru\u0161it v\xfdb\u011br."],"Select all text when typing. Press again to select all blocks.":["P\u0159i psan\xed ozna\u010d\xed ve\u0161ker\xfd text. Dal\u0161\xed stisknut\xed ozna\u010d\xed v\u0161echny bloky."],"Selection shortcuts":["Zkratky v\xfdb\u011bru textu"],"Switch between Visual Editor and Code Editor.":["P\u0159epnout mezi vizu\xe1ln\xedm editorem a HTML editorem."],"Navigate to the previous part of the editor (alternative).":["P\u0159ej\xedt na p\u0159edchoz\xed \u010d\xe1st editoru (alternativn\xed)."],"Navigate to the next part of the editor (alternative).":["P\u0159ej\xedt na dal\u0161\xed \u010d\xe1st editoru (alternativn\xed)."],"Navigate to the previous part of the editor.":["P\u0159ej\xedt na p\u0159edchoz\xed \u010d\xe1st editoru."],"Navigate to the next part of the editor.":["P\u0159ej\xedt na dal\u0161\xed \u010d\xe1st editoru."],"Show or hide the settings sidebar.":["Zobrazit nebo skr\xfdt postrann\xed panel nastaven\xed."],"Redo your last undo.":["Prov\xe9st znovu zm\u011bny."],"Undo your last changes.":["Vr\xe1tit posledn\xed zm\u011bny."],"Save your changes.":["Ulo\u017eit zm\u011bny."],"Global shortcuts":["Obecn\xe9 zkratky"],"Remove a link.":["Odstranit odkaz."],"Convert the selected text into a link.":["P\u0159evede ozna\u010den\xfd text na odkaz."],"Underline the selected text.":["Podtr\u017een\xed"],"Make the selected text italic.":["Kurz\xedva"],"Make the selected text bold.":["Tu\u010dn\u011b"],"Text formatting":["Form\xe1tov\xe1n\xed textu"],"Insert a new block after the selected block(s).":["Vlo\u017eit nov\xfd blok za vybran\xe9 bloky."],"Keyboard Shortcuts":["Kl\xe1vesov\xe9 zkratky"],"Thanks for testing Gutenberg!":["D\u011bkujeme za testov\xe1n\xed Gutenbergu!"],"Help build Gutenberg":["Pomozte vyv\xedjet plugin Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Pokud se chcete dozv\u011bd\u011bt v\xedce o tom, jak vytvo\u0159it dal\u0161\xed bloky nebo m\xe1te-li z\xe1jem o pomoc s t\xedmto projektem, p\u0159ejd\u011bte do GitHub \xfalo\u017ei\u0161t\u011b."],"The WordPress community":["Komunita WordPressu"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["M\u016f\u017eete vytvo\u0159it jak\xfdkoliv blok v\xe1s jen napadne - statick\xfd, nebo dynamick\xfd; form\xe1tovan\xfd, nebo neform\xe1tovan\xfd. Zde je blok stru\u010dn\xe9ho v\xfdpisu:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Jak\xfdkoliv blok m\u016f\u017eete takto zarovnat. Vlo\u017een\xfd blok je tak\xe9 zarovnan\xfd, a je ihned responzivn\xed:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["V\xfd\u0161e je galerie jen se dv\u011bma obr\xe1zky. Je to jednoduch\xfd zp\u016fsob, jak vytvo\u0159it vizu\xe1ln\u011b p\u0159\xedjemn\xe9 rozvr\u017een\xed, ani\u017e byste museli \u0159e\u0161it obt\xe9k\xe1n\xed textu. Galerii m\u016f\u017eete tak\xe9 snadno p\u0159ev\xe9st zp\u011bt na jednotliv\xe9 obr\xe1zky pomoc\xed p\u0159ep\xedna\u010de blok\u016f."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Jist\u011b, obr\xe1zek na celou \u0161\xed\u0159ku m\u016f\u017ee b\xfdt n\u011bkdy hodn\u011b velik\xfd. Ale ob\u010das to za to stoj\xed."],"Accessibility is important — don’t forget image alt attribute":["Dostupnost je d\u016fle\u017eit\xe1 — nezapome\u0148 na atribut alt u obr\xe1zk\u016f"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Pokud kombinujete nov\xe9 uspo\u0159\xe1d\xe1n\xed (velmi \u0161irok\xe9 a na plnou \u0161\xed\u0159ku) s galeriemi, m\u016f\u017eete velmi rychle vytvo\u0159it form\xe1tovan\xfd vzhled:"],"Media Rich":["Bohat\xe9 na m\xe9dia"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Mno\u017estv\xed sloupc\u016f v galeri\xedch m\u016f\u017eete zm\u011bnit p\u0159eta\u017een\xedm posuvn\xedku v nastaven\xed bloku, v postrann\xedm panelu."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Bloky mohou b\xfdt v\u0161e, co pot\u0159ebujete. Nap\u0159\xedklad m\u016f\u017eete cht\xedt p\u0159idat decentn\xed citaci jako sou\u010d\xe1st kompozice textu. Nebo byste rad\u0161i zobrazovali ob\u0159\xed stylizovanou citaci? V\u0161echny tyto mo\u017enosti te\u010f jsou k dispozici."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Informace p\u0159\xedslu\u0161n\xe9 ke zdroji citace jsou v odd\u011blen\xe9m textov\xe9m poli, podobn\u011b jako jsou odd\u011bleny popisky obr\xe1zk\u016f. Struktura citace je tak chr\xe1n\u011bna i kdy\u017e vyberete, uprav\xedte nebo odstran\xedte zdroj. Je v\u017edy jednoduch\xe9 jej p\u0159idat zp\u011bt."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["Editor se pokus\xed vytv\xe1\u0159et lep\u0161\xed zku\u0161enosti p\u0159i tvorb\u011b nov\xfdch str\xe1nek a p\u0159\xedsp\u011bvk\u016f, co\u017e zjednodu\u0161\xed psan\xed form\xe1tovan\xe9ho textu. Bude pou\u017e\xedvat \u201ebloky\u201c, aby \u0161lo jednodu\u0161eji pou\u017e\xedvat zkr\xe1cen\xfd z\xe1pis, vlastn\xed HTML nebo vkl\xe1dat \u201emystery meat\u201c."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Obrovsk\xe1 v\xfdhoda blok\u016f spo\u010d\xedv\xe1 v tom, \u017ee je m\u016f\u017eete upravit na m\xedst\u011b a manipulovat s obsahem p\u0159\xedmo. Nam\xedsto toho abyste m\u011bli pole na \xfapravu v\u011bc\xed jako je zdroj citace nebo text tla\u010d\xedtka, m\u016f\u017eete p\u0159\xedmo zm\u011bnit obsah. Zkuste upravit n\xe1sleduj\xedc\xed citaci:"],"Visual Editing":["Vizu\xe1ln\xed \xfapravy"],"And Lists like this one of course :)":["A jist\u011b seznamy jako je tenhle :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloky zobrazen\xed jako jsou tla\u010d\xedtka, hlavn\xed obr\xe1zky, odd\u011blova\u010de, atd."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Vlo\u017een\xe9 prvky, jako YouTube, Tweety, nebo jin\xe9 WordPress p\u0159\xedsp\u011bvky."],Galleries:["Galerie"],"Images & Videos":["Obr\xe1zky a Videa"],"Text & Headings":["Text a nadpisy"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Vyzkou\u0161ejte to, m\u016f\u017eete objevit funkce, kter\xe9 WordPress m\u016f\u017ee ji\u017e dlouho p\u0159id\xe1vat do va\u0161ich p\u0159\xedsp\u011bvk\u016f. Tady je kr\xe1tk\xfd seznam toho, co m\u016f\u017eete naj\xedt:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["P\u0159edstavte si, \u017ee v\u0161e, co WordPress dok\xe1\u017ee, je k dispozici jednodu\u0161e a st\xe1le na stejn\xe9m m\xedst\u011b. Nen\xed t\u0159eba zji\u0161\u0165ovat HTML zna\u010dky, t\u0159\xeddy nebo si pamatovat komplikovanou syntaxi zkr\xe1cen\xe9ho z\xe1pisu. To je c\xedlem p\u0159id\xe1v\xe1n\xed blok\u016f - tla\u010d\xedtko (+), kter\xe9 uvid\xedte v editoru - umo\u017en\xed v\xe1m proch\xe1zet v\u0161echny dostupn\xe9 bloky obsahu a p\u0159idat je do p\u0159\xedsp\u011bvku. Pluginy a \u0161ablony mohou zaregistrovat sv\xe9 vlastn\xed, \u010d\xedm\u017e se otev\xedraj\xed ve\u0161ker\xe9 mo\u017enosti pro form\xe1tovanou \xfapravu a publikov\xe1n\xed."],"The Inserter Tool":["N\xe1stroj pro p\u0159id\xe1v\xe1n\xed blok\u016f"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Zkuste vybrat a odstranit, nebo upravit titulek, nyn\xed se nebudete muset b\xe1t, \u017ee omylem vyberete obr\xe1zek, nebo jin\xfd text a zkaz\xedte si tak celou prezentaci."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Pokud va\u0161e \u0161ablona podporuje nov\xe9 rozlo\u017een\xed, v n\xe1strojov\xe9 li\u0161t\u011b obr\xe1zku uvid\xedte tla\u010d\xedtko \u201eVelk\xe1 \u0161\xed\u0159ka\u201c. Vyzkou\u0161ejte ho."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Velmi pe\u010dliv\xe9 zach\xe1zen\xed s obr\xe1zky a m\xe9dii je prim\xe1rn\xedm c\xedlem nov\xe9ho editoru. Douf\xe1me, \u017ee n\u011bkter\xe9 aspekty p\u0159id\xe1n\xed titulk\u016f nebo pln\xe9 \u0161\xed\u0159ky obr\xe1zk\u016f budou mnohem lep\u0161\xed a jednodu\u0161\u0161\xed ne\u017e d\u0159\xedve."],"A Picture is Worth a Thousand Words":["Obr\xe1zek je lep\u0161\xed ne\u017e tis\xedc slov"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Nadpisy jsou tak\xe9 samostatn\xe9 bloky, kter\xe9 zlep\u0161uj\xed p\u0159ehlednost a uspo\u0159\xe1d\xe1n\xed va\u0161eho obsahu."],"... like this one, which is right aligned.":["... jako tento, kter\xfd je zarovnan\xfd vpravo."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Nyn\xed \u010dtete odstavec, nejz\xe1kladn\u011bj\u0161\xed blok ze v\u0161ech. Odstavec m\xe1 vlastn\xed ovl\xe1dac\xed prvky, kter\xe9 umo\u017e\u0148uj\xed voln\xe9 um\xedst\u011bn\xed kdekoliv v p\u0159\xedsp\u011bvku..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["C\xedlem tohoto nov\xe9ho editoru je p\u0159idat do WordPressu form\xe1tovan\xfd obsah jednodu\u0161e a p\u0159\xedjemn\u011b. Cel\xfd tento p\u0159\xedsp\u011bvek se skl\xe1d\xe1 z \u010d\xe1st\xed obsahu (jako LEGO z kosti\u010dek), kter\xe9 m\u016f\u017eete p\u0159esouvat a ovliv\u0148ovat je. Pohybujte kurzorem a zjist\u011bte, jak se r\u016fzn\xe9 bloky zv\xfdrazn\xed pomoc\xed obrys\u016f a \u0161ipek. Stiskn\u011bte \u0161ipky pro rychl\xe9 p\u0159esunut\xed blok\u016f, ani\u017e byste se museli b\xe1t, \u017ee n\u011bco ztrat\xedte p\u0159i kop\xedrov\xe1n\xed a vkl\xe1d\xe1n\xed."],"Of Mountains & Printing Presses":["Z hor a knihtisku"],"Welcome to the Gutenberg Editor":["V\xedtejte v editoru Gutenberg"],"block name\x04More":["Pokra\u010dov\xe1n\xed textu"],"button to expand options\x04More":["V\xedce"],"Are you sure you want to unschedule this post?":["Opravdu chcete zru\u0161it napl\xe1nov\xe1n\xed tohoto p\u0159\xedsp\u011bvku?"],"Alt Text (Alternative Text)":["Alt text (alternativn\xed text)"],"Reusable Block":["Opakovateln\xfd blok"],"Unique identifier for the object.":["Jedine\u010dn\xfd identifik\xe1tor objektu."],"Untitled Reusable Block":["Opakovateln\xfd blok bez n\xe1zvu"],Small:["Mal\xfd"],"(%s: %s)":["%s, %s"],Reusable:["Opakovateln\xe9"],"(current %s: %s)":["(aktu\xe1ln\xed %s: %s)"],"Remove from Reusable Blocks":["Odstranit z opakovateln\xfdch blok\u016f"],"Add to Reusable Blocks":["P\u0159idat k opakovateln\xfdm blok\u016fm"],"Keep as HTML":["Zachovat ve form\xe1tu HTML"],"Edit URL":["Upravit URL"],"Color Settings":["Nastaven\xed barev"],"The response is not a valid JSON response.":["Odpov\u011b\u010f nen\xed platn\xe1 odpov\u011b\u010f ve form\xe1tu JSON."],"Editor publish":["Editor publikov\xe1n\xed"],Muted:["Zti\u0161eno"],"Video Settings":["Nastaven\xed videa"],"recent comments":["nejnov\u011bj\u0161\xed koment\xe1\u0159e"],"Latest Comments":["Nejnov\u011bj\u0161\xed koment\xe1\u0159e"],"Display Excerpt":["Zobrazit \xfaryvek"],"Display Date":["Zobrazit datum"],"Display Avatar":["Zobrazit avatar"],"Latest Comments Settings":["Nastaven\xed nejnov\u011bj\u0161\xedch koment\xe1\u0159\u016f"],"Number of Comments":["Po\u010det koment\xe1\u0159\u016f"],"Background Opacity":["M\xedra kryt\xed"],Auto:["Automaticky"],Preload:["P\u0159edb\u011b\u017en\u011b na\u010d\xedtat"],"Audio Settings":["Nastaven\xed audia"],"Display a monthly archive of your posts.":["Zobrazte m\u011bs\xed\u010dn\xed archiv p\u0159\xedsp\u011bvk\u016f."],"Display as Dropdown":["Zobrazit jako rozbalovac\xed seznam"],"Show Post Counts":["Zobrazit po\u010det p\u0159\xedsp\u011bvk\u016f"],"Archives Settings":["Nastaven\xed archiv\u016f"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["F\xf3rum podpory"],"No comments to show.":["\u017d\xe1dn\xe9 koment\xe1\u0159e."],"%1$s on %2$s":["%1$s: %2$s"],"Select Post":["Vybrat p\u0159\xedsp\u011bvek"],"Select Week":["Vybrat t\xfdden"],"Select Day":["Vybrat den"],"Select Month":["Vybrat m\u011bs\xedc"],"Select Year":["Vybrat rok"],Archives:["Archivy"],"Very dark gray":["Tmav\u011b \u0161ed\xe1"],"Cyan bluish gray":["Modro\u0161ed\xe1"],"Very light gray":["Sv\u011btle \u0161ed\xe1"],"Vivid cyan blue":["Syt\u011b modr\xe1"],"Pale cyan blue":["Bled\u011bmodr\xe1"],"Vivid green cyan":["Syt\u011b tyrkysov\xe1 zelen\xe1"],"Light green cyan":["Sv\u011btle zelen\xe1"],"Luminous vivid amber":["Sv\u011btle \u017elut\xe1"],"Luminous vivid orange":["Sv\u011btle oran\u017eov\xe1"],"Vivid red":["Syt\u011b \u010derven\xe1"],"Pale pink":["Bled\u011b r\u016f\u017eov\xe1"],"Inline image":["Vlo\u017een\xfd obr\xe1zek"],"Available block types":["Dostupn\xe9 typy blok\u016f"],"Transform To:":["Zm\u011bnit na:"],"Remove Block":["Odstranit blok"],"Open publish panel":["Otev\u0159\xedt panel publikov\xe1n\xed"],Dots:["Te\u010dky"],"Wide Line":["Dlouh\xe1 \u010d\xe1ra"],Large:["Velk\xe1"],"Show download button":["Zobrazit tla\u010d\xedtko pro sta\u017een\xed"],"Download button settings":["Nastaven\xed tla\u010d\xedtka pro sta\u017een\xed"],"Link To":["Odkazovat na"],"Text link settings":["Nastaven\xed textov\xe9ho odkazu"],pdf:["pdf"],document:["dokument"],"Copy URL":["Kop\xedrovat URL"],"Write file name\u2026":["Zadejte n\xe1zev souboru"],"Edit file":["Upravit soubor"],File:["Soubor"],"A single column within a columns block.":["Jeden sloupec v r\xe1mci bloku sloupce."],Column:["Sloupec"],Outline:["S obrysem"],Loop:["Opakovat"],Autoplay:["P\u0159ehr\xe1t automaticky"],"Playback Controls":["Ovl\xe1d\xe1n\xed p\u0159ehr\xe1v\xe1n\xed"],"Close dialog":["Zav\u0159\xedt dialogov\xe9 okno"],"Sorry, this file type is not permitted for security reasons.":["Tento typ souboru nen\xed z bezpe\u010dnostn\xedch d\u016fvod\u016f povolen."],"Disable tips":["Zak\xe1zat tipy"],"Got it":["Zav\u0159\xedt"],"See next tip":["Zobrazit dal\u0161\xed tip"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["A\u017e budete p\u0159ipraveni, ode\u0161lete svou pr\xe1ci ke kontrole a \u0161\xe9fredaktor ji pak bude moci schv\xe1lit."],"Are you ready to submit for review?":["Jste p\u0159ipraveni odeslat p\u0159\xedsp\u011bvek ke schv\xe1len\xed?"],"Replace image":["Nahradit obr\xe1zek"],"Remove image":["Odstranit obr\xe1zek"],"Error while uploading file %s to the media library.":["P\u0159i nahr\xe1v\xe1n\xed souboru %s do knihovny m\xe9di\xed do\u0161lo k chyb\u011b."],"This file exceeds the maximum upload size for this site.":["Soubor p\u0159ekra\u010duje maxim\xe1ln\xed velikost nahr\xe1v\xe1n\xed pro tento web."],"View the autosave":["Zobrazit automaticky ulo\u017eenou verzi"],"There is an autosave of this post that is more recent than the version below.":["Automaticky ulo\u017een\xe1 verze tohoto p\u0159\xedsp\u011bvku je nov\u011bj\u0161\xed, ne\u017e aktu\xe1ln\u011b zobrazen\xe1 verze."],Autosaving:["Prob\xedh\xe1 automatick\xe9 ukl\xe1d\xe1n\xed"],"Enter URL here\u2026":["Vlo\u017eit URL\u2026"],"Pin to toolbar":["P\u0159ipnout na panel n\xe1stroj\u016f"],"Unpin from toolbar":["Odepnout z panelu n\xe1stroj\u016f"],"Insert a table \u2014 perfect for sharing charts and data.":["Vytvo\u0159te tabulku \u2013 ide\xe1ln\xed pro sd\xedlen\xed graf\u016f a dat."],"Fixed width table cells":["Nastavit pevnou \u0161\xed\u0159ku bun\u011bk tabulky"],"Table Settings":["Nastaven\xed tabulky"],"Add text that respects your spacing and tabs, and also allows styling.":["P\u0159idejte text, kter\xfd respektuje va\u0161e odsazen\xed, tabul\xe1tory, a tak\xe9 umo\u017e\u0148uje stylov\xe1n\xed."],"Display a list of your most recent posts.":["Zobrazte seznam nejnov\u011bj\u0161\xedch p\u0159\xedsp\u011bvk\u016f."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["P\u0159idejte blok zobrazuj\xedc\xed obsah z\xedskan\xfd z jin\xfdch web\u016f, nap\u0159\xedklad z Twitteru, Instagramu nebo z YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["P\u0159idejte blok zobrazuj\xedc\xed obsah ve v\xedce sloupc\xedch, a pak do jednotliv\xfdch sloupc\u016f p\u0159idejte jak\xe9koliv bloky."],"Error loading block: %s":["Chyba p\u0159i na\u010d\xedt\xe1n\xed bloku: %s"],"Unknown error":["Nezn\xe1m\xe1 chyba"],"Embed Handler":["Obslu\u017en\xe1 rutina k\xf3du pro vlo\u017een\xed"],"term\x04Remove %s":["Odstranit %s"],"Copy the permalink":["Kop\xedrovat trval\xfd odkaz"],"Permalink copied":["Trval\xfd odkaz byl zkop\xedrov\xe1n"],"Height in pixels":["V\xfd\u0161ka v pixelech"],"Spacer Settings":["Nastaven\xed mezery"],Spacer:["Mezera"],"Toggle to show a large initial letter.":["P\u0159epn\u011bte pro zobrazen\xed velk\xe9ho po\u010d\xe1te\u010dn\xedho p\xedsmene."],"Showing large initial letter.":["Zobrazuje se velk\xe9 po\u010d\xe1te\u010dn\xed p\xedsmeno."],"Name:":["N\xe1zev:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s z %3$s)"],"Remove item":["Odstranit polo\u017eku"],"Color code: %s":["K\xf3d barvy: %s"],"Skip to the selected block":["P\u0159esko\u010dit na vybran\xfd blok"],"Publish\u2026":["Publikovat"],"Schedule\u2026":["Napl\xe1novat\u2026"],"Edit post permalink":["Upravit trval\xfd odkaz p\u0159\xedsp\u011bvku"],"Show Block Settings":["Zobrazit nastaven\xed blok\u016f"],"Hide Block Settings":["Skr\xfdt nastaven\xed bloku"],"Block settings closed":["Nastaven\xed bloku je uzav\u0159eno"],"Close plugin":["Zav\u0159\xedt plugin"],"Link settings":["Nastaven\xed odkazu"],Unlink:["Odebrat odkaz"],"Page break":["Rozd\u011blen\xed str\xe1nky"],pagination:["str\xe1nkov\xe1n\xed"],"next page":["n\xe1sleduj\xedc\xed str\xe1nka"],"Image Size":["Velikost obr\xe1zku"],Height:["V\xfd\u0161ka"],Width:["\u0160\xed\u0159ka"],"Image Dimensions":["Rozm\u011bry obr\xe1zku"],"Thumbnails are not cropped.":["N\xe1hledov\xe9 obr\xe1zky nejsou o\u0159\xedznuty."],"Thumbnails are cropped to align.":["N\xe1hledov\xe9 obr\xe1zky jsou o\u0159\xedznuty, pro zarovn\xe1n\xed."],"Media Library":["Knihovna m\xe9di\xed"],Advanced:["Pokro\u010dil\xe9"],"Add item":["P\u0159idat polo\u017eku"],"Reset the template":["Obnovit \u0161ablonu"],"Keep it as is":["Neprov\xe1d\u011bt zm\u011bny"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Obsah p\u0159\xedsp\u011bvku neodpov\xedd\xe1 \u0161ablon\u011b p\u0159i\u0159azen\xe9 va\u0161emu typu obsahu."],"Resetting the template may result in loss of content, do you want to continue?":["Obnoven\xed \u0161ablony m\u016f\u017ee zp\u016fsobit ztr\xe1tu obsahu, opravdu chcete pokra\u010dovat?"],"Document Statistics":["Statistiky dokumentu"],"is now scheduled. It will go live on":["- \xfasp\u011b\u0161n\u011b napl\xe1nov\xe1no. Bude publikov\xe1no"],Scheduled:["Napl\xe1nov\xe1no"],"Scheduling\u2026":["Pl\xe1nov\xe1n\xed\u2026"],"Code editor selected":["Je vybr\xe1n HTML editor"],"Visual editor selected":["Je vybr\xe1n vizu\xe1ln\xed editor"],Plugins:["Pluginy"],"Custom Size":["Vlastn\xed velikost"],"Layout Elements":["Prvky rozvr\u017een\xed"],"term\x04%s removed":["Odstran\u011bno: %s"],"term\x04%s added":["P\u0159id\xe1no: %s"],"imperative verb\x04Preview":["Zobrazit n\xe1hled"],"Block deleted.":["Blok byl odstran\u011bn."],"Block updated.":["Blok byl aktualizov\xe1n."],"Block created.":["Blok byl \xfasp\u011b\u0161n\u011b vytvo\u0159en."],"Trashing failed":["Odstran\u011bn\xed se nezda\u0159ilo"],"Updating failed.":["Aktualizace selhala."],"Scheduling failed.":["Napl\xe1nov\xe1n\xed se nezda\u0159ilo."],"Publishing failed.":["Publikov\xe1n\xed se nezda\u0159ilo."],"View Post":["Zobrazit p\u0159\xedsp\u011bvek"],"You have unsaved changes. If you proceed, they will be lost.":["Neulo\u017eili jste proveden\xe9 zm\u011bny. Pokud budete pokra\u010dovat, zm\u011bny budou ztraceny."],"Document Outline":["Osnova dokumentu"],Paragraphs:["Odstavc\u016f"],Headings:["Nadpis\u016f"],Words:["Slov"],"Content structure":["Struktura obsahu"],Public:["Ve\u0159ejn\xe1"],"Protected with a password you choose. Only those with the password can view this post.":["Chr\xe1n\u011bno heslem, kter\xe9 si zvol\xedte. Tento p\u0159\xedsp\u011bvek mohou zobrazit v\u0161ichni, kte\u0159\xed maj\xed heslo."],"Password Protected":["Chr\xe1n\u011bno heslem"],"Only visible to site admins and editors.":["Viditeln\xe9 pouze administr\xe1tor\u016fm a \u0161\xe9fredaktor\u016fm."],Private:["Soukrom\xe1"],"Visible to everyone.":["Viditeln\xe9 pro v\u0161echny."],"Post Visibility":["Viditelnost p\u0159\xedsp\u011bvku"],"Would you like to privately publish this post now?":["Chcete tento p\u0159\xedsp\u011bvek publikovat jako soukrom\xfd?"],"Use a secure password":["Pou\u017eijte siln\xe9 heslo"],"Create password":["Vytvo\u0159te heslo"],"Move to Trash":["Odstranit"],"Parent Term":["Nad\u0159azen\xe1 polo\u017eka"],"Parent Category":["Nad\u0159azen\xe1 rubrika"],"Add new term":["P\u0159idat novou polo\u017eku"],"Add new category":["Vytvo\u0159it novou rubriku"],Term:["Polo\u017eka"],Tag:["\u0160t\xedtek"],"Add New Term":["P\u0159idat novou polo\u017eku"],"Add New Tag":["Vytvo\u0159it nov\xfd \u0161t\xedtek"],"Switch to Draft":["P\u0159epnout na koncept"],"Are you sure you want to unpublish this post?":["Opravdu chcete zru\u0161it publikov\xe1n\xed tohoto p\u0159\xedsp\u011bvku?"],Immediately:["Okam\u017eit\u011b"],"Save Draft":["Ulo\u017eit koncept"],Saving:["Ukl\xe1d\xe1n\xed"],"Publish:":["Publikov\xe1n\xed:"],"Visibility:":["Viditelnost:"],"Are you ready to publish?":["Jste p\u0159ipraveni k publikov\xe1n\xed?"],"Copy Link":["Kop\xedrovat odkaz"],"What\u2019s next?":["Dal\u0161\xed mo\u017enosti"],"is now live.":["- \xfasp\u011b\u0161n\u011b publikov\xe1no."],Published:["Publikov\xe1no"],Schedule:["Napl\xe1novat"],Update:["Aktualizovat"],"Submit for Review":["Odeslat ke schv\xe1len\xed"],"Updating\u2026":["Aktualizace\u2026"],"Publishing\u2026":["Publikov\xe1n\xed\u2026"],"Allow Pingbacks & Trackbacks":["Povolit pingbacky a trackbacky"],"Permalink:":["Trval\xfd odkaz:"],"Pending Review":["\u010cek\xe1 na schv\xe1len\xed"],"%d Revision":["%d verze","%d verze","%d verz\xed"],"Suggestion:":["Doporu\u010den\xed:"],"Post Format":["Form\xe1t p\u0159\xedsp\u011bvku"],Chat:["Rozhovor"],Status:["Stav"],Standard:["Z\xe1kladn\xed"],Aside:["Pozn\xe1mka"],"Set Featured Image":["Zvolit n\xe1hledov\xfd obr\xe1zek"],"Learn more about manual excerpts":["V\xedce informac\xed o ru\u010dn\xedch stru\u010dn\xfdch v\xfdpisech (anglicky)"],"Write an excerpt (optional)":["Napi\u0161te stru\u010dn\xfd v\xfdpis (nepovinn\xe9)"],"Allow Comments":["Povolit koment\xe1\u0159e"],"Template:":["\u0160ablona:"],"no parent":["nem\xe1 nad\u0159azenou polo\u017eku"],"no title":["bez n\xe1zvu"],Order:["\u0158azen\xed"],"No blocks found.":["Nebyly nalezeny \u017e\xe1dn\xe9 bloky."],"%d result found.":["Nalezeno v\xfdsledk\u016f: %d.","Nalezeno v\xfdsledk\u016f: %d.","Nalezeno v\xfdsledk\u016f: %d."],Saved:["Ulo\u017eeno"],Embeds:["Extern\xed obsah"],Blocks:["Blok\u016f"],"Search for a block":["Hledejte blok"],"Add block":["P\u0159idat blok"],"Add %s":["P\u0159idat %s"],"Copy Error":["Chyba p\u0159i kop\xedrov\xe1n\xed"],"Copy Post Text":["Kop\xedrovat text p\u0159\xedsp\u011bvku"],"Attempt Recovery":["Pokusit se o obnoven\xed"],"The editor has encountered an unexpected error.":["V editoru do\u0161lo k neo\u010dek\xe1van\xe9 chyb\u011b."],Undo:["Zp\u011bt"],Redo:["Znovu"],"(Multiple H1 headings are not recommended)":["(Nedoporu\u010duje se v\xedce nadpis\u016f H1)"],"(Your theme may already use a H1 for the post title)":["(Va\u0161e \u0161ablona ji\u017e m\u016f\u017ee pou\u017e\xedvat nadpis H1 pro n\xe1zev p\u0159\xedsp\u011bvku)"],"(Incorrect heading level)":["(Nespr\xe1vn\xe1 \xfarove\u0148 nadpisu)"],"(Empty heading)":["(Chyb\xed nadpis)"],"Block Styles":["Styly bloku"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Opravdu chcete odstranit tento opakovan\u011b pou\u017eiteln\xfd blok?\n\nBlok bude trvale odebr\xe1na ze v\u0161ech p\u0159\xedsp\u011bvk\u016f a str\xe1nek, kter\xe9 jej pou\u017e\xedvaj\xed."],"Convert to Regular Block":["P\u0159ev\xe9st na v\xfdchoz\xed blok"],"More options":["V\xedce mo\u017enost\xed"],"Edit visually":["Upravit vizu\xe1ln\u011b"],Duplicate:["Duplikovat"],"Blocks cannot be moved down as they are already at the bottom":["Bloky nelze posunout dol\u016f, proto\u017ee ji\u017e dole jsou"],"Blocks cannot be moved up as they are already at the top":["Bloky nelze p\u0159esunout nahoru, proto\u017ee ji\u017e naho\u0159e jsou"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["Blok \u201e%s\u201c je jedin\xfd blok a nelze jej p\u0159esunout"],"Edit as HTML":["Upravit jako HTML"],"Convert to Blocks":["P\u0159ev\xe9st na bloky"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["U tohoto bloku do\u0161lo k chyb\u011b a nelze zobrazit n\xe1hled."],"No block selected.":["Nen\xed vybr\xe1n \u017e\xe1dn\xfd blok."],"Transform into:":["Zm\u011bnit na:"],Remove:["Odstranit"],"Find original":["Naj\xedt p\u016fvodn\xed"],"Copy All Content":["Kop\xedrovat ve\u0161ker\xfd obsah"],"Copied!":["Zkop\xedrov\xe1no!"],"Additional settings are now available in the Editor block settings sidebar":["Dal\u0161\xed nastaven\xed je nyn\xed k dispozici v postrann\xedm panelu nastaven\xed editoru bloku"],Visibility:["Viditelnost"],"Status & Visibility":["Publikov\xe1n\xed"],"Page Attributes":["Vlastnosti str\xe1nky"],Block:["Blok"],Document:["Dokument"],"Featured Image":["N\xe1hledov\xfd obr\xe1zek"],"Close settings":["Zav\u0159\xedt nastaven\xed"],"Editor content":["Editor obsahu"],Tools:["N\xe1stroje"],Editor:["Editor"],"Code Editor":["HTML editor"],"Visual Editor":["Vizu\xe1ln\xed editor"],"Editor top bar":["Horn\xed li\u0161ta editoru"],Settings:["Nastaven\xed"],Reset:["Obnovit"],"Dismiss this notice":["Zav\u0159\xedt toto ozn\xe1men\xed"],"Item removed.":["Polo\u017eka byla odstran\u011bna."],"Item added.":["Polo\u017eka byla p\u0159id\xe1na."],"Drop files to upload":["P\u0159esu\u0148te zde soubory z po\u010d\xedta\u010de"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Vyskytla se nezn\xe1m\xe1 chyba."],"No results.":["\u017d\xe1dn\xe9 v\xfdsledky."],"%d result found, use up and down arrow keys to navigate.":["Po\u010det nalezen\xfdch v\xfdsledk\u016f: %d. Pro v\xfdb\u011br konkr\xe9tn\xed polo\u017eky m\u016f\u017eete pou\u017e\xedt \u0161ipky na kl\xe1vesnici.","Po\u010det nalezen\xfdch v\xfdsledk\u016f: %d. Pro v\xfdb\u011br konkr\xe9tn\xed polo\u017eky m\u016f\u017eete pou\u017e\xedt \u0161ipky na kl\xe1vesnici.","Po\u010det nalezen\xfdch v\xfdsledk\u016f: %d. Pro v\xfdb\u011br konkr\xe9tn\xed polo\u017eky m\u016f\u017eete pou\u017e\xedt \u0161ipky na kl\xe1vesnici."],"(no title)":["(bez n\xe1zvu)"],URL:["URL"],Submit:["Odeslat"],Close:["Zav\u0159\xedt"],"Insert link":["Vlo\u017eit odkaz"],"Edit link":["Upravit odkaz"],Link:["Odkaz"],Strikethrough:["P\u0159e\u0161krtnut\xe9"],Italic:["Kurz\xedva"],Bold:["Tu\u010dn\xe9"],"Remove link":["Odstranit odkaz"],"Number of items":["Po\u010det polo\u017eek"],All:["V\u0161e"],Category:["Rubrika"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Od nejstar\u0161\xedch po nejnov\u011bj\u0161\xed"],"Newest to Oldest":["Od nejnov\u011bj\u0161\xedch po nejstar\u0161\xed"],"Order by":["\u0158azen\xed"],Select:["Vybrat"],"Select or Upload Media":["Vyberte nebo nahrajte medi\xe1ln\xed soubor"],Video:["Video"],"Edit video":["Upravit video"],"Write\u2026":["Za\u010dn\u011bte ps\xe1t"],poetry:["poezie"],Verse:["Poezie"],"New Column":["Nov\xfd sloupec"],"Delete Column":["Odstranit sloupec"],"Add Column After":["P\u0159idat sloupec napravo"],"Add Column Before":["P\u0159idat sloupec nalevo"],"Delete Row":["Odstranit \u0159\xe1dek"],"Add Row After":["P\u0159idat \u0159\xe1dek pod"],"Add Row Before":["P\u0159idat \u0159\xe1dek nad"],"Edit table":["Upravit tabulku"],Table:["Tabulka"],"Write subheading\u2026":["Napi\u0161te podnadpis"],"Write shortcode here\u2026":["Zadejte n\xe1zev zkr\xe1cen\xe9ho z\xe1pisu"],Shortcode:["Zkr\xe1cen\xfd z\xe1pis"],divider:["vodorovn\xe1 \u010d\xe1ra"],"horizontal-line":["vodorovn\xe1 \u010d\xe1ra"],Separator:["Vodorovn\xe1 \u010d\xe1ra"],Quote:["Citace"],"Write citation\u2026":["Napi\u0161te citaci\u2026"],"Write quote\u2026":["Napi\u0161te citaci\u2026"],Pullquote:["Stru\u010dn\xfd v\xfdpis"],"Write preformatted text\u2026":["Napi\u0161te form\xe1tovan\xfd text\u2026"],Preformatted:["Vlastn\xed form\xe1tov\xe1n\xed"],text:["text"],Paragraph:["Odstavec"],"Font Size":["Velikost p\xedsma"],"Drop Cap":["Inici\xe1la"],"Text Settings":["Nastaven\xed textu"],"Read more":["Pokra\u010dovat ve \u010dten\xed"],"Write list\u2026":["Napi\u0161te seznam\u2026"],"numbered list":["\u010d\xedslovan\xfd seznam"],"ordered list":["\u010d\xedslovan\xfd seznam"],"bullet list":["seznam s odr\xe1\u017ekami"],"Indent list item":["Zv\u011bt\u0161it odsazen\xed"],"Outdent list item":["Zmen\u0161it odsazen\xed"],"Convert to ordered list":["\u010c\xedslovan\xfd seznam"],"Convert to unordered list":["Seznam s odr\xe1\u017ekami"],List:["Seznam"],"recent posts":["nejnov\u011bj\u0161\xed p\u0159\xedsp\u011bvky"],"No posts found.":["Nebyly nalezeny \u017e\xe1dn\xe9 p\u0159\xedsp\u011bvky."],"Latest Posts":["Nejnov\u011bj\u0161\xed p\u0159\xedsp\u011bvky"],"Display post date":["Zobrazit datum publikov\xe1n\xed"],"Grid view":["M\u0159\xed\u017eka"],"List view":["Seznam"],photo:["fotografie"],"Image Settings":["Nastaven\xed obr\xe1zku"],Image:["Obr\xe1zek"],Preview:["N\xe1hled"],embed:["embed"],"Custom HTML":["Vlastn\xed HTML"],subtitle:["podnadpis"],title:["n\xe1zev"],Heading:["Nadpis"],"Write heading\u2026":["Napi\u0161te nadpis"],"Heading %d":["Nadpis %d"],Level:["\xdarove\u0148 nadpisu"],"Heading Settings":["Nastaven\xed nadpisu"],photos:["fotky"],images:["obr\xe1zky"],"Remove Image":["Odstranit obr\xe1zek"],None:["Nic"],"Media File":["Medi\xe1ln\xed soubor"],"Attachment Page":["Str\xe1nku se zobrazen\xedm souboru"],"Crop Images":["O\u0159\xedznout obr\xe1zky"],"Gallery Settings":["Nastaven\xed galerie"],Gallery:["Galerie"],Classic:["Klasick\xfd editor"],video:["video"],audio:["audio"],music:["hudba"],image:["obr\xe1zek"],blog:["blog"],post:["p\u0159\xedsp\u011bvek"],"Embedded content from %s":["Vlo\u017een\xfd obsah z %s"],"Enter URL to embed here\u2026":["Zadejte URL adresu pro vlo\u017een\xed..."],"%s URL":["%s URL"],"Embedding\u2026":["Vkl\xe1d\xe1n\xed\u2026"],"Write title\u2026":["Zadejte n\xe1zev\u2026"],"Fixed Background":["Statick\xe9 pozad\xed"],"Edit image":["Upravit obr\xe1zek"],Columns:["Sloupce"],Experiments:["Experimenty"],Code:["K\xf3d"],"Write code\u2026":["Napi\u0161te k\xf3d"],Categories:["Rubriky"],"Show Hierarchy":["Zobrazit strukturu"],"Show post counts":["Zobrazit po\u010det p\u0159\xedsp\u011bvk\u016f"],"Categories Settings":["Nastaven\xed rubrik"],"Add text\u2026":["Zadejte text"],Button:["Tla\u010d\xedtko"],Apply:["Pou\u017e\xedt"],"Text Color":["Barva textu"],"Background Color":["Barva pozad\xed"],"Block has been deleted or is unavailable.":["Blok byl odstran\u011bn nebo nen\xed k dispozici."],"Reusable Blocks":["Opakovateln\xe9 bloky"],Cancel:["Zru\u0161it"],Edit:["Upravit"],"Edit audio":["Upravit audio"],"Write caption\u2026":["Zadejte titulek\u2026"],"Use URL":["Pou\u017e\xedt URL"],Audio:["Audio"],Upload:["Nahr\xe1t"],"Additional CSS Class(es)":["Dal\u0161\xed t\u0159\xedda CSS"],"HTML Anchor":["HTML z\xe1lo\u017eka"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Tato barevn\xe1 kombinace m\u016f\u017ee b\xfdt \u0161patn\u011b \u010diteln\xe1. Zkuste pou\u017e\xedt jasn\u011bj\u0161\xed barvu pozad\xed a/nebo tmav\u0161\xed barvu textu."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Tato barevn\xe1 kombinace m\u016f\u017ee b\xfdt obt\xed\u017en\u011b \u010diteln\xe1. Zkuste pou\u017e\xedt tmav\u0161\xed barvu pozad\xed a/nebo sv\u011btlej\u0161\xed barvu textu."],Clear:["Vymazat"],"Custom color picker":["Vlastn\xed barva"],"Color: %s":["Barva: %s"],"Full Width":["Cel\xe1 \u0161\xed\u0159ka"],"Wide Width":["Velk\xe1 \u0161\xed\u0159ka"],Widgets:["Widgety"],Formatting:["Form\xe1tov\xe1n\xed"],"Common Blocks":["B\u011b\u017en\xe9 bloky"],"Align Right":["Zarovnat doprava"],"Align Center":["Zarovnat na st\u0159ed"],"Align Left":["Zarovnat doleva"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Tisk od roku 1440. Jedn\xe1 se o v\xfdvojov\xfd plugin pro nov\xfd editor blok\u016f v j\xe1d\u0159e."],"Add title":["Zadejte n\xe1zev"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg re\u017eim pro v\xfdvoj\xe1\u0159e vy\u017eaduje sestaven\xed soubor\u016f. Spus\u0165te p\u0159\xedkaz npm install pro instalaci z\xe1vislost\xed, npm run build pro sestaven\xed soubor\u016f, nebo npm run dev pro sestaven\xed soubor\u016f a pro sledov\xe1n\xed zm\u011bn. V\xedce informac\xed naleznete v dokumentu pro p\u0159isp\xedv\xe1n\xed (anglicky)."],Author:["Autor"],Slug:["N\xe1zev v URL"],Discussion:["Nastaven\xed koment\xe1\u0159\u016f"],"Custom Fields":["U\u017eivatelsk\xe1 pole"],Excerpt:["Stru\u010dn\xfd v\xfdpis p\u0159\xedsp\u011bvku"],Publish:["Publikovat"],Metadata:["Strukturovan\xe9 informace"],Save:["Ulo\u017eit"],Documentation:["Manu\xe1l (anglicky)"],"Select Category":["Vybrat rubriku"],"(Untitled)":["(Bez n\xe1zvu)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Pro spr\xe1vnou funk\u010dnost Gutenbergu pot\u0159ebujete alespo\u0148 WordPress %s. P\u0159ed aktivac\xed Gutenbergu prove\u010fte aktualizaci WordPressu."],"Gutenberg Team":["T\xfdm Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["p\u0159ed %s"],"Block style name must be a string.":["N\xe1zvy typ\u016f blok\u016f mus\xed b\xfdt textov\xe9 \u0159et\u011bzce."]}},828,[]); +__d(function(e,a,o,n,i,d,l){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":["Graddiant: %s"],"Gradient code: %s":["Cod graddiant: %s"],"All content copied.":["Cop\xefwyd yr holl gynnwys."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Methodd llwytho'r cyfryngau. Os mai llun neu ddelwedd fawr yw hon, gwnewch hi'n llai a rhoi cynnig arall arni."],Gradient:["Graddiant"],"Gradient Presets":["Rhagosodiadau Graddiant"],"No Preview Available.":["Dim Rhagolwg ar Gael."],Midnight:["Canol Nos"],"Electric grass":["Glaswellt trydanol"],"Pale ocean":["Cefnfor gwelw"],"Luminous dusk":["Cyfnos llewychol"],"Blush bordeaux":["Bordeaux ysgafn"],"Blush light purple":["Porffor golau ysgafn"],"Cool to warm spectrum":["Sbectrwm oer i gynnes"],"Very light gray to cyan bluish gray":["Llwyd ysgafn iawn i lwyd cyan glas"],"Luminous vivid orange to vivid red":["Oren llachar llewychol i goch llachar"],"Luminous vivid amber to luminous vivid orange":["Ambr byw llewychol i oren llachar llewychol"],"Light green cyan to vivid green cyan":["Cyan gwyrdd golau i gyan gwyrdd llachar"],"Vivid cyan blue to vivid purple":["Glas cyan llachar i borffor llachar"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["Rhagfyr 6, 2018"],"February 21, 2019":["Chwefror 21, 2019"],"May 7, 2019":["Mai 7, 2019"],"Release Date":["Dyddiad rhyddhau"],"Jazz Musician":["Cerddor Jazz"],Version:["Fersiwn"],"Six.":["Chwech."],"Five.":["Pump."],"Four.":["Pedwar."],"Three.":["Tri."],"Two.":["Dau."],"One.":["Un."],"One of the hardest things to do in technology is disrupt yourself.":["Un o'r pethau anoddaf i'w wneud mewn technoleg yw tarfu eich hun."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["O'i amgylch y mae sgrin bron yn gyfan gwbl ddu. Nawr, wrth i'r camera symud yn araf tuag at y ffenestr sydd bron yn stamp postio yn y ffr\xe2m, mae ffurflenni eraill yn ymddangos;"],"Window, very small in the distance, illuminated.":["Ffenestr, bach iawn yn y pellter, wedi'i goleuo."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["Mae'r dryw
Yn ennill ei fywoliaeth
Yn dawel."],"Welcome to the wonderful world of blocks\u2026":["Croeso i fyd rhyfeddol y blociau\u2026"],"Snow Patrol":["Patrol Eira"],Dimensions:["Dimensiynau"],"Minimum height in pixels":["Uchafswm uchder mewn picseli"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Galwad i Weithredu"],"In quoting others, we cite ourselves.":["Wrth ddyfynnu eraill, rydym yn dyfynnu ein hunain."],cite:["dyfynnu"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mae Mont Blanc yn ymddangos - yn llonydd, yn eiraog ac yn ddistaw."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["Ym mhentref La Mancha, nad oes gen i awydd i dwyn ei enw i gof, bu'n byw ddim yn hir yn \xf4l un o'r boneddigion hynny sy'n cadw gwaywffon yn y rac gwaywffon, hen fwcl, hac heb lawer o fraster, a milgi. ar gyfer cwrsio."],"Block navigation":["Llywio bloc"],"Enable Full Site Editing":["Galluogi Golygu Gwefan Lawn"],"Full Site Editing":["Golygu Gwefan Lawn"],"Templates to include in your theme.":["Templedi i'w cynnwys yn eich thema."],Templates:["Templedi"],"Inserter Help Panel":["Panel Cymorth Mewnosodwr"],"Pre-publish Checks":["Gwiriadau Cyn-gyhoeddi"],"Please contact your site administrator to install new blocks.":["Cysylltwch \xe2'ch gweinyddwr gwefan i osod blociau newydd."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Heb ganfod blociau yn eich llyfrgell. Cysylltwch \xe2'ch gweinyddwr gwefan i osod blociau newydd."],"No blocks found in your library.":["Heb ganfod blociau yn eich llyfrgell."],"No blocks found in your library. These blocks can be downloaded and installed:":["Heb ganfod blociau yn eich llyfrgell. Mae modd llwytho blociau i lawr a gosod y blociau hyn:"],"No blocks found in your library. We did find %d block available for download.":["Heb ganfod blociau yn eich llyfrgell. Rydym wedi canfod %d bloc ar gael i'w lwytho i lawr.","Heb ganfod blociau yn eich llyfrgell. Rydym wedi canfod %d bloc ar gael i'w llwytho i lawr.","Heb ganfod blociau yn eich llyfrgell. Rydym wedi canfod %d bloc ar gael i'w llwytho i lawr.","Heb ganfod blociau yn eich llyfrgell. Rydym wedi canfod %d bloc ar gael i'w llwytho i lawr."],"Block previews can\u2019t load.":["Nid yw rhagolygon bloc yn gallu llwytho."],Retry:["Ceisio eto"],"Block previews can't install.":["Nid yw rhagolygon bloc yn gallu gosod."],"Updated %s":["Diweddarwyd %s"],"%d active installation":["%d gosodiad gweithredol","%d gosodiad gweithredol","%d gosodiad gweithredol","%d gosodiad gweithredol"],"This author has %d block, with an average rating of %d.":["Mae gan yr awdur hwn %d bloc, gyda sg\xf4r cyfartalog o %d.","Mae gan yr awdur hwn %d bloc, gyda sg\xf4r cyfartalog o %d.","Mae gan yr awdur hwn %d bloc, gyda sg\xf4r cyfartalog o %d.","Mae gan yr awdur hwn %d bloc, gyda sg\xf4r cyfartalog o %d."],"Authored by %s":["Cr\xebwyd gan %s"],Add:["Ychwanegu"],"%d total rating":["%d cyfanswm y graddio","%d cyfanswm y graddio","%d cyfanswm y graddio","%d cyfanswm y graddio"],"%s out of 5 stars":["%s allan o 5 seren"],"Enter Address":["Rhowch y Cyfeiriad"],"Pill Shape":["Si\xe2p Pilsen"],"Logos Only":["Logos yn Unig"],"Create a block of links to your social media or external sites":["Crewch floc o ddolenni i'ch cyfryngau cymdeithasol neu wefannau allanol"],"Social links":["Dolenni cymdeithasol"],"Open block navigator":["Agorwch y llywio blociau"],"Attachment page":["Tudalen atodi"],Fill:["Llanw"],"Link rel":["Cyswllt rel"],"Border Radius":["Radiws y Border"],"Write gallery caption\u2026":["Ysgrifennu pennawd oriel\u2026"],"Content Blocks":["Blociau Cynnwys"],"Restore the backup":["Adfer y copi wrth gefn"],"The backup of this post in your browser is different from the version below.":["Mae'r copi wrth gefn o'r cofnod yn eich porwr yn wahanol i'r fersiwn isod."],"Enable Block Directory search":["Galluogi chwilio'r Cyfeiriadur Bloc"],"Block Directory":["Cyfeiriadur Bloc"],"Unable to connect to the filesystem. Please confirm your credentials.":["Methu cysylltu \xe1'r system ffeiliau. Cadarnhewch eich manylion."],"Sorry, you are not allowed to install blocks.":["Ymddiheuriadau, nid oes gennych hawl i osod blociau."],"%1$d block is disabled.":["Mae %1$d bloc wedi ei analluogi.","Mae %1$d bloc wedi eu hanalluogi.","Mae %1$d bloc wedi eu hanalluogi.","Mae %1$d bloc wedi eu hanalluogi."],"Reverse List Numbering":["Rhifo Rhestr Gwrthdroi"],"Start Value":["Gwerth Cychwynol"],"Ordered List Settings":["Gosodiadau Trefnu Rhestr"],"Clear Media":["Clirio'r Cyfryngau"],"block style\x04Circle Mask":["Mwgwd Cylch"],"Default Style":["Arddull Rhagosodedig"],"Not set":["Heb ei osod"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["Porwch trwy'r llyfrgell i ddysgu mwy am yr hyn y mae pob bloc yn ei wneud."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Mae blociau ar gael ar gyfer pob math o gynnwys: mewnosodwch destun, penawdau, delweddau, rhestrau, fideos, tablau, a llawer mwy."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Croeso i fyd rhyfeddol y blociau! Blociau yw sylfaen yr holl gynnwys yn y golygydd."],"Version of the content block format used by the object.":["Fersiwn y fformat bloc cynnwys sy'n cael ei ddefnyddio gan y gwrthrych."],"HTML content for the object, transformed for display.":["Cynnwys HTML ar gyfer y gwrthrych, wedi ei drosi i'w ddangos."],"Content for the object, as it exists in the database.":["Cynnwys ar gyfer y gwrthrych, fel y mae'n bodoli yn y gronfa ddata."],"The content for the object.":["Cynnwys ar gyfer y gwrthrych."],"Change column alignment":["Newid aliniad colofn"],"Align Column Right":["Alinio Colofn i'r Dde"],"Align Column Center":["Alinio Colofn i'r Canol"],"Align Column Left":["Alinio Colofn i'r Chwith"],Color:["Lliw"],"Vivid purple":["Porffor cryf"],"Disable & Reload":["Analluogi ac Ail-lwytho"],"Enable & Reload":["Galluogi ac Ail-lwytho"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Mae angen ail-lwytho tudalen ar gyfer y newid hwn. Sicrhewch fod eich cynnwys yn cael ei gadw cyn ei ail-lwytho."],"Display these keyboard shortcuts.":["Dangos cymorth llwybrau byr y bysellfwrdd."],"Experiments Settings":["Gosodiadau Arbrofion"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Mae gan Gutenberg rai nodweddion arbrofol y gallwch eu rhoi ar waith. Dewiswch bob un yr hoffech ei ddefnyddio. Mae'r nodweddion hyn yn debygol o newid felly mae'n well peidio eu defnyddio wrth gynhyrchu."],"Enable Widgets Screen and Legacy Widget Block":["Galluogi Sgrin Teclynnau a'r Hen Floc Teclyn"],"Experiment settings":["Gosodiadau arbrofi"],"Block name name must be a string.":["Rhaid i enw'r bloc fod yn llinyn."],Custom:["Cyfaddasu"],Draft:["Drafft"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Nid yw bloc \"%1$s\" yn cynnwys arddull o'r enw \"%2$s.\"."],"Learn more about anchors":["Dysgu rhagor am angorau"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Rhowch air neu ddau - heb ofodau - i wneud cyfeiriad gwe unigryw ar gyfer y pennawd hwn, o'r enw \u201cangor.\u201d Yna, byddwch yn gallu cysylltu'n uniongyrchol \xe2'r rhan hon o'ch tudalen."],"Widget Blocks (Experimental)":["Blociau Teclyn (Arbrofol)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Llwythwch ffeil fideo i fyny, dewiswch un o'ch llyfrgell gyfryngau, neu ychwanegwch un gydag URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Llwythwch ffeil ddelwedd i fyny, dewiswch un o'ch llyfrgell gyfryngau, neu ychwanegwch un gydag URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Llwythwch ffeil sain i fyny, dewiswch un o'ch llyfrgell gyfryngau, neu ychwanegwch un gydag URL."],"Upload a media file or pick one from your media library.":["Llwythwch ffeil cyfryngau i fyny neu dewiswch un o'ch llyfrgell gyfryngau."],Skip:["Hepgor"],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":["Beth yw hwn?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Peidiwch \xe2 gadael i beiriannau chwilio ddilyn y ddolen hon."],"Provide more context about where the link goes.":["Rhowch fwy o gyd-destun yngl\u0177n \xe2 ble mae'r ddolen yn mynd."],"Title Attribute":["Priodwedd Teitl"],"SEO Settings":["Gosodiadau SEO"],Description:["Disgrifiad"],"Open in new tab":["Agor mewn tab newydd"],links:["dolenni"],navigation:["llywio"],menu:["dewislen"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["Llwythwch ffeil neu dewiswch un o'ch llyfrgell gyfryngau."],"Learn more about embeds":["Dysgu mwy am fewnblannu"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Gludwch ddolen i'r cynnwys rydych chi am ei arddangos ar eich gwefan."],"Upload an image or video file, or pick one from your media library.":["Llwythwch ddelwedd neu ffeil fideo i fyny, neu dewiswch un o'ch llyfrgell gyfryngau."],"Three columns; wide center column":["Tair colofn; colofn ganol llydan"],"Three columns; equal split":["Tair colofn; rhaniad cyfartal"],"Two columns; two-thirds, one-third split":["Dwy golofn; dwy ran o dair, rhaniad un rhan o dair"],"Two columns; one-third, two-thirds split":["Dwy golofn; rhaniad un rhan o dair, dwy ran o dair"],"Two columns; equal split":["Dwy golofn; rhaniad cyfartal"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Nid oes gan eich gwefan unrhyw %s, felly nid oes dim i'w ddangos yma ar hyn o bryd."],"More tools & options":["Mwy o offer a dewisiadau"],"Create Table":["Creu Tabl"],"Insert a table for sharing data.":["Mewnosod tabl ar gyfer rhannu data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Dad-grwpio"],"verb\x04Group":["Gr\u0175p"],"Separate with commas or the Enter key.":["Gwahanu gyda dyfynodau neu fysell Enter."],"Separate with commas, spaces, or the Enter key.":["Gwahanu gyda dyfynodau, bylchau, neu'r fysell Enter."],"Separate multiple classes with spaces.":["Gwahanu ddosbarthiadau niferus gyda bylchau."],"Move image forward":["Symud delwedd ymlaen"],"Move image backward":["Symud delwedd n\xf4l"],"Sorry, you are not allowed to edit sidebars.":["Ymddiheuriadau, nid oes hawl gennych i olygu barau ochr."],"Sorry, you are not allowed to read sidebars.":["Ymddiheuriadau, nid oes hawl gennych i ddarllen barau ochr."],"The sidebar\u2019s ID.":["ID y bar ochr."],"Displays a set of blocks":["Yn dangos set o flociau"],"Blocks Area":["Ardal Blociau"],"Block rendered as empty.":["Bloc wedi'i lunio'n wag."],"Inline Code":["Cod Mewnlin"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Sylwer: Gall awto chwarae fideos achosi problemau defnyddioldeb i rai ymwelwyr."],"Footer section":["Adran troedyn"],"Header section":["Adran pennyn"],"Sorting and Filtering":["Didoli a Hidlo"],"Post Meta Settings":["Gosodiadau Meta Cofnod"],"Post Content":["Cynnwys Cofnod"],"Post Content Settings":["Gosodiadau Cynnwys Cofnod"],"Percentage width":["Lled canran"],"Column Settings":["Gosodiadau Colofn"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Sylwer: Gall awto chwarae fideos achosi problemau defnyddioldeb i rai ymwelwyr."],"Block area updated.":["Diweddarwyd yr ardal bloc."],"Block area scheduled.":["Ardal bloc wedi'i amserlennu."],"Block area published.":["Ardal bloc wedi'i chyhoeddi."],"Block areas list":["Rhestr ardaloedd bloc"],"Block areas list navigation":["Llywio rhestr ardaloedd bloc"],"Filter block areas list":["Hidlo rhestr ardaloedd bloc"],"No block area found.":["Heb ddarganfod ardal bloc."],"Search Block Areas":["Chwilio Ardaloedd Bloc"],"All Block Areas":["Pob Ardal Bloc"],"View Block Area":["Gweld Ardal Bloc"],"Edit Block Area":["Golygu Ardal Bloc"],"New Block Area":["Ardal Bloc Newydd"],"Add New Block Area":["Ychwanegu Ardal Bloc Newydd"],"admin menu\x04Block Areas":["Ardaloedd Bloc"],"post type singular name\x04Block Area (Experimental)":["Ardal Bloc (Arbrofol)"],"post type general name\x04Block Area (Experimental)":["Ardal Bloc (Arbrofol)"],"Experimental custom post type that will store block areas referenced by themes.":["Math o gofnod cyfaddas arbrofol a fydd yn storio ardaloedd bloc y cyfeirir atynt yn \xf4l them\xe2u."],"Widgets screen content":["Cynnwys teclyn sgrin"],"Widgets advanced settings":["Gosodiadau uwch teclynnau"],"(experimental)":["(arbrofol)"],"Block Areas":["Meysydd Bloc"],"Widgets screen top bar":["Bar uchaf sgrin teclyn"],"This color combination may be hard for people to read.":["Efallai y bydd y cyfuniad lliw hwn yn anodd i bobl ei ddarllen."],"There is no poster image currently selected":["Nid oes delwedd poster wedi'i dewis ar hyn o bryd"],"The current poster image url is %s":["URL y ddelwedd poster cyfredol yw %s"],section:["adran"],row:["rhes"],wrapper:["amlapiwr"],container:["cynhwysydd"],"A block that groups other blocks.":["Bloc sy'n grwpio blociau eraill."],Group:["Gr\u0175p"],"Crop image to fill entire column":["Tocio delweddau i lanw'r golofn gyfan"],"Play inline":["Chwarae mewnlin"],"Leave empty if the image is purely decorative.":["Gadael yn wag os yw'r ddelwedd ar gyfer addurno'n unig."],"Describe the purpose of the image":["Disgrifiwch bwrpas y ddelwedd"],"Add a block":["Ychwanegu blog"],"Block vertical alignment setting label\x04Change vertical alignment":["Newid aliniad fertigol"],"Block vertical alignment setting\x04Vertically Align Bottom":["Alinio'r Gwaelod yn Fertigol"],"Block vertical alignment setting\x04Vertically Align Middle":["Alinio'r Canol yn Fertigol"],"Replace Image":["Amnewid Delwedd"],"Block vertical alignment setting\x04Vertically Align Top":["Alinio'r Brig yn Fertigol"],"Display a legacy widget.":["Dangos hen declynDangos hen declyn."],"Legacy Widget (Experimental)":["Hen Declyn (Arbrofol)"],"Change widget":["Newid teclyn"],"Legacy Widget":["Hen Declyn"],"You don't have permissions to use widgets on this site.":["Nid oes gennych ganiat\xe2d i ddefnyddio teclynnau ar y wefan hon."],"Select a legacy widget to display:":["Dewis hen declyn i'w dangos:"],"There are no widgets available.":["Nid oes teclynnau ar gael."],"Change block type or style":["Newid math neu arddull y bloc"],"keyboard key\x04Space":["Gofod"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["Rhagor o reolaethau testun cyfoethog"],"Search Terms":["Chwilio'r Termau"],"Exit the Editor":["Gadael y Golygydd"],"Block Manager":["Rheolwr Bloc"],"Class name of the widget.":["Enw'r dosbarth y teclyn."],"Sorry, you are not allowed to access widgets on this site.":["Ymddiheuriadau, nid oes gennych hawl i gael mynediad at declynnau ar y wefan hon."],"Widgets (beta)":["Teclynnau (beta)"],link:["dolen"],"Embedded content from %s can't be previewed in the editor.":["Nid oes modd cael rhagolwg o gynnwys wedi'i fewnblannu gan %s yn y golygydd."],"Custom Color":["Lliw Cyfaddas"],"Prompt visitors to take action with a button-style link.":["Annog ymwelwyr i weithredu gyda dolen fel botwm."],"Stick to the top of the blog":["Glynu i frig y blog"],"Read about permalinks":["Darllen am ddolenni parhaol"],"The last part of the URL.":["Rhan olaf yr URL."],"URL Slug":["Bonyn URL"],"A cloud of your most used tags.":["Cwmwl o'r tagiau amlycaf."],"Tag Cloud":["Cwmwl Tagiau"],Taxonomy:["Tacsonomi"],"Tag Cloud Settings":["Gosodiadau Cwmwl Tagiau"],"- Select -":["- Dewis -"],Default:["Rhagosodedig"],find:["canfod"],"Help visitors find your content.":["Helpwch ymwelwyr i ddod o hyd i'ch cynnwys."],Search:["Chwilio"],"Add button text\u2026":["Ychwanegu testun botwm\u2026"],"Button text":["Testun botwm"],"Optional placeholder\u2026":["Deiliad lle dewisol\u2026"],"Optional placeholder text":["Testun deiliaid lle dewisol"],"Add label\u2026":["Ychwanegu label\u2026"],"Label text":["Testun label"],"image %1$d of %2$d in gallery":["delwedd %1$d o %2$d yn yr oriel"],archive:["archif"],posts:["cofnodion"],"A calendar of your site\u2019s posts.":["Calendr o gofnodion eich gwefan."],Calendar:["Calendr"],by:["gan"],"An error has occurred, which probably means the feed is down. Try again later.":["Digwyddodd gwall, sydd fel arfer yn golygu nad yw'r llif yn weithredol ar hyn o bryd. Ceisia eto'n hwyrach ymlaen."],"RSS Error:":["Gwall RSS:"],"block style\x04Default":["Rhagosodiad"],"Fullscreen mode deactivated":["Wedi diffodd y modd sgrin lawn"],"Fullscreen mode activated":["Modd sgrin llawn wedi'i weithredu"],"Spotlight mode deactivated":["Wedi diffodd y modd flacholau"],"Spotlight mode activated":["Y modd Fflacholau wedi ei weithredu"],"Top toolbar deactivated":["Bar offer brig wedi'i ddadweithredu"],"Top toolbar activated":["Bar offer brig wedi'i weithredu"],Back:["N\xf4l"],"Feature activated":["Nodwedd wedi'i weithredu"],"Feature deactivated":["Nodwedd wedi'i anweithredu"],"Vertical Pos.":["Safle Fertigol."],"Horizontal Pos.":["Safle Llorweddol."],feed:["llif"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Dangos gofnodion o unrhyw lif RSS neu Atom."],RSS:["RSS"],"Max number of words in excerpt":["Uchafswm nifer o eiriau yn y darn"],"Display excerpt":["Dangos darn"],"Display date":["Dangos y dyddiad"],"Display author":["Dangos yr awdur"],"RSS Settings":["Gosodiadau RSS"],"Edit RSS URL":["Golygu URL RSS"],"Content before this block will be shown in the excerpt on your archives page.":["Bydd y cynnwys cyn y bloc hwn yn cael ei ddangos yn y darn ar eich tudalen archif."],"Hide the excerpt on the full content page":["Cuddio'r darn ar y dudalen cynnwys llawn"],"The excerpt is visible.":["Mae'r ddarn yn weladwy."],"The excerpt is hidden.":["Mae'r darn yn guddiedig."],"Sorry, this content could not be embedded.":["Ymddiheuriadau, nid oes modd mewnblannu'r cynnwys hwnnw."],"Embed Amazon Kindle content.":["Mewnblannu cynnwys Amazon Kindle."],ebook:["eLyfr"],"Embed Crowdsignal (formerly Polldaddy) content.":["Mewnblannu cynnwys Crowdsignal (Polldaddy gynt)."],"Focal Point Picker":["Dewisydd Pwynt Ffocal"],Underline:["Tanlinellu"],"Attempt Block Recovery":["Ceisio Adfer Bloc"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Cynnwys\u2026"],"button label\x04Convert to link":["Trosi i ddolen"],"button label\x04Try again":["Ceisio eto"],"Editor tips":["Awgrymiadau'r golygydd"],"Block (selected)":["Bloc (wedi ei ddewis)"],"Document (selected)":["Dogfen (wedi ei dewis)"],"%d word":["%d gair","%d air","%d gair","%d gair"],"Top Toolbar":["Bar Offer Uchaf"],"Link Rel":["Perthynas y Ddolen"],"Link CSS Class":["Dosbarth CSS y Ddolen"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Cr\xebwch gynnwys, ei gadw ar eich cyfer chi a chyfrannwr eraill i'w ail ddefnyddio ar eich gwefan. Diweddarwch y bloc, a bydd y newidiadau'n digwydd lle bynnag mae'n cael ei ddefnyddio."],"To edit the featured image, you need permission to upload media.":["I olygu'r ddelwedd nodwedd, mae angen caniat\xe2d arnoch i lwytho'r cyfryngau i fyny."],"To edit this block, you need permission to upload media.":["I olygu'r bloc hwn, mae angen caniat\xe2d arnoch i lwytho cyfrwng i fyny."],"(selected block)":["(bloc dewiswyd)"],"Block tools":["Offer bloc"],Permalink:["Dolen Barhaol"],"This image has an empty alt attribute":["Mae gan y ddelwedd hon briodwedd alt gwag"],"This image has an empty alt attribute; its file name is %s":["Mae gan y ddelwedd hon briodwedd alt gwag; ei enw ffeil yw %s"],"Block area reverted to draft.":["Ardal bloc wedi ei droi'n \xf4l i ddrafft."],"Block area published privately.":["Ardal bloc wedi'i chyhoeddi'n breifat."],"No block areas found in Trash.":["Dim ardal bloc yn y Sbwriel."],"Block\x04Add New":["Ychwanegu"],"add new on admin bar\x04Block Area":["Ardal Bloc"],"Link inserted.":["Dolen wedi ei mewnosod."],"Warning: the link has been inserted but may have errors. Please test it.":["Rhybudd: mae'r ddolen wedi ei fewnosod ond gall god \xe2 gwallau. Rhowch brawf arno."],"%s block selected.":["%s bloc wedi'i ddewis.","%s bloc wedi'u dewis.","%s bloc wedi'u dewis.","%s bloc wedi'u dewis."],Thumbnail:["Llun bach"],"Full Size":["Maint Llawn"],"Link selected.":["Dolen wedi ei dewis."],"Start writing with text or HTML":["Dechrau ysgrifennu gyda thestun neu HTML"],"Type text or HTML":["Teipio testun neu HTML"],"Block icon":["Eicon bloc"],"Align Text Right":["Alinio Testun i'r Dde"],"Align Text Center":["Alinio Canol y Testun"],"Align Text Left":["Alinio'r Testun i'r Chwith"],"Start writing or type / to choose a block":["Dechrau ysgrifennu neu deipio / i ddewis bloc"],"Empty block; start writing or type forward slash to choose a block":["Bloc gwag; dechrau ysgrifennu neu deipio blaen slaes i ddewis bloc"],"Paragraph block":["Bloc paragraff"],"Page Break":["Toriad Tudalen"],"Stack on mobile":["Stacio ar symudol"],Annotation:["Anodiadau"],"Drag images, upload new ones or select files from your library.":["Llusgwch ddelweddau, llwytho rhai newydd neu ddewis ffeiliau o'ch llyfrgell."],"blocks\x04Most Used":["Defnyddiwyd Amlaf"],"imperative verb\x04Resolve":["Datrys"],"font size name\x04Huge":["Anferth"],"font size name\x04Large":["Mawr"],"font size name\x04Medium":["Canolig"],"font size name\x04Small":["Bach"],"font size name\x04Normal":["Arferol"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Mewnforio"],"button label\x04Download":["Llwytho i lawr"],"button label\x04Embed":["Mewnblannu"],"block title\x04Embed":["Mewnblannu"],"block title\x04Classic":["Clasurol"],"block style\x04Large":["Mawr"],"%s (opens in a new tab)":["%s (yn agor mewn tab newydd)"],"Link edited.":["Cyswllt wedi'i olygu."],"Link removed.":["Cyswllt wedii dynnu."],media:["cyfrwng"],"Double-check your settings before publishing.":["Gwiriwch eich gosodiadau cyn cyhoeddi."],"Generating preview\u2026":["Wrthi'n creu rhagolwg\u2026"],"Edit or update the image":["Golygu neu ddiweddaru'r ddelwedd"],Media:["Cyfrwng"],"Navigate to the nearest toolbar.":["Ewch i'r bar offer agosaf."],"Document tools":["Offer dogfennau"],"Document and block tools":["Offer dogfennau a blociau"],"Embed a video from your media library or upload a new one.":["Mewnblannu fideo o'ch llyfrgell cyfryngau neu lwytho un newydd."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Mewnosod barddoniaeth. Defnyddiwch fformatau manwl arbennig. Neu dyfynnu geiriau c\xe2n."],"Add white space between blocks and customize its height.":["Ychwanegu gofod gwyn rhwng blociau a chyfaddasu ei uchder."],"Insert additional custom elements with a WordPress shortcode.":["Mewnosod elfennau cyfaddas ychwanegol gyda chod byr o WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Creu toriad rhwng syniadau neu adrannau gyda gwahanydd llorweddol."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Rhoi pwyslais gweledol ar destun wedi'i ddyfynnu. "Wrth ddyfynnu eraill, rydym yn dyfynnu ein hunain." - Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Rhoi pwyslais gweledol arbennig i ddyfyniad o'ch testun."],"Start with the building block of all narrative.":["Dechrau \xe2'r bloc adeiladu o bob naratif."],"Separate your content into a multi-page experience.":["Rhannu eich cynnwys i brofiad aml-dudalen."],"Set media and words side-by-side for a richer layout.":["Gosod cyfryngau a geiriau ochr yn ochr \xe2'i gilydd am gynllun cyfoethocach."],"Media & Text Settings":["Gosodiadau Cyfryngau a Thestun"],"Create a bulleted or numbered list.":["Creu rhestr bwled neu rifo."],"Display a list of your most recent comments.":["Dangos rhestr o'ch sylwadau mwyaf diweddar."],"Insert an image to make a visual statement.":["Mewnosod delwedd i wneud datganiad gweledol."],"Add custom HTML code and preview it as you edit.":["Ychwanegu cod HTML arferol a'i ragweld wrth olygu."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Yn cyflwyno adrannau newydd a threfnu cynnwys i helpu ymwelwyr (a pheiriannau chwilio) i ddeall strwythur eich cynnwys."],"Display multiple images in a rich gallery.":["Dangos delweddau lluosog mewn oriel gyfoethog."],"Add a link to a downloadable file.":["Ychwanegu dolen at ffeil y mae modd ei llwytho i lawr."],"Embed videos, images, tweets, audio, and other content from external sources.":["Mewnblannu fideos, delweddau, trydariadau, sain, a chynnwys arall o ffynonellau allanol."],"Resize for smaller devices":["Newid maint ar gyfer dyfeisiau llai"],"This embed may not preserve its aspect ratio when the browser is resized.":["Efallai na fydd y mewnblannu hwn yn cadw ei gymhareb agwedd pan fydd y porwr wedi'i newid."],"This embed will preserve its aspect ratio when the browser is resized.":["Bydd y mewnblaniad yn cadw ei gymhareb agwedd pan fydd y porwr wedi newid maint."],"Embed an Animoto video.":["Mewnblannu fideo Animoto."],"Embed a Vimeo video.":["Mewnblannu fideo Vimeo."],"Embed Flickr content.":["Mewnblannu cynnwys Flikr."],"Embed Spotify content.":["Mewnblannu cynnwys Spotify."],"Embed SoundCloud content.":["Mewnblannu cynnwys SoundCloud."],"Embed a WordPress post.":["Mewnblannu cofnod WordPress."],"Embed an Instagram post.":["Mewnblannu cofnod Instagram."],"Embed a Facebook post.":["Mewnblannu cofnod Facebook."],"Embed a WordPress.tv video.":["Mewnblannu fideo WordPress.tv."],"Embed a VideoPress video.":["Mewnblannu fideo VideoPress."],"Embed a Tumblr post.":["Mewnblannu cofnod Tumblr."],"Embed a TED video.":["Mewnblannu fideo TED."],"Embed Speaker Deck content.":["Mewnblannu cynnwys Speaker Deck."],"Embed a YouTube video.":["Mewnblannu fideo YouTube."],"Embed SmugMug content.":["Mewnblannu cynnwys SmugMug."],"Embed Slideshare content.":["Mewnblannu cynnwys Slideshare."],"Embed Scribd content.":["Mewnblannu cynnwys Scribd."],"Embed Screencast content.":["Mewnblannu cynnwys Screencast."],"Embed ReverbNation content.":["Mewnblannu cynnwys ReverNation."],"Embed a Reddit thread.":["Mewnblannu trywydd Reddit."],"Embed Polldaddy content.":["Mewnblannu cynnwys Polldaddy."],"Embed Mixcloud content.":["Mewnblannu cynnwys Mixcloud."],"Embed a tweet.":["Mewnblannu trydariad."],"Embed Meetup.com content.":["Mewnblannu cynnwys Meetup.com."],"Embed Kickstarter content.":["Mewnblannu cynnwys Kickstarter."],"Embed Issuu content.":["Mewnblannu cynnwys Issuu."],"Embed Imgur content.":["Mewnblannu cynnwys Imgur."],"Embed Hulu content.":["Mewnblannu cynnwys Hulu."],"Embed a Dailymotion video.":["Mewnblannu fideo Dailymotion."],"Embed CollegeHumor content.":["Mewnblannu cynnwys CollegeHumor."],"Embed Cloudup content.":["Mewnblannu cynnwys Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Ychwanegu delwedd neu fideo gyda gorchudd testun - gwych i benawdau."],"Display code snippets that respect your spacing and tabs.":["Dangos darnau cod sy'n parchu'ch bylchu a'ch tabiau."],"Use the classic WordPress editor.":["Defnyddiwch y golygydd WordPress clasurol."],"Display a list of all categories.":["Dangos rhestr o bob categori."],"Embed a simple audio player.":["Mewnblannu chwaraewr sain syml."],"noun\x04View":["Golwg"],"editor button\x04Left to right":["Chwith i'r dde"],"Save as Pending":["Cadw fel Dan Ystyriaeth"],"%s address":["%s cyfeiriad"],"Paste or type URL":["Gludo neu deipio URL"],"Insert from URL":["Mewnosod o URL"],"Block Navigator":["Llywiwr Bloc"],Styles:["Arddulliau"],"Advanced Panels":["Paneli Uwch"],"Document Panels":["Paneli Dogfennau"],General:["Cyffredinol"],"Open the block navigation menu.":["Agorwch y ddewislen llywio blociau ."],"Work without distraction":["Gweithio heb darfu"],"Focus on one block at a time":["Canolbwyntio ar un bloc ar y tro"],"Access all block and document tools in a single place":["Mynediad i bob offer bloc a dogfen mewn un lle"],Options:["Dewisiadau"],"(opens in a new tab)":["(yn agor mewn tab newydd)"],Minutes:["Munud"],Hours:["Awr"],Time:["Amser"],Year:["Blwyddyn"],Day:["Diwrnod"],December:["Rhagfyr"],November:["Tachwedd"],October:["Hydref"],September:["Medi"],August:["Awst"],July:["Gorffennaf"],June:["Mehefin"],May:["Mai"],April:["Ebrill"],March:["Mawrth"],February:["Chwefror"],January:["Ionawr"],Month:["Mis"],Date:["Dyddiad"],"Go to the first (home) or last (end) day of a week.":["Ewch i ddiwrnod cyntaf (cartref) neu ddiwethaf (diwedd) yr wythnos."],"Home/End":["Cartref/Diwedd"],"Home and End":["Cartref a Diwedd"],"Move backward (PgUp) or forward (PgDn) by one month.":["Symud n\xf4l (PgUp) neu ymlaen (PgDn) un mis."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up a Page Down"],"Move backward (up) or forward (down) by one week.":["Symud n\xf4l (i fyny) ac ymlaen (i lawr) un wythnos."],"Up and Down Arrows":["Saethau i fyny ac i lawr"],"Move backward (left) or forward (right) by one day.":["Symud n\xf4l (chwith) ac ymlaen (dde) un diwrnod."],"Left and Right Arrows":["Saethau Chwith a De"],"Select the date in focus.":["Dewiswch y dyddiad yn y ffocws."],"Navigating with a keyboard":["Llywio gyda bysellfwrdd"],"Click the desired day to select it.":["Clicio'r diwrnod dewis i'w ddewis."],"Click the right or left arrows to select other months in the past or the future.":["Clicio'r saethau dde a chwith i ddewis misoedd eraill yn y gorffennol neu'r dyfodol."],"Click to Select":["Clicio i Ddewis"],"Calendar Help":["Cymorth Calendr"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Defnyddiwch eich bysellau saeth i newid y lliw sylfaen. Symud i fyny i oleuo'r lliw, i lawr i dywyllu, i'r chwith i gynyddu dirlawnder, ac i'r dde i leihau dirlawnder."],"Choose a shade":["Dewis cysgod"],"Change color format":["Newid fformat lliw"],"Color value in HSL":["Gwerth lliw yw HSL"],"Color value in RGB":["Gwerth lliw yw RGB"],"Color value in hexadecimal":["Gwerth lliw mewn hecsadegol"],"RGB mode active":["Dull RGB yn weithredol"],"Hex color mode active":["Modd lliw hecs yn weithredol"],"Hue/saturation/lightness mode active":["Modd arlliw/dirlawnder/goleuni yn weithredol"],"Move the arrow left or right to change hue.":["Symud y saeth i'r chwith neu'r dde i newid golwg."],"Hue value in degrees, from 0 to 359.":["Gwerth arlliw mewn graddau, o 0 i 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Gwerth Alpha, o 0 (tryloyw) i 1 (yn hollol didraidd)."],Stripes:["Streipiau"],"Your site doesn\u2019t include support for this block.":["Nid yw eich gwefan yn cynnwys cefnogaeth i'r bloc hwn."],"Unrecognized Block":["Bloc Heb ei Adnabod"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Nid yw eich gwefan yn cynnwys cefnogaeth ar gyfer y bloc \"%s\". Gallwch adael y bloc hwn yn llwyr neu ei dynnu'n llwyr."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Nid yw eich gwefan yn cynnwys cefnogaeth ar gyfer y bloc \"%s\". Gallwch adael y bloc hwn yn gyfan, trosi ei gynnwys i bloc HTML Cyfaddas, neu ei dynnu'n llwyr."],"Media area":["Ardal Cyfryngau"],"Media & Text":["Cyfryngau a Thestun"],"Show media on right":["Dangos y cyfryngau ar y dde"],"Show media on left":["Dangos y cyfryngau ar y chwith"],"Open in New Tab":["Agor mewn Tab Newydd"],Cover:["Clawr"],"Border Settings":["Gosodiadau Border"],"Edit media":["Golygu cyfrwng"],Medium:["Canolig"],"Paste URL or type to search":["Gludwch URL neu deipio i chwilio"],Terms:["Amodau"],"Your work will be published at the specified date and time.":["Bydd eich gwaith yn cael ei gyhoeddi ar y dyddiad a'r amser penodol."],"Are you ready to schedule?":["Ydych chi'n barod i amserlennu?"],"Always show pre-publish checks.":["Dangos gwiriadau cyn cyhoeddi bob tro."],"Take Over":["Cymryd Drosodd"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Mae defnyddiwr arall yn gweithio ar y cofnod hwn ar hyn o bryd, sy'n golygu nad oes modd i chi wneud newidiadau, oni bai eich bod yn cymryd drosodd."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["Mae %s yn gweithio ar y cofnod hwn ar hyn o bryd, sy'n golygu nad oes modd i chi wneud newidiadau, oni bai eich bod yn cymryd drosodd."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Mae gan ddefnyddiwr arall reolaeth olygyddol o'r cofnod hwn. Peidiwch \xe2 phoeni, mae eich newidiadau hyd yma wedi eu cadw."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Mae gan %s reolaeth olygyddol o'r cofnod hwn. Peidiwch \xe2 phoeni, mae eich newidiadau hyd yma wedi eu cadw."],Avatar:["Afatar"],"This post is already being edited.":["Mae'r cofnod hwn eisoes wedi ei olygu."],"Someone else has taken over this post.":["Mae rhywun arall wedi cymryd drosodd y cofnod hwn."],"This block contains unexpected or invalid content.":["Mae'r bloc hwn yn cynnwys cynnwys annisgwyl neu annilys."],"Resolve Block":["Datrys Bloc"],"Convert to HTML":["Trosi i HTML"],"This block can only be used once.":["Dim ond unwaith mae modd defnyddio'r bloc hwn."],"Exit Code Editor":["Gadael y Golygydd Cod"],"Editing Code":["Cod Golygu"],"Solid Color":["Lliw Solet"],"Main Color":["Prif Liw"],HTML:["HTML"],"Write HTML\u2026":["Ysgrifennu HTML\u2026"],"Media Settings":["Gosodiadau Cyfrwng"],"Overlay Color":["Lliw Troshaen"],Overlay:["Troshaen"],"Insert Media":["Mewnosod Cyfrwng"],"Reusable block imported successfully!":["\u2026Y bloc ailddefnyddiadwy wedi ei fewnforio'n llwyddiannus!"],"Invalid Reusable Block JSON file":["FFeil JSON Bloc Ailddefnyddiadwy annilys"],"Invalid JSON file":["Ffeil JSON annilys"],"Import from JSON":["Mewnforio o JSON"],Backtick:["\xd4ldic"],Period:["Atalnod llawn"],Comma:["Atalnod"],"Change type of %d block":["Newid y math o %d bloc","Newid y math o %d bloc","Newid y math o %d bloc","Newid y math o %d bloc"],Current:["Cyfredol"],"After Conversion":["Ar \xf4l Trosi"],"Change alignment":["Newidiwch yr aliniad"],"Change text alignment":["Newidiwch yr aliniad testun"],"%d block":["%d bloc","%d bloc","%d bloc","%d bloc"],Escape:["Dianc"],"Forward-slash":["Blaen slaes"],"No archives to show.":["Dim archifau i'w dangos."],"This file is empty.":["Mae'r ffeil yn wag."],"Sorry, this file type is not supported here.":["Ymddiheuriadau, nid yw'r math yna o ffeil yn cael ei chynnal yma."],"Manage All Reusable Blocks":["Rheoli Pob Bloc Ailddefnyddiadwy"],Title:["Teitl"],"Fullscreen Mode":["Modd Sgrin Llawn"],"Beautiful landscape":["Tirwedd hardd"],"Close panel":["Cau'r panel"],"Convert to Classic Block":["Trosi i Floc Clasurol"],"Remove Poster Image":["Tynnu Delwedd Poster"],"Select Poster Image":["Dewis Delwedd Poster"],"Poster Image":["Delwedd Poster"],"This block is deprecated. Please use the Columns block instead.":["Mae'r bloc hwn yn anghymeradwy. Defnyddiwch y bloc Colofnau yn lle hynny."],"Text Columns (deprecated)":["Colofnau Testun (anghymeradwy)"],"Row Count":["Cyfrif Rhesi"],"Column Count":["Cyfrif Colofnau"],"This block is deprecated. Please use the Paragraph block instead.":["Mae'r bloc hwn yn anghymeradwy. Defnyddiwch y bloc Paragraff yn lle hynny."],"Subheading (deprecated)":["Is-bennawd (anghymeradwy)"],blockquote:["dyfyniad bloc"],"Change the block type after adding a new paragraph.":["Newid y math bloc ar \xf4l ychwanegu paragraff newydd."],"Spotlight Mode":["Modd Amlygu"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Mae tagiau yn helpu defnyddwyr a pheiriannau chwilio i lywio'ch gwefan a dod o hyd i'ch cynnwys. Ychwanegwch ychydig o eiriau allweddol i ddisgrifio'ch cynnwys."],"Add tags":["Ychwanegu tagiau"],"Apply the \"%1$s\" format.":["Gosod y fformat \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Mae'ch thema yn defnyddio fformat cofnod i dynnu sylw at wahanol fathau o gynnwys, fel delweddau neu fideos. Gosodwch fformat cofnod i weld yr arddull arbennig hwn."],"Use a post format":["Defnyddiwch fformat cofnod"],"Insert After":["Mewnosod Ar \xd4l"],"Insert Before":["Mewnosod Cyn"],"Move %1$d block from position %2$d down by one place":["Symud %1$d bloc safle %2$d i lawr fesul un lle","Symud %1$d bloc safle %2$d i lawr fesul un lle","Symud %1$d bloc safle %2$d i lawr fesul un lle","Symud %1$d bloc safle %2$d i lawr fesul un lle"],"Move %1$d block from position %2$d up by one place":["Symud %1$d bloc safle %2$d i fyny fesul un lle","Symud %1$d bloc safle %2$d i fyny fesul un lle","Symud %1$d bloc safle %2$d i fyny fesul un lle","Symud %1$d bloc safle %2$d i fyny fesul un lle"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["ffilm"],"Insert a new block before the selected block(s).":["Mewnosod bloc newydd cyn y bloc (au) a ddewiswyd."],"Remove the selected block(s).":["Tynnwch y bloc(iau) a ddewiswyd."],"Duplicate the selected block(s).":["Dyblygu'r bloc(iau) a ddewiswyd."],"Block shortcuts":["Rhwystro llwybrau byr"],"Clear selection.":["Clirio'r dewis."],"Select all text when typing. Press again to select all blocks.":["Dewiswch yr holl destun wrth deipio. Cliciwch eto i ddewis pob bloc."],"Selection shortcuts":["Llwybrau byr dewis"],"Switch between Visual Editor and Code Editor.":["Newid rhwng Golygydd Gweledol a Golygydd Codau."],"Navigate to the previous part of the editor (alternative).":["Ewch i'r rhan flaenorol o'r olygydd (amgen)."],"Navigate to the next part of the editor (alternative).":["Ewch i'r rhan nesaf y golygydd (arall)."],"Navigate to the previous part of the editor.":["Ewch i'r rhan flaenorol o'r olygydd."],"Navigate to the next part of the editor.":["Ewch i'r rhan nesaf y golygydd."],"Show or hide the settings sidebar.":["Dangos neu guddio gosodiadau'r bar ochr."],"Redo your last undo.":["Ail-wneud y dadwneud diwethaf."],"Undo your last changes.":["Dadwneud y newidiadau diwethaf."],"Save your changes.":["Cadw eich newidiadau."],"Global shortcuts":["Llwybrau byr eang"],"Remove a link.":["Tynnwch ddolen."],"Convert the selected text into a link.":["Trosi'r testun a ddewiswyd i mewn i ddolen."],"Underline the selected text.":["Tanlinellwch y testun a ddewiswyd."],"Make the selected text italic.":["Gwnewch y testun a ddewiswyd yn italig."],"Make the selected text bold.":["Gwnewch y testun a ddewiswyd yndrwm."],"Text formatting":["Fformatio testun"],"Insert a new block after the selected block(s).":["Mewnosod bloc newydd ar \xf4l y bloci(au) a ddewiswyd."],"Keyboard Shortcuts":["Llwybrau Byr Bysellfwrdd"],"Thanks for testing Gutenberg!":["Diolch am brofi Gutenberg!"],"Help build Gutenberg":["Helpwch i adeiladu Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Os ydych chi eisiau dysgu mwy am sut i adeiladu blociau ychwanegol, neu os oes gennych ddiddordeb mewn helpu gyda'r prosiect, ewch i'r storfa GitHub ."],"The WordPress community":["Cymuned WordPress"],"Code is Poetry":["Barddoniaeth yw Cod"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Gallwch adeiladu unrhyw floc fel yr hoffech chi, yn sefydlog neu'n ddeinamig, addurnol neu blaen. Dyma floc dangos dyfyniad:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Gallwch osod unrhyw floc i gyd-fynd \xe2'r aliniadau hyn. Mae'r bloc mewnblannu hefyd yn gallu gwneud hynny ac yn ymatebol hefyd:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Mae'r uchod yn oriel gyda dim ond dwy ddelwedd. Mae'n ffordd haws o greu cynlluniau sy'n apelio'n weledol, heb orfod delio \xe2 rhai sy'n arnofio. Gallwch hefyd drawsnewid yr oriel yn \xf4l i ddelweddau unigol yn hawdd, trwy ddefnyddio'r bloc newid."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Gall y ddelwedd lawn-eang fod yn eithaf mawr. Ond ar adegau mae'r ddelwedd yn drawiadol iawn."],"Accessibility is important — don’t forget image alt attribute":["Mae hygyrchedd yn bwysig - peidiwch ag anghofio priodwedd delwedd"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Os ydych chi'n cyfuno'r aliniadau newydd llydan a llydan llawn ag orielau, gallwch greu cynllun cyfrwng cyfoethog, yn gyflym iawn:"],"Media Rich":["Cyfrwng Cyfoethog"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Gallwch newid y nifer o golofnau yn eich orielau trwy lusgo llithrydd yn yr arolygydd bloc yn y bar ochr."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Gall blociau fod yn unrhyw beth sydd eu hangen arnoch. Er enghraifft, efallai yr hoffech chi ychwanegu dyfyniad tawel fel rhan o gyfansoddiad eich testun, neu efallai y byddai'n well gennych ddangos un arddull fawr. Mae'r holl opsiynau hyn ar gael yn y mewnosodwr."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Mae'r wybodaeth sy'n cyfateb i ffynhonnell y dyfyniad yn faes testun ar wah\xe2n, sy'n debyg i benawdau dan ddelweddau, felly mae strwythur y dyfyniad wedi'i ddiogelu hyd yn oed os ydych yn dewis, yn addasu, neu'n tynnu'r ffynhonnell. Mae bob amser yn hawdd ei roi yn \xf4l."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["Bydd y golygydd yn ceisio creu tudalen newydd a phrofiad \xf4l-adeiladu sy'n gwneud ysgrifennu cofnodion cyfoethog yn hawdd, ac mae ganddo 'flociau' i wneud yn hawdd yr hyn, r hyn o bryd, sy'n cymryd codau byr,, HTML cyfaddas, neu ddarganfod mewnblaniad \u201cmystery meat\u201d."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Mantais mawr blociau yw y gallwch eu golygu yn eu lle a thrin eich cynnwys yn uniongyrchol. Yn lle cael meysydd ar gyfer golygu pethau fel ffynhonnell dyfyniad, neu destun botwm, gallwch newid y cynnwys yn uniongyrchol. Ceisiwch olygu'r dyfyniad canlynol:"],"Visual Editing":["Golygu Gweledol"],"And Lists like this one of course :)":["A Rhestrau fel hyn, wrth gwrs :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blociau cynllun, fel Botymau, Delweddau Trawiadol, Gwahanwyr, ac ati."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Mewnblaniadau, fel YouTube, Trydariadau, neu gofnodion WordPress eraill."],Galleries:["Orielau"],"Images & Videos":["Delweddau a Fideos"],"Text & Headings":["Penawdau Testun"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Rhowch cynnig arno, fe allwch ddarganfod pethau y gall WordPress eu hychwanegu at eich cofnod nad oeddech chi'n gwybod amdanyn nhw. Dyma restr fer o'r hyn y gallwch chi ei gael yno ar hyn o bryd:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Dychmygwch fod popeth y gall WordPress ei wneud ar gael i chi yn gyflym ac yn yr un lle ar y rhyngwyneb. Nid oes angen gweithio allan tagiau HTML, dosbarthiadau, na chofio cystrawen cymhlethdod codau byr. Dyna'r syniad y tu \xf4l i'r mewnosodwr \u2014 y botwm (+) byddwch yn ei weld o gwmpas y golygydd\u2014sy'n eich galluogi i bori drwy'r holl flociau cynnwys sydd ar gael a'u hychwanegu i'ch cofnod. Gall ychwanegion a them\xe2u gofrestru eu hunain, gan agor pob math o bosibiliadau ar gyfer golygu a chyhoeddi cyfoethog."],"The Inserter Tool":["Y Teclyn Mewnosod"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Ceisiwch ddewis a dileu neu olygu'r pennawd, nawr does dim angen i chi fod yn ofalus yngl\u0177n \xe2 dewis y ddelwedd neu destun arall trwy gamgymeriad a difetha'r cyflwyniad."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Os yw'ch thema yn ei gefnogi, fe welwch y botwm \"eang\" ar y bar offer delwedd. Rhowch gynnig arni."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Mae delio \xe2 delweddau a chyfryngau gyda'r gofal mwyaf yn brif ffocws y golygydd newydd. Gobeithio y byddwch yn cael ychwanegu capsiynau neu fynd yn lled llawn \xe2'ch lluniau yn llawer haws a chadarn nag o'r blaen."],"A Picture is Worth a Thousand Words":["Mae Darlun yn Werth Mil o Eiriau"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Mae penawdau hefyd yn flociau ar wah\xe2n, sy'n helpu gydag amlinell a threfniadaeth eich cynnwys."],"... like this one, which is right aligned.":["... fel yr un yma, sydd wedi'i alinio i'r dde."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Mae'r hyn rydych yn ei ddarllen nawr yw floc testun, y bloc mwyaf sylfaenol oll. Mae gan y bloc testun ei reolaethau ei hun i'w symud yn rhydd o gwmpas y cofnod..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Nod y golygydd newydd hwn yw ychwanegu cynnwys cyfoethog i WordPress mewn ffordd syml a hwylus. Mae'r cofnod cyfan hwn yn cynnwys darnau o gynnwys - ychydig yn debyg i frics LOGO - y gallwch eu symud o gwmpas a rhyngweithio \xe2 nhw. Symudwch eich cyrchwr o gwmpas a byddwch yn sylwi ar y gwahanol flociau yn goleuo gydag amlinelliadau a saethau. Cliciwch y saethau i ailosod y blociau'n gyflym, heb ofni colli pethau yn y broses o gop\xefo a gludo."],"Of Mountains & Printing Presses":["Mynyddoedd a Gweisg Argraffu"],"Welcome to the Gutenberg Editor":["Croeso i Olygydd Gutenberg"],"block name\x04More":["Rhagor"],"button to expand options\x04More":["Rhagor"],"Are you sure you want to unschedule this post?":["Ydych chi'n si\u0175r eich bod am ddadamserlennu'r cofnod hwn?"],"Alt Text (Alternative Text)":["Testun Amgen (Testun Amgen)"],"Reusable Block":["Bloc Ailddefnyddiadwy"],"Unique identifier for the object.":["Dynodwr unigryw ar gyfer y gwrthrych."],"Untitled Reusable Block":["Bloc Ail Ddefnyddiadwy Dideitl"],Small:["Bach"],"(%s: %s)":["(%s: %s)"],Reusable:["Ail Ddefnyddiadwy"],"(current %s: %s)":["(cyfredol %s: %s)"],"Remove from Reusable Blocks":["Tynnu o'r Blociau Ail Ddefnyddiadwy"],"Add to Reusable Blocks":["Ychwanegu at y Blociau Ail Ddefnyddiadwy"],"Keep as HTML":["Cadw fel HTML"],"Edit URL":["Golygu URL"],"Color Settings":["Gosodiadau Lliw"],"The response is not a valid JSON response.":["Nid yw'r ymateb yn ymateb dilys JSON."],"Editor publish":["Cyhoeddi golygydd"],Muted:["Wedi'i Fudo"],"Video Settings":["Gosodiadau Fideo"],"recent comments":["sylwadau diweddar"],"Latest Comments":["Sylwadau Diweddaraf"],"Display Excerpt":["Dangos Darn"],"Display Date":["Dyddiad Dangos"],"Display Avatar":["Dangos Afatar"],"Latest Comments Settings":["Gosodiadau Sylwadau Diweddaraf"],"Number of Comments":["Nifer y Sylwadau"],"Background Opacity":["Didreiddedd Cefndir"],Auto:["Awto"],Preload:["Rhaglwytho"],"Audio Settings":["Gosodiadau Sain"],"Display a monthly archive of your posts.":["Dangos archif misol o'ch cofnodion."],"Display as Dropdown":["Dangos fel cwymplen"],"Show Post Counts":["Dangos Nifer y Cofnodion"],"Archives Settings":["Gosodiadau Archifau"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Cymorth"],"No comments to show.":["Dim sylwadau i'w dangos."],"%1$s on %2$s":["%1$s ar %2$s"],"Select Post":["Dewis Cofnod"],"Select Week":["Dewis Wythnos"],"Select Day":["Dewis Diwrnod"],"Select Month":["Dewis Mis"],"Select Year":["Dewis Blwyddyn"],Archives:["Archif"],"Very dark gray":["Llwyd tywyll iawn"],"Cyan bluish gray":["Llwyd las wyrdd"],"Very light gray":["Llwyd golau iawn"],"Vivid cyan blue":["Glas wyrdd cryf"],"Pale cyan blue":["Glas wyrdd gwan"],"Vivid green cyan":["Gwyrdd glaswyrdd cryf"],"Light green cyan":["Gwyrdd glaswyrdd cryf"],"Luminous vivid amber":["Ambr cryf llewyrchol"],"Luminous vivid orange":["Oren cryf llewyrchol"],"Vivid red":["Coch llachar"],"Pale pink":["Pinc gwan"],"Inline image":["Delwedd fewnlin"],"Available block types":["Mathau bloc sydd ar gael"],"Transform To:":["Trawsnewid i:"],"Remove Block":["Dileu Bloc","Dileu Blociau","Dileu Blociau","Dileu Blociau"],"Open publish panel":["Agor panel cyhoeddi"],Dots:["Dotiau"],"Wide Line":["Llinell Llydan"],Large:["Mawr"],"Show download button":["Dangos botwm llwytho i lawr"],"Download button settings":["Gosodiadau botwm llwytho i lawr"],"Link To":["Dolen i"],"Text link settings":["Gosodiadau cyswllt testun"],pdf:["pdf"],document:["dogfen"],"Copy URL":["Cop\xefo URL"],"Write file name\u2026":["Ysgrifennwch enw'r ffeil\u2026"],"Edit file":["Golygu ffeil"],File:["Ffeil"],"A single column within a columns block.":["Un golofn o fewn bloc colofnau."],Column:["Colofn"],Outline:["Amlinell"],Loop:["Cylchu"],Autoplay:["Awtochwarae"],"Playback Controls":["Rheolyddion Chwarae"],"Close dialog":["Cau'r deialog"],"Sorry, this file type is not permitted for security reasons.":["Nid yw'r math hon o ffeil yn cael ei chaniat\xe1u am resymau diogelwch."],"Disable tips":["Analluogi awgrymiadau"],"Got it":["Iawn, rwy'n deall"],"See next tip":["Gweld yr awgrym nesaf"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Pan fyddwch chi'n barod, cyflwynwch eich gwaith i'w hadolygu, a bydd Golygydd yn gallu ei gymeradwyo ar eich rhan."],"Are you ready to submit for review?":["Ydych chi'n barod i'w gyflwyno ar gyfer ei adolygu?"],"Replace image":["Amnewid delwedd"],"Remove image":["Tynnu'r ddelwedd"],"Error while uploading file %s to the media library.":["Gwall wrth lwytho ffeil %s i lyfrgell y cyfryngau."],"This file exceeds the maximum upload size for this site.":["Mae'r ffeil yn rhy fawr ar gyfer y wefan hon."],"View the autosave":["Edrychwch ar yr awtogadw"],"There is an autosave of this post that is more recent than the version below.":["Mae fersiwn awtogadw o'r cofnod hwn sy'n fwy diweddar na'r fersiwn isod."],Autosaving:["Awtogadw"],"Enter URL here\u2026":["Rhowch URL yma\u2026"],"Pin to toolbar":["Pinio i'r bar offer"],"Unpin from toolbar":["Dadbinio o'r bar offer"],"Insert a table \u2014 perfect for sharing charts and data.":["Mewnosod tabl - yn berffaith ar gyfer rhannu siartiau a data."],"Fixed width table cells":["Celloedd tabl lled sefydlog"],"Table Settings":["Gosodiadau Tabl"],"Add text that respects your spacing and tabs, and also allows styling.":["Ychwanegwch destun sy'n parchu eich gofod a'ch tabiau, a hefyd yn caniat\xe1u ei addurno."],"Display a list of your most recent posts.":["Dangoswch restr o'ch cofnodion diweddaraf."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Ychwanegwch floc sy'n dangos cynnwys sy'n cael ei dynnu o wefannau eraill, fel Twitter, Instagram neu YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Ychwanegwch floc sy'n dangos cynnwys mewn nifer lluosog o golofnau, yna ychwanegwch pa flociau bynnag yr hoffech chi."],"Error loading block: %s":["Gwall wrth lwytho bloc: %s"],"Unknown error":["Gwall anhysbys"],"Embed Handler":["Mewnblannwch Reolwr"],"term\x04Remove %s":["Tynnu %s"],"Copy the permalink":["Cop\xefo'r ddolen barhaol"],"Permalink copied":["Dolen barhaol wedi ei gop\xefo"],"Height in pixels":["Uchder mewn picseli"],"Spacer Settings":["Gosodiadau Bylchwr"],Spacer:["Bylchwr"],"Toggle to show a large initial letter.":["Toglo i ddangos llythyren cychwynnol mawr."],"Showing large initial letter.":["Yn dangos llythyren cychwynnol mawr."],"Name:":["Enw:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s o%3$s)"],"Remove item":["Tynnu eitem"],"Color code: %s":["Cod lliw: %s"],"Skip to the selected block":["Ewch i'r bloc dewiswyd"],"Publish\u2026":["Cyhoeddi\u2026"],"Schedule\u2026":["Amserlenwyd\u2026"],"Edit post permalink":["Golygu dolen barhaol cofnod"],"Show Block Settings":["Dangos Gosodiadau Bloc"],"Hide Block Settings":["Cuddio Gosodiadau Bloc"],"Block settings closed":["Lleoliadau bloc wedi cau"],"Close plugin":["Ychwanegwch ategyn"],"Link settings":["Gosodiadau dolen"],Unlink:["Datgysylltu"],"Page break":["Toriad tudalen"],pagination:["tudaleniad"],"next page":["tudalen nesaf"],"Image Size":["Maint Delwedd"],Height:["Uchder"],Width:["Lled"],"Image Dimensions":["Dimensiynau Delwedd"],"Thumbnails are not cropped.":["Nid yw lluniau bach wedi eu tocio."],"Thumbnails are cropped to align.":["Mae lluniau bach wedi eu tocio i'w halinio."],"Media Library":["Llyfrgell Cyfrwng"],Advanced:["Uwch"],"Add item":["Ychwanegu eitem"],"Reset the template":["Ailosod y templed"],"Keep it as is":["Cadwch fel ag y mae"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Nid yw cynnwys eich cofnod yn cydweddu'r templed a neilltuwyd i'ch math o gofnod."],"Resetting the template may result in loss of content, do you want to continue?":["Gall ailosod y templed arwain at golli cynnwys, ydych chi am barhau?"],"Document Statistics":["Ystadegau Dogfen"],"is now scheduled. It will go live on":["wedi'i amserlennu. Bydd yn mynd yn fyw ar"],Scheduled:["Amserlenwyd"],"Scheduling\u2026":["Amserlennu\u2026"],"Code editor selected":["Golygydd cod wedi'i ddewis"],"Visual editor selected":["Golygydd gweledol wedi'i ddewis"],Plugins:["Ategion"],"Custom Size":["Maint Cyfaddas"],"Layout Elements":["Elfennau'r Cynllun"],"term\x04%s removed":["%s wedi'i ddileu"],"term\x04%s added":["%s wedi'i ychwanegu"],"imperative verb\x04Preview":["Rhagolwg"],"Block deleted.":["Bloc wedi'i ddileu."],"Block updated.":["Bloc wedi'i ddiweddaru."],"Block created.":["Bloc wedi'i greu."],"Trashing failed":["Methodd gosod yn y sbwriel"],"Updating failed.":["Methodd y diweddaru."],"Scheduling failed.":["Methodd yr amserlennu."],"Publishing failed.":["Methodd y cyhoeddi."],"View Post":["Dangos y Cofnod"],"You have unsaved changes. If you proceed, they will be lost.":["Mae gennych newidiadau heb eu cadw. Os byddwch yn bwrw ymlaen, byddan nhw'n cael eu colli."],"Document Outline":["Amlinelliad o'r Ddogfen"],Paragraphs:["Paragraffau"],Headings:["Penawdau"],Words:["Geiriau"],"Content structure":["Strwythur cynnwys"],Public:["Cyhoeddus"],"Protected with a password you choose. Only those with the password can view this post.":["Wedi'i warchod gyda chyfrinair rydych chi'n ei ddewis. Dim ond y rhai sydd \xe2'r cyfrinair all weld y cofnod hwn."],"Password Protected":["Diogelu gyda Chyfrinair"],"Only visible to site admins and editors.":["Dim ond gweladwy i weinyddwyr a golygyddion."],Private:["Preifat"],"Visible to everyone.":["Yn weladwy i bawb."],"Post Visibility":["Gwelededd Cofnod"],"Would you like to privately publish this post now?":["Hoffech chi gyhoeddi'r cofnod yn breifat nawr?"],"Use a secure password":["Defnyddiwch gyfrinair diogel"],"Create password":["Creu cyfrinair"],"Move to Trash":["Symud i'r Sbwriel"],"Parent Term":["Term Rhiant"],"Parent Category":["Categori Rhiant"],"Add new term":["Ychwanegwch derm newydd"],"Add new category":["Ychwanegu categori newydd"],Term:["Term"],Tag:["Tag"],"Add New Term":["Ychwanegwch derm newydd"],"Add New Tag":["Ychwanegu Tag Newydd"],"Switch to Draft":["Newid i Ddrafft"],"Are you sure you want to unpublish this post?":["Ydych chi'n si\u0175r eich bod am ddatgyhoeddi'r cofnod hwn?"],Immediately:["Ar unwaith"],"Save Draft":["Cadw Drafft"],Saving:["Cadw"],"Publish:":["Cyhoeddi:"],"Visibility:":["Gwelededd:"],"Are you ready to publish?":["Ydych chi'n barod i'w gyhoeddi?"],"Copy Link":["Cop\xefo Dolen"],"What\u2019s next?":["Beth sydd nesaf?"],"is now live.":["nawr yn fyw."],Published:["Cyhoeddwyd"],Schedule:["Amserlennu"],Update:["Diweddaru"],"Submit for Review":["Cyflwyno ar gyfer Adolygiad"],"Updating\u2026":["Diweddaru\u2026"],"Publishing\u2026":["Cyhoeddi\u2026"],"Allow Pingbacks & Trackbacks":["Caniat\xe1u Hysbysiad Cydnabod a Chyfeirio"],"Permalink:":["Dolen Barhaol:"],"Pending Review":["Dan Ystyriaeth"],"%d Revision":["%d Adolygiad","%d Adolygiad","%d Adolygiad","%d Adolygiad"],"Suggestion:":["Awgrym:"],"Post Format":["Fformat Cofnod"],Chat:["Sgwrs"],Status:["Statws"],Standard:["Safonol"],Aside:["Neilleb"],"Set Featured Image":["Gosod Delwedd Nodwedd"],"Learn more about manual excerpts":["Dysgwch fwy am ddyfyniadau llaw"],"Write an excerpt (optional)":["Ysgrifennwch ddyfyniad (dewisol)"],"Allow Comments":["Caniat\xe1u Sylwadau"],"Template:":["Templed:"],"no parent":["dim rhiant"],"no title":["dim teitl"],Order:["Trefn"],"No blocks found.":["Heb ganfod blociau."],"%d result found.":["%d canlyniad wedi ei ganfod.","%d canlyniad wedi eu canfod.","%d canlyniad wedi eu canfod.","%d canlyniad wedi eu canfod."],Saved:["Cadwyd"],Embeds:["Mewnblannu"],Blocks:["Blociau"],"Search for a block":["Chwiliwch am floc"],"Add block":["Ychwanegu bloc"],"Add %s":["Ychwanegu %s"],"Copy Error":["Gwall Cop\xefo"],"Copy Post Text":["Copi Testun Cofnod"],"Attempt Recovery":["Ceisiwch Adfer"],"The editor has encountered an unexpected error.":["Mae'r golygydd wedi canfod gwall annisgwyl."],Undo:["Dadwneud"],Redo:["Ail-wneud"],"(Multiple H1 headings are not recommended)":["(Nid ydym yn argymell penawdau H1 lluosog)"],"(Your theme may already use a H1 for the post title)":["(Efallai y bydd eich thema eisoes yn defnyddio H1 ar gyfer teitl y cofnod)"],"(Incorrect heading level)":["(Lefel pennawd anghywir)"],"(Empty heading)":["(Pennawd gwag)"],"Block Styles":["Arddulliau Bloc"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Ydych chi'n si\u0175r eich bod am ddileu'r Bloc Ailddefnyddiadwy?\n\nCaiff ei dynnu'n barhaol o'r holl gofnodion a thudalennau sy'n ei ddefnyddio."],"Convert to Regular Block":["Trosi i Floc Arferol"],"More options":["Rhagor o ddewisiadau"],"Edit visually":["Golygu'n weledol"],Duplicate:["Dyblygu"],"Blocks cannot be moved down as they are already at the bottom":["Nid oes modd symud blociau i lawr gan eu bod eisoes ar y gwaelod"],"Blocks cannot be moved up as they are already at the top":["Nid oes modd symud blociau i fyny gan eu bod eisoes ar y brig"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["Bloc %s yw'r unig floc, ac nid oes modd ei symud"],"Edit as HTML":["Golygu fel HTML"],"Convert to Blocks":["Trosi i Flociau"],"Block: %s":["Bloc: %s"],"This block has encountered an error and cannot be previewed.":["Mae'r bloc hwn wedi canfod gwall ac nid oes modd ei ragweld."],"No block selected.":["Heb ddewis bloc."],"Transform into:":["Trawsffurfio i:"],Remove:["Tynnu"],"Find original":["Canfod y gwreiddiol"],"Copy All Content":["Cop\xefo'r Holl Gynnwys"],"Copied!":["Wedi'i gop\xefo!"],"Additional settings are now available in the Editor block settings sidebar":["Mae gosodiadau ychwanegol ar gael nawr yn bar ochr gosodiadau bloc y Golygydd"],Visibility:["Gwelededd"],"Status & Visibility":["Statws a Gwelededd"],"Page Attributes":["Priodweddau'r Dudalen"],Block:["Bloc"],Document:["Dogfen"],"Featured Image":["Delwedd Nodwedd"],"Close settings":["Cau gosodiadau"],"Editor content":["Cynnwys golygydd"],Tools:["Offer"],Editor:["Golygydd"],"Code Editor":["Golygydd Cod"],"Visual Editor":["Golygydd Gweledol"],"Editor top bar":["Bar uchaf y golygydd"],Settings:["Gosodiadau"],Reset:["Ailosod"],"Dismiss this notice":["Diystyru'r rhybudd yma"],"Item removed.":["Eitem wedi ei dynnu."],"Item added.":["Ychwanegu eitem."],"Drop files to upload":["Gollwng ffeiliau i'w llwytho i fyny"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Digwyddodd gwall anhysbys."],"No results.":["Dim canlyniadau."],"%d result found, use up and down arrow keys to navigate.":["Wedi canfod %d canlyniad. Defnyddiwch y bysellau saeth i fyny ac i lawr i lywio.","Wedi canfod %d canlyniad. Defnyddiwch y bysellau saeth i fyny ac i lawr i lywio.","Wedi canfod %d canlyniad. Defnyddiwch y bysellau saeth i fyny ac i lawr i lywio.","Wedi canfod %d canlyniad. Defnyddiwch y bysellau saeth i fyny ac i lawr i lywio."],"(no title)":["(dim teitl)"],URL:["URL"],Submit:["Cyflwyno"],Close:["Cau"],"Insert link":["Mewnosod dolen"],"Edit link":["Golygu dolen"],Link:["Dolen"],Strikethrough:["Llinell Drwodd"],Italic:["Italig"],Bold:["Trwm"],"Remove link":["Tynnu dolen"],"Number of items":["Nifer yr eitemau"],All:["Popeth"],Category:["Categori"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Hynaf i'r Diweddaraf"],"Newest to Oldest":["Diweddaraf i'r Hynaf"],"Order by":["Yn \xf4l trefn"],Select:["Dewis"],"Select or Upload Media":["Dewis neu Lwytho Cyfryngau"],Video:["Fideo"],"Edit video":["Golygu fideo"],"Write\u2026":["Ysgrifennu\u2026"],poetry:["barddoniaeth"],Verse:["Pennill"],"New Column":["Colofn Newydd"],"Delete Column":["Dileu Colofn"],"Add Column After":["Ychwanegu Colofn Ar \xd4l"],"Add Column Before":["Ychwanegu Colofn Cyn"],"Delete Row":["Dileu Rhes"],"Add Row After":["Ychwanegu Rhes Ar \xd4l"],"Add Row Before":["Ychwanegu Rhes Ar Cyn"],"Edit table":["Golygu tabl"],Table:["Tabl"],"Write subheading\u2026":["Ysgrifennu is-bennawd\u2026"],"Write shortcode here\u2026":["Ysgrifennu cod byr yma\u2026"],Shortcode:["Cod byr"],divider:["rhannwr"],"horizontal-line":["llinell lorweddol"],Separator:["Ymwahanydd"],Quote:["Dyfyniad"],"Write citation\u2026":["Ysgrifennu dyfyniad\u2026"],"Write quote\u2026":["Ysgrifennu dyfyniad\u2026"],Pullquote:["Dyfyniad"],"Write preformatted text\u2026":["Ysgrifennwch destun wedi'i ragfformatio\u2026"],Preformatted:["Rhagffomatedig"],text:["testun"],Paragraph:["Paragraff"],"Font Size":["Maint Ffont"],"Drop Cap":["Gollwng Prif Lythyren"],"Text Settings":["Gosodiadau Testun"],"Read more":["Darllen mwy"],"Write list\u2026":["Rhestr ysgrifennu\u2026"],"numbered list":["rhestr rifedig"],"ordered list":["rhestr drefnus"],"bullet list":["rhestr bwled"],"Indent list item":["Eitem rhestr mewnoli"],"Outdent list item":["Eitem rhestr alloli"],"Convert to ordered list":["Trosi i restr wedi ei drefnu"],"Convert to unordered list":["Trosi i restr heb ei drefnu"],List:["Rhestr"],"recent posts":["cofnodion diweddar"],"No posts found.":["Heb ganfod unrhyw gofnodion."],"Latest Posts":["Cofnodion Diweddaraf"],"Display post date":["Dangos dyddiad cofnod"],"Grid view":["Golwg grid"],"List view":["Golwg rhestr"],photo:["ffoto"],"Image Settings":["Gosodiadau Delwedd"],Image:["Delwedd"],Preview:["Rhagolwg"],embed:["mewnblannu"],"Custom HTML":["HTML Cyfaddas"],subtitle:["isdeitl"],title:["teitl"],Heading:["Pennyn"],"Write heading\u2026":["Ysgrifennu pennawd\u2026"],"Heading %d":["Pennawd %d"],Level:["Lefel"],"Heading Settings":["Gosodiadau Pennawd"],photos:["ffotos"],images:["delweddau"],"Remove Image":["Tynnu'r Ddelwedd"],None:["Dim"],"Media File":["Ffeil Cyfrwng"],"Attachment Page":["Tudalen Atodi"],"Crop Images":["Tocio Delweddau"],"Gallery Settings":["Gosodiadau'r Oriel"],Gallery:["Oriel"],Classic:["Clasurol"],video:["fideo"],audio:["sain"],music:["cerddoriaeth"],image:["delwedd"],blog:["blog"],post:["cofnod"],"Embedded content from %s":["Cynnwys wedi'i fewnblannu o %s"],"Enter URL to embed here\u2026":["Rhowch URL i'w fewnblannu yma\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Mewnblannu\u2026"],"Write title\u2026":["Ysgrifennwch deitl\u2026"],"Fixed Background":["Cefndir Sefydlog"],"Edit image":["Golygu delwedd"],Columns:["Colofnau"],Experiments:["Arbrofion"],Code:["Cod"],"Write code\u2026":["Ysgrifennwch god\u2026"],Categories:["Categor\xefau"],"Show Hierarchy":["Dangos yr Hierarchiaeth"],"Show post counts":["Dangos nifer y cofnodion"],"Categories Settings":["Gosodiadau Categor\xefau"],"Add text\u2026":["Ychwanegu testun\u2026"],Button:["Botwm"],Apply:["Gweithredu"],"Text Color":["Lliw'r Testun"],"Background Color":["Lliw'r Cefndir"],"Block has been deleted or is unavailable.":["Mae'r bloc wedi'i ddileu neu nid yw ar gael."],"Reusable Blocks":["Blociau Ail Ddefnyddiadwy"],Cancel:["Diddymu"],Edit:["Golygu"],"Edit audio":["Golygu sain"],"Write caption\u2026":["Ysgrifennwch bennawd\u2026"],"Use URL":["Defnyddio URL"],Audio:["Sain"],Upload:["Llwytho i fyny"],"Additional CSS Class(es)":["Dosbarth(iadau) CSS Ychwanegol"],"HTML Anchor":["Angor HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Efallai y bydd y cyfuniad lliw hwn yn anodd i bobl ei ddarllen. Ceisiwch ddefnyddio lliw cefndir mwy disglair a/neu liw testun tywyllach."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Efallai y bydd y cyfuniad lliw hwn yn anodd i bobl ei ddarllen. Ceisiwch ddefnyddio lliw cefndir tywyllach a/neu liw testun mwy disglair."],Clear:["Clirio"],"Custom color picker":["Dewisydd lliwiau cyfaddas"],"Color: %s":["Lliw: %s"],"Full Width":["Lled Llawn"],"Wide Width":["Lled Llydan"],Widgets:["Teclynnau"],Formatting:["Fformatio"],"Common Blocks":["Blociau Cyffredin"],"Align Right":["Alinio i'r Dde"],"Align Center":["Alinio i'r Canol"],"Align Left":["Alinio i'r Chwith"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Argraffu ers 1440. Dyma'r ategyn datblygu ar gyfer y golygydd bloc newydd yn y craidd."],"Add title":["Ychwanegu teitl"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Mae modd datblygu Gutenberg yn ei gwneud yn ofynnol i ffeiliau gael eu hadeiladu. Rhedwch npm install i osod y dibyniaethau, npm run build i adeiladu'r ffeiliau neu npm run dev i adeiladu'r ffeiliau a gwylio am newidiadau. Darllenwch y ffeil cyfrannu i gael mwy o wybodaeth."],Author:["Awdur"],Slug:["Bonyn"],Discussion:["Trafodaeth"],"Custom Fields":["Meysydd Cyfaddas"],Excerpt:["Dyfyniad"],Publish:["Cyhoeddi"],Metadata:["Metadata"],Save:["Cadw"],Documentation:["Dogfennaeth"],"Select Category":["Dewis Categori"],"(Untitled)":["(Dideitl)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Mae Gutenberg yn gofyn am WordPress %s neu'n hwyrach i weithio'n iawn. Diweddarwch WordPress cyn gweithredu Gutenberg."],"Gutenberg Team":["T\xeem Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Arddangos"],"%s ago":["%s yn \xf4l"],"Block style name must be a string.":["Rhaid i enw arddull bloc fod yn llinyn."]}},829,[]); +__d(function(e,t,o,i,r,a,n){r.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top Toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":[],"To edit the featured image, you need permission to upload media.":["For at redigere det udvalgte billede kr\xe6ver det at du har tilladelse til at upload medier."],"To edit this block, you need permission to upload media.":[],"(selected block)":["(valgte blok)"],"Block tools":[],Permalink:[],"This image has an empty alt attribute":["Dette billede har ingen alternativ tekst"],"This image has an empty alt attribute; its file name is %s":["Dette billede har ingen alternativ tekst; filens navn er %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":["Tilf\xf8j ny"],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":["%s blokke valgt."],Thumbnail:[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":["Blok ikon"],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],Annotation:[],"Drag images, upload new ones or select files from your library.":[],"blocks\x04Most Used":[],"imperative verb\x04Resolve":[],"font size name\x04Huge":[],"font size name\x04Large":[],"font size name\x04Medium":[],"font size name\x04Small":[],"font size name\x04Normal":[],"keyboard button\x04Enter":[],"button label\x04Import":[],"button label\x04Download":[],"button label\x04Embed":[],"block title\x04Embed":[],"block title\x04Classic":[],"block style\x04Large":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],media:[],"Double-check your settings before publishing.":[],"Generating preview\u2026":[],"Edit or update the image":[],Media:[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text Settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay \u2014 great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\x04View":[],"editor button\x04Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],Styles:[],"Advanced Panels":[],"Document Panels":[],General:[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":["Fokuser p\xe5 en blok ad gangen"],"Access all block and document tools in a single place":[],Options:[],"(opens in a new tab)":[],Minutes:[],Hours:[],Time:[],Year:[],Day:[],December:[],November:[],October:[],September:[],August:[],July:[],June:[],May:[],April:[],March:[],February:[],January:[],Month:[],Date:[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],Stripes:[],"Your site doesn\u2019t include support for this block.":[],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:[],"Border Settings":[],"Edit media":[],Medium:["Mellem"],"Paste URL or type to search":["Inds\xe6t URL eller skriv for at s\xf8ge"],Terms:[],"Your work will be published at the specified date and time.":["Dit indl\xe6g vil blive udgivet p\xe5 den angivne dato og klokkesl\xe6t."],"Are you ready to schedule?":["Er du klar til at planl\xe6gge udgivelse?"],"Always show pre-publish checks.":[],"Take Over":["Overtag"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["En anden bruger arbejder i \xf8jeblikket p\xe5 dette indl\xe6g, hvilket betyder du ikke kan lave \xe6ndringer medmindre du overtager."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s arbejder i \xf8jeblikket p\xe5 dette indl\xe6g, hvilket betyder du ikke kan lave \xe6ndringer medmindre du overtager."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["En anden bruger har overtaget redigeringen af dette indl\xe6g. Bare rolig, dine \xe6ndringer indtil nu er blevet gemt."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s har overtaget redigeringen af dette indl\xe6g. Bare rolig, dine \xe6ndringer indtil nu er blevet gemt."],Avatar:["Profilbillede"],"This post is already being edited.":["Dette indl\xe6g bliver allerede redigeret."],"Someone else has taken over this post.":["En anden har overtaget dette indl\xe6g."],"This block contains unexpected or invalid content.":["Denne blok har uventet eller ugyldigt indhold."],"Resolve Block":[],"Convert to HTML":["Omdan til HTML"],"This block can only be used once.":["Denne blok kan kun bruges en gang."],"Exit Code Editor":["Afslut kode redigering"],"Editing Code":["Redigerer kode"],"Solid Color":["Ensfarvet"],"Main Color":["Prim\xe6r farve"],HTML:["HTML"],"Write HTML\u2026":["Skriv HTML..."],"Media Settings":["Medieindstillinger"],"Overlay Color":["Overlejringsfarve"],Overlay:["Overlejring"],"Insert Media":["Inds\xe6t medie"],"Reusable block imported successfully!":["Genbrugelig blok importeret!"],"Invalid Reusable Block JSON file":["Ugyldig genbrugelig blok jSON fil"],"Invalid JSON file":["Ugyldig jSON fil"],"Import from JSON":["Importer fra jSON"],Backtick:[],Period:["Perode"],Comma:["Komma"],"Change type of %d block":["\xc6ndre type af %d blok","\xc6ndre type af %d blokke"],Current:["Nuv\xe6rende"],"After Conversion":["Efter konvertering"],"Change alignment":[],"Change text alignment":[],"%d block":["%d blok","%d blokke"],Escape:["Afbryd"],"Forward-slash":["Skr\xe5streg"],"No archives to show.":["Ingen arkiver at vise"],"This file is empty.":["Denne fil er tom."],"Sorry, this file type is not supported here.":["Beklager, filtypen er ikke underst\xf8ttet her."],"Manage All Reusable Blocks":["H\xe5ndter alle genbrugelige blokke"],Title:["Titel"],"Fullscreen Mode":["Fuldsk\xe6rmstilstand"],"Beautiful landscape":["Smukt landskab"],"Close panel":["Luk panelet"],"Convert to Classic Block":["Konverter til klassisk blok"],"Remove Poster Image":["Fjern plakat billede"],"Select Poster Image":["V\xe6lg plakat billede"],"Poster Image":["Plakat billede"],"This block is deprecated. Please use the Columns block instead.":["Denne blok er udfaset. Brug venligst kolonnerne i stedet."],"Text Columns (deprecated)":["Tekst kolonner (udfaset)"],"Row Count":["Antal r\xe6kker"],"Column Count":["Antan kolonner"],"This block is deprecated. Please use the Paragraph block instead.":["Denne blok er for\xe6ldet. Brug venligst afsnit blokken i stedet for."],"Subheading (deprecated)":[],blockquote:["blockquote"],"Change the block type after adding a new paragraph.":[],"Spotlight Mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":["Tilf\xf8j n\xf8gleord"],"Apply the \"%1$s\" format.":["Anvend \"%1$s\" formatet."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":["Brug et indl\xe6g format"],"Insert After":["Inds\xe6t efter"],"Insert Before":["Inds\xe6t f\xf8r"],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["film"],"Insert a new block before the selected block(s).":["Inds\xe6t en ny blok f\xf8r den valgte blok(ke)"],"Remove the selected block(s).":["Fjerne valgte blok(ke)."],"Duplicate the selected block(s).":["Duplik\xe9r valgte blok(ke)."],"Block shortcuts":["Blok genveje"],"Clear selection.":["Ryd valg."],"Select all text when typing. Press again to select all blocks.":["V\xe6lg al tekst mens du skriver. Tryk igen for at v\xe6lge alle blokke."],"Selection shortcuts":["Udvalg af genveje"],"Switch between Visual Editor and Code Editor.":["Skift mellem visuel redigeringsvindue og kode redigeringsvindue."],"Navigate to the previous part of the editor (alternative).":[],"Navigate to the next part of the editor (alternative).":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":["Vis eller skjul indstillinger i sidebaren."],"Redo your last undo.":[],"Undo your last changes.":["Fortryd din sidste \xe6ndring."],"Save your changes.":["Gem dine \xe6ndringer"],"Global shortcuts":["Globale genveje"],"Remove a link.":["Fjern et link."],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard Shortcuts":[],"Thanks for testing Gutenberg!":["Tak for, at du vil teste Gutenberg!"],"Help build Gutenberg":["Hj\xe6lp med at bygge Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":["Wordpress-f\xe6llesskabet"],"Code is Poetry":["Kode er poeci"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["Visuel redigering"],"And Lists like this one of course :)":["Og lister som denne her selvf\xf8lgelig :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:["Gallerier"],"Images & Videos":["Billeder & videoer"],"Text & Headings":["Tekst & overskrifter"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":["Inds\xe6tningsv\xe6rkt\xf8jet"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["Et billede siger mere end tusind ord"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Velkommen til Gutenberg-editoren"],"block name\x04More":["Flere"],"button to expand options\x04More":["Flere"],"Are you sure you want to unschedule this post?":["Er du sikker p\xe5 du vil fjerne planen for dette indl\xe6g?"],"Alt Text (Alternative Text)":["Alt tekst (Alternativ tekst)"],"Reusable Block":["Genbrugelig blok"],"Unique identifier for the object.":["Unik identifikator til objektet."],"Untitled Reusable Block":[],Small:["lille"],"(%s: %s)":["(%s: %s)"],Reusable:["Genbrugelig"],"(current %s: %s)":["(nuv\xe6rende %s: %s)"],"Remove from Reusable Blocks":["Fjern fra genbrugelige blokke"],"Add to Reusable Blocks":["Tilf\xf8j til genbrugelige blokke"],"Keep as HTML":["Behold som HTML"],"Edit URL":["Rediger URL"],"Color Settings":["Farveindstillinger"],"The response is not a valid JSON response.":[],"Editor publish":["Editor udgivelse"],Muted:[],"Video Settings":["Videoindstillinger"],"recent comments":["seneste kommentarer"],"Latest Comments":["Seneste kommentarer"],"Display Excerpt":["Vis uddrag"],"Display Date":["Vis dato"],"Display Avatar":["Vis avatar"],"Latest Comments Settings":["Indstillinger for seneste kommentarer"],"Number of Comments":["Antal kommentarer"],"Background Opacity":["Baggrunds-gennemsigtighed"],Auto:["Auto"],Preload:["Forudindl\xe6s"],"Audio Settings":["Indstillinger for lyd"],"Display a monthly archive of your posts.":[],"Display as Dropdown":["Vis som rullemenu"],"Show Post Counts":[],"Archives Settings":["Arkiv indstillinger"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Support"],"No comments to show.":["Der er ingen kommentarer at vise."],"%1$s on %2$s":["%1$s p\xe5 %2$s"],"Select Post":["V\xe6lg indl\xe6g"],"Select Week":["V\xe6lg uge"],"Select Day":["V\xe6lg dag"],"Select Month":["V\xe6lg m\xe5ned"],"Select Year":["V\xe6lg \xe5r"],Archives:["arkiv"],"Very dark gray":["meget m\xf8rk gr\xe5"],"Cyan bluish gray":[],"Very light gray":["meget lys gr\xe5"],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":["Tilg\xe6ngelige bloktyper"],"Transform To:":["Transformer til:"],"Remove Block":["Fjern blok"],"Open publish panel":["\xc5ben udgivelsespanel"],Dots:["Prikker"],"Wide Line":["Bred linje"],Large:["Stor"],"Show download button":[],"Download button settings":[],"Link To":["Link til"],"Text link settings":[],pdf:["pdf"],document:["dokument"],"Copy URL":["Kopier link"],"Write file name\u2026":["Skriv filnavn..."],"Edit file":["Rediger fil"],File:["FIl"],"A single column within a columns block.":["En enkelt kolonne i en kolonne blok."],Column:["Kolonne"],Outline:[],Loop:[],Autoplay:[],"Playback Controls":[],"Close dialog":["Luk dialog"],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":["Deaktiver tips"],"Got it":["Forst\xe5et"],"See next tip":["Se n\xe6ste tip"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":["Er du klar til at indsende til gennemsyn?"],"Replace image":["Erstat billede"],"Remove image":["Fjern billede"],"Error while uploading file %s to the media library.":["Fejl under overf\xf8relse af filen %s til mediebiblioteket."],"This file exceeds the maximum upload size for this site.":["Denne fil overskrider sidens maks. overf\xf8relsesst\xf8rrelsen."],"View the autosave":["Vis det autogemte"],"There is an autosave of this post that is more recent than the version below.":["Der er en autogem af dette indl\xe6g som er nyere end versionen nedenfor."],Autosaving:["Gemmer automatisk"],"Enter URL here\u2026":[],"Pin to toolbar":["Fastg\xf8r til v\xe6rkt\xf8jslinje"],"Unpin from toolbar":["Frig\xf8r fra v\xe6rkt\xf8jslinje"],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":["Tabel-celler med fast bredde"],"Table Settings":["Indstillinger for tabel"],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":["Vis en liste over dine seneste indl\xe6g"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":[],"Error loading block: %s":["Fejl ved indl\xe6sning af blok: %s"],"Unknown error":[],"Embed Handler":[],"term\x04Remove %s":[],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer Settings":[],Spacer:[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":["Navn:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s af %3$s)"],"Remove item":["Fjern objekt"],"Color code: %s":["Farvekode: %s"],"Skip to the selected block":["Spring til den valgte blok"],"Publish\u2026":["Udgiv..."],"Schedule\u2026":["Planl\xe6g..."],"Edit post permalink":[],"Show Block Settings":["Vis blokindstillinger"],"Hide Block Settings":["Skjul blokindstillinger"],"Block settings closed":["Blokindstillinger lukket"],"Close plugin":["Luk plugin"],"Link settings":[],Unlink:["Fjern link"],"Page break":["Sideskifte"],pagination:["Sideinddeling"],"next page":["n\xe6ste side"],"Image Size":["Billede st\xf8rrelse"],Height:["H\xf8jde"],Width:["Bredde"],"Image Dimensions":["Billede-dimensioner"],"Thumbnails are not cropped.":["Miniaturer er ikke besk\xe5ret."],"Thumbnails are cropped to align.":["Miniaturer er besk\xe5ret s\xe5 de passer ind."],"Media Library":["Mediabibliotek"],Advanced:["Avanceret"],"Add item":["Tilf\xf8j element."],"Reset the template":["Nulstil skabelonen"],"Keep it as is":["Behold som det er"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Indholdet af dit indl\xe6g svarer ikke til den skabelon, der er tildelt indl\xe6gstypen."],"Resetting the template may result in loss of content, do you want to continue?":["Nulstilling af skabelonen kan resultere i tab af indhold, vil du forts\xe6tte?"],"Document Statistics":["Dokument-statistikker"],"is now scheduled. It will go live on":["er nu planlangt. Det vil offentligg\xf8res den"],Scheduled:["Planlagt"],"Scheduling\u2026":["Planl\xe6gger..."],"Code editor selected":["Kode-editor valgt"],"Visual editor selected":["Visuel editor valgt"],Plugins:["Plugins"],"Custom Size":["Brugertilpasset st\xf8rrelse"],"Layout Elements":["Layoutelementer"],"term\x04%s removed":["%s fjernet"],"term\x04%s added":["%s tilf\xf8jet"],"imperative verb\x04Preview":["Forh\xe5ndsvis"],"Block deleted.":["Blok slettet."],"Block updated.":["Blok opdateret."],"Block created.":["Blok oprettet."],"Trashing failed":["Sletning mislykkedes"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["Du har \xe6ndringer, der ikke er gemt. Hvis du forts\xe6tter, vil de g\xe5 tabt."],"Document Outline":["Dokumentoversigt"],Paragraphs:["Afsnit"],Headings:["Overskrifter"],Words:["Ord"],"Content structure":["Indholdsstruktur"],Public:["Offentlig"],"Protected with a password you choose. Only those with the password can view this post.":["Beskyttet med adgangskode, du selv v\xe6lger. Kun dem med adgangskoden kan se dette indl\xe6g."],"Password Protected":["Beskyttet med adgangskode"],"Only visible to site admins and editors.":["Kun synlig for webstedsadmin og redakt\xf8rer."],Private:["Privat"],"Visible to everyone.":["Synlig for alle."],"Post Visibility":["Indl\xe6gssynlighed"],"Would you like to privately publish this post now?":["\xd8nsker du at udgive dette indl\xe6g som privat nu?"],"Use a secure password":["Brug en sikker adgangskode"],"Create password":["Opret adgangskode"],"Move to Trash":[],"Parent Term":["Overordnet term"],"Parent Category":["Overordnet kategori"],"Add new term":["Tilf\xf8j ny term"],"Add new category":["Tilf\xf8j ny kategori"],Term:["Term"],Tag:["N\xf8gleord"],"Add New Term":["Tilf\xf8j ny term"],"Add New Tag":["Tilf\xf8j nyt n\xf8gleord"],"Switch to Draft":["Skift til Kladde"],"Are you sure you want to unpublish this post?":["Er du sikker p\xe5, at du vil annullere udgivelsen af dette indl\xe6g?"],Immediately:["\xd8jeblikkeligt"],"Save Draft":["Gem udkast"],Saving:["Gemmer"],"Publish:":["Udgiv:"],"Visibility:":["Synlighed:"],"Are you ready to publish?":["Er du klar til at udgive?"],"Copy Link":["Kopier link"],"What\u2019s next?":["Hvad s\xe5 nu?"],"is now live.":["er nu live."],Published:["Udgivet"],Schedule:["Planl\xe6g"],Update:["Opdater"],"Submit for Review":["Indsend til gennemsyn"],"Updating\u2026":["Opdaterer..."],"Publishing\u2026":["Udgiver..."],"Allow Pingbacks & Trackbacks":["Tillad Pingbacks & Trackbacks"],"Permalink:":["Permalink:"],"Pending Review":["Afventer gennemsyn"],"%d Revision":["%d version","%d versioner"],"Suggestion:":["Anbefaling:"],"Post Format":["Indl\xe6gsformat"],Chat:["Chat"],Status:["Status"],Standard:["Standard"],Aside:["Relateret"],"Set Featured Image":[],"Learn more about manual excerpts":["L\xe6r mere om manuelle uddrag"],"Write an excerpt (optional)":["Skriv et uddrag (valgfri)"],"Allow Comments":["Tillad kommentarer"],"Template:":["Skabelon:"],"no parent":["ingen overordnet"],"no title":["ingen titel"],Order:["R\xe6kkef\xf8lge"],"No blocks found.":["Ingen blokke fundet."],"%d result found.":["%d resultat fundet","%d resultater fundet"],Saved:["Gemt"],Embeds:["Indlejringer"],Blocks:["Blokke"],"Search for a block":["S\xf8g efter en blok"],"Add block":["Tilf\xf8j blok"],"Add %s":["Tilf\xf8j %s"],"Copy Error":["Kopieringsfejl"],"Copy Post Text":["Kopier indl\xe6gstekst"],"Attempt Recovery":["Fors\xf8g gendannelse"],"The editor has encountered an unexpected error.":["Editoren er st\xf8dt p\xe5 en uventet fejl."],Undo:["Fortryd"],Redo:["Gentag"],"(Multiple H1 headings are not recommended)":["(Flere H1-overskrifter frar\xe5des)"],"(Your theme may already use a H1 for the post title)":["(Dit tema bruger muligvis allerede en H1-overskrift til indl\xe6ggets titel)"],"(Incorrect heading level)":["(Forkert overskriftsniveau)"],"(Empty heading)":["(Tom overskrift)"],"Block Styles":["Bloktyper"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Er du sikker p\xe5 du vil slette denne delte blok?\n\nDen bliver fjernet permanent fra alle indl\xe6g og sider, der bruger den."],"Convert to Regular Block":["Konverter til normal blok"],"More options":["Flere muligheder"],"Edit visually":["Rediger visuelt"],Duplicate:["Duplik\xe9r"],"Blocks cannot be moved down as they are already at the bottom":["Blokkene kan ikke flyttes ned, da de allerede er nederst"],"Blocks cannot be moved up as they are already at the top":["Blokkene kan ikke flyttes op, da de allerede er \xf8verst"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["Blokken \"%s\" er den eneste blok, og den kan derfor ikke flyttes"],"Edit as HTML":["Rediger som HTML"],"Convert to Blocks":["Konverter til blokke"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Denne blok er st\xf8dt p\xe5 en fejl og kan ikke forh\xe5ndsvises."],"No block selected.":["Ingen blok valgt."],"Transform into:":["Transformer til:"],Remove:["Fjern"],"Find original":["Find original"],"Copy All Content":["Kopier alt indhold"],"Copied!":["Kopieret!"],"Additional settings are now available in the Editor block settings sidebar":["Flere indstillinger er nu tilg\xe6ngelige i editorens sidebar, avancerede indstillinger"],Visibility:["Synlighed"],"Status & Visibility":["Status & synlighed"],"Page Attributes":["Side-attributter"],Block:["Blok","%d blokke"],Document:["Dokument"],"Featured Image":["Udvalgt billede"],"Close settings":["Luk indstillinger"],"Editor content":["Editor-indhold"],Tools:["V\xe6rkt\xf8jer"],Editor:["Editor"],"Code Editor":["Kode-editor"],"Visual Editor":["Visuel-editor"],"Editor top bar":["Editor-v\xe6rkt\xf8jslinje"],Settings:["Indstillinger"],Reset:["Nulstil"],"Dismiss this notice":["Afvis denne meddelelse"],"Item removed.":["Element fjernet."],"Item added.":["Element tilf\xf8jet."],"Drop files to upload":["Tr\xe6k filer hertil for at uploade"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Der opstod en ukendt fejl."],"No results.":["Ingen resultater."],"%d result found, use up and down arrow keys to navigate.":["%d resultat fundet, brug piletasterne op og ned for at navigere.","%d resultater fundet, brug piletasterne op og ned for at navigere."],"(no title)":["(ingen titel)"],URL:["Webadresse"],Submit:["Indsend"],Close:["Luk"],"Insert link":[],"Edit link":[],Link:["Link"],Strikethrough:["Gennemstreg"],Italic:["Kursiv"],Bold:["Fed"],"Remove link":[],"Number of items":["Antal elementer"],All:["Alle"],Category:["Kategori"],"Z \u2192 A":["\xc5 \t A"],"A \u2192 Z":["A \t \xc5"],"Oldest to Newest":["\xc6ldste til nyeste"],"Newest to Oldest":["Nyeste til \xe6ldste"],"Order by":["Sorter efter"],Select:["V\xe6lg"],"Select or Upload Media":["V\xe6lg eller upload medier"],Video:["Video"],"Edit video":["Rediger video"],"Write\u2026":["Skriv..."],poetry:["poesi"],Verse:["Vers"],"New Column":["Ny kolonne"],"Delete Column":["Slet kolonne"],"Add Column After":["Tilf\xf8j kolonne efter"],"Add Column Before":["Tilf\xf8j kolonne f\xf8r"],"Delete Row":["Slet r\xe6kke"],"Add Row After":["Tilf\xf8j r\xe6kke efter"],"Add Row Before":["Tilf\xf8j r\xe6kke f\xf8r"],"Edit table":[],Table:["Tabel"],"Write subheading\u2026":["Skriv sammendrag..."],"Write shortcode here\u2026":["Skriv kortkode her..."],Shortcode:["Kortkode"],divider:["splitter"],"horizontal-line":["vandret linje"],Separator:["Separator"],Quote:["Citat"],"Write citation\u2026":["Skriv citat..."],"Write quote\u2026":["Skriv citat..."],Pullquote:["Fremh\xe6vet citat"],"Write preformatted text\u2026":["Skriv forudformateret tekst..."],Preformatted:["Forudformateret"],text:["tekst"],Paragraph:["Afsnit"],"Font Size":["Skriftst\xf8rrelse"],"Drop Cap":["Stort begyndelsesbogstav"],"Text Settings":["Tekst-indstillinger"],"Read more":["L\xe6s mere"],"Write list\u2026":["Skriv liste..."],"numbered list":["nummeret liste"],"ordered list":["ordnet liste"],"bullet list":["punktliste"],"Indent list item":["Indryk liste-element"],"Outdent list item":["Udryk liste-element"],"Convert to ordered list":["Konverter til ordnet liste"],"Convert to unordered list":["Konverter til uordnet liste"],List:["Liste"],"recent posts":["seneste indl\xe6g"],"No posts found.":["Ingen indl\xe6g fundet."],"Latest Posts":["Seneste indl\xe6g"],"Display post date":["Vis indl\xe6gsdato"],"Grid view":[],"List view":[],photo:["foto"],"Image Settings":["Billede-indstillinger"],Image:["Billede"],Preview:["Forh\xe5ndsvis"],embed:["indlejre"],"Custom HTML":["Tilpasset HTML"],subtitle:["undertitel"],title:["titel"],Heading:["Overskrift"],"Write heading\u2026":["Skriv overskrift..."],"Heading %d":["Overskrift %s"],Level:["Niveau"],"Heading Settings":["Overskrift-indstillinger"],photos:["fotos"],images:["billeder"],"Remove Image":["Fjern billede"],None:["Ingen"],"Media File":["Mediafil"],"Attachment Page":["Vedh\xe6ftnings side"],"Crop Images":["Klip billeder"],"Gallery Settings":["Galleri-indstillinger"],Gallery:["Galleri"],Classic:["Klassisk"],video:["video"],audio:["lyd"],music:["musik"],image:["billede"],blog:["blog"],post:["indl\xe6g"],"Embedded content from %s":["Indlejret indhold fra %s"],"Enter URL to embed here\u2026":["Indtast webadresse der skal indlejres her..."],"%s URL":["%s URL"],"Embedding\u2026":["Indlejrer..."],"Write title\u2026":["Skriv titel..."],"Fixed Background":["Fastgjort baggrund"],"Edit image":["Rediger billede"],Columns:["Kolonner"],Experiments:[],Code:["Kode"],"Write code\u2026":["Skriv kode..."],Categories:["Kategorier"],"Show Hierarchy":["Vis hieraki"],"Show post counts":["Vis antal indl\xe6g"],"Categories Settings":["Indstillinger for kategorier"],"Add text\u2026":["Tilf\xf8j tekst..."],Button:["Knap"],Apply:["Anvend"],"Text Color":["Tekstfarve"],"Background Color":["Baggrundsfarve"],"Block has been deleted or is unavailable.":["Blokken er slettet eller ikke tilg\xe6ngelig."],"Reusable Blocks":["Genanvendelige blokke"],Cancel:["Annuller"],Edit:["Rediger"],"Edit audio":["Rediger lyd"],"Write caption\u2026":["Skriv billedtekst..."],"Use URL":["Brug webadresse"],Audio:["Lyd"],Upload:["Upload"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML-anker"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Denne farvekombination kan v\xe6re besv\xe6rlig for folk at l\xe6se. Pr\xf8v at bruge en lysere baggrundsfarve og/eller en m\xf8rkere tekstfarve."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Denne farvekombination kan v\xe6re besv\xe6rlig for folk at l\xe6se. Pr\xf8v at bruge en m\xf8rkere baggrundsfarve og/eller en lysere tekstfarve."],Clear:["Ryd"],"Custom color picker":["Tilpasset farvev\xe6lger"],"Color: %s":["Farve: %s"],"Full Width":[],"Wide Width":[],Widgets:["Widgets"],Formatting:["Formattering"],"Common Blocks":["F\xe6lles blokke"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Bogtrykkeri siden 1440. Dette er udviklerplugin'et for den nye indbyggede blok-editor i kernen."],"Add title":["Tilf\xf8j overskrift"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["Forfatter"],Slug:["Slug"],Discussion:["Diskussion"],"Custom Fields":["Brugerdefinerede felter"],Excerpt:["Uddrag"],Publish:["Udgiv"],Metadata:["Metadata"],Save:["Gem"],Documentation:["Dokumentation"],"Select Category":["V\xe6lg kategori"],"(Untitled)":["(Uden titel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s siden"],"Block style name must be a string.":[]}},830,[]); +__d(function(e,n,t,i,r,a,o){r.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":["Du bist wahrscheinlich offline."],"Justify items right":["Elemente rechts ausrichten"],"Justify items center":["Elemente zentriert ausrichten"],"Justify items left":["Elemente links ausrichten"],"Change items justification":["Ausrichtung der Elemente \xe4ndern"],"The media file has been replaced":["Die Mediendatei wurde ersetzt."],Replace:["Ersetzen"],"Choose pattern":["Vorlage ausw\xe4hlen"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Du befindest dich im Bearbeitungsmodus. Um zum Navigationsmodus zur\xfcckzukehren, dr\xfcck Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Du befindest dich derzeit im Navigationsmodus. Navigiere zwischen Bl\xf6cke mit der Tabulatortaste. Um den Navigationsmodus zu verlassen und den ausgew\xe4hlten Block zu bearbeiten, dr\xfccke die Eingabetaste."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Benutze deine linke oder rechte Pfeiltaste oder Drag-and-drop mit der Maus, um die Verlaufsposition zu \xe4ndern. Dr\xfccke den Button, um die Farbe zu \xe4ndern oder den Kontrollpunkt zu entfernen."],"Gradient control point at position %1$s with color code %2$s.":["Verlaufskontrollpunkt an Position %1$s mit Farbcode %2$s."],"Preset Size":["Voreingestellte Gr\xf6\xdfe"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Werkzeuge bieten verschiedene Interaktionen f\xfcr die Blockauswahl und -bearbeitung. Um auszuw\xe4hlen, dr\xfccke Escape, um zur Bearbeitung zur\xfcckzukehren, dr\xfccke Enter."],"Open Media Library":["Mediathek \xf6ffnen"],Next:["Weiter"],Previous:["Zur\xfcck"],Finish:["Fertig"],"Page %1$d of %2$d":["Seite %1$d von %2$d"],"Guide controls":["Guide-Bedienelemente"],"Remove Control Point":["Kontrollpunkt entfernen"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Jeder Block wird mit einem eigenen Set von Bedienelementen geliefert, um Dinge wie Farbe, Breite und Ausrichtung zu \xe4ndern. Diese werden automatisch ein- und ausgeblendet, wenn du einen Block ausgew\xe4hlt hast."],"Make each block your own":["Mache jeden Block zu deinem eigenen."],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["Im WordPress-Editor wird jeder Absatz, jedes Bild oder Video als eigener \"Block\" des Inhalts dargestellt."],"ADD MEDIA":["MEDIEN HINZUF\xdcGEN"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":["Alle dir zur Verf\xfcgung stehenden Bl\xf6cke befinden sich in der Blockbibliothek. Du findest sie \xfcberall dort, wo du das Symbol siehst."],"Get to know the Block Library":["Lerne die Blockbibliothek kennen"],"Welcome Guide":["Willkommens-Guide"],"Enable Page Templates":["Seiten-Templates aktivieren"],"Page Templates":["Seiten-Templates"],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":["Willkommen im Block-Editor"],"Get started":["Jetzt starten"],inserter:["inserter"],"Post Title":["Beitragstitel"],"Add nofollow to link":["Nofollow zum Link hinzuf\xfcgen"],"Link Settings":["Link-Einstellungen"],"Add Submenu":[],"Add link\u2026":["Link hinzuf\xfcgen..."],Dark:["Dunkel"],Light:["Hell"],recording:["Aufnehmen"],podcast:["Podcast"],sound:["Sound"],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:["Navigation"],"Loading Navigation\u2026":["Lade Navigation..."],"Navigation Structure":["Navigations-Struktur"],"Create empty":["Leer erstellen"],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":["Navigations-Link"],"(Note: many devices and browsers do not display this text.)":["(Hinweis: Viele Ger\xe4te und Browser zeigen diesen Text nicht an.)"],"Describe the role of this image on the page.":["Beschreibe die Bedeutung dieses Bildes auf der Seite."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":["Verwende f\xfcr alle Bildschirmgr\xf6\xdfen die gleichen %s."],"Large screens":["Gro\xdfe Bildschirme"],"Medium screens":["Mittlere Bildschirme"],"Small screens":["Kleine Bildschirme"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:["\xc4ndern"],"Currently selected":["Aktuell ausgew\xe4hlt"],"Search or type url":["Suchen oder URL eingeben"],"Press ENTER to add this link":["Dr\xfccke ENTER, um diesen Link hinzuzuf\xfcgen"],"Currently selected link settings":["Aktuell ausgew\xe4hlte Link-Einstellungen"],"Generic label for block inserter button\x04Add block":["Block hinzuf\xfcgen"],"directly add the only allowed block\x04Add %s":["%s hinzuf\xfcgen"],"%s block added":["%s Block hinzugef\xfcgt"],"Move %s":["Verschiebe %s"],"Extra Large":["Extra gro\xdf "],"Block breadcrumb":["Block-Breadcrumb"],"Site Title":["Website-Titel"],"Open Colors Selector":["Farbauswahl \xf6ffnen"],"Overlay Gradient":["Overlay-Verlauf"],"Templates list":["Templates-Liste"],"Templates list navigation":["Templates-Liste Navigation"],"Filter templates list":["Template-Liste filtern"],"Uploaded to this template":["Zu diesem Template hochgeladen"],"Insert into template":["In das Template einf\xfcgen"],"Template archives":["Template-Archiv"],"No templates found in Trash.":["Kein Template im Papierkorb gefunden."],"No templates found.":["Kein Template gefunden."],"Parent Template:":["Eltern Template:"],"Search Templates":["Template suchen"],"All Templates":["Alle Templates"],"View Template":["Template anzeigen"],"Edit Template":["Template bearbeiten"],"New Template":["Neues Template"],"Add New Template":["Neues Template hinzuf\xfcgen"],"Template\x04Add New":["Hinzuf\xfcgen"],"Admin Menu text\x04Templates":["Templates"],Template:["Template"],"No matching template found":["Kein passendes Template gefunden"],"Gradient: %s":["Farbverlauf: %s"],"Gradient code: %s":["Farbverlaufs-Code: %s"],"All content copied.":["Alle Inhalte wurden kopiert."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Das Hochladen von Medien ist fehlgeschlagen. Wenn es sich um ein Foto oder ein gro\xdfes Bild handelt, verkleinere es bitte und versuche es erneut."],Gradient:["Farbverlauf"],"Gradient Presets":["Farbverlaufs-Vorgaben"],"No Preview Available.":["Vorschau ist nicht verf\xfcgbar."],Midnight:["Mitternacht"],"Electric grass":["Elektrisches Gras"],"Pale ocean":["Blasser Ozean"],"Luminous dusk":["Leuchtende Abendd\xe4mmerung"],"Blush bordeaux":["Bordeauxrot"],"Blush light purple":[],"Cool to warm spectrum":["K\xfchles bis warmes Spektrum"],"Very light gray to cyan bluish gray":["Sehr hellgrau bis blaugrau"],"Luminous vivid orange to vivid red":["Leuchtend lebhaftes Orange bis lebhaftes Rot"],"Luminous vivid amber to luminous vivid orange":["Leuchtend lebhafter Bernstein bis leuchtend lebhaftes Orange"],"Light green cyan to vivid green cyan":["Hellgr\xfcnes Cyan bis leuchtend gr\xfcnes Cyan"],"Vivid cyan blue to vivid purple":["Kr\xe4ftiges Cyanblau bis kr\xe4ftiges Lila"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6. Dezember 2018"],"February 21, 2019":["21. Februar 2019"],"May 7, 2019":["7. Mai 2019"],"Release Date":["Ver\xf6ffentlichungsdatum"],"Jazz Musician":["Jazzmusiker"],Version:["Version"],"Six.":["Sechs."],"Five.":["F\xfcnf."],"Four.":["Vier."],"Three.":["Drei."],"Two.":["Zwei."],"One.":["Eins."],"One of the hardest things to do in technology is disrupt yourself.":["Eines der schlimmsten Dinge, die man in der Technik tun kann, ist, sich selbst zu st\xf6ren."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["Um das Ganze herum ist ein fast v\xf6llig schwarzer Bildschirm. Nun, da sich die Kamera langsam auf das Fenster zubewegt, das fast wie eine Briefmarke im Rahmen ist, erscheinen andere Formen;"],"Window, very small in the distance, illuminated.":["Fenster, sehr klein in der Entfernung, beleuchtet."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATUR)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["Der Zaunk\xf6nig
lernt sein Leben
ohne Gnade."],"Welcome to the wonderful world of blocks\u2026":["Willkommen in der wunderbaren Welt der Bl\xf6cke\u2026"],"Snow Patrol":["Schneepatrouille"],Dimensions:["Gr\xf6\xdfe"],"Minimum height in pixels":["Minimale H\xf6he in Pixeln"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to Action"],"In quoting others, we cite ourselves.":["Indem wir andere zitieren, zitieren wir uns selbst."],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":["Der Mont Blanc erscheint - still, schneereich und ruhig."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["An einem Orte der Mancha, an dessen Namen ich mich nicht erinnern will, lebte vor nicht langer Zeit ein Hidalgo, einer von jenen, die einen Speer im Lanzengestell, eine alte Tartsche [ein alter Schild], einen hageren Gaul und einen Windhund zum Jagen haben."],"Block navigation":["Block-Navigation"],"Enable Full Site Editing":["Full Site Editing aktivieren"],"Full Site Editing":["Full Site Editing"],"Templates to include in your theme.":[],Templates:["Templates"],"Inserter Help Panel":["Inserter-Hilfe-Bereich"],"Pre-publish Checks":["Pr\xfcfungen vor der Ver\xf6ffentlichung"],"Please contact your site administrator to install new blocks.":["Bitte wende dich an deinen Website-Administrator, damit neue Bl\xf6cke installiert werden k\xf6nnen."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Keine Bl\xf6cke in deiner Bibliothek gefunden. Bitte wende dich an deinen Website-Administrator, um neue Bl\xf6cke zu installieren."],"No blocks found in your library.":["Keine Bl\xf6cke in deiner Bibliothek gefunden."],"No blocks found in your library. These blocks can be downloaded and installed:":["Keine Bl\xf6cke in deiner Bibliothek gefunden. Diese Bl\xf6cke k\xf6nnen heruntergeladen und installiert werden:"],"No blocks found in your library. We did find %d block available for download.":["Keine Bl\xf6cke in deiner Bibliothek gefunden. Wir haben %d Block gefunden, der zum Download zur Verf\xfcgung steht.","Keine Bl\xf6cke in deiner Bibliothek gefunden. Wir haben %d Bl\xf6cke gefunden, die zum Download zur Verf\xfcgung stehen."],"Block previews can\u2019t load.":["Blockvorschauen k\xf6nnen nicht geladen werden."],Retry:["Erneut versuchen"],"Block previews can't install.":["Blockvorschauen k\xf6nnen nicht installiert werden."],"Updated %s":["Aktualisiert am %s"],"%d active installation":["%d aktive Installation","%d aktive Installationen"],"This author has %d block, with an average rating of %d.":["Dieser Autor hat %d Block, mit einer durchschnittlichen Bewertung von %d.","Dieser Autor hat %d Bl\xf6cke, mit einer durchschnittlichen Bewertung von %d."],"Authored by %s":["Erstellt von %s"],Add:["Hinzuf\xfcgen"],"%d total rating":["%d Gesamtbewertung","%d Gesamtbewertungen"],"%s out of 5 stars":["%s von 5 Sternen"],"Enter Address":["Adresse eingeben"],"Pill Shape":["Pillenform"],"Logos Only":["Nur Logos"],"Create a block of links to your social media or external sites":["Erstelle einen Block mit Links zu deinen Social Media oder externen Websites."],"Social links":["Social-Links"],"Open block navigator":["Blocknavigator \xf6ffnen"],"Attachment page":["Anhang-Seite"],Fill:["F\xfcllen"],"Link rel":["Link rel"],"Border Radius":["Eckenradius"],"Write gallery caption\u2026":["Schreibe Galerie Untertitel..."],"Content Blocks":["Inhalts-Bl\xf6cke"],"Restore the backup":["Backup wiederherstellen"],"The backup of this post in your browser is different from the version below.":["Das Backup dieses Beitrags in deinem Browser unterscheidet sich von der untenstehenden Version."],"Enable Block Directory search":["Block-Verzeichnis Suche aktivieren"],"Block Directory":["Block-Verzeichnis"],"Unable to connect to the filesystem. Please confirm your credentials.":["Es ist nicht m\xf6glich, eine Verbindung mit dem Dateisystem herzustellen. Bitte \xfcberpr\xfcfe deine Zugangsdaten."],"Sorry, you are not allowed to install blocks.":["Du bist leider nicht berechtigt, Blocks zu installieren."],"%1$d block is disabled.":["%1$d Block ist deaktiviert.","%1$d Bl\xf6cke sind deaktiviert."],"Reverse List Numbering":["Nummerierung der Liste umkehren"],"Start Value":["Startwert"],"Ordered List Settings":["Einstellungen f\xfcr geordnete Listen"],"Clear Media":["Medien entfernen"],"block style\x04Circle Mask":["Kreis-Maske"],"Default Style":["Standard-Stil"],"Not set":["Nicht festgelegt"],"While writing, you can press / to quickly insert new blocks.":["W\xe4hrend des Schreibens kannst du / dr\xfccken, um schnell neue Bl\xf6cke einzuf\xfcgen."],"Browse through the library to learn more about what each block does.":["Durchsuche die Bibliothek, um mehr dar\xfcber zu erfahren, was die einzelnen Bl\xf6cke k\xf6nnen."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["F\xfcr alle Arten von Inhalten stehen Bl\xf6cke zur Verf\xfcgung: Text einf\xfcgen, \xdcberschriften, Bilder, Listen, Videos, Tabellen und vieles mehr."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Willkommen in der wunderbaren Welt der Bl\xf6cke! Bl\xf6cke sind die Grundlage f\xfcr alle Inhalte innerhalb des Editors."],"Version of the content block format used by the object.":["Version des Inhalt-Block-Formates, das von dem Objekt genutzt wird."],"HTML content for the object, transformed for display.":["HTML-Inhalt f\xfcr das Objekt, transformiert f\xfcr die Anzeige."],"Content for the object, as it exists in the database.":["Inhalt f\xfcr das Objekt, wie er in der Datenbank vorliegt."],"The content for the object.":["Der Inhalt des Objekts."],"Change column alignment":["Spaltenausrichtung \xe4ndern"],"Align Column Right":["Spalte rechts ausrichten"],"Align Column Center":["Spalte mittig ausrichten"],"Align Column Left":["Spalte links ausrichten"],Color:["Farbe"],"Vivid purple":["Kr\xe4ftiges Violett"],"Disable & Reload":["Deaktivieren & neu laden"],"Enable & Reload":["Aktivieren & neu laden"],"A page reload is required for this change. Make sure your content is saved before reloading.":["F\xfcr diese \xc4nderung ist ein Neuladen der Seite erforderlich. Vergewissere dich, dass dein Inhalt gespeichert ist, bevor du ihn neu l\xe4dst."],"Display these keyboard shortcuts.":["Zeige diese Tastenkombinationen."],"Experiments Settings":["Einstellungen f\xfcr Experimente"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg hat einige experimentelle Funktionen, die du aktivieren kannst. W\xe4hle einfach die Funktionen aus, die du nutzen m\xf6chtest. Diese Funktionen k\xf6nnen sich wahrscheinlich \xe4ndern, daher ist es nicht ratsam diese f\xfcr produktive Websites zu verwenden."],"Enable Widgets Screen and Legacy Widget Block":["Widgets-Bildschirm und Legacy Widget-Block aktivieren"],"Experiment settings":["Experimentelle Einstellungen"],"Block name name must be a string.":["Der Name des Blocknamens muss eine Zeichenfolge sein."],Custom:["Individuell"],Draft:["Entwurf"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Der Block \"%1$s\" enth\xe4lt keinen Style mit dem Namen \"%2$s.\"."],"Learn more about anchors":["Mehr \xfcber Anker erfahren"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Gib ein oder zwei W\xf6rter - ohne Leerzeichen - ein, um eine eindeutige Webadresse nur f\xfcr diese \xdcberschrift zu erstellen, die als \"Anker\" bezeichnet wird. Dann kannst du direkt zu diesem Abschnitt deiner Seite verlinken."],"Widget Blocks (Experimental)":["Widget Bl\xf6cke (Experimentell)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Lade eine Videodatei hoch, w\xe4hle eine aus deiner Mediathek oder f\xfcge eine mit einer URL hinzu."],"Upload an image file, pick one from your media library, or add one with a URL.":["Lade eine Bilddatei hoch, w\xe4hle eine aus deiner Mediathek oder f\xfcge eine mit einer URL hinzu."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Lade eine Audiodatei hoch, w\xe4hle eine aus deiner Mediathek oder f\xfcge eine mit einer URL hinzu."],"Upload a media file or pick one from your media library.":["Lade eine Mediendatei hoch, w\xe4hle eine aus deiner Mediathek oder f\xfcge eine mit einer URL hinzu."],Skip:["\xdcberspringen"],"Select a pattern to start with.":["W\xe4hle ein Vorlage, mit dem du beginnen m\xf6chtest."],"Add a page, link, or other item to your navigation.":["Eine Seite, Link oder ein anderes Element zu deinem Navigation hinzuf\xfcgen."],"What's this?":["Was ist das?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Suchmaschinen davon abhalten, diesem Link zu folgen."],"Provide more context about where the link goes.":["Mehr Hintergrundinformationen dar\xfcber, wohin der Link f\xfchrt."],"Title Attribute":["HTML-Attribut title"],"SEO Settings":["SEO-Einstellungen"],Description:["Beschreibung"],"Open in new tab":["In neuem Tab \xf6ffnen"],links:["Links"],navigation:["Navigation"],menu:["Men\xfc"],"Add a navigation block to your site.":["Eine Navigation zu deiner Website hinzuf\xfcgen."],"Upload a file or pick one from your media library.":["Lade eine Datei hoch oder w\xe4hle eine aus deiner Mediathek."],"Learn more about embeds":["Mehr \xfcber Embeds erfahren"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["F\xfcge einen Link zu dem Inhalt ein, den du auf deiner Website anzeigen m\xf6chtest."],"Upload an image or video file, or pick one from your media library.":["Lade eine Bild- oder Videodatei hoch oder w\xe4hle eine aus deiner Mediathek."],"Three columns; wide center column":["Drei Spalten; breite Mittelspalte"],"Three columns; equal split":["Drei Spalten; gleiche Breite"],"Two columns; two-thirds, one-third split":["Zwei Spalten; zwei Drittel, ein Drittel geteilt"],"Two columns; one-third, two-thirds split":["Zwei Spalten; ein Drittel, zwei Drittel geteilt"],"Two columns; equal split":["Zwei Spalten; gleiche Breite"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Deine Website hat keine %s, also gibt es hier im Moment nichts zu sehen."],"More tools & options":["Mehr Werkzeuge und Optionen"],"Create Table":["Tabelle erstellen"],"Insert a table for sharing data.":["F\xfcge eine Tabelle ein, um Daten zu teilen."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Gruppierung aufheben"],"verb\x04Group":["Gruppieren"],"Separate with commas or the Enter key.":["Trenne sie durch Kommas oder die Eingabetaste."],"Separate with commas, spaces, or the Enter key.":["Trenne sie durch Kommas, Leerzeichen oder die Eingabetaste."],"Separate multiple classes with spaces.":["Trenne mehrere Klassen durch Leerzeichen."],"Move image forward":["Bild weiter verschieben"],"Move image backward":["Bild zur\xfcck verschieben"],"Sorry, you are not allowed to edit sidebars.":["Du bist leider nicht berechtigt, Seitenleisten zu bearbeiten."],"Sorry, you are not allowed to read sidebars.":["Du bist leider nicht berechtigt, Seitenleisten zu sehen."],"The sidebar\u2019s ID.":["Die ID der Seitenleiste."],"Displays a set of blocks":["Zeigt eine Gruppe von Bl\xf6cken an"],"Blocks Area":["Bl\xf6cke-Bereich "],"Block rendered as empty.":["Block wird als leer dargestellt."],"Inline Code":["Inline-Code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Hinweis: Das automatische Wiedergeben von Videos kann bei einigen Besuchern zu Problemen bei der Benutzerfreundlichkeit f\xfchren."],"Footer section":["Fu\xdfzeile"],"Header section":["Kopfzeile"],"Sorting and Filtering":["Sortieren und Filtern"],"Post Meta Settings":["Beitrags-Meta Einstellungen"],"Post Content":["Beitragsinhalt\n"],"Post Content Settings":["Einstellungen f\xfcr Beitragsinhalte"],"Percentage width":["Prozentuale Breite"],"Column Settings":["Spalteneinstellungen"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Hinweis: Die automatische Wiedergabe von Audio kann bei einigen Besuchern zu Problemen bei der Benutzerfreundlichkeit f\xfchren."],"Block area updated.":["Block-Bereich aktualisiert."],"Block area scheduled.":["Block-Bereich geplant."],"Block area published.":["Block-Bereich wurde ver\xf6ffentlicht."],"Block areas list":["Block-Bereich Liste"],"Block areas list navigation":["Block-Bereich Listen-Navigation"],"Filter block areas list":["Block-Bereich Liste filtern"],"No block area found.":["Keinen Block-Bereich gefunden."],"Search Block Areas":["Block-Bereiche suchen"],"All Block Areas":["All Block-Bereiche"],"View Block Area":["Block-Bereiche anzeigen"],"Edit Block Area":["Block-Bereich bearbeiten"],"New Block Area":["Block-Bereich erstellen"],"Add New Block Area":["Neuen Block-Bereich hinzuf\xfcgen"],"admin menu\x04Block Areas":["Block-Bereiche"],"post type singular name\x04Block Area (Experimental)":["Block-Bereich (Experimentell)"],"post type general name\x04Block Area (Experimental)":["Block-Bereich (Experimentell)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimenteller individueller Inhaltstyp, der Block-Bereiche speichert, auf die von Themes zur\xfcckgegriffen werden kann."],"Widgets screen content":["Widgets-Bildschirminhalt"],"Widgets advanced settings":["Erweiterte Widgets-Einstellungen"],"(experimental)":["(experimentell)"],"Block Areas":["Block-Bereiche"],"Widgets screen top bar":["Obere Leiste des Widgets-Bildschirms"],"This color combination may be hard for people to read.":["Diese Farbkombination kann f\xfcr Menschen schwer zu lesen sein."],"There is no poster image currently selected":["Es ist derzeit kein Vorschaubild ausgew\xe4hlt."],"The current poster image url is %s":["Die aktuelle Vorschaubild URL lautet %s."],section:["Abschnitt"],row:["Reihe"],wrapper:["wrapper"],container:["Container"],"A block that groups other blocks.":["Ein Block, der andere Bl\xf6cke gruppiert."],Group:["Gruppe"],"Crop image to fill entire column":["Bild zuschneiden, um die gesamte Spalte zu f\xfcllen."],"Play inline":["Inline abspielen"],"Leave empty if the image is purely decorative.":["Lasse das Feld leer, wenn das Bild nur dekorativ ist."],"Describe the purpose of the image":["Beschreibe den Zweck des Bildes"],"Add a block":["Block hinzuf\xfcgen"],"Block vertical alignment setting label\x04Change vertical alignment":["Vertikale Ausrichtung \xe4ndern"],"Block vertical alignment setting\x04Vertically Align Bottom":["Vertikal Unten ausrichten"],"Block vertical alignment setting\x04Vertically Align Middle":["Vertikal mittig ausrichten"],"Replace Image":["Bild ersetzen"],"Block vertical alignment setting\x04Vertically Align Top":["Vertikal Oben ausrichten"],"Display a legacy widget.":["Zeigt ein Legacy-Widget an."],"Legacy Widget (Experimental)":["Legacy-Widget (Experimentell)"],"Change widget":["Widget wechseln"],"Legacy Widget":["Legacy-Widget"],"You don't have permissions to use widgets on this site.":["Du hast keine Berechtigung, Widgets auf dieser Webseite zu benutzen."],"Select a legacy widget to display:":["W\xe4hle ein Legacy-Widget aus, das angezeigt werden soll:"],"There are no widgets available.":["Es sind keine Widgets verf\xfcgbar."],"Change block type or style":["Block-Typ oder -Stil \xe4ndern"],"keyboard key\x04Space":["Leertaste"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["Mehr Formatierungen"],"Search Terms":["Begriffe suchen"],"Exit the Editor":["Editor verlassen"],"Block Manager":["Block-Manager"],"Class name of the widget.":["Klassen-Name des Widgets."],"Sorry, you are not allowed to access widgets on this site.":["Du bist leider nicht berechtigt, auf Widgets dieser Website zuzugreifen."],"Widgets (beta)":["Widgets (Beta)"],link:["Link"],"Embedded content from %s can't be previewed in the editor.":["Eingebettete Inhalte von %s k\xf6nnen im Editor nicht in der Vorschau angezeigt werden."],"Custom Color":["Individuelle Farbe"],"Prompt visitors to take action with a button-style link.":["Fordere Besucher mit einem Link im Stil eines Buttons auf, aktiv zu werden."],"Stick to the top of the blog":["Oben im Blog halten"],"Read about permalinks":["Mehr \xfcber Permalinks lesen"],"The last part of the URL.":["Der letzte Teil der URL. "],"URL Slug":["URL Titelform"],"A cloud of your most used tags.":["Eine Wolke deiner am h\xe4ufigsten verwendeten Schlagw\xf6rter."],"Tag Cloud":["Schlagw\xf6rter-Wolke"],Taxonomy:["Taxonomie"],"Tag Cloud Settings":["Tag-Cloud Einstellungen"],"- Select -":["- Ausw\xe4hlen -"],Default:["Standard"],find:["finden"],"Help visitors find your content.":["Hilf Besuchern, deine Inhalte zu finden."],Search:["Suchen"],"Add button text\u2026":["Button-Text hinzuf\xfcgen..."],"Button text":["Button-Text"],"Optional placeholder\u2026":["Optionaler Platzhalter..."],"Optional placeholder text":["Optionaler Platzhaltertext"],"Add label\u2026":["Label hinzuf\xfcgen..."],"Label text":["Label-Text"],"image %1$d of %2$d in gallery":["Bild %1$d von %2$d in der Galerie"],archive:["Archiv"],posts:["Beitr\xe4ge"],"A calendar of your site\u2019s posts.":["Ein Kalender der Beitr\xe4ge deiner Website."],Calendar:["Kalender"],by:["von"],"An error has occurred, which probably means the feed is down. Try again later.":["Ein Fehler ist aufgetreten \u2013 der Feed funktioniert zur Zeit nicht. Versuche es sp\xe4ter noch einmal."],"RSS Error:":["RSS Fehler:"],"block style\x04Default":["Standard"],"Fullscreen mode deactivated":["Vollbildmodus deaktiviert"],"Fullscreen mode activated":["Vollbildmodus aktiviert"],"Spotlight mode deactivated":["Spotlight-Modus deaktiviert"],"Spotlight mode activated":["Spotlight-Modus aktiviert"],"Top toolbar deactivated":["Obere Werkzeugleiste aktiviert"],"Top toolbar activated":["Obere Werkzeugleiste deaktiviert"],Back:["Zur\xfcck"],"Feature activated":["Funktion aktiviert"],"Feature deactivated":["Funktion deaktiviert"],"Vertical Pos.":["Vertikale Pos."],"Horizontal Pos.":["Horizontale Pos."],feed:["feed"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Zeige Eintr\xe4ge von jedem RSS- oder Atom-Feed an."],RSS:["RSS"],"Max number of words in excerpt":["Maximale Anzahl von W\xf6rtern im Textauszug"],"Display excerpt":["Textauszug anzeigen"],"Display date":["Datum anzeigen"],"Display author":["Autor anzeigen"],"RSS Settings":["RSS Einstellungen"],"Edit RSS URL":["RSS URL bearbeiten"],"Content before this block will be shown in the excerpt on your archives page.":["Inhalte vor diesem Block werden im Textauszug auf deiner Archivseite angezeigt."],"Hide the excerpt on the full content page":["Textauszug auf der gesamten Inhaltsseite ausblenden"],"The excerpt is visible.":["Der Textauszug ist sichtbar."],"The excerpt is hidden.":["Der Textauszug ist ausgeblendet."],"Sorry, this content could not be embedded.":["Leider konnte dieser Inhalt nicht eingebettet werden."],"Embed Amazon Kindle content.":["Amazon Kindle-Inhalt einbetten."],ebook:["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Crowdsignal (fr\xfcher Polldaddy) Inhalt einbetten."],"Focal Point Picker":["Fokuspunkt Auswahl"],Underline:["Unterstreichen"],"Attempt Block Recovery":["Versuch der Blockwiederherstellung"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Inhalt..."],"button label\x04Convert to link":["In Link umwandeln"],"button label\x04Try again":["Nochmal versuchen"],"Editor tips":["Editor-Tipps"],"Block (selected)":["Block (ausgew\xe4hlt)"],"Document (selected)":["Dokument (ausgew\xe4hlt)"],"%d word":["%d Wort","%d W\xf6rter"],"Top Toolbar":["Obere Werkzeugleiste"],"Link Rel":["Link-Beziehung"],"Link CSS Class":["CSS-Klasse des Links"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Erstelle Inhalte und speichere sie f\xfcr dich und andere Mitwirkende f\xfcr die Wiederbenutzung auf deiner gesamten Website. Aktualisiere den Block und \xc4nderungen werden \xfcberall angewendet, wo er benutzt wird."],"To edit the featured image, you need permission to upload media.":["Um das Beitragsbild zu bearbeiten, ben\xf6tigst du die Berechtigung zum Hochladen von Medien."],"To edit this block, you need permission to upload media.":["Um diesen Block zu bearbeiten, ben\xf6tigst du die Berechtigung zum Hochladen von Medien."],"(selected block)":["(ausgew\xe4hlter Block)"],"Block tools":["Block-Werkzeuge"],Permalink:["Permalink"],"This image has an empty alt attribute":["Dieses Bild hat ein leeres alt-Attribut."],"This image has an empty alt attribute; its file name is %s":["Dieses Bild hat ein leeres alt-Attribut; sein Dateiname ist %s."],"Block area reverted to draft.":["Block-Bereich auf Entwurf zur\xfcckgesetzt."],"Block area published privately.":["Block-Bereich privat ver\xf6ffentlicht."],"No block areas found in Trash.":["Keinen Block-Bereich im Papierkorb gefunden."],"Block\x04Add New":["Block hinzuf\xfcgen"],"add new on admin bar\x04Block Area":["Block-Bereich"],"Link inserted.":["Link eingef\xfcgt."],"Warning: the link has been inserted but may have errors. Please test it.":["Warnung: Der Link wurde eingef\xfcgt, k\xf6nnte aber fehlerhaft sein. Bitte teste ihn."],"%s block selected.":["%s Block ausgew\xe4hlt.","%s Bl\xf6cke ausgew\xe4hlt."],Thumbnail:["Vorschaubild"],"Full Size":["Vollst\xe4ndige Gr\xf6\xdfe"],"Link selected.":["Link ausgew\xe4hlt."],"Start writing with text or HTML":["Beginne mit dem Schreiben von Text oder HTML"],"Type text or HTML":["Schreib Text oder HTML"],"Block icon":["Block-Icon"],"Align Text Right":["Text rechts ausrichten"],"Align Text Center":["Text zentriert ausrichten"],"Align Text Left":["Text links ausrichten"],"Start writing or type / to choose a block":["Schreib etwas oder tippe / zur Blockauswahl"],"Empty block; start writing or type forward slash to choose a block":["Leerer Block; schreib los oder gib einen Schr\xe4gstrich ein, um einen Block auszuw\xe4hlen"],"Paragraph block":["Absatz-Block"],"Page Break":["Seitenumbruch"],"Stack on mobile":["Auf Mobilger\xe4ten stapeln"],Annotation:["Anmerkung"],"Drag images, upload new ones or select files from your library.":["Ziehe Bilder hierher, lade neue hoch oder w\xe4hle Dateien aus deiner Mediathek aus."],"blocks\x04Most Used":["Meistgenutzt"],"imperative verb\x04Resolve":["L\xf6sen"],"font size name\x04Huge":["Riesig"],"font size name\x04Large":["Gro\xdf"],"font size name\x04Medium":["Mittel"],"font size name\x04Small":["Klein"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Eingabetaste"],"button label\x04Import":["Importieren"],"button label\x04Download":["Herunterladen"],"button label\x04Embed":["Einbetten"],"block title\x04Embed":["Einbetten"],"block title\x04Classic":["Classic"],"block style\x04Large":["Gro\xdf"],"%s (opens in a new tab)":["%s (\xf6ffnet in neuem Tab)"],"Link edited.":["Link bearbeitet."],"Link removed.":["Link entfernt."],media:["Medien"],"Double-check your settings before publishing.":["Pr\xfcfe deine Einstellungen sorgf\xe4ltig vor dem Ver\xf6ffentlichen."],"Generating preview\u2026":["Vorschau wird erstellt \u2026"],"Edit or update the image":["Das Bild bearbeiten oder aktualisieren"],Media:["Medien"],"Navigate to the nearest toolbar.":["Zur n\xe4chsten Werkzeugleiste navigieren."],"Document tools":["Dokument-Werkzeuge"],"Document and block tools":["Dokument- und Block-Werkzeuge"],"Embed a video from your media library or upload a new one.":["Ein Video aus deiner Mediathek einbetten oder ein neues hochladen."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["F\xfcge Poesie ein. Benutze spezielle Abstandsformate. Oder zitiere Liedtexte."],"Add white space between blocks and customize its height.":["Wei\xdfraum zwischen den Bl\xf6cken hinzuf\xfcgen und dessen H\xf6he anpassen."],"Insert additional custom elements with a WordPress shortcode.":["Zus\xe4tzliche individuelle Elemente \xfcber einen WordPress-Shortcode einf\xfcgen."],"Create a break between ideas or sections with a horizontal separator.":["Trenne deine Ideen oder Abschnitte mit einem horizontalen Trennelement."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Hebe Zitate visuell hervor. \u201eIndem wir andere zitieren, zitieren wir uns selbst.\u201c \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Hebe ein Zitat deines Textes durch visuelle Elemente hervor."],"Start with the building block of all narrative.":["Starte mit dem Grundbaustein aller Erz\xe4hlungen."],"Separate your content into a multi-page experience.":["Trenne deinen Inhalt und pr\xe4sentiere ihn auf mehreren Seiten."],"Set media and words side-by-side for a richer layout.":["Setze Medien und W\xf6rter nebeneinander f\xfcr ein ansprechenderes Layout."],"Media & Text Settings":["Medien- und Text-Einstellungen"],"Create a bulleted or numbered list.":["Eine gepunktete oder nummerierte Liste erstellen."],"Display a list of your most recent comments.":["Eine Liste deiner letzten Kommentare anzeigen."],"Insert an image to make a visual statement.":["Ein Bild einf\xfcgen, um einen visuellen Akzent zu setzen."],"Add custom HTML code and preview it as you edit.":["Individuellen HTML-Code hinzuf\xfcgen, mit Voransicht w\xe4hrend des Bearbeitens."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["F\xfchre neue Abschnitte ein und organisiere Inhalte, damit Besucher (und Suchmaschinen) die Struktur deiner Inhalte besser verstehen k\xf6nnen."],"Display multiple images in a rich gallery.":["Zeige mehrere Bilder in einer ansprechenden Galerie an."],"Add a link to a downloadable file.":["Einen Link zu einer Datei zum Herunterladen hinzuf\xfcgen."],"Embed videos, images, tweets, audio, and other content from external sources.":["Videos, Bilder, Tweets, Audios und andere Inhalte von externen Speicherorten einbetten."],"Resize for smaller devices":["F\xfcr kleinere Ger\xe4te skalieren"],"This embed may not preserve its aspect ratio when the browser is resized.":["Das Seitenverh\xe4ltnis dieser Einbettung k\xf6nnte verloren gehen, wenn die Anzeigegr\xf6\xdfe des Browsers ver\xe4ndert wird."],"This embed will preserve its aspect ratio when the browser is resized.":["Das Seitenverh\xe4ltnis dieser Einbettung wird beibehalten, wenn die Anzeigegr\xf6\xdfe des Browsers ver\xe4ndert wird."],"Embed an Animoto video.":["Ein Animoto-Video einbetten."],"Embed a Vimeo video.":["Ein Vimeo-Video einbetten."],"Embed Flickr content.":["Flickr-Inhalt einbetten."],"Embed Spotify content.":["Spotify-Inhalt einbetten."],"Embed SoundCloud content.":["SoundCloud-Inhalt einbetten."],"Embed a WordPress post.":["Einen WordPress-Beitrag einbetten."],"Embed an Instagram post.":["Einen Instagram-Beitrag einbetten."],"Embed a Facebook post.":["Einen Facebook-Beitrag einbetten."],"Embed a WordPress.tv video.":["Ein WordPress.tv-Video einbetten."],"Embed a VideoPress video.":["Ein VideoPress-Video einbetten."],"Embed a Tumblr post.":["Einen Tumblr-Beitrag einbetten."],"Embed a TED video.":["Ein TED-Video einbetten."],"Embed Speaker Deck content.":["Speaker-Deck-Inhalt einbetten."],"Embed a YouTube video.":["Ein YouTube-Video einbetten."],"Embed SmugMug content.":["SmugMug-Inhalt einbetten."],"Embed Slideshare content.":["Slideshare-Inhalt einbetten."],"Embed Scribd content.":["Scribd-Inhalt einbetten."],"Embed Screencast content.":["Screencast-Inhalt einbetten."],"Embed ReverbNation content.":["ReverbNation-Inhalt einbetten."],"Embed a Reddit thread.":["Einen Reddit-Thread einbetten."],"Embed Polldaddy content.":["Polldaddy-Inhalt einbetten."],"Embed Mixcloud content.":["Mixcloud-Inhalt einbetten."],"Embed a tweet.":["Einen Tweet einbetten."],"Embed Meetup.com content.":["Meetup.com-Inhalt einbetten."],"Embed Kickstarter content.":["Kickstarter-Inhalt einbetten."],"Embed Issuu content.":["Issuu-Inhalt einbetten."],"Embed Imgur content.":["Imgur-Inhalt einbetten."],"Embed Hulu content.":["Hulu-Inhalt einbetten."],"Embed a Dailymotion video.":["Ein Dailymotion-Video einbetten."],"Embed CollegeHumor content.":["CollegeHumor-Inhalt einbetten."],"Embed Cloudup content.":["Cloudup-Inhalt einbetten."],"Add an image or video with a text overlay \u2014 great for headers.":["Ein Bild oder Video mit einem Text-Overlay einf\xfcgen - ideal f\xfcr Header."],"Display code snippets that respect your spacing and tabs.":["Code-Schnipsel anzeigen, die deine Abst\xe4nde und Tabulatoren beibehalten."],"Use the classic WordPress editor.":["Den klassischen WordPress-Editor verwenden."],"Display a list of all categories.":["Eine Liste aller Kategorien anzeigen."],"Embed a simple audio player.":["Einen einfachen Audio-Player einbetten."],"noun\x04View":["Ansicht"],"editor button\x04Left to right":["Links nach rechts"],"Save as Pending":["Als bevorstehend speichern"],"%s address":["%s-Adresse"],"Paste or type URL":["URL einf\xfcgen oder eingeben"],"Insert from URL":["Von URL einf\xfcgen"],"Block Navigator":["Block-Navigation"],Styles:["Styles"],"Advanced Panels":["Weitere Bedienfelder"],"Document Panels":["Dokument-Bedienfelder"],General:["Allgemein"],"Open the block navigation menu.":["Das Block-Navigationsmen\xfc \xf6ffnen."],"Work without distraction":["Arbeiten ohne Ablenkung"],"Focus on one block at a time":["Fokussierung auf einen Block nach dem anderen."],"Access all block and document tools in a single place":["Zugang zu allen Bl\xf6cken und Dokument-Werkzeugen von einem Platz aus"],Options:["Ansicht anpassen"],"(opens in a new tab)":["(\xf6ffnet in neuem Tab)"],Minutes:["Minuten"],Hours:["\xd6ffnungszeiten"],Time:["Zeit"],Year:["Jahr"],Day:["Tag"],December:["Dezember"],November:["November"],October:["Oktober"],September:["September"],August:["August"],July:["Juli"],June:["Juni"],May:["Mai"],April:["April"],March:["M\xe4rz"],February:["Februar"],January:["Januar"],Month:["Monat"],Date:["Datum"],"Go to the first (home) or last (end) day of a week.":["Gehe zum ersten (Start) oder letzten (Ende) Tag der Woche."],"Home/End":["Start/Ende"],"Home and End":["Start und Ende"],"Move backward (PgUp) or forward (PgDn) by one month.":["Zur\xfcck (Bild-auf) oder vorw\xe4rts (Bild-ab) bewegen um einen Monat."],"PgUp/PgDn":["Bild-auf/Bild-ab"],"Page Up and Page Down":["Bild-auf und Bild-ab"],"Move backward (up) or forward (down) by one week.":["Zur\xfcck (hoch) oder vorw\xe4rts (runter) bewegen um eine Woche."],"Up and Down Arrows":["Pfeile hoch und runter"],"Move backward (left) or forward (right) by one day.":["Zur\xfcck (links) oder vorw\xe4rts (rechts) bewegen um einen Tag."],"Left and Right Arrows":["Pfeile links und rechts"],"Select the date in focus.":["Datum im Fokus ausw\xe4hlen."],"Navigating with a keyboard":["Navigation mit einer Tastatur"],"Click the desired day to select it.":["Klicke den gew\xfcnschten Tag an, um ihn auszuw\xe4hlen."],"Click the right or left arrows to select other months in the past or the future.":["Klicke die Pfeile nach rechts oder links an, um Monate in der Vergangenheit oder der Zukunft auszuw\xe4hlen."],"Click to Select":["Klicken zum Ausw\xe4hlen"],"Calendar Help":["Kalender-Hilfe"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Benutze deine Pfeiltasten, um die Basisfarbe zu \xe4ndern. Hoch, um die Farbe aufzuhellen, runter zum Verdunkeln, links um die S\xe4ttigung zu verringern, rechts um sie zu erh\xf6hen."],"Choose a shade":["Farbton ausw\xe4hlen"],"Change color format":["Farbformat wechseln"],"Color value in HSL":["HSL-Farbwert"],"Color value in RGB":["RGB-Farbwert"],"Color value in hexadecimal":["Hexadezimaler Farbwert"],"RGB mode active":["RGB-Modus aktiv"],"Hex color mode active":["Hex-Farbmodus aktiv"],"Hue/saturation/lightness mode active":["Farbton/S\xe4ttigung/Helligkeit-Modus aktiv"],"Move the arrow left or right to change hue.":["Bewege den Pfeil nach rechts oder links zum \xc4ndern des Farbtons."],"Hue value in degrees, from 0 to 359.":["Farbtonwert in Grad, von 0 bis 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alphawert von 0 (transparent) bis 1 (volle Deckkraft)."],Stripes:["Streifen"],"Your site doesn\u2019t include support for this block.":["Deine Website unterst\xfctzt diesen Block nicht."],"Unrecognized Block":["Unerkannter Block"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Deine Website unterst\xfctzt den \u201e%s\u201c-Block nicht. Du kannst diesen Block unber\xfchrt lassen oder ihn ganz entfernen."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Deine Website unterst\xfctzt den \u201e%s\u201c-Block nicht. Du kannst diesen Block unber\xfchrt lassen, seinen Inhalt in einen individuellen HTML-Block wandeln oder ihn ganz entfernen."],"Media area":["Medienbereich"],"Media & Text":["Medien und Text"],"Show media on right":["Medien rechts anzeigen"],"Show media on left":["Medien links anzeigen"],"Open in New Tab":["In neuem Tab \xf6ffnen"],Cover:["Cover"],"Border Settings":["Rand-Einstellungen"],"Edit media":["Medien bearbeiten"],Medium:["Mittel"],"Paste URL or type to search":["URL einf\xfcgen oder zum Suchen tippen"],Terms:["Begriffe"],"Your work will be published at the specified date and time.":["Deine Arbeit wird zu dem bestimmten Datum und Zeit ver\xf6ffentlicht werden."],"Are you ready to schedule?":["Bist du bereit f\xfcr die Ver\xf6ffentlichung?"],"Always show pre-publish checks.":["Pr\xfcfungen vor der Ver\xf6ffentlichung immer anzeigen."],"Take Over":["\xdcbernehmen"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Ein anderer Benutzer arbeitet momentan an diesem Beitrag. Du kannst daher keine \xc4nderungen vornehmen, au\xdfer du \xfcbernimmst."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s arbeitet momentan an diesem Beitrag. Du kannst daher keine \xc4nderungen vornehmen, au\xdfer du \xfcbernimmst."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Ein anderer Benutzer hat nun die Kontrolle zur Bearbeitung dieses Beitrags. Keine Sorge, deine \xc4nderungen bis zu diesem Moment wurden gespeichert."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s hat nun die Kontrolle zur Bearbeitung dieses Beitrags. Keine Sorge, deine \xc4nderungen bis zu diesem Moment wurden gespeichert."],Avatar:["Avatar"],"This post is already being edited.":["Dieser Beitrag wird schon bearbeitet."],"Someone else has taken over this post.":["Jemand anderes hat diesen Beitrag \xfcbernommen."],"This block contains unexpected or invalid content.":["Dieser Block enth\xe4lt unerwarteten oder ung\xfcltigen Inhalt."],"Resolve Block":["Block l\xf6sen"],"Convert to HTML":["Zu HTML umwandeln"],"This block can only be used once.":["Dieser Block kann nur einmal verwendet werden."],"Exit Code Editor":["Code-Editor verlassen"],"Editing Code":["Code bearbeiten"],"Solid Color":["Einheitliche Farbe"],"Main Color":["Hauptfarbe"],HTML:["HTML"],"Write HTML\u2026":["Schreibe HTML\u2026"],"Media Settings":["Medien-Einstellungen"],"Overlay Color":["Overlay-Farbe"],Overlay:["Overlay"],"Insert Media":["Medien hinzuf\xfcgen"],"Reusable block imported successfully!":["Wiederverwendbarer Block erfolgreich importiert!"],"Invalid Reusable Block JSON file":["Ung\xfcltige JSON-Datei f\xfcr wiederverwendbaren Block"],"Invalid JSON file":["Ung\xfcltige JSON-Datei"],"Import from JSON":["Import von JSON"],Backtick:["Backtick"],Period:["Punkt"],Comma:["Komma"],"Change type of %d block":["Typ des %d Blocks \xe4ndern","Typ der %d Bl\xf6cke \xe4ndern"],Current:["Aktuell"],"After Conversion":["Nach Umwandlung"],"Change alignment":["Ausrichtung \xe4ndern"],"Change text alignment":["Textausrichtung \xe4ndern"],"%d block":["%d Block","%d Bl\xf6cke"],Escape:["Escape"],"Forward-slash":["Schr\xe4gstrich"],"No archives to show.":["Keine Archive zum Anzeigen."],"This file is empty.":["Diese Datei ist leer."],"Sorry, this file type is not supported here.":["Dieser Dateityp wird hier leider nicht unterst\xfctzt."],"Manage All Reusable Blocks":["Alle wiederverwendbaren Bl\xf6cke verwalten"],Title:["Titel"],"Fullscreen Mode":["Vollbildmodus"],"Beautiful landscape":["Sch\xf6ne Landschaft"],"Close panel":["Panel schlie\xdfen"],"Convert to Classic Block":["In Block konvertieren"],"Remove Poster Image":["Vorschaubild entfernen"],"Select Poster Image":["Vorschaubild ausw\xe4hlen"],"Poster Image":["Vorschaubild"],"This block is deprecated. Please use the Columns block instead.":["Dieser Block ist veraltet. Bitte verwende stattdessen den Spalten-Block."],"Text Columns (deprecated)":["Textspalten (veraltet)"],"Row Count":["Anzahl der Zeilen"],"Column Count":["Anzahl der Spalten"],"This block is deprecated. Please use the Paragraph block instead.":["Dieser Block ist veraltet. Bitte benutze stattdessen den Absatz-Block."],"Subheading (deprecated)":["Zwischen\xfcberschrift (veraltet)"],blockquote:["Zitat"],"Change the block type after adding a new paragraph.":["Den Blocktyp nach Hinzuf\xfcgen eines neuen Absatzes \xe4ndern."],"Spotlight Mode":["Spotlight-Modus"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Mithilfe von Schlagw\xf6rtern k\xf6nnen Benutzer und Suchmaschinen auf deiner Website navigieren und deine Inhalte finden. F\xfcge einige Schlagw\xf6rter hinzu, um deinen Beitrag zu beschreiben."],"Add tags":["Schlagw\xf6rter hinzuf\xfcgen"],"Apply the \"%1$s\" format.":["Das \u201e%1$s\u201c-Format verwenden."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Dein Theme verwendet Beitragsformate, um verschiedene Arten von Inhalten wie Bilder oder Videos hervorzuheben. W\xe4hle ein Beitragsformat aus, um dieses spezielle Styling zu sehen."],"Use a post format":["Verwende ein Beitragsformat"],"Insert After":["Danach einf\xfcgen"],"Insert Before":["Davor einf\xfcgen"],"Move %1$d block from position %2$d down by one place":["Bewege %1$d Block von Position %2$d um einen Platz nach unten","Bewege %1$d Bl\xf6cke von Position %2$d um einen Platz nach unten"],"Move %1$d block from position %2$d up by one place":["Bewege %1$d Block von Position %2$d um einen Platz nach oben","Bewege %1$d Bl\xf6cke von Position %2$d um einen Platz nach oben"],"Move %1$s block from position %2$d %3$s to position %4$d":["Bewege %1$s Block von Position %2$d %3$s zur Position %4$d"],movie:["Film"],"Insert a new block before the selected block(s).":["Neuen Block vor dem/den ausgew\xe4hlten Block/Bl\xf6cken einf\xfcgen."],"Remove the selected block(s).":["Ausgew\xe4hlte(n) Block/Bl\xf6cke entfernen."],"Duplicate the selected block(s).":["Ausgew\xe4hlte(n) Block/Bl\xf6cke duplizieren."],"Block shortcuts":["Block-Tastaturk\xfcrzel"],"Clear selection.":["Auswahl l\xf6schen."],"Select all text when typing. Press again to select all blocks.":["W\xe4hle bei der Eingabe den gesamten Text aus. Dr\xfccke erneut, um alle Bl\xf6cke auszuw\xe4hlen."],"Selection shortcuts":["Auswahl-Tastaturk\xfcrzel"],"Switch between Visual Editor and Code Editor.":["Zwischen Visuellem Editor und Code-Editor umschalten."],"Navigate to the previous part of the editor (alternative).":["Zum vorherigen Teil des Editors navigieren (Alternative)."],"Navigate to the next part of the editor (alternative).":["Zum n\xe4chsten Teil des Editors navigieren (Alternative)."],"Navigate to the previous part of the editor.":["Zum vorherigen Teil des Editors navigieren."],"Navigate to the next part of the editor.":["Zum n\xe4chsten Teil des Editors navigieren."],"Show or hide the settings sidebar.":["Die Einstellungen-Seitenleiste anzeigen oder verbergen."],"Redo your last undo.":["Wiederhole dein letztes R\xfcckg\xe4ngigmachen."],"Undo your last changes.":["Deine letzten \xc4nderungen r\xfcckg\xe4ngig machen."],"Save your changes.":["Deine \xc4nderungen speichern."],"Global shortcuts":["Globale Tastaturk\xfcrzel"],"Remove a link.":["Einen Link entfernen."],"Convert the selected text into a link.":["Ausgew\xe4hlten Text in einen Link umwandeln."],"Underline the selected text.":["Den ausgew\xe4hlten Text unterstreichen."],"Make the selected text italic.":["Macht den ausgew\xe4hlten Text kursiv."],"Make the selected text bold.":["Macht den ausgew\xe4hlten Text fett."],"Text formatting":["Textformatierung"],"Insert a new block after the selected block(s).":["Neuen Block nach dem/den ausgew\xe4hlten Block/Bl\xf6cken einf\xfcgen."],"Keyboard Shortcuts":["Tastaturk\xfcrzel"],"Thanks for testing Gutenberg!":["Danke f\xfcr das Testen von Gutenberg!"],"Help build Gutenberg":["Hilf, Gutenberg zu gestalten"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Falls du mehr dar\xfcber erfahren willst, wie zus\xe4tzliche Bl\xf6cke erstellt werden oder falls du bei dem Projekt mithelfen m\xf6chtest, komm r\xfcber zum GitHub repository."],"The WordPress community":["Die WordPress-Community"],"Code is Poetry":["Code ist Poesie"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Du kannst jede Art von Block erstellen, die du magst, statisch oder dynamisch, dekorativ oder schlicht. Hier ist ein Block mit einem hervorgehobenen Zitat:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Jeder Block kann sich an diese Ausrichtungen anpassen. Der Einbetten-Block hat sie auch und ist standardm\xe4\xdfig responsiv:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Hier oben ist eine Galerie mit nur zwei Bildern. Das ist ein einfache M\xf6glichkeit, optisch ansprechende Layouts zu erstellen, ohne daf\xfcr floats zu verwenden. Du kannst die Galerie mithilfe des Block-Umschalters auch wieder zur\xfcck in einzelne Bilder konvertieren."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Klar, ein Bild in ganzer Breite kann ganz sch\xf6n gro\xdf sein. Aber manchmal ist das Bild es wert."],"Accessibility is important — don’t forget image alt attribute":["Barrierefreiheit ist wichtig – vergiss das alt-Attribut des Bildes nicht."],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Wenn du die neuen Weite-Breite und Volle-Breite-Ausrichtungen mit Galerien kombinierst, kannst du sehr schnell ein umfangreiches, multimediales Layout erstellen:"],"Media Rich":["Multimedial"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Du kannst die Anzahl der Spalten in deinen Galerien \xe4ndern, indem du einen Schieberegler im Block-Inspektor in der Seitenleiste bewegst."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Bl\xf6cke k\xf6nnen alles sein, was du brauchst. Zum Beispiel willst du vielleicht ein dezentes Zitat als Teil deiner Textkomposition hinzuf\xfcgen oder du bevorzugst einen gigantischen Stil. All diese Optionen sind im Inserter verf\xfcgbar."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Die Quellenangabe des Zitats ist ein separates Textfeld, \xe4hnlich wie bei den Bildunterschriften. Somit bleibt die Struktur des Zitats gesch\xfctzt, auch wenn du die Quelle ausw\xe4hlst, ver\xe4nderst oder entfernst. Sie kann jederzeit wieder hinzugef\xfcgt werden."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["Der Editor bietet ein neue Erfahrung beim Erstellen von Seiten und Beitr\xe4gen, die das m\xfchelose Schreiben umfangreicher Inhalte erm\xf6glicht. Er hat \u201eBl\xf6cke\u201c, um das Einbetten von Inhalten, die bisher \xfcber Shortcodes, individuelles HTML oder \u201emysteri\xf6se Praktiken\u201c eingebettet wurden, zu vereinfachen."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Ein gro\xdfer Vorteil von Bl\xf6cken ist es, dass du sie direkt vor Ort bearbeiten und deinen Inhalt ver\xe4ndern kannst. Anstelle von Feldern, um beispielsweise die Quelle eines Zitats oder den Text eines Buttons zu bearbeiten, kannst du den Inhalt direkt \xe4ndern. Versuche, das folgende Zitat zu bearbeiten:"],"Visual Editing":["Visuelle Bearbeitung"],"And Lists like this one of course :)":["Und nat\xfcrlich Listen wie diese :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout-Bl\xf6cke, wie Buttons, Hero-Bilder, Separatoren, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Einbettungen, wie YouTube, Tweets, oder andere WordPress-Beitr\xe4ge."],Galleries:["Galerien"],"Images & Videos":["Bilder und Videos"],"Text & Headings":["Text und \xdcberschriften"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Versuch es, du entdeckst wom\xf6glich Dinge, die WordPress bereits in deine Beitr\xe4ge einf\xfcgen kann, von denen du nichts wusstest. Hier ist eine kurze Liste, was du aktuell dort findest:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Stell dir vor, alles, was WordPress kann, steht dir direkt auf der Oberfl\xe4che zur Verf\xfcgung. Keine Notwendigkeit mehr, sich an HTML-Tags, Klassen oder komplizierte Shortcode-Syntax zu erinnern. Das ist der Grundgedanke hinter dem Inserter \u2013 der (+)-Button, den du um den Editor herum siehst \u2013 mit dem du alle verf\xfcgbaren Inhalts-Bl\xf6cke suchen und in deinen Beitrag einf\xfcgen kannst. Plugins und Themes sind in der Lage, ihre eigenen Bl\xf6cke zu registrieren, was alle Arten von M\xf6glichkeiten f\xfcr eine umfangreiche Bearbeitung und Ver\xf6ffentlichung er\xf6ffnet."],"The Inserter Tool":["Das Inserter-Werkzeug"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Versuche, die Bildunterschrift auszuw\xe4hlen, zu bewegen oder zu bearbeiten. Jetzt musst du nicht mehr aufpassen, versehentlich ein Bild oder anderen Text auszuw\xe4hlen und so die Pr\xe4sentation zu ruinieren."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Falls dein Theme es unterst\xfctzt, siehst du das \u201eWeite-Breite\u201c-Icon in der Bild-Werkzeugleiste. Probiere es aus."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Der Umgang mit Bildern und Medien mit der gr\xf6\xdften Sorgfalt ist ein prim\xe4rer Schwerpunkt des neuen Editors. Hoffentlich empfindest du das Hinzuf\xfcgen von Bildunterschriften oder das Anzeigen deiner Bilder in voller Breite viel einfacher und solider als bisher."],"A Picture is Worth a Thousand Words":["Ein Bild sagt mehr als tausend Worte"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["\xdcberschriften sind selbst separate Bl\xf6cke, was bei der Gliederung und Organisation deiner Inhalte hilft."],"... like this one, which is right aligned.":["... wie dieser, der rechtsb\xfcndig ist."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Was du gerade liest befindet sich in einem Text-Block, der einfachste Block von allen. Der Text-Block kann frei im Beitrag positioniert werden …"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Das Ziel des neuen Editors ist es, das Hinzuf\xfcgen von umfangreichen Inhalten in WordPress einfach und angenehm zu gestalten. Dieser ganze Beitrag besteht aus einzelnen Inhalts-Elementen, die LEGO-Steinen \xe4hneln, die man bewegen und mit denen man interagieren kann. Lass den Mauszeiger kreisen und du wirst feststellen, dass um die verschiedenen Bl\xf6cke herum Umrisse und Pfeile aufleuchten. Dr\xfccke die Pfeile, um Bl\xf6cke schnell neu zu positionieren, ohne bef\xfcrchten zu m\xfcssen, beim Kopieren und Einf\xfcgen etwas zu verlieren."],"Of Mountains & Printing Presses":["Von Bergen und Druckmaschinen"],"Welcome to the Gutenberg Editor":["Willkommen beim Gutenberg-Editor"],"block name\x04More":["Mehr"],"button to expand options\x04More":["Mehr"],"Are you sure you want to unschedule this post?":["Bist du sicher, dass du diesen Beitrag aus dem Zeitplan nehmen willst?"],"Alt Text (Alternative Text)":["Alt-Text (Alternativer Text)"],"Reusable Block":["Wiederverwendbarer Block"],"Unique identifier for the object.":["Eindeutige Kennung f\xfcr das Objekt."],"Untitled Reusable Block":["Unbenannter wiederverwendbarer Block"],Small:["Klein"],"(%s: %s)":["(%s: %s)"],Reusable:["Wiederverwendbar"],"(current %s: %s)":["(aktuell %s: %s)"],"Remove from Reusable Blocks":["Von wiederverwendbaren Bl\xf6cken entfernen"],"Add to Reusable Blocks":["Zu wiederverwendbaren Bl\xf6cken hinzuf\xfcgen"],"Keep as HTML":["Als HTML behalten"],"Edit URL":["URL bearbeiten"],"Color Settings":["Farbeinstellungen"],"The response is not a valid JSON response.":["Die Antwort ist keine g\xfcltige JSON-Antwort."],"Editor publish":["Editor: Ver\xf6ffentlichen"],Muted:["Stumm"],"Video Settings":["Video-Einstellungen"],"recent comments":["Neueste Kommentare"],"Latest Comments":["Neueste Kommentare"],"Display Excerpt":["Textauszug anzeigen"],"Display Date":["Datum anzeigen"],"Display Avatar":["Avatar anzeigen"],"Latest Comments Settings":["Einstellungen - Neueste Kommentare"],"Number of Comments":["Anzahl der Kommentare"],"Background Opacity":["Hintergrund-Deckkraft"],Auto:["Auto"],Preload:["Vorladen"],"Audio Settings":["Audio-Einstellungen"],"Display a monthly archive of your posts.":["Ein monatliches Archiv deiner Beitr\xe4ge anzeigen."],"Display as Dropdown":["Als Drop-down-Liste anzeigen"],"Show Post Counts":["Anzahl der Beitr\xe4ge anzeigen"],"Archives Settings":["Archiv-Einstellungen"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Support"],"No comments to show.":["Keine Kommentare vorhanden."],"%1$s on %2$s":["%1$s zu %2$s"],"Select Post":["Beitrag ausw\xe4hlen"],"Select Week":["Woche ausw\xe4hlen"],"Select Day":["Tag ausw\xe4hlen"],"Select Month":["Monat ausw\xe4hlen"],"Select Year":["Jahr ausw\xe4hlen"],Archives:["Archive"],"Very dark gray":["Sehr dunkles Grau"],"Cyan bluish gray":["Cyan-bl\xe4uliches Grau"],"Very light gray":["Sehr helles Grau"],"Vivid cyan blue":["Kr\xe4ftiges Cyanblau"],"Pale cyan blue":["Helles Blau"],"Vivid green cyan":["Kr\xe4ftiges Cyangr\xfcn"],"Light green cyan":["Helles Gr\xfcn"],"Luminous vivid amber":["Leuchtendes Bernstein"],"Luminous vivid orange":["Leuchtendes Orange"],"Vivid red":["Kr\xe4ftiges Rot"],"Pale pink":["Helles Rosa"],"Inline image":["Inline-Bild"],"Available block types":["Verf\xfcgbare Block-Typen"],"Transform To:":["Umwandeln in:"],"Remove Block":["Block entfernen"],"Open publish panel":["Ver\xf6ffentlichungs-Eingabefeld \xf6ffnen"],Dots:["Punkte"],"Wide Line":["Breite Linie"],Large:["Gro\xdf"],"Show download button":["Download-Button anzeigen"],"Download button settings":["Download-Button Einstellungen"],"Link To":["Link zur"],"Text link settings":["Text-Link Einstellungen"],pdf:["pdf"],document:["Dokument"],"Copy URL":["URL kopieren"],"Write file name\u2026":["Schreibe einen Dateinamen\u2026"],"Edit file":["Datei bearbeiten"],File:["Datei"],"A single column within a columns block.":["Eine einzelne Spalte innerhalb eines Spaltenblocks."],Column:["Spalte"],Outline:["Kontur"],Loop:["Schleife"],Autoplay:["Autoplay"],"Playback Controls":["Wiedergabe-Steuerung"],"Close dialog":["Dialog schlie\xdfen"],"Sorry, this file type is not permitted for security reasons.":["Dieser Dateityp ist aus Sicherheitsgr\xfcnden leider nicht erlaubt."],"Disable tips":["Tipps deaktivieren"],"Got it":["Verstanden"],"See next tip":["N\xe4chsten Tipp ansehen"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Wenn du fertig bist, reiche deine Arbeit zur \xdcberpr\xfcfung ein, und ein Editor kann sie f\xfcr dich genehmigen."],"Are you ready to submit for review?":["Bist du bereit, eine \xdcberpr\xfcfung einzureichen?"],"Replace image":["Bild ersetzen"],"Remove image":["Kein Bild verwenden"],"Error while uploading file %s to the media library.":["Fehler beim Hochladen der Datei %s in die Mediathek."],"This file exceeds the maximum upload size for this site.":["Diese Datei \xfcberschreitet die maximale Upload-Gr\xf6\xdfe f\xfcr diese Website."],"View the autosave":["Die automatische Speicherung ansehen"],"There is an autosave of this post that is more recent than the version below.":["Es gibt eine automatische Speicherung dieses Beitrags, die aktueller ist, als die unten stehende Version."],Autosaving:["Automatische Speicherung"],"Enter URL here\u2026":["URL hier eingeben\u2026"],"Pin to toolbar":["Zur Werkzeugleiste hinzuf\xfcgen"],"Unpin from toolbar":["Aus der Werkzeugleiste entfernen"],"Insert a table \u2014 perfect for sharing charts and data.":["F\xfcge eine Tabelle ein – ideal um Diagramme und Daten zu teilen."],"Fixed width table cells":["Tabellenzellen mit fester Breite"],"Table Settings":["Tabellen-Einstellungen"],"Add text that respects your spacing and tabs, and also allows styling.":["F\xfcge Text hinzu, der deine Abst\xe4nde und Tabulatoren respektiert und ebenfalls Styling erlaubt."],"Display a list of your most recent posts.":["Zeigt eine Liste der neuesten Beitr\xe4ge an."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["F\xfcge einen Block hinzu, der Inhalte von anderen Websites wie Twitter, Instagram oder YouTube anzeigt."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Erstelle einen Block, der Inhalte in mehreren Spalten anzeigt und f\xfcge dann beliebige Inhaltsbl\xf6cke hinzu."],"Error loading block: %s":["Fehler beim Laden des Blocks: %s"],"Unknown error":["Unbekannter Fehler"],"Embed Handler":["Handler einbetten"],"term\x04Remove %s":["%s entfernen"],"Copy the permalink":["Den Permalink kopieren"],"Permalink copied":["Permalink kopiert"],"Height in pixels":["H\xf6he in Pixel"],"Spacer Settings":["Abstandshalter-Einstellungen"],Spacer:["Abstandshalter"],"Toggle to show a large initial letter.":["Umschalten, um einen gro\xdfen Anfangsbuchstaben anzuzeigen."],"Showing large initial letter.":["Gro\xdfen Anfangsbuchstaben darstellen."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Element entfernen"],"Color code: %s":["Farbcode: %s"],"Skip to the selected block":["Zum ausgew\xe4hlten Block wechseln"],"Publish\u2026":["Ver\xf6ffentlichen\u2026"],"Schedule\u2026":["Planen\u2026"],"Edit post permalink":["Beitrags-Permalink bearbeiten"],"Show Block Settings":["Block-Einstellungen anzeigen"],"Hide Block Settings":["Block-Einstellungen verbergen"],"Block settings closed":["Block-Einstellungen geschlosssen"],"Close plugin":["Plugin schlie\xdfen"],"Link settings":["Link-Einstellungen"],Unlink:["Link entfernen"],"Page break":["Seitenumbruch"],pagination:["Seitennummerierung"],"next page":["n\xe4chste Seite"],"Image Size":["Bildgr\xf6\xdfe"],Height:["H\xf6he"],Width:["Breite"],"Image Dimensions":["Bildabmessungen"],"Thumbnails are not cropped.":["Vorschaubilder werden nicht abgeschnitten."],"Thumbnails are cropped to align.":["Vorschaubilder werden beschnitten, um sie auszurichten."],"Media Library":["Mediathek"],Advanced:["Erweitert"],"Add item":["Element hinzuf\xfcgen"],"Reset the template":["Template zur\xfccksetzen"],"Keep it as is":["So behalten, wie es ist"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Der Inhalt deines Beitrags passt nicht zu dem Template, das deinem Inhaltstyp zugeordnet ist."],"Resetting the template may result in loss of content, do you want to continue?":["Das Zur\xfccksetzen des Templates kann zum Verlust von Inhalten f\xfchren, m\xf6chtest du fortfahren?"],"Document Statistics":["Dokument-Statistiken"],"is now scheduled. It will go live on":["ist jetzt geplant f\xfcr die Ver\xf6ffentlichung am"],Scheduled:["Geplant"],"Scheduling\u2026":["Wird geplant\u2026"],"Code editor selected":["Code-Editor ausgew\xe4hlt"],"Visual editor selected":["Visueller Editor ausgew\xe4hlt"],Plugins:["Plugins"],"Custom Size":["Individuelle Gr\xf6\xdfe"],"Layout Elements":["Layout-Elemente"],"term\x04%s removed":["%s entfernt"],"term\x04%s added":["%s hinzugef\xfcgt"],"imperative verb\x04Preview":["Vorschau"],"Block deleted.":["Block gel\xf6scht."],"Block updated.":["Block aktualisiert."],"Block created.":["Block erstellt."],"Trashing failed":["Das Verschieben in den Papierkorb ist gescheitert"],"Updating failed.":["Aktualisieren gescheitert."],"Scheduling failed.":["Planen gescheitert."],"Publishing failed.":["Ver\xf6ffentlichen gescheitert."],"View Post":["Beitrag anzeigen"],"You have unsaved changes. If you proceed, they will be lost.":["Du hast ungespeicherte \xc4nderungen. Falls du fortf\xe4hrst, gehen diese verloren."],"Document Outline":["Gliederung des Dokuments"],Paragraphs:["Abs\xe4tze"],Headings:["\xdcberschriften"],Words:["W\xf6rter"],"Content structure":["Inhaltliche Struktur"],Public:["\xd6ffentlich"],"Protected with a password you choose. Only those with the password can view this post.":["Gesch\xfctzt mit einem von dir gew\xe4hlten Passwort. Nur wer das Passwort hat, kann diesen Beitrag sehen."],"Password Protected":["Passwortgesch\xfctzt"],"Only visible to site admins and editors.":["Nur f\xfcr Website-Administratoren und Redakteure sichtbar."],Private:["Privat"],"Visible to everyone.":["Sichtbar f\xfcr jeden."],"Post Visibility":["Sichtbarkeit des Beitrags"],"Would you like to privately publish this post now?":["M\xf6chtest du diesen Beitrag jetzt als privat ver\xf6ffentlichen?"],"Use a secure password":["W\xe4hle ein sicheres Passwort"],"Create password":["Passwort erstellen"],"Move to Trash":["In den Papierkorb verschieben"],"Parent Term":["\xdcbergeordneter Begriff"],"Parent Category":["\xdcbergeordnete Kategorie"],"Add new term":["Neuen Begriff hinzuf\xfcgen"],"Add new category":["Neue Kategorie hinzuf\xfcgen"],Term:["Begriff"],Tag:["Schlagwort"],"Add New Term":["Neuen Begriff hinzuf\xfcgen"],"Add New Tag":["Neues Schlagwort erstellen"],"Switch to Draft":["Auf Entwurf umstellen"],"Are you sure you want to unpublish this post?":["Bist du sicher, dass dieser Beitrag nicht mehr ver\xf6ffentlicht sein soll?"],Immediately:["Sofort"],"Save Draft":["Speichern"],Saving:["Speichert"],"Publish:":["Ver\xf6ffentlichung: "],"Visibility:":["Sichtbarkeit: "],"Are you ready to publish?":["Bereit zur Ver\xf6ffentlichung?"],"Copy Link":["Link kopieren"],"What\u2019s next?":["Was kommt als N\xe4chstes?"],"is now live.":["ist jetzt live."],Published:["Ver\xf6ffentlicht"],Schedule:["Planen"],Update:["Aktualisieren"],"Submit for Review":["Zur \xdcberpr\xfcfung einreichen"],"Updating\u2026":["Aktualisieren\u2026"],"Publishing\u2026":["Ver\xf6ffentlichen\u2026"],"Allow Pingbacks & Trackbacks":["Pingbacks und Trackbacks erlauben"],"Permalink:":["Permalink:"],"Pending Review":["Ausstehender Review"],"%d Revision":["%d Revision","%d Revisionen"],"Suggestion:":["Vorschlag:"],"Post Format":["Beitragsformat"],Chat:["Chat"],Status:["Status"],Standard:["Standard"],Aside:["Kurzmitteilung"],"Set Featured Image":["Beitragsbild festlegen"],"Learn more about manual excerpts":["Erfahre mehr \xfcber manuelle Textausz\xfcge"],"Write an excerpt (optional)":["Schreibe einen Textauszug (optional)"],"Allow Comments":["Kommentare erlauben"],"Template:":["Template:"],"no parent":["kein Elternelement"],"no title":["kein Titel"],Order:["Reihenfolge"],"No blocks found.":["Keine Bl\xf6cke gefunden."],"%d result found.":["%d Ergebnis gefunden.","%d Ergebnisse gefunden."],Saved:["Gespeichert"],Embeds:["Einbettungen"],Blocks:["Bl\xf6cke"],"Search for a block":["Suche nach einem Block"],"Add block":["Block hinzuf\xfcgen"],"Add %s":["%s hinzuf\xfcgen"],"Copy Error":["Fehlermeldung kopieren"],"Copy Post Text":["Beitragstext kopieren"],"Attempt Recovery":["Wiederherstellung versuchen"],"The editor has encountered an unexpected error.":["Im Editor ist ein unerwarteter Fehler aufgetreten."],Undo:["R\xfcckg\xe4ngig"],Redo:["Wiederholen"],"(Multiple H1 headings are not recommended)":["(Mehrere H1-\xdcberschriften werden nicht empfohlen)"],"(Your theme may already use a H1 for the post title)":["(Dein Theme k\xf6nnte bereits eine H1-\xdcberschrift f\xfcr den Beitragstitel benutzen)"],"(Incorrect heading level)":["(Falsche \xdcberschriftsebene)"],"(Empty heading)":["(Leere \xdcberschrift)"],"Block Styles":["Block-Stile"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Bist du sicher, dass du diesen wiederverwendbaren Block l\xf6schen willst?\n\nEr wird dauerhaft von allen Beitr\xe4gen und Seiten gel\xf6scht, die ihn beinhalten."],"Convert to Regular Block":["In normalen Block umwandeln"],"More options":["Mehr Optionen"],"Edit visually":["Visuell bearbeiten"],Duplicate:["Duplizieren"],"Blocks cannot be moved down as they are already at the bottom":["Bl\xf6cke k\xf6nnen nicht nach unten verschoben werden, da sie sich bereits unten befinden."],"Blocks cannot be moved up as they are already at the top":["Bl\xf6cke k\xf6nnen nicht nach oben verschoben werden, da sie sich bereits oben befinden."],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Block %1$s steht am Anfang des Inhalts und kann nicht nach %2$s verschoben werden"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["%1$s-Block befindet sich am Ende des Inhalts und kann nicht nach %2$s verschoben werden"],"Block %s is the only block, and cannot be moved":["Block %s ist der einzige Block und kann nicht verschoben werden"],"Edit as HTML":["Als HTML bearbeiten"],"Convert to Blocks":["In Bl\xf6cke umwandeln"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["In diesem Block ist ein Fehler aufgetreten und eine Vorschau ist nicht m\xf6glich."],"No block selected.":["Kein Block ausgew\xe4hlt."],"Transform into:":["Umwandeln in:"],Remove:["Entfernen"],"Find original":["Original suchen"],"Copy All Content":["Kompletten Inhalt kopieren"],"Copied!":["Kopiert!"],"Additional settings are now available in the Editor block settings sidebar":["Zus\xe4tzliche Einstellungen sind jetzt in der Seitenleiste des Editors unter \u201eErweiterte Einstellungen\u201c verf\xfcgbar"],Visibility:["Sichtbarkeit"],"Status & Visibility":["Status und Sichtbarkeit"],"Page Attributes":["Seiten-Attribute"],Block:["Block"],Document:["Dokument"],"Featured Image":["Beitragsbild"],"Close settings":["Einstellungen schlie\xdfen"],"Editor content":["Editor-Inhalt"],Tools:["Werkzeuge"],Editor:["Editor"],"Code Editor":["Code-Editor"],"Visual Editor":["Visueller Editor"],"Editor top bar":["Obere Editor-Leiste"],Settings:["Einstellungen"],Reset:["Zur\xfccksetzen"],"Dismiss this notice":["Diesen Hinweis verwerfen"],"Item removed.":["Element entfernt."],"Item added.":["Element hinzugef\xfcgt."],"Drop files to upload":["Dateien f\xfcr den Upload bereitstellen"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Ein unbekannter Fehler ist aufgetreten."],"No results.":["Keine Ergebnisse."],"%d result found, use up and down arrow keys to navigate.":["%d Ergebnis gefunden, benutze die Pfeile nach oben oder unten zum Navigieren.","%d Ergebnisse gefunden, benutze die Pfeile nach oben oder unten zum Navigieren."],"(no title)":["(kein Titel)"],URL:["URL"],Submit:["Senden"],Close:["Schlie\xdfen"],"Insert link":["Link einf\xfcgen"],"Edit link":["Link bearbeiten"],Link:["Link"],Strikethrough:["Durchgestrichen"],Italic:["Kursiv"],Bold:["Fett"],"Remove link":["Link entfernen"],"Number of items":["Anzahl Elemente"],All:["Alle"],Category:["Kategorie"],"Z \u2192 A":["Z → A"],"A \u2192 Z":["A → Z"],"Oldest to Newest":["Alt nach Neu"],"Newest to Oldest":["Neu nach Alt"],"Order by":["Reihenfolge von"],Select:["Ausw\xe4hlen"],"Select or Upload Media":["Medium w\xe4hlen oder hochladen"],Video:["Video"],"Edit video":["Video bearbeiten"],"Write\u2026":["Schreibe\u2026"],poetry:["Poesie"],Verse:["Vers"],"New Column":["Neue Spalte"],"Delete Column":["Spalte l\xf6schen"],"Add Column After":["Spalte rechts hinzuf\xfcgen"],"Add Column Before":["Spalte links hinzuf\xfcgen"],"Delete Row":["Zeile l\xf6schen"],"Add Row After":["Zeile unten hinzuf\xfcgen"],"Add Row Before":["Zeile oben hinzuf\xfcgen"],"Edit table":["Tabelle bearbeiten"],Table:["Tabelle"],"Write subheading\u2026":["Schreibe einen Untertitel\u2026"],"Write shortcode here\u2026":["Schreibe hier den Shortcode\u2026"],Shortcode:["Shortcode"],divider:["Trennlinie"],"horizontal-line":["horizontale Linie"],Separator:["Trennzeichen"],Quote:["Zitat"],"Write citation\u2026":["Schreibe einen Bezugstext\u2026"],"Write quote\u2026":["Schreibe ein Zitat\u2026"],Pullquote:["Pullquote"],"Write preformatted text\u2026":["Schreibe vorformatierten Text\u2026"],Preformatted:["Vorformatiert"],text:["Text"],Paragraph:["Absatz"],"Font Size":["Schriftgr\xf6\xdfe"],"Drop Cap":["Initialbuchstabe"],"Text Settings":["Text-Einstellungen"],"Read more":["Weiterlesen"],"Write list\u2026":["Schreibe eine Liste\u2026"],"numbered list":["Nummerierte Liste"],"ordered list":["Geordnete Liste"],"bullet list":["Aufz\xe4hlungsliste"],"Indent list item":["Listenelement einr\xfccken"],"Outdent list item":["Listenelement ausr\xfccken"],"Convert to ordered list":["Zu geordneter Liste umwandeln"],"Convert to unordered list":["Zu ungeordneter Liste umwandeln"],List:["Liste"],"recent posts":["Neueste Beitr\xe4ge"],"No posts found.":["Keine Beitr\xe4ge gefunden."],"Latest Posts":["Neueste Beitr\xe4ge"],"Display post date":["Beitragsdatum anzeigen"],"Grid view":["Rasteransicht"],"List view":["Listenansicht"],photo:["Foto"],"Image Settings":["Bild-Einstellungen"],Image:["Bild"],Preview:["Vorschau"],embed:["Embed"],"Custom HTML":["HTML"],subtitle:["Untertitel"],title:["Titel"],Heading:["\xdcberschrift"],"Write heading\u2026":["Schreibe \xdcberschrift\u2026"],"Heading %d":["\xdcberschrift %d"],Level:["Ebene"],"Heading Settings":["\xdcberschrift-Einstellungen"],photos:["Fotos"],images:["Bilder"],"Remove Image":["Bild entfernen"],None:["Keine"],"Media File":["Medien-Datei"],"Attachment Page":["Anhang-Seite"],"Crop Images":["Bilder zuschneiden"],"Gallery Settings":["Galerie-Einstellungen"],Gallery:["Galerie"],Classic:["Classic Editor"],video:["Video"],audio:["Audio"],music:["Musik"],image:["Bild"],blog:["Blog"],post:["Beitrag"],"Embedded content from %s":["Eingebetteter Inhalt von %s"],"Enter URL to embed here\u2026":["URL zum Einbetten hier eingeben\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Einbetten\u2026"],"Write title\u2026":["Schreibe einen Titel\u2026"],"Fixed Background":["Hintergrund fixiert"],"Edit image":["Bild bearbeiten"],Columns:["Spalten"],Experiments:["Experimente"],Code:["Code"],"Write code\u2026":["Schreibe deinen Code\u2026"],Categories:["Kategorien"],"Show Hierarchy":["Hierarchie anzeigen"],"Show post counts":["Anzahl der Beitr\xe4ge anzeigen"],"Categories Settings":["Kategorie-Einstellungen"],"Add text\u2026":["Text hinzuf\xfcgen\u2026"],Button:["Button"],Apply:["\xdcbernehmen"],"Text Color":["Textfarbe"],"Background Color":["Hintergrundfarbe"],"Block has been deleted or is unavailable.":["Block wurde gel\xf6scht oder ist nicht verf\xfcgbar."],"Reusable Blocks":["Wiederverwendbare Bl\xf6cke"],Cancel:["Abbrechen"],Edit:["Bearbeiten"],"Edit audio":["Audio bearbeiten"],"Write caption\u2026":["Schreibe eine Beschriftung..."],"Use URL":["URL verwenden"],Audio:["Audio"],Upload:["Hochladen"],"Additional CSS Class(es)":["Zus\xe4tzliche CSS-Klasse(n)"],"HTML Anchor":["HTML-Anker"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Diese Farbkombination kann f\xfcr Menschen schwer zu lesen sein. Versuche eine hellere Hintergrundfarbe und/oder eine dunklere Textfarbe zu verwenden."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Diese Farbkombination kann f\xfcr Menschen schwer zu lesen sein. Versuche eine dunklere Hintergrundfarbe und/oder eine hellere Textfarbe zu verwenden."],Clear:["Leeren"],"Custom color picker":["Individueller Farbw\xe4hler"],"Color: %s":["Farbe: %s"],"Full Width":["Volle Breite"],"Wide Width":["Weite Breite"],Widgets:["Widgets"],Formatting:["Formatierung"],"Common Blocks":["Allgemeine Bl\xf6cke"],"Align Right":["Rechtsb\xfcndig"],"Align Center":["Zentrieren"],"Align Left":["Linksb\xfcndig"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Druck seit 1440. Einen Schritt voraus sein, mit dem Entwicklungs-Plugin f\xfcr den neuen Block-Editor im Core."],"Add title":["Titel hier eingeben"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Im Gutenberg-Entwicklungsmodus m\xfcssen Dateien erstellt werden. F\xfchre npm install aus, um Abh\xe4ngigkeiten zu installieren, und npm run dev, um die Dateien zu erstellen und zu beobachten. Lese die Datei Beitragen (eng.) f\xfcr weitere Informationen."],Author:["Autor"],Slug:["Titelform"],Discussion:["Diskussion"],"Custom Fields":["Eigene Felder"],Excerpt:["Auszug"],Publish:["Ver\xf6ffentlichen"],Metadata:["Meta-Daten"],Save:["Speichern"],Documentation:["Dokumentation"],"Select Category":["Kategorie ausw\xe4hlen"],"(Untitled)":["(Ohne Titel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg erfordert WordPress %s oder aktueller, um korrekt zu funktionieren. Bitte aktualisiere WordPress, bevor du Gutenberg aktivierst."],"Gutenberg Team":["Gutenberg-Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["vor %s"],"Block style name must be a string.":["Block-Style Namen m\xfcssen Zeichenfolgen sein."]}},831,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );"],"You are probably offline.":["You are probably offline."],"Justify items right":["Justify items right"],"Justify items center":["Justify items centre"],"Justify items left":["Justify items left"],"Change items justification":["Change items justification"],"The media file has been replaced":["The media file has been replaced"],Replace:["Replace"],"Choose pattern":["Choose pattern"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["You are currently in edit mode. To return to the navigation mode, press Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the colour or remove the control point."],"Gradient control point at position %1$s with color code %2$s.":["Gradient control point at position %1$s with colour code %2$s."],"Preset Size":["Preset Size"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter."],"Open Media Library":["Open Media Library"],Next:["Next"],Previous:["Previous"],Finish:["Finish"],"Page %1$d of %2$d":["Page %1$d of %2$d"],"Guide controls":["Guide controls"],"Remove Control Point":["Remove Control Point"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"Make each block your own":["Make each block your own"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["In the WordPress editor, each paragraph, image or video is presented as a distinct \u201cblock\u201d of content."],"ADD MEDIA":["ADD MEDIA"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":["All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon."],"Get to know the Block Library":["Get to know the Block Library"],"Welcome Guide":["Welcome Guide"],"Enable Page Templates":["Enable Page Templates"],"Page Templates":["Page Templates"],"Enable Full Site Editing Demo Templates":["Enable Full Site Editing Demo Templates"],"Full Site Editing Demo Templates":["Full Site Editing Demo Templates"],"Welcome to the Block Editor":["Welcome to the Block Editor"],"Get started":["Get started"],inserter:["inserter"],"Post Title":["Post Title"],"Add nofollow to link":["Add nofollow to link"],"Link Settings":["Link Settings"],"Add Submenu":["Add Submenu"],"Add link\u2026":["Add link\u2026"],Dark:["Dark"],Light:["Light"],recording:["recording"],podcast:["podcast"],sound:["sound"],"Array of instance changes":["Array of instance changes"],"Current widget instance":["Current widget instance"],"Template parts to include in your templates.":["Template parts to include in your templates."],"Template parts list":["Template parts list"],"Template parts list navigation":["Template parts list navigation"],"Filter template parts list":["Filter template parts list"],"Uploaded to this template part":["Uploaded to this template part"],"Insert into template part":["Insert into template part"],"Template part archives":["Template part archives"],"No template parts found in Trash.":["No template parts found in Bin."],"No template parts found.":["No template parts found."],"Parent Template Part:":["Parent Template Part:"],"Search Template Parts":["Search Template Parts"],"All Template Parts":["All Template Parts"],"View Template Part":["View Template Part"],"Edit Template Part":["Edit Template Part"],"New Template Part":["New Template Part"],"Add New Template Part":["Add New Template Part"],"Template Part\x04Add New":["Add New"],"Admin Menu text\x04Template Parts":["Template Parts"],"Template Part":["Template Part"],"Template Parts":["Template Parts"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hooves of a goat,\nAnd breaking the golden lilies afloat\n With the dragonfly on the river."],Navigation:["Navigation"],"Loading Navigation\u2026":["Loading Navigation\u2026"],"Navigation Structure":["Navigation Structure"],"Create empty":["Create empty"],"Create from all top pages":["Create from all top pages"],"Create a Navigation from all existing pages, or create an empty one.":["Create a Navigation from all existing pages, or create an empty one."],"Navigation Link":["Navigation Link"],"(Note: many devices and browsers do not display this text.)":["(Note: many devices and browsers do not display this text.)"],"Describe the role of this image on the page.":["Describe the role of this image on the page."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Toggle between using the same value for all screen sizes or using a unique value per screen size."],"Use the same %s on all screensizes.":["Use the same %s on all screen sizes."],"Large screens":["Large screens"],"Medium screens":["Medium screens"],"Small screens":["Small screens"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["Controls the %1$s property for %2$s viewports."],Change:["Change"],"Currently selected":["Currently selected"],"Search or type url":["Search or type URL"],"Press ENTER to add this link":["Press ENTER to add this link"],"Currently selected link settings":["Currently selected link settings"],"Generic label for block inserter button\x04Add block":["Add block"],"directly add the only allowed block\x04Add %s":["Add %s"],"%s block added":["%s block added"],"Move %s":["Move %s"],"Extra Large":["Extra large"],"Block breadcrumb":["Block breadcrumb"],"Site Title":["Site title"],"Open Colors Selector":["Open colours selector"],"Overlay Gradient":["Overlay gradient"],"Templates list":["Templates list"],"Templates list navigation":["Templates list navigation"],"Filter templates list":["Filter templates list"],"Uploaded to this template":["Uploaded to this template"],"Insert into template":["Insert into template"],"Template archives":["Template archives"],"No templates found in Trash.":["No templates found in bin."],"No templates found.":["No templates found."],"Parent Template:":["Parent template:"],"Search Templates":["Search templates"],"All Templates":["All templates"],"View Template":["View template"],"Edit Template":["Edit template"],"New Template":["New template"],"Add New Template":["Add new template"],"Template\x04Add New":["Add new"],"Admin Menu text\x04Templates":["Templates"],Template:["Template"],"No matching template found":["No matching template found"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradient code: %s"],"All content copied.":["All content copied."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media upload failed. If this is a photo or a large image, please scale it down and try again."],Gradient:["Gradient"],"Gradient Presets":["Gradient presets"],"No Preview Available.":["No preview available."],Midnight:["Midnight"],"Electric grass":["Electric grass"],"Pale ocean":["Pale ocean"],"Luminous dusk":["Luminous dusk"],"Blush bordeaux":["Blush bordeaux"],"Blush light purple":["Blush light purple"],"Cool to warm spectrum":["Cool to warm spectrum"],"Very light gray to cyan bluish gray":["Very light grey to cyan bluish grey"],"Luminous vivid orange to vivid red":["Luminous vivid orange to vivid red"],"Luminous vivid amber to luminous vivid orange":["Luminous vivid amber to luminous vivid orange"],"Light green cyan to vivid green cyan":["Light green cyan to vivid green cyan"],"Vivid cyan blue to vivid purple":["Vivid cyan blue to vivid purple"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 December 2018"],"February 21, 2019":["21 February 2019"],"May 7, 2019":["7 May 2019"],"Release Date":["Release date"],"Jazz Musician":["Jazz musician"],Version:["Version"],"Six.":["Six."],"Five.":["Five."],"Four.":["Four."],"Three.":["Three."],"Two.":["Two."],"One.":["One."],"One of the hardest things to do in technology is disrupt yourself.":["One of the hardest things to do in technology is disrupt yourself."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["All around this is an almost totally black screen. Now, as the camera moves slowly towards the window, which is almost a postage stamp in the frame, other forms appear;"],"Window, very small in the distance, illuminated.":["Window, very small in the distance, illuminated."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["The wren
earns his living
noiselessly."],"Welcome to the wonderful world of blocks\u2026":["Welcome to the wonderful world of blocks\u2026"],"Snow Patrol":["Snow Patrol"],Dimensions:["Dimensions"],"Minimum height in pixels":["Minimum height in pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to action"],"In quoting others, we cite ourselves.":["In quoting others, we cite ourselves."],cite:["cite"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc appears - still, snowy and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In the village of La Mancha, the name of which I have no desire to call to mind, there lived, not long since, one of those gentlemen that keep a lance in the lance rack, an old buckler, a lean hack and a greyhound for coursing."],"Block navigation":["Block navigation"],"Enable Full Site Editing":["Enable full site editing"],"Full Site Editing":["Full site editing"],"Templates to include in your theme.":["Templates to include in your theme."],Templates:["Templates"],"Inserter Help Panel":["Inserter help panel"],"Pre-publish Checks":["Pre-publish checks"],"Please contact your site administrator to install new blocks.":["Please contact your site administrator to install new blocks."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No blocks found in your library. Please contact your site administrator to install new blocks."],"No blocks found in your library.":["No blocks found in your library."],"No blocks found in your library. These blocks can be downloaded and installed:":["No blocks found in your library. These blocks can be downloaded and installed:"],"No blocks found in your library. We did find %d block available for download.":["No blocks found in your library. We did find %d block available for download.","No blocks found in your library. We did find %d blocks available for download."],"Block previews can\u2019t load.":["Block previews can\u2019t load."],Retry:["Retry"],"Block previews can't install.":["Block previews can't install."],"Updated %s":["Updated %s"],"%d active installation":["%d active installation","%d active installations"],"This author has %d block, with an average rating of %d.":["This author has %d block, with an average rating of %d.","This author has %d blocks, with an average rating of %d."],"Authored by %s":["Authored by %s"],Add:["Add"],"%d total rating":["%d total rating","%d total ratings"],"%s out of 5 stars":["%s out of 5 stars"],"Enter Address":["Enter address"],"Pill Shape":["Pill shape"],"Logos Only":["Logos only"],"Create a block of links to your social media or external sites":["Create a block of links to your social media or external sites"],"Social links":["Social links"],"Open block navigator":["Open block navigator"],"Attachment page":["Attachment page"],Fill:["Fill"],"Link rel":["Link rel"],"Border Radius":["Border radius"],"Write gallery caption\u2026":["Write gallery caption\u2026"],"Content Blocks":["Content blocks"],"Restore the backup":["Restore the backup"],"The backup of this post in your browser is different from the version below.":["The backup of this post in your browser is different from the version below."],"Enable Block Directory search":["Enable block directory search"],"Block Directory":["Block directory"],"Unable to connect to the filesystem. Please confirm your credentials.":["Unable to connect to the file system. Please confirm your credentials."],"Sorry, you are not allowed to install blocks.":["Sorry, you are not allowed to install blocks."],"%1$d block is disabled.":["%1$d block is disabled.","%1$d blocks are disabled."],"Reverse List Numbering":["Reverse list numbering"],"Start Value":["Start value"],"Ordered List Settings":["Ordered list settings"],"Clear Media":["Clear media"],"block style\x04Circle Mask":["Circle mask"],"Default Style":["Default style"],"Not set":["Not set"],"While writing, you can press / to quickly insert new blocks.":["While writing, you can press / to quickly insert new blocks."],"Browse through the library to learn more about what each block does.":["Browse through the library to learn more about what each block does."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor."],"Version of the content block format used by the object.":["Version of the content block format used by the object."],"HTML content for the object, transformed for display.":["HTML content for the object, transformed for display."],"Content for the object, as it exists in the database.":["Content for the object, as it exists in the database."],"The content for the object.":["The content for the object."],"Change column alignment":["Change column alignment"],"Align Column Right":["Align Column Right"],"Align Column Center":["Align Column Centre"],"Align Column Left":["Align Column Left"],Color:["Colour"],"Vivid purple":["Vivid purple"],"Disable & Reload":["Disable & Reload"],"Enable & Reload":["Enable & Reload"],"A page reload is required for this change. Make sure your content is saved before reloading.":["A page reload is required for this change. Make sure your content is saved before reloading."],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Experiments Settings":["Experiments Settings"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg has some experimental features you can turn on. Simply select each one you would like to use. These features are likely to change, so it is inadvisable to use them in production."],"Enable Widgets Screen and Legacy Widget Block":["Enable Widgets Screen and Legacy Widget Block"],"Experiment settings":["Experiment settings"],"Block name name must be a string.":["Block name must be a string."],Custom:["Custom"],Draft:["Draft"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Block \"%1$s\" does not contain a style named \"%2$s.\"."],"Learn more about anchors":["Learn more about anchors"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor\". Then, you\u2019ll be able to link directly to this section of your page."],"Widget Blocks (Experimental)":["Widget Blocks (Experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Upload a video file, pick one from your media library, or add one with a URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Upload an image file, pick one from your media library, or add one with a URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Upload an audio file, pick one from your media library, or add one with a URL."],"Upload a media file or pick one from your media library.":["Upload a media file or pick one from your media library."],Skip:["Skip"],"Select a pattern to start with.":["Select a pattern to start with."],"Add a page, link, or other item to your navigation.":["Add a page, link, or other item to your navigation."],"What's this?":["What's this?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Don't let search engines follow this link."],"Provide more context about where the link goes.":["Provide more context about where the link goes."],"Title Attribute":["Title Attribute"],"SEO Settings":["SEO Settings"],Description:["Description"],"Open in new tab":["Open in new tab"],links:["links"],navigation:["navigation"],menu:["menu"],"Add a navigation block to your site.":["Add a navigation block to your site."],"Upload a file or pick one from your media library.":["Upload a file or pick one from your media library."],"Learn more about embeds":["Learn more about embeds"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Paste a link to the content you want to display on your site."],"Upload an image or video file, or pick one from your media library.":["Upload an image or video file, or pick one from your media library."],"Three columns; wide center column":["Three columns; wide centre column"],"Three columns; equal split":["Three columns; equal split"],"Two columns; two-thirds, one-third split":["Two columns; two-thirds, one-third split"],"Two columns; one-third, two-thirds split":["Two columns; one-third, two-thirds split"],"Two columns; equal split":["Two columns; equal split"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Your site doesn’t have any %s, so there’s nothing to display here at the moment."],"More tools & options":["More tools & options"],"Create Table":["Create Table"],"Insert a table for sharing data.":["Insert a table for sharing data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Ungroup"],"verb\x04Group":["Group"],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Separate multiple classes with spaces.":["Separate multiple classes with spaces."],"Move image forward":["Move image forward"],"Move image backward":["Move image backward"],"Sorry, you are not allowed to edit sidebars.":["Sorry, you are not allowed to edit sidebars."],"Sorry, you are not allowed to read sidebars.":["Sorry, you are not allowed to read sidebars."],"The sidebar\u2019s ID.":["The sidebar\u2019s ID."],"Displays a set of blocks":["Displays a set of blocks"],"Blocks Area":["Blocks Area "],"Block rendered as empty.":["Block rendered as empty."],"Inline Code":["Inline Code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Note: autoplaying videos may cause usability issues for some visitors."],"Footer section":["Footer section"],"Header section":["Header section"],"Sorting and Filtering":["Sorting and Filtering"],"Post Meta Settings":["Post Meta Settings"],"Post Content":["Post Content"],"Post Content Settings":["Post Content Settings"],"Percentage width":["Percentage width"],"Column Settings":["Column Settings"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Note: autoplaying audio may cause usability issues for some visitors."],"Block area updated.":["Block area updated."],"Block area scheduled.":["Block area scheduled."],"Block area published.":["Block area published."],"Block areas list":["Block areas list"],"Block areas list navigation":["Block areas list navigation"],"Filter block areas list":["Filter block areas list"],"No block area found.":["No block area found."],"Search Block Areas":["Search Block Areas"],"All Block Areas":["All Block Areas"],"View Block Area":["View Block Area"],"Edit Block Area":["Edit Block Area"],"New Block Area":["New Block Area"],"Add New Block Area":["Add New Block Area"],"admin menu\x04Block Areas":["Block Areas"],"post type singular name\x04Block Area (Experimental)":["Block Area (Experimental)"],"post type general name\x04Block Area (Experimental)":["Block Area (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimental custom post type that will store block areas referenced by themes."],"Widgets screen content":["Widgets screen content"],"Widgets advanced settings":["Widgets advanced settings"],"(experimental)":["(experimental)"],"Block Areas":["Block Areas"],"Widgets screen top bar":["Widgets screen top bar"],"This color combination may be hard for people to read.":["This colour combination may be hard for people to read."],"There is no poster image currently selected":["There is no poster image currently selected"],"The current poster image url is %s":["The current poster image URL is %s"],section:["section"],row:["row"],wrapper:["wrapper"],container:["container"],"A block that groups other blocks.":["A block that groups other blocks."],Group:["Group"],"Crop image to fill entire column":["Crop image to fill entire column"],"Play inline":["Play inline"],"Leave empty if the image is purely decorative.":["Leave empty if the image is purely decorative."],"Describe the purpose of the image":["Describe the purpose of the image"],"Add a block":["Add a block"],"Block vertical alignment setting label\x04Change vertical alignment":["Change vertical alignment"],"Block vertical alignment setting\x04Vertically Align Bottom":["Vertically Align Bottom"],"Block vertical alignment setting\x04Vertically Align Middle":["Vertically Align Middle"],"Replace Image":["Replace Image"],"Block vertical alignment setting\x04Vertically Align Top":["Vertically Align Top"],"Display a legacy widget.":["Display a legacy widget."],"Legacy Widget (Experimental)":["Legacy Widget (Experimental)"],"Change widget":["Change widget"],"Legacy Widget":["Legacy Widget"],"You don't have permissions to use widgets on this site.":["You don't have permissions to use widgets on this site."],"Select a legacy widget to display:":["Select a legacy widget to display:"],"There are no widgets available.":["There are no widgets available."],"Change block type or style":["Change block type or style"],"keyboard key\x04Space":["Space"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["More rich text controls"],"Search Terms":["Search Terms"],"Exit the Editor":["Exit the Editor"],"Block Manager":["Block Manager"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, you are not allowed to access widgets on this site."],"Widgets (beta)":["Widgets (beta)"],link:["link"],"Embedded content from %s can't be previewed in the editor.":["Embedded content from %s can't be previewed in the editor."],"Custom Color":["Custom Colour"],"Prompt visitors to take action with a button-style link.":["Prompt visitors to take action with a button-style link."],"Stick to the top of the blog":["Stick to the top of the blog"],"Read about permalinks":["Read about permalinks"],"The last part of the URL.":["The last part of the URL."],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["A cloud of your most used tags."],"Tag Cloud":["Tag Cloud"],Taxonomy:["Taxonomy"],"Tag Cloud Settings":["Tag Cloud Settings"],"- Select -":["- Select -"],Default:["Default"],find:["find"],"Help visitors find your content.":["Help visitors find your content."],Search:["Search"],"Add button text\u2026":["Add button text\u2026"],"Button text":["Button text"],"Optional placeholder\u2026":["Optional placeholder\u2026"],"Optional placeholder text":["Optional placeholder text"],"Add label\u2026":["Add label\u2026"],"Label text":["Label text"],"image %1$d of %2$d in gallery":["image %1$d of %2$d in gallery"],archive:["archive"],posts:["posts"],"A calendar of your site\u2019s posts.":["A calendar of your site\u2019s posts."],Calendar:["Calendar"],by:["by"],"An error has occurred, which probably means the feed is down. Try again later.":["An error has occurred, which probably means the feed is down. Try again later."],"RSS Error:":["RSS error:"],"block style\x04Default":["Default"],"Fullscreen mode deactivated":["Fullscreen mode deactivated"],"Fullscreen mode activated":["Fullscreen mode activated"],"Spotlight mode deactivated":["Spotlight mode deactivated"],"Spotlight mode activated":["Spotlight mode activated"],"Top toolbar deactivated":["Top Toolbar deactivated"],"Top toolbar activated":["Top Toolbar activated"],Back:["Back"],"Feature activated":["Feature activated"],"Feature deactivated":["Feature deactivated"],"Vertical Pos.":["Vertical Pos."],"Horizontal Pos.":["Horizontal Pos."],feed:["Feed"],atom:["Atom"],"Display entries from any RSS or Atom feed.":["Display entries from any RSS or Atom feed."],RSS:["RSS"],"Max number of words in excerpt":["Max number of words in excerpt"],"Display excerpt":["Display excerpt"],"Display date":["Display date"],"Display author":["Display author"],"RSS Settings":["RSS settings"],"Edit RSS URL":["Edit RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Content before this block will be shown in the excerpt on your archives page."],"Hide the excerpt on the full content page":["Hide the excerpt on the full content page"],"The excerpt is visible.":["The excerpt is visible."],"The excerpt is hidden.":["The excerpt is hidden."],"Sorry, this content could not be embedded.":["Sorry, this content could not be embedded."],"Embed Amazon Kindle content.":["Embed Amazon Kindle content."],ebook:["eBook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Embed Crowdsignal (formerly Polldaddy) content."],"Focal Point Picker":["Focal point picker"],Underline:["Underline"],"Attempt Block Recovery":["Attempt Block Recovery"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Content\u2026"],"button label\x04Convert to link":["Convert to link"],"button label\x04Try again":["Try again"],"Editor tips":["Editor tips"],"Block (selected)":["Block (selected)"],"Document (selected)":["Document (selected)"],"%d word":["%d word","%d words"],"Top Toolbar":["Top Toolbar"],"Link Rel":["Link Rel"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used."],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"(selected block)":["(selected block)"],"Block tools":["Block tools"],Permalink:["Permalink"],"This image has an empty alt attribute":["This image has an empty alt attribute"],"This image has an empty alt attribute; its file name is %s":["This image has an empty alt attribute; its file name is %s"],"Block area reverted to draft.":["Block area reverted to draft."],"Block area published privately.":["Block area published privately."],"No block areas found in Trash.":["No block areas found in Bin."],"Block\x04Add New":["Add New"],"add new on admin bar\x04Block Area":["Block Area"],"Link inserted.":["Link inserted."],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"%s block selected.":["%s block selected.","%s blocks selected."],Thumbnail:["Thumbnail"],"Full Size":["Full Size"],"Link selected.":["Link selected."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Block icon":["Block icon"],"Align Text Right":["Align text right"],"Align Text Center":["Align text centre"],"Align Text Left":["Align text left"],"Start writing or type / to choose a block":["Start writing or type / to choose a block"],"Empty block; start writing or type forward slash to choose a block":["Empty block; start writing or type forward slash to choose a block"],"Paragraph block":["Paragraph block"],"Page Break":["Page Break"],"Stack on mobile":["Stack on mobile"],Annotation:["Annotation"],"Drag images, upload new ones or select files from your library.":["Drag images, upload new ones or select files from your library."],"blocks\x04Most Used":["Most Used"],"imperative verb\x04Resolve":["Resolve"],"font size name\x04Huge":["Huge"],"font size name\x04Large":["Large"],"font size name\x04Medium":["Medium"],"font size name\x04Small":["Small"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Import"],"button label\x04Download":["Download"],"button label\x04Embed":["Embed"],"block title\x04Embed":["Embed"],"block title\x04Classic":["Classic"],"block style\x04Large":["Large"],"%s (opens in a new tab)":["%s (opens in a new tab)"],"Link edited.":["Link edited."],"Link removed.":["Link removed."],media:["media"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Generating preview\u2026":["Generating preview\u2026"],"Edit or update the image":["Edit or update the image"],Media:["Media"],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Document tools":["Document tools"],"Document and block tools":["Document and block tools"],"Embed a video from your media library or upload a new one.":["Embed a video from your media library or upload a new one."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insert poetry. Use special spacing formats. Or quote song lyrics."],"Add white space between blocks and customize its height.":["Add white space between blocks and customise its height."],"Insert additional custom elements with a WordPress shortcode.":["Insert additional custom elements with a WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Create a break between ideas or sections with a horizontal separator."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Give special visual emphasis to a quote from your text."],"Start with the building block of all narrative.":["Start with the building block of all narrative."],"Separate your content into a multi-page experience.":["Separate your content into a multi-page experience."],"Set media and words side-by-side for a richer layout.":["Set media and words side-by-side for a richer layout."],"Media & Text Settings":["Media & Text Settings"],"Create a bulleted or numbered list.":["Create a bulleted or numbered list."],"Display a list of your most recent comments.":["Display a list of your most recent comments."],"Insert an image to make a visual statement.":["Insert an image to make a visual statement."],"Add custom HTML code and preview it as you edit.":["Add custom HTML code and preview it as you edit."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce new sections and organise content to help visitors (and search engines) understand the structure of your content."],"Display multiple images in a rich gallery.":["Display multiple images in a rich gallery."],"Add a link to a downloadable file.":["Add a link to a downloadable file."],"Embed videos, images, tweets, audio, and other content from external sources.":["Embed videos, images, tweets, audio, and other content from external sources."],"Resize for smaller devices":["Resize for smaller devices"],"This embed may not preserve its aspect ratio when the browser is resized.":["This embed may not preserve its aspect ratio when the browser is resized."],"This embed will preserve its aspect ratio when the browser is resized.":["This embed will preserve its aspect ratio when the browser is resized."],"Embed an Animoto video.":["Embed an Animoto video."],"Embed a Vimeo video.":["Embed a Vimeo video."],"Embed Flickr content.":["Embed Flickr content."],"Embed Spotify content.":["Embed Spotify content."],"Embed SoundCloud content.":["Embed SoundCloud content."],"Embed a WordPress post.":["Embed a WordPress post."],"Embed an Instagram post.":["Embed an Instagram post."],"Embed a Facebook post.":["Embed a Facebook post."],"Embed a WordPress.tv video.":["Embed a WordPress.tv video."],"Embed a VideoPress video.":["Embed a VideoPress video."],"Embed a Tumblr post.":["Embed a Tumblr post."],"Embed a TED video.":["Embed a TED video."],"Embed Speaker Deck content.":["Embed Speaker Deck content."],"Embed a YouTube video.":["Embed a YouTube video."],"Embed SmugMug content.":["Embed SmugMug content."],"Embed Slideshare content.":["Embed Slideshare content."],"Embed Scribd content.":["Embed Scribd content."],"Embed Screencast content.":["Embed Screencast content."],"Embed ReverbNation content.":["Embed ReverbNation content."],"Embed a Reddit thread.":["Embed a Reddit thread."],"Embed Polldaddy content.":["Embed Polldaddy content."],"Embed Mixcloud content.":["Embed Mixcloud content."],"Embed a tweet.":["Embed a tweet."],"Embed Meetup.com content.":["Embed Meetup.com content."],"Embed Kickstarter content.":["Embed Kickstarter content."],"Embed Issuu content.":["Embed Issuu content."],"Embed Imgur content.":["Embed Imgur content."],"Embed Hulu content.":["Embed Hulu content."],"Embed a Dailymotion video.":["Embed a Dailymotion video."],"Embed CollegeHumor content.":["Embed CollegeHumor content."],"Embed Cloudup content.":["Embed Cloudup content."],"Add an image or video with a text overlay \u2014 great for headers.":["Add an image or video with a text overlay \u2014 great for headers."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Use the classic WordPress editor."],"Display a list of all categories.":["Display a list of all categories."],"Embed a simple audio player.":["Embed a simple audio player."],"noun\x04View":["View"],"editor button\x04Left to right":["Left to right"],"Save as Pending":["Save as Pending"],"%s address":["%s address"],"Paste or type URL":["Paste or type URL"],"Insert from URL":["Insert from URL"],"Block Navigator":["Block navigator"],Styles:["Styles"],"Advanced Panels":["Advanced Panels"],"Document Panels":["Document Panels"],General:["General"],"Open the block navigation menu.":["Open the block navigation menu."],"Work without distraction":["Work without distraction"],"Focus on one block at a time":["Focus on one block at a time"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],Options:["Options"],"(opens in a new tab)":["(opens in a new tab)"],Minutes:["Minutes"],Hours:["Hours"],Time:["Time"],Year:["Year"],Day:["Day"],December:["December"],November:["November"],October:["October"],September:["September"],August:["August"],July:["July"],June:["June"],May:["May"],April:["April"],March:["March"],February:["February"],January:["January"],Month:["Month"],Date:["Date"],"Go to the first (home) or last (end) day of a week.":["Go to the first (home) or last (end) day of a week."],"Home/End":["Home/End"],"Home and End":["Home and End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Move backward (PgUp) or forward (PgDn) by one month."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":["Move backward (up) or forward (down) by one week."],"Up and Down Arrows":["Up and Down Arrows"],"Move backward (left) or forward (right) by one day.":["Move backward (left) or forward (right) by one day."],"Left and Right Arrows":["Left and Right Arrows"],"Select the date in focus.":["Select the date in focus."],"Navigating with a keyboard":["Navigating with a keyboard"],"Click the desired day to select it.":["Click the desired day to select it."],"Click the right or left arrows to select other months in the past or the future.":["Click the right or left arrows to select other months in the past or the future."],"Click to Select":["Click to Select"],"Calendar Help":["Calendar Help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use your arrow keys to change the base colour. Move up to lighten the colour, down to darken, left to decrease saturation, and right to increase saturation."],"Choose a shade":["Choose a shade"],"Change color format":["Change colour format"],"Color value in HSL":["Colour value in HSL"],"Color value in RGB":["Colour value in RGB"],"Color value in hexadecimal":["Colour value in hexadecimal"],"RGB mode active":["RGB mode active"],"Hex color mode active":["Hex colour mode active"],"Hue/saturation/lightness mode active":["Hue/saturation/lightness mode active"],"Move the arrow left or right to change hue.":["Move the arrow left or right to change hue."],"Hue value in degrees, from 0 to 359.":["Hue value in degrees, from 0 to 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha value, from 0 (transparent) to 1 (fully opaque)."],Stripes:["Stripes"],"Your site doesn\u2019t include support for this block.":["Your site doesn\u2019t include support for this block."],"Unrecognized Block":["Unrecognised Block"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely."],"Media area":["Media area"],"Media & Text":["Media & Text"],"Show media on right":["Show media on right"],"Show media on left":["Show media on left"],"Open in New Tab":["Open in New Tab"],Cover:["Cover"],"Border Settings":["Border settings"],"Edit media":["Edit media"],Medium:["Medium"],"Paste URL or type to search":["Paste URL or type to search"],Terms:["Terms"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Take Over":["Take Over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Another user is currently working on this post, which means you cannot make changes, unless you take over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s is currently working on this post, which means you cannot make changes, unless you take over."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved."],Avatar:["Avatar"],"This post is already being edited.":["This post is already being edited."],"Someone else has taken over this post.":["Someone else has taken over this post."],"This block contains unexpected or invalid content.":["This block contains unexpected or invalid content."],"Resolve Block":["Resolve Block"],"Convert to HTML":["Convert to HTML"],"This block can only be used once.":["This block can only be used once."],"Exit Code Editor":["Exit Code Editor"],"Editing Code":["Editing Code"],"Solid Color":["Solid Colour"],"Main Color":["Main Colour"],HTML:["HTML"],"Write HTML\u2026":["Write HTML\u2026"],"Media Settings":["Media Settings"],"Overlay Color":["Overlay Colour"],Overlay:["Overlay"],"Insert Media":["Insert Media"],"Reusable block imported successfully!":["Reusable block imported successfully!"],"Invalid Reusable Block JSON file":["Invalid Reusable Block JSON file"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],Backtick:["Backtick"],Period:["Period"],Comma:["Comma"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],Current:["Current"],"After Conversion":["After Conversion"],"Change alignment":["Change alignment"],"Change text alignment":["Change text alignment"],"%d block":["%d block","%d blocks"],Escape:["Escape"],"Forward-slash":["Forward-slash"],"No archives to show.":["No archives to show."],"This file is empty.":["This file is empty."],"Sorry, this file type is not supported here.":["Sorry, this file type is not supported here."],"Manage All Reusable Blocks":["Manage All Reusable Blocks"],Title:["Title"],"Fullscreen Mode":["Fullscreen Mode"],"Beautiful landscape":["Beautiful landscape"],"Close panel":["Close panel"],"Convert to Classic Block":["Convert to Classic Block"],"Remove Poster Image":["Remove Poster Image"],"Select Poster Image":["Select Poster Image"],"Poster Image":["Poster Image"],"This block is deprecated. Please use the Columns block instead.":["This block is deprecated. Please use the Columns block instead."],"Text Columns (deprecated)":["Text Columns (deprecated)"],"Row Count":["Row Count"],"Column Count":["Column Count"],"This block is deprecated. Please use the Paragraph block instead.":["This block is deprecated. Please use the Paragraph block instead."],"Subheading (deprecated)":["Subheading (deprecated)"],blockquote:["blockquote"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Spotlight Mode":["Spotlight Mode"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Insert After":["Insert After"],"Insert Before":["Insert Before"],"Move %1$d block from position %2$d down by one place":["Move %1$d block from position %2$d down by one place","Move %1$d blocks from position %2$d down by one place"],"Move %1$d block from position %2$d up by one place":["Move %1$d block from position %2$d up by one place","Move %1$d blocks from position %2$d up by one place"],"Move %1$s block from position %2$d %3$s to position %4$d":["Move %1$s block from position %2$d %3$s to position %4$d"],movie:["movie"],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Clear selection."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Selection shortcuts":["Selection shortcuts"],"Switch between Visual Editor and Code Editor.":["Switch between Visual Editor and Code Editor."],"Navigate to the previous part of the editor (alternative).":["Navigate to the previous part of the editor (alternative)."],"Navigate to the next part of the editor (alternative).":["Navigate to the next part of the editor (alternative)."],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the settings sidebar.":["Show or hide the settings sidebar."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Keyboard Shortcuts":["Keyboard Shortcuts"],"Thanks for testing Gutenberg!":["Thanks for testing Gutenberg Editor!"],"Help build Gutenberg":["Help build Gutenberg Editor"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository."],"The WordPress community":["The WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sure, the full-wide image can be pretty big. But sometimes the image is worth it."],"Accessibility is important — don’t forget image alt attribute":["Accessibility is important — don’t forget image alt attribute"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylised one. All of these options are available in the inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:"],"Visual Editing":["Visual Editing"],"And Lists like this one of course :)":["And Lists like this one of course :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout blocks, like Buttons, Hero Images, Separators, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Embeds, like YouTube, Tweets, or other WordPress posts."],Galleries:["Galleries"],"Images & Videos":["Images & Videos"],"Text & Headings":["Text & Headings"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing."],"The Inserter Tool":["The Inserter Tool"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before."],"A Picture is Worth a Thousand Words":["A Picture is Worth a Thousand Words"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Headings are separate blocks as well, which helps with the outline and organisation of your content."],"... like this one, which is right aligned.":["... like this one, which is right aligned."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting."],"Of Mountains & Printing Presses":["Of Mountains & Printing Presses"],"Welcome to the Gutenberg Editor":["Welcome to the Gutenberg Editor"],"block name\x04More":["More"],"button to expand options\x04More":["More"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Alt Text (Alternative Text)":["Alt Text (alternative text)"],"Reusable Block":["Reusable Block"],"Unique identifier for the object.":["Unique identifier for the object."],"Untitled Reusable Block":["Untitled Reusable Block"],Small:["Small"],"(%s: %s)":["(%s: %s)"],Reusable:["Reusable"],"(current %s: %s)":["(current %s: %s)"],"Remove from Reusable Blocks":["Remove from Reusable Blocks"],"Add to Reusable Blocks":["Add to Reusable Blocks"],"Keep as HTML":["Keep as HTML"],"Edit URL":["Edit URL"],"Color Settings":["Colour Settings"],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Editor publish":["Editor publish"],Muted:["Muted"],"Video Settings":["Video Settings"],"recent comments":["recent comments"],"Latest Comments":["Latest Comments"],"Display Excerpt":["Display Excerpt"],"Display Date":["Display Date"],"Display Avatar":["Display Avatar"],"Latest Comments Settings":["Latest Comments Settings"],"Number of Comments":["Number of Comments"],"Background Opacity":["Background Opacity"],Auto:["Auto"],Preload:["Preload"],"Audio Settings":["Audio Settings"],"Display a monthly archive of your posts.":["Display a monthly archive of your posts."],"Display as Dropdown":["Display as Dropdown"],"Show Post Counts":["Show Post Counts"],"Archives Settings":["Archives Settings"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg/"],Support:["Support"],"No comments to show.":["No comments to show."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["Select Post"],"Select Week":["Select Week"],"Select Day":["Select Day"],"Select Month":["Select Month"],"Select Year":["Select Year"],Archives:["Archives"],"Very dark gray":["Very dark grey"],"Cyan bluish gray":["Cyan bluish grey"],"Very light gray":["Very light grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Inline image":["Inline image"],"Available block types":["Available block types"],"Transform To:":["Transform To:"],"Remove Block":["Remove Block","Remove Blocks"],"Open publish panel":["Open publish panel"],Dots:["Dots"],"Wide Line":["Wide Line"],Large:["Large"],"Show download button":["Show download button"],"Download button settings":["Download button settings"],"Link To":["Link To"],"Text link settings":["Text link settings"],pdf:["pdf"],document:["document"],"Copy URL":["Copy URL"],"Write file name\u2026":["Write file name\u2026"],"Edit file":["Edit file"],File:["File"],"A single column within a columns block.":["A single column within a columns block."],Column:["Column"],Outline:["Outline"],Loop:["Loop"],Autoplay:["Autoplay"],"Playback Controls":["Playback Controls"],"Close dialog":["Close dialogue"],"Sorry, this file type is not permitted for security reasons.":["Sorry, this file type is not permitted for security reasons."],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you."],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Replace image":["Replace image"],"Remove image":["Remove image"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"This file exceeds the maximum upload size for this site.":["This file exceeds the maximum upload size for this site."],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],Autosaving:["Autosaving"],"Enter URL here\u2026":["Enter URL here\u2026"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Insert a table \u2014 perfect for sharing charts and data.":["Insert a table \u2014 perfect for sharing charts and data."],"Fixed width table cells":["Fixed width table cells"],"Table Settings":["Table Settings"],"Add text that respects your spacing and tabs, and also allows styling.":["Add text that respects your spacing and tabs, and also allows styling."],"Display a list of your most recent posts.":["Display a list of your most recent posts."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like."],"Error loading block: %s":["Error loading block: %s"],"Unknown error":["Unknown error"],"Embed Handler":["Embed Handler"],"term\x04Remove %s":["Remove %s"],"Copy the permalink":["Copy the permalink"],"Permalink copied":["Permalink copied"],"Height in pixels":["Height in pixels"],"Spacer Settings":["Spacer Settings"],Spacer:["Spacer"],"Toggle to show a large initial letter.":["Toggle to show a large initial letter."],"Showing large initial letter.":["Showing large initial letter."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Color code: %s":["Colour code: %s"],"Skip to the selected block":["Skip to the selected block"],"Publish\u2026":["Publish\u2026"],"Schedule\u2026":["Schedule\u2026"],"Edit post permalink":["Edit post permalink"],"Show Block Settings":["Show Block Settings"],"Hide Block Settings":["Hide Block Settings"],"Block settings closed":["Block settings closed"],"Close plugin":["Close plugin"],"Link settings":["Link settings"],Unlink:["Unlink"],"Page break":["Page break"],pagination:["pagination"],"next page":["next page"],"Image Size":["Image Size"],Height:["Height"],Width:["Width"],"Image Dimensions":["Image Dimensions"],"Thumbnails are not cropped.":["Thumbnails are not cropped."],"Thumbnails are cropped to align.":["Thumbnails are cropped to align."],"Media Library":["Media Library"],Advanced:["Advanced"],"Add item":["Add item"],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn\u2019t match the template assigned to your post type.":["The content of your post doesn\u2019t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Statistics":["Document Statistics"],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],Scheduled:["Scheduled"],"Scheduling\u2026":["Scheduling\u2026"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],Plugins:["Plugins"],"Custom Size":["Custom Size"],"Layout Elements":["Layout Elements"],"term\x04%s removed":["%s removed"],"term\x04%s added":["%s added"],"imperative verb\x04Preview":["Preview"],"Block deleted.":["Block deleted."],"Block updated.":["Block updated."],"Block created.":["Block created."],"Trashing failed":["Binning failed"],"Updating failed.":["Updating failed."],"Scheduling failed.":["Scheduling failed."],"Publishing failed.":["Publishing failed."],"View Post":["View Post"],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Document Outline":["Document Outline"],Paragraphs:["Paragraphs"],Headings:["Headings"],Words:["Words"],"Content structure":["Content structure"],Public:["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protected with a password you choose. Only those with the password can view this post."],"Password Protected":["Password Protected"],"Only visible to site admins and editors.":["Only visible to site admins and editors."],Private:["Private"],"Visible to everyone.":["Visible to everyone."],"Post Visibility":["Post Visibility"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Move to Trash":["Move to Bin"],"Parent Term":["Parent Term"],"Parent Category":["Parent Category"],"Add new term":["Add new term"],"Add new category":["Add new category"],Term:["Term"],Tag:["Tag"],"Add New Term":["Add New Term"],"Add New Tag":["Add New Tag"],"Switch to Draft":["Switch to Draft"],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],Immediately:["Immediately"],"Save Draft":["Save Draft"],Saving:["Saving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Are you ready to publish?":["Are you ready to publish?"],"Copy Link":["Copy Link"],"What\u2019s next?":["What\u2019s next?"],"is now live.":["is now live."],Published:["Published"],Schedule:["Schedule"],Update:["Update"],"Submit for Review":["Submit for Review"],"Updating\u2026":["Updating\u2026"],"Publishing\u2026":["Publishing\u2026"],"Allow Pingbacks & Trackbacks":["Allow Pingbacks & Trackbacks"],"Permalink:":["Permalink:"],"Pending Review":["Pending Review"],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suggestion:"],"Post Format":["Post Format"],Chat:["Chat"],Status:["Status"],Standard:["Standard"],Aside:["Aside"],"Set Featured Image":["Set Featured Image"],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"Allow Comments":["Allow Comments"],"Template:":["Template:"],"no parent":["no parent"],"no title":["no title"],Order:["Order"],"No blocks found.":["No blocks found."],"%d result found.":["%d result found.","%d results found."],Saved:["Saved"],Embeds:["Embeds"],Blocks:["Blocks"],"Search for a block":["Search for a block"],"Add block":["Add block"],"Add %s":["Add %s"],"Copy Error":["Copy Error"],"Copy Post Text":["Copy Post Text"],"Attempt Recovery":["Attempt Recovery"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],Undo:["Undo"],Redo:["Redo"],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Block Styles":["Block Styles"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it."],"Convert to Regular Block":["Convert to Regular Block"],"More options":["More options"],"Edit visually":["Edit visually"],Duplicate:["Duplicate"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Block %1$s is at the beginning of the content and can\u2019t be moved %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Block %1$s is at the end of the content and can\u2019t be moved %2$s"],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Edit as HTML":["Edit as HTML"],"Convert to Blocks":["Convert to Blocks"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"Transform into:":["Transform into:"],Remove:["Remove"],"Find original":["Find original"],"Copy All Content":["Copy All Content"],"Copied!":["Copied!"],"Additional settings are now available in the Editor block settings sidebar":["Additional settings are now available in the Editor block settings sidebar"],Visibility:["Visibility"],"Status & Visibility":["Status & Visibility"],"Page Attributes":["Page Attributes"],Block:["Block"],Document:["Document"],"Featured Image":["Featured Image"],"Close settings":["Close settings"],"Editor content":["Editor content"],Tools:["Tools"],Editor:["Editor"],"Code Editor":["Code Editor"],"Visual Editor":["Visual Editor"],"Editor top bar":["Editor top bar"],Settings:["Settings"],Reset:["Reset"],"Dismiss this notice":["Dismiss this notice"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Drop files to upload":["Drop files to upload"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["An unknown error occurred."],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"(no title)":["(no title)"],URL:["URL"],Submit:["Submit"],Close:["Close"],"Insert link":["Insert link"],"Edit link":["Edit link"],Link:["Link"],Strikethrough:["Strikethrough"],Italic:["Italic"],Bold:["Bold"],"Remove link":["Remove link"],"Number of items":["Number of items"],All:["All"],Category:["Category"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Oldest to Newest"],"Newest to Oldest":["Newest to Oldest"],"Order by":["Order by"],Select:["Select"],"Select or Upload Media":["Select or Upload Media"],Video:["Video"],"Edit video":["Edit video"],"Write\u2026":["Write\u2026"],poetry:["poetry"],Verse:["Verse"],"New Column":["New Column"],"Delete Column":["Delete Column"],"Add Column After":["Add Column After"],"Add Column Before":["Add Column Before"],"Delete Row":["Delete Row"],"Add Row After":["Add Row After"],"Add Row Before":["Add Row Before"],"Edit table":["Edit table"],Table:["Table"],"Write subheading\u2026":["Write subheading\u2026"],"Write shortcode here\u2026":["Write shortcode here\u2026"],Shortcode:["Shortcode"],divider:["divider"],"horizontal-line":["horizontal-line"],Separator:["Separator"],Quote:["Quote"],"Write citation\u2026":["Write citation\u2026"],"Write quote\u2026":["Write quote\u2026"],Pullquote:["Pullquote"],"Write preformatted text\u2026":["Write preformatted text\u2026"],Preformatted:["Preformatted"],text:["text"],Paragraph:["Paragraph"],"Font Size":["Font Size"],"Drop Cap":["Drop Cap"],"Text Settings":["Text Settings"],"Read more":["Read more"],"Write list\u2026":["Write list\u2026"],"numbered list":["numbered list"],"ordered list":["ordered list"],"bullet list":["bullet list"],"Indent list item":["Indent list item"],"Outdent list item":["Outdent list item"],"Convert to ordered list":["Convert to ordered list"],"Convert to unordered list":["Convert to unordered list"],List:["List"],"recent posts":["recent posts"],"No posts found.":["No posts found."],"Latest Posts":["Latest Posts"],"Display post date":["Display post date"],"Grid view":["Grid view"],"List view":["List view"],photo:["photo"],"Image Settings":["Image Settings"],Image:["Image"],Preview:["Preview"],embed:["embed"],"Custom HTML":["Custom HTML"],subtitle:["subtitle"],title:["title"],Heading:["Heading"],"Write heading\u2026":["Write heading\u2026"],"Heading %d":["Heading %d"],Level:["Level"],"Heading Settings":["Heading Settings"],photos:["photos"],images:["images"],"Remove Image":["Remove Image"],None:["None"],"Media File":["Media File"],"Attachment Page":["Attachment Page"],"Crop Images":["Crop Images"],"Gallery Settings":["Gallery Settings"],Gallery:["Gallery"],Classic:["Classic Edit"],video:["video"],audio:["audio"],music:["music"],image:["image"],blog:["blog"],post:["post"],"Embedded content from %s":["Embedded content from %s"],"Enter URL to embed here\u2026":["Enter URL to embed here\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Embedding\u2026"],"Write title\u2026":["Write title\u2026"],"Fixed Background":["Fixed Background"],"Edit image":["Edit image"],Columns:["Columns"],Experiments:["Experiments"],Code:["Code"],"Write code\u2026":["Write code\u2026"],Categories:["Categories"],"Show Hierarchy":["Show Hierarchy"],"Show post counts":["Show post counts"],"Categories Settings":["Categories Settings"],"Add text\u2026":["Add text\u2026"],Button:["Button"],Apply:["Apply"],"Text Color":["Text Colour"],"Background Color":["Background Colour"],"Block has been deleted or is unavailable.":["Block has been deleted or is unavailable."],"Reusable Blocks":["Reusable Blocks"],Cancel:["Cancel"],Edit:["Edit"],"Edit audio":["Edit audio"],"Write caption\u2026":["Write caption\u2026"],"Use URL":["Use URL"],Audio:["Audio"],Upload:["Upload"],"Additional CSS Class(es)":["Additional CSS Class(es)"],"HTML Anchor":["HTML Anchor"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["This colour combination may be hard for people to read. Try using a brighter background colour and/or a darker text colour."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["This colour combination may be hard for people to read. Try using a darker background colour and/or a brighter text colour."],Clear:["Clear"],"Custom color picker":["Custom colour picker"],"Color: %s":["Colour: %s"],"Full Width":["Full width"],"Wide Width":["Wide width"],Widgets:["Widgets"],Formatting:["Formatting"],"Common Blocks":["Common Blocks"],"Align Right":["Align right"],"Align Center":["Align centre"],"Align Left":["Align left"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Printing since 1440. This is the development plugin for the new block editor in core."],"Add title":["Add title"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information."],Author:["Author"],Slug:["Slug"],Discussion:["Discussion"],"Custom Fields":["Custom Fields"],Excerpt:["Excerpt"],Publish:["Publish"],Metadata:["Metadata"],Save:["Save"],Documentation:["Documentation"],"Select Category":["Select Category"],"(Untitled)":["(Untitled)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg."],"Gutenberg Team":["Gutenberg Editor Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s ago"],"Block style name must be a string.":["Block style name must be a string."]}},832,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );"],"You are probably offline.":["You are probably offline."],"Justify items right":["Justify items right"],"Justify items center":[],"Justify items left":["Justify items left"],"Change items justification":["Change items justification"],"The media file has been replaced":["The media file has been replaced"],Replace:["Replace"],"Choose pattern":["Choose pattern"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["You are currently in edit mode. To return to the navigation mode, press Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":["Preset Size"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter."],"Open Media Library":["Open Media Library"],Next:["Next"],Previous:["Previous"],Finish:["Finish"],"Page %1$d of %2$d":["Page %1$d of %2$d"],"Guide controls":["Guide controls"],"Remove Control Point":["Remove Control Point"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":["Make each block your own"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content."],"ADD MEDIA":["ADD MEDIA"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":["All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon."],"Get to know the Block Library":["Get to know the Block Library"],"Welcome Guide":["Welcome Guide"],"Enable Page Templates":["Enable Page Templates"],"Page Templates":["Page Templates"],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":["Get started"],inserter:["inserter"],"Post Title":["Post Title"],"Add nofollow to link":["Add nofollow to link"],"Link Settings":["Link Settings"],"Add Submenu":["Add Submenu"],"Add link\u2026":["Add link\u2026"],Dark:["Dark"],Light:["Light"],recording:["recording"],podcast:["podcast"],sound:["sound"],"Array of instance changes":["Array of instance changes"],"Current widget instance":["Current widget instance"],"Template parts to include in your templates.":["Template parts to include in your templates."],"Template parts list":["Template parts list"],"Template parts list navigation":["Template parts list navigation"],"Filter template parts list":["Filter template parts list"],"Uploaded to this template part":["Uploaded to this template part"],"Insert into template part":["Insert into template part"],"Template part archives":["Template part archives"],"No template parts found in Trash.":["No template parts found in Trash."],"No template parts found.":["No template parts found."],"Parent Template Part:":["Parent Template Part:"],"Search Template Parts":["Search Template Parts"],"All Template Parts":["All Template Parts"],"View Template Part":["View Template Part"],"Edit Template Part":["Edit Template Part"],"New Template Part":["New Template Part"],"Add New Template Part":["Add New Template Part"],"Template Part\x04Add New":["Add New"],"Admin Menu text\x04Template Parts":["Template Parts"],"Template Part":["Template Part"],"Template Parts":["Template Parts"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river."],Navigation:["Navigation"],"Loading Navigation\u2026":["Loading Navigation\u2026"],"Navigation Structure":["Navigation Structure"],"Create empty":["Create empty"],"Create from all top pages":["Create from all top pages"],"Create a Navigation from all existing pages, or create an empty one.":["Create a Navigation from all existing pages, or create an empty one."],"Navigation Link":["Navigation Link"],"(Note: many devices and browsers do not display this text.)":["(Note: many devices and browsers do not display this text.)"],"Describe the role of this image on the page.":["Describe the role of this image on the page."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Toggle between using the same value for all screen sizes or using a unique value per screen size."],"Use the same %s on all screensizes.":["Use the same %s on all screen sizes."],"Large screens":["Large screens"],"Medium screens":["Medium screens"],"Small screens":["Small screens"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["Controls the %1$s property for %2$s viewports."],Change:["Change"],"Currently selected":["Currently selected"],"Search or type url":["Search or type URL"],"Press ENTER to add this link":["Press ENTER to add this link"],"Currently selected link settings":["Currently selected link settings"],"Generic label for block inserter button\x04Add block":["Add block"],"directly add the only allowed block\x04Add %s":["Add %s"],"%s block added":["%s block added"],"Move %s":["Move %s"],"Extra Large":["Extra Large"],"Block breadcrumb":["Block breadcrumb"],"Site Title":["Site Title"],"Open Colors Selector":["Open Colours Selector"],"Overlay Gradient":["Overlay Gradient"],"Templates list":["Templates list"],"Templates list navigation":["Templates list navigation"],"Filter templates list":["Filter templates list"],"Uploaded to this template":["Uploaded to this template"],"Insert into template":["Insert into template"],"Template archives":["Template archives"],"No templates found in Trash.":["No templates found in Trash."],"No templates found.":["No templates found."],"Parent Template:":["Parent Template:"],"Search Templates":["Search Templates"],"All Templates":["All Templates"],"View Template":["View Template"],"Edit Template":["Edit Template"],"New Template":["New Template"],"Add New Template":["Add New Template"],"Template\x04Add New":["Add New"],"Admin Menu text\x04Templates":["Templates"],Template:["Template"],"No matching template found":["No matching template found"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradient code: %s"],"All content copied.":["All content copied."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media upload failed. If this is a photo or a large image, please scale it down and try again."],Gradient:["Gradient"],"Gradient Presets":["Gradient Presets"],"No Preview Available.":["No Preview Available."],Midnight:["Midnight"],"Electric grass":["Electric grass"],"Pale ocean":["Pale ocean"],"Luminous dusk":["Luminous dusk"],"Blush bordeaux":["Blush bordeaux"],"Blush light purple":["Blush light purple"],"Cool to warm spectrum":["Cool to warm spectrum"],"Very light gray to cyan bluish gray":["Very light grey to cyan bluish grey"],"Luminous vivid orange to vivid red":["Luminous vivid orange to vivid red"],"Luminous vivid amber to luminous vivid orange":["Luminous vivid amber to luminous vivid orange"],"Light green cyan to vivid green cyan":["Light green cyan to vivid green cyan"],"Vivid cyan blue to vivid purple":["Vivid cyan blue to vivid purple"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["December 6, 2018"],"February 21, 2019":["February 21, 2019"],"May 7, 2019":["May 7, 2019"],"Release Date":["Release Date"],"Jazz Musician":["Jazz Musician"],Version:["Version"],"Six.":["Six."],"Five.":["Five."],"Four.":["Four."],"Three.":["Three."],"Two.":["Two."],"One.":["One."],"One of the hardest things to do in technology is disrupt yourself.":["One of the hardest things to do in technology is disrupt yourself."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;"],"Window, very small in the distance, illuminated.":["Window, very small in the distance, illuminated."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["The wren
Earns his living
Noiselessly."],"Welcome to the wonderful world of blocks\u2026":["Welcome to the wonderful world of blocks\u2026"],"Snow Patrol":["Snow Patrol"],Dimensions:["Dimensions"],"Minimum height in pixels":["Minimum height in pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to Action"],"In quoting others, we cite ourselves.":["In quoting others, we cite ourselves."],cite:["cite"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc appears\u2014still, snowy, and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing."],"Block navigation":["Block navigation"],"Enable Full Site Editing":["Enable Full Site Editing"],"Full Site Editing":["Full Site Editing"],"Templates to include in your theme.":["Templates to include in your theme."],Templates:["Templates"],"Inserter Help Panel":["Inserter Help Panel"],"Pre-publish Checks":["Pre-publish Checks"],"Please contact your site administrator to install new blocks.":["Please contact your site administrator to install new blocks."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No blocks found in your library. Please contact your site administrator to install new blocks."],"No blocks found in your library.":["No blocks found in your library."],"No blocks found in your library. These blocks can be downloaded and installed:":["No blocks found in your library. These blocks can be downloaded and installed:"],"No blocks found in your library. We did find %d block available for download.":["No blocks found in your library. We did find %d block available for download.","No blocks found in your library. We did find %d blocks available for download."],"Block previews can\u2019t load.":["Block previews can\u2019t load."],Retry:["Retry"],"Block previews can't install.":["Block previews can't install."],"Updated %s":["Updated %s"],"%d active installation":["%d active installation","%d active installations"],"This author has %d block, with an average rating of %d.":["This author has %d block, with an average rating of %d.","This author has %d blocks, with an average rating of %d."],"Authored by %s":["Authored by %s"],Add:["Add"],"%d total rating":["%d total rating","%d total ratings"],"%s out of 5 stars":["%s out of 5 stars"],"Enter Address":["Enter Address"],"Pill Shape":["Pill Shape"],"Logos Only":["Logos Only"],"Create a block of links to your social media or external sites":["Create a block of links to your social media or external sites"],"Social links":["Social links"],"Open block navigator":["Open block navigator"],"Attachment page":["Attachment page"],Fill:["Fill"],"Link rel":["Link rel"],"Border Radius":["Border Radius"],"Write gallery caption\u2026":["Write gallery caption\u2026"],"Content Blocks":["Content Blocks"],"Restore the backup":["Restore the backup"],"The backup of this post in your browser is different from the version below.":["The backup of this post in your browser is different from the version below."],"Enable Block Directory search":["Enable Block Directory search"],"Block Directory":["Block Directory"],"Unable to connect to the filesystem. Please confirm your credentials.":["Unable to connect to the filesystem. Please confirm your credentials."],"Sorry, you are not allowed to install blocks.":["Sorry, you are not allowed to install blocks."],"%1$d block is disabled.":["%1$d block is disabled.","%1$d blocks are disabled."],"Reverse List Numbering":["Reverse List Numbering"],"Start Value":["Start Value"],"Ordered List Settings":["Ordered List Settings"],"Clear Media":["Clear Media"],"block style\x04Circle Mask":["Circle Mask"],"Default Style":["Default Style"],"Not set":["Not set"],"While writing, you can press / to quickly insert new blocks.":["While writing, you can press / to quickly insert new blocks."],"Browse through the library to learn more about what each block does.":["Browse through the library to learn more about what each block does."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor."],"Version of the content block format used by the object.":["Version of the content block format used by the object."],"HTML content for the object, transformed for display.":["HTML content for the object, transformed for display."],"Content for the object, as it exists in the database.":["Content for the object, as it exists in the database."],"The content for the object.":["The content for the object."],"Change column alignment":["Change column alignment"],"Align Column Right":["Align Column Right"],"Align Column Center":["Align Column Centre"],"Align Column Left":["Align Column Left"],Color:["Colour"],"Vivid purple":["Vivid purple"],"Disable & Reload":["Disable & Reload"],"Enable & Reload":["Enable & Reload"],"A page reload is required for this change. Make sure your content is saved before reloading.":["A page reload is required for this change. Make sure your content is saved before reloading."],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Experiments Settings":["Experiments Settings"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production."],"Enable Widgets Screen and Legacy Widget Block":["Enable Widgets Screen and Legacy Widget Block"],"Experiment settings":["Experiment settings"],"Block name name must be a string.":["Block name must be a string."],Custom:["Custom"],Draft:["Draft"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Block \"%1$s\" does not contain a style named \"%2$s.\"."],"Learn more about anchors":["Learn more about anchors"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page."],"Widget Blocks (Experimental)":["Widget Blocks (Experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Upload a video file, pick one from your media library, or add one with a URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Upload an image file, pick one from your media library, or add one with a URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Upload an audio file, pick one from your media library, or add one with a URL."],"Upload a media file or pick one from your media library.":["Upload a media file or pick one from your media library."],Skip:["Skip"],"Select a pattern to start with.":["Select a pattern to start with."],"Add a page, link, or other item to your navigation.":["Add a page, link, or other item to your navigation."],"What's this?":["What's this?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Don't let search engines follow this link."],"Provide more context about where the link goes.":["Provide more context about where the link goes."],"Title Attribute":["Title Attribute"],"SEO Settings":["SEO Settings"],Description:["Description"],"Open in new tab":["Open in new tab"],links:["links"],navigation:["navigation"],menu:["menu"],"Add a navigation block to your site.":["Add a navigation block to your site."],"Upload a file or pick one from your media library.":["Upload a file or pick one from your media library."],"Learn more about embeds":["Learn more about embeds"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Paste a link to the content you want to display on your site."],"Upload an image or video file, or pick one from your media library.":["Upload an image or video file, or pick one from your media library."],"Three columns; wide center column":["Three columns; wide centre column"],"Three columns; equal split":["Three columns; equal split"],"Two columns; two-thirds, one-third split":["Two columns; two-thirds, one-third split"],"Two columns; one-third, two-thirds split":["Two columns; one-third, two-thirds split"],"Two columns; equal split":["Two columns; equal split"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Your site doesn’t have any %s, so there’s nothing to display here at the moment."],"More tools & options":["More tools & options"],"Create Table":["Create Table"],"Insert a table for sharing data.":["Insert a table for sharing data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Ungroup"],"verb\x04Group":["Group"],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Separate multiple classes with spaces.":["Separate multiple classes with spaces."],"Move image forward":["Move image forward"],"Move image backward":["Move image backward"],"Sorry, you are not allowed to edit sidebars.":["Sorry, you are not allowed to edit sidebars."],"Sorry, you are not allowed to read sidebars.":["Sorry, you are not allowed to read sidebars."],"The sidebar\u2019s ID.":["The sidebar\u2019s ID."],"Displays a set of blocks":["Displays a set of blocks"],"Blocks Area":["Blocks Area"],"Block rendered as empty.":["Block rendered as empty."],"Inline Code":["Inline Code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Note: autoplaying videos may cause usability issues for some visitors."],"Footer section":["Footer section"],"Header section":["Header section"],"Sorting and Filtering":["Sorting and Filtering"],"Post Meta Settings":["Post Meta Settings"],"Post Content":["Post Content"],"Post Content Settings":["Post Content Settings"],"Percentage width":["Percentage width"],"Column Settings":["Column Settings"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Note: autoplaying audio may cause usability issues for some visitors."],"Block area updated.":["Block area updated."],"Block area scheduled.":["Block area scheduled."],"Block area published.":["Block area published."],"Block areas list":["Block areas list"],"Block areas list navigation":["Block areas list navigation"],"Filter block areas list":["Filter block areas list"],"No block area found.":["No block area found."],"Search Block Areas":["Search Block Areas"],"All Block Areas":["All Block Areas"],"View Block Area":["View Block Area"],"Edit Block Area":["Edit Block Area"],"New Block Area":["New Block Area"],"Add New Block Area":["Add New Block Area"],"admin menu\x04Block Areas":["Block Areas"],"post type singular name\x04Block Area (Experimental)":["Block Area (Experimental)"],"post type general name\x04Block Area (Experimental)":["Block Area (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimental custom post type that will store block areas referenced by themes."],"Widgets screen content":["Widgets screen content"],"Widgets advanced settings":["Widgets advanced settings"],"(experimental)":["(experimental)"],"Block Areas":["Block Areas"],"Widgets screen top bar":["Widgets screen top bar"],"This color combination may be hard for people to read.":["This colour combination may be hard for people to read."],"There is no poster image currently selected":["There is no poster image currently selected"],"The current poster image url is %s":["The current poster image URL is %s"],section:["section"],row:["row"],wrapper:["wrapper"],container:["container"],"A block that groups other blocks.":["A block that groups other blocks."],Group:["Group"],"Crop image to fill entire column":["Crop image to fill entire column"],"Play inline":["Play inline"],"Leave empty if the image is purely decorative.":["Leave empty if the image is purely decorative."],"Describe the purpose of the image":["Describe the purpose of the image"],"Add a block":["Add a block"],"Block vertical alignment setting label\x04Change vertical alignment":["Change vertical alignment"],"Block vertical alignment setting\x04Vertically Align Bottom":["Vertically Align Bottom"],"Block vertical alignment setting\x04Vertically Align Middle":["Vertically Align Middle"],"Replace Image":["Replace Image"],"Block vertical alignment setting\x04Vertically Align Top":["Vertically Align Top"],"Display a legacy widget.":["Display a legacy widget."],"Legacy Widget (Experimental)":["Legacy Widget (Experimental)"],"Change widget":["Change widget"],"Legacy Widget":["Legacy Widget"],"You don't have permissions to use widgets on this site.":["You don't have permissions to use widgets on this site."],"Select a legacy widget to display:":["Select a legacy widget to display:"],"There are no widgets available.":["There are no widgets available."],"Change block type or style":["Change block type or style"],"keyboard key\x04Space":["Space"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["More rich text controls"],"Search Terms":["Search Terms"],"Exit the Editor":["Exit the Editor"],"Block Manager":["Block Manager"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, you are not allowed to access widgets on this site."],"Widgets (beta)":["Widgets (beta)"],link:["link"],"Embedded content from %s can't be previewed in the editor.":["Embedded content from %s can't be previewed in the editor."],"Custom Color":["Custom Colour"],"Prompt visitors to take action with a button-style link.":["Prompt visitors to take action with a button-style link."],"Stick to the top of the blog":["Stick to the top of the blog"],"Read about permalinks":["Read about permalinks"],"The last part of the URL.":["The last part of the URL."],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["A cloud of your most used tags."],"Tag Cloud":["Tag Cloud"],Taxonomy:["Taxonomy"],"Tag Cloud Settings":["Tag Cloud Settings"],"- Select -":["- Select -"],Default:["Default"],find:["find"],"Help visitors find your content.":["Help visitors find your content."],Search:["Search"],"Add button text\u2026":["Add button text\u2026"],"Button text":["Button text"],"Optional placeholder\u2026":["Optional placeholder\u2026"],"Optional placeholder text":["Optional placeholder text"],"Add label\u2026":["Add label\u2026"],"Label text":["Label text"],"image %1$d of %2$d in gallery":["image %1$d of %2$d in gallery"],archive:["archive"],posts:["posts"],"A calendar of your site\u2019s posts.":["A calendar of your site\u2019s posts."],Calendar:["Calendar"],by:["by"],"An error has occurred, which probably means the feed is down. Try again later.":["An error has occurred, which probably means the feed is down. Try again later."],"RSS Error:":["RSS error:"],"block style\x04Default":["Default"],"Fullscreen mode deactivated":["Fullscreen mode deactivated"],"Fullscreen mode activated":["Fullscreen mode activated"],"Spotlight mode deactivated":["Spotlight mode deactivated"],"Spotlight mode activated":["Spotlight mode activated"],"Top toolbar deactivated":["Top Toolbar deactivated"],"Top toolbar activated":["Top Toolbar activated"],Back:["Back"],"Feature activated":["Feature activated"],"Feature deactivated":["Feature deactivated"],"Vertical Pos.":["Vertical Pos."],"Horizontal Pos.":["Horizontal Pos."],feed:["Feed"],atom:["Atom"],"Display entries from any RSS or Atom feed.":["Display entries from any RSS or Atom feed."],RSS:["RSS"],"Max number of words in excerpt":["Max number of words in excerpt"],"Display excerpt":["Display excerpt"],"Display date":["Display date"],"Display author":["Display author"],"RSS Settings":["RSS settings"],"Edit RSS URL":["Edit RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Content before this block will be shown in the excerpt on your archives page."],"Hide the excerpt on the full content page":["Hide the excerpt on the full content page"],"The excerpt is visible.":["The excerpt is visible."],"The excerpt is hidden.":["The excerpt is hidden."],"Sorry, this content could not be embedded.":["Sorry, this content could not be embedded."],"Embed Amazon Kindle content.":["Embed Amazon Kindle content."],ebook:["eBook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Embed Crowdsignal (formerly Polldaddy) content."],"Focal Point Picker":["Focal point picker"],Underline:["Underline"],"Attempt Block Recovery":["Attempt Block Recovery"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Content\u2026"],"button label\x04Convert to link":["Convert to link"],"button label\x04Try again":["Try again"],"Editor tips":["Editor tips"],"Block (selected)":["Block (selected)"],"Document (selected)":["Document (selected)"],"%d word":["%d word","%d words"],"Top Toolbar":["Top Toolbar"],"Link Rel":["Link Rel"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used."],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"(selected block)":["(selected block)"],"Block tools":["Block tools"],Permalink:["Permalink"],"This image has an empty alt attribute":["This image has an empty alt attribute"],"This image has an empty alt attribute; its file name is %s":["This image has an empty alt attribute; its file name is %s"],"Block area reverted to draft.":["Block area reverted to draft."],"Block area published privately.":["Block area published privately."],"No block areas found in Trash.":["No block areas found in Trash."],"Block\x04Add New":["Add New"],"add new on admin bar\x04Block Area":["Block Area"],"Link inserted.":["Link inserted."],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"%s block selected.":["%s block selected.","%s blocks selected."],Thumbnail:["Thumbnail"],"Full Size":["Full Size"],"Link selected.":["Link selected."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Block icon":["Block icon"],"Align Text Right":["Align Text Right"],"Align Text Center":["Align Text Centre"],"Align Text Left":["Align Text Left"],"Start writing or type / to choose a block":["Start writing or type / to choose a block"],"Empty block; start writing or type forward slash to choose a block":["Empty block; start writing or type forward slash to choose a block"],"Paragraph block":["Paragraph block"],"Page Break":["Page Break"],"Stack on mobile":["Stack on mobile"],Annotation:["Annotation"],"Drag images, upload new ones or select files from your library.":["Drag images, upload new ones or select files from your library."],"blocks\x04Most Used":["Most Used"],"imperative verb\x04Resolve":["Resolve"],"font size name\x04Huge":["Huge"],"font size name\x04Large":["Large"],"font size name\x04Medium":["Medium"],"font size name\x04Small":["Small"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Import"],"button label\x04Download":["Download"],"button label\x04Embed":["Embed"],"block title\x04Embed":["Embed"],"block title\x04Classic":["Classic"],"block style\x04Large":["Large"],"%s (opens in a new tab)":["%s (opens in a new tab)"],"Link edited.":["Link edited."],"Link removed.":["Link removed."],media:["media"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Generating preview\u2026":["Generating preview\u2026"],"Edit or update the image":["Edit or update the image"],Media:["Media"],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Document tools":["Document tools"],"Document and block tools":["Document and block tools"],"Embed a video from your media library or upload a new one.":["Embed a video from your media library or upload a new one."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insert poetry. Use special spacing formats. Or quote song lyrics."],"Add white space between blocks and customize its height.":["Add white space between blocks and customize its height."],"Insert additional custom elements with a WordPress shortcode.":["Insert additional custom elements with a WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Create a break between ideas or sections with a horizontal separator."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Give special visual emphasis to a quote from your text."],"Start with the building block of all narrative.":["Start with the building block of all narrative."],"Separate your content into a multi-page experience.":["Separate your content into a multi-page experience."],"Set media and words side-by-side for a richer layout.":["Set media and words side-by-side for a richer layout."],"Media & Text Settings":["Media & Text Settings"],"Create a bulleted or numbered list.":["Create a bulleted or numbered list."],"Display a list of your most recent comments.":["Display a list of your most recent comments."],"Insert an image to make a visual statement.":["Insert an image to make a visual statement."],"Add custom HTML code and preview it as you edit.":["Add custom HTML code and preview it as you edit."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content."],"Display multiple images in a rich gallery.":["Display multiple images in a rich gallery."],"Add a link to a downloadable file.":["Add a link to a downloadable file."],"Embed videos, images, tweets, audio, and other content from external sources.":["Embed videos, images, tweets, audio, and other content from external sources."],"Resize for smaller devices":["Resize for smaller devices"],"This embed may not preserve its aspect ratio when the browser is resized.":["This embed may not preserve its aspect ratio when the browser is resized."],"This embed will preserve its aspect ratio when the browser is resized.":["This embed will preserve its aspect ratio when the browser is resized."],"Embed an Animoto video.":["Embed an Animoto video."],"Embed a Vimeo video.":["Embed a Vimeo video."],"Embed Flickr content.":["Embed Flickr content."],"Embed Spotify content.":["Embed Spotify content."],"Embed SoundCloud content.":["Embed SoundCloud content."],"Embed a WordPress post.":["Embed a WordPress post."],"Embed an Instagram post.":["Embed an Instagram post."],"Embed a Facebook post.":["Embed a Facebook post."],"Embed a WordPress.tv video.":["Embed a WordPress.tv video."],"Embed a VideoPress video.":["Embed a VideoPress video."],"Embed a Tumblr post.":["Embed a Tumblr post."],"Embed a TED video.":["Embed a TED video."],"Embed Speaker Deck content.":["Embed Speaker Deck content."],"Embed a YouTube video.":["Embed a YouTube video."],"Embed SmugMug content.":["Embed SmugMug content."],"Embed Slideshare content.":["Embed Slideshare content."],"Embed Scribd content.":["Embed Scribd content."],"Embed Screencast content.":["Embed Screencast content."],"Embed ReverbNation content.":["Embed ReverbNation content."],"Embed a Reddit thread.":["Embed a Reddit thread."],"Embed Polldaddy content.":["Embed Polldaddy content."],"Embed Mixcloud content.":["Embed Mixcloud content."],"Embed a tweet.":["Embed a tweet."],"Embed Meetup.com content.":["Embed Meetup.com content."],"Embed Kickstarter content.":["Embed Kickstarter content."],"Embed Issuu content.":["Embed Issuu content."],"Embed Imgur content.":["Embed Imgur content."],"Embed Hulu content.":["Embed Hulu content."],"Embed a Dailymotion video.":["Embed a Dailymotion video."],"Embed CollegeHumor content.":["Embed CollegeHumor content."],"Embed Cloudup content.":["Embed Cloudup content."],"Add an image or video with a text overlay \u2014 great for headers.":["Add an image or video with a text overlay \u2014 great for headers."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Use the classic WordPress editor."],"Display a list of all categories.":["Display a list of all categories."],"Embed a simple audio player.":["Embed a simple audio player."],"noun\x04View":["View"],"editor button\x04Left to right":["Left to right"],"Save as Pending":["Save as Pending"],"%s address":["%s address"],"Paste or type URL":["Paste or type URL"],"Insert from URL":["Insert from URL"],"Block Navigator":["Block Navigator"],Styles:["Styles"],"Advanced Panels":["Advanced Panels"],"Document Panels":["Document Panels"],General:["General"],"Open the block navigation menu.":["Open the block navigation menu."],"Work without distraction":["Work without distraction"],"Focus on one block at a time":["Focus on one block at a time"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],Options:["Options"],"(opens in a new tab)":["(opens in a new tab)"],Minutes:["Minutes"],Hours:["Hours"],Time:["Time"],Year:["Year"],Day:["Day"],December:["December"],November:["November"],October:["October"],September:["September"],August:["August"],July:["July"],June:["June"],May:["May"],April:["April"],March:["March"],February:["February"],January:["January"],Month:["Month"],Date:["Date"],"Go to the first (home) or last (end) day of a week.":["Go to the first (home) or last (end) day of a week."],"Home/End":["Home/End"],"Home and End":["Home and End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Move backward (PgUp) or forward (PgDn) by one month."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":["Move backward (up) or forward (down) by one week."],"Up and Down Arrows":["Up and Down Arrows"],"Move backward (left) or forward (right) by one day.":["Move backward (left) or forward (right) by one day."],"Left and Right Arrows":["Left and Right Arrows"],"Select the date in focus.":["Select the date in focus."],"Navigating with a keyboard":["Navigating with a keyboard"],"Click the desired day to select it.":["Click the desired day to select it."],"Click the right or left arrows to select other months in the past or the future.":["Click the right or left arrows to select other months in the past or the future."],"Click to Select":["Click to Select"],"Calendar Help":["Calendar Help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use your arrow keys to change the base colour. Move up to lighten the colour, down to darken, left to decrease saturation, and right to increase saturation."],"Choose a shade":["Choose a shade"],"Change color format":["Change colour format"],"Color value in HSL":["Colour value in HSL"],"Color value in RGB":["Colour value in RGB"],"Color value in hexadecimal":["Colour value in hexadecimal"],"RGB mode active":["RGB mode active"],"Hex color mode active":["Hex colour mode active"],"Hue/saturation/lightness mode active":["Hue/saturation/lightness mode active"],"Move the arrow left or right to change hue.":["Move the arrow left or right to change hue."],"Hue value in degrees, from 0 to 359.":["Hue value in degrees, from 0 to 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha value, from 0 (transparent) to 1 (fully opaque)."],Stripes:["Stripes"],"Your site doesn\u2019t include support for this block.":["Your site doesn\u2019t include support for this block."],"Unrecognized Block":["Unrecognized Block"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely."],"Media area":["Media area"],"Media & Text":["Media & Text"],"Show media on right":["Show media on right"],"Show media on left":["Show media on left"],"Open in New Tab":["Open in New Tab"],Cover:["Cover"],"Border Settings":["Border Settings"],"Edit media":["Edit media"],Medium:["Medium"],"Paste URL or type to search":["Paste URL or type to search"],Terms:["Terms"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Take Over":["Take Over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Another user is currently working on this post, which means you cannot make changes, unless you take over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s is currently working on this post, which means you cannot make changes, unless you take over."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved."],Avatar:["Avatar"],"This post is already being edited.":["This post is already being edited."],"Someone else has taken over this post.":["Someone else has taken over this post."],"This block contains unexpected or invalid content.":["This block contains unexpected or invalid content."],"Resolve Block":["Resolve Block"],"Convert to HTML":["Convert to HTML"],"This block can only be used once.":["This block can only be used once."],"Exit Code Editor":["Exit Code Editor"],"Editing Code":["Editing Code"],"Solid Color":["Solid Colour"],"Main Color":["Main Colour"],HTML:["HTML"],"Write HTML\u2026":["Write HTML\u2026"],"Media Settings":["Media Settings"],"Overlay Color":["Overlay Colour"],Overlay:["Overlay"],"Insert Media":["Insert Media"],"Reusable block imported successfully!":["Reusable block imported successfully!"],"Invalid Reusable Block JSON file":["Invalid Reusable Block JSON file"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],Backtick:["Backtick"],Period:["Period"],Comma:["Comma"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],Current:["Current"],"After Conversion":["After Conversion"],"Change alignment":["Change alignment"],"Change text alignment":["Change text alignment"],"%d block":["%d block","%d blocks"],Escape:["Escape"],"Forward-slash":["Forward-slash"],"No archives to show.":["No archives to show."],"This file is empty.":["This file is empty."],"Sorry, this file type is not supported here.":["Sorry, this file type is not supported here."],"Manage All Reusable Blocks":["Manage All Reusable Blocks"],Title:["Title"],"Fullscreen Mode":["Fullscreen Mode"],"Beautiful landscape":["Beautiful landscape"],"Close panel":["Close panel"],"Convert to Classic Block":["Convert to Classic Block"],"Remove Poster Image":["Remove Poster Image"],"Select Poster Image":["Select Poster Image"],"Poster Image":["Poster Image"],"This block is deprecated. Please use the Columns block instead.":["This block is deprecated. Please use the Columns block instead."],"Text Columns (deprecated)":["Text Columns (deprecated)"],"Row Count":["Row Count"],"Column Count":["Column Count"],"This block is deprecated. Please use the Paragraph block instead.":["This block is deprecated. Please use the Paragraph block instead."],"Subheading (deprecated)":["Subheading (deprecated)"],blockquote:["blockquote"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Spotlight Mode":["Spotlight Mode"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Insert After":["Insert After"],"Insert Before":["Insert Before"],"Move %1$d block from position %2$d down by one place":["Move %1$d block from position %2$d down by one place","Move %1$d blocks from position %2$d down by one place"],"Move %1$d block from position %2$d up by one place":["Move %1$d block from position %2$d up by one place","Move %1$d blocks from position %2$d up by one place"],"Move %1$s block from position %2$d %3$s to position %4$d":["Move %1$s block from position %2$d %3$s to position %4$d"],movie:["movie"],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Clear selection."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Selection shortcuts":["Selection shortcuts"],"Switch between Visual Editor and Code Editor.":["Switch between Visual Editor and Code Editor."],"Navigate to the previous part of the editor (alternative).":["Navigate to the previous part of the editor (alternative)."],"Navigate to the next part of the editor (alternative).":["Navigate to the next part of the editor (alternative)."],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the settings sidebar.":["Show or hide the settings sidebar."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Keyboard Shortcuts":["Keyboard Shortcuts"],"Thanks for testing Gutenberg!":["Thanks for testing Gutenberg!"],"Help build Gutenberg":["Help build Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository."],"The WordPress community":["The WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sure, the full-wide image can be pretty big. But sometimes the image is worth it."],"Accessibility is important — don’t forget image alt attribute":["Accessibility is important — don’t forget image alt attribute"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:"],"Visual Editing":["Visual Editing"],"And Lists like this one of course :)":["And Lists like this one of course :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout blocks, like Buttons, Hero Images, Separators, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Embeds, like YouTube, Tweets, or other WordPress posts."],Galleries:["Galleries"],"Images & Videos":["Images & Videos"],"Text & Headings":["Text & Headings"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing."],"The Inserter Tool":["The Inserter Tool"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before."],"A Picture is Worth a Thousand Words":["A Picture is Worth a Thousand Words"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Headings are separate blocks as well, which helps with the outline and organization of your content."],"... like this one, which is right aligned.":["... like this one, which is right aligned."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting."],"Of Mountains & Printing Presses":["Of Mountains & Printing Presses"],"Welcome to the Gutenberg Editor":["Welcome to the Gutenberg Editor"],"block name\x04More":["More"],"button to expand options\x04More":["More"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Alt Text (Alternative Text)":["Alt Text (alternative text)"],"Reusable Block":["Reusable Block"],"Unique identifier for the object.":["Unique identifier for the object."],"Untitled Reusable Block":["Untitled Reusable Block"],Small:["Small"],"(%s: %s)":["(%s: %s)"],Reusable:["Reusable"],"(current %s: %s)":["(current %s: %s)"],"Remove from Reusable Blocks":["Remove from Reusable Blocks"],"Add to Reusable Blocks":["Add to Reusable Blocks"],"Keep as HTML":["Keep as HTML"],"Edit URL":["Edit URL"],"Color Settings":["Colour Settings"],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Editor publish":["Editor publish"],Muted:["Muted"],"Video Settings":["Video Settings"],"recent comments":["recent comments"],"Latest Comments":["Latest Comments"],"Display Excerpt":["Display Excerpt"],"Display Date":["Display Date"],"Display Avatar":["Display Avatar"],"Latest Comments Settings":["Latest Comments Settings"],"Number of Comments":["Number of Comments"],"Background Opacity":["Background Opacity"],Auto:["Auto"],Preload:["Preload"],"Audio Settings":["Audio Settings"],"Display a monthly archive of your posts.":["Display a monthly archive of your posts."],"Display as Dropdown":["Display as Dropdown"],"Show Post Counts":["Show Post Counts"],"Archives Settings":["Archives Settings"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg/"],Support:["Support"],"No comments to show.":["No comments to show."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["Select Post"],"Select Week":["Select Week"],"Select Day":["Select Day"],"Select Month":["Select Month"],"Select Year":["Select Year"],Archives:["Archives"],"Very dark gray":["Very dark grey"],"Cyan bluish gray":["Cyan bluish grey"],"Very light gray":["Very light grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Inline image":["Inline image"],"Available block types":["Available block types"],"Transform To:":["Transform To:"],"Remove Block":["Remove Block","Remove Blocks"],"Open publish panel":["Open publish panel"],Dots:["Dots"],"Wide Line":["Wide Line"],Large:["Large"],"Show download button":["Show download button"],"Download button settings":["Download button settings"],"Link To":["Link To"],"Text link settings":["Text link settings"],pdf:["pdf"],document:["document"],"Copy URL":["Copy URL"],"Write file name\u2026":["Write file name\u2026"],"Edit file":["Edit file"],File:["File"],"A single column within a columns block.":["A single column within a columns block."],Column:["Column"],Outline:["Outline"],Loop:["Loop"],Autoplay:["Autoplay"],"Playback Controls":["Playback Controls"],"Close dialog":["Close dialogue"],"Sorry, this file type is not permitted for security reasons.":["Sorry, this file type is not permitted for security reasons."],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you."],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Replace image":["Replace image"],"Remove image":["Remove image"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"This file exceeds the maximum upload size for this site.":["This file exceeds the maximum upload size for this site."],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],Autosaving:["Autosaving"],"Enter URL here\u2026":["Enter URL here\u2026"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Insert a table \u2014 perfect for sharing charts and data.":["Insert a table \u2014 perfect for sharing charts and data."],"Fixed width table cells":["Fixed width table cells"],"Table Settings":["Table Settings"],"Add text that respects your spacing and tabs, and also allows styling.":["Add text that respects your spacing and tabs, and also allows styling."],"Display a list of your most recent posts.":["Display a list of your most recent posts."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like."],"Error loading block: %s":["Error loading block: %s"],"Unknown error":["Unknown error"],"Embed Handler":["Embed Handler"],"term\x04Remove %s":["Remove %s"],"Copy the permalink":["Copy the permalink"],"Permalink copied":["Permalink copied"],"Height in pixels":["Height in pixels"],"Spacer Settings":["Spacer Settings"],Spacer:["Spacer"],"Toggle to show a large initial letter.":["Toggle to show a large initial letter."],"Showing large initial letter.":["Showing large initial letter."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Color code: %s":["Colour code: %s"],"Skip to the selected block":["Skip to the selected block"],"Publish\u2026":["Publish\u2026"],"Schedule\u2026":["Schedule\u2026"],"Edit post permalink":["Edit post permalink"],"Show Block Settings":["Show Block Settings"],"Hide Block Settings":["Hide Block Settings"],"Block settings closed":["Block settings closed"],"Close plugin":["Close plugin"],"Link settings":["Link settings"],Unlink:["Unlink"],"Page break":["Page break"],pagination:["pagination"],"next page":["next page"],"Image Size":["Image Size"],Height:["Height"],Width:["Width"],"Image Dimensions":["Image Dimensions"],"Thumbnails are not cropped.":["Thumbnails are not cropped."],"Thumbnails are cropped to align.":["Thumbnails are cropped to align."],"Media Library":["Media Library"],Advanced:["Advanced"],"Add item":["Add item"],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn\u2019t match the template assigned to your post type.":["The content of your post doesn\u2019t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Statistics":["Document Statistics"],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],Scheduled:["Scheduled"],"Scheduling\u2026":["Scheduling\u2026"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],Plugins:["Plugins"],"Custom Size":["Custom Size"],"Layout Elements":["Layout Elements"],"term\x04%s removed":["%s removed"],"term\x04%s added":["%s added"],"imperative verb\x04Preview":["Preview"],"Block deleted.":["Block deleted."],"Block updated.":["Block updated."],"Block created.":["Block created."],"Trashing failed":["Trashing failed"],"Updating failed.":["Updating failed."],"Scheduling failed.":["Scheduling failed."],"Publishing failed.":["Publishing failed."],"View Post":["View Post"],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Document Outline":["Document Outline"],Paragraphs:["Paragraphs"],Headings:["Headings"],Words:["Words"],"Content structure":["Content structure"],Public:["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protected with a password you choose. Only those with the password can view this post."],"Password Protected":["Password Protected"],"Only visible to site admins and editors.":["Only visible to site admins and editors."],Private:["Private"],"Visible to everyone.":["Visible to everyone."],"Post Visibility":["Post Visibility"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Move to Trash":["Move to Trash"],"Parent Term":["Parent Term"],"Parent Category":["Parent Category"],"Add new term":["Add new term"],"Add new category":["Add new category"],Term:["Term"],Tag:["Tag"],"Add New Term":["Add New Term"],"Add New Tag":["Add New Tag"],"Switch to Draft":["Switch to Draft"],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],Immediately:["Immediately"],"Save Draft":["Save Draft"],Saving:["Saving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Are you ready to publish?":["Are you ready to publish?"],"Copy Link":["Copy Link"],"What\u2019s next?":["What\u2019s next?"],"is now live.":["is now live."],Published:["Published"],Schedule:["Schedule"],Update:["Update"],"Submit for Review":["Submit for Review"],"Updating\u2026":["Updating\u2026"],"Publishing\u2026":["Publishing\u2026"],"Allow Pingbacks & Trackbacks":["Allow Pingbacks & Trackbacks"],"Permalink:":["Permalink:"],"Pending Review":["Pending Review"],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suggestion:"],"Post Format":["Post Format"],Chat:["Chat"],Status:["Status"],Standard:["Standard"],Aside:["Aside"],"Set Featured Image":["Set Featured Image"],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"Allow Comments":["Allow Comments"],"Template:":["Template:"],"no parent":["no parent"],"no title":["no title"],Order:["Order"],"No blocks found.":["No blocks found."],"%d result found.":["%d result found.","%d results found."],Saved:["Saved"],Embeds:["Embeds"],Blocks:["Blocks"],"Search for a block":["Search for a block"],"Add block":["Add block"],"Add %s":["Add %s"],"Copy Error":["Copy Error"],"Copy Post Text":["Copy Post Text"],"Attempt Recovery":["Attempt Recovery"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],Undo:["Undo"],Redo:["Redo"],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Block Styles":["Block Styles"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it."],"Convert to Regular Block":["Convert to Regular Block"],"More options":["More options"],"Edit visually":["Edit visually"],Duplicate:["Duplicate"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Block %1$s is at the beginning of the content and can\u2019t be moved %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Block %1$s is at the end of the content and can\u2019t be moved %2$s"],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Edit as HTML":["Edit as HTML"],"Convert to Blocks":["Convert to Blocks"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"Transform into:":["Transform into:"],Remove:["Remove"],"Find original":["Find original"],"Copy All Content":["Copy All Content"],"Copied!":["Copied!"],"Additional settings are now available in the Editor block settings sidebar":["Additional settings are now available in the Editor block settings sidebar"],Visibility:["Visibility"],"Status & Visibility":["Status & Visibility"],"Page Attributes":["Page Attributes"],Block:["Block"],Document:["Document"],"Featured Image":["Featured Image"],"Close settings":["Close settings"],"Editor content":["Editor content"],Tools:["Tools"],Editor:["Editor"],"Code Editor":["Code Editor"],"Visual Editor":["Visual Editor"],"Editor top bar":["Editor top bar"],Settings:["Settings"],Reset:["Reset"],"Dismiss this notice":["Dismiss this notice"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Drop files to upload":["Drop files to upload"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["An unknown error occurred."],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"(no title)":["(no title)"],URL:["URL"],Submit:["Submit"],Close:["Close"],"Insert link":["Insert link"],"Edit link":["Edit link"],Link:["Link"],Strikethrough:["Strikethrough"],Italic:["Italic"],Bold:["Bold"],"Remove link":["Remove link"],"Number of items":["Number of items"],All:["All"],Category:["Category"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Oldest to Newest"],"Newest to Oldest":["Newest to Oldest"],"Order by":["Order by"],Select:["Select"],"Select or Upload Media":["Select or Upload Media"],Video:["Video"],"Edit video":["Edit video"],"Write\u2026":["Write\u2026"],poetry:["poetry"],Verse:["Verse"],"New Column":["New Column"],"Delete Column":["Delete Column"],"Add Column After":["Add Column After"],"Add Column Before":["Add Column Before"],"Delete Row":["Delete Row"],"Add Row After":["Add Row After"],"Add Row Before":["Add Row Before"],"Edit table":["Edit table"],Table:["Table"],"Write subheading\u2026":["Write subheading\u2026"],"Write shortcode here\u2026":["Write shortcode here\u2026"],Shortcode:["Shortcode"],divider:["divider"],"horizontal-line":["horizontal-line"],Separator:["Separator"],Quote:["Quote"],"Write citation\u2026":["Write citation\u2026"],"Write quote\u2026":["Write quote\u2026"],Pullquote:["Pullquote"],"Write preformatted text\u2026":["Write preformatted text\u2026"],Preformatted:["Preformatted"],text:["text"],Paragraph:["Paragraph"],"Font Size":["Font Size"],"Drop Cap":["Drop Cap"],"Text Settings":["Text Settings"],"Read more":["Read more"],"Write list\u2026":["Write list\u2026"],"numbered list":["numbered list"],"ordered list":["ordered list"],"bullet list":["bullet list"],"Indent list item":["Indent list item"],"Outdent list item":["Outdent list item"],"Convert to ordered list":["Convert to ordered list"],"Convert to unordered list":["Convert to unordered list"],List:["List"],"recent posts":["recent posts"],"No posts found.":["No posts found."],"Latest Posts":["Latest Posts"],"Display post date":["Display post date"],"Grid view":["Grid view"],"List view":["List view"],photo:["photo"],"Image Settings":["Image Settings"],Image:["Image"],Preview:["Preview"],embed:["embed"],"Custom HTML":["Custom HTML"],subtitle:["subtitle"],title:["title"],Heading:["Heading"],"Write heading\u2026":["Write heading\u2026"],"Heading %d":["Heading %d"],Level:["Level"],"Heading Settings":["Heading Settings"],photos:["photos"],images:["images"],"Remove Image":["Remove Image"],None:["None"],"Media File":["Media File"],"Attachment Page":["Attachment Page"],"Crop Images":["Crop Images"],"Gallery Settings":["Gallery Settings"],Gallery:["Gallery"],Classic:["Classic"],video:["video"],audio:["audio"],music:["music"],image:["image"],blog:["blog"],post:["post"],"Embedded content from %s":["Embedded content from %s"],"Enter URL to embed here\u2026":["Enter URL to embed here\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Embedding\u2026"],"Write title\u2026":["Write title\u2026"],"Fixed Background":["Fixed Background"],"Edit image":["Edit image"],Columns:["Columns"],Experiments:["Experiments"],Code:["Code"],"Write code\u2026":["Write code\u2026"],Categories:["Categories"],"Show Hierarchy":["Show Hierarchy"],"Show post counts":["Show post counts"],"Categories Settings":["Categories Settings"],"Add text\u2026":["Add text\u2026"],Button:["Button"],Apply:["Apply"],"Text Color":["Text Colour"],"Background Color":["Background Colour"],"Block has been deleted or is unavailable.":["Block has been deleted or is unavailable."],"Reusable Blocks":["Reusable Blocks"],Cancel:["Cancel"],Edit:["Edit"],"Edit audio":["Edit audio"],"Write caption\u2026":["Write caption\u2026"],"Use URL":["Use URL"],Audio:["Audio"],Upload:["Upload"],"Additional CSS Class(es)":["Additional CSS Class(es)"],"HTML Anchor":["HTML Anchor"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["This colour combination may be hard for people to read. Try using a brighter background colour and/or a darker text colour."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["This colour combination may be hard for people to read. Try using a darker background colour and/or a brighter text colour."],Clear:["Clear"],"Custom color picker":["Custom colour picker"],"Color: %s":["Colour: %s"],"Full Width":["Full Width"],"Wide Width":["Wide Width"],Widgets:["Widgets"],Formatting:["Formatting"],"Common Blocks":["Common Blocks"],"Align Right":["Align Right"],"Align Center":["Align Centre"],"Align Left":["Align Left"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Printing since 1440. This is the development plugin for the new block editor in core."],"Add title":["Add title"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information."],Author:["Author"],Slug:["Slug"],Discussion:["Discussion"],"Custom Fields":["Custom Fields"],Excerpt:["Excerpt"],Publish:["Publish"],Metadata:["Metadata"],Save:["Save"],Documentation:["Documentation"],"Select Category":["Select Category"],"(Untitled)":["(Untitled)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg."],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s ago"],"Block style name must be a string.":["Block style name must be a string."]}},833,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );"],"You are probably offline.":["You are probably offline."],"Justify items right":["Justify items right"],"Justify items center":["Justify items centre"],"Justify items left":["Justify items left"],"Change items justification":["Change items justification"],"The media file has been replaced":["The media file has been replaced"],Replace:["Replace"],"Choose pattern":["Choose pattern"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["You are currently in edit mode. To return to the navigation mode, press Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the colour or remove the control point."],"Gradient control point at position %1$s with color code %2$s.":["Gradient control point at position %1$s with colour code %2$s."],"Preset Size":["Preset Size"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter."],"Open Media Library":["Open Media Library"],Next:["Next"],Previous:["Previous"],Finish:["Finish"],"Page %1$d of %2$d":["Page %1$d of %2$d"],"Guide controls":["Guide controls"],"Remove Control Point":["Remove Control Point"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"Make each block your own":["Make each block your own"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["In the WordPress editor, each paragraph, image or video is presented as a distinct \u201cblock\u201d of content."],"ADD MEDIA":["ADD MEDIA"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":["All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon."],"Get to know the Block Library":["Get to know the Block Library"],"Welcome Guide":["Welcome Guide"],"Enable Page Templates":["Enable Page Templates"],"Page Templates":["Page Templates"],"Enable Full Site Editing Demo Templates":["Enable Full Site Editing Demo Templates"],"Full Site Editing Demo Templates":["Full Site Editing Demo Templates"],"Welcome to the Block Editor":["Welcome to the Block Editor"],"Get started":["Get started"],inserter:["inserter"],"Post Title":["Post Title"],"Add nofollow to link":["Add nofollow to link"],"Link Settings":["Link Settings"],"Add Submenu":["Add Submenu"],"Add link\u2026":["Add link\u2026"],Dark:["Dark"],Light:["Light"],recording:["recording"],podcast:["podcast"],sound:["sound"],"Array of instance changes":["Array of instance changes"],"Current widget instance":["Current widget instance"],"Template parts to include in your templates.":["Template parts to include in your templates."],"Template parts list":["Template parts list"],"Template parts list navigation":["Template parts list navigation"],"Filter template parts list":["Filter template parts list"],"Uploaded to this template part":["Uploaded to this template part"],"Insert into template part":["Insert into template part"],"Template part archives":["Template part archives"],"No template parts found in Trash.":["No template parts found in Bin."],"No template parts found.":["No template parts found."],"Parent Template Part:":["Parent Template Part:"],"Search Template Parts":["Search Template Parts"],"All Template Parts":["All Template Parts"],"View Template Part":["View Template Part"],"Edit Template Part":["Edit Template Part"],"New Template Part":["New Template Part"],"Add New Template Part":["Add New Template Part"],"Template Part\x04Add New":["Add New"],"Admin Menu text\x04Template Parts":["Template Parts"],"Template Part":["Template Part"],"Template Parts":["Template Parts"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hooves of a goat,\nAnd breaking the golden lilies afloat\n With the dragonfly on the river."],Navigation:["Navigation"],"Loading Navigation\u2026":["Loading Navigation\u2026"],"Navigation Structure":["Navigation Structure"],"Create empty":["Create empty"],"Create from all top pages":["Create from all top pages"],"Create a Navigation from all existing pages, or create an empty one.":["Create a Navigation from all existing pages, or create an empty one."],"Navigation Link":["Navigation Link"],"(Note: many devices and browsers do not display this text.)":["(Note: many devices and browsers do not display this text.)"],"Describe the role of this image on the page.":["Describe the role of this image on the page."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Toggle between using the same value for all screen sizes or using a unique value per screen size."],"Use the same %s on all screensizes.":["Use the same %s on all screen sizes."],"Large screens":["Large screens"],"Medium screens":["Medium screens"],"Small screens":["Small screens"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["Controls the %1$s property for %2$s viewports."],Change:["Change"],"Currently selected":["Currently selected"],"Search or type url":["Search or type URL"],"Press ENTER to add this link":["Press ENTER to add this link"],"Currently selected link settings":["Currently selected link settings"],"Generic label for block inserter button\x04Add block":["Add block"],"directly add the only allowed block\x04Add %s":["Add %s"],"%s block added":["%s block added"],"Move %s":["Move %s"],"Extra Large":["Extra large"],"Block breadcrumb":["Block breadcrumb"],"Site Title":["Site title"],"Open Colors Selector":["Open colours selector"],"Overlay Gradient":["Overlay gradient"],"Templates list":["Templates list"],"Templates list navigation":["Templates list navigation"],"Filter templates list":["Filter templates list"],"Uploaded to this template":["Uploaded to this template"],"Insert into template":["Insert into template"],"Template archives":["Template archives"],"No templates found in Trash.":["No templates found in bin."],"No templates found.":["No templates found."],"Parent Template:":["Parent template:"],"Search Templates":["Search templates"],"All Templates":["All templates"],"View Template":["View template"],"Edit Template":["Edit template"],"New Template":["New template"],"Add New Template":["Add new template"],"Template\x04Add New":["Add new"],"Admin Menu text\x04Templates":["Templates"],Template:["Template"],"No matching template found":["No matching template found"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradient code: %s"],"All content copied.":["All content copied."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media upload failed. If this is a photo or a large image, please scale it down and try again."],Gradient:["Gradient"],"Gradient Presets":["Gradient presets"],"No Preview Available.":["No preview available."],Midnight:["Midnight"],"Electric grass":["Electric grass"],"Pale ocean":["Pale ocean"],"Luminous dusk":["Luminous dusk"],"Blush bordeaux":["Blush bordeaux"],"Blush light purple":["Blush light purple"],"Cool to warm spectrum":["Cool to warm spectrum"],"Very light gray to cyan bluish gray":["Very light grey to cyan bluish grey"],"Luminous vivid orange to vivid red":["Luminous vivid orange to vivid red"],"Luminous vivid amber to luminous vivid orange":["Luminous vivid amber to luminous vivid orange"],"Light green cyan to vivid green cyan":["Light green cyan to vivid green cyan"],"Vivid cyan blue to vivid purple":["Vivid cyan blue to vivid purple"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 December 2018"],"February 21, 2019":["21 February 2019"],"May 7, 2019":["7 May 2019"],"Release Date":["Release date"],"Jazz Musician":["Jazz musician"],Version:["Version"],"Six.":["Six."],"Five.":["Five."],"Four.":["Four."],"Three.":["Three."],"Two.":["Two."],"One.":["One."],"One of the hardest things to do in technology is disrupt yourself.":["One of the hardest things to do in technology is disrupt yourself."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["All around this is an almost totally black screen. Now, as the camera moves slowly towards the window, which is almost a postage stamp in the frame, other forms appear;"],"Window, very small in the distance, illuminated.":["Window, very small in the distance, illuminated."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["The wren
earns his living
noiselessly."],"Welcome to the wonderful world of blocks\u2026":["Welcome to the wonderful world of blocks\u2026"],"Snow Patrol":["Snow Patrol"],Dimensions:["Dimensions"],"Minimum height in pixels":["Minimum height in pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to action"],"In quoting others, we cite ourselves.":["In quoting others, we cite ourselves."],cite:["cite"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc appears - still, snowy and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In the village of La Mancha, the name of which I have no desire to call to mind, there lived, not long since, one of those gentlemen that keep a lance in the lance rack, an old buckler, a lean hack and a greyhound for coursing."],"Block navigation":["Block navigation"],"Enable Full Site Editing":["Enable full site editing"],"Full Site Editing":["Full site editing"],"Templates to include in your theme.":["Templates to include in your theme."],Templates:["Templates"],"Inserter Help Panel":["Inserter help panel"],"Pre-publish Checks":["Pre-publish checks"],"Please contact your site administrator to install new blocks.":["Please contact your site administrator to install new blocks."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No blocks found in your library. Please contact your site administrator to install new blocks."],"No blocks found in your library.":["No blocks found in your library."],"No blocks found in your library. These blocks can be downloaded and installed:":["No blocks found in your library. These blocks can be downloaded and installed:"],"No blocks found in your library. We did find %d block available for download.":["No blocks found in your library. We did find %d block available for download.","No blocks found in your library. We did find %d blocks available for download."],"Block previews can\u2019t load.":["Block previews can\u2019t load."],Retry:["Retry"],"Block previews can't install.":["Block previews can't install."],"Updated %s":["Updated %s"],"%d active installation":["%d active installation","%d active installations"],"This author has %d block, with an average rating of %d.":["This author has %d block, with an average rating of %d.","This author has %d blocks, with an average rating of %d."],"Authored by %s":["Authored by %s"],Add:["Add"],"%d total rating":["%d total rating","%d total ratings"],"%s out of 5 stars":["%s out of 5 stars"],"Enter Address":["Enter address"],"Pill Shape":["Pill shape"],"Logos Only":["Logos only"],"Create a block of links to your social media or external sites":["Create a block of links to your social media or external sites"],"Social links":["Social links"],"Open block navigator":["Open block navigator"],"Attachment page":["Attachment page"],Fill:["Fill"],"Link rel":["Link rel"],"Border Radius":["Border radius"],"Write gallery caption\u2026":["Write gallery caption\u2026"],"Content Blocks":["Content blocks"],"Restore the backup":["Restore the backup"],"The backup of this post in your browser is different from the version below.":["The backup of this post in your browser is different from the version below."],"Enable Block Directory search":["Enable block directory search"],"Block Directory":["Block directory"],"Unable to connect to the filesystem. Please confirm your credentials.":["Unable to connect to the file system. Please confirm your credentials."],"Sorry, you are not allowed to install blocks.":["Sorry, you are not allowed to install blocks."],"%1$d block is disabled.":["%1$d block is disabled.","%1$d blocks are disabled."],"Reverse List Numbering":["Reverse list numbering"],"Start Value":["Start value"],"Ordered List Settings":["Ordered list settings"],"Clear Media":["Clear media"],"block style\x04Circle Mask":["Circle mask"],"Default Style":["Default style"],"Not set":["Not set"],"While writing, you can press / to quickly insert new blocks.":["While writing, you can press / to quickly insert new blocks."],"Browse through the library to learn more about what each block does.":["Browse through the library to learn more about what each block does."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor."],"Version of the content block format used by the object.":["Version of the content block format used by the object."],"HTML content for the object, transformed for display.":["HTML content for the object, transformed for display."],"Content for the object, as it exists in the database.":["Content for the object, as it exists in the database."],"The content for the object.":["The content for the object."],"Change column alignment":["Change column alignment"],"Align Column Right":["Align Column Right"],"Align Column Center":["Align Column Centre"],"Align Column Left":["Align Column Left"],Color:["Colour"],"Vivid purple":["Vivid purple"],"Disable & Reload":["Disable & Reload"],"Enable & Reload":["Enable & Reload"],"A page reload is required for this change. Make sure your content is saved before reloading.":["A page reload is required for this change. Make sure your content is saved before reloading."],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Experiments Settings":["Experiments Settings"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg has some experimental features you can turn on. Simply select each one you would like to use. These features are likely to change, so it is inadvisable to use them in production."],"Enable Widgets Screen and Legacy Widget Block":["Enable Widgets Screen and Legacy Widget Block"],"Experiment settings":["Experiment settings"],"Block name name must be a string.":["Block name must be a string."],Custom:["Custom"],Draft:["Draft"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Block \"%1$s\" does not contain a style named \"%2$s.\"."],"Learn more about anchors":["Learn more about anchors"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor\". Then, you\u2019ll be able to link directly to this section of your page."],"Widget Blocks (Experimental)":["Widget Blocks (Experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Upload a video file, pick one from your media library, or add one with a URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Upload an image file, pick one from your media library, or add one with a URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Upload an audio file, pick one from your media library, or add one with a URL."],"Upload a media file or pick one from your media library.":["Upload a media file or pick one from your media library."],Skip:["Skip"],"Select a pattern to start with.":["Select a pattern to start with."],"Add a page, link, or other item to your navigation.":["Add a page, link, or other item to your navigation."],"What's this?":["What's this?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Don't let search engines follow this link."],"Provide more context about where the link goes.":["Provide more context about where the link goes."],"Title Attribute":["Title Attribute"],"SEO Settings":["SEO Settings"],Description:["Description"],"Open in new tab":["Open in new tab"],links:["links"],navigation:["navigation"],menu:["menu"],"Add a navigation block to your site.":["Add a navigation block to your site."],"Upload a file or pick one from your media library.":["Upload a file or pick one from your media library."],"Learn more about embeds":["Learn more about embeds"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Paste a link to the content you want to display on your site."],"Upload an image or video file, or pick one from your media library.":["Upload an image or video file, or pick one from your media library."],"Three columns; wide center column":["Three columns; wide centre column"],"Three columns; equal split":["Three columns; equal split"],"Two columns; two-thirds, one-third split":["Two columns; two-thirds, one-third split"],"Two columns; one-third, two-thirds split":["Two columns; one-third, two-thirds split"],"Two columns; equal split":["Two columns; equal split"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Your site doesn’t have any %s, so there’s nothing to display here at the moment."],"More tools & options":["More tools & options"],"Create Table":["Create Table"],"Insert a table for sharing data.":["Insert a table for sharing data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Ungroup"],"verb\x04Group":["Group"],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Separate multiple classes with spaces.":["Separate multiple classes with spaces."],"Move image forward":["Move image forward"],"Move image backward":["Move image backward"],"Sorry, you are not allowed to edit sidebars.":["Sorry, you are not allowed to edit sidebars."],"Sorry, you are not allowed to read sidebars.":["Sorry, you are not allowed to read sidebars."],"The sidebar\u2019s ID.":["The sidebar\u2019s ID."],"Displays a set of blocks":["Displays a set of blocks"],"Blocks Area":["Blocks Area "],"Block rendered as empty.":["Block rendered as empty."],"Inline Code":["Inline Code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Note: autoplaying videos may cause usability issues for some visitors."],"Footer section":["Footer section"],"Header section":["Header section"],"Sorting and Filtering":["Sorting and Filtering"],"Post Meta Settings":["Post Meta Settings"],"Post Content":["Post Content"],"Post Content Settings":["Post Content Settings"],"Percentage width":["Percentage width"],"Column Settings":["Column Settings"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Note: autoplaying audio may cause usability issues for some visitors."],"Block area updated.":["Block area updated."],"Block area scheduled.":["Block area scheduled."],"Block area published.":["Block area published."],"Block areas list":["Block areas list"],"Block areas list navigation":["Block areas list navigation"],"Filter block areas list":["Filter block areas list"],"No block area found.":["No block area found."],"Search Block Areas":["Search Block Areas"],"All Block Areas":["All Block Areas"],"View Block Area":["View Block Area"],"Edit Block Area":["Edit Block Area"],"New Block Area":["New Block Area"],"Add New Block Area":["Add New Block Area"],"admin menu\x04Block Areas":["Block Areas"],"post type singular name\x04Block Area (Experimental)":["Block Area (Experimental)"],"post type general name\x04Block Area (Experimental)":["Block Area (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimental custom post type that will store block areas referenced by themes."],"Widgets screen content":["Widgets screen content"],"Widgets advanced settings":["Widgets advanced settings"],"(experimental)":["(experimental)"],"Block Areas":["Block Areas"],"Widgets screen top bar":["Widgets screen top bar"],"This color combination may be hard for people to read.":["This colour combination may be hard for people to read."],"There is no poster image currently selected":["There is no poster image currently selected"],"The current poster image url is %s":["The current poster image URL is %s"],section:["section"],row:["row"],wrapper:["wrapper"],container:["container"],"A block that groups other blocks.":["A block that groups other blocks."],Group:["Group"],"Crop image to fill entire column":["Crop image to fill entire column"],"Play inline":["Play inline"],"Leave empty if the image is purely decorative.":["Leave empty if the image is purely decorative."],"Describe the purpose of the image":["Describe the purpose of the image"],"Add a block":["Add a block"],"Block vertical alignment setting label\x04Change vertical alignment":["Change vertical alignment"],"Block vertical alignment setting\x04Vertically Align Bottom":["Vertically Align Bottom"],"Block vertical alignment setting\x04Vertically Align Middle":["Vertically Align Middle"],"Replace Image":["Replace Image"],"Block vertical alignment setting\x04Vertically Align Top":["Vertically Align Top"],"Display a legacy widget.":["Display a legacy widget."],"Legacy Widget (Experimental)":["Legacy Widget (Experimental)"],"Change widget":["Change widget"],"Legacy Widget":["Legacy Widget"],"You don't have permissions to use widgets on this site.":["You don't have permissions to use widgets on this site."],"Select a legacy widget to display:":["Select a legacy widget to display:"],"There are no widgets available.":["There are no widgets available."],"Change block type or style":["Change block type or style"],"keyboard key\x04Space":["Space"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["More rich text controls"],"Search Terms":["Search Terms"],"Exit the Editor":["Exit the Editor"],"Block Manager":["Block Manager"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, you are not allowed to access widgets on this site."],"Widgets (beta)":["Widgets (beta)"],link:["link"],"Embedded content from %s can't be previewed in the editor.":["Embedded content from %s can't be previewed in the editor."],"Custom Color":["Custom Colour"],"Prompt visitors to take action with a button-style link.":["Prompt visitors to take action with a button-style link."],"Stick to the top of the blog":["Stick to the top of the blog"],"Read about permalinks":["Read about permalinks"],"The last part of the URL.":["The last part of the URL."],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["A cloud of your most used tags."],"Tag Cloud":["Tag Cloud"],Taxonomy:["Taxonomy"],"Tag Cloud Settings":["Tag Cloud Settings"],"- Select -":["- Select -"],Default:["Default"],find:["find"],"Help visitors find your content.":["Help visitors find your content."],Search:["Search"],"Add button text\u2026":["Add button text\u2026"],"Button text":["Button text"],"Optional placeholder\u2026":["Optional placeholder\u2026"],"Optional placeholder text":["Optional placeholder text"],"Add label\u2026":["Add label\u2026"],"Label text":["Label text"],"image %1$d of %2$d in gallery":["image %1$d of %2$d in gallery"],archive:["archive"],posts:["posts"],"A calendar of your site\u2019s posts.":["A calendar of your site\u2019s posts."],Calendar:["Calendar"],by:["by"],"An error has occurred, which probably means the feed is down. Try again later.":["An error has occurred, which probably means the feed is down. Try again later."],"RSS Error:":["RSS error:"],"block style\x04Default":["Default"],"Fullscreen mode deactivated":["Fullscreen mode deactivated"],"Fullscreen mode activated":["Fullscreen mode activated"],"Spotlight mode deactivated":["Spotlight mode deactivated"],"Spotlight mode activated":["Spotlight mode activated"],"Top toolbar deactivated":["Top Toolbar deactivated"],"Top toolbar activated":["Top Toolbar activated"],Back:["Back"],"Feature activated":["Feature activated"],"Feature deactivated":["Feature deactivated"],"Vertical Pos.":["Vertical Pos."],"Horizontal Pos.":["Horizontal Pos."],feed:["Feed"],atom:["Atom"],"Display entries from any RSS or Atom feed.":["Display entries from any RSS or Atom feed."],RSS:["RSS"],"Max number of words in excerpt":["Max number of words in excerpt"],"Display excerpt":["Display excerpt"],"Display date":["Display date"],"Display author":["Display author"],"RSS Settings":["RSS settings"],"Edit RSS URL":["Edit RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Content before this block will be shown in the excerpt on your archives page."],"Hide the excerpt on the full content page":["Hide the excerpt on the full content page"],"The excerpt is visible.":["The excerpt is visible."],"The excerpt is hidden.":["The excerpt is hidden."],"Sorry, this content could not be embedded.":["Sorry, this content could not be embedded."],"Embed Amazon Kindle content.":["Embed Amazon Kindle content."],ebook:["eBook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Embed Crowdsignal (formerly Polldaddy) content."],"Focal Point Picker":["Focal point picker"],Underline:["Underline"],"Attempt Block Recovery":["Attempt Block Recovery"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Content\u2026"],"button label\x04Convert to link":["Convert to link"],"button label\x04Try again":["Try again"],"Editor tips":["Editor tips"],"Block (selected)":["Block (selected)"],"Document (selected)":["Document (selected)"],"%d word":["%d word","%d words"],"Top Toolbar":["Top Toolbar"],"Link Rel":["Link Rel"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used."],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"(selected block)":["(selected block)"],"Block tools":["Block tools"],Permalink:["Permalink"],"This image has an empty alt attribute":["This image has an empty alt attribute"],"This image has an empty alt attribute; its file name is %s":["This image has an empty alt attribute; its file name is %s"],"Block area reverted to draft.":["Block area reverted to draft."],"Block area published privately.":["Block area published privately."],"No block areas found in Trash.":["No block areas found in Bin."],"Block\x04Add New":["Add New"],"add new on admin bar\x04Block Area":["Block Area"],"Link inserted.":["Link inserted."],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"%s block selected.":["%s block selected.","%s blocks selected."],Thumbnail:["Thumbnail"],"Full Size":["Full Size"],"Link selected.":["Link selected."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Block icon":["Block icon"],"Align Text Right":["Align text right"],"Align Text Center":["Align text centre"],"Align Text Left":["Align text left"],"Start writing or type / to choose a block":["Start writing or type / to choose a block"],"Empty block; start writing or type forward slash to choose a block":["Empty block; start writing or type forward slash to choose a block"],"Paragraph block":["Paragraph block"],"Page Break":["Page Break"],"Stack on mobile":["Stack on mobile"],Annotation:["Annotation"],"Drag images, upload new ones or select files from your library.":["Drag images, upload new ones or select files from your library."],"blocks\x04Most Used":["Most Used"],"imperative verb\x04Resolve":["Resolve"],"font size name\x04Huge":["Huge"],"font size name\x04Large":["Large"],"font size name\x04Medium":["Medium"],"font size name\x04Small":["Small"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Import"],"button label\x04Download":["Download"],"button label\x04Embed":["Embed"],"block title\x04Embed":["Embed"],"block title\x04Classic":["Classic"],"block style\x04Large":["Large"],"%s (opens in a new tab)":["%s (opens in a new tab)"],"Link edited.":["Link edited."],"Link removed.":["Link removed."],media:["media"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Generating preview\u2026":["Generating preview\u2026"],"Edit or update the image":["Edit or update the image"],Media:["Media"],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Document tools":["Document tools"],"Document and block tools":["Document and block tools"],"Embed a video from your media library or upload a new one.":["Embed a video from your media library or upload a new one."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insert poetry. Use special spacing formats. Or quote song lyrics."],"Add white space between blocks and customize its height.":["Add white space between blocks and customise its height."],"Insert additional custom elements with a WordPress shortcode.":["Insert additional custom elements with a WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Create a break between ideas or sections with a horizontal separator."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Give special visual emphasis to a quote from your text."],"Start with the building block of all narrative.":["Start with the building block of all narrative."],"Separate your content into a multi-page experience.":["Separate your content into a multi-page experience."],"Set media and words side-by-side for a richer layout.":["Set media and words side-by-side for a richer layout."],"Media & Text Settings":["Media & Text Settings"],"Create a bulleted or numbered list.":["Create a bulleted or numbered list."],"Display a list of your most recent comments.":["Display a list of your most recent comments."],"Insert an image to make a visual statement.":["Insert an image to make a visual statement."],"Add custom HTML code and preview it as you edit.":["Add custom HTML code and preview it as you edit."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce new sections and organise content to help visitors (and search engines) understand the structure of your content."],"Display multiple images in a rich gallery.":["Display multiple images in a rich gallery."],"Add a link to a downloadable file.":["Add a link to a downloadable file."],"Embed videos, images, tweets, audio, and other content from external sources.":["Embed videos, images, tweets, audio, and other content from external sources."],"Resize for smaller devices":["Resize for smaller devices"],"This embed may not preserve its aspect ratio when the browser is resized.":["This embed may not preserve its aspect ratio when the browser is resized."],"This embed will preserve its aspect ratio when the browser is resized.":["This embed will preserve its aspect ratio when the browser is resized."],"Embed an Animoto video.":["Embed an Animoto video."],"Embed a Vimeo video.":["Embed a Vimeo video."],"Embed Flickr content.":["Embed Flickr content."],"Embed Spotify content.":["Embed Spotify content."],"Embed SoundCloud content.":["Embed SoundCloud content."],"Embed a WordPress post.":["Embed a WordPress post."],"Embed an Instagram post.":["Embed an Instagram post."],"Embed a Facebook post.":["Embed a Facebook post."],"Embed a WordPress.tv video.":["Embed a WordPress.tv video."],"Embed a VideoPress video.":["Embed a VideoPress video."],"Embed a Tumblr post.":["Embed a Tumblr post."],"Embed a TED video.":["Embed a TED video."],"Embed Speaker Deck content.":["Embed Speaker Deck content."],"Embed a YouTube video.":["Embed a YouTube video."],"Embed SmugMug content.":["Embed SmugMug content."],"Embed Slideshare content.":["Embed Slideshare content."],"Embed Scribd content.":["Embed Scribd content."],"Embed Screencast content.":["Embed Screencast content."],"Embed ReverbNation content.":["Embed ReverbNation content."],"Embed a Reddit thread.":["Embed a Reddit thread."],"Embed Polldaddy content.":["Embed Polldaddy content."],"Embed Mixcloud content.":["Embed Mixcloud content."],"Embed a tweet.":["Embed a tweet."],"Embed Meetup.com content.":["Embed Meetup.com content."],"Embed Kickstarter content.":["Embed Kickstarter content."],"Embed Issuu content.":["Embed Issuu content."],"Embed Imgur content.":["Embed Imgur content."],"Embed Hulu content.":["Embed Hulu content."],"Embed a Dailymotion video.":["Embed a Dailymotion video."],"Embed CollegeHumor content.":["Embed CollegeHumor content."],"Embed Cloudup content.":["Embed Cloudup content."],"Add an image or video with a text overlay \u2014 great for headers.":["Add an image or video with a text overlay \u2014 great for headers."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Use the classic WordPress editor."],"Display a list of all categories.":["Display a list of all categories."],"Embed a simple audio player.":["Embed a simple audio player."],"noun\x04View":["View"],"editor button\x04Left to right":["Left to right"],"Save as Pending":["Save as Pending"],"%s address":["%s address"],"Paste or type URL":["Paste or type URL"],"Insert from URL":["Insert from URL"],"Block Navigator":["Block navigator"],Styles:["Styles"],"Advanced Panels":["Advanced Panels"],"Document Panels":["Document Panels"],General:["General"],"Open the block navigation menu.":["Open the block navigation menu."],"Work without distraction":["Work without distraction"],"Focus on one block at a time":["Focus on one block at a time"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],Options:["Options"],"(opens in a new tab)":["(opens in a new tab)"],Minutes:["Minutes"],Hours:["Hours"],Time:["Time"],Year:["Year"],Day:["Day"],December:["December"],November:["November"],October:["October"],September:["September"],August:["August"],July:["July"],June:["June"],May:["May"],April:["April"],March:["March"],February:["February"],January:["January"],Month:["Month"],Date:["Date"],"Go to the first (home) or last (end) day of a week.":["Go to the first (home) or last (end) day of a week."],"Home/End":["Home/End"],"Home and End":["Home and End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Move backward (PgUp) or forward (PgDn) by one month."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":["Move backward (up) or forward (down) by one week."],"Up and Down Arrows":["Up and Down Arrows"],"Move backward (left) or forward (right) by one day.":["Move backward (left) or forward (right) by one day."],"Left and Right Arrows":["Left and Right Arrows"],"Select the date in focus.":["Select the date in focus."],"Navigating with a keyboard":["Navigating with a keyboard"],"Click the desired day to select it.":["Click the desired day to select it."],"Click the right or left arrows to select other months in the past or the future.":["Click the right or left arrows to select other months in the past or the future."],"Click to Select":["Click to Select"],"Calendar Help":["Calendar Help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use your arrow keys to change the base colour. Move up to lighten the colour, down to darken, left to decrease saturation, and right to increase saturation."],"Choose a shade":["Choose a shade"],"Change color format":["Change colour format"],"Color value in HSL":["Colour value in HSL"],"Color value in RGB":["Colour value in RGB"],"Color value in hexadecimal":["Colour value in hexadecimal"],"RGB mode active":["RGB mode active"],"Hex color mode active":["Hex colour mode active"],"Hue/saturation/lightness mode active":["Hue/saturation/lightness mode active"],"Move the arrow left or right to change hue.":["Move the arrow left or right to change hue."],"Hue value in degrees, from 0 to 359.":["Hue value in degrees, from 0 to 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha value, from 0 (transparent) to 1 (fully opaque)."],Stripes:["Stripes"],"Your site doesn\u2019t include support for this block.":["Your site doesn\u2019t include support for this block."],"Unrecognized Block":["Unrecognised Block"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely."],"Media area":["Media area"],"Media & Text":["Media & Text"],"Show media on right":["Show media on right"],"Show media on left":["Show media on left"],"Open in New Tab":["Open in New Tab"],Cover:["Cover"],"Border Settings":["Border settings"],"Edit media":["Edit media"],Medium:["Medium"],"Paste URL or type to search":["Paste URL or type to search"],Terms:["Terms"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Take Over":["Take Over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Another user is currently working on this post, which means you cannot make changes, unless you take over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s is currently working on this post, which means you cannot make changes, unless you take over."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved."],Avatar:["Avatar"],"This post is already being edited.":["This post is already being edited."],"Someone else has taken over this post.":["Someone else has taken over this post."],"This block contains unexpected or invalid content.":["This block contains unexpected or invalid content."],"Resolve Block":["Resolve Block"],"Convert to HTML":["Convert to HTML"],"This block can only be used once.":["This block can only be used once."],"Exit Code Editor":["Exit Code Editor"],"Editing Code":["Editing Code"],"Solid Color":["Solid Colour"],"Main Color":["Main Colour"],HTML:["HTML"],"Write HTML\u2026":["Write HTML\u2026"],"Media Settings":["Media Settings"],"Overlay Color":["Overlay Colour"],Overlay:["Overlay"],"Insert Media":["Insert Media"],"Reusable block imported successfully!":["Reusable block imported successfully!"],"Invalid Reusable Block JSON file":["Invalid Reusable Block JSON file"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],Backtick:["Backtick"],Period:["Period"],Comma:["Comma"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],Current:["Current"],"After Conversion":["After Conversion"],"Change alignment":["Change alignment"],"Change text alignment":["Change text alignment"],"%d block":["%d block","%d blocks"],Escape:["Escape"],"Forward-slash":["Forward-slash"],"No archives to show.":["No archives to show."],"This file is empty.":["This file is empty."],"Sorry, this file type is not supported here.":["Sorry, this file type is not supported here."],"Manage All Reusable Blocks":["Manage All Reusable Blocks"],Title:["Title"],"Fullscreen Mode":["Fullscreen Mode"],"Beautiful landscape":["Beautiful landscape"],"Close panel":["Close panel"],"Convert to Classic Block":["Convert to Classic Block"],"Remove Poster Image":["Remove Poster Image"],"Select Poster Image":["Select Poster Image"],"Poster Image":["Poster Image"],"This block is deprecated. Please use the Columns block instead.":["This block is deprecated. Please use the Columns block instead."],"Text Columns (deprecated)":["Text Columns (deprecated)"],"Row Count":["Row Count"],"Column Count":["Column Count"],"This block is deprecated. Please use the Paragraph block instead.":["This block is deprecated. Please use the Paragraph block instead."],"Subheading (deprecated)":["Subheading (deprecated)"],blockquote:["blockquote"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Spotlight Mode":["Spotlight Mode"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Insert After":["Insert After"],"Insert Before":["Insert Before"],"Move %1$d block from position %2$d down by one place":["Move %1$d block from position %2$d down by one place","Move %1$d blocks from position %2$d down by one place"],"Move %1$d block from position %2$d up by one place":["Move %1$d block from position %2$d up by one place","Move %1$d blocks from position %2$d up by one place"],"Move %1$s block from position %2$d %3$s to position %4$d":["Move %1$s block from position %2$d %3$s to position %4$d"],movie:["movie"],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Clear selection."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Selection shortcuts":["Selection shortcuts"],"Switch between Visual Editor and Code Editor.":["Switch between Visual Editor and Code Editor."],"Navigate to the previous part of the editor (alternative).":["Navigate to the previous part of the editor (alternative)."],"Navigate to the next part of the editor (alternative).":["Navigate to the next part of the editor (alternative)."],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the settings sidebar.":["Show or hide the settings sidebar."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Keyboard Shortcuts":["Keyboard Shortcuts"],"Thanks for testing Gutenberg!":["Thanks for testing Gutenberg Editor!"],"Help build Gutenberg":["Help build Gutenberg Editor"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository."],"The WordPress community":["The WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sure, the full-wide image can be pretty big. But sometimes the image is worth it."],"Accessibility is important — don’t forget image alt attribute":["Accessibility is important — don’t forget image alt attribute"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylised one. All of these options are available in the inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:"],"Visual Editing":["Visual Editing"],"And Lists like this one of course :)":["And Lists like this one of course :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout blocks, like Buttons, Hero Images, Separators, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Embeds, like YouTube, Tweets, or other WordPress posts."],Galleries:["Galleries"],"Images & Videos":["Images & Videos"],"Text & Headings":["Text & Headings"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing."],"The Inserter Tool":["The Inserter Tool"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before."],"A Picture is Worth a Thousand Words":["A Picture is Worth a Thousand Words"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Headings are separate blocks as well, which helps with the outline and organisation of your content."],"... like this one, which is right aligned.":["... like this one, which is right aligned."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting."],"Of Mountains & Printing Presses":["Of Mountains & Printing Presses"],"Welcome to the Gutenberg Editor":["Welcome to the Gutenberg Editor"],"block name\x04More":["More"],"button to expand options\x04More":["More"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Alt Text (Alternative Text)":["Alt Text (alternative text)"],"Reusable Block":["Reusable Block"],"Unique identifier for the object.":["Unique identifier for the object."],"Untitled Reusable Block":["Untitled Reusable Block"],Small:["Small"],"(%s: %s)":["(%s: %s)"],Reusable:["Reusable"],"(current %s: %s)":["(current %s: %s)"],"Remove from Reusable Blocks":["Remove from Reusable Blocks"],"Add to Reusable Blocks":["Add to Reusable Blocks"],"Keep as HTML":["Keep as HTML"],"Edit URL":["Edit URL"],"Color Settings":["Colour Settings"],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Editor publish":["Editor publish"],Muted:["Muted"],"Video Settings":["Video Settings"],"recent comments":["recent comments"],"Latest Comments":["Latest Comments"],"Display Excerpt":["Display Excerpt"],"Display Date":["Display Date"],"Display Avatar":["Display Avatar"],"Latest Comments Settings":["Latest Comments Settings"],"Number of Comments":["Number of Comments"],"Background Opacity":["Background Opacity"],Auto:["Auto"],Preload:["Preload"],"Audio Settings":["Audio Settings"],"Display a monthly archive of your posts.":["Display a monthly archive of your posts."],"Display as Dropdown":["Display as Dropdown"],"Show Post Counts":["Show Post Counts"],"Archives Settings":["Archives Settings"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg/"],Support:["Support"],"No comments to show.":["No comments to show."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["Select Post"],"Select Week":["Select Week"],"Select Day":["Select Day"],"Select Month":["Select Month"],"Select Year":["Select Year"],Archives:["Archives"],"Very dark gray":["Very dark grey"],"Cyan bluish gray":["Cyan bluish grey"],"Very light gray":["Very light grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Inline image":["Inline image"],"Available block types":["Available block types"],"Transform To:":["Transform To:"],"Remove Block":["Remove Block"],"Open publish panel":["Open publish panel"],Dots:["Dots"],"Wide Line":["Wide Line"],Large:["Large"],"Show download button":["Show download button"],"Download button settings":["Download button settings"],"Link To":["Link To"],"Text link settings":["Text link settings"],pdf:["pdf"],document:["document"],"Copy URL":["Copy URL"],"Write file name\u2026":["Write file name\u2026"],"Edit file":["Edit file"],File:["File"],"A single column within a columns block.":["A single column within a columns block."],Column:["Column"],Outline:["Outline"],Loop:["Loop"],Autoplay:["Autoplay"],"Playback Controls":["Playback Controls"],"Close dialog":["Close dialogue"],"Sorry, this file type is not permitted for security reasons.":["Sorry, this file type is not permitted for security reasons."],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you."],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Replace image":["Replace image"],"Remove image":["Remove image"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"This file exceeds the maximum upload size for this site.":["This file exceeds the maximum upload size for this site."],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],Autosaving:["Autosaving"],"Enter URL here\u2026":["Enter URL here\u2026"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Insert a table \u2014 perfect for sharing charts and data.":["Insert a table \u2014 perfect for sharing charts and data."],"Fixed width table cells":["Fixed width table cells"],"Table Settings":["Table Settings"],"Add text that respects your spacing and tabs, and also allows styling.":["Add text that respects your spacing and tabs, and also allows styling."],"Display a list of your most recent posts.":["Display a list of your most recent posts."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like."],"Error loading block: %s":["Error loading block: %s"],"Unknown error":["Unknown error"],"Embed Handler":["Embed Handler"],"term\x04Remove %s":["Remove %s"],"Copy the permalink":["Copy the permalink"],"Permalink copied":["Permalink copied"],"Height in pixels":["Height in pixels"],"Spacer Settings":["Spacer Settings"],Spacer:["Spacer"],"Toggle to show a large initial letter.":["Toggle to show a large initial letter."],"Showing large initial letter.":["Showing large initial letter."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Color code: %s":["Colour code: %s"],"Skip to the selected block":["Skip to the selected block"],"Publish\u2026":["Publish\u2026"],"Schedule\u2026":["Schedule\u2026"],"Edit post permalink":["Edit post permalink"],"Show Block Settings":["Show Block Settings"],"Hide Block Settings":["Hide Block Settings"],"Block settings closed":["Block settings closed"],"Close plugin":["Close plugin"],"Link settings":["Link settings"],Unlink:["Unlink"],"Page break":["Page break"],pagination:["pagination"],"next page":["next page"],"Image Size":["Image Size"],Height:["Height"],Width:["Width"],"Image Dimensions":["Image Dimensions"],"Thumbnails are not cropped.":["Thumbnails are not cropped."],"Thumbnails are cropped to align.":["Thumbnails are cropped to align."],"Media Library":["Media Library"],Advanced:["Advanced"],"Add item":["Add item"],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn\u2019t match the template assigned to your post type.":["The content of your post doesn\u2019t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Statistics":["Document Statistics"],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],Scheduled:["Scheduled"],"Scheduling\u2026":["Scheduling\u2026"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],Plugins:["Plugins"],"Custom Size":["Custom Size"],"Layout Elements":["Layout Elements"],"term\x04%s removed":["%s removed"],"term\x04%s added":["%s added"],"imperative verb\x04Preview":["Preview"],"Block deleted.":["Block deleted."],"Block updated.":["Block updated."],"Block created.":["Block created."],"Trashing failed":["Binning failed"],"Updating failed.":["Updating failed."],"Scheduling failed.":["Scheduling failed."],"Publishing failed.":["Publishing failed."],"View Post":["View Post"],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Document Outline":["Document Outline"],Paragraphs:["Paragraphs"],Headings:["Headings"],Words:["Words"],"Content structure":["Content structure"],Public:["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protected with a password you choose. Only those with the password can view this post."],"Password Protected":["Password Protected"],"Only visible to site admins and editors.":["Only visible to site admins and editors."],Private:["Private"],"Visible to everyone.":["Visible to everyone."],"Post Visibility":["Post Visibility"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Move to Trash":["Move to Bin"],"Parent Term":["Parent Term"],"Parent Category":["Parent Category"],"Add new term":["Add new term"],"Add new category":["Add new category"],Term:["Term"],Tag:["Tag"],"Add New Term":["Add New Term"],"Add New Tag":["Add New Tag"],"Switch to Draft":["Switch to Draft"],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],Immediately:["Immediately"],"Save Draft":["Save Draft"],Saving:["Saving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Are you ready to publish?":["Are you ready to publish?"],"Copy Link":["Copy Link"],"What\u2019s next?":["What\u2019s next?"],"is now live.":["is now live."],Published:["Published"],Schedule:["Schedule"],Update:["Update"],"Submit for Review":["Submit for Review"],"Updating\u2026":["Updating\u2026"],"Publishing\u2026":["Publishing\u2026"],"Allow Pingbacks & Trackbacks":["Allow Pingbacks & Trackbacks"],"Permalink:":["Permalink:"],"Pending Review":["Pending Review"],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suggestion:"],"Post Format":["Post Format"],Chat:["Chat"],Status:["Status"],Standard:["Standard"],Aside:["Aside"],"Set Featured Image":["Set Featured Image"],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"Allow Comments":["Allow Comments"],"Template:":["Template:"],"no parent":["no parent"],"no title":["no title"],Order:["Order"],"No blocks found.":["No blocks found."],"%d result found.":["%d result found.","%d results found."],Saved:["Saved"],Embeds:["Embeds"],Blocks:["Blocks"],"Search for a block":["Search for a block"],"Add block":["Add block"],"Add %s":["Add %s"],"Copy Error":["Copy Error"],"Copy Post Text":["Copy Post Text"],"Attempt Recovery":["Attempt Recovery"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],Undo:["Undo"],Redo:["Redo"],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Block Styles":["Block Styles"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it."],"Convert to Regular Block":["Convert to Regular Block"],"More options":["More options"],"Edit visually":["Edit visually"],Duplicate:["Duplicate"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Block %1$s is at the beginning of the content and can\u2019t be moved %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Block %1$s is at the end of the content and can\u2019t be moved %2$s"],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Edit as HTML":["Edit as HTML"],"Convert to Blocks":["Convert to Blocks"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"Transform into:":["Transform into:"],Remove:["Remove"],"Find original":["Find original"],"Copy All Content":["Copy All Content"],"Copied!":["Copied!"],"Additional settings are now available in the Editor block settings sidebar":["Additional settings are now available in the Editor block settings sidebar"],Visibility:["Visibility"],"Status & Visibility":["Status & Visibility"],"Page Attributes":["Page Attributes"],Block:["Block"],Document:["Document"],"Featured Image":["Featured Image"],"Close settings":["Close settings"],"Editor content":["Editor content"],Tools:["Tools"],Editor:["Editor"],"Code Editor":["Code Editor"],"Visual Editor":["Visual Editor"],"Editor top bar":["Editor top bar"],Settings:["Settings"],Reset:["Reset"],"Dismiss this notice":["Dismiss this notice"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Drop files to upload":["Drop files to upload"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["An unknown error occurred."],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"(no title)":["(no title)"],URL:["URL"],Submit:["Submit"],Close:["Close"],"Insert link":["Insert link"],"Edit link":["Edit link"],Link:["Link"],Strikethrough:["Strikethrough"],Italic:["Italic"],Bold:["Bold"],"Remove link":["Remove link"],"Number of items":["Number of items"],All:["All"],Category:["Category"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Oldest to Newest"],"Newest to Oldest":["Newest to Oldest"],"Order by":["Order by"],Select:["Select"],"Select or Upload Media":["Select or Upload Media"],Video:["Video"],"Edit video":["Edit video"],"Write\u2026":["Write\u2026"],poetry:["poetry"],Verse:["Verse"],"New Column":["New Column"],"Delete Column":["Delete Column"],"Add Column After":["Add Column After"],"Add Column Before":["Add Column Before"],"Delete Row":["Delete Row"],"Add Row After":["Add Row After"],"Add Row Before":["Add Row Before"],"Edit table":["Edit table"],Table:["Table"],"Write subheading\u2026":["Write subheading\u2026"],"Write shortcode here\u2026":["Write shortcode here\u2026"],Shortcode:["Shortcode"],divider:["divider"],"horizontal-line":["horizontal-line"],Separator:["Separator"],Quote:["Quote"],"Write citation\u2026":["Write citation\u2026"],"Write quote\u2026":["Write quote\u2026"],Pullquote:["Pullquote"],"Write preformatted text\u2026":["Write preformatted text\u2026"],Preformatted:["Preformatted"],text:["text"],Paragraph:["Paragraph"],"Font Size":["Font Size"],"Drop Cap":["Drop Cap"],"Text Settings":["Text Settings"],"Read more":["Read more"],"Write list\u2026":["Write list\u2026"],"numbered list":["numbered list"],"ordered list":["ordered list"],"bullet list":["bullet list"],"Indent list item":["Indent list item"],"Outdent list item":["Outdent list item"],"Convert to ordered list":["Convert to ordered list"],"Convert to unordered list":["Convert to unordered list"],List:["List"],"recent posts":["recent posts"],"No posts found.":["No posts found."],"Latest Posts":["Latest Posts"],"Display post date":["Display post date"],"Grid view":["Grid view"],"List view":["List view"],photo:["photo"],"Image Settings":["Image Settings"],Image:["Image"],Preview:["Preview"],embed:["embed"],"Custom HTML":["Custom HTML"],subtitle:["subtitle"],title:["title"],Heading:["Heading"],"Write heading\u2026":["Write heading\u2026"],"Heading %d":["Heading %d"],Level:["Level"],"Heading Settings":["Heading Settings"],photos:["photos"],images:["images"],"Remove Image":["Remove Image"],None:["None"],"Media File":["Media File"],"Attachment Page":["Attachment Page"],"Crop Images":["Crop Images"],"Gallery Settings":["Gallery Settings"],Gallery:["Gallery"],Classic:["Classic Edit"],video:["video"],audio:["audio"],music:["music"],image:["image"],blog:["blog"],post:["post"],"Embedded content from %s":["Embedded content from %s"],"Enter URL to embed here\u2026":["Enter URL to embed here\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Embedding\u2026"],"Write title\u2026":["Write title\u2026"],"Fixed Background":["Fixed Background"],"Edit image":["Edit image"],Columns:["Columns"],Experiments:["Experiments"],Code:["Code"],"Write code\u2026":["Write code\u2026"],Categories:["Categories"],"Show Hierarchy":["Show Hierarchy"],"Show post counts":["Show post counts"],"Categories Settings":["Categories Settings"],"Add text\u2026":["Add text\u2026"],Button:["Button"],Apply:["Apply"],"Text Color":["Text Colour"],"Background Color":["Background Colour"],"Block has been deleted or is unavailable.":["Block has been deleted or is unavailable."],"Reusable Blocks":["Reusable Blocks"],Cancel:["Cancel"],Edit:["Edit"],"Edit audio":["Edit audio"],"Write caption\u2026":["Write caption\u2026"],"Use URL":["Use URL"],Audio:["Audio"],Upload:["Upload"],"Additional CSS Class(es)":["Additional CSS Class(es)"],"HTML Anchor":["HTML Anchor"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["This colour combination may be hard for people to read. Try using a brighter background colour and/or a darker text colour."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["This colour combination may be hard for people to read. Try using a darker background colour and/or a brighter text colour."],Clear:["Clear"],"Custom color picker":["Custom colour picker"],"Color: %s":["Colour: %s"],"Full Width":["Full width"],"Wide Width":["Wide width"],Widgets:["Widgets"],Formatting:["Formatting"],"Common Blocks":["Common Blocks"],"Align Right":["Align right"],"Align Center":["Align centre"],"Align Left":["Align left"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Printing since 1440. This is the development plugin for the new block editor in core."],"Add title":["Add title"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information."],Author:["Author"],Slug:["Slug"],Discussion:["Discussion"],"Custom Fields":["Custom Fields"],Excerpt:["Excerpt"],Publish:["Publish"],Metadata:["Metadata"],Save:["Save"],Documentation:["Documentation"],"Select Category":["Select Category"],"(Untitled)":["(Untitled)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg."],"Gutenberg Team":["Gutenberg Editor Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg/"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s ago"],"Block style name must be a string.":["Block style name must be a string."]}},834,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );"],"You are probably offline.":["You are probably offline."],"Justify items right":["Justify items right"],"Justify items center":["Justify items centre"],"Justify items left":["Justify items left"],"Change items justification":["Change items justification"],"The media file has been replaced":["The media file has been replaced"],Replace:["Replace"],"Choose pattern":["Choose pattern"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["You are currently in edit mode. To return to the navigation mode, press Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the colour or remove the control point."],"Gradient control point at position %1$s with color code %2$s.":["Gradient control point at position %1$s with colour code %2$s."],"Preset Size":["Preset Size"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter."],"Open Media Library":["Open Media Library"],Next:["Next"],Previous:["Previous"],Finish:["Finish"],"Page %1$d of %2$d":["Page %1$d of %2$d"],"Guide controls":["Guide controls"],"Remove Control Point":["Remove Control Point"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"Make each block your own":["Make each block your own"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["In the WordPress editor, each paragraph, image or video is presented as a distinct \u201cblock\u201d of content."],"ADD MEDIA":["ADD MEDIA"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":["All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon."],"Get to know the Block Library":["Get to know the Block Library"],"Welcome Guide":["Welcome Guide"],"Enable Page Templates":["Enable Page Templates"],"Page Templates":["Page Templates"],"Enable Full Site Editing Demo Templates":["Enable Full Site Editing Demo Templates"],"Full Site Editing Demo Templates":["Full Site Editing Demo Templates"],"Welcome to the Block Editor":["Welcome to the Block Editor"],"Get started":["Get started"],inserter:["inserter"],"Post Title":["Post Title"],"Add nofollow to link":["Add nofollow to link"],"Link Settings":["Link Settings"],"Add Submenu":["Add Submenu"],"Add link\u2026":["Add link\u2026"],Dark:["Dark"],Light:["Light"],recording:["recording"],podcast:["podcast"],sound:["sound"],"Array of instance changes":["Array of instance changes"],"Current widget instance":["Current widget instance"],"Template parts to include in your templates.":["Template parts to include in your templates."],"Template parts list":["Template parts list"],"Template parts list navigation":["Template parts list navigation"],"Filter template parts list":["Filter template parts list"],"Uploaded to this template part":["Uploaded to this template part"],"Insert into template part":["Insert into template part"],"Template part archives":["Template part archives"],"No template parts found in Trash.":["No template parts found in Bin."],"No template parts found.":["No template parts found."],"Parent Template Part:":["Parent Template Part:"],"Search Template Parts":["Search Template Parts"],"All Template Parts":["All Template Parts"],"View Template Part":["View Template Part"],"Edit Template Part":["Edit Template Part"],"New Template Part":["New Template Part"],"Add New Template Part":["Add New Template Part"],"Template Part\x04Add New":["Add New"],"Admin Menu text\x04Template Parts":["Template Parts"],"Template Part":["Template Part"],"Template Parts":["Template Parts"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hooves of a goat,\nAnd breaking the golden lilies afloat\n With the dragonfly on the river."],Navigation:["Navigation"],"Loading Navigation\u2026":["Loading Navigation\u2026"],"Navigation Structure":["Navigation Structure"],"Create empty":["Create empty"],"Create from all top pages":["Create from all top pages"],"Create a Navigation from all existing pages, or create an empty one.":["Create a Navigation from all existing pages, or create an empty one."],"Navigation Link":["Navigation Link"],"(Note: many devices and browsers do not display this text.)":["(Note: many devices and browsers do not display this text.)"],"Describe the role of this image on the page.":["Describe the role of this image on the page."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Toggle between using the same value for all screen sizes or using a unique value per screen size."],"Use the same %s on all screensizes.":["Use the same %s on all screen sizes."],"Large screens":["Large screens"],"Medium screens":["Medium screens"],"Small screens":["Small screens"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["Controls the %1$s property for %2$s viewports."],Change:["Change"],"Currently selected":["Currently selected"],"Search or type url":["Search or type URL"],"Press ENTER to add this link":["Press ENTER to add this link"],"Currently selected link settings":["Currently selected link settings"],"Generic label for block inserter button\x04Add block":["Add block"],"directly add the only allowed block\x04Add %s":["Add %s"],"%s block added":["%s block added"],"Move %s":["Move %s"],"Extra Large":["Extra large"],"Block breadcrumb":["Block breadcrumb"],"Site Title":["Site title"],"Open Colors Selector":["Open colours selector"],"Overlay Gradient":["Overlay gradient"],"Templates list":["Templates list"],"Templates list navigation":["Templates list navigation"],"Filter templates list":["Filter templates list"],"Uploaded to this template":["Uploaded to this template"],"Insert into template":["Insert into template"],"Template archives":["Template archives"],"No templates found in Trash.":["No templates found in bin."],"No templates found.":["No templates found."],"Parent Template:":["Parent template:"],"Search Templates":["Search templates"],"All Templates":["All templates"],"View Template":["View template"],"Edit Template":["Edit template"],"New Template":["New template"],"Add New Template":["Add new template"],"Template\x04Add New":["Add new"],"Admin Menu text\x04Templates":["Templates"],Template:["Template"],"No matching template found":["No matching template found"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradient code: %s"],"All content copied.":["All content copied."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media upload failed. If this is a photo or a large image, please scale it down and try again."],Gradient:["Gradient"],"Gradient Presets":["Gradient presets"],"No Preview Available.":["No preview available."],Midnight:["Midnight"],"Electric grass":["Electric grass"],"Pale ocean":["Pale ocean"],"Luminous dusk":["Luminous dusk"],"Blush bordeaux":["Blush bordeaux"],"Blush light purple":["Blush light purple"],"Cool to warm spectrum":["Cool to warm spectrum"],"Very light gray to cyan bluish gray":["Very light grey to cyan bluish grey"],"Luminous vivid orange to vivid red":["Luminous vivid orange to vivid red"],"Luminous vivid amber to luminous vivid orange":["Luminous vivid amber to luminous vivid orange"],"Light green cyan to vivid green cyan":["Light green cyan to vivid green cyan"],"Vivid cyan blue to vivid purple":["Vivid cyan blue to vivid purple"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 December 2018"],"February 21, 2019":["21 February 2019"],"May 7, 2019":["7 May 2019"],"Release Date":["Release date"],"Jazz Musician":["Jazz musician"],Version:["Version"],"Six.":["Six."],"Five.":["Five."],"Four.":["Four."],"Three.":["Three."],"Two.":["Two."],"One.":["One."],"One of the hardest things to do in technology is disrupt yourself.":["One of the hardest things to do in technology is disrupt yourself."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["All around this is an almost totally black screen. Now, as the camera moves slowly towards the window, which is almost a postage stamp in the frame, other forms appear;"],"Window, very small in the distance, illuminated.":["Window, very small in the distance, illuminated."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["The wren
earns his living
noiselessly."],"Welcome to the wonderful world of blocks\u2026":["Welcome to the wonderful world of blocks\u2026"],"Snow Patrol":["Snow Patrol"],Dimensions:["Dimensions"],"Minimum height in pixels":["Minimum height in pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to action"],"In quoting others, we cite ourselves.":["In quoting others, we cite ourselves."],cite:["cite"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc appears - still, snowy and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In the village of La Mancha, the name of which I have no desire to call to mind, there lived, not long since, one of those gentlemen that keep a lance in the lance rack, an old buckler, a lean hack and a greyhound for coursing."],"Block navigation":["Block navigation"],"Enable Full Site Editing":["Enable full site editing"],"Full Site Editing":["Full site editing"],"Templates to include in your theme.":["Templates to include in your theme."],Templates:["Templates"],"Inserter Help Panel":["Inserter help panel"],"Pre-publish Checks":["Pre-publish checks"],"Please contact your site administrator to install new blocks.":["Please contact your site administrator to install new blocks."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No blocks found in your library. Please contact your site administrator to install new blocks."],"No blocks found in your library.":["No blocks found in your library."],"No blocks found in your library. These blocks can be downloaded and installed:":["No blocks found in your library. These blocks can be downloaded and installed:"],"No blocks found in your library. We did find %d block available for download.":["No blocks found in your library. We did find %d block available for download.","No blocks found in your library. We did find %d blocks available for download."],"Block previews can\u2019t load.":["Block previews can\u2019t load."],Retry:["Retry"],"Block previews can't install.":["Block previews can't install."],"Updated %s":["Updated %s"],"%d active installation":["%d active installation","%d active installations"],"This author has %d block, with an average rating of %d.":["This author has %d block, with an average rating of %d.","This author has %d blocks, with an average rating of %d."],"Authored by %s":["Authored by %s"],Add:["Add"],"%d total rating":["%d total rating","%d total ratings"],"%s out of 5 stars":["%s out of 5 stars"],"Enter Address":["Enter address"],"Pill Shape":["Pill shape"],"Logos Only":["Logos only"],"Create a block of links to your social media or external sites":["Create a block of links to your social media or external sites"],"Social links":["Social links"],"Open block navigator":["Open block navigator"],"Attachment page":["Attachment page"],Fill:["Fill"],"Link rel":["Link rel"],"Border Radius":["Border radius"],"Write gallery caption\u2026":["Write gallery caption\u2026"],"Content Blocks":["Content blocks"],"Restore the backup":["Restore the backup"],"The backup of this post in your browser is different from the version below.":["The backup of this post in your browser is different from the version below."],"Enable Block Directory search":["Enable block directory search"],"Block Directory":["Block directory"],"Unable to connect to the filesystem. Please confirm your credentials.":["Unable to connect to the file system. Please confirm your credentials."],"Sorry, you are not allowed to install blocks.":["Sorry, you are not allowed to install blocks."],"%1$d block is disabled.":["%1$d block is disabled.","%1$d blocks are disabled."],"Reverse List Numbering":["Reverse list numbering"],"Start Value":["Start value"],"Ordered List Settings":["Ordered list settings"],"Clear Media":["Clear media"],"block style\x04Circle Mask":["Circle mask"],"Default Style":["Default style"],"Not set":["Not set"],"While writing, you can press / to quickly insert new blocks.":["While writing, you can press / to quickly insert new blocks."],"Browse through the library to learn more about what each block does.":["Browse through the library to learn more about what each block does."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor."],"Version of the content block format used by the object.":["Version of the content block format used by the object."],"HTML content for the object, transformed for display.":["HTML content for the object, transformed for display."],"Content for the object, as it exists in the database.":["Content for the object, as it exists in the database."],"The content for the object.":["The content for the object."],"Change column alignment":["Change column alignment"],"Align Column Right":["Align Column Right"],"Align Column Center":["Align Column Centre"],"Align Column Left":["Align Column Left"],Color:["Colour"],"Vivid purple":["Vivid purple"],"Disable & Reload":["Disable & Reload"],"Enable & Reload":["Enable & Reload"],"A page reload is required for this change. Make sure your content is saved before reloading.":["A page reload is required for this change. Make sure your content is saved before reloading."],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Experiments Settings":["Experiments Settings"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg has some experimental features you can turn on. Simply select each one you would like to use. These features are likely to change, so it is inadvisable to use them in production."],"Enable Widgets Screen and Legacy Widget Block":["Enable Widgets Screen and Legacy Widget Block"],"Experiment settings":["Experiment settings"],"Block name name must be a string.":["Block name must be a string."],Custom:["Custom"],Draft:["Draft"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Block \"%1$s\" does not contain a style named \"%2$s.\"."],"Learn more about anchors":["Learn more about anchors"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor\". Then, you\u2019ll be able to link directly to this section of your page."],"Widget Blocks (Experimental)":["Widget Blocks (Experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Upload a video file, pick one from your media library, or add one with a URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Upload an image file, pick one from your media library, or add one with a URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Upload an audio file, pick one from your media library, or add one with a URL."],"Upload a media file or pick one from your media library.":["Upload a media file or pick one from your media library."],Skip:["Skip"],"Select a pattern to start with.":["Select a pattern to start with."],"Add a page, link, or other item to your navigation.":["Add a page, link, or other item to your navigation."],"What's this?":["What's this?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Don't let search engines follow this link."],"Provide more context about where the link goes.":["Provide more context about where the link goes."],"Title Attribute":["Title Attribute"],"SEO Settings":["SEO Settings"],Description:["Description"],"Open in new tab":["Open in new tab"],links:["links"],navigation:["navigation"],menu:["menu"],"Add a navigation block to your site.":["Add a navigation block to your site."],"Upload a file or pick one from your media library.":["Upload a file or pick one from your media library."],"Learn more about embeds":["Learn more about embeds"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Paste a link to the content you want to display on your site."],"Upload an image or video file, or pick one from your media library.":["Upload an image or video file, or pick one from your media library."],"Three columns; wide center column":["Three columns; wide centre column"],"Three columns; equal split":["Three columns; equal split"],"Two columns; two-thirds, one-third split":["Two columns; two-thirds, one-third split"],"Two columns; one-third, two-thirds split":["Two columns; one-third, two-thirds split"],"Two columns; equal split":["Two columns; equal split"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Your site doesn’t have any %s, so there’s nothing to display here at the moment."],"More tools & options":["More tools & options"],"Create Table":["Create Table"],"Insert a table for sharing data.":["Insert a table for sharing data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Ungroup"],"verb\x04Group":["Group"],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Separate multiple classes with spaces.":["Separate multiple classes with spaces."],"Move image forward":["Move image forward"],"Move image backward":["Move image backward"],"Sorry, you are not allowed to edit sidebars.":["Sorry, you are not allowed to edit sidebars."],"Sorry, you are not allowed to read sidebars.":["Sorry, you are not allowed to read sidebars."],"The sidebar\u2019s ID.":["The sidebar\u2019s ID."],"Displays a set of blocks":["Displays a set of blocks"],"Blocks Area":["Blocks Area "],"Block rendered as empty.":["Block rendered as empty."],"Inline Code":["Inline Code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Note: autoplaying videos may cause usability issues for some visitors."],"Footer section":["Footer section"],"Header section":["Header section"],"Sorting and Filtering":["Sorting and Filtering"],"Post Meta Settings":["Post Meta Settings"],"Post Content":["Post Content"],"Post Content Settings":["Post Content Settings"],"Percentage width":["Percentage width"],"Column Settings":["Column Settings"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Note: autoplaying audio may cause usability issues for some visitors."],"Block area updated.":["Block area updated."],"Block area scheduled.":["Block area scheduled."],"Block area published.":["Block area published."],"Block areas list":["Block areas list"],"Block areas list navigation":["Block areas list navigation"],"Filter block areas list":["Filter block areas list"],"No block area found.":["No block area found."],"Search Block Areas":["Search Block Areas"],"All Block Areas":["All Block Areas"],"View Block Area":["View Block Area"],"Edit Block Area":["Edit Block Area"],"New Block Area":["New Block Area"],"Add New Block Area":["Add New Block Area"],"admin menu\x04Block Areas":["Block Areas"],"post type singular name\x04Block Area (Experimental)":["Block Area (Experimental)"],"post type general name\x04Block Area (Experimental)":["Block Area (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimental custom post type that will store block areas referenced by themes."],"Widgets screen content":["Widgets screen content"],"Widgets advanced settings":["Widgets advanced settings"],"(experimental)":["(experimental)"],"Block Areas":["Block Areas"],"Widgets screen top bar":["Widgets screen top bar"],"This color combination may be hard for people to read.":["This colour combination may be hard for people to read."],"There is no poster image currently selected":["There is no poster image currently selected"],"The current poster image url is %s":["The current poster image URL is %s"],section:["section"],row:["row"],wrapper:["wrapper"],container:["container"],"A block that groups other blocks.":["A block that groups other blocks."],Group:["Group"],"Crop image to fill entire column":["Crop image to fill entire column"],"Play inline":["Play inline"],"Leave empty if the image is purely decorative.":["Leave empty if the image is purely decorative."],"Describe the purpose of the image":["Describe the purpose of the image"],"Add a block":["Add a block"],"Block vertical alignment setting label\x04Change vertical alignment":["Change vertical alignment"],"Block vertical alignment setting\x04Vertically Align Bottom":["Vertically Align Bottom"],"Block vertical alignment setting\x04Vertically Align Middle":["Vertically Align Middle"],"Replace Image":["Replace Image"],"Block vertical alignment setting\x04Vertically Align Top":["Vertically Align Top"],"Display a legacy widget.":["Display a legacy widget."],"Legacy Widget (Experimental)":["Legacy Widget (Experimental)"],"Change widget":["Change widget"],"Legacy Widget":["Legacy Widget"],"You don't have permissions to use widgets on this site.":["You don't have permissions to use widgets on this site."],"Select a legacy widget to display:":["Select a legacy widget to display:"],"There are no widgets available.":["There are no widgets available."],"Change block type or style":["Change block type or style"],"keyboard key\x04Space":["Space"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["More rich text controls"],"Search Terms":["Search Terms"],"Exit the Editor":["Exit the Editor"],"Block Manager":["Block Manager"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, you are not allowed to access widgets on this site."],"Widgets (beta)":["Widgets (beta)"],link:["link"],"Embedded content from %s can't be previewed in the editor.":["Embedded content from %s can't be previewed in the editor."],"Custom Color":["Custom Colour"],"Prompt visitors to take action with a button-style link.":["Prompt visitors to take action with a button-style link."],"Stick to the top of the blog":["Stick to the top of the blog"],"Read about permalinks":["Read about permalinks"],"The last part of the URL.":["The last part of the URL."],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["A cloud of your most used tags."],"Tag Cloud":["Tag Cloud"],Taxonomy:["Taxonomy"],"Tag Cloud Settings":["Tag Cloud Settings"],"- Select -":["- Select -"],Default:["Default"],find:["find"],"Help visitors find your content.":["Help visitors find your content."],Search:["Search"],"Add button text\u2026":["Add button text\u2026"],"Button text":["Button text"],"Optional placeholder\u2026":["Optional placeholder\u2026"],"Optional placeholder text":["Optional placeholder text"],"Add label\u2026":["Add label\u2026"],"Label text":["Label text"],"image %1$d of %2$d in gallery":["image %1$d of %2$d in gallery"],archive:["archive"],posts:["posts"],"A calendar of your site\u2019s posts.":["A calendar of your site\u2019s posts."],Calendar:["Calendar"],by:["by"],"An error has occurred, which probably means the feed is down. Try again later.":["An error has occurred, which probably means the feed is down. Try again later."],"RSS Error:":["RSS error:"],"block style\x04Default":["Default"],"Fullscreen mode deactivated":["Fullscreen mode deactivated"],"Fullscreen mode activated":["Fullscreen mode activated"],"Spotlight mode deactivated":["Spotlight mode deactivated"],"Spotlight mode activated":["Spotlight mode activated"],"Top toolbar deactivated":["Top Toolbar deactivated"],"Top toolbar activated":["Top Toolbar activated"],Back:["Back"],"Feature activated":["Feature activated"],"Feature deactivated":["Feature deactivated"],"Vertical Pos.":["Vertical Pos."],"Horizontal Pos.":["Horizontal Pos."],feed:["Feed"],atom:["Atom"],"Display entries from any RSS or Atom feed.":["Display entries from any RSS or Atom feed."],RSS:["RSS"],"Max number of words in excerpt":["Max number of words in excerpt"],"Display excerpt":["Display excerpt"],"Display date":["Display date"],"Display author":["Display author"],"RSS Settings":["RSS settings"],"Edit RSS URL":["Edit RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Content before this block will be shown in the excerpt on your archives page."],"Hide the excerpt on the full content page":["Hide the excerpt on the full content page"],"The excerpt is visible.":["The excerpt is visible."],"The excerpt is hidden.":["The excerpt is hidden."],"Sorry, this content could not be embedded.":["Sorry, this content could not be embedded."],"Embed Amazon Kindle content.":["Embed Amazon Kindle content."],ebook:["eBook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Embed Crowdsignal (formerly Polldaddy) content."],"Focal Point Picker":["Focal point picker"],Underline:["Underline"],"Attempt Block Recovery":["Attempt Block Recovery"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Content\u2026"],"button label\x04Convert to link":["Convert to link"],"button label\x04Try again":["Try again"],"Editor tips":["Editor tips"],"Block (selected)":["Block (selected)"],"Document (selected)":["Document (selected)"],"%d word":["%d word","%d words"],"Top Toolbar":["Top Toolbar"],"Link Rel":["Link Rel"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used."],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"(selected block)":["(selected block)"],"Block tools":["Block tools"],Permalink:["Permalink"],"This image has an empty alt attribute":["This image has an empty alt attribute"],"This image has an empty alt attribute; its file name is %s":["This image has an empty alt attribute; its file name is %s"],"Block area reverted to draft.":["Block area reverted to draft."],"Block area published privately.":["Block area published privately."],"No block areas found in Trash.":["No block areas found in Bin."],"Block\x04Add New":["Add New"],"add new on admin bar\x04Block Area":["Block Area"],"Link inserted.":["Link inserted."],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"%s block selected.":["%s block selected.","%s blocks selected."],Thumbnail:["Thumbnail"],"Full Size":["Full Size"],"Link selected.":["Link selected."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Block icon":["Block icon"],"Align Text Right":["Align text right"],"Align Text Center":["Align text centre"],"Align Text Left":["Align text left"],"Start writing or type / to choose a block":["Start writing or type / to choose a block"],"Empty block; start writing or type forward slash to choose a block":["Empty block; start writing or type forward slash to choose a block"],"Paragraph block":["Paragraph block"],"Page Break":["Page Break"],"Stack on mobile":["Stack on mobile"],Annotation:["Annotation"],"Drag images, upload new ones or select files from your library.":["Drag images, upload new ones or select files from your library."],"blocks\x04Most Used":["Most Used"],"imperative verb\x04Resolve":["Resolve"],"font size name\x04Huge":["Huge"],"font size name\x04Large":["Large"],"font size name\x04Medium":["Medium"],"font size name\x04Small":["Small"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Import"],"button label\x04Download":["Download"],"button label\x04Embed":["Embed"],"block title\x04Embed":["Embed"],"block title\x04Classic":["Classic"],"block style\x04Large":["Large"],"%s (opens in a new tab)":["%s (opens in a new tab)"],"Link edited.":["Link edited."],"Link removed.":["Link removed."],media:["media"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Generating preview\u2026":["Generating preview\u2026"],"Edit or update the image":["Edit or update the image"],Media:["Media"],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Document tools":["Document tools"],"Document and block tools":["Document and block tools"],"Embed a video from your media library or upload a new one.":["Embed a video from your media library or upload a new one."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insert poetry. Use special spacing formats. Or quote song lyrics."],"Add white space between blocks and customize its height.":["Add white space between blocks and customise its height."],"Insert additional custom elements with a WordPress shortcode.":["Insert additional custom elements with a WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Create a break between ideas or sections with a horizontal separator."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Give special visual emphasis to a quote from your text."],"Start with the building block of all narrative.":["Start with the building block of all narrative."],"Separate your content into a multi-page experience.":["Separate your content into a multi-page experience."],"Set media and words side-by-side for a richer layout.":["Set media and words side-by-side for a richer layout."],"Media & Text Settings":["Media & Text Settings"],"Create a bulleted or numbered list.":["Create a bulleted or numbered list."],"Display a list of your most recent comments.":["Display a list of your most recent comments."],"Insert an image to make a visual statement.":["Insert an image to make a visual statement."],"Add custom HTML code and preview it as you edit.":["Add custom HTML code and preview it as you edit."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce new sections and organise content to help visitors (and search engines) understand the structure of your content."],"Display multiple images in a rich gallery.":["Display multiple images in a rich gallery."],"Add a link to a downloadable file.":["Add a link to a downloadable file."],"Embed videos, images, tweets, audio, and other content from external sources.":["Embed videos, images, tweets, audio, and other content from external sources."],"Resize for smaller devices":["Resize for smaller devices"],"This embed may not preserve its aspect ratio when the browser is resized.":["This embed may not preserve its aspect ratio when the browser is resized."],"This embed will preserve its aspect ratio when the browser is resized.":["This embed will preserve its aspect ratio when the browser is resized."],"Embed an Animoto video.":["Embed an Animoto video."],"Embed a Vimeo video.":["Embed a Vimeo video."],"Embed Flickr content.":["Embed Flickr content."],"Embed Spotify content.":["Embed Spotify content."],"Embed SoundCloud content.":["Embed SoundCloud content."],"Embed a WordPress post.":["Embed a WordPress post."],"Embed an Instagram post.":["Embed an Instagram post."],"Embed a Facebook post.":["Embed a Facebook post."],"Embed a WordPress.tv video.":["Embed a WordPress.tv video."],"Embed a VideoPress video.":["Embed a VideoPress video."],"Embed a Tumblr post.":["Embed a Tumblr post."],"Embed a TED video.":["Embed a TED video."],"Embed Speaker Deck content.":["Embed Speaker Deck content."],"Embed a YouTube video.":["Embed a YouTube video."],"Embed SmugMug content.":["Embed SmugMug content."],"Embed Slideshare content.":["Embed Slideshare content."],"Embed Scribd content.":["Embed Scribd content."],"Embed Screencast content.":["Embed Screencast content."],"Embed ReverbNation content.":["Embed ReverbNation content."],"Embed a Reddit thread.":["Embed a Reddit thread."],"Embed Polldaddy content.":["Embed Polldaddy content."],"Embed Mixcloud content.":["Embed Mixcloud content."],"Embed a tweet.":["Embed a tweet."],"Embed Meetup.com content.":["Embed Meetup.com content."],"Embed Kickstarter content.":["Embed Kickstarter content."],"Embed Issuu content.":["Embed Issuu content."],"Embed Imgur content.":["Embed Imgur content."],"Embed Hulu content.":["Embed Hulu content."],"Embed a Dailymotion video.":["Embed a Dailymotion video."],"Embed CollegeHumor content.":["Embed CollegeHumor content."],"Embed Cloudup content.":["Embed Cloudup content."],"Add an image or video with a text overlay \u2014 great for headers.":["Add an image or video with a text overlay \u2014 great for headers."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Use the classic WordPress editor."],"Display a list of all categories.":["Display a list of all categories."],"Embed a simple audio player.":["Embed a simple audio player."],"noun\x04View":["View"],"editor button\x04Left to right":["Left to right"],"Save as Pending":["Save as Pending"],"%s address":["%s address"],"Paste or type URL":["Paste or type URL"],"Insert from URL":["Insert from URL"],"Block Navigator":["Block navigator"],Styles:["Styles"],"Advanced Panels":["Advanced Panels"],"Document Panels":["Document Panels"],General:["General"],"Open the block navigation menu.":["Open the block navigation menu."],"Work without distraction":["Work without distraction"],"Focus on one block at a time":["Focus on one block at a time"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],Options:["Options"],"(opens in a new tab)":["(opens in a new tab)"],Minutes:["Minutes"],Hours:["Hours"],Time:["Time"],Year:["Year"],Day:["Day"],December:["December"],November:["November"],October:["October"],September:["September"],August:["August"],July:["July"],June:["June"],May:["May"],April:["April"],March:["March"],February:["February"],January:["January"],Month:["Month"],Date:["Date"],"Go to the first (home) or last (end) day of a week.":["Go to the first (home) or last (end) day of a week."],"Home/End":["Home/End"],"Home and End":["Home and End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Move backward (PgUp) or forward (PgDn) by one month."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":["Move backward (up) or forward (down) by one week."],"Up and Down Arrows":["Up and Down Arrows"],"Move backward (left) or forward (right) by one day.":["Move backward (left) or forward (right) by one day."],"Left and Right Arrows":["Left and Right Arrows"],"Select the date in focus.":["Select the date in focus."],"Navigating with a keyboard":["Navigating with a keyboard"],"Click the desired day to select it.":["Click the desired day to select it."],"Click the right or left arrows to select other months in the past or the future.":["Click the right or left arrows to select other months in the past or the future."],"Click to Select":["Click to Select"],"Calendar Help":["Calendar Help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use your arrow keys to change the base colour. Move up to lighten the colour, down to darken, left to decrease saturation, and right to increase saturation."],"Choose a shade":["Choose a shade"],"Change color format":["Change colour format"],"Color value in HSL":["Colour value in HSL"],"Color value in RGB":["Colour value in RGB"],"Color value in hexadecimal":["Colour value in hexadecimal"],"RGB mode active":["RGB mode active"],"Hex color mode active":["Hex colour mode active"],"Hue/saturation/lightness mode active":["Hue/saturation/lightness mode active"],"Move the arrow left or right to change hue.":["Move the arrow left or right to change hue."],"Hue value in degrees, from 0 to 359.":["Hue value in degrees, from 0 to 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha value, from 0 (transparent) to 1 (fully opaque)."],Stripes:["Stripes"],"Your site doesn\u2019t include support for this block.":["Your site doesn\u2019t include support for this block."],"Unrecognized Block":["Unrecognised Block"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely."],"Media area":["Media area"],"Media & Text":["Media & Text"],"Show media on right":["Show media on right"],"Show media on left":["Show media on left"],"Open in New Tab":["Open in New Tab"],Cover:["Cover"],"Border Settings":["Border settings"],"Edit media":["Edit media"],Medium:["Medium"],"Paste URL or type to search":["Paste URL or type to search"],Terms:["Terms"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Take Over":["Take Over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Another user is currently working on this post, which means you cannot make changes, unless you take over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s is currently working on this post, which means you cannot make changes, unless you take over."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved."],Avatar:["Avatar"],"This post is already being edited.":["This post is already being edited."],"Someone else has taken over this post.":["Someone else has taken over this post."],"This block contains unexpected or invalid content.":["This block contains unexpected or invalid content."],"Resolve Block":["Resolve Block"],"Convert to HTML":["Convert to HTML"],"This block can only be used once.":["This block can only be used once."],"Exit Code Editor":["Exit Code Editor"],"Editing Code":["Editing Code"],"Solid Color":["Solid Colour"],"Main Color":["Main Colour"],HTML:["HTML"],"Write HTML\u2026":["Write HTML\u2026"],"Media Settings":["Media Settings"],"Overlay Color":["Overlay Colour"],Overlay:["Overlay"],"Insert Media":["Insert Media"],"Reusable block imported successfully!":["Reusable block imported successfully!"],"Invalid Reusable Block JSON file":["Invalid Reusable Block JSON file"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],Backtick:["Backtick"],Period:["Period"],Comma:["Comma"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],Current:["Current"],"After Conversion":["After Conversion"],"Change alignment":["Change alignment"],"Change text alignment":["Change text alignment"],"%d block":["%d block","%d blocks"],Escape:["Escape"],"Forward-slash":["Forward-slash"],"No archives to show.":["No archives to show."],"This file is empty.":["This file is empty."],"Sorry, this file type is not supported here.":["Sorry, this file type is not supported here."],"Manage All Reusable Blocks":["Manage All Reusable Blocks"],Title:["Title"],"Fullscreen Mode":["Fullscreen Mode"],"Beautiful landscape":["Beautiful landscape"],"Close panel":["Close panel"],"Convert to Classic Block":["Convert to Classic Block"],"Remove Poster Image":["Remove Poster Image"],"Select Poster Image":["Select Poster Image"],"Poster Image":["Poster Image"],"This block is deprecated. Please use the Columns block instead.":["This block is deprecated. Please use the Columns block instead."],"Text Columns (deprecated)":["Text Columns (deprecated)"],"Row Count":["Row Count"],"Column Count":["Column Count"],"This block is deprecated. Please use the Paragraph block instead.":["This block is deprecated. Please use the Paragraph block instead."],"Subheading (deprecated)":["Subheading (deprecated)"],blockquote:["blockquote"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Spotlight Mode":["Spotlight Mode"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Insert After":["Insert After"],"Insert Before":["Insert Before"],"Move %1$d block from position %2$d down by one place":["Move %1$d block from position %2$d down by one place","Move %1$d blocks from position %2$d down by one place"],"Move %1$d block from position %2$d up by one place":["Move %1$d block from position %2$d up by one place","Move %1$d blocks from position %2$d up by one place"],"Move %1$s block from position %2$d %3$s to position %4$d":["Move %1$s block from position %2$d %3$s to position %4$d"],movie:["movie"],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Clear selection."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Selection shortcuts":["Selection shortcuts"],"Switch between Visual Editor and Code Editor.":["Switch between Visual Editor and Code Editor."],"Navigate to the previous part of the editor (alternative).":["Navigate to the previous part of the editor (alternative)."],"Navigate to the next part of the editor (alternative).":["Navigate to the next part of the editor (alternative)."],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the settings sidebar.":["Show or hide the settings sidebar."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Keyboard Shortcuts":["Keyboard Shortcuts"],"Thanks for testing Gutenberg!":["Thanks for testing Gutenberg Editor!"],"Help build Gutenberg":["Help build Gutenberg Editor"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository."],"The WordPress community":["The WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sure, the full-wide image can be pretty big. But sometimes the image is worth it."],"Accessibility is important — don’t forget image alt attribute":["Accessibility is important — don’t forget image alt attribute"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylised one. All of these options are available in the inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:"],"Visual Editing":["Visual Editing"],"And Lists like this one of course :)":["And Lists like this one of course :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout blocks, like Buttons, Hero Images, Separators, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Embeds, like YouTube, Tweets, or other WordPress posts."],Galleries:["Galleries"],"Images & Videos":["Images & Videos"],"Text & Headings":["Text & Headings"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing."],"The Inserter Tool":["The Inserter Tool"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before."],"A Picture is Worth a Thousand Words":["A Picture is Worth a Thousand Words"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Headings are separate blocks as well, which helps with the outline and organisation of your content."],"... like this one, which is right aligned.":["... like this one, which is right aligned."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting."],"Of Mountains & Printing Presses":["Of Mountains & Printing Presses"],"Welcome to the Gutenberg Editor":["Welcome to the Gutenberg Editor"],"block name\x04More":["More"],"button to expand options\x04More":["More"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Alt Text (Alternative Text)":["Alt Text (alternative text)"],"Reusable Block":["Reusable Block"],"Unique identifier for the object.":["Unique identifier for the object."],"Untitled Reusable Block":["Untitled Reusable Block"],Small:["Small"],"(%s: %s)":["(%s: %s)"],Reusable:["Reusable"],"(current %s: %s)":["(current %s: %s)"],"Remove from Reusable Blocks":["Remove from Reusable Blocks"],"Add to Reusable Blocks":["Add to Reusable Blocks"],"Keep as HTML":["Keep as HTML"],"Edit URL":["Edit URL"],"Color Settings":["Colour Settings"],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Editor publish":["Editor publish"],Muted:["Muted"],"Video Settings":["Video Settings"],"recent comments":["recent comments"],"Latest Comments":["Latest Comments"],"Display Excerpt":["Display Excerpt"],"Display Date":["Display Date"],"Display Avatar":["Display Avatar"],"Latest Comments Settings":["Latest Comments Settings"],"Number of Comments":["Number of Comments"],"Background Opacity":["Background Opacity"],Auto:["Auto"],Preload:["Preload"],"Audio Settings":["Audio Settings"],"Display a monthly archive of your posts.":["Display a monthly archive of your posts."],"Display as Dropdown":["Display as Dropdown"],"Show Post Counts":["Show Post Counts"],"Archives Settings":["Archives Settings"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg/"],Support:["Support"],"No comments to show.":["No comments to show."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["Select Post"],"Select Week":["Select Week"],"Select Day":["Select Day"],"Select Month":["Select Month"],"Select Year":["Select Year"],Archives:["Archives"],"Very dark gray":["Very dark grey"],"Cyan bluish gray":["Cyan bluish grey"],"Very light gray":["Very light grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Inline image":["Inline image"],"Available block types":["Available block types"],"Transform To:":["Transform To:"],"Remove Block":["Remove Block","Remove Blocks"],"Open publish panel":["Open publish panel"],Dots:["Dots"],"Wide Line":["Wide Line"],Large:["Large"],"Show download button":["Show download button"],"Download button settings":["Download button settings"],"Link To":["Link To"],"Text link settings":["Text link settings"],pdf:["pdf"],document:["document"],"Copy URL":["Copy URL"],"Write file name\u2026":["Write file name\u2026"],"Edit file":["Edit file"],File:["File"],"A single column within a columns block.":["A single column within a columns block."],Column:["Column"],Outline:["Outline"],Loop:["Loop"],Autoplay:["Autoplay"],"Playback Controls":["Playback Controls"],"Close dialog":["Close dialogue"],"Sorry, this file type is not permitted for security reasons.":["Sorry, this file type is not permitted for security reasons."],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you."],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Replace image":["Replace image"],"Remove image":["Remove image"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"This file exceeds the maximum upload size for this site.":["This file exceeds the maximum upload size for this site."],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],Autosaving:["Autosaving"],"Enter URL here\u2026":["Enter URL here\u2026"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Insert a table \u2014 perfect for sharing charts and data.":["Insert a table \u2014 perfect for sharing charts and data."],"Fixed width table cells":["Fixed width table cells"],"Table Settings":["Table Settings"],"Add text that respects your spacing and tabs, and also allows styling.":["Add text that respects your spacing and tabs, and also allows styling."],"Display a list of your most recent posts.":["Display a list of your most recent posts."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like."],"Error loading block: %s":["Error loading block: %s"],"Unknown error":["Unknown error"],"Embed Handler":["Embed Handler"],"term\x04Remove %s":["Remove %s"],"Copy the permalink":["Copy the permalink"],"Permalink copied":["Permalink copied"],"Height in pixels":["Height in pixels"],"Spacer Settings":["Spacer Settings"],Spacer:["Spacer"],"Toggle to show a large initial letter.":["Toggle to show a large initial letter."],"Showing large initial letter.":["Showing large initial letter."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Color code: %s":["Colour code: %s"],"Skip to the selected block":["Skip to the selected block"],"Publish\u2026":["Publish\u2026"],"Schedule\u2026":["Schedule\u2026"],"Edit post permalink":["Edit post permalink"],"Show Block Settings":["Show Block Settings"],"Hide Block Settings":["Hide Block Settings"],"Block settings closed":["Block settings closed"],"Close plugin":["Close plugin"],"Link settings":["Link settings"],Unlink:["Unlink"],"Page break":["Page break"],pagination:["pagination"],"next page":["next page"],"Image Size":["Image Size"],Height:["Height"],Width:["Width"],"Image Dimensions":["Image Dimensions"],"Thumbnails are not cropped.":["Thumbnails are not cropped."],"Thumbnails are cropped to align.":["Thumbnails are cropped to align."],"Media Library":["Media Library"],Advanced:["Advanced"],"Add item":["Add item"],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn\u2019t match the template assigned to your post type.":["The content of your post doesn\u2019t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Statistics":["Document Statistics"],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],Scheduled:["Scheduled"],"Scheduling\u2026":["Scheduling\u2026"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],Plugins:["Plugins"],"Custom Size":["Custom Size"],"Layout Elements":["Layout Elements"],"term\x04%s removed":["%s removed"],"term\x04%s added":["%s added"],"imperative verb\x04Preview":["Preview"],"Block deleted.":["Block deleted."],"Block updated.":["Block updated."],"Block created.":["Block created."],"Trashing failed":["Binning failed"],"Updating failed.":["Updating failed."],"Scheduling failed.":["Scheduling failed."],"Publishing failed.":["Publishing failed."],"View Post":["View Post"],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Document Outline":["Document Outline"],Paragraphs:["Paragraphs"],Headings:["Headings"],Words:["Words"],"Content structure":["Content structure"],Public:["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protected with a password you choose. Only those with the password can view this post."],"Password Protected":["Password Protected"],"Only visible to site admins and editors.":["Only visible to site admins and editors."],Private:["Private"],"Visible to everyone.":["Visible to everyone."],"Post Visibility":["Post Visibility"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Move to Trash":["Move to Bin"],"Parent Term":["Parent Term"],"Parent Category":["Parent Category"],"Add new term":["Add new term"],"Add new category":["Add new category"],Term:["Term"],Tag:["Tag"],"Add New Term":["Add New Term"],"Add New Tag":["Add New Tag"],"Switch to Draft":["Switch to Draft"],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],Immediately:["Immediately"],"Save Draft":["Save Draft"],Saving:["Saving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Are you ready to publish?":["Are you ready to publish?"],"Copy Link":["Copy Link"],"What\u2019s next?":["What\u2019s next?"],"is now live.":["is now live."],Published:["Published"],Schedule:["Schedule"],Update:["Update"],"Submit for Review":["Submit for Review"],"Updating\u2026":["Updating\u2026"],"Publishing\u2026":["Publishing\u2026"],"Allow Pingbacks & Trackbacks":["Allow Pingbacks & Trackbacks"],"Permalink:":["Permalink:"],"Pending Review":["Pending Review"],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suggestion:"],"Post Format":["Post Format"],Chat:["Chat"],Status:["Status"],Standard:["Standard"],Aside:["Aside"],"Set Featured Image":["Set Featured Image"],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"Allow Comments":["Allow Comments"],"Template:":["Template:"],"no parent":["no parent"],"no title":["no title"],Order:["Order"],"No blocks found.":["No blocks found."],"%d result found.":["%d result found.","%d results found."],Saved:["Saved"],Embeds:["Embeds"],Blocks:["Blocks"],"Search for a block":["Search for a block"],"Add block":["Add block"],"Add %s":["Add %s"],"Copy Error":["Copy Error"],"Copy Post Text":["Copy Post Text"],"Attempt Recovery":["Attempt Recovery"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],Undo:["Undo"],Redo:["Redo"],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Block Styles":["Block Styles"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it."],"Convert to Regular Block":["Convert to Regular Block"],"More options":["More options"],"Edit visually":["Edit visually"],Duplicate:["Duplicate"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Block %1$s is at the beginning of the content and can\u2019t be moved %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Block %1$s is at the end of the content and can\u2019t be moved %2$s"],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Edit as HTML":["Edit as HTML"],"Convert to Blocks":["Convert to Blocks"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"Transform into:":["Transform into:"],Remove:["Remove"],"Find original":["Find original"],"Copy All Content":["Copy All Content"],"Copied!":["Copied!"],"Additional settings are now available in the Editor block settings sidebar":["Additional settings are now available in the Editor block settings sidebar"],Visibility:["Visibility"],"Status & Visibility":["Status & Visibility"],"Page Attributes":["Page Attributes"],Block:["Block"],Document:["Document"],"Featured Image":["Featured Image"],"Close settings":["Close settings"],"Editor content":["Editor content"],Tools:["Tools"],Editor:["Editor"],"Code Editor":["Code Editor"],"Visual Editor":["Visual Editor"],"Editor top bar":["Editor top bar"],Settings:["Settings"],Reset:["Reset"],"Dismiss this notice":["Dismiss this notice"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Drop files to upload":["Drop files to upload"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["An unknown error occurred."],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"(no title)":["(no title)"],URL:["URL"],Submit:["Submit"],Close:["Close"],"Insert link":["Insert link"],"Edit link":["Edit link"],Link:["Link"],Strikethrough:["Strikethrough"],Italic:["Italic"],Bold:["Bold"],"Remove link":["Remove link"],"Number of items":["Number of items"],All:["All"],Category:["Category"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Oldest to Newest"],"Newest to Oldest":["Newest to Oldest"],"Order by":["Order by"],Select:["Select"],"Select or Upload Media":["Select or Upload Media"],Video:["Video"],"Edit video":["Edit video"],"Write\u2026":["Write\u2026"],poetry:["poetry"],Verse:["Verse"],"New Column":["New Column"],"Delete Column":["Delete Column"],"Add Column After":["Add Column After"],"Add Column Before":["Add Column Before"],"Delete Row":["Delete Row"],"Add Row After":["Add Row After"],"Add Row Before":["Add Row Before"],"Edit table":["Edit table"],Table:["Table"],"Write subheading\u2026":["Write subheading\u2026"],"Write shortcode here\u2026":["Write shortcode here\u2026"],Shortcode:["Shortcode"],divider:["divider"],"horizontal-line":["horizontal-line"],Separator:["Separator"],Quote:["Quote"],"Write citation\u2026":["Write citation\u2026"],"Write quote\u2026":["Write quote\u2026"],Pullquote:["Pullquote"],"Write preformatted text\u2026":["Write preformatted text\u2026"],Preformatted:["Preformatted"],text:["text"],Paragraph:["Paragraph"],"Font Size":["Font Size"],"Drop Cap":["Drop Cap"],"Text Settings":["Text Settings"],"Read more":["Read more"],"Write list\u2026":["Write list\u2026"],"numbered list":["numbered list"],"ordered list":["ordered list"],"bullet list":["bullet list"],"Indent list item":["Indent list item"],"Outdent list item":["Outdent list item"],"Convert to ordered list":["Convert to ordered list"],"Convert to unordered list":["Convert to unordered list"],List:["List"],"recent posts":["recent posts"],"No posts found.":["No posts found."],"Latest Posts":["Latest Posts"],"Display post date":["Display post date"],"Grid view":["Grid view"],"List view":["List view"],photo:["photo"],"Image Settings":["Image Settings"],Image:["Image"],Preview:["Preview"],embed:["embed"],"Custom HTML":["Custom HTML"],subtitle:["subtitle"],title:["title"],Heading:["Heading"],"Write heading\u2026":["Write heading\u2026"],"Heading %d":["Heading %d"],Level:["Level"],"Heading Settings":["Heading Settings"],photos:["photos"],images:["images"],"Remove Image":["Remove Image"],None:["None"],"Media File":["Media File"],"Attachment Page":["Attachment Page"],"Crop Images":["Crop Images"],"Gallery Settings":["Gallery Settings"],Gallery:["Gallery"],Classic:["Classic Edit"],video:["video"],audio:["audio"],music:["music"],image:["image"],blog:["blog"],post:["post"],"Embedded content from %s":["Embedded content from %s"],"Enter URL to embed here\u2026":["Enter URL to embed here\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Embedding\u2026"],"Write title\u2026":["Write title\u2026"],"Fixed Background":["Fixed Background"],"Edit image":["Edit image"],Columns:["Columns"],Experiments:["Experiments"],Code:["Code"],"Write code\u2026":["Write code\u2026"],Categories:["Categories"],"Show Hierarchy":["Show Hierarchy"],"Show post counts":["Show post counts"],"Categories Settings":["Categories Settings"],"Add text\u2026":["Add text\u2026"],Button:["Button"],Apply:["Apply"],"Text Color":["Text Colour"],"Background Color":["Background Colour"],"Block has been deleted or is unavailable.":["Block has been deleted or is unavailable."],"Reusable Blocks":["Reusable Blocks"],Cancel:["Cancel"],Edit:["Edit"],"Edit audio":["Edit audio"],"Write caption\u2026":["Write caption\u2026"],"Use URL":["Use URL"],Audio:["Audio"],Upload:["Upload"],"Additional CSS Class(es)":["Additional CSS Class(es)"],"HTML Anchor":["HTML Anchor"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["This colour combination may be hard for people to read. Try using a brighter background colour and/or a darker text colour."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["This colour combination may be hard for people to read. Try using a darker background colour and/or a brighter text colour."],Clear:["Clear"],"Custom color picker":["Custom colour picker"],"Color: %s":["Colour: %s"],"Full Width":["Full width"],"Wide Width":["Wide width"],Widgets:["Widgets"],Formatting:["Formatting"],"Common Blocks":["Common Blocks"],"Align Right":["Align right"],"Align Center":["Align centre"],"Align Left":["Align left"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Printing since 1440. This is the development plugin for the new block editor in core."],"Add title":["Add title"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information."],Author:["Author"],Slug:["Slug"],Discussion:["Discussion"],"Custom Fields":["Custom Fields"],Excerpt:["Excerpt"],Publish:["Publish"],Metadata:["Metadata"],Save:["Save"],Documentation:["Documentation"],"Select Category":["Select Category"],"(Untitled)":["(Untitled)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg."],"Gutenberg Team":["Gutenberg Editor Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s ago"],"Block style name must be a string.":["Block style name must be a string."]}},835,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":["Display a legacy widget."],"Legacy Widget (Experimental)":["Legacy Widget (Experimental)"],"Change widget":["Change widget"],"Legacy Widget":["Legacy Widget"],"You don't have permissions to use widgets on this site.":["You don't have permissions to use widgets on this site."],"Select a legacy widget to display:":["Select a legacy widget to display:"],"There are no widgets available.":["There are no widgets available."],"Change block type or style":["Change block type or style"],"keyboard key\x04Space":["Space"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":[],"Search Terms":["Search Terms"],"Exit the Editor":["Exit the Editor"],"Block Manager":["Block Manager"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, you are not allowed to access widgets on this site."],"Widgets (beta)":["Widgets (beta)"],link:["link"],"Embedded content from %s can't be previewed in the editor.":["Embedded content from %s can't be previewed in the editor."],"Custom Color":["Custom Colour"],"Prompt visitors to take action with a button-style link.":["Prompt visitors to take action with a button-style link."],"Stick to the top of the blog":["Stick to the top of the blog"],"Read about permalinks":["Read about permalinks"],"The last part of the URL.":[],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["A cloud of your most used tags."],"Tag Cloud":["Tag Cloud"],Taxonomy:["Taxonomy"],"Tag Cloud Settings":["Tag Cloud Settings"],"- Select -":["- Select -"],Default:["Default"],find:["find"],"Help visitors find your content.":["Help visitors find your content."],Search:["Search"],"Add button text\u2026":["Add button text\u2026"],"Button text":["Button text"],"Optional placeholder\u2026":["Optional placeholder\u2026"],"Optional placeholder text":["Optional placeholder text"],"Add label\u2026":["Add label\u2026"],"Label text":["Label text"],"image %1$d of %2$d in gallery":["image %1$d of %2$d in gallery"],archive:["archive"],posts:["posts"],"A calendar of your site\u2019s posts.":["A calendar of your site\u2019s posts."],Calendar:["Calendar"],by:["by"],"An error has occurred, which probably means the feed is down. Try again later.":["An error has occurred, which probably means the feed is down. Try again later."],"RSS Error:":["RSS error:"],"block style\x04Default":["Default"],"Fullscreen mode deactivated":["Fullscreen mode deactivated"],"Fullscreen mode activated":["Fullscreen mode activated"],"Spotlight mode deactivated":["Spotlight mode deactivated"],"Spotlight mode activated":["Spotlight mode activated"],"Top toolbar deactivated":["Top Toolbar deactivated"],"Top toolbar activated":["Top Toolbar activated"],Back:["Back"],"Feature activated":["Feature activated"],"Feature deactivated":["Feature deactivated"],"Vertical Pos.":["Vertical Pos."],"Horizontal Pos.":["Horizontal Pos."],feed:["Feed"],atom:["Atom"],"Display entries from any RSS or Atom feed.":["Display entries from any RSS or Atom feed."],RSS:["RSS"],"Max number of words in excerpt":["Max number of words in excerpt"],"Display excerpt":["Display excerpt"],"Display date":["Display date"],"Display author":["Display author"],"RSS Settings":["RSS settings"],"Edit RSS URL":["Edit RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Content before this block will be shown in the excerpt on your archives page."],"Hide the excerpt on the full content page":["Hide the excerpt on the full content page"],"The excerpt is visible.":["The excerpt is visible."],"The excerpt is hidden.":["The excerpt is hidden."],"Sorry, this content could not be embedded.":["Sorry, this content could not be embedded."],"Embed Amazon Kindle content.":["Embed Amazon Kindle content."],ebook:["eBook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Embed Crowdsignal (formerly Polldaddy) content."],"Focal Point Picker":["Focal point picker"],Underline:["Underline"],"Attempt Block Recovery":["Attempt block recovery"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Content\u2026"],"button label\x04Convert to link":["Convert to link"],"button label\x04Try again":["Try again"],"Editor tips":["Editor tips"],"Block (selected)":["Block (selected)"],"Document (selected)":["Document (selected)"],"%d word":["%d word","%d words"],"Top Toolbar":["Top Toolbar"],"Link Rel":["Link rel"],"Link CSS Class":["Link CSS class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used."],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"(selected block)":["(selected block)"],"Block tools":["Block tools"],Permalink:["Permalink"],"This image has an empty alt attribute":["This image has an empty alt attribute"],"This image has an empty alt attribute; its file name is %s":["This image has an empty alt attribute; its file name is %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":["Add New"],"add new on admin bar\x04Block Area":[],"Link inserted.":["Link inserted."],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"%s block selected.":["%s block selected.","%s blocks selected."],Thumbnail:["Thumbnail"],"Full Size":["Full Size"],"Link selected.":["Link selected."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Block icon":["Block icon"],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":["Start writing or type / to choose a block"],"Empty block; start writing or type forward slash to choose a block":["Empty block; start writing or type forward slash to choose a block"],"Paragraph block":["Paragraph block"],"Page Break":["Page break"],"Stack on mobile":["Stack on mobile"],Annotation:["Annotation"],"Drag images, upload new ones or select files from your library.":["Drag images, upload new ones or select files from your library."],"blocks\x04Most Used":["Most Used"],"imperative verb\x04Resolve":["Resolve"],"font size name\x04Huge":["Huge"],"font size name\x04Large":["Large"],"font size name\x04Medium":["Medium"],"font size name\x04Small":["Small"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Import"],"button label\x04Download":["Download"],"button label\x04Embed":["Embed"],"block title\x04Embed":["Embed"],"block title\x04Classic":["Classic"],"block style\x04Large":["Large"],"%s (opens in a new tab)":["%s (opens in a new tab)"],"Link edited.":["Link edited."],"Link removed.":["Link removed."],media:["media"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Generating preview\u2026":["Generating preview\u2026"],"Edit or update the image":["Edit or update the image"],Media:["Media"],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Document tools":["Document tools"],"Document and block tools":["Document and block tools"],"Embed a video from your media library or upload a new one.":["Embed a video from your media library or upload a new one."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insert poetry. Use special spacing formats. Or quote song lyrics."],"Add white space between blocks and customize its height.":["Add white space between blocks and customise its height."],"Insert additional custom elements with a WordPress shortcode.":["Insert additional custom elements with a WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Create a break between ideas or sections with a horizontal separator."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Give special visual emphasis to a quote from your text."],"Start with the building block of all narrative.":["Start with the building block of all narrative."],"Separate your content into a multi-page experience.":["Separate your content into a multi-page experience."],"Set media and words side-by-side for a richer layout.":["Set media and words side-by-side for a richer layout."],"Media & Text Settings":["Media & Text Settings"],"Create a bulleted or numbered list.":["Create a bulleted or numbered list."],"Display a list of your most recent comments.":["Display a list of your most recent comments."],"Insert an image to make a visual statement.":["Insert an image to make a visual statement."],"Add custom HTML code and preview it as you edit.":["Add custom HTML code and preview it as you edit."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce new sections and organise content to help visitors (and search engines) understand the structure of your content."],"Display multiple images in a rich gallery.":["Display multiple images in a rich gallery."],"Add a link to a downloadable file.":["Add a link to a downloadable file."],"Embed videos, images, tweets, audio, and other content from external sources.":["Embed videos, images, tweets, audio, and other content from external sources."],"Resize for smaller devices":["Resize for smaller devices"],"This embed may not preserve its aspect ratio when the browser is resized.":["This embed may not preserve its aspect ratio when the browser is resized."],"This embed will preserve its aspect ratio when the browser is resized.":["This embed will preserve its aspect ratio when the browser is resized."],"Embed an Animoto video.":["Embed an Animoto video."],"Embed a Vimeo video.":["Embed a Vimeo video."],"Embed Flickr content.":["Embed Flickr content."],"Embed Spotify content.":["Embed Spotify content."],"Embed SoundCloud content.":["Embed SoundCloud content."],"Embed a WordPress post.":["Embed a WordPress post."],"Embed an Instagram post.":["Embed an Instagram post."],"Embed a Facebook post.":["Embed a Facebook post."],"Embed a WordPress.tv video.":["Embed a WordPress.tv video."],"Embed a VideoPress video.":["Embed a VideoPress video."],"Embed a Tumblr post.":["Embed a Tumblr post."],"Embed a TED video.":["Embed a TED video."],"Embed Speaker Deck content.":["Embed Speaker Deck content."],"Embed a YouTube video.":["Embed a YouTube video."],"Embed SmugMug content.":["Embed SmugMug content."],"Embed Slideshare content.":["Embed Slideshare content."],"Embed Scribd content.":["Embed Scribd content."],"Embed Screencast content.":["Embed Screencast content."],"Embed ReverbNation content.":["Embed ReverbNation content."],"Embed a Reddit thread.":["Embed a Reddit thread."],"Embed Polldaddy content.":["Embed Polldaddy content."],"Embed Mixcloud content.":["Embed Mixcloud content."],"Embed a tweet.":["Embed a tweet."],"Embed Meetup.com content.":["Embed Meetup.com content."],"Embed Kickstarter content.":["Embed Kickstarter content."],"Embed Issuu content.":["Embed Issuu content."],"Embed Imgur content.":["Embed Imgur content."],"Embed Hulu content.":["Embed Hulu content."],"Embed a Dailymotion video.":["Embed a Dailymotion video."],"Embed CollegeHumor content.":["Embed CollegeHumor content."],"Embed Cloudup content.":["Embed Cloudup content."],"Add an image or video with a text overlay \u2014 great for headers.":["Add an image or video with a text overlay \u2014 great for headers."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Use the WordPress Classic Editor."],"Display a list of all categories.":["Display a list of all categories."],"Embed a simple audio player.":["Embed a simple audio player."],"noun\x04View":["View"],"editor button\x04Left to right":["Left to right"],"Save as Pending":["Save as Pending"],"%s address":["%s address"],"Paste or type URL":["Paste or type URL"],"Insert from URL":["Insert from URL"],"Block Navigator":[],Styles:["Styles"],"Advanced Panels":["Advanced Panels"],"Document Panels":["Document Panels"],General:["General"],"Open the block navigation menu.":["Open the block navigation menu."],"Work without distraction":["Work without distraction"],"Focus on one block at a time":["Focus on one block at a time"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],Options:["Options"],"(opens in a new tab)":["(opens in a new tab)"],Minutes:["Minutes"],Hours:["Hours"],Time:["Time"],Year:["Year"],Day:["Day"],December:["December"],November:["November"],October:["October"],September:["September"],August:["August"],July:["July"],June:["June"],May:["May"],April:["April"],March:["March"],February:["February"],January:["January"],Month:["Month"],Date:["Date"],"Go to the first (home) or last (end) day of a week.":["Go to the first (home) or last (end) day of a week."],"Home/End":["Home/End"],"Home and End":["Home and End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Move backward (PgUp) or forward (PgDn) by one month."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":["Move backward (up) or forward (down) by one week."],"Up and Down Arrows":["Up and Down Arrows"],"Move backward (left) or forward (right) by one day.":["Move backward (left) or forward (right) by one day."],"Left and Right Arrows":["Left and Right Arrows"],"Select the date in focus.":["Select the date in focus."],"Navigating with a keyboard":["Navigating with a keyboard"],"Click the desired day to select it.":["Click the desired day to select it."],"Click the right or left arrows to select other months in the past or the future.":["Click the right or left arrows to select other months in the past or the future."],"Click to Select":["Click to Select"],"Calendar Help":["Calendar Help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use your arrow keys to change the base colour. Move up to lighten the colour, down to darken, left to decrease saturation, and right to increase saturation."],"Choose a shade":["Choose a shade"],"Change color format":["Change colour format"],"Color value in HSL":["Colour value in HSL"],"Color value in RGB":["Colour value in RGB"],"Color value in hexadecimal":["Colour value in hexadecimal"],"RGB mode active":["RGB mode active"],"Hex color mode active":["Hex colour mode active"],"Hue/saturation/lightness mode active":["Hue/Saturation/Lightness mode active"],"Move the arrow left or right to change hue.":["Move the arrow left or right to change hue."],"Hue value in degrees, from 0 to 359.":["Hue value in degrees, from 0 to 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha value, from 0 (transparent) to 1 (fully opaque)."],Stripes:["Stripes"],"Your site doesn\u2019t include support for this block.":["Your site doesn\u2019t include support for this block."],"Unrecognized Block":["Unrecognized Block"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely."],"Media area":["Media area"],"Media & Text":["Media & Text"],"Show media on right":["Show media on right"],"Show media on left":["Show media on left"],"Open in New Tab":["Open in New Tab"],Cover:["Cover"],"Border Settings":[],"Edit media":["Edit media"],Medium:["Medium"],"Paste URL or type to search":["Paste URL or type to search"],Terms:["Terms"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Take Over":["Take Over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Another user is currently working on this post, which means you cannot make changes, unless you take over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s is currently working on this post, which means you cannot make changes, unless you take over."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved."],Avatar:["Avatar"],"This post is already being edited.":["This post is already being edited."],"Someone else has taken over this post.":["Someone else has taken over this post."],"This block contains unexpected or invalid content.":["This block contains unexpected or invalid content."],"Resolve Block":["Resolve Block"],"Convert to HTML":["Convert to HTML"],"This block can only be used once.":["This block can only be used once."],"Exit Code Editor":["Exit Code Editor"],"Editing Code":["Editing Code"],"Solid Color":["Solid Colour"],"Main Color":["Main Colour"],HTML:["HTML"],"Write HTML\u2026":["Write HTML\u2026"],"Media Settings":["Media Settings"],"Overlay Color":["Overlay Colour"],Overlay:["Overlay"],"Insert Media":["Insert Media"],"Reusable block imported successfully!":["Reusable block imported successfully!"],"Invalid Reusable Block JSON file":["Invalid Reusable Block JSON file"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],Backtick:["Backtick"],Period:["Period"],Comma:["Comma"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],Current:["Current"],"After Conversion":["After Conversion"],"Change alignment":[],"Change text alignment":[],"%d block":["%d block","%d blocks"],Escape:["Escape"],"Forward-slash":["Forward-slash"],"No archives to show.":["No archives to show."],"This file is empty.":["This file is empty."],"Sorry, this file type is not supported here.":["Sorry, this file type is not supported here."],"Manage All Reusable Blocks":["Manage All Reusable Blocks"],Title:["Title"],"Fullscreen Mode":["Fullscreen Mode"],"Beautiful landscape":["Beautiful landscape"],"Close panel":["Close panel"],"Convert to Classic Block":["Convert to Classic Block"],"Remove Poster Image":["Remove Poster Image"],"Select Poster Image":["Select Poster Image"],"Poster Image":["Poster Image"],"This block is deprecated. Please use the Columns block instead.":["This block is deprecated. Please use the Columns block instead."],"Text Columns (deprecated)":["Text Columns (deprecated)"],"Row Count":["Row Count"],"Column Count":["Column Count"],"This block is deprecated. Please use the Paragraph block instead.":["This block is deprecated. Please use the Paragraph block instead."],"Subheading (deprecated)":["Subheading (deprecated)"],blockquote:["blockquote"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Spotlight Mode":["Spotlight Mode"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Insert After":["Insert After"],"Insert Before":["Insert Before"],"Move %1$d block from position %2$d down by one place":["Move %1$d block from position %2$d down by one place","Move %1$d blocks from position %2$d down by one place"],"Move %1$d block from position %2$d up by one place":["Move %1$d block from position %2$d up by one place","Move %1$d blocks from position %2$d up by one place"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["movie"],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Clear selection."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Selection shortcuts":["Selection shortcuts"],"Switch between Visual Editor and Code Editor.":["Switch between Visual Editor and Code Editor."],"Navigate to the previous part of the editor (alternative).":["Navigate to the previous part of the editor (alternative)."],"Navigate to the next part of the editor (alternative).":["Navigate to the next part of the editor (alternative)."],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the settings sidebar.":["Show or hide the settings sidebar."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Keyboard Shortcuts":["Keyboard Shortcuts"],"Thanks for testing Gutenberg!":["Thanks for testing Gutenberg Editor!"],"Help build Gutenberg":["Help build Gutenberg Editor"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository."],"The WordPress community":["The WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sure, the full-wide image can be pretty big. But sometimes the image is worth it."],"Accessibility is important — don’t forget image alt attribute":["Accessibility is important — don’t forget image alt attribute"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:"],"Visual Editing":["Visual Editing"],"And Lists like this one of course :)":["And Lists like this one of course :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout blocks, like Buttons, Hero Images, Separators, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Embeds, like YouTube, Tweets, or other WordPress posts."],Galleries:["Galleries"],"Images & Videos":["Images & Videos"],"Text & Headings":["Text & Headings"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing."],"The Inserter Tool":["The Inserter Tool"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before."],"A Picture is Worth a Thousand Words":["A Picture is Worth a Thousand Words"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Headings are separate blocks as well, which helps with the outline and organisation of your content."],"... like this one, which is right aligned.":["... like this one, which is right aligned."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting."],"Of Mountains & Printing Presses":["Of Mountains & Printing Presses"],"Welcome to the Gutenberg Editor":["Welcome to the Gutenberg Editor"],"block name\x04More":["More"],"button to expand options\x04More":["More"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Alt Text (Alternative Text)":["Alt Text (alternative text)"],"Reusable Block":["Reusable Block"],"Unique identifier for the object.":["Unique identifier for the object."],"Untitled Reusable Block":["Untitled Reusable Block"],Small:[],"(%s: %s)":["(%s: %s)"],Reusable:["Reusable"],"(current %s: %s)":["(current %s: %s)"],"Remove from Reusable Blocks":["Remove from Reusable Blocks"],"Add to Reusable Blocks":["Add to Reusable Blocks"],"Keep as HTML":["Keep as HTML"],"Edit URL":["Edit URL"],"Color Settings":["Colour Settings"],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Editor publish":["Editor publish"],Muted:["Muted"],"Video Settings":["Video Settings"],"recent comments":["recent comments"],"Latest Comments":["Latest Comments"],"Display Excerpt":["Display Excerpt"],"Display Date":["Display Date"],"Display Avatar":["Display Avatar"],"Latest Comments Settings":["Latest Comments Settings"],"Number of Comments":["Number of Comments"],"Background Opacity":["Background Opacity"],Auto:["Auto"],Preload:["Preload"],"Audio Settings":["Audio Settings"],"Display a monthly archive of your posts.":["Display a monthly archive of your posts."],"Display as Dropdown":["Display as Dropdown"],"Show Post Counts":["Show Post Counts"],"Archives Settings":["Archives Settings"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Support"],"No comments to show.":["No comments to show."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["Select Post"],"Select Week":["Select Week"],"Select Day":["Select Day"],"Select Month":["Select Month"],"Select Year":["Select Year"],Archives:["Archives"],"Very dark gray":["Very dark grey"],"Cyan bluish gray":["Cyan bluish grey"],"Very light gray":["Very light grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Inline image":[],"Available block types":["Available block types"],"Transform To:":["Transform To:"],"Remove Block":["Remove Block"],"Open publish panel":["Open publish panel"],Dots:["Dots"],"Wide Line":["Wide Line"],Large:["Large"],"Show download button":[],"Download button settings":[],"Link To":["Link To"],"Text link settings":[],pdf:["pdf"],document:["document"],"Copy URL":["Copy URL"],"Write file name\u2026":["Write file name\u2026"],"Edit file":["Edit file"],File:["File"],"A single column within a columns block.":["A single column within a columns block."],Column:["Column"],Outline:["Outline"],Loop:["Loop"],Autoplay:["Autoplay"],"Playback Controls":["Playback Controls"],"Close dialog":["Close dialogue"],"Sorry, this file type is not permitted for security reasons.":["Sorry, this file type is not permitted for security reasons."],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you."],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Replace image":["Replace image"],"Remove image":["Remove image"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"This file exceeds the maximum upload size for this site.":["This file exceeds the maximum upload size for this site."],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],Autosaving:["Autosaving"],"Enter URL here\u2026":["Enter URL here\u2026"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Insert a table \u2014 perfect for sharing charts and data.":["Insert a table \u2014 perfect for sharing charts and data."],"Fixed width table cells":["Fixed width table cells"],"Table Settings":["Table Settings"],"Add text that respects your spacing and tabs, and also allows styling.":["Add text that respects your spacing and tabs, and also allows styling."],"Display a list of your most recent posts.":["Display a list of your most recent posts."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like."],"Error loading block: %s":["Error loading block: %s"],"Unknown error":["Unknown error"],"Embed Handler":["Embed Handler"],"term\x04Remove %s":["Remove %s"],"Copy the permalink":["Copy the permalink"],"Permalink copied":["Permalink copied"],"Height in pixels":["Height in pixels"],"Spacer Settings":["Spacer Settings"],Spacer:["Spacer"],"Toggle to show a large initial letter.":["Toggle to show a large initial letter."],"Showing large initial letter.":["Showing large initial letter."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Color code: %s":["Colour code: %s"],"Skip to the selected block":["Skip to the selected block"],"Publish\u2026":["Publish\u2026"],"Schedule\u2026":["Schedule\u2026"],"Edit post permalink":["Edit post permalink"],"Show Block Settings":["Show Block Settings"],"Hide Block Settings":["Hide Block Settings"],"Block settings closed":["Block settings closed"],"Close plugin":["Close plugin"],"Link settings":[],Unlink:["Unlink"],"Page break":["Page break"],pagination:["pagination"],"next page":["next page"],"Image Size":["Image Size"],Height:["Height"],Width:["Width"],"Image Dimensions":["Image Dimensions"],"Thumbnails are not cropped.":["Thumbnails are not cropped."],"Thumbnails are cropped to align.":["Thumbnails are cropped to align."],"Media Library":["Media Library"],Advanced:["Advanced"],"Add item":["Add item"],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn\u2019t match the template assigned to your post type.":["The content of your post doesn\u2019t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Statistics":["Document Statistics"],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],Scheduled:["Scheduled"],"Scheduling\u2026":["Scheduling\u2026"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],Plugins:["Plugins"],"Custom Size":["Custom Size"],"Layout Elements":["Layout Elements"],"term\x04%s removed":["%s removed"],"term\x04%s added":["%s added"],"imperative verb\x04Preview":["Preview"],"Block deleted.":["Block deleted."],"Block updated.":["Block updated."],"Block created.":["Block created."],"Trashing failed":["Binning failed"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Document Outline":["Document Outline"],Paragraphs:["Paragraphs"],Headings:["Headings"],Words:["Words"],"Content structure":["Content structure"],Public:["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protected with a password you choose. Only those with the password can view this post."],"Password Protected":["Password Protected"],"Only visible to site admins and editors.":["Only visible to site admins and editors."],Private:["Private"],"Visible to everyone.":["Visible to everyone."],"Post Visibility":["Post Visibility"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Move to Trash":[],"Parent Term":["Parent Term"],"Parent Category":["Parent Category"],"Add new term":["Add new term"],"Add new category":["Add new category"],Term:["Term"],Tag:["Tag"],"Add New Term":["Add New Term"],"Add New Tag":["Add New Tag"],"Switch to Draft":["Switch to Draft"],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],Immediately:["Immediately"],"Save Draft":["Save Draft"],Saving:["Saving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Are you ready to publish?":["Are you ready to publish?"],"Copy Link":["Copy Link"],"What\u2019s next?":["What\u2019s next?"],"is now live.":["is now live."],Published:["Published"],Schedule:["Schedule"],Update:["Update"],"Submit for Review":["Submit for Review"],"Updating\u2026":["Updating\u2026"],"Publishing\u2026":["Publishing\u2026"],"Allow Pingbacks & Trackbacks":["Allow Pingbacks & Trackbacks"],"Permalink:":["Permalink:"],"Pending Review":["Pending Review"],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suggestion:"],"Post Format":["Post Format"],Chat:["Chat"],Status:["Status"],Standard:["Standard"],Aside:["Aside"],"Set Featured Image":[],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"Allow Comments":["Allow Comments"],"Template:":["Template:"],"no parent":["no parent"],"no title":["no title"],Order:["Order"],"No blocks found.":["No blocks found."],"%d result found.":["%d result found.","%d results found."],Saved:["Saved"],Embeds:["Embeds"],Blocks:["Blocks"],"Search for a block":["Search for a block"],"Add block":["Add block"],"Add %s":["Add %s"],"Copy Error":["Copy Error"],"Copy Post Text":["Copy Post Text"],"Attempt Recovery":["Attempt Recovery"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],Undo:["Undo"],Redo:["Redo"],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Block Styles":["Block Styles"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it."],"Convert to Regular Block":["Convert to Regular Block"],"More options":["More options"],"Edit visually":["Edit visually"],Duplicate:["Duplicate"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Edit as HTML":["Edit as HTML"],"Convert to Blocks":["Convert to Blocks"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"Transform into:":["Transform into:"],Remove:["Remove"],"Find original":["Find original"],"Copy All Content":["Copy All Content"],"Copied!":["Copied!"],"Additional settings are now available in the Editor block settings sidebar":["Additional settings are now available in the Editor block settings sidebar"],Visibility:["Visibility"],"Status & Visibility":["Status & Visibility"],"Page Attributes":["Page Attributes"],Block:["Block"],Document:["Document"],"Featured Image":["Featured Image"],"Close settings":["Close settings"],"Editor content":["Editor content"],Tools:["Tools"],Editor:["Editor"],"Code Editor":["Code Editor"],"Visual Editor":["Visual Editor"],"Editor top bar":["Editor top bar"],Settings:["Settings"],Reset:["Reset"],"Dismiss this notice":["Dismiss this notice"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Drop files to upload":["Drop files to upload"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["An unknown error occurred."],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"(no title)":["(no title)"],URL:["URL"],Submit:["Submit"],Close:["Close"],"Insert link":[],"Edit link":[],Link:["Link"],Strikethrough:["Strikethrough"],Italic:["Italic"],Bold:["Bold"],"Remove link":[],"Number of items":["Number of items"],All:["All"],Category:["Category"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Oldest to Newest"],"Newest to Oldest":["Newest to Oldest"],"Order by":["Order by"],Select:["Select"],"Select or Upload Media":["Select or Upload Media"],Video:["Video"],"Edit video":["Edit video"],"Write\u2026":["Write\u2026"],poetry:["poetry"],Verse:["Verse"],"New Column":["New Column"],"Delete Column":["Delete Column"],"Add Column After":["Add Column After"],"Add Column Before":["Add Column Before"],"Delete Row":["Delete Row"],"Add Row After":["Add Row After"],"Add Row Before":["Add Row Before"],"Edit table":["Edit table"],Table:["Table"],"Write subheading\u2026":["Write subheading\u2026"],"Write shortcode here\u2026":["Write shortcode here\u2026"],Shortcode:["Shortcode"],divider:["divider"],"horizontal-line":["horizontal-line"],Separator:["Separator"],Quote:["Quote"],"Write citation\u2026":["Write citation\u2026"],"Write quote\u2026":["Write quote\u2026"],Pullquote:["Pullquote"],"Write preformatted text\u2026":["Write preformatted text\u2026"],Preformatted:["Preformatted"],text:["text"],Paragraph:["Paragraph"],"Font Size":["Font Size"],"Drop Cap":["Drop Cap"],"Text Settings":["Text Settings"],"Read more":["Read more"],"Write list\u2026":["Write list\u2026"],"numbered list":["numbered list"],"ordered list":["ordered list"],"bullet list":["bullet list"],"Indent list item":["Indent list item"],"Outdent list item":["Outdent list item"],"Convert to ordered list":["Convert to ordered list"],"Convert to unordered list":["Convert to unordered list"],List:["List"],"recent posts":["recent posts"],"No posts found.":["No posts found."],"Latest Posts":["Latest Posts"],"Display post date":["Display post date"],"Grid view":[],"List view":[],photo:["photo"],"Image Settings":["Image Settings"],Image:["Image"],Preview:["Preview"],embed:["embed"],"Custom HTML":["Custom HTML"],subtitle:["subtitle"],title:["title"],Heading:["Heading"],"Write heading\u2026":["Write heading\u2026"],"Heading %d":["Heading %d"],Level:["Level"],"Heading Settings":["Heading Settings"],photos:["photos"],images:["images"],"Remove Image":["Remove Image"],None:["None"],"Media File":["Media File"],"Attachment Page":["Attachment Page"],"Crop Images":["Crop Images"],"Gallery Settings":["Gallery Settings"],Gallery:["Gallery"],Classic:["Classic Edit"],video:["video"],audio:["audio"],music:["music"],image:["image"],blog:["blog"],post:["post"],"Embedded content from %s":["Embedded content from %s"],"Enter URL to embed here\u2026":["Enter URL to embed here\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Embedding\u2026"],"Write title\u2026":["Write title\u2026"],"Fixed Background":["Fixed Background"],"Edit image":["Edit image"],Columns:["Columns"],Experiments:[],Code:["Code"],"Write code\u2026":["Write code\u2026"],Categories:["Categories"],"Show Hierarchy":["Show Hierarchy"],"Show post counts":["Show post counts"],"Categories Settings":["Categories Settings"],"Add text\u2026":["Add text\u2026"],Button:["Button"],Apply:["Apply"],"Text Color":["Text Colour"],"Background Color":["Background Colour"],"Block has been deleted or is unavailable.":["Block has been deleted or is unavailable."],"Reusable Blocks":["Reusable Blocks"],Cancel:["Cancel"],Edit:["Edit"],"Edit audio":["Edit audio"],"Write caption\u2026":["Write caption\u2026"],"Use URL":["Use URL"],Audio:["Audio"],Upload:["Upload"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML Anchor"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["This colour combination may be hard for people to read. Try using a brighter background colour and/or a darker text colour."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["This colour combination may be hard for people to read. Try using a darker background colour and/or a brighter text colour."],Clear:["Clear"],"Custom color picker":["Custom colour picker"],"Color: %s":["Colour: %s"],"Full Width":[],"Wide Width":[],Widgets:["Widgets"],Formatting:["Formatting"],"Common Blocks":["Common Blocks"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Printing since 1440. This is the development plugin for the new block editor in core."],"Add title":["Add title"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["Author"],Slug:["Slug"],Discussion:["Discussion"],"Custom Fields":["Custom Fields"],Excerpt:["Excerpt"],Publish:["Publish"],Metadata:["Metadata"],Save:["Save"],Documentation:["Documentation"],"Select Category":["Select Category"],"(Untitled)":["(Untitled)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg."],"Gutenberg Team":["Gutenberg Editor Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s ago"],"Block style name must be a string.":[]}},836,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:["\u03a3\u03ba\u03bf\u03c4\u03b5\u03b9\u03bd\u03cc"],Light:["\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc"],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":["\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf\u03c5"],"Header section":[],"Sorting and Filtering":["\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03c6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1"],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":["(\u03c0\u03b5\u03b9\u03c1\u03b1\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc)"],"Block Areas":["\u03a0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ad\u03c2 \u03a0\u03bb\u03b1\u03b9\u03c3\u03af\u03c9\u03bd"],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:["\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae"],wrapper:[],container:[],"A block that groups other blocks.":[],Group:["Group"],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":["\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u0395\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2"],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":["\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03bc\u03b9\u03ba\u03c1\u03bf\u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2"],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":["\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03b4\u03b9\u03ba\u03b1\u03b9\u03ce\u03bc\u03b1\u03c4\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7\u03c2 \u03bc\u03b9\u03ba\u03c1\u03bf\u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ce\u03bd \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf."],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":["\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03c4\u03cd\u03c0\u03bf\u03c5 \u03ae \u03c3\u03c4\u03c5\u03bb \u03bc\u03c0\u03bb\u03bf\u03ba"],"keyboard key\x04Space":["\u039a\u03b5\u03bd\u03cc"],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":["\u038c\u03c1\u03bf\u03b9 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2"],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:["\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf"],find:["\u03b5\u03cd\u03c1\u03b5\u03c3\u03b7"],"Help visitors find your content.":["\u0392\u03bf\u03b7\u03b8\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c0\u03c4\u03b5\u03c2 \u03bd\u03b1 \u03b2\u03c1\u03bf\u03c5\u03bd \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03c3\u03b1\u03c2."],Search:["\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7"],"Add button text\u2026":["\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03bf\u03c5\u03bc\u03c0\u03b9\u03bf\u03cd..."],"Button text":["\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03ba\u03bf\u03c5\u03bc\u03c0\u03b9\u03bf\u03cd"],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":["\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1\u03c2..."],"Label text":["\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1\u03c2"],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":["\u0397 \u03ac\u03bd\u03c9 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b7"],Back:["\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae"],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:["RSS"],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":["\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2"],"Display author":["\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7"],"RSS Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 RSS "],"Edit RSS URL":["\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 RSS URL "],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":["\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03b1\u03c0\u03bf\u03c3\u03c0\u03ac\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c0\u03bb\u03ae\u03c1\u03bf\u03c5\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5"],"The excerpt is visible.":["\u03a4\u03bf \u03b1\u03c0\u03cc\u03c3\u03c0\u03b1\u03c3\u03bc\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bf\u03c1\u03b1\u03c4\u03cc."],"The excerpt is hidden.":["\u03a4\u03bf \u03b1\u03c0\u03cc\u03c3\u03c0\u03b1\u03c3\u03bc\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03c1\u03c5\u03c6\u03cc"],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:["\u03a5\u03c0\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b9\u03c3\u03b7"],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":["\u03bb\u03ad\u03be\u03b5\u03b9\u03c2"],"content placeholder\x04Content\u2026":["\u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf..."],"button label\x04Convert to link":["\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c3\u03b5 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf"],"button label\x04Try again":["\u03a0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03c4\u03b5 \u03be\u03b1\u03bd\u03ac"],"Editor tips":["\u03a3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03ad\u03c2 \u03c3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7"],"Block (selected)":["\u039c\u03c0\u03bb\u03bf\u03ba (\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf)"],"Document (selected)":[],"%d word":["%d \u03bb\u03ad\u03be\u03b7","%d \u03bb\u03ad\u03be\u03b5\u03b9\u03c2"],"Top Toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":["\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 \u03bc\u03c0\u03bb\u03bf\u03ba"],Permalink:["\u039c\u03cc\u03bd\u03b9\u03bc\u03bf\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2"],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":["\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u039d\u03ad\u03bf\u03c5"],"add new on admin bar\x04Block Area":[],"Link inserted.":["\u0388\u03b3\u03b9\u03bd\u03b5 \u03b5\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5."],"Warning: the link has been inserted but may have errors. Please test it.":["\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7: \u03ad\u03b3\u03b9\u03bd\u03b5 \u03b5\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c4\u03bf\u03c5 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5 \u03b1\u03bb\u03bb\u03ac \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03b1. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5, \u03b5\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c4\u03bf\u03bd."],"%s block selected.":[],Thumbnail:["\u039c\u03b9\u03ba\u03c1\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b1"],"Full Size":["\u03a0\u03bb\u03ae\u03c1\u03b5\u03c2 \u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2"],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],Annotation:[],"Drag images, upload new ones or select files from your library.":[],"blocks\x04Most Used":[],"imperative verb\x04Resolve":[],"font size name\x04Huge":["\u03a4\u03b5\u03c1\u03ac\u03c3\u03c4\u03b9\u03bf"],"font size name\x04Large":["\u039c\u03b5\u03b3\u03ac\u03bb\u03bf"],"font size name\x04Medium":["\u039c\u03b5\u03c3\u03b1\u03af\u03bf"],"font size name\x04Small":["\u039c\u03b9\u03ba\u03c1\u03cc"],"font size name\x04Normal":[],"keyboard button\x04Enter":[],"button label\x04Import":[],"button label\x04Download":[],"button label\x04Embed":[],"block title\x04Embed":[],"block title\x04Classic":[],"block style\x04Large":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],media:[],"Double-check your settings before publishing.":[],"Generating preview\u2026":[],"Edit or update the image":[],Media:[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text Settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay \u2014 great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\x04View":[],"editor button\x04Left to right":[],"Save as Pending":[],"%s address":["\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 %s"],"Paste or type URL":["\u0395\u03c0\u03b9\u03ba\u03bf\u03bb\u03bb\u03ae\u03c3\u03c4\u03b5 \u03ae \u03c0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf URL"],"Insert from URL":["\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b1\u03c0\u03cc URL"],"Block Navigator":[],Styles:[],"Advanced Panels":[],"Document Panels":[],General:[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],Options:["\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2"],"(opens in a new tab)":["(\u03b1\u03bd\u03bf\u03af\u03b3\u03b5\u03b9 \u03c3\u03b5 \u03bc\u03af\u03b1 \u03bd\u03ad\u03b1 \u03ba\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1)"],Minutes:["\u039b\u03b5\u03c0\u03c4\u03ac"],Hours:["\u038f\u03c1\u03b5\u03c2"],Time:[],Year:["\u0388\u03c4\u03bf\u03c2"],Day:["\u0397\u03bc\u03ad\u03c1\u03b1"],December:[],November:[],October:[],September:[],August:[],July:[],June:[],May:[],April:[],March:[],February:[],January:[],Month:["\u039c\u03ae\u03bd\u03b1\u03c2"],Date:["\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1"],"Go to the first (home) or last (end) day of a week.":["\u039c\u03b5\u03c4\u03b1\u03b2\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03b7\u03bd \u03c0\u03c1\u03ce\u03c4\u03b7 (\u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03bf home) \u03ae \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 (\u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03bf end) \u03b7\u03bc\u03ad\u03c1\u03b1 \u03bc\u03af\u03b1\u03c2 \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1\u03c2."],"Home/End":["Home/End"],"Home and End":["Home \u03ba\u03b1\u03b9 End"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u039c\u03b5\u03c4\u03b1\u03ba\u03b9\u03bd\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03c0\u03af\u03c3\u03c9 (\u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03bf PgUp) \u03ae \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03b5\u03bc\u03c0\u03c1\u03cc\u03c2 (\u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03bf PgDn) \u03ba\u03b1\u03c4\u03ac \u03ad\u03bd\u03b1 \u03bc\u03ae\u03bd\u03b1."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up \u03ba\u03b1\u03b9 Page Down"],"Move backward (up) or forward (down) by one week.":["\u039c\u03b5\u03c4\u03b1\u03ba\u03b9\u03bd\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03c0\u03af\u03c3\u03c9 (\u03b5\u03c0\u03ac\u03bd\u03c9 \u03b2\u03ad\u03bb\u03bf\u03c2) \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03b5\u03bc\u03c0\u03c1\u03cc\u03c2 (\u03ba\u03ac\u03c4\u03c9 \u03b2\u03ad\u03bb\u03bf\u03c2) \u03ba\u03b1\u03c4\u03ac \u03bc\u03af\u03b1 \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1."],"Up and Down Arrows":["\u0395\u03c0\u03ac\u03bd\u03c9 \u03ba\u03b1\u03b9 \u039a\u03ac\u03c4\u03c9 \u0392\u03ad\u03bb\u03b7"],"Move backward (left) or forward (right) by one day.":["\u039c\u03b5\u03c4\u03b1\u03ba\u03b9\u03bd\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03c0\u03af\u03c3\u03c9 (\u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03cc \u03b2\u03ad\u03bb\u03bf\u03c2) \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03b5\u03bc\u03c0\u03c1\u03cc\u03c2 (\u03b4\u03b5\u03be\u03af \u03b2\u03ad\u03bb\u03bf\u03c2) \u03ba\u03b1\u03c4\u03ac \u03bc\u03af\u03b1 \u03b7\u03bc\u03ad\u03c1\u03b1."],"Left and Right Arrows":["\u0391\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03cc \u03ba\u03b1\u03b9 \u0394\u03b5\u03be\u03af \u0392\u03ad\u03bb\u03bf\u03c2"],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],Stripes:[],"Your site doesn\u2019t include support for this block.":[],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:[],"Border Settings":[],"Edit media":[],Medium:[],"Paste URL or type to search":[],Terms:[],"Your work will be published at the specified date and time.":["\u03a4\u03bf \u03ac\u03c1\u03b8\u03c1\u03bf \u03c3\u03b1\u03c2 \u03b8\u03b1 \u03b4\u03b7\u03bc\u03bf\u03c3\u03b9\u03b5\u03c5\u03c4\u03b5\u03af \u03c4\u03b7\u03bd \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03ba\u03b1\u03b9 \u03ce\u03c1\u03b1."],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],Avatar:["Avatar"],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":["\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c3\u03b5 HTML"],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],HTML:["HTML"],"Write HTML\u2026":[],"Media Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd"],"Overlay Color":[],Overlay:[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":["\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b1\u03c0\u03cc \u03b1\u03c1\u03c7\u03b5\u03af\u03bf JSON"],Backtick:[],Period:[],Comma:[],"Change type of %d block":[],Current:[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],Escape:[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage All Reusable Blocks":[],Title:[],"Fullscreen Mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],blockquote:[],"Change the block type after adding a new paragraph.":[],"Spotlight Mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual Editor and Code Editor.":[],"Navigate to the previous part of the editor (alternative).":[],"Navigate to the next part of the editor (alternative).":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard Shortcuts":["\u03a3\u03c5\u03bd\u03c4\u03bf\u03bc\u03b5\u03cd\u03c3\u03b5\u03b9\u03c2 \u03a0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5"],"Thanks for testing Gutenberg!":["\u0395\u03c5\u03c7\u03b1\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd\u03bc\u03b5 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b4\u03bf\u03ba\u03b9\u03bc\u03ae \u03c4\u03bf\u03c5 Gutenberg!"],"Help build Gutenberg":["\u0392\u03bf\u03b7\u03b8\u03ae\u03c3\u03c4\u03b5 \u03c3\u03c4\u03b7\u03bd \u03ba\u03b1\u03c4\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03c4\u03bf\u03c5 Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":["\u0397 \u03ba\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03bf\u03c5 WordPress"],"Code is Poetry":["\u039f \u039a\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03a0\u03bf\u03af\u03b7\u03c3\u03b7"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:["\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ad\u03c2 \u0395\u03b9\u03ba\u03cc\u03bd\u03c9\u03bd"],"Images & Videos":["\u0395\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2 & \u0392\u03af\u03bd\u03c4\u03b5\u03bf"],"Text & Headings":["\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf & \u0395\u03c0\u03b9\u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b5\u03c2"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\x04More":[],"button to expand options\x04More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":[],Small:[],"(%s: %s)":[],Reusable:[],"(current %s: %s)":[],"Remove from Reusable Blocks":[],"Add to Reusable Blocks":[],"Keep as HTML":["\u0394\u03b9\u03b1\u03c4\u03ae\u03c1\u03b7\u03c3\u03b7 \u03c9\u03c2 HTML"],"Edit URL":["\u03a4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 URL"],"Color Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2"],"The response is not a valid JSON response.":[],"Editor publish":[],Muted:["\u03a3\u03b9\u03c9\u03c0\u03b7\u03bb\u03cc"],"Video Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0392\u03af\u03bd\u03c4\u03b5\u03bf"],"recent comments":["\u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 \u03c3\u03c7\u03cc\u03bb\u03b9\u03b1"],"Latest Comments":["\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03c3\u03c7\u03cc\u03bb\u03b9\u03b1"],"Display Excerpt":["\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b1\u03c0\u03bf\u03c3\u03c0\u03ac\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2"],"Display Date":["\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2"],"Display Avatar":["\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ac\u03b2\u03b1\u03c4\u03b1\u03c1"],"Latest Comments Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c6\u03ac\u03c4\u03c9\u03bd \u03c3\u03c7\u03bf\u03bb\u03af\u03c9\u03bd"],"Number of Comments":["\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c3\u03c7\u03bf\u03bb\u03af\u03c9\u03bd"],"Background Opacity":[],Auto:["\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03bf"],Preload:[],"Audio Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ae\u03c7\u03bf\u03c5"],"Display a monthly archive of your posts.":[],"Display as Dropdown":[],"Show Post Counts":[],"Archives Settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u03a5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7"],"No comments to show.":["\u03a7\u03c9\u03c1\u03af\u03c2 \u03c3\u03c7\u03cc\u03bb\u03b9\u03b1 \u03b3\u03b9\u03b1 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7."],"%1$s on %2$s":["%1$s \u03c3\u03c4\u03bf %2$s"],"Select Post":["\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ac\u03c1\u03b8\u03c1\u03bf"],"Select Week":["\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1"],"Select Day":["\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03b7\u03bc\u03ad\u03c1\u03b1"],"Select Month":["\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bc\u03ae\u03bd\u03b1"],"Select Year":["\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03c4\u03bf\u03c2"],Archives:[],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":["\u0391\u03bd\u03bf\u03b9\u03c7\u03c4\u03cc \u03c0\u03c1\u03ac\u03c3\u03b9\u03bd\u03bf \u03ba\u03c5\u03b1\u03bd\u03cc"],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":[],"Transform To:":[],"Remove Block":[],"Open publish panel":[],Dots:[],"Wide Line":[],Large:[],"Show download button":[],"Download button settings":[],"Link To":[],"Text link settings":[],pdf:["pdf"],document:["\u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf"],"Copy URL":[],"Write file name\u2026":[],"Edit file":[],File:[],"A single column within a columns block.":[],Column:[],Outline:[],Loop:[],Autoplay:[],"Playback Controls":[],"Close dialog":[],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":[],"Got it":[],"See next tip":[],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":["\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2"],"Remove image":["\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2"],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":[],"View the autosave":[],"There is an autosave of this post that is more recent than the version below.":[],Autosaving:[],"Enter URL here\u2026":[],"Pin to toolbar":[],"Unpin from toolbar":[],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c0\u03af\u03bd\u03b1\u03ba\u03b1"],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":[],"Error loading block: %s":[],"Unknown error":[],"Embed Handler":[],"term\x04Remove %s":["\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 %s"],"Copy the permalink":["\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03cc\u03bd\u03b9\u03bc\u03bf\u03c5 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5"],"Permalink copied":["\u039c\u03cc\u03bd\u03b9\u03bc\u03bf\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5"],"Height in pixels":["\u038e\u03c8\u03bf\u03c2 \u03c3\u03b5 pixels"],"Spacer Settings":[],Spacer:[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":["\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2: %s"],"Skip to the selected block":[],"Publish\u2026":["\u0394\u03b7\u03bc\u03bf\u03c3\u03af\u03b5\u03c5\u03c3\u03b7..."],"Schedule\u2026":[],"Edit post permalink":["\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03bc\u03cc\u03bd\u03b9\u03bc\u03bf\u03c5 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5"],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Link settings":[],Unlink:["\u0391\u03c0\u03bf\u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7"],"Page break":["\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2"],pagination:["\u03c3\u03b5\u03bb\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7"],"next page":["\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03c3\u03b5\u03bb\u03b9\u03b4\u03b1"],"Image Size":["\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2"],Height:["\u038e\u03c8\u03bf\u03c2"],Width:["\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2"],"Image Dimensions":["\u0394\u03b9\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2"],"Thumbnails are not cropped.":["\u039f\u03b9 \u03bc\u03b9\u03ba\u03c1\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2 \u03b4\u03b5\u03bd \u03b1\u03c0\u03bf\u03ba\u03cc\u03c0\u03b7\u03ba\u03b1\u03bd."],"Thumbnails are cropped to align.":[],"Media Library":["\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u03a0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd"],Advanced:[],"Add item":["\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5"],"Reset the template":[],"Keep it as is":[],"The content of your post doesn\u2019t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":["\u03a3\u03c4\u03b1\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u0395\u03b3\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5"],"is now scheduled. It will go live on":[],Scheduled:["\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03af\u03c3\u03c4\u03b7\u03ba\u03b5"],"Scheduling\u2026":[],"Code editor selected":[],"Visual editor selected":["\u0395\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b5 \u03bf \u03bf\u03c0\u03c4\u03b9\u03ba\u03cc\u03c2 \u03b4\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae\u03c2"],Plugins:["\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1"],"Custom Size":["\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2"],"Layout Elements":["\u0394\u03b9\u03ac\u03c4\u03b1\u03be\u03b7 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03c9\u03bd"],"term\x04%s removed":["%s \u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5"],"term\x04%s added":["%s \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5"],"imperative verb\x04Preview":["\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7"],"Block deleted.":["\u03a4\u03bf \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5."],"Block updated.":["\u03a4\u03bf \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5."],"Block created.":["\u03a4\u03bf \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5."],"Trashing failed":["\u0397 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":[],"Document Outline":[],Paragraphs:["\u03a0\u03b1\u03c1\u03ac\u03b3\u03c1\u03b1\u03c6\u03bf\u03b9"],Headings:["\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b5\u03c2"],Words:["\u039b\u03ad\u03be\u03b5\u03b9\u03c2"],"Content structure":[],Public:["\u0394\u03b7\u03bc\u03cc\u03c3\u03b9\u03bf"],"Protected with a password you choose. Only those with the password can view this post.":[],"Password Protected":["\u0388\u03c7\u03b5\u03b9 \u03c3\u03c5\u03bd\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc"],"Only visible to site admins and editors.":[],Private:["\u0399\u03b4\u03b9\u03c9\u03c4\u03b9\u03ba\u03cc"],"Visible to everyone.":[],"Post Visibility":[],"Would you like to privately publish this post now?":[],"Use a secure password":["\u03a7\u03c1\u03ae\u03c3\u03b7 \u03b1\u03c3\u03c6\u03b1\u03bb\u03bf\u03cd\u03c2 \u03c3\u03c5\u03bd\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03bf\u03cd"],"Create password":["\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c3\u03c5\u03bd\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03bf\u03cd"],"Move to Trash":[],"Parent Term":[],"Parent Category":["\u0393\u03bf\u03bd\u03b9\u03ba\u03ae \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1"],"Add new term":["\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03bd\u03ad\u03bf\u03c5 \u03cc\u03c1\u03bf\u03c5"],"Add new category":["\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03bd\u03ad\u03b1\u03c2 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2"],Term:["\u038c\u03c1\u03bf\u03c2"],Tag:["\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1"],"Add New Term":["\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u039d\u03ad\u03bf\u03c5 \u038c\u03c1\u03bf\u03c5"],"Add New Tag":["\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1\u03c2"],"Switch to Draft":["\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5 \u03c0\u03c1\u03cc\u03c7\u03b5\u03b9\u03c1\u03bf"],"Are you sure you want to unpublish this post?":[],Immediately:["\u0386\u03bc\u03b5\u03c3\u03b1"],"Save Draft":["\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c7\u03b5\u03af\u03c1\u03bf\u03c5"],Saving:["\u0393\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7"],"Publish:":["\u0394\u03b7\u03bc\u03bf\u03c3\u03af\u03b5\u03c5\u03c3\u03b7:"],"Visibility:":[],"Are you ready to publish?":[],"Copy Link":[],"What\u2019s next?":["\u03a4\u03b9 \u03b1\u03ba\u03bf\u03bb\u03bf\u03c5\u03b8\u03b5\u03af;"],"is now live.":[],Published:["\u0394\u03b7\u03bc\u03bf\u03c3\u03b9\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf"],Schedule:["\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03cc\u03c2"],Update:["\u0391\u03bd\u03b1\u03b2\u03ac\u03b8\u03bc\u03b9\u03c3\u03b7"],"Submit for Review":["\u03a5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae \u03b3\u03b9\u03b1 \u03ad\u03bb\u03b5\u03b3\u03c7\u03bf"],"Updating\u2026":[],"Publishing\u2026":[],"Allow Pingbacks & Trackbacks":[],"Permalink:":["\u039c\u03cc\u03bd\u03b9\u03bc\u03bf\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2:"],"Pending Review":["\u0393\u03b9\u03b1 \u03ad\u03bb\u03b5\u03b3\u03c7\u03bf"],"%d Revision":["%d \u03b1\u03bd\u03b1\u03b8\u03b5\u03ce\u03c1\u03b7\u03c3\u03b7",""],"Suggestion:":["\u03a0\u03c1\u03cc\u03c4\u03b1\u03c3\u03b7:"],"Post Format":["\u039c\u03bf\u03c1\u03c6\u03ae \u03ac\u03c1\u03b8\u03c1\u03bf\u03c5"],Chat:["\u03a3\u03c5\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7"],Status:["\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7"],Standard:["\u039a\u03b1\u03bd\u03bf\u03bd\u03b9\u03ba\u03cc"],Aside:[],"Set Featured Image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow Comments":["\u039d\u03b1 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c4\u03b1 \u03c3\u03c7\u03cc\u03bb\u03b9\u03b1"],"Template:":["\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf:"],"no parent":[],"no title":["\u03c7\u03c9\u03c1\u03af\u03c2 \u03c4\u03af\u03c4\u03bb\u03bf"],Order:["\u03a3\u03b5\u03b9\u03c1\u03ac"],"No blocks found.":[],"%d result found.":[],Saved:["\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b5"],Embeds:[],Blocks:["\u03a0\u03bb\u03b1\u03af\u03c3\u03b9\u03b1"],"Search for a block":[],"Add block":[],"Add %s":["\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 %s"],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],Undo:["\u0391\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7"],Redo:["\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7"],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":["\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2"],"Edit visually":[],Duplicate:[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":[],"Convert to Blocks":[],"Block: %s":[],"This block has encountered an error and cannot be previewed.":[],"No block selected.":[],"Transform into:":[],Remove:["\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7"],"Find original":[],"Copy All Content":[],"Copied!":["\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5!"],"Additional settings are now available in the Editor block settings sidebar":[],Visibility:["\u039f\u03c1\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1"],"Status & Visibility":["\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 & \u03bf\u03c1\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1"],"Page Attributes":["\u03a7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2"],Block:[],Document:[],"Featured Image":["\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1"],"Close settings":[],"Editor content":["\u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b4\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae"],Tools:["\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1"],Editor:["\u0394\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae\u03c2"],"Code Editor":["\u0394\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae\u03c2 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1"],"Visual Editor":["\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae\u03c2 WYSIWYG"],"Editor top bar":[],Settings:["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2"],Reset:["\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac"],"Dismiss this notice":["\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2"],"Item removed.":[],"Item added.":["\u03a4\u03bf \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03bf \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5."],"Drop files to upload":["\u03a3\u03cd\u03c1\u03b5\u03c4\u03b5 \u03b5\u03b4\u03ce \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b3\u03b9\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7"],PM:["\u039c\u039c"],AM:["\u03a0\u039c"],"An unknown error occurred.":["\u0388\u03bd\u03b1 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5."],"No results.":["\u03a7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03c3\u03bc\u03b1\u03c4\u03b1."],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":["(\u03c7\u03c9\u03c1\u03af\u03c2 \u03c4\u03af\u03c4\u03bb\u03bf)"],URL:["URL"],Submit:["\u03a5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae"],Close:["\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf"],"Insert link":[],"Edit link":[],Link:["\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2"],Strikethrough:["\u0394\u03b9\u03c0\u03bb\u03ae \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03bc\u03bc\u03b9\u03c3\u03b7"],Italic:["\u03a0\u03bb\u03ac\u03b3\u03b9\u03b1"],Bold:["\u0388\u03bd\u03c4\u03bf\u03bd\u03b1"],"Remove link":[],"Number of items":["\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03c9\u03bd"],All:["\u038c\u03bb\u03b1"],Category:["\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["\u03a0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03bf \u03c3\u03b5 \u03bd\u03b5\u03ce\u03c4\u03b5\u03c1\u03bf"],"Newest to Oldest":["\u039d\u03b5\u03ce\u03c4\u03b5\u03c1\u03bf \u03c3\u03b5 \u03c0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03bf"],"Order by":["\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7 \u03b1\u03bd\u03ac"],Select:["\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae"],"Select or Upload Media":[],Video:["\u0392\u03af\u03bd\u03c4\u03b5\u03bf"],"Edit video":[],"Write\u2026":[],poetry:["\u03c0\u03bf\u03af\u03b7\u03c3\u03b7"],Verse:[],"New Column":[],"Delete Column":["\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2"],"Add Column After":[],"Add Column Before":[],"Delete Row":["\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03b5\u03b9\u03c1\u03ac\u03c2"],"Add Row After":[],"Add Row Before":[],"Edit table":[],Table:["\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2"],"Write subheading\u2026":[],"Write shortcode here\u2026":[],Shortcode:["Shortcode"],divider:[],"horizontal-line":[],Separator:["\u0394\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc"],Quote:["\u03a0\u03b1\u03c1\u03ac\u03b8\u03b5\u03c3\u03b7"],"Write citation\u2026":[],"Write quote\u2026":["\u0393\u03c1\u03ac\u03c8\u03c4\u03b5 \u03c0\u03b1\u03c1\u03ac\u03b8\u03b5\u03c3\u03b7 ..."],Pullquote:[],"Write preformatted text\u2026":[],Preformatted:["\u03a0\u03c1\u03bf\u03b4\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03c9\u03bc\u03ad\u03bd\u03b7"],text:["\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf"],Paragraph:["\u03a0\u03b1\u03c1\u03ac\u03b3\u03c1\u03b1\u03c6\u03bf\u03c2"],"Font Size":["\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ac\u03c4\u03c9\u03bd"],"Drop Cap":[],"Text Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5"],"Read more":["\u0394\u03b9\u03b1\u03b2\u03ac\u03c3\u03c4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1"],"Write list\u2026":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],List:["\u039b\u03af\u03c3\u03c4\u03b1"],"recent posts":[],"No posts found.":["\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03ac\u03c1\u03b8\u03c1\u03b1. "],"Latest Posts":["\u03a0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 \u03ac\u03c1\u03b8\u03c1\u03b1"],"Display post date":["\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2 \u03ac\u03c1\u03b8\u03c1\u03bf\u03c5"],"Grid view":[],"List view":[],photo:["\u03c6\u03c9\u03c4\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b1"],"Image Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2"],Image:["\u0395\u03b9\u03ba\u03cc\u03bd\u03b1 "],Preview:["\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7"],embed:[],"Custom HTML":["\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 HTML"],subtitle:["\u03c5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03c2"],title:["\u03c4\u03af\u03c4\u03bb\u03bf\u03c2"],Heading:["\u0395\u03c0\u03b9\u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1"],"Write heading\u2026":["\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b5\u03c0\u03b9\u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1\u03c2\u2026"],"Heading %d":["\u0395\u03c0\u03b9\u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 %d"],Level:["\u0395\u03c0\u03af\u03c0\u03b5\u03b4\u03bf"],"Heading Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0395\u03c0\u03b9\u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1\u03c2"],photos:["\u03c6\u03c9\u03c4\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2"],images:["\u03b5\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2"],"Remove Image":["\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2"],None:["\u039a\u03b1\u03bd\u03ad\u03bd\u03b1"],"Media File":["\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd"],"Attachment Page":["\u03a3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03c9\u03bd"],"Crop Images":["\u03a0\u03b5\u03c1\u03b9\u03ba\u03bf\u03c0\u03ae \u0395\u03b9\u03ba\u03cc\u03bd\u03c9\u03bd"],"Gallery Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2"],Gallery:["\u0393\u03ba\u03b1\u03bb\u03b5\u03c1\u03af"],Classic:["\u039a\u03bb\u03b1\u03c3\u03b9\u03ba\u03cc"],video:["video"],audio:["\u03ae\u03c7\u03bf\u03c2"],music:["\u03bc\u03bf\u03c5\u03c3\u03b9\u03ba\u03ae"],image:["\u03b5\u03b9\u03ba\u03cc\u03bd\u03b1"],blog:["\u03b9\u03c3\u03c4\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf"],post:["\u03ac\u03c1\u03b8\u03c1\u03bf"],"Embedded content from %s":[],"Enter URL to embed here\u2026":[],"%s URL":["%s URL"],"Embedding\u2026":[],"Write title\u2026":["\u0393\u03c1\u03ac\u03c8\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c4\u03af\u03c4\u03bb\u03bf ..."],"Fixed Background":["\u03a3\u03c4\u03b1\u03b8\u03b5\u03c1\u03cc \u03c5\u03c0\u03cc\u03b2\u03b1\u03b8\u03c1\u03bf"],"Edit image":[],Columns:["\u03a3\u03c4\u03ae\u03bb\u03b5\u03c2"],Experiments:[],Code:["\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2"],"Write code\u2026":[],Categories:["\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2"],"Show Hierarchy":[],"Show post counts":["\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd \u03ac\u03c1\u03b8\u03c1\u03c9\u03bd"],"Categories Settings":["\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03b9\u03ce\u03bd"],"Add text\u2026":["\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5\u2026"],Button:["\u039a\u03bf\u03c5\u03bc\u03c0\u03af"],Apply:["\u03a5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae"],"Text Color":["\u03a7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5"],"Background Color":["\u03a7\u03c1\u03ce\u03bc\u03b1 \u03a6\u03cc\u03bd\u03c4\u03bf\u03c5"],"Block has been deleted or is unavailable.":[],"Reusable Blocks":[],Cancel:["\u0386\u03ba\u03c5\u03c1\u03bf"],Edit:["\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1"],"Edit audio":["\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03ae\u03c7\u03bf\u03c5"],"Write caption\u2026":["\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03bb\u03b5\u03b6\u03ac\u03bd\u03c4\u03b1\u03c2\u2026"],"Use URL":[],Audio:["\u0389\u03c7\u03bf\u03c2"],Upload:["\u0391\u03bd\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1"],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],Clear:["\u039a\u03b1\u03b8\u03b1\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2"],"Custom color picker":[],"Color: %s":["\u03a7\u03c1\u03ce\u03bc\u03b1: %s"],"Full Width":[],"Wide Width":[],Widgets:["\u039c\u03b9\u03ba\u03c1\u03bf\u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2"],Formatting:["\u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7"],"Common Blocks":[],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c4\u03af\u03c4\u03bb\u03bf\u03c5"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["\u03a3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7\u03c2"],Slug:["\u03a3\u03cd\u03bd\u03c4\u03bf\u03bc\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1"],Discussion:["\u03a3\u03c5\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7"],"Custom Fields":["\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b1 \u03a0\u03b5\u03b4\u03af\u03b1"],Excerpt:["\u0391\u03c0\u03cc\u03c3\u03c0\u03b1\u03c3\u03bc\u03b1"],Publish:["\u0394\u03b7\u03bc\u03bf\u03c3\u03af\u03b5\u03c5\u03c3\u03b7"],Metadata:["\u039c\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1"],Save:["\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7"],Documentation:["\u03a4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7"],"Select Category":["\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1\u03c2"],"(Untitled)":["(\u03a7\u03c9\u03c1\u03af\u03c2 \u03c4\u03af\u03c4\u03bb\u03bf)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["\u03a4\u03bf Gutenberg \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af \u03c4\u03bf WordPress %s \u03ae \u03bc\u03b5\u03c4\u03b1\u03b3\u03b5\u03bd\u03ad\u03c3\u03c4\u03b5\u03c1\u03bf \u03c0\u03c1\u03bf\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03bd\u03b1 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03c3\u03c9\u03c3\u03c4\u03ac. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5, \u03b1\u03bd\u03b1\u03b2\u03b1\u03b8\u03bc\u03af\u03c3\u03c4\u03b5 \u03c4\u03bf WordPress \u03c0\u03c1\u03bf\u03c4\u03bf\u03cd \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd Gutenberg."],"Gutenberg Team":["\u0397 \u039f\u03bc\u03ac\u03b4\u03b1 \u03c4\u03bf\u03c5 Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["\u0394\u03bf\u03ba\u03b9\u03bc\u03ae"],"%s ago":["%s \u03c0\u03c1\u03b9\u03bd"],"Block style name must be a string.":[]}},837,[]); +__d(function(e,a,o,t,r,i,s){r.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// Un \xabbloque\xbb es el t\xe9rmino abstracto utilizado\n// para describir las unidades de marcado que\n// cuando se componen juntos, forman el\n// contenido o dise\xf1o de una p\xe1gina.\nregisterBlockType( nombre, ajustes );"],"You are probably offline.":["Probablemente est\xe9s desconectado."],"Justify items right":["Justificar elementos a la derecha"],"Justify items center":["Justificar elementos al centro"],"Justify items left":["Justificar elementos a la izquierda"],"Change items justification":["Cambiar el justificado de los elementos"],"The media file has been replaced":["El archivo de medios se ha reemplazado"],Replace:["Reemplazar"],"Choose pattern":["Elegir patr\xf3n"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Actualmente est\xe1s en el modo de edici\xf3n. Para volver al modo de navegaci\xf3n, pulsa \xabEscape\xbb."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Actualmente est\xe1s en el modo de navegaci\xf3n. Navega entre bloques usando la tecla \xabTab\xbb. Para salir del modo de navegaci\xf3n y editar el bloque seleccionado, pulsa \xabIntro\xbb."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Usa las teclas de flecha izquierda o derecha o arrastra y suelta con el rat\xf3n para cambiar la posici\xf3n del degradado. Pulsa el bot\xf3n para cambiar el color o eliminar el punto de control."],"Gradient control point at position %1$s with color code %2$s.":["Punto de control de degradado en la posici\xf3n %1$s con c\xf3digo de color %2$s."],"Preset Size":["Tama\xf1o por defecto"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Las herramientas ofrecen diferentes interacciones para la selecci\xf3n y edici\xf3n de bloques. Para seleccionar, pulsa \xabEscape\xbb, para volver a la edici\xf3n, pulsa \xabIntro\xbb."],"Open Media Library":["Abrir biblioteca de medios"],Next:["Siguiente"],Previous:["Anterior"],Finish:["Finalizar"],"Page %1$d of %2$d":["P\xe1gina %1$d de %2$d"],"Guide controls":["Controles de gu\xeda"],"Remove Control Point":["Eliminar punto de control"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Cada bloque viene con su propio conjunto de controles para cambiar cosas como el color, el ancho y la alineaci\xf3n. Estos se mostrar\xe1n y ocultar\xe1n autom\xe1ticamente cuando hayas seleccionado un bloque."],"Make each block your own":["Haz que cada bloque sea tuyo"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["En el editor de WordPress, cada p\xe1rrafo, imagen o video se presenta como un \xabbloque\xbb distinto de contenido."],"ADD MEDIA":["A\xd1ADIR MEDIOS"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":["Todos los bloques que tienes disponibles est\xe1n en la biblioteca de bloques. Los encontrar\xe1s donde sea que veas el icono "],"Get to know the Block Library":["Conoce la biblioteca de bloques"],"Welcome Guide":["Gu\xeda de bienvenida"],"Enable Page Templates":["Activar plantillas de p\xe1gina"],"Page Templates":["Plantillas de p\xe1gina"],"Enable Full Site Editing Demo Templates":["Activar las plantillas de demostraci\xf3n de edici\xf3n completa del sitio"],"Full Site Editing Demo Templates":["Plantillas de demostraci\xf3n de edici\xf3n completa del sitio"],"Welcome to the Block Editor":["Bienvenido al editor de bloques"],"Get started":["Primeros pasos"],inserter:["insertador"],"Post Title":["T\xedtulo de la entrada"],"Add nofollow to link":["A\xf1adir nofollow al enlace"],"Link Settings":["Ajustes del enlace"],"Add Submenu":["A\xf1adir submen\xfa"],"Add link\u2026":["A\xf1adir enlace..."],Dark:["Oscuro"],Light:["Claro"],recording:["grabaci\xf3n"],podcast:["podcast"],sound:["sonido"],"Array of instance changes":["Array de cambios en la instancia"],"Current widget instance":["Instancia actual del widget"],"Template parts to include in your templates.":["Partes de plantilla a incluir en tus plantillas."],"Template parts list":["Lista de partes de plantilla"],"Template parts list navigation":["Lista de navegaci\xf3n de partes de plantilla "],"Filter template parts list":["Filtrar lista de partes de plantilla"],"Uploaded to this template part":["Subiba a esta parte de plantilla"],"Insert into template part":["Insertar en la parte de la plantilla"],"Template part archives":["Archivo de partes de plantilla"],"No template parts found in Trash.":["No se han encontrado partes de plantilla en la papelera."],"No template parts found.":["No se han encontrado partes de plantilla."],"Parent Template Part:":["Parte de plantilla padre:"],"Search Template Parts":["Buscar partes de plantilla"],"All Template Parts":["Todas las partes de plantilla"],"View Template Part":["Ver parte de plantilla"],"Edit Template Part":["Editar parte de plantilla"],"New Template Part":["Nueva parte de plantilla"],"Add New Template Part":["A\xf1adir nueva parte de plantilla"],"Template Part\x04Add New":["A\xf1adir nueva"],"Admin Menu text\x04Template Parts":["Partes de plantilla"],"Template Part":["Parte de plantilla"],"Template Parts":["Partes de plantilla"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Al andar se hace camino\ny al volver la vista atr\xe1s\nse ve la senda que nunca\nse ha de volver a pisar.\nCaminante no hay camino\nsino estelas en la mar\u2026"],Navigation:["Navegaci\xf3n"],"Loading Navigation\u2026":["Cargando navegaci\xf3n..."],"Navigation Structure":["Estructura de navegaci\xf3n"],"Create empty":["Crear vac\xedo"],"Create from all top pages":["Crea con todas las p\xe1ginas padre"],"Create a Navigation from all existing pages, or create an empty one.":["Crea una navegaci\xf3n con todas las p\xe1ginas existentes o crea una nueva vac\xeda."],"Navigation Link":["Enlace de navegaci\xf3n"],"(Note: many devices and browsers do not display this text.)":["(Nota: muchos dispositivos y navegadores no muestran este texto.)"],"Describe the role of this image on the page.":["Describe el rol de esta imagen en la p\xe1gina."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Alterna entre usar el mismo valor en todos los tama\xf1os de pantalla o usar un unico valor por tama\xf1o de pantalla."],"Use the same %s on all screensizes.":["Utilizar el mismo %s en todos los tama\xf1os de pantalla."],"Large screens":["Pantallas grandes"],"Medium screens":["Pantallas medianas"],"Small screens":["Pantallas peque\xf1as"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["Controla la propiedad %1$s para los \xabviewports\xbb %2$s."],Change:["Cambiar"],"Currently selected":["Seleccionado actualmente"],"Search or type url":["Busca o escribe la URL"],"Press ENTER to add this link":["Presiona ENTER para a\xf1adir este enlace"],"Currently selected link settings":["Ajustes del enlace seleccionado actualmente"],"Generic label for block inserter button\x04Add block":["A\xf1adir bloque"],"directly add the only allowed block\x04Add %s":["A\xf1adir %s"],"%s block added":["Bloque %s a\xf1adido"],"Move %s":["Mover %s"],"Extra Large":["Extra grande"],"Block breadcrumb":["Bloque de migas de pan"],"Site Title":["T\xedtulo del sitio"],"Open Colors Selector":["Abrir el selector de color"],"Overlay Gradient":["Degradado superpuesto"],"Templates list":["Lista de plantillas"],"Templates list navigation":["Navegaci\xf3n de la lista de plantillas"],"Filter templates list":["Filtro de la lista de plantillas"],"Uploaded to this template":["Subido a esta plantilla"],"Insert into template":["Insertar en la plantilla"],"Template archives":["Archivos de plantillas"],"No templates found in Trash.":["No se han encontrado plantillas en la papelera."],"No templates found.":["No se han encontrado plantillas."],"Parent Template:":["Plantilla principal:"],"Search Templates":["Buscar plantillas"],"All Templates":["Todas las plantillas"],"View Template":["Ver la plantilla"],"Edit Template":["Editar la plantilla"],"New Template":["Nueva plantilla"],"Add New Template":["A\xf1adir una nueva plantilla"],"Template\x04Add New":["A\xf1adir nueva"],"Admin Menu text\x04Templates":["Plantillas"],Template:["Plantilla"],"No matching template found":["No se han encontrado plantillas que coincidan"],"Gradient: %s":["Degradado: %s"],"Gradient code: %s":["C\xf3digo de degradado: %s"],"All content copied.":["Copiado todo el contenido."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["La subida de medios ha fallado. Si esto es una foto o una imagen grande, por favor, reduce su tama\xf1o e int\xe9ntalo de nuevo."],Gradient:["Degradado"],"Gradient Presets":["Ajustes previos de degradado"],"No Preview Available.":["Vista previa no disponible."],Midnight:["Medianoche"],"Electric grass":["Hierba el\xe9ctrica"],"Pale ocean":["Oc\xe9ano p\xe1lido"],"Luminous dusk":["Atardecer luminoso"],"Blush bordeaux":["Rubor burdeos"],"Blush light purple":["Rubor p\xfarpura claro"],"Cool to warm spectrum":["Espectro fr\xedo a caliente"],"Very light gray to cyan bluish gray":["Gris muy claro a gris azulado cian"],"Luminous vivid orange to vivid red":["Naranja vivo luminoso a rojo vivo"],"Luminous vivid amber to luminous vivid orange":["\xc1mbar vivo luminoso a naranja vivo"],"Light green cyan to vivid green cyan":["Verde cian claro a verde cian vivo"],"Vivid cyan blue to vivid purple":["Cian azul vivo a p\xfarpura vivo"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 de diciembre de 2018"],"February 21, 2019":["21 de febrero de 2019"],"May 7, 2019":["7 de mayo de 2019"],"Release Date":["Fecha de lanzamiento"],"Jazz Musician":["M\xfasico de jazz"],Version:["Versi\xf3n"],"Six.":["Seis."],"Five.":["Cinco."],"Four.":["Cuatro."],"Three.":["Tres."],"Two.":["Dos."],"One.":["Uno."],"One of the hardest things to do in technology is disrupt yourself.":["Una de las cosas m\xe1s dif\xedciles de hacer en tecnolog\xeda es interrumpirte a ti mismo."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["Alrededor hay una pantalla casi totalmente negra. Ahora, mientras la c\xe1mara se mueve lentamente hacia la ventana que es casi un sello de correos en el marco, aparecen otras formas;"],"Window, very small in the distance, illuminated.":["Ventana, muy peque\xf1a en la distancia, iluminada."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - AMANECER - 1940 (MINIATURA)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["El reyezuelo
Se gana la vida
Sin hacer ruido."],"Welcome to the wonderful world of blocks\u2026":["Bienvenido al maravilloso mundo de los bloques\u2026"],"Snow Patrol":["Patrulla de la nieve"],Dimensions:["Dimensiones"],"Minimum height in pixels":["Altura m\xednima en p\xedxeles"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["A peich amatomaa apetecan a wan de la pradera va ust\xe9 muy cargadoo por la gloria de mi madre est\xe1 la cosa muy malar condemor."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Ll\xe9vame al sircoo no puedor por la gloria de mi madre por la gloria de mi madre va ust\xe9 muy cargadoo diodenoo al ataquerl ll\xe9vame al sircoo no te digo trigo por no llamarte Rodrigor. "],"Call to Action":["Llamada a la acci\xf3n"],"In quoting others, we cite ourselves.":["Al citar a otros, nos citamos a nosotros mismos."],cite:["cita"],"Mont Blanc appears\u2014still, snowy, and serene.":["El Mont Blanc aparece\u2014quieto, nevado y sereno."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["En un lugar de la Mancha, de cuyo nombre no quiero acordarme, no ha mucho tiempo que viv\xeda un hidalgo de los de lanza en astillero, adarga antigua, roc\xedn flaco y galgo corredor."],"Block navigation":["Navegaci\xf3n de bloques"],"Enable Full Site Editing":["Activar la edici\xf3n completa del sitio"],"Full Site Editing":["Edici\xf3n completa del sitio"],"Templates to include in your theme.":["Plantillas a incluir en tu tema."],Templates:["Plantillas"],"Inserter Help Panel":["Panel de ayuda del insertador"],"Pre-publish Checks":["Comprobaciones previas a la publicaci\xf3n"],"Please contact your site administrator to install new blocks.":["Por favor, contacta con el administrador de tu sitio para instalar nuevos bloques."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No se han encontrado bloques en tu biblioteca. Por favor, contacta con el administrador de tu sitio para instalar nuevos bloques."],"No blocks found in your library.":["No se han encontrado bloques en tu biblioteca."],"No blocks found in your library. These blocks can be downloaded and installed:":["No se han encontrado bloques en tu biblioteca. Estos bloques pueden ser descargados e instalados:"],"No blocks found in your library. We did find %d block available for download.":["No se han encontrado bloques en tu biblioteca. Hemos encontrado %d bloque disponible para descargar.","No se han encontrado bloques en tu biblioteca. Hemos encontrado %d bloques disponibles para descargar."],"Block previews can\u2019t load.":["No se pueden cargar las vistas previas del bloque."],Retry:["Reintentar"],"Block previews can't install.":["No se pueden instalar las vistas previas del bloque."],"Updated %s":["%s actualizado"],"%d active installation":["%d instalaci\xf3n activa","%d instalaciones activas"],"This author has %d block, with an average rating of %d.":["Este autor tiene %d bloque, con una valoraci\xf3n media de %d.","Este autor tiene %d bloques, con una valoraci\xf3n media de %d."],"Authored by %s":["Creado por %s"],Add:["A\xf1adir"],"%d total rating":["%d valoraci\xf3n en total","%d valoraciones en total"],"%s out of 5 stars":["%s de 5 estrellas"],"Enter Address":["Introducir la direcci\xf3n"],"Pill Shape":["Forma de pastilla"],"Logos Only":["Solo logotipos"],"Create a block of links to your social media or external sites":["Crea un bloque de enlaces a tus medios sociales o sitios externos"],"Social links":["Enlaces sociales"],"Open block navigator":["Abrir el navegador de bloques"],"Attachment page":["P\xe1gina de adjuntos"],Fill:["Rellenar"],"Link rel":["\xabrel\xbb del enlace"],"Border Radius":["Radio del borde"],"Write gallery caption\u2026":["Escribe la leyenda de la galer\xeda..."],"Content Blocks":["Bloques de contenido"],"Restore the backup":["Restaurar la copia de seguridad"],"The backup of this post in your browser is different from the version below.":["La copia de seguridad de esta entrada en tu navegador es diferente de la siguiente versi\xf3n."],"Enable Block Directory search":["Activar la b\xfasqueda en el directorio de bloques"],"Block Directory":["Directorio de bloques"],"Unable to connect to the filesystem. Please confirm your credentials.":["No ha sido posible conectar con el sistema de archivos. Por favor, confirma tus credenciales."],"Sorry, you are not allowed to install blocks.":["Lo siento, no tienes permiso para instalar bloques."],"%1$d block is disabled.":["%1$d bloque est\xe1 desactivado.","%1$d bloques est\xe1n desactivados."],"Reverse List Numbering":["Lista de numeraci\xf3n inversa"],"Start Value":["Valor inicial"],"Ordered List Settings":["Ajustes de listas ordenadas"],"Clear Media":["Vaciar los medios"],"block style\x04Circle Mask":["M\xe1scara circular"],"Default Style":["Estilo por defecto"],"Not set":["No establecido"],"While writing, you can press / to quickly insert new blocks.":["Al escribir, puedes pulsar / para insertar nuevos bloques r\xe1pidamente."],"Browse through the library to learn more about what each block does.":["Examina la biblioteca para aprender m\xe1s sobre qu\xe9 hace cada bloque."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Hay bloques disponibles para todo tipo de contenidos: insertar texto, encabezados, im\xe1genes, listas, v\xeddeos, tablas y muchos m\xe1s."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["\xa1Bienvenido al maravilloso mundo de los bloques! Los bloques son la base de todo el contenido dentro del editor."],"Version of the content block format used by the object.":["Versi\xf3n del formato del bloque de contenido usado por el objeto."],"HTML content for the object, transformed for display.":["Contenido HTML para el objeto, transformado para su visualizaci\xf3n."],"Content for the object, as it exists in the database.":["Contenido para el objeto, tal como existe en la base de datos."],"The content for the object.":["El contenido para el objeto."],"Change column alignment":["Cambiar la alineaci\xf3n de la columna"],"Align Column Right":["Alinear la columna a la derecha"],"Align Column Center":["Alinear la columna al centro"],"Align Column Left":["Alinear la columna a la izquierda"],Color:["Color"],"Vivid purple":["P\xfarpura vivo"],"Disable & Reload":["Desactivar y recargar"],"Enable & Reload":["Activar y recargar"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Se necesita recargar la p\xe1gina para este cambio. Antes de recargar, aseg\xfarate de que tu contenido est\xe1 guardado."],"Display these keyboard shortcuts.":["Mostrar estos atajos del teclado."],"Experiments Settings":["Ajustes de experimentos"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg tiene algunas caracter\xedsticas experimentales que puedes activar. Simplemente, selecciona cada una de las que te gustar\xeda usar. Es probable que estas caracter\xedsticas cambien, por lo que no es aconsejable usarlas en producci\xf3n."],"Enable Widgets Screen and Legacy Widget Block":["Activar la pantalla de widgets y el bloque de widgets heredados"],"Experiment settings":["Ajustes del experimento"],"Block name name must be a string.":["El nombre del bloque debe ser una cadena."],Custom:["Personalizado"],Draft:["Borrador"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["El bloque \xab%1$s\xbb no contiene un estilo llamado \xab%2$s\xbb."],"Learn more about anchors":["Aprende m\xe1s sobre los anclajes"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Introduce una palabra o dos \u2014 sin espacios \u2014 para crear una direcci\xf3n web \xfanica solo para este encabezado, llamada \xabanclaje\xbb. Luego podr\xe1s enlazar directamente a esta secci\xf3n de tu p\xe1gina."],"Widget Blocks (Experimental)":["Bloques de widget (experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Sube un archivo de v\xeddeo, elige uno de tu biblioteca de medios o a\xf1ade uno con una URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Sube un archivo de imagen, elige uno de tu biblioteca de medios o a\xf1ade uno con una URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Sube un archivo de audio, elige uno de tu biblioteca de medios o a\xf1ade uno con una URL."],"Upload a media file or pick one from your media library.":["Sube un archivo de medios o elige uno de tu biblioteca de medios."],Skip:["Saltar"],"Select a pattern to start with.":["Elige un patr\xf3n con el que empezar."],"Add a page, link, or other item to your navigation.":["A\xf1ade una p\xe1gina, enlace u otro elemento a tu navegaci\xf3n."],"What's this?":["\xbfQu\xe9 es esto?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["No permitir que los motores de b\xfasqueda sigan este enlace."],"Provide more context about where the link goes.":["Ofrece m\xe1s contexto sobre a d\xf3nde va el enlace."],"Title Attribute":["Atributo del t\xedtulo"],"SEO Settings":["Ajustes SEO"],Description:["Descripci\xf3n"],"Open in new tab":["Abrir en una nueva pesta\xf1a"],links:["enlaces"],navigation:["navegaci\xf3n"],menu:["men\xfa"],"Add a navigation block to your site.":["A\xf1ade un bloque de navegaci\xf3n a tu sitio."],"Upload a file or pick one from your media library.":["Sube un archivo de medios o elige uno de tu biblioteca de medios."],"Learn more about embeds":["Aprende m\xe1s sobre los incrustados"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Pega un enlace al contenido que quieras mostrar en tu sitio."],"Upload an image or video file, or pick one from your media library.":["Sube un archivo de imagen o v\xeddeo o elige uno de tu biblioteca de medios."],"Three columns; wide center column":["Tres columnas; columna ancha centrada"],"Three columns; equal split":["Tres columnas; igual separaci\xf3n"],"Two columns; two-thirds, one-third split":["Dos columnas: separaci\xf3n de dos tercios, un tercio "],"Two columns; one-third, two-thirds split":["Dos columnas; separaci\xf3n de un tercio, dos tercios"],"Two columns; equal split":["Dos columnas; igual separaci\xf3n"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Tu sitio ni tiene ning\xfan %s, as\xed que no hay nada que mostrar aqu\xed de momento."],"More tools & options":["M\xe1s herramientas y opciones"],"Create Table":["Crear una tabla"],"Insert a table for sharing data.":["Inserta una tabla para compartir datos."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Desagrupar"],"verb\x04Group":["Agrupar"],"Separate with commas or the Enter key.":["Sep\xe1ralo con comas o con la tecla Intro."],"Separate with commas, spaces, or the Enter key.":["Sep\xe1ralo con comas, espacios o la tecla Intro."],"Separate multiple classes with spaces.":["Separa m\xfaltiples clases con espacios."],"Move image forward":["Mover la imagen hacia delante"],"Move image backward":["Mover la imagen hacia atr\xe1s"],"Sorry, you are not allowed to edit sidebars.":["Lo siento, no tienes permiso para editar las barras laterales."],"Sorry, you are not allowed to read sidebars.":["Lo siento, no tienes permiso para leer las barras laterales."],"The sidebar\u2019s ID.":["ID de la barra lateral"],"Displays a set of blocks":["Muestra un conjunto de bloques"],"Blocks Area":["\xc1rea de bloques"],"Block rendered as empty.":["Bloque mostrado como vac\xedo."],"Inline Code":["C\xf3digo integrado"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Aviso: La reproducci\xf3n autom\xe1tica de videos puede provocar problemas de usabilidad a algunos visitantes."],"Footer section":["Secci\xf3n del pie de p\xe1gina"],"Header section":["Secci\xf3n de la cabecera"],"Sorting and Filtering":["Ordenaci\xf3n y filtrado"],"Post Meta Settings":["Ajustes de meta de entrada"],"Post Content":["Contenido de la entrada"],"Post Content Settings":["Ajustes de contenido de la entrada"],"Percentage width":["Porcentaje de ancho"],"Column Settings":["Ajustes de columna"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Aviso: La reproducci\xf3n autom\xe1tica de audio puede provocar problemas de usabilidad a algunos visitantes."],"Block area updated.":["\xc1rea de bloques actualizada."],"Block area scheduled.":["\xc1rea de bloques programada."],"Block area published.":["\xc1rea de bloques publicada."],"Block areas list":["Lista de \xe1reas de bloques "],"Block areas list navigation":["Navegaci\xf3n de \xe1reas de bloques"],"Filter block areas list":["Filtrar lista de \xe1reas de bloques"],"No block area found.":["No se ha encontrado ning\xfan \xe1rea de bloques."],"Search Block Areas":["Buscar \xe1reas de bloques"],"All Block Areas":["Todas las \xe1reas de bloques"],"View Block Area":["Ver \xe1rea de bloques"],"Edit Block Area":["Editar \xe1rea de bloques"],"New Block Area":["Nueva \xe1rea de bloques"],"Add New Block Area":["A\xf1adir nueva \xe1rea de bloques"],"admin menu\x04Block Areas":["\xc1reas de bloques"],"post type singular name\x04Block Area (Experimental)":["\xc1rea de bloques (Experimental)"],"post type general name\x04Block Area (Experimental)":["\xc1rea de bloques (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Tipo de contenido experimental que almacena las \xe1reas de bloques referenciadas por los temas."],"Widgets screen content":["Contenido de la pantalla de widgets"],"Widgets advanced settings":["Ajustes avanzados de widgets"],"(experimental)":["(experimental)"],"Block Areas":["\xc1reas de bloques"],"Widgets screen top bar":["Barra superior de la pantalla de widgets"],"This color combination may be hard for people to read.":["Esta combinaci\xf3n de color puede ser dif\xedcil de leer para la gente."],"There is no poster image currently selected":["No hay ninguna imagen de p\xf3ster seleccionada en este momento"],"The current poster image url is %s":["La url de la imagen actual de p\xf3ster es %s"],section:["secci\xf3n"],row:["fila"],wrapper:["envoltura"],container:["contenedor"],"A block that groups other blocks.":["Un bloque que agrupa otros bloques."],Group:["Grupo"],"Crop image to fill entire column":["Recortar imagen para rellenar toda la columna"],"Play inline":["Reproducci\xf3n integrada"],"Leave empty if the image is purely decorative.":["D\xe9jalo vac\xedo si la imagen es meramente decorativa."],"Describe the purpose of the image":["Describe el prop\xf3sito de la imagen"],"Add a block":["A\xf1ade un bloque"],"Block vertical alignment setting label\x04Change vertical alignment":["Cambiar la alineaci\xf3n vertical"],"Block vertical alignment setting\x04Vertically Align Bottom":["Alineaci\xf3n vertical al fondo"],"Block vertical alignment setting\x04Vertically Align Middle":["Alineaci\xf3n vertical al medio"],"Replace Image":["Reemplazar imagen"],"Block vertical alignment setting\x04Vertically Align Top":["Alineaci\xf3n vertical arriba"],"Display a legacy widget.":["Muestra un widget heredado."],"Legacy Widget (Experimental)":["Widget heredado (experimental)"],"Change widget":["Cambiar widget"],"Legacy Widget":["Widget heredado"],"You don't have permissions to use widgets on this site.":["No tienes permisos para usar widgets en este sitio."],"Select a legacy widget to display:":["Elige un widget heredado a mostrar:"],"There are no widgets available.":["No hay ning\xfan widget disponible."],"Change block type or style":["Cambiar tipo o estilo del bloque"],"keyboard key\x04Space":["Espacio"],"keyboard key\x04Backspace":["Retroceso"],"More rich text controls":["M\xe1s controles de texto enriquecido"],"Search Terms":["T\xe9rminos de b\xfasqueda"],"Exit the Editor":["Salir del editor"],"Block Manager":["Gestor de bloques"],"Class name of the widget.":["Nombre de la clase del widget."],"Sorry, you are not allowed to access widgets on this site.":["Lo siento, no tienes permisos para acceder a widgets en este sitio."],"Widgets (beta)":["Widgets (beta)"],link:["enlace"],"Embedded content from %s can't be previewed in the editor.":["El contenido incrustado desde %s no se puede previsualizar en el editor."],"Custom Color":["Color personalizado"],"Prompt visitors to take action with a button-style link.":["Anima a los visitantes a que realicen alguna acci\xf3n con un enlace estilo bot\xf3n."],"Stick to the top of the blog":["F\xedjalo a la parte superior del blog"],"Read about permalinks":["Lee acerca de los enlaces permanentes"],"The last part of the URL.":["La \xfaltima parte de la URL."],"URL Slug":["Slug de la URL"],"A cloud of your most used tags.":["Una nube de tus etiquetas m\xe1s utilizadas."],"Tag Cloud":["Nube de etiquetas"],Taxonomy:["Taxonom\xeda"],"Tag Cloud Settings":["Ajustes de la nube de etiquetas"],"- Select -":["- Seleccionar -"],Default:["Por defecto"],find:["encontrar"],"Help visitors find your content.":["Ayuda a los visitantes a descubrir tu contenido."],Search:["Buscar"],"Add button text\u2026":["A\xf1ade el texto del bot\xf3n\u2026"],"Button text":["Texto del bot\xf3n"],"Optional placeholder\u2026":["Marcador de posici\xf3n opcional\u2026"],"Optional placeholder text":["Texto opcional para el marcador de posici\xf3n"],"Add label\u2026":["A\xf1adir etiqueta\u2026"],"Label text":["Texto de la etiqueta"],"image %1$d of %2$d in gallery":["imagen %1$d de %2$d en la biblioteca"],archive:["archivo"],posts:["entradas"],"A calendar of your site\u2019s posts.":["Un calendario de las entradas de tu sitio."],Calendar:["Calendario"],by:["por"],"An error has occurred, which probably means the feed is down. Try again later.":["Ha ocurrido un error que, probablemente, implique que se ha ca\xeddo el feed. Prueba de nuevo m\xe1s tarde."],"RSS Error:":["Error de RSS:"],"block style\x04Default":["Por defecto"],"Fullscreen mode deactivated":["Modo a pantalla completa desactivado"],"Fullscreen mode activated":["Modo a pantalla completa activado"],"Spotlight mode deactivated":["Modo de enfoque desactivado"],"Spotlight mode activated":["Modo de enfoque activado"],"Top toolbar deactivated":["Barra superior desactivada"],"Top toolbar activated":["Barra superior activada"],Back:["Volver"],"Feature activated":["Caracter\xedstica activada"],"Feature deactivated":["Caracter\xedstica desacdtivada"],"Vertical Pos.":["Pos. vertical"],"Horizontal Pos.":["Pos. horizontal"],feed:["feed"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Muestra entradas de cualquier feed RSS o Atom."],RSS:["RSS"],"Max number of words in excerpt":["N\xfamero m\xe1ximo de palabras en el extracto"],"Display excerpt":["Mostrar extracto"],"Display date":["Mostrar fecha"],"Display author":["Mostrar autor"],"RSS Settings":["Ajustes RSS"],"Edit RSS URL":["Editar URL del RSS"],"Content before this block will be shown in the excerpt on your archives page.":["El contenido anterior a este bloque se mostrar\xe1 en el extracto de tu p\xe1gina de archivo."],"Hide the excerpt on the full content page":["Ocultar el extracto en la p\xe1gina con el contenido completo."],"The excerpt is visible.":["El extracto es visible."],"The excerpt is hidden.":["El extracto est\xe1 oculto."],"Sorry, this content could not be embedded.":["Lo siento, este contenido no se puede incrustar."],"Embed Amazon Kindle content.":["Incrustar contenido de Amazon Kindle."],ebook:["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Incrustar contenido de Crowdsignal (anteriormente Polldaddy)."],"Focal Point Picker":["Selector del punto focal"],Underline:["Subrayado"],"Attempt Block Recovery":["Intentar la recuperaci\xf3n de bloque"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Contenido\u2026"],"button label\x04Convert to link":["Convertir a enlace"],"button label\x04Try again":["Probar de nuevo"],"Editor tips":["Trucos para el editor"],"Block (selected)":["Bloque (seleccionado)"],"Document (selected)":["Documento (seleccionado)"],"%d word":["%d palabra","%d palabras"],"Top Toolbar":["Barra de herramientas superior"],"Link Rel":["Relaci\xf3n del enlace"],"Link CSS Class":["Clase CSS del enlace"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Crea contenido, y gu\xe1rdalo para ti y otros colaboradores para reutilizarlo en tu sitio. Actualiza el bloque y l os cambios se aplicar\xe1n en todas las partes donde est\xe9 en uso."],"To edit the featured image, you need permission to upload media.":["Para editar la imagen destacada necesitas permisos para subir medios."],"To edit this block, you need permission to upload media.":["Para editar este bloque necesitas permisos para subir medios."],"(selected block)":["(bloque seleccionado)"],"Block tools":["Herramientas del bloque"],Permalink:["Enlace permanente"],"This image has an empty alt attribute":["La imagen tiene un atributo ALT vac\xedo"],"This image has an empty alt attribute; its file name is %s":["La imagen tiene un atributo ALT vac\xedo; su nombre de archivo es %s"],"Block area reverted to draft.":["\xc1rea de bloques devuelta a borrador."],"Block area published privately.":["\xc1rea de bloques publicada en privado."],"No block areas found in Trash.":["No se encontraron \xe1reas de bloques en la papelera."],"Block\x04Add New":["A\xf1adir nuevo"],"add new on admin bar\x04Block Area":["\xc1rea de bloques"],"Link inserted.":["Enlace insertado."],"Warning: the link has been inserted but may have errors. Please test it.":["Atenci\xf3n: el enlace se ha insertado pero puede tener errores. Por favor, compru\xe9balo."],"%s block selected.":["%s bloque seleccionado.","%s bloques seleccionados."],Thumbnail:["Miniatura"],"Full Size":["Tama\xf1o completo"],"Link selected.":["Enlace seleccionado."],"Start writing with text or HTML":["Empieza a escribir texto o HTML"],"Type text or HTML":["Escribe texto o HTML"],"Block icon":["Icono del bloque"],"Align Text Right":["Alinear el texto a la derecha"],"Align Text Center":["Alinear el texto al centro"],"Align Text Left":["Alinear el texto a la izquierda"],"Start writing or type / to choose a block":["Empieza a escribir o escribe / para elegir un bloque"],"Empty block; start writing or type forward slash to choose a block":["Bloque vac\xedo; empieza a escribir o escribe una barra inclinada hacia adelante para elegir un bloque"],"Paragraph block":["Bloque de p\xe1rrafo"],"Page Break":["Salto de p\xe1gina"],"Stack on mobile":["Apilar en m\xf3vil"],Annotation:["Notas"],"Drag images, upload new ones or select files from your library.":["Arrastra im\xe1genes, sube nuevas o elige archivos desde tu biblioteca."],"blocks\x04Most Used":["M\xe1s utilizados"],"imperative verb\x04Resolve":["Resuelve"],"font size name\x04Huge":["Enorme"],"font size name\x04Large":["Grande"],"font size name\x04Medium":["Medio"],"font size name\x04Small":["Peque\xf1o"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Intro"],"button label\x04Import":["Importar"],"button label\x04Download":["Descarga"],"button label\x04Embed":["Incrustar"],"block title\x04Embed":["Incrustado"],"block title\x04Classic":["Cl\xe1sico"],"block style\x04Large":["Grande"],"%s (opens in a new tab)":["%s (abre en una nueva pesta\xf1a)"],"Link edited.":["Enlace editado."],"Link removed.":["Enlace quitado."],media:["medios"],"Double-check your settings before publishing.":["Vuelve a comprobar tus ajustes antes de publicar."],"Generating preview\u2026":["Generando vista previa\u2026"],"Edit or update the image":["Edita o actualiza la imagen"],Media:["Medios"],"Navigate to the nearest toolbar.":["Navega hasta la barra de herramientas m\xe1s cercana."],"Document tools":["Herramientas del documento"],"Document and block tools":["Herramientas del documento y los bloques"],"Embed a video from your media library or upload a new one.":["Incrusta un v\xeddeo desde tu biblioteca de medios o sube uno nuevo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Inserta poes\xeda. Utiliza formatos de espaciado especiales. O cita letras de canciones."],"Add white space between blocks and customize its height.":["A\xf1ade espacio en blanco entre bloques y personaliza su altura."],"Insert additional custom elements with a WordPress shortcode.":["Inserta elementos adicionales personalizados con un shortcode de WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crea una ruptura entre ideas o secciones con un separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Da un \xe9nfasis visual al texto citado. \xabAl citar a otros, nos citamos a nosotros mismos\xbb \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Da un \xe9nfasis visual especial a una cita de tu texto."],"Start with the building block of all narrative.":["Empieza con el bloque que cimienta toda la narrativa."],"Separate your content into a multi-page experience.":["Separa tu contenido en una experiencia multi-p\xe1gina."],"Set media and words side-by-side for a richer layout.":["Coloca las palabras y los medios uno al lado del otro para tener un dise\xf1o m\xe1s rico."],"Media & Text Settings":["Ajustes de medios y texto"],"Create a bulleted or numbered list.":["Crea una lista de vi\xf1etas o numerada."],"Display a list of your most recent comments.":["Muestra una lista de tus comentarios m\xe1s recientes."],"Insert an image to make a visual statement.":["Inserta una imagen para hacer una declaraci\xf3n visual"],"Add custom HTML code and preview it as you edit.":["A\xf1ade c\xf3digo personalizado HTML y previsual\xedzalo mientras lo editas."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce nuevas secciones y organiza el contenido para ayudar a los visitantes (y a los motores de b\xfasqueda) a comprender la estructura de tu contenido."],"Display multiple images in a rich gallery.":["Muestra m\xfaltiples im\xe1genes en una galer\xeda enriquecida."],"Add a link to a downloadable file.":["A\xf1ade un enlace a un archivo descargable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incrusta v\xeddeos, im\xe1genes, tweets, audios, y otros contenidos desde fuentes externas."],"Resize for smaller devices":["Cambia el tama\xf1o para dispositivos m\xe1s peque\xf1os."],"This embed may not preserve its aspect ratio when the browser is resized.":["Este incrustado podr\xeda no mantener su relaci\xf3n de aspecto cuando el navegador cambie de tama\xf1o."],"This embed will preserve its aspect ratio when the browser is resized.":["Este incrustado mantendr\xe1 su relaci\xf3n de aspecto cuando el navegador cambie de tama\xf1o."],"Embed an Animoto video.":["Incrusta un v\xeddeo de Animoto."],"Embed a Vimeo video.":["Incrusta un v\xeddeo de Vimeo."],"Embed Flickr content.":["Incrusta contenido de Flickr."],"Embed Spotify content.":["Incrusta contenido de Spotify."],"Embed SoundCloud content.":["Incrusta contenido de SoundCloud."],"Embed a WordPress post.":["Incrusta una entrada de WordPress."],"Embed an Instagram post.":["Incrusta una publicaci\xf3n de Instagram."],"Embed a Facebook post.":["Incrusta una publicaci\xf3n de Facebook."],"Embed a WordPress.tv video.":["Incrusta un v\xeddeo de WordPress.tv."],"Embed a VideoPress video.":["Incrusta un v\xeddeo de VideoPress."],"Embed a Tumblr post.":["Incrusta una publicaci\xf3n de Tumblr."],"Embed a TED video.":["Incrusta un v\xeddeo de TED."],"Embed Speaker Deck content.":["Incrusta contenido de Speaker Deck."],"Embed a YouTube video.":["Incrusta un v\xeddeo de YouTube."],"Embed SmugMug content.":["Incrusta contenido de SmugMug."],"Embed Slideshare content.":["Incrusta contenido de Slideshare."],"Embed Scribd content.":["Incrusta contenido de Scribd."],"Embed Screencast content.":["Incrusta contenido de Screencast."],"Embed ReverbNation content.":["Incrusta contenido de ReverbNation."],"Embed a Reddit thread.":["Incrusta un hilo de Reddit."],"Embed Polldaddy content.":["Incrusta contenido de Polldaddy."],"Embed Mixcloud content.":["Incrusta contenido de Mixcloud."],"Embed a tweet.":["Incrusta un tweet."],"Embed Meetup.com content.":["Incrusta contenido de Meetup.com."],"Embed Kickstarter content.":["Incrusta contenido de Kickstarter."],"Embed Issuu content.":["Incrusta contenido de Issuu."],"Embed Imgur content.":["Incrusta contenido de Imgur."],"Embed Hulu content.":["Incrusta contenido de Hulu."],"Embed a Dailymotion video.":["Incrusta un v\xeddeo de Dailymotion."],"Embed CollegeHumor content.":["Incrusta contenido de CollegeHumor."],"Embed Cloudup content.":["Incrusta contenido de Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["A\xf1ade una imagen o v\xeddeo con un texto superpuesto \u2014 genial para cabeceras."],"Display code snippets that respect your spacing and tabs.":["Muestra fragmentos de c\xf3digo que respetan tus espacios y tabuladores."],"Use the classic WordPress editor.":["Utiliza el editor cl\xe1sico de WordPress."],"Display a list of all categories.":["Muestra una lista de todas las categor\xedas."],"Embed a simple audio player.":["Incrusta un reproductor sencillo de audio."],"noun\x04View":["Ver"],"editor button\x04Left to right":["De izquierda a derecha"],"Save as Pending":["Guardar como pendiente"],"%s address":["direcci\xf3n del %s"],"Paste or type URL":["Pega o teclea la URL"],"Insert from URL":["Insertar desde URL"],"Block Navigator":["Navegador de bloques"],Styles:["Estilos"],"Advanced Panels":["Paneles avanzados"],"Document Panels":["Paneles de documentos"],General:["Generales"],"Open the block navigation menu.":["Abre el men\xfa de navegaci\xf3n de bloques."],"Work without distraction":["Trabajar sin distracciones"],"Focus on one block at a time":["Enf\xf3cate en un bloque cada vez"],"Access all block and document tools in a single place":["Accede a todos las herramientas de bloques y documentos desde un solo lugar"],Options:["Opciones"],"(opens in a new tab)":["(abre en una nueva pesta\xf1a)"],Minutes:["Minutos"],Hours:["Horas"],Time:["Hora"],Year:["A\xf1o"],Day:["D\xeda"],December:["diciembre"],November:["noviembre"],October:["octubre"],September:["septiembre"],August:["agosto"],July:["julio"],June:["junio"],May:["mayo"],April:["abril"],March:["marzo"],February:["febrero"],January:["enero"],Month:["Mes"],Date:["Fecha"],"Go to the first (home) or last (end) day of a week.":["Ve al primer (inicio) o \xfaltimo (fin) d\xeda de una semana."],"Home/End":["Inicio/Fin"],"Home and End":["Inicio y fin"],"Move backward (PgUp) or forward (PgDn) by one month.":["Moverse hacia atr\xe1s (PgUp) o hacia delante (PgDn) un mes."],"PgUp/PgDn":["Av P\xe1g/Re P\xe1g"],"Page Up and Page Down":["Avanzar p\xe1gina y retroceder p\xe1gina"],"Move backward (up) or forward (down) by one week.":["Moverse hacia atr\xe1s (arriba) o hacia delante (abajo) una semana."],"Up and Down Arrows":["Flechas arriba y abajo"],"Move backward (left) or forward (right) by one day.":["Moverse hacia atr\xe1s (izquierda) o hacia delante (derecha) un d\xeda."],"Left and Right Arrows":["Flechas izquierda y derecha"],"Select the date in focus.":["Seleccionar la fecha con foco."],"Navigating with a keyboard":["Navegaci\xf3n con teclado"],"Click the desired day to select it.":["Clic en el d\xeda deseado para seleccionarlo."],"Click the right or left arrows to select other months in the past or the future.":["Haz clic en las flechas izquierda y derecha para seleccionar otros meses en el pasado o en el futuro."],"Click to Select":["Clic para seleccionar"],"Calendar Help":["Ayuda del calendario"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Utiliza las teclas de flechas para cambiar el color base. Mu\xe9vete arriba para aclarar el color, abajo para oscurecerlo, a la izquierda para disminuir la saturaci\xf3n y a la derecha para aumentar la saturaci\xf3n."],"Choose a shade":["Elige una sombra"],"Change color format":["Cambia el formato de color"],"Color value in HSL":["Valor del color en HSL"],"Color value in RGB":["Valor del color en RGB"],"Color value in hexadecimal":["Valor del color en hexadecimal"],"RGB mode active":["Modo RGB activo"],"Hex color mode active":["Modo de color hex activo"],"Hue/saturation/lightness mode active":["Modo de tono/saturaci\xf3n/brillo activo"],"Move the arrow left or right to change hue.":["Mueve la flecha izquierda o derecha para cambiar el tono."],"Hue value in degrees, from 0 to 359.":["Valor del tono en grados, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor alfa, de 0 (transparente) a 1 (completamente opaco)."],Stripes:["Franjas"],"Your site doesn\u2019t include support for this block.":["Tu sitio no incluye compatibilidad con este bloque."],"Unrecognized Block":["Bloque no reconocido"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Tu sitio no incluye compatibilidad con el bloque \xab%s\xbb. Puedes dejar intacto este bloque o quitarlo del todo."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Tu sitio no incluye compatibilidad con el bloque \xab%s\xbb. Puedes dejar intacto este bloque, convertir su contenido a un bloque de HTML personalizado o quitarlo del todo."],"Media area":["\xc1rea de medios"],"Media & Text":["Medios y texto"],"Show media on right":["Mostrar medios a la derecha"],"Show media on left":["Mostrar medios a la izquierda"],"Open in New Tab":["Abrir en pesta\xf1a nueva"],Cover:["Fondo"],"Border Settings":["Ajustes del borde"],"Edit media":["Editar medios"],Medium:["Medio"],"Paste URL or type to search":["Pega la URL o teclea para buscar"],Terms:["T\xe9rminos"],"Your work will be published at the specified date and time.":["Tu trabajo se publicar\xe1 en la fecha y hora establecidas."],"Are you ready to schedule?":["\xbfEst\xe1s listo para programar?"],"Always show pre-publish checks.":["Mostrar siempre las comprobaciones previas a la publicaci\xf3n."],"Take Over":["Tomar el control"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Hay otro usuario trabajando ahora mismo en esta entrada, lo que quiere decir que t\xfa no puedes hacer cambios, a no ser que tomes el control."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s est\xe1 trabajando ahora mismo en esta entrada, lo que quiere decir que t\xfa no puedes hacer cambios a no ser que tomes el control."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Otro usuario tiene ahora el control de edici\xf3n de esta entrada. No te preocupes, se han guardado tus cambios hasta este momento."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s tiene ahora el control de edici\xf3n de esta entrada. No te preocupes, se han guardado tus cambios hasta este momento."],Avatar:["Avatar"],"This post is already being edited.":["Esta entrada est\xe1 siendo editada."],"Someone else has taken over this post.":["Alguien ha tomado el control de esta entrada."],"This block contains unexpected or invalid content.":["Este bloque contiene contenido inesperado o no v\xe1lido."],"Resolve Block":["Resolver bloque"],"Convert to HTML":["Convertir a HTML"],"This block can only be used once.":["Este bloque solo se puede utilizar una vez."],"Exit Code Editor":["Salir del editor de c\xf3digo."],"Editing Code":["Editando c\xf3digo"],"Solid Color":["Color s\xf3lido"],"Main Color":["Color principal"],HTML:["HTML"],"Write HTML\u2026":["Escribe HTML..."],"Media Settings":["Ajustes de medios"],"Overlay Color":["Color de superposici\xf3n"],Overlay:["Superposici\xf3n"],"Insert Media":["Insertar medios"],"Reusable block imported successfully!":["\xa1Bloque reutilizable importado correctamente!"],"Invalid Reusable Block JSON file":["Archivo JSON de bloque reutilizable no v\xe1lido"],"Invalid JSON file":["Archivo JSON no v\xe1lido"],"Import from JSON":["Importar de JSON"],Backtick:["Acento grave"],Period:["Punto"],Comma:["Coma"],"Change type of %d block":["Cambiar el tipo de %d bloque","Cambiar el tipo de %d bloques"],Current:["Actual"],"After Conversion":["Despu\xe9s de la conversi\xf3n"],"Change alignment":["Cambiar la alineaci\xf3n"],"Change text alignment":["Cambiar la alineaci\xf3n del texto"],"%d block":["%d bloque","%d bloques"],Escape:["Escape"],"Forward-slash":["Barra"],"No archives to show.":["No hay archivos que mostrar."],"This file is empty.":["Este archivo est\xe1 vac\xedo."],"Sorry, this file type is not supported here.":["Lo siento, este tipo de archivo no es compatible aqu\xed."],"Manage All Reusable Blocks":["Gestionar todos los bloques reutilizables"],Title:["T\xedtulo"],"Fullscreen Mode":["Modo a pantalla completa"],"Beautiful landscape":["Precioso paisaje"],"Close panel":["Cerrar panel"],"Convert to Classic Block":["Convertir a bloque cl\xe1sico"],"Remove Poster Image":["Quitar imagen del p\xf3ster"],"Select Poster Image":["Elegir imagen de poster"],"Poster Image":["Imagen de poster"],"This block is deprecated. Please use the Columns block instead.":["Este bloque est\xe1 obsoleto. Por favor, utiliza el bloque de columnas en su lugar."],"Text Columns (deprecated)":["Columnas de texto (obsoletas)"],"Row Count":["Recuento de filas"],"Column Count":["Recuento de columnas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloque est\xe1 obsoleto. Por favor, utiliza el bloque de p\xe1rrafo en su lugar."],"Subheading (deprecated)":["Subt\xedtulo (obsoleto)"],blockquote:["cita"],"Change the block type after adding a new paragraph.":["Cambia el tipo de bloque despu\xe9s de agregar un nuevo p\xe1rrafo."],"Spotlight Mode":["Modo de enfoque"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Las etiquetas ayudan a los usuarios y a los motores de b\xfasqueda a navegar por tu sitio y encontrar tu contenido. A\xf1ade unas cuantas palabras clave que describan tu entrada."],"Add tags":["A\xf1ade etiquetas"],"Apply the \"%1$s\" format.":["Aplica el formato \xab%1$s\xbb."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Tu tema utiliza formatos de entrada para destacar los distintos tipos de contenido, como im\xe1genes o v\xeddeos. Aplica un formato de entrada para ver estos estilos especiales."],"Use a post format":["Usa un formato de entrada"],"Insert After":["Insertar despu\xe9s"],"Insert Before":["Insertar antes"],"Move %1$d block from position %2$d down by one place":["Mueve %1$d bloque de la posici\xf3n %2$d a un sitio m\xe1s abajo","Mueve %1$d bloques de la posici\xf3n %2$d a un sitio m\xe1s abajo"],"Move %1$d block from position %2$d up by one place":["Mueve %1$d bloque de la posici\xf3n %2$d un sitio m\xe1s arriba","Mueve %1$d bloques de la posici\xf3n %2$d un sitio m\xe1s arriba"],"Move %1$s block from position %2$d %3$s to position %4$d":["Mueve %1$s bloque de la posici\xf3n %2$d %3$s a la posici\xf3n %4$d"],movie:["pel\xedcula"],"Insert a new block before the selected block(s).":["Inserta un nuevo bloque antes del/los bloque(s) seleccionado(s)."],"Remove the selected block(s).":["Quita el/los bloque(s) seleccionado(s)."],"Duplicate the selected block(s).":["Duplica el/los bloque(s) seleccionado(s)."],"Block shortcuts":["Atajos de bloques"],"Clear selection.":["Vaciar selecci\xf3n."],"Select all text when typing. Press again to select all blocks.":["Selecciona todo el texto mientras tecleas. Pulsa de nuevo para seleccionar todos los bloques."],"Selection shortcuts":["Atajos de selecci\xf3n"],"Switch between Visual Editor and Code Editor.":["Cambia entre el editor visual y el editor de c\xf3digo."],"Navigate to the previous part of the editor (alternative).":["Navega a la parte anterior del editor (alternativa)."],"Navigate to the next part of the editor (alternative).":["Navega a la parte siguiente del editor (alternativa)."],"Navigate to the previous part of the editor.":["Navega a la parte anterior del editor."],"Navigate to the next part of the editor.":["Navega a la parte siguiente del editor."],"Show or hide the settings sidebar.":["Muestra u oculta la barra lateral de ajustes."],"Redo your last undo.":["Rehace tu \xfaltimo deshacer."],"Undo your last changes.":["Deshace tus \xfaltimos cambios."],"Save your changes.":["Guarda tus cambios."],"Global shortcuts":["Atajos globales"],"Remove a link.":["Quita un enlace."],"Convert the selected text into a link.":["Convierte el texto seleccionado en un enlace."],"Underline the selected text.":["Subraya el texto seleccionado."],"Make the selected text italic.":["Cambia el texto seleccionado a cursiva."],"Make the selected text bold.":["Cambia el texto seleccionado a negrita."],"Text formatting":["Formatos de texto"],"Insert a new block after the selected block(s).":["Inserta un nuevo bloque despu\xe9s del/los bloque(s) seleccionado(s)."],"Keyboard Shortcuts":["Atajos de teclado"],"Thanks for testing Gutenberg!":["\xa1Gracias por probar Gutenberg!"],"Help build Gutenberg":["Ayuda a construir Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si quieres aprender m\xe1s sobre c\xf3mo crear bloques adicionales o si est\xe1s interesado en ayudar con el proyecto, p\xe1sate por el repositorio en GitHub."],"The WordPress community":["La comunidad WordPress"],"Code is Poetry":["El c\xf3digo es poes\xeda"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Puedes crear cualquier bloque que quieras, est\xe1tico y din\xe1mico, decorativo o plano. Aqu\xed tienes un bloque de cita:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Cualquier bloque puede estar en alguna de estas alineaciones. El bloque de incrustar tambi\xe9n las tiene, y es adaptable desde la base:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Lo de arriba es una galer\xeda con solo dos im\xe1genes. Es un modo sencillo de crear visualmente atractivos dise\xf1os, sin tener que lidiar con floats. Tambi\xe9n puedes convertir f\xe1cilmente la galer\xeda de nuevo a im\xe1genes individuales, usando el cambiador de bloques. "],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Por supuesto, la imagen a ancho completo puede ser realmente grande. Pero a veces la imagen es lo importante."],"Accessibility is important — don’t forget image alt attribute":["La accesibilidad es importante. No te olvides del atributo de imagen alt."],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si combinas las nuevas alineaciones de galer\xeda ancha y ancho completo puedes crear dise\xf1os ricos en medios muy r\xe1pidamente:"],"Media Rich":["Medios enriquecidos"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Puedes cambiar la cantidad de columnas de tus galer\xedas arrastrando un control deslizante en el inspector de bloques de la barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Los bloques pueden ser lo que necesitas. Por ejemplo, puede que quieras a\xf1adir una cita sutil como parte de la composici\xf3n de tu texto o puede que prefieras mostrar una estilizada y gigante. Todas est\xe1s opciones est\xe1n en el insertador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["La informaci\xf3n correspondiente al origen de la cita est\xe1 en un campo de texto separado, parecido a las leyendas bajo las im\xe1genes, para que la estructura de la cita est\xe9 protegida aunque la selecciones, modifiques o quites del origen. Es siempre sencillo a\xf1adirla de nuevo."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["El editor tratar\xe1 de crear una nueva experiencia de creaci\xf3n de p\xe1ginas y entradas que ayude a escribir publicaciones enriquecidas sin esfuerzo y tiene \xabbloques\xbb para hacer sencillo lo que hoy conllevar\xeda usar shortcodes, HTML personalizado o esot\xe9ricos descubrimientos de incrustaciones."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un gran beneficio de los bloques es que puedes editarlos donde est\xe9n y manipular directamente tu contenido. En vez de tener campos para editar cosas como la fuente de una cita o el texto de un bot\xf3n, puedes cambiar directamente el contenido. Prueba a modificar la siguiente cita:"],"Visual Editing":["Edici\xf3n visual"],"And Lists like this one of course :)":["Y listas como esta, por supuesto :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloques de dise\xf1o, como botones, im\xe1genes principales, separadores, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incrustados, como YouTube, tuits o entradas de otro WordPress."],Galleries:["Galer\xedas"],"Images & Videos":["Im\xe1genes y v\xeddeos"],"Text & Headings":["Texto y encabezados"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["An\xedmate a probarlo, puedes descubrir cosas que WordPress ya puede a\xf1adir en tus entradas de las que no ten\xedas ni idea. Aqu\xed tienes una breve lista de lo que actualmente puedes encontrar ah\xed:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagina que todo lo que WordPress puede hacer est\xe9 disponible para ti r\xe1pidamente y en el mismo lugar de la interfaz. No tienes que descubrir etiquetas HTML, clases o recordar sintaxis complicadas de shortcodes. Ese es el esp\xedritu tras el insertador \u2014 el bot\xf3n (+) que ver\xe1s en el editor \u2014 que te permite navegar por todos los bloques de contenido disponibles y a\xf1adirlos a tu entrada. Los plugins y temas pueden registrar los suyos propios, abriendo una enorme cantidad de posibilidades para la edici\xf3n y la publicaci\xf3n enriquecida."],"The Inserter Tool":["La herramienta Insertador"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Prueba a seleccionar o quitar o editar la leyenda, ahora ya no tienes porque ser cuidadoso a la hora de seleccionar la imagen u otro texto por error y arruinar la presentaci\xf3n."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Si tu tema es compatible, ver\xe1s el bot\xf3n de \xabancho\xbb en la barra de herramientas de la imagen. Pru\xe9balo."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Gestionar im\xe1genes y medios con el m\xe1ximo cuidado es un enfoque principal del nuevo editor. Afortunadamente encontrar\xe1s posibilidades para a\xf1adir leyendas o hacer de ancho completo tus fotos de un modo mucho m\xe1s f\xe1cil y robusto que antes."],"A Picture is Worth a Thousand Words":["Una imagen vale m\xe1s que mil palabras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Los encabezados tambi\xe9n son bloques separados, lo que ayuda a la estructura y organizaci\xf3n de tu contenido."],"... like this one, which is right aligned.":["... como esta, que est\xe1 alineada a la derecha."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Lo que est\xe1s leyendo ahora es un bloque de texto, el bloque m\xe1s b\xe1sico de todos. El bloque de texto tiene sus propios controles para moverlo libremente por toda la publicaci\xf3n\u2026"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["El objetivo de este nuevo editor es hacer que a\xf1adir contenido enriquecido a WordPress sea algo sencillo y agradable. Toda esta entrada est\xe1 creada con piezas de contenido \u2014algo parecido a los ladrillos LEGO \u2014 que puedes mover y con los que puedes interactuar. Mueve tu cursor y ver\xe1s que aparecen los distintos bloques con l\xedneas y flechas. Pulsa en las flechas para recolocar r\xe1pidamente los bloques, sin miedo a perder cosas sen el proceso de copiar y pegar. "],"Of Mountains & Printing Presses":["Hablando de monta\xf1as e imprentas"],"Welcome to the Gutenberg Editor":["Bienvenido al editor Gutenberg"],"block name\x04More":["M\xe1s"],"button to expand options\x04More":["M\xe1s"],"Are you sure you want to unschedule this post?":["\xbfSeguro que quieres anular la programaci\xf3n de esta entrada?"],"Alt Text (Alternative Text)":["Texto alt (texto alternativo)"],"Reusable Block":["Bloque reutilizable"],"Unique identifier for the object.":["Identificador \xfanico para el objeto."],"Untitled Reusable Block":["Bloque reutilizable sin t\xedtulo"],Small:["Peque\xf1o"],"(%s: %s)":["(%s: %s)"],Reusable:["Reutilizable"],"(current %s: %s)":["(actual %s: %s)"],"Remove from Reusable Blocks":["Quitar de los bloques reutilizables"],"Add to Reusable Blocks":["A\xf1adir a los bloques reutilizables"],"Keep as HTML":["Mantener como HTML"],"Edit URL":["Editar URL"],"Color Settings":["Ajustes de color"],"The response is not a valid JSON response.":["Las respuesta no es una respuesta JSON v\xe1lida."],"Editor publish":["Publicaci\xf3n del editor"],Muted:["Silenciado"],"Video Settings":["Ajustes de v\xeddeo"],"recent comments":["comentarios recientes"],"Latest Comments":["\xdaltimos comentarios"],"Display Excerpt":["Mostrar extracto"],"Display Date":["Mostrar fecha"],"Display Avatar":["Mostrar avatar"],"Latest Comments Settings":["Ajustes de \xfaltimos comentarios"],"Number of Comments":["N\xfamero de comentarios"],"Background Opacity":["Opacidad del fondo"],Auto:["Auto"],Preload:["Precarga"],"Audio Settings":["Ajustes de audio"],"Display a monthly archive of your posts.":["Muestra un archivo por meses de tus entradas."],"Display as Dropdown":["Mostrar como desplegable"],"Show Post Counts":["Mostrar contador de entradas"],"Archives Settings":["Ajustes de archivos"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Soporte"],"No comments to show.":["No hay comentarios que mostrar."],"%1$s on %2$s":["%1$s en %2$s"],"Select Post":["Seleccionar entrada"],"Select Week":["Seleccionar semana"],"Select Day":["Seleccionar d\xeda"],"Select Month":["Elegir mes"],"Select Year":["Seleccionar a\xf1o"],Archives:["Archivos"],"Very dark gray":["Gris muy oscuro"],"Cyan bluish gray":["Gris azulado cian"],"Very light gray":["Gris muy claro"],"Vivid cyan blue":["Azul cian vivo"],"Pale cyan blue":["Azul cian p\xe1lido"],"Vivid green cyan":["Cian verde vivo"],"Light green cyan":["Cian verde claro"],"Luminous vivid amber":["Ambar vivo luminoso"],"Luminous vivid orange":["Naranja vivo luminoso"],"Vivid red":["Rojo vivo"],"Pale pink":["Rosa p\xe1lido"],"Inline image":["Imagen integrada"],"Available block types":["Tipos de bloques disponibles"],"Transform To:":["Transformar a:"],"Remove Block":["Quitar bloque"],"Open publish panel":["Abrir el panel de publicar"],Dots:["Puntos"],"Wide Line":["L\xednea ancha"],Large:["Grande"],"Show download button":["Mostrar el bot\xf3n de descarga"],"Download button settings":["Ajustes del bot\xf3n de descarga"],"Link To":["Enlazado a"],"Text link settings":["Ajustes del texto del enlace"],pdf:["pdf"],document:["documento"],"Copy URL":["Copiar URL"],"Write file name\u2026":["Escribe el nombre del archivo\u2026"],"Edit file":["Editar archivo"],File:["Archivo"],"A single column within a columns block.":["Una columna simple dentro de un bloque de columnas."],Column:["Columna"],Outline:["Contorno"],Loop:["Repetir"],Autoplay:["Reproducci\xf3n autom\xe1tica"],"Playback Controls":["Controles de reproducci\xf3n"],"Close dialog":["Cerrar di\xe1logo"],"Sorry, this file type is not permitted for security reasons.":["Lo siento, este tipo de archivo no est\xe1 permitido por motivos de seguridad."],"Disable tips":["Desactivar consejos"],"Got it":["Entendido"],"See next tip":["Ver siguiente consejo"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Cuando est\xe9s listo, env\xeda tu trabajo para revisi\xf3n y un editor te lo podr\xe1 aprobar."],"Are you ready to submit for review?":["\xbfEst\xe1s listo para enviarlo a revisi\xf3n?"],"Replace image":["Reemplazar imagen"],"Remove image":["Quitar imagen"],"Error while uploading file %s to the media library.":["Error al subir el archivo %s a la biblioteca de medios."],"This file exceeds the maximum upload size for this site.":["El tama\xf1o del archivo excede el tama\xf1o permitido en este sitio."],"View the autosave":["Ver el guardado autom\xe1tico"],"There is an autosave of this post that is more recent than the version below.":["Hay un guardado autom\xe1tico de esta entrada que es m\xe1s reciente que la versi\xf3n de abajo."],Autosaving:["Guardando autom\xe1ticamente"],"Enter URL here\u2026":["Introduce aqu\xed la URL\u2026"],"Pin to toolbar":["Fijar a la barra de herramientas"],"Unpin from toolbar":["Quitar de la barra de herramientas"],"Insert a table \u2014 perfect for sharing charts and data.":["Inserta una tabla -- perfecto para compartir gr\xe1ficos y datos."],"Fixed width table cells":["Celdas de tabla de ancho fijo"],"Table Settings":["Ajustes de tabla"],"Add text that respects your spacing and tabs, and also allows styling.":["A\xf1ade texto que respete tus espacios y tabulados, y que tambi\xe9n permita estilos."],"Display a list of your most recent posts.":["Muestra una lista de tus entradas m\xe1s recientes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["A\xf1ade un bloque que muestra contenido extra\xeddo de otros sitios, como Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["A\xf1ade un bloque que muestra contenido en varias columnas, luego a\xf1ade cualquier bloque de contenido que quieras."],"Error loading block: %s":["Error al cargar el bloque: %s"],"Unknown error":["Error desconocido"],"Embed Handler":["Gestor del servicio"],"term\x04Remove %s":["Quitar %s"],"Copy the permalink":["Copia el enlace permanente"],"Permalink copied":["Enlace permanente copiado"],"Height in pixels":["Altura en p\xedxeles"],"Spacer Settings":["Ajustes del espaciador"],Spacer:["Espaciador"],"Toggle to show a large initial letter.":["Alternar para mostrar una letra inicial grande."],"Showing large initial letter.":["Mostrando letra inicial grande."],"Name:":["Nombre:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Quitar elemento"],"Color code: %s":["C\xf3digo de color: %s"],"Skip to the selected block":["Saltar al bloque seleccionado"],"Publish\u2026":["Publicar\u2026"],"Schedule\u2026":["Programado\u2026"],"Edit post permalink":["Editar enlace permanente de la entrada"],"Show Block Settings":["Mostrar ajustes del bloque"],"Hide Block Settings":["Ocultar ajustes del bloque"],"Block settings closed":["Ajustes del bloque cerrados"],"Close plugin":["Cerrar plugin"],"Link settings":["Ajustes del enlace"],Unlink:["Quitar enlace"],"Page break":["Salto de p\xe1gina"],pagination:["paginaci\xf3n"],"next page":["p\xe1gina siguiente"],"Image Size":["Tama\xf1o de la imagen"],Height:["Altura"],Width:["Ancho"],"Image Dimensions":["Dimensiones de la imagen"],"Thumbnails are not cropped.":["Las miniaturas no se recortan."],"Thumbnails are cropped to align.":["Las miniaturas se recortan alineadas."],"Media Library":["Biblioteca de medios"],Advanced:["Avanzado"],"Add item":["A\xf1adir elemento."],"Reset the template":["Restablecer la plantilla"],"Keep it as is":["Mantenerla como est\xe1"],"The content of your post doesn\u2019t match the template assigned to your post type.":["El contenido de tu entrada no se ajusta a la plantilla asignada a tu tipo de contenido."],"Resetting the template may result in loss of content, do you want to continue?":["Restablecer la plantilla puede resultar en p\xe9rdida de contenido, \xbfquieres continuar?"],"Document Statistics":["Estad\xedsticas del documento"],"is now scheduled. It will go live on":["est\xe1 ahora programada. Estar\xe1 disponible el"],Scheduled:["Programada"],"Scheduling\u2026":["Programando\u2026"],"Code editor selected":["Editor de c\xf3digo seleccionado"],"Visual editor selected":["Editor visual seleccionado"],Plugins:["Plugins"],"Custom Size":["Tama\xf1o personalizado"],"Layout Elements":["Elementos de dise\xf1o"],"term\x04%s removed":["%s quitada"],"term\x04%s added":["%s a\xf1adida"],"imperative verb\x04Preview":["Vista previa"],"Block deleted.":["Bloque borrado."],"Block updated.":["Bloque actualizado."],"Block created.":["Bloque creado."],"Trashing failed":["Fallo al enviar a la papelera"],"Updating failed.":["Fallo al actualizar"],"Scheduling failed.":["Fallo al programar"],"Publishing failed.":["Fallo al publicar"],"View Post":["Ver entrada"],"You have unsaved changes. If you proceed, they will be lost.":["Tienes cambios sin guardar. Si sigues se perder\xe1n."],"Document Outline":["Esquema del documento"],Paragraphs:["P\xe1rrafos"],Headings:["Encabezados"],Words:["Palabras"],"Content structure":["Estructura del contenido"],Public:["P\xfablico"],"Protected with a password you choose. Only those with the password can view this post.":["Protegida con una contrase\xf1a que t\xfa elijas. Solo los que tengan la contrase\xf1a pueden ver esta entrada."],"Password Protected":["Protegida con contrase\xf1a"],"Only visible to site admins and editors.":["Solo visible para administradores y editores del sitio."],Private:["Privada"],"Visible to everyone.":["Visible por todos"],"Post Visibility":["Visibilidad de la entrada"],"Would you like to privately publish this post now?":["\xbfTe gustar\xeda publicar ahora en privado esta entrada?"],"Use a secure password":["Usa una contrase\xf1a segura"],"Create password":["Crear contrase\xf1a"],"Move to Trash":["Mover a la papelera"],"Parent Term":["T\xe9rmino superior"],"Parent Category":["Categor\xeda superior"],"Add new term":["A\xf1adir nuevo t\xe9rmino"],"Add new category":["A\xf1adir nueva categor\xeda"],Term:["T\xe9rmino"],Tag:["Etiqueta"],"Add New Term":["A\xf1adir nuevo t\xe9rmino"],"Add New Tag":["A\xf1adir nueva etiqueta"],"Switch to Draft":["Cambiar a borrador"],"Are you sure you want to unpublish this post?":["\xbfSeguro que quieres anular la publicaci\xf3n de esta entrada?"],Immediately:["Inmediatamente"],"Save Draft":["Guardar borrador"],Saving:["Guardando"],"Publish:":["Publicar: "],"Visibility:":["Visibilidad:"],"Are you ready to publish?":["\xbfEst\xe1s listo para publicar?"],"Copy Link":["Copiar enlace"],"What\u2019s next?":["\xbfY ahora qu\xe9?"],"is now live.":["est\xe1 ahora visible."],Published:["Publicada"],Schedule:["Programar"],Update:["Actualizar"],"Submit for Review":["Enviar a revisi\xf3n"],"Updating\u2026":["Actualizando..."],"Publishing\u2026":["Publicando..."],"Allow Pingbacks & Trackbacks":["Permitir pingbacks y trackbacks"],"Permalink:":["Enlace permanente:"],"Pending Review":["Pendiente de revisi\xf3n"],"%d Revision":["%d revisi\xf3n","%d revisiones"],"Suggestion:":["Sugerencia:"],"Post Format":["Formato de entrada:"],Chat:["Chat"],Status:["Estado"],Standard:["Est\xe1ndar"],Aside:["Minientrada"],"Set Featured Image":["Establecer imagen destacada"],"Learn more about manual excerpts":["Aprende m\xe1s sobre extractos manuales"],"Write an excerpt (optional)":["Escribe un extracto (opcional)"],"Allow Comments":["Permitir comentarios"],"Template:":["Plantilla:"],"no parent":["sin superior"],"no title":["sin t\xedtulo"],Order:["Orden"],"No blocks found.":["No se han encontrado bloques."],"%d result found.":["%d resultado encontrado.","%d resultados encontrados."],Saved:["Guardado"],Embeds:["Incrustados"],Blocks:["Bloques"],"Search for a block":["Buscar un bloque"],"Add block":["A\xf1adir bloque"],"Add %s":["A\xf1adir %s"],"Copy Error":["Copiar error"],"Copy Post Text":["Copiar texto de la entrada"],"Attempt Recovery":["Intentar la recuperaci\xf3n"],"The editor has encountered an unexpected error.":["El editor ha encontrado un error inesperado."],Undo:["Deshacer"],Redo:["Rehacer"],"(Multiple H1 headings are not recommended)":["(No se recomiendan varios H1)"],"(Your theme may already use a H1 for the post title)":["(Tu tema puede que ya use un H1 para el t\xedtulo de la entrada)"],"(Incorrect heading level)":["(Nivel de encabezado incorrecto)"],"(Empty heading)":["(Encabezado vac\xedo)"],"Block Styles":["Estilos de bloque"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\xbfEst\xe1s seguro de querer borrar este bloque compartido?\nSe borrar\xe1 permanentemente de todas las entradas y p\xe1ginas que lo usen."],"Convert to Regular Block":["Convertir a bloque normal"],"More options":["M\xe1s opciones"],"Edit visually":["Editar visualmente"],Duplicate:["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Los bloques no se pueden mover hacia abajo porque ya est\xe1n en el fondo"],"Blocks cannot be moved up as they are already at the top":["Los bloques no se pueden mover arriba porque ya est\xe1n al principio"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["El bloque %1$s est\xe1 al principio del contenido y no se puede mover %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["El bloque %1$s est\xe1 al final del contenido y no se puede mover %2$s"],"Block %s is the only block, and cannot be moved":["El bloque %s es el \xfanico bloque, y no puede moverse"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Convertir a bloques"],"Block: %s":["Bloque: %s"],"This block has encountered an error and cannot be previewed.":["Este bloque ha encontrado un error y no puede previsualizarse."],"No block selected.":["Ning\xfan bloque seleccionado."],"Transform into:":["Transformar a:"],Remove:["Quitar"],"Find original":["Encontrar el original"],"Copy All Content":["Copiar todo el contenido"],"Copied!":["\xa1Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Ahora hay ajustes adicionales disponibles en la barra de ajustes del editor de bloques"],Visibility:["Visibilidad"],"Status & Visibility":["Estado y visibilidad"],"Page Attributes":["Atributos de p\xe1gina"],Block:["Bloque"],Document:["Documento"],"Featured Image":["Imagen destacada"],"Close settings":["Cerrar ajustes"],"Editor content":["Contenido del editor"],Tools:["Herramientas"],Editor:["Editor"],"Code Editor":["Editor de c\xf3digo"],"Visual Editor":["Editor visual"],"Editor top bar":["Barra superior del editor"],Settings:["Ajustes"],Reset:["Restablecer"],"Dismiss this notice":["Descartar este aviso"],"Item removed.":["Elemento quitado."],"Item added.":["Elemento a\xf1adido."],"Drop files to upload":["Arrastra archivos para subirlos"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Ha ocurrido un error desconocido."],"No results.":["No hay resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontrado, utiliza las teclas arriba y abajo para navegar.","%d resultados encontrados, utiliza las teclas arriba y abajo para navegar."],"(no title)":["(sin t\xedtulo)"],URL:["URL"],Submit:["Enviar"],Close:["Cerrar"],"Insert link":["Insertar un enlace"],"Edit link":["Editar el enlace"],Link:["Enlace"],Strikethrough:["Tachado"],Italic:["Cursiva"],Bold:["Negrita"],"Remove link":["Eliminar el enlace"],"Number of items":["N\xfamero de elementos"],All:["Todo"],Category:["Categor\xeda"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["De antiguas a nuevas"],"Newest to Oldest":["De nuevas a antiguas"],"Order by":["Ordenar por"],Select:["Elegir"],"Select or Upload Media":["Elige o sube medios"],Video:["V\xeddeo"],"Edit video":["Editar v\xeddeo"],"Write\u2026":["Escribe\u2026"],poetry:["poes\xeda"],Verse:["Verso"],"New Column":["Nueva columna"],"Delete Column":["Borrar columna"],"Add Column After":["A\xf1adir columna despu\xe9s"],"Add Column Before":["A\xf1adir columna antes"],"Delete Row":["Borrar fila"],"Add Row After":["A\xf1adir fila despu\xe9s"],"Add Row Before":["A\xf1adir fila antes"],"Edit table":["Editar tabla"],Table:["Tabla"],"Write subheading\u2026":["Escribe el subt\xedtulo\u2026"],"Write shortcode here\u2026":["Escribe aqu\xed el shortcode\u2026"],Shortcode:["Shortcode"],divider:["separador"],"horizontal-line":["l\xednea-horizontal"],Separator:["Separador"],Quote:["Cita"],"Write citation\u2026":["Escribe la referencia\u2026"],"Write quote\u2026":["Escribe la cita\u2026"],Pullquote:["Cita"],"Write preformatted text\u2026":["Escribe texto preformateado\u2026"],Preformatted:["Preformateado"],text:["texto"],Paragraph:["P\xe1rrafo"],"Font Size":["Tama\xf1o de fuente"],"Drop Cap":["Capitalizar"],"Text Settings":["Ajustes del texto"],"Read more":["Leer m\xe1s"],"Write list\u2026":["Escribe una lista\u2026"],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista con vi\xf1etas"],"Indent list item":["A\xf1adir sangr\xeda al elemento de la lista"],"Outdent list item":["Reducir sangr\xeda al elemento de la lista"],"Convert to ordered list":["Convertir a lista ordenada"],"Convert to unordered list":["Convertir a lista desordenada"],List:["Lista"],"recent posts":["entradas recientes"],"No posts found.":["No se encontraron entradas."],"Latest Posts":["\xdaltimas entradas"],"Display post date":["Mostrar fecha de la entrada"],"Grid view":["Vista de cuadr\xedcula"],"List view":["Vista de lista"],photo:["foto"],"Image Settings":["Ajustes de imagen"],Image:["Imagen"],Preview:["Vista previa"],embed:["incrustar"],"Custom HTML":["HTML personalizado"],subtitle:["subt\xedtulo"],title:["t\xedtulo"],Heading:["Encabezado"],"Write heading\u2026":["Escribe el encabezado\u2026"],"Heading %d":["Encabezado %d"],Level:["Nivel"],"Heading Settings":["Ajustes de encabezado"],photos:["fotos"],images:["im\xe1genes"],"Remove Image":["Quitar imagen"],None:["Ninguna"],"Media File":["Archivo multimedia"],"Attachment Page":["P\xe1gina de adjuntos"],"Crop Images":["Recortar im\xe1genes"],"Gallery Settings":["Ajustes de galer\xeda"],Gallery:["Galer\xeda"],Classic:["Cl\xe1sico"],video:["v\xeddeo"],audio:["audio"],music:["m\xfasica"],image:["imagen"],blog:["blog"],post:["entrada"],"Embedded content from %s":["Contenido incrustado desde %s"],"Enter URL to embed here\u2026":["Introduce aqu\xed la URL a incrustar\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Incrustando\u2026"],"Write title\u2026":["Escribe el t\xedtulo\u2026"],"Fixed Background":["Fondo fijo"],"Edit image":["Editar imagen"],Columns:["Columnas"],Experiments:["Experimentos"],Code:["C\xf3digo"],"Write code\u2026":["Escribe c\xf3digo\u2026"],Categories:["Categor\xedas"],"Show Hierarchy":["Mostrar jerarqu\xeda"],"Show post counts":["Mostrar contador de entradas"],"Categories Settings":["Ajustes de categor\xedas"],"Add text\u2026":["A\xf1ade texto\u2026"],Button:["Bot\xf3n"],Apply:["Aplicar"],"Text Color":["Color del texto"],"Background Color":["Color de fondo"],"Block has been deleted or is unavailable.":["El bloque se ha borrado o no est\xe1 disponible."],"Reusable Blocks":["Bloque reutilizable"],Cancel:["Cancelar"],Edit:["Editar"],"Edit audio":["Editar audio"],"Write caption\u2026":["Escribe la leyenda\u2026"],"Use URL":["Usar URL"],Audio:["Audio"],Upload:["Subir"],"Additional CSS Class(es)":["Clase(s) CSS adicional(es)"],"HTML Anchor":["Anclaje HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combinaci\xf3n de color puede ser dif\xedcil de leer para la gente. Trata de usar un color de fondo m\xe1s claro y/o un color de texto m\xe1s oscuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combinaci\xf3n de color puede ser dif\xedcil de leer para la gente. Trata de usar un color de fondo m\xe1s oscuro y/o un color de texto m\xe1s claro."],Clear:["Borrar"],"Custom color picker":["Selector de color personalizado"],"Color: %s":["Color: %s"],"Full Width":["Ancho completo"],"Wide Width":["Ancho amplio"],Widgets:["Widgets"],Formatting:["Formatos"],"Common Blocks":["Bloques comunes"],"Align Right":["Alinear a la derecha"],"Align Center":["Alinear al centro"],"Align Left":["Alinear a la izquierda"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimiendo desde 1440. Este es el plugin en desarrollo del nuevo editor de bloques del n\xfacleo."],"Add title":["A\xf1adir t\xedtulo"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["El modo de desarrollo de Gutenberg requiere crear una serie de archivos. Ejecuta npm install para instalar las dependencias, npm run build para crear los archivos o npm run dev para crear y ver los archivos. Lee el archivo colaborando para m\xe1s informaci\xf3n."],Author:["Autor"],Slug:["Slug"],Discussion:["Comentarios"],"Custom Fields":["Campos personalizados"],Excerpt:["Extracto"],Publish:["Publicar"],Metadata:["Metadatos"],Save:["Guardar"],Documentation:["Documentaci\xf3n"],"Select Category":["Elegir categor\xeda"],"(Untitled)":["(Sin t\xedtulo)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requiere WordPress %s o posterior para funcionar adecuadamente. Por favor, actualiza WordPress antes de activar Gutenberg."],"Gutenberg Team":["El equipo de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["hace %s"],"Block style name must be a string.":["El nombre del estilo del bloque debe ser una cadena."]}},838,[]); +__d(function(e,a,o,t,r,i,s){r.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":["Bloque mostrado como vac\xedo."],"Inline Code":["C\xf3digo en l\xednea"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Aviso: Reproducir videos autom\xe1ticamente puede causar problemas de usabilidad para algunos visitantes."],"Footer section":["Secci\xf3n de pie de p\xe1gina"],"Header section":["Secci\xf3n de cabecera"],"Sorting and Filtering":["Orden y filtrado"],"Post Meta Settings":["Ajustes de informaci\xf3n de entrada"],"Post Content":["Contenido de la entrada"],"Post Content Settings":["Ajustes del contenido de la entrada"],"Percentage width":["Porcentaje del ancho"],"Column Settings":["Ajustes de columna"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Aviso: reproducir audios autom\xe1ticamente puede producir problemas de usabilidad para algunos visitantes."],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":["Contenido de la pantalla de widgets"],"Widgets advanced settings":["Ajustes avanzados de widgets"],"(experimental)":["(experimental)"],"Block Areas":["\xc1reas de bloques"],"Widgets screen top bar":["Barra superior de la pantalla de widgets"],"This color combination may be hard for people to read.":["Esta combinaci\xf3n de colores puede ser dif\xedcil de leer para la gente."],"There is no poster image currently selected":["No hay ninguna imagen de p\xf3ster seleccionada en este momento"],"The current poster image url is %s":["La URL de la imagen actual de p\xf3ster actual es %s"],section:["secci\xf3n"],row:["fila"],wrapper:["envoltura"],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":["%d palabra","%d palabras"],"Top Toolbar":["Barra de herramientas superior"],"Link Rel":["Enlace relativo"],"Link CSS Class":["Enlace de una clase CSS"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Cre\xe1 contenido y guardalo para que vos y otros contribuidores puedan usarlo en tu sitio. Actualiz\xe1 el bloque y los cambios ser\xe1n aplicados en todos los lugares donde \xe9ste sea utilizado."],"To edit the featured image, you need permission to upload media.":["Para editar la imagen destacada necesit\xe1s permisos para subir archivos multimedia."],"To edit this block, you need permission to upload media.":["Para editar este bloque necesit\xe1s permisos para subir archivos multimedia. "],"(selected block)":["(bloque seleccionado)"],"Block tools":["Herramientas de bloque"],Permalink:["Enlace permanente"],"This image has an empty alt attribute":["Esta imagen tiene un atributo atl vac\xedo"],"This image has an empty alt attribute; its file name is %s":["Esta imagen tiene un atributo atl vac\xedo; el nombre del archivo es %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":["Agregar nuevo"],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["Advertencia: el enlace ha sido insertado pero puede haber errores. Probalo, por favor."],"%s block selected.":["%s bloque seleccionado.","%s bloques seleccionados."],Thumbnail:["Miniatura"],"Full Size":["Tama\xf1o completo"],"Link selected.":[],"Start writing with text or HTML":["Empez\xe1 a escribir texto o HTML"],"Type text or HTML":["Escribir texto o HTML"],"Block icon":["\xcdcono del bloque"],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":["Empez\xe1 a escribir o ingres\xe1 / para elegir un bloque"],"Empty block; start writing or type forward slash to choose a block":["Bloque vacio. Empez\xe1 a escribir o escrib\xed una barra diagonal para elegir un bloque"],"Paragraph block":["Bloque de p\xe1rrafo"],"Page Break":["Salto de p\xe1gina"],"Stack on mobile":["Apilar en dispositivos m\xf3viles"],Annotation:["Anotaci\xf3n"],"Drag images, upload new ones or select files from your library.":["Arrastr\xe1 im\xe1genes, sub\xed nuevas o seleccion\xe1 archivos de tu biblioteca."],"blocks\x04Most Used":["M\xe1s utilizados"],"imperative verb\x04Resolve":["Resuelve"],"font size name\x04Huge":["Enorme"],"font size name\x04Large":["Grande"],"font size name\x04Medium":["Medio"],"font size name\x04Small":["Peque\xf1o"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Importar"],"button label\x04Download":["Descargar"],"button label\x04Embed":["Incrustar"],"block title\x04Embed":["Incrustado"],"block title\x04Classic":["Cl\xe1sico"],"block style\x04Large":["Grande"],"%s (opens in a new tab)":["%s (abre en una nueva pesta\xf1a)"],"Link edited.":["Enlace editado."],"Link removed.":["Enlace quitado."],media:["multimedia"],"Double-check your settings before publishing.":["Volv\xe9 a comprobar tus ajustes antes de publicar."],"Generating preview\u2026":["Generando vista previa\u2026"],"Edit or update the image":["Edit\xe1 o actualiza la imagen"],Media:["Multimedia"],"Navigate to the nearest toolbar.":["Navega hasta la barra de herramientas m\xe1s cercana."],"Document tools":["Herramientas del documento"],"Document and block tools":["Herramientas del documento y los bloques"],"Embed a video from your media library or upload a new one.":["Incrusta un video desde tu biblioteca multimedia o sube uno nuevo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Inserta poes\xeda. Utiliza formatos de espaciado especiales. O cita letras de canciones."],"Add white space between blocks and customize its height.":["Agrega espacio en blanco entre bloques y personaliza su altura."],"Insert additional custom elements with a WordPress shortcode.":["Inserta elementos adicionales personalizados con un shortcode de WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crea una ruptura entre ideas o secciones con un separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Da un \xe9nfasis visual al texto citado. \"Al citar a otros, nos citamos a nosotros mismos.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Da un \xe9nfasis visual especial a una cita de tu texto."],"Start with the building block of all narrative.":["Empieza con el bloque que cimienta toda la narrativa."],"Separate your content into a multi-page experience.":["Separa tu contenido en una experiencia multi-p\xe1gina."],"Set media and words side-by-side for a richer layout.":["Coloc\xe1 las palabras y los archivos multimedia uno al lado del otro para tener un dise\xf1o m\xe1s rico."],"Media & Text Settings":["Ajustes multimedia y texto"],"Create a bulleted or numbered list.":["Crea una lista de vi\xf1etas o numerada."],"Display a list of your most recent comments.":["Muestra una lista de tus comentarios m\xe1s recientes."],"Insert an image to make a visual statement.":["Inserta una imagen para hacer una declaraci\xf3n visual."],"Add custom HTML code and preview it as you edit.":["Agrega c\xf3digo personalizado HTML y previsual\xedzalo mientras lo editas."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce nuevas secciones y organiza el contenido para ayudar a los visitantes (y a los motores de b\xfasqueda) a comprender la estructura de tu contenido."],"Display multiple images in a rich gallery.":["Muestra m\xfaltiples im\xe1genes en una galer\xeda enriquecida."],"Add a link to a downloadable file.":["Agrega un enlace a un archivo descargable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incrusta videos, im\xe1genes, tweets, audios, y otros contenidos desde fuentes externas."],"Resize for smaller devices":["Cambia el tama\xf1o para dispositivos m\xe1s peque\xf1os"],"This embed may not preserve its aspect ratio when the browser is resized.":["Este incrustado podr\xeda no mantener su relaci\xf3n de aspecto cuando el navegador cambie de tama\xf1o."],"This embed will preserve its aspect ratio when the browser is resized.":["Este incrustado mantendr\xe1 su relaci\xf3n de aspecto cuando el navegador cambie de tama\xf1o."],"Embed an Animoto video.":["Incrustar video Animoto."],"Embed a Vimeo video.":["Incrustar video Vimeo."],"Embed Flickr content.":["Incrustar contenido de Flickr."],"Embed Spotify content.":["Incrustar contenido de Spotify."],"Embed SoundCloud content.":["Incrustar contenido de SoundCloud."],"Embed a WordPress post.":["Incrustar una entrada de WordPress."],"Embed an Instagram post.":["Incrustar una publicaci\xf3n de Instagram."],"Embed a Facebook post.":["Incrustar una publicaci\xf3n de Facebook."],"Embed a WordPress.tv video.":["Incrustar un video de WordPress.tv."],"Embed a VideoPress video.":["Incrustar un video de VideoPress."],"Embed a Tumblr post.":["Incrustar una publicaci\xf3n de Tumblr."],"Embed a TED video.":["Incrustar un video de TED."],"Embed Speaker Deck content.":["Incrustar contenido de Speaker Deck."],"Embed a YouTube video.":["Incrustar un video de YouTube."],"Embed SmugMug content.":["Incrustar contenido de SmugMug."],"Embed Slideshare content.":["Incrustar contenido de Slideshare."],"Embed Scribd content.":["Incrustar contenido de Scribd."],"Embed Screencast content.":["Incrustar contenido de Screencast."],"Embed ReverbNation content.":["Incrustar contenido de ReverbNation."],"Embed a Reddit thread.":["Incrustar una hilo de Reddit."],"Embed Polldaddy content.":["Incrustar contenido de Polldaddy."],"Embed Mixcloud content.":["Incrustar contenido de Mixcloud."],"Embed a tweet.":["Incrustar un tweet."],"Embed Meetup.com content.":["Incrustar contenido de Meetup.com."],"Embed Kickstarter content.":["Incrustar contenido de Kickstarter."],"Embed Issuu content.":["Incrustar contenido de Issuu."],"Embed Imgur content.":["Incrustar contenido de Imgur."],"Embed Hulu content.":["Incrustar contenido de Hulu."],"Embed a Dailymotion video.":["Incrustar un video de Dailymotion."],"Embed CollegeHumor content.":["Incrustar contenido de CollegeHumor."],"Embed Cloudup content.":["Incrustar contenido de Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Agrega una imagen o video con un texto superpuesto \u2014 genial para encabezados."],"Display code snippets that respect your spacing and tabs.":["Muestra fragmentos de c\xf3digo que respetan tus espacios y tabuladores."],"Use the classic WordPress editor.":["Utiliza el editor cl\xe1sico de WordPress."],"Display a list of all categories.":["Muestra una lista de todas las categor\xedas."],"Embed a simple audio player.":["Incrusta un reproductor sencillo de audio."],"noun\x04View":["Ver"],"editor button\x04Left to right":["De izquierda a derecha"],"Save as Pending":["Guardar como pendiente"],"%s address":["direcci\xf3n del %s"],"Paste or type URL":["Pega o teclea la URL"],"Insert from URL":["Insertar desde URL"],"Block Navigator":[],Styles:["Estilos"],"Advanced Panels":["Paneles avanzados"],"Document Panels":["Paneles de documentos"],General:["Generales"],"Open the block navigation menu.":["Abre el men\xfa de navegaci\xf3n de bloques."],"Work without distraction":["Trabajar sin distracciones"],"Focus on one block at a time":["Enf\xf3cate en un bloque cada vez"],"Access all block and document tools in a single place":["Accede a todos las herramientas de bloques y documentos desde un solo lugar"],Options:["Opciones"],"(opens in a new tab)":["(abre en una nueva pesta\xf1a)"],Minutes:["Minutos"],Hours:["Horas"],Time:["Hora"],Year:["A\xf1o"],Day:["D\xeda"],December:["diciembre"],November:["noviembre"],October:["octubre"],September:["septiembre"],August:["agosto"],July:["julio"],June:["junio"],May:["mayo"],April:["abril"],March:["marzo"],February:["febrero"],January:["enero"],Month:["Mes"],Date:["Fecha"],"Go to the first (home) or last (end) day of a week.":["Ve al primer (inicio) o \xfaltimo (fin) d\xeda de una semana."],"Home/End":["Inicio/Fin"],"Home and End":["Inicio y fin"],"Move backward (PgUp) or forward (PgDn) by one month.":["Moverse hacia atr\xe1s (PgUp) o hacia delante (PgDn) un mes."],"PgUp/PgDn":["Av P\xe1g/Re P\xe1g"],"Page Up and Page Down":["Avanzar p\xe1gina y retroceder p\xe1gina"],"Move backward (up) or forward (down) by one week.":["Moverse hacia atr\xe1s (arriba) o hacia delante (abajo) una semana."],"Up and Down Arrows":["Flechas arriba y abajo"],"Move backward (left) or forward (right) by one day.":["Moverse hacia atr\xe1s (izquierda) o hacia delante (derecha) un d\xeda."],"Left and Right Arrows":["Flechas izquierda y derecha"],"Select the date in focus.":["Seleccionar la fecha con foco."],"Navigating with a keyboard":["Navegaci\xf3n con teclado"],"Click the desired day to select it.":["Clic en el d\xeda deseado para seleccionarlo."],"Click the right or left arrows to select other months in the past or the future.":["Hac\xe9 clic en las flechas izquierda y derecha para seleccionar otros meses en el pasado o en el futuro."],"Click to Select":["Clic para seleccionar"],"Calendar Help":["Ayuda del calendario"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["Elige una sombra"],"Change color format":["Cambia el formato de color"],"Color value in HSL":["Valor del color en HSL"],"Color value in RGB":["Valor del color en RGB"],"Color value in hexadecimal":["Valor del color en hexadecimal"],"RGB mode active":["Modo RGB activo"],"Hex color mode active":["Modo de color hex activo"],"Hue/saturation/lightness mode active":["Modo de tono/saturaci\xf3n/brillo activo"],"Move the arrow left or right to change hue.":["Mueve la flecha izquierda o derecha para cambiar el tono."],"Hue value in degrees, from 0 to 359.":["Valor del tono en grados, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor alfa, de 0 (transparente) a 1 (completamente opaco)."],Stripes:["Franjas"],"Your site doesn\u2019t include support for this block.":["Tu sitio no incluye compatibilidad con este bloque."],"Unrecognized Block":["Bloque no reconocido"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Tu sitio no incluye compatibilidad con el bloque \"%s\". Pod\xe9s dejar intacto este bloque o quitarlo del todo."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Tu sitio no incluye compatibilidad con el bloque \"%s\". Pod\xe9s dejarlo tal cual est\xe1, convertir su contenido a un bloque de HTML personalizado o quitarlo del todo."],"Media area":["\xc1rea de multimedia"],"Media & Text":["Multimedia y texto"],"Show media on right":["Mostrar multimedia a la derecha"],"Show media on left":["Mostrar multimedia a la izquierda"],"Open in New Tab":["Abrir en pesta\xf1a nueva"],Cover:["Cubrir"],"Border Settings":[],"Edit media":["Editar multimedia"],Medium:["Medio"],"Paste URL or type to search":["Pega la URL o teclea para buscar"],Terms:["T\xe9rminos"],"Your work will be published at the specified date and time.":["Tu trabajo se publicar\xe1 en la fecha y hora establecidas."],"Are you ready to schedule?":["\xbfEst\xe1s listo para programar?"],"Always show pre-publish checks.":["Mostrar siempre las comprobaciones previas a la publicaci\xf3n."],"Take Over":["Tomar el control"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Hay otro usuario trabajando ahora en esta entrada, lo que quiere decir que vos no pod\xe9s hacer cambios, a no ser que tomes el control."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s est\xe1 trabajando ahora en esta entrada, lo que quiere decir que vos no pod\xe9s hacer cambios a no ser que tomes el control."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Otro usuario tiene ahora el control de edici\xf3n de esta entrada. No te preocupes, los cambios que has hecho hasta este momento ya fueron guardados."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s tiene ahora el control de edici\xf3n de esta entrada. No te preocupes, los cambios que has hecho hasta este momento ya fueron guardados."],Avatar:["Avatar"],"This post is already being edited.":["Esta entrada est\xe1 siendo editada."],"Someone else has taken over this post.":["Alguien ha tomado el control de esta entrada."],"This block contains unexpected or invalid content.":["Este bloque contiene contenido inesperado o no v\xe1lido."],"Resolve Block":["Resolver bloque"],"Convert to HTML":["Convertir a HTML"],"This block can only be used once.":["Este bloque solo se puede utilizar una vez."],"Exit Code Editor":["Salir del editor de c\xf3digo"],"Editing Code":["Editando c\xf3digo"],"Solid Color":["Color s\xf3lido"],"Main Color":["Color principal"],HTML:["HTML"],"Write HTML\u2026":["Escribir HTML..."],"Media Settings":["Ajustes multimedia"],"Overlay Color":["Color de superposici\xf3n"],Overlay:["Superposici\xf3n"],"Insert Media":["Insertar multimedia"],"Reusable block imported successfully!":["\xa1Bloque reutilizable importado correctamente!"],"Invalid Reusable Block JSON file":["Archivo JSON de bloque reutilizable no v\xe1lido"],"Invalid JSON file":["Archivo JSON no v\xe1lido"],"Import from JSON":["Importar de JSON"],Backtick:["Acento grave (`)"],Period:["Punto"],Comma:["Coma"],"Change type of %d block":["Cambiar el tipo de %d bloque","Cambiar el tipo de %d bloques"],Current:["Actual"],"After Conversion":["Despu\xe9s de la conversi\xf3n"],"Change alignment":[],"Change text alignment":[],"%d block":["%d bloque","%d bloques"],Escape:["Escape"],"Forward-slash":["Barra"],"No archives to show.":["No hay archivos que mostrar."],"This file is empty.":["Este archivo est\xe1 vac\xedo."],"Sorry, this file type is not supported here.":["Lo siento, este tipo de archivo no es compatible aqu\xed."],"Manage All Reusable Blocks":["Gestionar todos los bloques reutilizables"],Title:["T\xedtulo"],"Fullscreen Mode":["Modo a pantalla completa"],"Beautiful landscape":["Precioso paisaje"],"Close panel":["Cerrar panel"],"Convert to Classic Block":["Convertir a bloque cl\xe1sico"],"Remove Poster Image":["Quitar imagen del p\xf3ster"],"Select Poster Image":["Elegir imagen de poster"],"Poster Image":["Imagen de poster"],"This block is deprecated. Please use the Columns block instead.":["Este bloque est\xe1 obsoleto. Por favor, us\xe1 el bloque de columnas en su lugar."],"Text Columns (deprecated)":["Columnas de texto (obsoletas)"],"Row Count":["Recuento de filas"],"Column Count":["Recuento de columnas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloque est\xe1 obsoleto. Por favor, us\xe1 el bloque de p\xe1rrafo en su lugar."],"Subheading (deprecated)":["Subt\xedtulo (obsoleto)"],blockquote:["cita"],"Change the block type after adding a new paragraph.":["Cambi\xe1 el tipo de bloque despu\xe9s de agregar un nuevo p\xe1rrafo."],"Spotlight Mode":["Modo de enfoque"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Las etiquetas ayudan a los usuarios y a los motores de b\xfasqueda a navegar por tu sitio y encontrar tu contenido. Agreg\xe1 unas cuantas palabras clave que describan tu entrada."],"Add tags":["Agrega etiquetas"],"Apply the \"%1$s\" format.":["Aplica el formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Tu tema utiliza formatos de entrada para destacar los distintos tipos de contenido, como im\xe1genes o videos. Aplic\xe1 un formato de entrada para ver estos estilos especiales."],"Use a post format":["Usar un formato de entrada"],"Insert After":["Insertar despu\xe9s"],"Insert Before":["Insertar antes"],"Move %1$d block from position %2$d down by one place":["Mueve %1$d bloque de la posici\xf3n %2$d a un sitio m\xe1s abajo","Mueve %1$d bloques de la posici\xf3n %2$d a un sitio m\xe1s abajo"],"Move %1$d block from position %2$d up by one place":["Mueve %1$d bloque de la posici\xf3n %2$d un sitio m\xe1s arriba","Mueve %1$d bloques de la posici\xf3n %2$d un sitio m\xe1s arriba"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["pel\xedcula"],"Insert a new block before the selected block(s).":["Inserta un nuevo bloque antes del/los bloque(s) seleccionado(s)."],"Remove the selected block(s).":["Quita el/los bloque(s) seleccionado(s)."],"Duplicate the selected block(s).":["Duplica el/los bloque(s) seleccionado(s)."],"Block shortcuts":["Atajos de bloques"],"Clear selection.":["Vaciar selecci\xf3n."],"Select all text when typing. Press again to select all blocks.":["Seleccion\xe1 todo el texto mientras tecleas. Puls\xe1 de nuevo para seleccionar todos los bloques."],"Selection shortcuts":["Atajos de selecci\xf3n"],"Switch between Visual Editor and Code Editor.":["Cambia entre el editor visual y el editor de c\xf3digo."],"Navigate to the previous part of the editor (alternative).":["Navega a la parte anterior del editor (alternativa)."],"Navigate to the next part of the editor (alternative).":["Navega a la parte siguiente del editor (alternativa)."],"Navigate to the previous part of the editor.":["Navega a la parte anterior del editor."],"Navigate to the next part of the editor.":["Navega a la parte siguiente del editor."],"Show or hide the settings sidebar.":["Muestra u oculta la barra lateral de ajustes."],"Redo your last undo.":["Rehace tu \xfaltimo deshacer."],"Undo your last changes.":["Deshace tus \xfaltimos cambios."],"Save your changes.":["Guard\xe1 tus cambios."],"Global shortcuts":["Atajos globales"],"Remove a link.":["Quita un enlace."],"Convert the selected text into a link.":["Convierte el texto seleccionado en un enlace."],"Underline the selected text.":["Subraya el texto seleccionado."],"Make the selected text italic.":["Cambia el texto seleccionado a cursiva."],"Make the selected text bold.":["Cambia el texto seleccionado a negrita."],"Text formatting":["Formatos de texto"],"Insert a new block after the selected block(s).":["Inserta un nuevo bloque despu\xe9s del/los bloque(s) seleccionado(s)."],"Keyboard Shortcuts":["Atajos de teclado"],"Thanks for testing Gutenberg!":["\xa1Gracias por probar Gutenberg!"],"Help build Gutenberg":["Ayuda a construir Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si quer\xe9s aprender m\xe1s sobre c\xf3mo crear bloques adicionales, o si est\xe1s interesado en ayudar con el proyecto, mir\xe1 el repositorio en GitHub."],"The WordPress community":["La comunidad WordPress"],"Code is Poetry":["El c\xf3digo es poes\xeda"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Pod\xe9s crear cualquier bloque que quieras, est\xe1tico y din\xe1mico, decorativo o plano. Ac\xe1 ten\xe9s un bloque de cita:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Cualquier bloque puede estar en alguna de estas alineaciones. El bloque de incrustar tambi\xe9n las tiene, y es adaptable desde la base:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Lo de arriba es una galer\xeda con solo dos im\xe1genes. Es un modo sencillo de crear visualmente atractivos dise\xf1os, sin tener que lidiar con floats. Tambi\xe9n pod\xe9s convertir f\xe1cilmente la galer\xeda de nuevo a im\xe1genes individuales, usando el cambiador de bloques."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Por supuesto, la imagen a ancho completo puede ser realmente grande. Pero a veces la imagen es lo importante."],"Accessibility is important — don’t forget image alt attribute":["La accesibilidad es importante. No te olvides del atributo de imagen alt"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si combin\xe1s las nuevas alineaciones de galer\xeda ancha y ancho completo pod\xe9s crear dise\xf1os ricos en multimedia muy r\xe1pidamente:"],"Media Rich":["Multimedia enriquecida"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Pod\xe9s cambiar la cantidad de columnas de tus galer\xedas arrastrando un control deslizante en el inspector de bloques de la barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Los bloques pueden ser lo que necesitas. Por ejemplo, puede que quieras agregar una cita como parte de la composici\xf3n de tu texto, o puede que prefieras mostrar una estilizada y gigante. Todas est\xe1s opciones est\xe1n en el insertador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["La informaci\xf3n correspondiente al origen de la cita est\xe1 en un campo de texto separado, parecido a las leyendas bajo las im\xe1genes, para que la estructura de la cita est\xe9 protegida aunque la selecciones, modifiques o quites del origen. Es siempre sencillo agregarla de nuevo."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["El editor tratar\xe1 de crear una nueva experiencia de creaci\xf3n de p\xe1ginas y entradas que ayude a escribir publicaciones enriquecidas sin esfuerzo, y tiene \u201cbloques\u201d para hacer sencillo lo que hoy conllevar\xeda usar shortcodes, HTML personalizado o esot\xe9ricos descubrimientos de incrustaciones."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un gran beneficio de los bloques es que pod\xe9s editarlos donde est\xe9n y manipular directamente tu contenido. En vez de tener campos para editar cosas como el c\xf3digo o una cita, o el texto de un bot\xf3n, pod\xe9s cambiar directamente el contenido. Prueba a modificar la siguiente cita:"],"Visual Editing":["Edici\xf3n visual"],"And Lists like this one of course :)":["Y listas como esta, por supuesto :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloques de dise\xf1o, como botones, im\xe1genes principales, separadores, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incrustados, como YouTube, tuits o entradas de otro WordPress."],Galleries:["Galer\xedas"],"Images & Videos":["Im\xe1genes y videos"],"Text & Headings":["Texto y encabezados"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Animate a probarlo, pod\xe9s descubrir cosas que WordPress ya puede agregar en tus entradas de las que no ten\xedas ni idea. Ac\xe1 ten\xe9s una breve lista de lo que actualmente pod\xe9s encontrar ah\xed:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagina que todo lo que WordPress puede hacer est\xe9 disponible para ti r\xe1pidamente y en el mismo lugar de la interfaz. No ten\xe9s que descubrir etiquetas HTML, clases o recordar sintaxis complicadas de shortcodes. Ese es el esp\xedritu tras el insertador \u2014 el bot\xf3n (+) que ver\xe1s en el editor \u2014 que te permite navegar por todos los bloques de contenido disponibles y agregarlos a tu entrada. Los plugins y temas pueden registrar los suyos propios, abriendo una enorme cantidad de posibilidades para la edici\xf3n y la publicaci\xf3n enriquecida."],"The Inserter Tool":["La herramienta Insertador"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Prueba a seleccionar o quitar o editar la leyenda, ahora ya no ten\xe9s porque ser cuidadoso a la hora de seleccionar la imagen u otro texto por error y arruinar la presentaci\xf3n."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Si tu tema es compatible ver\xe1s el bot\xf3n \"ancho\" en la barra de herramientas de la imagen. Probalo."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Gestionar im\xe1genes y multimedia con el m\xe1ximo cuidado es un enfoque principal del nuevo editor. Afortunadamente encontrar\xe1s posibilidades para agregar leyendas o hacer de ancho completo tus fotos de un modo mucho m\xe1s f\xe1cil y robusto que antes."],"A Picture is Worth a Thousand Words":["Una imagen vale m\xe1s que mil palabras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Los encabezados tambi\xe9n son bloques separados, lo que ayuda a la estructura y organizaci\xf3n de tu contenido."],"... like this one, which is right aligned.":["... como esta, que est\xe1 alineada a la derecha."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Lo que est\xe1s leyendo ahora es un bloque de texto, el bloque m\xe1s b\xe1sico de todos. El bloque de texto tiene sus propios controles para moverlo libremente por toda la publicaci\xf3n\u2026"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["El objetivo de este nuevo editor es hacer que agregar contenido enriquecido a WordPress sea algo sencillo y agradable. Toda esta entrada est\xe1 creada con piezas de contenido \u2014algo parecido a los ladrillos LEGO \u2014 que pod\xe9s mover y con los que pod\xe9s interactuar. Mueve tu cursor y ver\xe1s que aparecen los distintos bloques con l\xedneas y flechas. Pulsa en las flechas para recolocar r\xe1pidamente los bloques, sin miedo a perder cosas sen el proceso de copiar y pegar."],"Of Mountains & Printing Presses":["Hablando de monta\xf1as e imprentas"],"Welcome to the Gutenberg Editor":["Bienvenido al editor Gutenberg"],"block name\x04More":["M\xe1s"],"button to expand options\x04More":["M\xe1s"],"Are you sure you want to unschedule this post?":["\xbfEst\xe1s seguro de querer anular la programaci\xf3n de esta entrada?"],"Alt Text (Alternative Text)":["Texto alt (texto alternativo)"],"Reusable Block":["Bloque reutilizable"],"Unique identifier for the object.":["Identificador \xfanico para el objeto."],"Untitled Reusable Block":["Bloque reutilizable sin t\xedtulo"],Small:[],"(%s: %s)":["(%s: %s)"],Reusable:["Reutilizable"],"(current %s: %s)":["(actual %s: %s)"],"Remove from Reusable Blocks":["Quitar de los bloques reutilizables"],"Add to Reusable Blocks":["Agregar a los bloques reutilizables"],"Keep as HTML":["Mantener como HTML"],"Edit URL":["Editar URL"],"Color Settings":["Ajustes de color"],"The response is not a valid JSON response.":["Las respuesta no es una respuesta JSON v\xe1lida."],"Editor publish":["Publicaci\xf3n del editor"],Muted:["Silenciado"],"Video Settings":["Ajustes de video"],"recent comments":["comentarios recientes"],"Latest Comments":["\xdaltimos comentarios"],"Display Excerpt":["Mostrar extracto"],"Display Date":["Mostrar fecha"],"Display Avatar":["Mostrar avatar"],"Latest Comments Settings":["Ajustes de \xfaltimos comentarios"],"Number of Comments":["N\xfamero de comentarios"],"Background Opacity":["Opacidad del fondo"],Auto:["Auto"],Preload:["Precarga"],"Audio Settings":["Ajustes de audio"],"Display a monthly archive of your posts.":["Muestra un archivo por meses de tus entradas."],"Display as Dropdown":["Mostrar como desplegable"],"Show Post Counts":["Mostrar contador de entradas"],"Archives Settings":["Ajustes de archivos"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Soporte"],"No comments to show.":["No hay comentarios que mostrar."],"%1$s on %2$s":["%1$s en %2$s"],"Select Post":["Seleccionar entrada"],"Select Week":["Seleccionar semana"],"Select Day":["Seleccionar d\xeda"],"Select Month":["Elegir mes"],"Select Year":["Seleccionar a\xf1o"],Archives:["Archivos"],"Very dark gray":["Gris muy oscuro"],"Cyan bluish gray":["Gris azulado cian"],"Very light gray":["Gris muy claro"],"Vivid cyan blue":["Azul cian vivo"],"Pale cyan blue":["Azul cian p\xe1lido"],"Vivid green cyan":["Cian verde vivo"],"Light green cyan":["Cian verde claro"],"Luminous vivid amber":["Ambar vivo luminoso"],"Luminous vivid orange":["Naranja vivo luminoso"],"Vivid red":["Rojo vivo"],"Pale pink":["Rosa p\xe1lido"],"Inline image":[],"Available block types":["Tipos de bloques disponibles"],"Transform To:":["Transformar a:"],"Remove Block":["Quitar bloque"],"Open publish panel":["Abrir el panel de publicar"],Dots:["Puntos"],"Wide Line":["L\xednea ancha"],Large:["Grande"],"Show download button":[],"Download button settings":[],"Link To":["Enlazado a"],"Text link settings":[],pdf:["pdf"],document:["documento"],"Copy URL":["Copiar URL"],"Write file name\u2026":["Escrib\xed el nombre del archivo\u2026"],"Edit file":["Editar archivo"],File:["Archivo"],"A single column within a columns block.":["Una columna simple dentro de un bloque de columnas."],Column:["Columna"],Outline:["Contorno"],Loop:["Repetir"],Autoplay:["Reproducci\xf3n autom\xe1tica"],"Playback Controls":["Controles de reproducci\xf3n"],"Close dialog":["Cerrar di\xe1logo"],"Sorry, this file type is not permitted for security reasons.":["Lo siento, este tipo de archivo no est\xe1 permitido por motivos de seguridad."],"Disable tips":["Desactivar consejos"],"Got it":["Entendido"],"See next tip":["Ver siguiente consejo"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Cuando est\xe9s listo, envi\xe1 tu trabajo para revisi\xf3n, y un editor podr\xe1 aprob\xe1rtelo."],"Are you ready to submit for review?":["\xbfEst\xe1s listo para enviarlo a revisi\xf3n?"],"Replace image":["Reemplazar imagen"],"Remove image":["Quitar imagen"],"Error while uploading file %s to the media library.":["Error al subir el archivo %s a la biblioteca multimedia."],"This file exceeds the maximum upload size for this site.":["El tama\xf1o del archivo excede el tama\xf1o permitido en este sitio."],"View the autosave":["Ver el guardado autom\xe1tico"],"There is an autosave of this post that is more recent than the version below.":["Hay un guardado autom\xe1tico de esta entrada que es m\xe1s reciente que la versi\xf3n de abajo."],Autosaving:["Guardando autom\xe1ticamente"],"Enter URL here\u2026":["Escrib\xed la URL ac\xe1..."],"Pin to toolbar":["Fijar a la barra de herramientas"],"Unpin from toolbar":["Quitar de la barra de herramientas"],"Insert a table \u2014 perfect for sharing charts and data.":["Inserta una tabla -- perfecto para compartir gr\xe1ficos y datos."],"Fixed width table cells":["Celdas de tabla de ancho fijo"],"Table Settings":["Ajustes de tabla"],"Add text that respects your spacing and tabs, and also allows styling.":["Agrega texto que respete tus espacios y tabulados, y que tambi\xe9n permita estilos."],"Display a list of your most recent posts.":["Muestra una lista de tus entradas m\xe1s recientes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Agrega un bloque que muestra contenido extra\xeddo de otros sitios, como Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Agrega un bloque que muestra contenido en varias columnas, luego a\xf1ade cualquier bloque de contenido que quieras."],"Error loading block: %s":["Error al cargar el bloque: %s"],"Unknown error":["Error desconocido"],"Embed Handler":["Gestor del servicio"],"term\x04Remove %s":["Quitar %s"],"Copy the permalink":["Copia el enlace permanente"],"Permalink copied":["Enlace permanente copiado"],"Height in pixels":["Altura en p\xedxeles"],"Spacer Settings":["Ajustes del espaciador"],Spacer:["Espaciador"],"Toggle to show a large initial letter.":["Alternar para mostrar una letra inicial grande."],"Showing large initial letter.":["Mostrando letra inicial grande."],"Name:":["Nombre:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Quitar elemento"],"Color code: %s":["C\xf3digo de color: %s"],"Skip to the selected block":["Saltar al bloque seleccionado"],"Publish\u2026":["Publicar\u2026"],"Schedule\u2026":["Programado\u2026"],"Edit post permalink":["Editar enlace permanente de la entrada"],"Show Block Settings":["Mostrar ajustes del bloque"],"Hide Block Settings":["Ocultar ajustes del bloque"],"Block settings closed":["Ajustes del bloque cerrados"],"Close plugin":["Cerrar plugin"],"Link settings":[],Unlink:["Quitar enlace"],"Page break":["Salto de p\xe1gina"],pagination:["paginaci\xf3n"],"next page":["p\xe1gina siguiente"],"Image Size":["Tama\xf1o de la imagen"],Height:["Altura"],Width:["Ancho"],"Image Dimensions":["Dimensiones de la imagen"],"Thumbnails are not cropped.":["Las miniaturas no se recortan."],"Thumbnails are cropped to align.":["Las miniaturas se recortan alineadas."],"Media Library":["Biblioteca multimedia"],Advanced:["Avanzado"],"Add item":["Agregar elemento"],"Reset the template":["Restablecer la plantilla"],"Keep it as is":["Mantenerla como est\xe1"],"The content of your post doesn\u2019t match the template assigned to your post type.":["El contenido de tu entrada no se ajusta a la plantilla asignada a tu tipo de contenido."],"Resetting the template may result in loss of content, do you want to continue?":["Restablecer la plantilla puede resultar en p\xe9rdida de contenido, \xbfquer\xe9s continuar?"],"Document Statistics":["Estad\xedsticas del documento"],"is now scheduled. It will go live on":["est\xe1 ahora programada. Estar\xe1 disponible el"],Scheduled:["Programada"],"Scheduling\u2026":["Programando\u2026"],"Code editor selected":["Editor de c\xf3digo seleccionado"],"Visual editor selected":["Editor visual seleccionado"],Plugins:["Plugins"],"Custom Size":["Tama\xf1o personalizado"],"Layout Elements":["Elementos de dise\xf1o"],"term\x04%s removed":["%s quitada"],"term\x04%s added":["%s agregada"],"imperative verb\x04Preview":["Vista previa"],"Block deleted.":["Bloque borrado."],"Block updated.":["Bloque actualizado."],"Block created.":["Bloque creado."],"Trashing failed":["Fallo al enviar a la papelera"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["Ten\xe9s cambios sin guardar. Si sigues se perder\xe1n."],"Document Outline":["Esquema del documento"],Paragraphs:["P\xe1rrafos"],Headings:["Encabezados"],Words:["Palabras"],"Content structure":["Estructura del contenido"],Public:["P\xfablico"],"Protected with a password you choose. Only those with the password can view this post.":["Protegida con una contrase\xf1a que vos elijas. Solo los que tengan la contrase\xf1a pueden ver esta entrada."],"Password Protected":["Protegida con contrase\xf1a"],"Only visible to site admins and editors.":["Solo visible para administradores y editores del sitio."],Private:["Privada"],"Visible to everyone.":["Visible por todos."],"Post Visibility":["Visibilidad de la entrada"],"Would you like to privately publish this post now?":["\xbfTe gustar\xeda publicar ahora en privado esta entrada?"],"Use a secure password":["Usa una contrase\xf1a segura"],"Create password":["Crear contrase\xf1a"],"Move to Trash":[],"Parent Term":["T\xe9rmino superior"],"Parent Category":["Categor\xeda superior"],"Add new term":["Agregar nuevo t\xe9rmino"],"Add new category":["Agregar nueva categor\xeda"],Term:["T\xe9rmino"],Tag:["Etiqueta"],"Add New Term":["Agregar nuevo t\xe9rmino"],"Add New Tag":["Agregar nueva etiqueta"],"Switch to Draft":["Cambiar a borrador"],"Are you sure you want to unpublish this post?":["\xbfEst\xe1s seguro de querer anular la publicaci\xf3n de esta entrada?"],Immediately:["Inmediatamente"],"Save Draft":["Guardar borrador"],Saving:["Guardando"],"Publish:":["Publicar:"],"Visibility:":["Visibilidad:"],"Are you ready to publish?":["\xbfEst\xe1s listo para publicar?"],"Copy Link":["Copiar enlace"],"What\u2019s next?":["\xbfY ahora qu\xe9?"],"is now live.":["est\xe1 ahora visible."],Published:["Publicada"],Schedule:["Programar"],Update:["Actualizar"],"Submit for Review":["Enviar a revisi\xf3n"],"Updating\u2026":["Actualizando..."],"Publishing\u2026":["Publicando..."],"Allow Pingbacks & Trackbacks":["Permitir pingbacks y trackbacks"],"Permalink:":["Enlace permanente:"],"Pending Review":["Pendiente de revisi\xf3n"],"%d Revision":["%d revisi\xf3n","%d revisiones"],"Suggestion:":["Sugerencia:"],"Post Format":["Formato de entrada"],Chat:["Chat"],Status:["Estado"],Standard:["Est\xe1ndar"],Aside:["Minientrada"],"Set Featured Image":[],"Learn more about manual excerpts":["Aprende m\xe1s sobre extractos manuales"],"Write an excerpt (optional)":["Escrib\xed un extracto (opcional)"],"Allow Comments":["Permitir comentarios"],"Template:":["Plantilla:"],"no parent":["sin superior"],"no title":["sin t\xedtulo"],Order:["Orden"],"No blocks found.":["No se han encontrado bloques."],"%d result found.":["%d resultado encontrado.","%d resultados encontrados."],Saved:["Guardado"],Embeds:["Incrustados"],Blocks:["Bloques"],"Search for a block":["Buscar un bloque"],"Add block":["Agregar bloque"],"Add %s":["Agregar %s"],"Copy Error":["Copiar error"],"Copy Post Text":["Copiar texto de la entrada"],"Attempt Recovery":["Intentar recuperaci\xf3n"],"The editor has encountered an unexpected error.":["El editor ha encontrado un error inesperado."],Undo:["Deshacer"],Redo:["Rehacer"],"(Multiple H1 headings are not recommended)":["(No se recomiendan varios H1)"],"(Your theme may already use a H1 for the post title)":["(Tu tema puede que ya use un H1 para el t\xedtulo de la entrada)"],"(Incorrect heading level)":["(Nivel de encabezado incorrecto)"],"(Empty heading)":["(Encabezado vac\xedo)"],"Block Styles":["Estilos de bloque"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\xbfEst\xe1s seguro de querer borrar este bloque compartido?\nSe borrar\xe1 permanentemente de todas las entradas y p\xe1ginas que lo usen."],"Convert to Regular Block":["Convertir a bloque normal"],"More options":["M\xe1s opciones"],"Edit visually":["Editar visualmente"],Duplicate:["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Los bloques no se pueden mover hacia abajo porque ya est\xe1n en el fondo"],"Blocks cannot be moved up as they are already at the top":["Los bloques no se pueden mover arriba porque ya est\xe1n al principio"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["El bloque %s es el \xfanico bloque, y no puede moverse"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Convertir a bloques"],"Block: %s":["Bloque: %s"],"This block has encountered an error and cannot be previewed.":["Este bloque ha encontrado un error y no puede previsualizarse."],"No block selected.":["Ning\xfan bloque seleccionado."],"Transform into:":["Transformar a:"],Remove:["Quitar"],"Find original":["Encontrar el original"],"Copy All Content":["Copiar todo el contenido"],"Copied!":["\xa1Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Ahora hay ajustes adicionales disponibles en la barra de ajustes del editor de bloques"],Visibility:["Visibilidad"],"Status & Visibility":["Estado y visibilidad"],"Page Attributes":["Atributos de p\xe1gina"],Block:["Bloque"],Document:["Documento"],"Featured Image":["Imagen destacada"],"Close settings":["Cerrar ajustes"],"Editor content":["Contenido del editor"],Tools:["Herramientas"],Editor:["Editor"],"Code Editor":["Editor de c\xf3digo"],"Visual Editor":["Editor visual"],"Editor top bar":["Barra superior del editor"],Settings:["Ajustes"],Reset:["Restablecer"],"Dismiss this notice":["Descartar este aviso"],"Item removed.":["Elemento quitado."],"Item added.":["Elemento agregado."],"Drop files to upload":["Arrastra archivos para subirlos"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Ocurri\xf3 un error desconocido."],"No results.":["No hay resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontrado, us\xe1 las teclas arriba y abajo para navegar.","%d resultados encontrados, us\xe1 las teclas arriba y abajo para navegar."],"(no title)":["(sin t\xedtulo)"],URL:["URL"],Submit:["Enviar"],Close:["Cerrar"],"Insert link":[],"Edit link":[],Link:["Enlace"],Strikethrough:["Tachado"],Italic:["Cursiva"],Bold:["Negrita"],"Remove link":[],"Number of items":["N\xfamero de elementos"],All:["Todo"],Category:["Categor\xeda"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["De antiguas a nuevas"],"Newest to Oldest":["De nuevas a antiguas"],"Order by":["Ordenar por"],Select:["Elegir"],"Select or Upload Media":["Elige o sube multimedia"],Video:["V\xeddeo"],"Edit video":["Editar video"],"Write\u2026":["Escrib\xed\u2026"],poetry:["poes\xeda"],Verse:["Verso"],"New Column":["Nueva columna"],"Delete Column":["Borrar columna"],"Add Column After":["Agregar columna despu\xe9s"],"Add Column Before":["Agregar columna antes"],"Delete Row":["Borrar fila"],"Add Row After":["Agregar fila despu\xe9s"],"Add Row Before":["Agregar fila antes"],"Edit table":[],Table:["Tabla"],"Write subheading\u2026":["Escrib\xed el subt\xedtulo\u2026"],"Write shortcode here\u2026":["Escrib\xed ac\xe1 el shortcode\u2026"],Shortcode:["Shortcode"],divider:["separador"],"horizontal-line":["l\xednea-horizontal"],Separator:["Separador"],Quote:["Cita"],"Write citation\u2026":["Escrib\xed la referencia\u2026"],"Write quote\u2026":["Escrib\xed la cita\u2026"],Pullquote:["Cita"],"Write preformatted text\u2026":["Escrib\xed texto preformateado\u2026"],Preformatted:["Preformateado"],text:["texto"],Paragraph:["P\xe1rrafo"],"Font Size":["Tama\xf1o de fuente"],"Drop Cap":["Capitalizar"],"Text Settings":["Ajustes del texto"],"Read more":["Leer Mas"],"Write list\u2026":["Escrib\xed una lista\u2026"],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista con vi\xf1etas"],"Indent list item":["Agregar sangr\xeda al elemento de la lista"],"Outdent list item":["Reducir sangr\xeda al elemento de la lista"],"Convert to ordered list":["Convertir a lista ordenada"],"Convert to unordered list":["Convertir a lista desordenada"],List:["Lista"],"recent posts":["entradas recientes"],"No posts found.":["No se encontraron entradas."],"Latest Posts":["\xdaltimas entradas"],"Display post date":["Mostrar fecha de la entrada"],"Grid view":[],"List view":[],photo:["foto"],"Image Settings":["Ajustes de imagen"],Image:["Imagen"],Preview:["Vista previa"],embed:["incrustar"],"Custom HTML":["HTML personalizado"],subtitle:["subt\xedtulo"],title:["t\xedtulo"],Heading:["Encabezado"],"Write heading\u2026":["Escrib\xed el encabezado\u2026"],"Heading %d":["Encabezado %d"],Level:["Nivel"],"Heading Settings":["Ajustes de encabezado"],photos:["fotos"],images:["im\xe1genes"],"Remove Image":["Quitar imagen"],None:["Ninguna"],"Media File":["Archivo multimedia"],"Attachment Page":["P\xe1gina de adjuntos"],"Crop Images":["Recortar im\xe1genes"],"Gallery Settings":["Ajustes de galer\xeda"],Gallery:["Galer\xeda"],Classic:["Cl\xe1sico"],video:["video"],audio:["audio"],music:["m\xfasica"],image:["imagen"],blog:["blog"],post:["entrada"],"Embedded content from %s":["Contenido incrustado desde %s"],"Enter URL to embed here\u2026":["Introduce ac\xe1 la URL a incrustar\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Incrustando\u2026"],"Write title\u2026":["Escrib\xed el t\xedtulo\u2026"],"Fixed Background":["Fondo fijo"],"Edit image":["Editar imagen"],Columns:["Columnas"],Experiments:[],Code:["C\xf3digo"],"Write code\u2026":["Escrib\xed c\xf3digo\u2026"],Categories:["Categor\xedas"],"Show Hierarchy":["Mostrar jerarqu\xeda"],"Show post counts":[],"Categories Settings":["Ajustes de categor\xedas"],"Add text\u2026":["Agrega texto\u2026"],Button:["Bot\xf3n"],Apply:["Aplicar"],"Text Color":["Color del texto"],"Background Color":["Color de fondo"],"Block has been deleted or is unavailable.":["El bloque se ha borrado o no est\xe1 disponible."],"Reusable Blocks":["Bloque reutilizable"],Cancel:["Cancelar"],Edit:["Editar"],"Edit audio":["Editar audio"],"Write caption\u2026":["Escrib\xed la leyenda\u2026"],"Use URL":["Usar URL"],Audio:["Audio"],Upload:["Subir"],"Additional CSS Class(es)":[],"HTML Anchor":["Anclaje HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combinaci\xf3n de color puede ser dif\xedcil de leer para la gente. Trata de usar un color de fondo m\xe1s claro y/o un color de texto m\xe1s oscuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combinaci\xf3n de color puede ser dif\xedcil de leer para la gente. Trata de usar un color de fondo m\xe1s oscuro y/o un color de texto m\xe1s claro."],Clear:["Borrar"],"Custom color picker":["Selector de color personalizado"],"Color: %s":["Color: %s"],"Full Width":[],"Wide Width":[],Widgets:["Widgets"],Formatting:["Formatos"],"Common Blocks":["Bloques comunes"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimiendo desde 1440. Este es el plugin en desarrollo del nuevo editor de bloques del n\xfacleo."],"Add title":["Agregar t\xedtulo"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["Autor"],Slug:["Slug"],Discussion:["Comentarios"],"Custom Fields":["Campos personalizados"],Excerpt:["Extracto"],Publish:["Publicar"],Metadata:["Metadatos"],Save:["Guardar"],Documentation:["Documentaci\xf3n"],"Select Category":["Elegir categor\xeda"],"(Untitled)":["(Sin t\xedtulo)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["El equipo de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["hace %s"],"Block style name must be a string.":[]}},839,[]); +__d(function(e,a,o,t,r,i,s){r.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":["palabras"],"content placeholder\x04Content\u2026":["Contenido..."],"button label\x04Convert to link":["Convertir a enlace"],"button label\x04Try again":["Reintentar"],"Editor tips":["Tips del Editor"],"Block (selected)":["Bloque (seleccionado)"],"Document (selected)":["Documento (seleccionado)"],"%d word":["%d palabra","%d palabras"],"Top Toolbar":["Barra de Herramientas Superior"],"Link Rel":["Rel del enlace"],"Link CSS Class":["Enlace a la clase CSS"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Crea contenido, gu\xe1rdalo para que t\xfa y otros colaboradores lo reutilicen en su sitio. Actualiza el bloque, y los cambios se aplicar\xe1n en todos los lugares donde se utiliza."],"To edit the featured image, you need permission to upload media.":["Para editar la imagen destacada, necesitas contar con permisos para cargar medios."],"To edit this block, you need permission to upload media.":["Para editar este bloque, necesitar\xe1s permiso para cargar medios."],"(selected block)":["(Bloque seleccionado)"],"Block tools":["Herramientas de bloque"],Permalink:["Enlace permanente"],"This image has an empty alt attribute":["Esta imagen tiene un atributo ALT vac\xedo"],"This image has an empty alt attribute; its file name is %s":["Esta imagen tiene un atributo ALT vac\xedo; su nombre de archivo es %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":["Agregar Nuevo"],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["Advertencia: el link que insertaste puede que contenga errores. Por favor pru\xe9balo."],"%s block selected.":["%s bloque seleccionado.","%s bloques seleccionados."],Thumbnail:["Imagen en miniatura"],"Full Size":["Tama\xf1o completo"],"Link selected.":[],"Start writing with text or HTML":["Empezar a escribir con texto o HTML"],"Type text or HTML":["Escribe texto o HTML"],"Block icon":["Icono de bloque"],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":["Empieza a escribir o tipea / para elegir un bloque"],"Empty block; start writing or type forward slash to choose a block":["Bloque vac\xedo; Inicia la escritura o escriba la barra diagonal para elegir un bloque"],"Paragraph block":["Bloque de p\xe1rrafo"],"Page Break":["Salto de P\xe1gina"],"Stack on mobile":["Apilar en m\xf3vil"],Annotation:["Anotaci\xf3n"],"Drag images, upload new ones or select files from your library.":["Arrastra im\xe1genes, carga otras nuevas o selecciona archivos de la biblioteca."],"blocks\x04Most Used":["M\xe1s usadas"],"imperative verb\x04Resolve":["Resolver"],"font size name\x04Huge":["Enorme"],"font size name\x04Large":["Largo"],"font size name\x04Medium":["Mediano"],"font size name\x04Small":["Peque\xf1a"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enviar"],"button label\x04Import":["Importar"],"button label\x04Download":["Descargar"],"button label\x04Embed":["Embebido"],"block title\x04Embed":["Embebido"],"block title\x04Classic":["Cl\xe1sico"],"block style\x04Large":["Largo"],"%s (opens in a new tab)":["%s (abrir en una nueva pesta\xf1a)"],"Link edited.":["Enlace editado."],"Link removed.":["Enlace removido."],media:["media"],"Double-check your settings before publishing.":["Comprueba dos veces la configuraci\xf3n antes de publicarla."],"Generating preview\u2026":["Generando vista previa\u2026"],"Edit or update the image":["Editar o actualizar la imagen"],Media:["Media"],"Navigate to the nearest toolbar.":["Mu\xe9vete hasta la barra de herramientas m\xe1s cercana."],"Document tools":["Herramientas de documentos"],"Document and block tools":["Herramientas de documentos y bloques"],"Embed a video from your media library or upload a new one.":["Incrustar un v\xeddeo desde biblioteca multimedia o subir uno nuevo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insertar poes\xeda. Utiliza formatos de espaciado especiales. O cita las letras de canciones."],"Add white space between blocks and customize its height.":["A\xf1ade espacio en blanco entre bloques y personaliza su altura."],"Insert additional custom elements with a WordPress shortcode.":["Inserta elementos personalizados adicionales con un c\xf3digo corto de WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crear un salto entre ideas o secciones usando un separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Dar \xe9nfasis visual de texto citado. \"Al citar a los dem\xe1s, nos citamos a nosotros mismos.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Da un especial \xe9nfasis visual a una cita de tu texto."],"Start with the building block of all narrative.":["Comienza con la construcci\xf3n de bloque para toda la narrativa."],"Separate your content into a multi-page experience.":["Separa tu contenido en una experiencia de varias p\xe1ginas."],"Set media and words side-by-side for a richer layout.":["Define los medios y las palabras a los lados para un dise\xf1o m\xe1s enriquecido."],"Media & Text Settings":["Configuraci\xf3n de Media y Texto"],"Create a bulleted or numbered list.":["Cree una lista numerada o con vi\xf1etas."],"Display a list of your most recent comments.":["Muestra una lista de tus comentarios m\xe1s recientes."],"Insert an image to make a visual statement.":["Inserta una imagen para hacer una declaraci\xf3n visual."],"Add custom HTML code and preview it as you edit.":["A\xf1ade c\xf3digo HTML personalizado y previsualizalo a medida que edites."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce nuevas secciones y organiza contenido para ayudar a los visitantes (y motores de b\xfasqueda) a comprender la estructura de su contenido."],"Display multiple images in a rich gallery.":["Muestra varias im\xe1genes en una galer\xeda enriquecida."],"Add a link to a downloadable file.":["Agregar un enlace a un archivo descargable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incrusta v\xeddeos, im\xe1genes, tweets, audio y otros contenidos de fuentes externas."],"Resize for smaller devices":["Cambiar el tama\xf1o para dispositivos m\xe1s peque\xf1os"],"This embed may not preserve its aspect ratio when the browser is resized.":["Es posible que esta incrustaci\xf3n no conserve su relaci\xf3n de aspecto cuando se redimensione el navegador."],"This embed will preserve its aspect ratio when the browser is resized.":["Esta incrustaci\xf3n conservar\xe1 su relaci\xf3n de aspecto cuando se redimensione el navegador."],"Embed an Animoto video.":["Incrustar un video de animoto."],"Embed a Vimeo video.":["Incrustar un v\xeddeo de Vimeo."],"Embed Flickr content.":["Incrustar contenido de Flickr."],"Embed Spotify content.":["Incrustar contenido de Spotify."],"Embed SoundCloud content.":["Incrustar contenido de SoundCloud."],"Embed a WordPress post.":["Embeber una entrada de WordPress."],"Embed an Instagram post.":["Incrustar imagen de Instagram."],"Embed a Facebook post.":["Incrustar una publicaci\xf3n de Facebook."],"Embed a WordPress.tv video.":["Incrustar un v\xeddeo de WordPress.tv."],"Embed a VideoPress video.":["Incrustar un v\xeddeo de VideoPress."],"Embed a Tumblr post.":["Incrustar una entrada de Tumblr."],"Embed a TED video.":["Incrustar un video de TED."],"Embed Speaker Deck content.":["Incrustar contenido de Speaker Deck."],"Embed a YouTube video.":["Incrustar un v\xeddeo de YouTube."],"Embed SmugMug content.":["Incrustar contenido de SmugMug."],"Embed Slideshare content.":["Incrustar contenido de Slideshare."],"Embed Scribd content.":["Incrustar contenido de Scribd."],"Embed Screencast content.":["Incrustar contenido de Screencast."],"Embed ReverbNation content.":["Incrustar contenido ReverbNation."],"Embed a Reddit thread.":["Incrustar un hilo de Reddit."],"Embed Polldaddy content.":["Incrustar contenido de Polldaddy."],"Embed Mixcloud content.":["Incrustar contenido de Mixcloud."],"Embed a tweet.":["Incrustar un tweet."],"Embed Meetup.com content.":["Incrustar contenido de Meetup.com."],"Embed Kickstarter content.":["Incrustar contenido de Kickstarter."],"Embed Issuu content.":["Incrustar contenido de Issuu."],"Embed Imgur content.":["Incrustar contenido de Imgur."],"Embed Hulu content.":["Incrustar contenido de Hulu."],"Embed a Dailymotion video.":["Incrustar un v\xeddeo de DailyMotion."],"Embed CollegeHumor content.":["Incrustar contenido de CollegeHumor."],"Embed Cloudup content.":["Incrustar contenido de Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["A\xf1ade una imagen o un v\xeddeo con una superposici\xf3n de texto \u2014 ideal para encabezados."],"Display code snippets that respect your spacing and tabs.":["Mostrar fragmentos de c\xf3digo que respeten tu espaciado y las pesta\xf1as."],"Use the classic WordPress editor.":["Utiliza el editor cl\xe1sico de WordPress."],"Display a list of all categories.":["Mostrar una lista de todas las categor\xedas."],"Embed a simple audio player.":["Incrustar un reproductor de audio simple."],"noun\x04View":["Ver"],"editor button\x04Left to right":["Izquierda a Derecha"],"Save as Pending":["Guardar como pendiente"],"%s address":["Direcci\xf3n %s"],"Paste or type URL":["Pegar o escribir URL"],"Insert from URL":["Insertar desde URL"],"Block Navigator":[],Styles:["Estilos"],"Advanced Panels":["Paneles Avanzados"],"Document Panels":["Paneles de Documentos"],General:["General"],"Open the block navigation menu.":["Abre el men\xfa de navegaci\xf3n de bloques."],"Work without distraction":["Trabajar sin distracciones"],"Focus on one block at a time":["Centrarse en un bloque a la vez"],"Access all block and document tools in a single place":["Accede a todas las herramientas de bloques y documentos en un solo lugar"],Options:["Opciones"],"(opens in a new tab)":["(se abre en una nueva pesta\xf1a)"],Minutes:["Minutos"],Hours:["Horas"],Time:["Hora"],Year:["A\xf1o"],Day:["D\xeda"],December:["Diciembre"],November:["Noviembre"],October:["Octubre"],September:["Septiembre"],August:["Agosto"],July:["Julio"],June:["Junio"],May:["May"],April:["Abril"],March:["Marzo"],February:["Febrero"],January:["Enero"],Month:["Mes"],Date:["Fecha"],"Go to the first (home) or last (end) day of a week.":["Ve al primer (inicio) o \xfaltimo (final) d\xeda de una semana."],"Home/End":["Inicio/Fin"],"Home and End":["Inicio y Fin"],"Move backward (PgUp) or forward (PgDn) by one month.":["Mueva hacia atr\xe1s (PgUp) o adelante (PgDn) por un mes."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["P\xe1gina Arriba y P\xe1gina Abajo"],"Move backward (up) or forward (down) by one week.":["Mueva hacia atr\xe1s (arriba) o hacia adelante (abajo) por una semana."],"Up and Down Arrows":["Flechas Arriba y Abajo"],"Move backward (left) or forward (right) by one day.":["Mueva hacia atr\xe1s (izquierda) o adelante (derecha) por un d\xeda."],"Left and Right Arrows":["Flechas Izquierda y Derecha"],"Select the date in focus.":["Seleccione la fecha en foco."],"Navigating with a keyboard":["Navegar con un teclado"],"Click the desired day to select it.":["Clic en el d\xeda deseado para seleccionarlo."],"Click the right or left arrows to select other months in the past or the future.":["Clic en las flechas derecha o izquierda para seleccionar otros meses en el pasado o en el futuro."],"Click to Select":["Clic para Seleccionar"],"Calendar Help":["Ayuda del Calendario"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["Elegir una sombra"],"Change color format":["Cambiar formato de color"],"Color value in HSL":["Valor de color en HSL"],"Color value in RGB":["Valor de color en RGB"],"Color value in hexadecimal":["Valor de color en hexadecimal"],"RGB mode active":["Modo RGB activo"],"Hex color mode active":["Modo de color hexadecimal activo"],"Hue/saturation/lightness mode active":["Tono/saturaci\xf3n/modo de ligereza activo"],"Move the arrow left or right to change hue.":["Mueva la flecha a la izquierda o derecha para cambiar el matiz."],"Hue value in degrees, from 0 to 359.":["Valor de matiz en grados, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor alfa, de 0 (transparente) a 1 (completamente opaco)."],Stripes:["Rayas"],"Your site doesn\u2019t include support for this block.":["Tu sitio no incluye soporte para este bloque."],"Unrecognized Block":["Bloque no Reconocido"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Tu sitio no incluye soporte para el bloque \" %s\". Puedes dejar este bloque intacto o eliminarlo por completo."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Tu sitio no incluye soporte para el bloque \" %s\". Puedes dejar este bloque intacto, convertir su contenido en un bloque HTML personalizado o eliminarlo por completo."],"Media area":["\xc1rea de medios"],"Media & Text":["Media y Texto"],"Show media on right":["Mostrar medios a la derecha"],"Show media on left":["Mostrar medios a la izquierda"],"Open in New Tab":["Abrir en una Pesta\xf1a Nueva"],Cover:["Portada"],"Border Settings":[],"Edit media":["Editar multimedia"],Medium:["Mediano"],"Paste URL or type to search":["Pegar la URL o escribe para buscar"],Terms:["T\xe9rminos"],"Your work will be published at the specified date and time.":["Tu trabajo se publicar\xe1 en la fecha y hora especificadas."],"Are you ready to schedule?":["\xbfEst\xe1s listo para programar?"],"Always show pre-publish checks.":["Mostrar siempre comprobaciones previas a la publicaci\xf3n."],"Take Over":["Tomar el Control"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Otro usuario est\xe1 trabajando actualmente en esta entrada, lo que significa que no puedes hacer cambios, a menos que te hagas cargo."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s est\xe1 trabajando actualmente en esta entrada, lo que significa que no se pueden realizar cambios, a menos que te haga cargo."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Otro usuario tiene ahora el control de edici\xf3n de esta entrada. No te preocupes, tus cambios hasta este momento han sido guardados."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s ahora tiene el control de edici\xf3n de esta entrada. No te preocupes, tus cambios hasta este momento han sido guardados."],Avatar:["Avatar"],"This post is already being edited.":["Esta entrada ya est\xe1 siendo editada."],"Someone else has taken over this post.":["Alguien m\xe1s se ha apoderado de esta entrada."],"This block contains unexpected or invalid content.":["Este bloque contiene contenido inesperado o no v\xe1lido."],"Resolve Block":["Resolver Bloque"],"Convert to HTML":["Convertir a HTML"],"This block can only be used once.":["Este bloque s\xf3lo se puede utilizar una vez."],"Exit Code Editor":["Salir del Editor de C\xf3digo"],"Editing Code":["Editando C\xf3digo"],"Solid Color":["Color S\xf3lido"],"Main Color":["Color Principal"],HTML:["HTML"],"Write HTML\u2026":["Escribir HTML\u2026"],"Media Settings":["Opciones de multimedia"],"Overlay Color":["Color de superposici\xf3n"],Overlay:["Sobreponer"],"Insert Media":["Insertar Archivo Multimedia"],"Reusable block imported successfully!":["\xa1Bloque reutilizable importado correctamente!"],"Invalid Reusable Block JSON file":["Archivo JSON no v\xe1lido de Bloque Reutilizable"],"Invalid JSON file":["Archivo JSON no v\xe1lido"],"Import from JSON":["Importar desde JSON"],Backtick:["Ap\xf3strofe"],Period:["Periodo"],Comma:["Coma"],"Change type of %d block":["Cambiar tipo de %d bloque","Cambiar tipo de %d bloques"],Current:["Actual"],"After Conversion":["Despu\xe9s de la Conversi\xf3n"],"Change alignment":[],"Change text alignment":[],"%d block":["%d bloque","%d bloques"],Escape:["Salir"],"Forward-slash":["Barra de avance"],"No archives to show.":["No hay archivos que mostrar."],"This file is empty.":["El archivo est\xe1 vac\xedo."],"Sorry, this file type is not supported here.":["Lo sentimos, este tipo de archivo no es compatible aqu\xed."],"Manage All Reusable Blocks":["Administrar todos los Bloques Reutilizables"],Title:["T\xedtulo"],"Fullscreen Mode":["Modo de Pantalla Completa"],"Beautiful landscape":["Paisaje hermoso"],"Close panel":["Cerrar panel"],"Convert to Classic Block":["Convertir en Bloque Cl\xe1sico"],"Remove Poster Image":["Eliminar la imagen de Poster"],"Select Poster Image":["Seleccionar Imagen del Afiche"],"Poster Image":["Imagen del Afiche"],"This block is deprecated. Please use the Columns block instead.":["Este bloque est\xe1 obsoleto. Por favor, utiliza el bloque columnas en su lugar."],"Text Columns (deprecated)":["Columnas de Texto (obsoletas)"],"Row Count":["Recontar Filas"],"Column Count":["Contar Columnas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloque est\xe1 obsoleto. En su lugar, utiliza el bloque de p\xe1rrafo."],"Subheading (deprecated)":["Subt\xedtulo (obsoleto)"],blockquote:["cita"],"Change the block type after adding a new paragraph.":["Cambia el tipo de bloque despu\xe9s de agregar un nuevo p\xe1rrafo."],"Spotlight Mode":["Modo Spotlight"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Las etiquetas ayudan a los usuarios y motores de b\xfasqueda a navegar por tu sitio y encontrar tu contenido. A\xf1ade algunas palabras clave para describir tu entrada."],"Add tags":["Agregar etiquetas"],"Apply the \"%1$s\" format.":["Aplicar el formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Su tema utiliza formatos de entrada para resaltar diferentes tipos de contenido, como im\xe1genes o v\xeddeos. Aplica un formato de entrada para ver este estilo especial."],"Use a post format":["Usa un formato de entrada"],"Insert After":["Insertar Despu\xe9s"],"Insert Before":["Insertar Antes"],"Move %1$d block from position %2$d down by one place":["Mueve %1$d bloque desde la posici\xf3n %2$d un lugar abajo","Mueve %1$d bloques desde la posici\xf3n %2$d un lugar abajo"],"Move %1$d block from position %2$d up by one place":["Mueve %1$d bloque desde la posici\xf3n %2$d un lugar arriba","Mueve %1$d bloques desde la posici\xf3n %2$d un lugar arriba"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["pel\xedcula"],"Insert a new block before the selected block(s).":["Insertar un nuevo bloque antes de el(los) bloque(s) seleccionado(s)"],"Remove the selected block(s).":["Eliminar el(los) bloque(s) seleccionado(s)."],"Duplicate the selected block(s).":["Duplicar el(los) bloque(s) seleccionado(s)."],"Block shortcuts":["Atajos de bloque"],"Clear selection.":["Borrar selecci\xf3n."],"Select all text when typing. Press again to select all blocks.":["Seleccionar todo cuando escribas. P\xfalsalo de nuevo para seleccionar todos los bloques."],"Selection shortcuts":["Atajos de selecci\xf3n"],"Switch between Visual Editor and Code Editor.":["Cambiar entre el editor visual y el editor de c\xf3digo."],"Navigate to the previous part of the editor (alternative).":["Mu\xe9vete hasta la parte anterior del editor (alternativa)."],"Navigate to the next part of the editor (alternative).":["Mu\xe9vete hasta la siguiente parte del editor (alternativa)."],"Navigate to the previous part of the editor.":["Mu\xe9vete hasta la parte anterior del editor."],"Navigate to the next part of the editor.":["Mu\xe9vete hasta la parte siguiente del editor."],"Show or hide the settings sidebar.":["Mostrar u ocultar la barra lateral de ajustes."],"Redo your last undo.":["Rehacer tu \xfaltimo deshacer."],"Undo your last changes.":["Deshacer los \xfaltimos cambios."],"Save your changes.":["Guardar tus cambios."],"Global shortcuts":["Accesos directos globales"],"Remove a link.":["Quitar un enlace."],"Convert the selected text into a link.":["Convertir el texto seleccionado en un v\xednculo."],"Underline the selected text.":["Subraye el texto seleccionado."],"Make the selected text italic.":["Convertir el texto seleccionado en cursivas."],"Make the selected text bold.":["Convertir el texto seleccionado en negritas."],"Text formatting":["Formato de texto"],"Insert a new block after the selected block(s).":["Inserte un nuevo bloque despu\xe9s de el(los bloque(s) seleccionado(s)."],"Keyboard Shortcuts":["Atajos de teclado"],"Thanks for testing Gutenberg!":["\xa1Gracias por probar Gutenberg!"],"Help build Gutenberg":["Ayudar a construir Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si deseas obtener m\xe1s informaci\xf3n acerca de c\xf3mo crear bloques adicionales, o si est\xe1s interesado en ayudar con el proyecto, dir\xedgete al Repositorio de GitHub."],"The WordPress community":["La comunidad WordPress"],"Code is Poetry":["El C\xf3digo es Poes\xeda"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Puedes construir cualquier bloque que desees, est\xe1tico o din\xe1mico, decorativo o llano. Aqu\xed hay un bloque de cita:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Cualquier bloque puede optar por estas alineaciones. El bloque embed los tiene tambi\xe9n, y por defecto es responsivo:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Lo anterior es una galer\xeda con s\xf3lo dos im\xe1genes. Es una manera m\xe1s f\xe1cil de crear dise\xf1os visualmente atractivos, sin tener que lidiar con los flotadores. Tambi\xe9n puedes convertir f\xe1cilmente de una galer\xeda a im\xe1genes individuales y viceversa, utilizando el conmutador de bloques."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Claro, la imagen de todo el ancho puede ser bastante grande. Pero a veces la imagen vale la pena."],"Accessibility is important — don’t forget image alt attribute":["La accesibilidad es importante — No olvides el atributo ALT de imagen"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si combinas las nuevas alineaciones al ancho y a todo el ancho con galer\xedas, puedes crear un dise\xf1o muy rico en medios, muy r\xe1pidamente:"],"Media Rich":["Medios Ricos"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Puedes cambiar la cantidad de columnas de tus galer\xedas arrastrando un control deslizante en el inspector de bloques en la barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Los bloques pueden ser cualquier cosa que necesites. Por ejemplo, es posible que desees agregar una composici\xf3n tenue como parte de la composici\xf3n de tu texto, o puede que prefieras mostrar una estilizada gigante. Todas estas opciones est\xe1n disponibles en el insertador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["La informaci\xf3n correspondiente al origen de la cita es un campo de texto independiente, similar a los subt\xedtulos en im\xe1genes, por lo que la estructura de la cita se protege incluso si se selecciona, se modifica o se quita el origen. siempre es f\xe1cil a\xf1adirla nuevamente."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["El editor se esforzar\xe1 por crear una experiencia rica al crear una nueva entrada o p\xe1gina, lo que hace que la escritura sea sin esfuerzo, disponibilizando \"bloques\" para que sea a\xfan m\xe1s f\xe1cil lo que hoy se hace con shortcodes, HTML personalizado, o \u201cla parte misteriosa\" al incrustar c\xf3digo."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un gran beneficio de los bloques es que puedes editarlos en su lugar y manipular su contenido directamente. En lugar de tener campos para editar cosas como el origen de una cita, o el texto de un bot\xf3n; puedes cambiar directamente el contenido. Intenta editar la siguiente cita:"],"Visual Editing":["Edici\xf3n Visual"],"And Lists like this one of course :)":["Y listas como esta, por supuesto:)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloques de dise\xf1o, como Botones, Im\xe1genes Grandes, Separadores, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Contenido Embebido, como YouTube, Tuits, u otras entradas de WordPress."],Galleries:["Galer\xedas"],"Images & Videos":["Im\xe1genes y V\xeddeos"],"Text & Headings":["Texto y Encabezados"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Dale una oportunidad, puedes descubrir cosas que WordPress ya a\xf1ade a tus mensajes y que a\xfan no sab\xedas. Aqu\xed hay una breve lista de lo que puedes encontrar actualmente:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagina que todo aquello que WordPress puede hacer est\xe9 disponible para ti r\xe1pidamente y en el mismo lugar en la interfaz. Ya no necesitar\xe1s descifrar las etiquetas HTML, las clases o recordar la sintaxis complicada de c\xf3digo. Ese el esp\xedritu detr\xe1s del insertador \u2014 el bot\xf3n (+) que ver\xe1s alrededor del editor \u2014 te permitir\xe1 navegar por todos los bloques de contenido disponibles y agregarlos a su entrada. Los plugins y los temas son capaces de registrar sus propios, abriendo todo tipo de posibilidades para la edici\xf3n y publicaci\xf3n."],"The Inserter Tool":["La Herramienta Insertador"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Intenta seleccionar y quitar, o editar el t\xedtulo, ahora no debes preocuparte de arruinar la presentaci\xf3n cuando selecciones la imagen u otro texto por error."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Si el tema lo soporta, ver\xe1s el bot\xf3n \u201cAncho\u201d en la barra de herramientas de la imagen. Dale una oportunidad."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["El manejo de im\xe1genes y medios con el m\xe1ximo cuidado es uno de los focos principales del nuevo editor. Afortunadamente, encontrar\xe1s de un modo m\xe1s f\xe1cil y robusto que antes aspectos como la adici\xf3n de subt\xedtulos o ir a toda el ancho con sus im\xe1genes."],"A Picture is Worth a Thousand Words":["Una Imagen Vale m\xe1s que Mil Palabras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Los encabezados son bloques separados tambi\xe9n, lo que ayuda con el esquema y la organizaci\xf3n de tu contenido."],"... like this one, which is right aligned.":["... como \xe9ste, que est\xe1 alineado a la derecha."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Lo que est\xe1s leyendo ahora es un bloque de texto, el bloque m\xe1s b\xe1sico de todos. El bloque de texto tiene sus propios controles para poder moverlo libremente alrededor de la entrada\u2026"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["El objetivo de este nuevo editor es hacer que la creaci\xf3n de contenido enriquecido en WordPress sea simple y agradable. Toda esta entrada est\xe1 compuesta por piezas de contenido \u2014 algo similar a los bloques LEGO \u2014 que puedes mover y interactuar. Mueve el cursor alrededor y notar\xe1s que los diferentes bloques se iluminan con contornos y flechas. Pulsa las flechas para reposicionar los bloques r\xe1pidamente, sin temor a perder cosas en el proceso de copiar y pegar."],"Of Mountains & Printing Presses":["De Monta\xf1as e Imprentas"],"Welcome to the Gutenberg Editor":["Bienvenido al Editor Gutenberg"],"block name\x04More":["M\xe1s"],"button to expand options\x04More":["M\xe1s"],"Are you sure you want to unschedule this post?":["\xbfEst\xe1s seguro de que deseas desprogramar esta entrada?"],"Alt Text (Alternative Text)":["Alt (texto alternativo)"],"Reusable Block":["Bloque Reutilizable"],"Unique identifier for the object.":["Identificador \xfanico para el objeto."],"Untitled Reusable Block":["Bloque Reutilizable Sin T\xedtulo"],Small:[],"(%s: %s)":["(%s: %s)"],Reusable:["Reutilizable"],"(current %s: %s)":["(actual %s: %s)"],"Remove from Reusable Blocks":["Quitar de los Bloques Reutilizables"],"Add to Reusable Blocks":["Agregar a Bloques Reutilizables"],"Keep as HTML":["Guardar como HTML"],"Edit URL":["Editar URL"],"Color Settings":["Configuraci\xf3n de Color"],"The response is not a valid JSON response.":["La respuesta no es una respuesta JSON v\xe1lida."],"Editor publish":["Publicar editor"],Muted:["Apagado"],"Video Settings":["Ajustes de Video"],"recent comments":["comentarios recientes"],"Latest Comments":["Ultimos Comentarios"],"Display Excerpt":["Mostrar Extracto"],"Display Date":["Mostrar Fecha"],"Display Avatar":["Mostrar Avatar"],"Latest Comments Settings":["Configuraci\xf3n de los \xdaltimos Comentarios"],"Number of Comments":["N\xfamero de Comentarios"],"Background Opacity":["Opacidad de Fondo"],Auto:["Auto"],Preload:["Precarga"],"Audio Settings":["Ajustes de Audio"],"Display a monthly archive of your posts.":["Muestra un archivo mensual de tus entradas."],"Display as Dropdown":["Mostrar como Men\xfa Desplegable"],"Show Post Counts":["Mostrar Contador de Entradas"],"Archives Settings":["Configuraci\xf3n de Archivo"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Soporte"],"No comments to show.":["No hay comentarios para mostrar."],"%1$s on %2$s":["%1$s en %2$s"],"Select Post":["Seleccionar Entrada"],"Select Week":["Seleccionar Semana"],"Select Day":["Seleccionar D\xeda"],"Select Month":["Seleccionar mes"],"Select Year":["Seleccionar A\xf1o"],Archives:["Archivos"],"Very dark gray":["Gris muy oscuro"],"Cyan bluish gray":["Gris azulado cian"],"Very light gray":["Gris muy claro"],"Vivid cyan blue":["Azul ci\xe1nico vivo"],"Pale cyan blue":["Azul cian p\xe1lido"],"Vivid green cyan":["Verde vivo ci\xe1nico"],"Light green cyan":["Verde claro cian"],"Luminous vivid amber":["\xc1mbar vivo luminoso"],"Luminous vivid orange":["Anaranjado vivo luminoso"],"Vivid red":["Rojo vivo"],"Pale pink":["Rosa p\xe1lido"],"Inline image":[],"Available block types":["Tipos de bloque disponibles"],"Transform To:":["Transformar A:"],"Remove Block":["Quitar Bloque"],"Open publish panel":["Abrir el panel publicar"],Dots:["Puntos"],"Wide Line":["L\xednea Ancha"],Large:["Largo"],"Show download button":[],"Download button settings":[],"Link To":["Enlace a"],"Text link settings":[],pdf:["pdf"],document:["documento"],"Copy URL":["Copiar URL"],"Write file name\u2026":["Escriba el nombre del archivo\u2026"],"Edit file":["Editar archivo"],File:["Archivo"],"A single column within a columns block.":["Una sola columna dentro de un bloque de columnas."],Column:["Columna"],Outline:["Contorno"],Loop:["Loop"],Autoplay:["Autoreproducir"],"Playback Controls":["Controles de Reproducci\xf3n"],"Close dialog":["Cerrar el di\xe1logo"],"Sorry, this file type is not permitted for security reasons.":["Lo sentimos, por razones de seguridad este tipo de archivos no est\xe1 permitido."],"Disable tips":["Deshabilitar sugerencias"],"Got it":["Entiendo"],"See next tip":["Ver siguiente consejo"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Cuando est\xe9s listo, env\xeda tu trabajo para su revisi\xf3n, y un editor podr\xe1 aprobarlo."],"Are you ready to submit for review?":["\xbfEst\xe1s listo para enviar a revisi\xf3n?"],"Replace image":["Reemplazar imagen"],"Remove image":["Eliminar imagen"],"Error while uploading file %s to the media library.":["Error al subir el archivo %s a la biblioteca de medios."],"This file exceeds the maximum upload size for this site.":["Este archivo supera el tama\xf1o m\xe1ximo de subida para este sitio."],"View the autosave":["Ver el autoguardado"],"There is an autosave of this post that is more recent than the version below.":["Hay un guardado autom\xe1tico de esta entrada que es m\xe1s reciente que la versi\xf3n de abajo."],Autosaving:["Autoguardado"],"Enter URL here\u2026":["Ingresa aqu\xed la URL..."],"Pin to toolbar":["Pegar a la barra de herramientas"],"Unpin from toolbar":["Liberar de la barra de herramientas"],"Insert a table \u2014 perfect for sharing charts and data.":["Insertar una tabla \u2014 perfecta para compartir gr\xe1ficos y datos."],"Fixed width table cells":["Celdas de tabla de ancho fijo"],"Table Settings":["Configuraci\xf3n de la Tabla"],"Add text that respects your spacing and tabs, and also allows styling.":["Agrega texto que respete el espaciado y las fichas, y tambi\xe9n que permita el estilo."],"Display a list of your most recent posts.":["Muestra una lista de tus mensajes m\xe1s recientes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Agrega un bloque que muestre el contenido extra\xeddo de otros sitios, como Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["A\xf1ade un bloque que muestre contenido en varias columnas y, a continuaci\xf3n, a\xf1ade los bloques de contenido que quieras."],"Error loading block: %s":["Error cargando el bloque: %s"],"Unknown error":["Error desconocido"],"Embed Handler":["Incrustar Controlador"],"term\x04Remove %s":["Quitar %s"],"Copy the permalink":["Copiar el Enlace"],"Permalink copied":["Enlace copiado"],"Height in pixels":["Alto en p\xedxeles"],"Spacer Settings":["Ajustes del Espaciador"],Spacer:["Espaciador"],"Toggle to show a large initial letter.":["Alternar para mostrar una letra inicial grande."],"Showing large initial letter.":["Mostrando letra inicial grande."],"Name:":["Nombre:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de%3$s)"],"Remove item":["Quitar elemento"],"Color code: %s":["C\xf3digo de color: %s"],"Skip to the selected block":["Saltar al bloque seleccionado"],"Publish\u2026":["Publicar\u2026"],"Schedule\u2026":["Programar\u2026"],"Edit post permalink":["Editar Enlace de la entrada"],"Show Block Settings":["Mostrar Configuraci\xf3n de Bloque"],"Hide Block Settings":["Ocultar Configuraci\xf3n de Bloque"],"Block settings closed":["Ajustes del bloque cerrados"],"Close plugin":["Cerrar plugin"],"Link settings":[],Unlink:["Quitar Enlace"],"Page break":["Salto de p\xe1gina"],pagination:["paginaci\xf3n"],"next page":["p\xe1gina siguiente"],"Image Size":["Tama\xf1o de imagen"],Height:["Alto"],Width:["Ancho"],"Image Dimensions":["Dimensiones de la imagen"],"Thumbnails are not cropped.":["Las miniaturas no se recortan."],"Thumbnails are cropped to align.":["Las miniaturas se recortan alineadas."],"Media Library":["Biblioteca multimedia"],Advanced:["Avanzado"],"Add item":["A\xf1adir elemento"],"Reset the template":["Restablecer la plantilla"],"Keep it as is":["Mantenerla como est\xe1"],"The content of your post doesn\u2019t match the template assigned to your post type.":["El contenido de tu entrada no se ajusta a la plantilla asignada a tu tipo de contenido."],"Resetting the template may result in loss of content, do you want to continue?":["Restablecer la plantilla puede resultar en p\xe9rdida de contenido, \xbfquieres continuar?"],"Document Statistics":["Estad\xedsticas del documento"],"is now scheduled. It will go live on":["est\xe1 ahora programada. Estar\xe1 disponible el"],Scheduled:["Programada"],"Scheduling\u2026":["Programando\u2026"],"Code editor selected":["Editor de c\xf3digo seleccionado"],"Visual editor selected":["Editor visual seleccionado"],Plugins:["Plugins"],"Custom Size":["Tama\xf1o Personalizado"],"Layout Elements":["Elementos de dise\xf1o"],"term\x04%s removed":["%s borrada"],"term\x04%s added":["%s a\xf1adida"],"imperative verb\x04Preview":["Vista Previa"],"Block deleted.":["Bloque borrado."],"Block updated.":["Bloque actualizado."],"Block created.":["Bloque creado."],"Trashing failed":["Fallo al enviar a la papelera"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["Ri new cambios sin guardar. Si sigues se perder\xe1n."],"Document Outline":["Esquema del documento"],Paragraphs:["P\xe1rrafos"],Headings:["Cabaceras"],Words:["Palabras"],"Content structure":["Estructura del contenido"],Public:["P\xfablico"],"Protected with a password you choose. Only those with the password can view this post.":["Protegida con una contrase\xf1a que t\xfa elijas. Solo los que tengan la contrase\xf1a pueden ver esta entrada."],"Password Protected":["Protegido con clave"],"Only visible to site admins and editors.":["Solo visible para administradores y editores del sitio."],Private:["Privado"],"Visible to everyone.":["Visible por todos."],"Post Visibility":["Visibilidad de la entrada"],"Would you like to privately publish this post now?":["\xbfTe gustar\xeda publicar ahora en privado esta entrada?"],"Use a secure password":["Usa una contrase\xf1a segura"],"Create password":["Crear contrase\xf1a"],"Move to Trash":[],"Parent Term":["T\xe9rmino superior"],"Parent Category":["Categor\xeda principal"],"Add new term":["A\xf1adir nuevo t\xe9rmino"],"Add new category":["Agregar nueva categor\xeda"],Term:["T\xe9rmino"],Tag:["Etiqueta"],"Add New Term":["A\xf1adir nuevo t\xe9rmino"],"Add New Tag":["Agregar nueva etiqueta"],"Switch to Draft":["Cambiar a borrador"],"Are you sure you want to unpublish this post?":["\xbfEst\xe1s seguro de querer anular la publicaci\xf3n de esta entrada?"],Immediately:["Inmediatamente"],"Save Draft":["Guardar"],Saving:["Guardando"],"Publish:":["Publicar:"],"Visibility:":["Visibilidad:"],"Are you ready to publish?":["\xbfEst\xe1s listo para publicar?"],"Copy Link":["Copiar Link"],"What\u2019s next?":["\xbfY ahora qu\xe9?"],"is now live.":["est\xe1 ahora visible."],Published:["Publicado"],Schedule:["Programar"],Update:["Actualizar"],"Submit for Review":["Enviar para revisar"],"Updating\u2026":["Actualizando\u2026"],"Publishing\u2026":["Publicando\u2026"],"Allow Pingbacks & Trackbacks":["Permitir pingbacks y trackbacks"],"Permalink:":["Enlace permanente:"],"Pending Review":["Revisi\xf3n pendiente"],"%d Revision":["%d revisi\xf3n","%d revisiones"],"Suggestion:":["Sugerencia:"],"Post Format":["Formato de publicaci\xf3n"],Chat:["Chat"],Status:["Estado"],Standard:["Est\xe1ndar"],Aside:["Aside"],"Set Featured Image":[],"Learn more about manual excerpts":["Aprende m\xe1s sobre extractos manuales"],"Write an excerpt (optional)":["Escribe un extracto (opcional)"],"Allow Comments":["Permitir comentarios"],"Template:":["Plantilla:"],"no parent":["sin superior"],"no title":["sin t\xedtulo"],Order:["Orden"],"No blocks found.":["No se han encontrado bloques."],"%d result found.":["%d resultado encontrado.","%d resultados encontrados."],Saved:["Guardado"],Embeds:["Incrustaci\xf3n"],Blocks:["Bloques"],"Search for a block":["Buscar un bloque"],"Add block":["A\xf1adir bloque"],"Add %s":["Agregar %s"],"Copy Error":["Error al copiar"],"Copy Post Text":["Copiar texto de la entrada"],"Attempt Recovery":["Intentar recuperaci\xf3n"],"The editor has encountered an unexpected error.":["El editor ha encontrado un error inesperado."],Undo:["Deshacer"],Redo:["Rehacer"],"(Multiple H1 headings are not recommended)":["(No se recomiendan varios H1)"],"(Your theme may already use a H1 for the post title)":["(Tu tema puede que ya use un H1 para el t\xedtulo de la entrada)"],"(Incorrect heading level)":["(Nivel de encabezado incorrecto)"],"(Empty heading)":["(Encabezado vac\xedo)"],"Block Styles":["Estilos de bloque"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\xbfEst\xe1s seguro de querer borrar este bloque compartido?\nSe borrar\xe1 permanentemente de todas las entradas y p\xe1ginas que lo usen."],"Convert to Regular Block":["Convertir a bloque normal"],"More options":["M\xe1s opciones"],"Edit visually":["Editar visualmente"],Duplicate:["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Los bloques no se pueden mover hacia abajo porque ya est\xe1n en el fondo"],"Blocks cannot be moved up as they are already at the top":["Los bloques no se pueden mover arriba porque ya est\xe1n al principio"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["El bloque %s es el \xfanico bloque, y no puede moverse"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Convertir a bloques"],"Block: %s":["Bloque: %s"],"This block has encountered an error and cannot be previewed.":["Este bloque ha encontrado un error y no puede previsualizarse."],"No block selected.":["No haz seleccionado ning\xfan bloque."],"Transform into:":["Transformar a:"],Remove:["Eliminar"],"Find original":["Encontrar el original"],"Copy All Content":["Copiar todo el contenido"],"Copied!":["Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Ahora hay ajustes adicionales disponibles en la barra de ajustes del editor de bloques"],Visibility:["Visibilidad"],"Status & Visibility":["Estado y visibilidad"],"Page Attributes":["Atributos de P\xe1gina"],Block:["Bloque"],Document:["Documento"],"Featured Image":["Imagen Destacada"],"Close settings":["Cerrar ajustes"],"Editor content":["Contenido del editor"],Tools:["Herramientas"],Editor:["Editor"],"Code Editor":["Editor de c\xf3digo"],"Visual Editor":["Editor visual"],"Editor top bar":["Barra superior del editor"],Settings:["Opciones"],Reset:["Resetear"],"Dismiss this notice":["Descartar este aviso"],"Item removed.":["Elemento eliminado."],"Item added.":["El elemento ha sido agregado."],"Drop files to upload":["Arrastra archivos para subir"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Ha ocurrido un error desconocido."],"No results.":["No hay resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontrado, utiliza las teclas arriba y abajo para navegar.","%d resultados encontrados, utiliza las teclas arriba y abajo para navegar."],"(no title)":["(sin t\xedtulo)"],URL:["URL"],Submit:["Enviar"],Close:["Cerrar"],"Insert link":[],"Edit link":[],Link:["Enlace"],Strikethrough:["Tachado"],Italic:["Cursiva"],Bold:["Negrita"],"Remove link":[],"Number of items":["N\xfamero de elementos"],All:["Todo"],Category:["Categor\xeda"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["De antiguas a nuevas"],"Newest to Oldest":["De nuevas a antiguas"],"Order by":["Ordenar por"],Select:["Seleccionar"],"Select or Upload Media":["Elige o sube medios"],Video:["Video"],"Edit video":["Editar v\xeddeo"],"Write\u2026":["Escribe\u2026"],poetry:["poes\xeda"],Verse:["Vers\xedculo"],"New Column":["Nueva columna"],"Delete Column":["Borrar columna"],"Add Column After":["A\xf1adir columna despu\xe9s"],"Add Column Before":["A\xf1adir columna antes"],"Delete Row":["Borrar fila"],"Add Row After":["A\xf1adir fila despu\xe9s"],"Add Row Before":["A\xf1adir fila antes"],"Edit table":[],Table:["Tabla"],"Write subheading\u2026":["Escribe el subt\xedtulo\u2026"],"Write shortcode here\u2026":["Escribe aqu\xed el shortcode\u2026"],Shortcode:["Shortcode"],divider:["separador"],"horizontal-line":["l\xednea-horizontal"],Separator:["Separador"],Quote:["Cita"],"Write citation\u2026":["Escribe la cita\u2026"],"Write quote\u2026":["Escribe la cita\u2026"],Pullquote:["Cita"],"Write preformatted text\u2026":["Escribe texto preformateado\u2026"],Preformatted:["Preformateado"],text:["texto"],Paragraph:["P\xe1rrafo"],"Font Size":["Tama\xf1o de Fuente"],"Drop Cap":["Capitalizar"],"Text Settings":["Ajustes del texto"],"Read more":["Leer M\xe1s"],"Write list\u2026":["Escribe una lista\u2026"],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista con vi\xf1etas"],"Indent list item":["A\xf1adir sangr\xeda al elemento de la lista"],"Outdent list item":["Reducir sangr\xeda al elemento de la lista"],"Convert to ordered list":["Convertir a lista ordenada"],"Convert to unordered list":["Convertir a lista desordenada"],List:["Lista"],"recent posts":["entradas recientes"],"No posts found.":["No se encontraron entradas."],"Latest Posts":["\xdaltimas publicaciones"],"Display post date":["Mostrar fecha de la entrada"],"Grid view":[],"List view":[],photo:["foto"],"Image Settings":["Ajustes de imagen"],Image:["Imagen"],Preview:["Vista Previa"],embed:["incrustar"],"Custom HTML":["HTML Personalizado"],subtitle:["subt\xedtulo"],title:["t\xedtulo"],Heading:["T\xedtulo"],"Write heading\u2026":["Escribe el encabezado\u2026"],"Heading %d":["Encabezado %d"],Level:["Nivel"],"Heading Settings":["Ajustes de encabezado"],photos:["fotos"],images:["im\xe1genes"],"Remove Image":["Eliminar imagen"],None:["Ninguno"],"Media File":["Archivo Multimedial"],"Attachment Page":["P\xe1gina de Adjuntos"],"Crop Images":["Recortar im\xe1genes"],"Gallery Settings":["Ajustes de galer\xeda"],Gallery:["Galer\xeda"],Classic:["Cl\xe1sico"],video:["video"],audio:["audio"],music:["m\xfasica"],image:["imagen"],blog:["blog"],post:["entrada"],"Embedded content from %s":["Contenido incrustado desde %s"],"Enter URL to embed here\u2026":["Introduce aqu\xed la URL a incrustar\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Incrustando\u2026"],"Write title\u2026":["Escribe el t\xedtulo\u2026"],"Fixed Background":["Fondo fijo"],"Edit image":["Editar imagen"],Columns:["Columnas"],Experiments:[],Code:["C\xf3digo"],"Write code\u2026":["Escribe c\xf3digo\u2026"],Categories:["Categor\xedas"],"Show Hierarchy":["Mostrar Jerarquicamente"],"Show post counts":["Mostrar contador de entradas"],"Categories Settings":["Ajustes de categor\xedas"],"Add text\u2026":["A\xf1ade texto\u2026"],Button:["Bot\xf3n"],Apply:["Aplicar"],"Text Color":["Color del texto"],"Background Color":["Color de Fondo"],"Block has been deleted or is unavailable.":["El bloque se ha borrado o no est\xe1 disponible."],"Reusable Blocks":["Bloque reutilizable"],Cancel:["Cancelar"],Edit:["Editar"],"Edit audio":["Editar audio"],"Write caption\u2026":["Escribe la leyenda\u2026"],"Use URL":["Usar URL"],Audio:["Audio"],Upload:["Cargar"],"Additional CSS Class(es)":[],"HTML Anchor":["Anclaje HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combinaci\xf3n de color puede ser dif\xedcil de leer para la gente. Trata de usar un color de fondo m\xe1s claro y/o un color de texto m\xe1s oscuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combinaci\xf3n de color puede ser dif\xedcil de leer para la gente. Trata de usar un color de fondo m\xe1s oscuro y/o un color de texto m\xe1s claro."],Clear:["Limpiar"],"Custom color picker":["Selector de color personalizado"],"Color: %s":["Color: %s"],"Full Width":[],"Wide Width":[],Widgets:["Widgets"],Formatting:["Formato"],"Common Blocks":["Bloques comunes"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimiendo desde 1440. Este es el plugin en desarrollo del nuevo editor de bloques del n\xfacleo."],"Add title":["A\xf1adir t\xedtulo"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["Autor"],Slug:["Slug"],Discussion:["Discusi\xf3n"],"Custom Fields":["Campos personalizados"],Excerpt:["Extracto"],Publish:["Publicar"],Metadata:["Metadata"],Save:["Guardar"],Documentation:["Documentaci\xf3n"],"Select Category":["Seleccionar categor\xeda"],"(Untitled)":["(Sin t\xedtulo)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["El equipo de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["hace %s"],"Block style name must be a string.":[]}},840,[]); +__d(function(e,o,a,t,r,i,s){r.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":["%d palabra","%d palabras"],"Top Toolbar":["Barra de herramientas"],"Link Rel":["Link Rel"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Cree contenido y s\xe1lvelo para usted y para otros colaboradores para que sea reutilizado en todo su sitio. Actualice el bloque y los cambios se aplicar\xe1n en donde se utilice."],"To edit the featured image, you need permission to upload media.":["Para editar la imagen destacada, usted necesita permisos para subir medios."],"To edit this block, you need permission to upload media.":["Para editar este bloque, usted necesita permiso para subir medios."],"(selected block)":["(bloque seleccionado)"],"Block tools":["Herramientas de bloque"],Permalink:["Enlace permanente"],"This image has an empty alt attribute":["Esta imagen tiene el atributo 'alt' vac\xedo."],"This image has an empty alt attribute; its file name is %s":["Esta imagen tiene el atributo 'alt' vac\xedo; el archivo se llama %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":["Agregar nuevo"],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["Precauci\xf3n: el enlace ha sido insertado pero tiene errores. Por favor, h\xe1gale pruebas. "],"%s block selected.":["%s bloque seleccionado.","%s bloques seleccionados."],Thumbnail:["Miniatura"],"Full Size":["Tama\xf1o completo"],"Link selected.":[],"Start writing with text or HTML":["Comience escribiendo con texto o HTML"],"Type text or HTML":["Escriba texto o HTML"],"Block icon":["Icono de bloque"],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":["Comience a escribir o inserte / para escoger un bloque"],"Empty block; start writing or type forward slash to choose a block":["Bloque vac\xedo; comience a escribir o inserte una barra inclinada para escoger un bloque."],"Paragraph block":["Bloque de p\xe1rrafo"],"Page Break":["Salto de p\xe1gina"],"Stack on mobile":["Apilar en m\xf3viles"],Annotation:["Nota"],"Drag images, upload new ones or select files from your library.":["Arrastre im\xe1genes, suba nuevas o escoja unas de su biblioteca."],"blocks\x04Most Used":["M\xe1s utilizados"],"imperative verb\x04Resolve":["Resolver"],"font size name\x04Huge":["Enorme"],"font size name\x04Large":["Grande"],"font size name\x04Medium":["Mediana"],"font size name\x04Small":["Peque\xf1a"],"font size name\x04Normal":["Regular"],"keyboard button\x04Enter":["Aceptar"],"button label\x04Import":["Importar"],"button label\x04Download":["Descargar"],"button label\x04Embed":["Incrustar"],"block title\x04Embed":["Incrustado"],"block title\x04Classic":["Cl\xe1sico"],"block style\x04Large":["Grande"],"%s (opens in a new tab)":["%s (abre en pesta\xf1a nueva)"],"Link edited.":["Enlace editado."],"Link removed.":["Enlace retirado."],media:["medios"],"Double-check your settings before publishing.":["Verifique sus ajustes dos veces antes de publicar."],"Generating preview\u2026":["Generando vista previa..."],"Edit or update the image":["Editar o actualizar imagen"],Media:["Medios"],"Navigate to the nearest toolbar.":["Navegar a la barra de herramientas m\xe1s cercana."],"Document tools":["Herramientas de documento"],"Document and block tools":[],"Embed a video from your media library or upload a new one.":["Incruste un video de su biblioteca de medios o suba uno nuevo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Incluya poes\xeda, utilice formatos de espaciado especiales, o cite letras de canciones."],"Add white space between blocks and customize its height.":["Agregue espacio en blanco entre bloques y personalice su altura."],"Insert additional custom elements with a WordPress shortcode.":["Inserte elementos adicionales a su medida con un shortcode de WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Agregue una separaci\xf3n entre ideas o secciones con un separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Enfatizar visualmente el texto citado. \"Al citar a los dem\xe1s, nos citamos a nosotros mismos.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Dar un \xe9nfasis visual a una cita dentro del texto."],"Start with the building block of all narrative.":["Comience con el bloque de construcci\xf3n de toda la narrativa."],"Separate your content into a multi-page experience.":["Separe su contenido en una experiencia multi-p\xe1gina."],"Set media and words side-by-side for a richer layout.":["Ajuste los medios y las palabras lado a lado para un dise\xf1o m\xe1s rico."],"Media & Text Settings":["Ajustes de medios y texto"],"Create a bulleted or numbered list.":["Crear una lista con vi\xf1etas o numerada."],"Display a list of your most recent comments.":["Mostrar una lista de los comentarios m\xe1s recientes."],"Insert an image to make a visual statement.":["Insertar una imagen para llamar la atenci\xf3n visualmente."],"Add custom HTML code and preview it as you edit.":["Agregar c\xf3digo HTML personalizado y ver mientras lo edita."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduzca secciones nuevas y organice el contenido para ayudar a los visitantes (y al SEO) a entender la estructura de su contenido."],"Display multiple images in a rich gallery.":["Mostrar varias im\xe1genes en una galer\xeda enriquecida."],"Add a link to a downloadable file.":["Agregar un enlace a un archivo descargable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Insertar videos, im\xe1genes, tweets, audios y otros contenidos de fuentes externas."],"Resize for smaller devices":["Cambiar tama\xf1o para dispositivos m\xf3viles"],"This embed may not preserve its aspect ratio when the browser is resized.":["Esta incrustaci\xf3n puede que no mantenga su relaci\xf3n de aspecto cuando el navegador cambie de tama\xf1o."],"This embed will preserve its aspect ratio when the browser is resized.":["Esta incrustaci\xf3n mantendr\xe1 su relaci\xf3n de aspecto cuando el navegador cambie de tama\xf1o."],"Embed an Animoto video.":["Incrustar un video Animoto."],"Embed a Vimeo video.":["Incrustar un video de Vimeo."],"Embed Flickr content.":["Incrustar contenido de Flickr."],"Embed Spotify content.":["Incrustar contenido de Spotify."],"Embed SoundCloud content.":["Incrustar contenido de SoundCloud."],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":["Incrustar contenido de Polldaddy"],"Embed Mixcloud content.":["Incrustar contenido de Mixcloud."],"Embed a tweet.":["Incrustar un tweet."],"Embed Meetup.com content.":["Incrustar contenido de Meetup.com"],"Embed Kickstarter content.":["Incrustar contenido de Kickstarter."],"Embed Issuu content.":["Incrustar contenido de Issuu"],"Embed Imgur content.":["Incrustar contenido de Imgur."],"Embed Hulu content.":["Incrustar contenido de Hulu."],"Embed a Dailymotion video.":["Incrustar contenido de Dailymotion."],"Embed CollegeHumor content.":["Incrustar contenido de CollegeHumor."],"Embed Cloudup content.":["Incrustar contenido de Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Agregue una imagen o un video con texto superpuesto \u2014 es genial para encabezados."],"Display code snippets that respect your spacing and tabs.":["Mostrar fragmentos de c\xf3digo que respetan el espaciado y las pesta\xf1as."],"Use the classic WordPress editor.":["Use el editor cl\xe1sico de WordPress."],"Display a list of all categories.":["Mostrar una lista de todas las categor\xedas."],"Embed a simple audio player.":["Incrustar un reproductor de audio sencillo."],"noun\x04View":["Ver"],"editor button\x04Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],Styles:[],"Advanced Panels":[],"Document Panels":[],General:[],"Open the block navigation menu.":[],"Work without distraction":["Trabajar sin distracciones"],"Focus on one block at a time":["Enfocarse en un bloque a la vez"],"Access all block and document tools in a single place":["Acceder todos los bloques y herramientas de documento en un mismo lugar"],Options:["Opciones"],"(opens in a new tab)":[],Minutes:[],Hours:[],Time:[],Year:[],Day:[],December:[],November:[],October:[],September:[],August:[],July:[],June:[],May:[],April:[],March:[],February:[],January:[],Month:[],Date:[],"Go to the first (home) or last (end) day of a week.":["Ir al primer d\xeda de la semana (inicio) o al \xfaltimo (final)."],"Home/End":["Inicio/Final"],"Home and End":["Inicio y final"],"Move backward (PgUp) or forward (PgDn) by one month.":["Mover un mes hacia atr\xe1s (PgUp) o hacia adelante (PgDn)."],"PgUp/PgDn":["PgArriba/PgAbajo"],"Page Up and Page Down":["P\xe1gina arriba y P\xe1gina abajo"],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":["Haga clic en el d\xeda deseado para seleccionarlo."],"Click the right or left arrows to select other months in the past or the future.":["Haga clic en las flechas izquierda o derecha para seleccionar otros meses en el pasado o en el futuro."],"Click to Select":["Clic para seleccionar."],"Calendar Help":["Ayuda del calendario"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["Elegir un tono"],"Change color format":["Cambiar el formato de color"],"Color value in HSL":["Valor de color HSL"],"Color value in RGB":["Valor de color RGB"],"Color value in hexadecimal":["Valor de color hexadecimal"],"RGB mode active":["Modo RGB activo"],"Hex color mode active":["Modo de color Hex activo"],"Hue/saturation/lightness mode active":["Modo Hue/saturation/lightness activo"],"Move the arrow left or right to change hue.":["Mover la flecha izquierda o la derecha para cambiar el matiz (hue)."],"Hue value in degrees, from 0 to 359.":["Valor de matiz (hue) en grados, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor Alpha, de 0 (transparente) a 1 (opaco)."],Stripes:[],"Your site doesn\u2019t include support for this block.":["Su sitio no permite este bloque."],"Unrecognized Block":["Bloque desconocido"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Su sitio no permite el bloque \"%s\". Usted puede dejar este bloque intacto o retirarlo completamente."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Si sitio no permite el bloque \"%s\". Usted puede dejar este bloque intacto, convertir su contenido en un bloque HTML personalizado o retirarlo completamente."],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:[],"Border Settings":[],"Edit media":[],Medium:[],"Paste URL or type to search":["Pegar URL o escribir para buscar"],Terms:[],"Your work will be published at the specified date and time.":["Su post ser\xe1 publicado en la fecha y hora especificados"],"Are you ready to schedule?":["\xbfEst\xe1 listo para programar?"],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Otro usuario se encuentra trabajando en este post, por lo que usted no puede hacer cambios, a menos que tome el control del post."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s se encuentra trabajando en este post, por lo que usted no puede hacer cambios, a menos que tome el control del post."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Otro usuario tom\xf3 control de la edici\xf3n de este post. No se ofusque, sus cambios, hasta ahora, han sido guardados."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s tom\xf3 control de la edici\xf3n de este post. No se ofusque, sus cambios, hasta ahora, han sido guardados."],Avatar:["Avatar"],"This post is already being edited.":["Este post ya est\xe1 siendo editado."],"Someone else has taken over this post.":["Alguien m\xe1s tom\xf3 control de este post."],"This block contains unexpected or invalid content.":["Este bloque contiene contenido inesperado o inv\xe1lido"],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":["Este bloque s\xf3lo puede ser usado una vez."],"Exit Code Editor":["Salir de editor de c\xf3digo"],"Editing Code":["Editando c\xf3digo"],"Solid Color":[],"Main Color":[],HTML:["HTML"],"Write HTML\u2026":["Escriba HTML..."],"Media Settings":[],"Overlay Color":[],Overlay:[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":["Importar desde JSON"],Backtick:[],Period:["Punto"],Comma:["Coma"],"Change type of %d block":[],Current:[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":["%d bloque","%d bloques"],Escape:["Escape"],"Forward-slash":["Barra inclinada"],"No archives to show.":["No hay archivos que mostrar."],"This file is empty.":["Este archivo est\xe1 vac\xedo."],"Sorry, this file type is not supported here.":["Sorry, este tipo de archivo no es permitido aqu\xed."],"Manage All Reusable Blocks":["Administrar todos los bloques reusables"],Title:["T\xedtulo"],"Fullscreen Mode":["Modo pantalla completa"],"Beautiful landscape":["Paisaje hermoso"],"Close panel":["Cerrar panel"],"Convert to Classic Block":["Convertir a Bloque cl\xe1sico"],"Remove Poster Image":["Retirar imagen de Poster"],"Select Poster Image":["Escoger imagen de Poster"],"Poster Image":["Imagen de Poster"],"This block is deprecated. Please use the Columns block instead.":["Este bloque est\xe1 obsoleto. En cambio, utilice el bloque de Columnas."],"Text Columns (deprecated)":["Columnas de texto (obsoleto)"],"Row Count":["N\xfamero de filas"],"Column Count":["N\xfamero de columnas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloque est\xe1 obsoleto. En cambio, utilice el bloque de P\xe1rrafo."],"Subheading (deprecated)":["Subt\xedtulo (obsoleto)"],blockquote:[],"Change the block type after adding a new paragraph.":["Cambie el tipo de bloque luego de agregar un p\xe1rrafo nuevo."],"Spotlight Mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Las etiquetas ayudan a los usuarios y a los motores de b\xfasqueda a navegar por su sitio y encontrar su contenido. Agregue algunas palabras clave para describir su publicaci\xf3n."],"Add tags":["Agregar etiquetas"],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Su tema usa formatos de post para destacar diferentes tipos de contenido, tales como im\xe1genes o videos. Aplique un formato para ver este dise\xf1o especial."],"Use a post format":["Usar formato de entrada"],"Insert After":["Insertar Despu\xe9s"],"Insert Before":["Insertar Antes"],"Move %1$d block from position %2$d down by one place":["Mover %1$d bloque de la posici\xf3n %2$d un lugar hacia abajo","Mover %1$d bloques de la posici\xf3n %2$d un lugar hacia abajo"],"Move %1$d block from position %2$d up by one place":["Mover %1$d bloque de la posici\xf3n %2$d un lugar hacia arriba","Mover %1$d bloques de la posici\xf3n %2$d un lugar hacia arriba"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["pelicula"],"Insert a new block before the selected block(s).":["Inserta un nuevo bloque antes de los bloques seleccionados."],"Remove the selected block(s).":["Remover bloque(s) seleccionado(s)."],"Duplicate the selected block(s).":["Duplicar bloque(s) seleccionado(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Limpiar selecci\xf3n."],"Select all text when typing. Press again to select all blocks.":["Seleccione todo el texto al escribir. Presione nuevamente para seleccionar todos los bloques."],"Selection shortcuts":["Selecci\xf3n de shortcuts"],"Switch between Visual Editor and Code Editor.":["Cambie entre el Editor Visual y el Editor de Codigo."],"Navigate to the previous part of the editor (alternative).":["Navegue a la parte anterior del editor (alternativa)."],"Navigate to the next part of the editor (alternative).":[],"Navigate to the previous part of the editor.":["Navegue a la parte anterior del editor."],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":["Mostrar u ocultar la barra lateral de configuraciones."],"Redo your last undo.":["Rehaga su \xfaltimo deshacer."],"Undo your last changes.":["Seshacer cambios."],"Save your changes.":["Guarde sus cambios"],"Global shortcuts":["Shortcuts globales"],"Remove a link.":["Eliminar un enlace."],"Convert the selected text into a link.":["Convertir el texto seleccionado en un enlace."],"Underline the selected text.":["Subrayar el texto seleccionado."],"Make the selected text italic.":["Hacer el texto seleccionado cursiva."],"Make the selected text bold.":["Hacer el texto seleccionado negrita."],"Text formatting":["Formato de texto"],"Insert a new block after the selected block(s).":["Inserta un nuevo bloque despu\xe9s de los bloques seleccionados."],"Keyboard Shortcuts":["Shortcuts del teclado"],"Thanks for testing Gutenberg!":["\xa1Gracias por probar Gutenberg!"],"Help build Gutenberg":["Ayuda a construir Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si quiere aprender m\xe1s sobre c\xf3mo crear bloques adicionales, o si est\xe1 interesado en ayudar con el proyecto, visite el repositorio en GitHub."],"The WordPress community":["La comunidad WordPress"],"Code is Poetry":["El c\xf3digo es poes\xeda"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Puede crear cualquier bloque, est\xe1tico y din\xe1mico, decorativo o plano. Aqu\xed tiene un bloque de cita:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Cualquier bloque puede estar en alguna de estas alineaciones. El bloque de incrustar tambi\xe9n las tiene, y es adaptable desde la base:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Lo de arriba es una galer\xeda con solo dos im\xe1genes. Es un modo sencillo de crear visualmente atractivos dise\xf1os, sin tener que lidiar con floats. Tambi\xe9n puede convertir f\xe1cilmente la galer\xeda de nuevo a im\xe1genes individuales, usando el cambiador de bloques. "],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Por supuesto, la imagen de ancho completo puede ser realmente grande. Pero a veces la imagen es lo importante."],"Accessibility is important — don’t forget image alt attribute":["La accesibilidad es importante. No se olvide del atributo de imagen alt."],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si combina las nueva alineaciones de galer\xeda ancha y ancho completo puede crear dise\xf1os ricos en medios r\xe1pidamente:"],"Media Rich":["Medios enriquecidos"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Puede cambiar la cantidad de columnas de sus galer\xedas arrastrando un control deslizante en el inspector de bloques de la barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Los bloques pueden ser lo que necesitas. Por ejemplo, puede que quieras a\xf1adir una cita suave como parte de la composici\xf3n de tu texto, o puede que prefieras mostrar una estilizada y gigante. Todas est\xe1s opciones est\xe1n en el insertador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["La informaci\xf3n correspondiente al origen de la cita est\xe1 en un campo de texto separado, parecido a las leyendas bajo las im\xe1genes, para que la estructura de la cita est\xe9 protegida aunque la selecciones, modifiques o quites del origen. Es siempre sencillo a\xf1adirla de nuevo."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["El editor procurar\xe1 crear una nueva experiencia de creaci\xf3n de p\xe1ginas y entradas que ayude a escribir publicaciones sin esfuerzo, utilizando los \"bloques\" para hacer mas sencillo lo que hoy conllevar\xeda usar shortcodes, HTML personalizado o descubrir como incrustar \"codigos sospechosos\"."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un gran beneficio de los bloques es que puedes editarlos donde est\xe9n y manipular directamente tu contenido. En vez de tener campos para editar cosas como el c\xf3digo o una cita, o el texto de un bot\xf3n, puedes cambiar directamente el contenido. Prueba a modificar la siguiente cita:"],"Visual Editing":["Edici\xf3n visual"],"And Lists like this one of course :)":["Y listas como esta, por supuesto :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloques de dise\xf1o, como botones, im\xe1genes prominentes, separadores, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incrustados, como YouTube, tuits o entradas de otro WordPress."],Galleries:["Galer\xedas"],"Images & Videos":["Im\xe1genes y v\xeddeos"],"Text & Headings":["Texto y encabezados"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["An\xedmate a probarlo, puedes descubrir cosas que WordPress ya puede a\xf1adir en tus entradas de las que no ten\xedas ni idea. Aqu\xed tienes una breve lista de lo que actualmente puedes encontrar ah\xed:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagina que todo lo que WordPress puede hacer est\xe9 disponible para ti r\xe1pidamente y en el mismo lugar de la interfaz. No tienes que descubrir etiquetas HTML, clases o recordar sintaxis complicadas de shortcodes. Ese es el esp\xedritu tras el insertador \u2014 el bot\xf3n (+) que ver\xe1s en el editor \u2014 que te permite navegar por todos los bloques de contenido disponibles y a\xf1adirlos a tu entrada. Los plugins y temas pueden registrar los suyos propios, abriendo una enorme cantidad de posibilidades para la edici\xf3n y la publicaci\xf3n enriquecida."],"The Inserter Tool":["La herramienta Insertador"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Prueba a seleccionar o quitar o editar la leyenda, ahora ya no tienes porque ser cuidadoso a la hora de seleccionar la imagen u otro texto por error y arruinar la presentaci\xf3n."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Si tue tema es compatible veras el bot\xf3n \"ancho\" en la barra de herramientas de la imagen. Pru\xe9balo."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Gestionar im\xe1genes y medios con el m\xe1ximo cuidado es un enfoque principal del nuevo editor. Afortunadamente encontrar\xe1s posibilidades para a\xf1adir leyendas o hacer de ancho completo tus fotos de un modo mucho m\xe1s f\xe1cil y robusto que antes."],"A Picture is Worth a Thousand Words":["Una imagen vale m\xe1s que mil palabras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Los encabezados tambi\xe9n son bloques separados, lo que ayuda a la estructura y organizaci\xf3n de tu contenido."],"... like this one, which is right aligned.":["... como esta, que est\xe1 alineada a la derecha."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Lo que est\xe1s leyendo ahora es un bloque de texto, el bloque m\xe1s b\xe1sico de todos. El bloque de texto tiene sus propios controles para moverlo libremente por toda la publicaci\xf3n\u2026"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["El objetivo de este nuevo editor es hacer que a\xf1adir contenido enriquecido a WordPress sea algo sencillo y agradable. Toda esta entrada est\xe1 creada con piezas de contenido \u2014algo parecido a los ladrillos LEGO \u2014 que puedes mover y con los que puedes interactuar. Mueve tu cursor y ver\xe1s que aparecen los distintos bloques con l\xedneas y flechas. Pulsa en las flechas para recolocar r\xe1pidamente los bloques, sin miedo a perder cosas sen el proceso de copiar y pegar. "],"Of Mountains & Printing Presses":["Hablando de monta\xf1as y prensas de impresi\xf3n"],"Welcome to the Gutenberg Editor":["Bienvenido al editor Gutenberg"],"block name\x04More":["M\xe1s"],"button to expand options\x04More":["M\xe1s"],"Are you sure you want to unschedule this post?":["\xbfEst\xe1s seguro de querer anular la programaci\xf3n de esta entrada?"],"Alt Text (Alternative Text)":["Texto alt (texto alternativo)"],"Reusable Block":["Bloque reutilizable"],"Unique identifier for the object.":["Identificador \xfanico del objeto."],"Untitled Reusable Block":["Blogue reutilizable sin t\xedtulo"],Small:[],"(%s: %s)":["(%s: %s)"],Reusable:["Reutilizable"],"(current %s: %s)":["(actual %s: %s)"],"Remove from Reusable Blocks":["Borrar de los bloques reutilizables"],"Add to Reusable Blocks":["A\xf1adir a los bloques reutilizables"],"Keep as HTML":["Mantener como HTML"],"Edit URL":["Editar URL"],"Color Settings":["Ajustes de color"],"The response is not a valid JSON response.":["Las respuesta no es una respuesta JSON v\xe1lida."],"Editor publish":["Publicaci\xf3n del editor"],Muted:["Silenciado"],"Video Settings":["Ajustes de v\xeddeo"],"recent comments":["comentarios recientes"],"Latest Comments":["\xdaltimos comentarios"],"Display Excerpt":["Mostrar extracto"],"Display Date":[],"Display Avatar":[],"Latest Comments Settings":["Ajustes de \xfaltimos comentarios"],"Number of Comments":[],"Background Opacity":["Opacidad del fondo"],Auto:["Autom\xe1tica"],Preload:["Precarga"],"Audio Settings":["Ajustes de audio"],"Display a monthly archive of your posts.":["Mostrar un archivo mensual de las entradas del sitio."],"Display as Dropdown":["Mostrar como desplegable"],"Show Post Counts":["Mostrar contador de entradas"],"Archives Settings":["Ajustes de archivos"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Soporte"],"No comments to show.":["No hay comentarios que mostrar."],"%1$s on %2$s":["%1$s en %2$s"],"Select Post":["Elegir entrada"],"Select Week":["Elegir semana"],"Select Day":["Elegir d\xeda"],"Select Month":["Elegir mes"],"Select Year":["Elegir a\xf1o"],Archives:["Archivo"],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":["Tipos de bloques disponibles"],"Transform To:":["Transformar a:"],"Remove Block":["Quitar bloque"],"Open publish panel":["Abrir el panel de publicar"],Dots:["Puntos"],"Wide Line":["L\xednea ancha"],Large:["Grande"],"Show download button":[],"Download button settings":[],"Link To":["Enlazar a"],"Text link settings":[],pdf:["pdf"],document:["documento"],"Copy URL":["Copiar URL"],"Write file name\u2026":["Escribe el nombre del archivo\u2026"],"Edit file":["Editar archivo"],File:["Archivo"],"A single column within a columns block.":["Una columna simple dentro de un bloque de columnas."],Column:["Columna"],Outline:["Contorno"],Loop:["En bucle"],Autoplay:["Reproducci\xf3n autom\xe1tica"],"Playback Controls":["Controles de reproducci\xf3n"],"Close dialog":["Cerrar ventana"],"Sorry, this file type is not permitted for security reasons.":["Lo siento, este tipo de archivo no est\xe1 permitido por razones de seguridad."],"Disable tips":["Desactivar consejos"],"Got it":["Lo tengo"],"See next tip":["Ver siguiente consejo"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Cuando est\xe9s listo, env\xeda tu trabajo para revisi\xf3n, y un editor podr\xe1 aprob\xe1rtelo."],"Are you ready to submit for review?":["\xbfEst\xe1s listo para enviarlo a revisi\xf3n?"],"Replace image":["Reemplazar imagen"],"Remove image":["Quitar imagen"],"Error while uploading file %s to the media library.":["Error al subir el archivo %s a la biblioteca de medios."],"This file exceeds the maximum upload size for this site.":[],"View the autosave":["Ver el guardado autom\xe1tico"],"There is an autosave of this post that is more recent than the version below.":["Hay un guardado autom\xe1tico de esta entrada que es m\xe1s reciente que la versi\xf3n de abajo."],Autosaving:["Guardando autom\xe1ticamente"],"Enter URL here\u2026":["Introduce aqu\xed la URL\u2026"],"Pin to toolbar":["Fijar a la barra de herramientas"],"Unpin from toolbar":["Quitar de la barra de herramientas"],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":["Celdas de tabla de ancho fijo"],"Table Settings":["Ajustes de tabla"],"Add text that respects your spacing and tabs, and also allows styling.":["A\xf1ade texto que respete tus espacios y tabulados, y que tambi\xe9n permita estilos."],"Display a list of your most recent posts.":["Muestra una lista de tus entradas m\xe1s recientes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["A\xf1ade un bloque que muestra contenido extra\xeddo de otros sitios, como Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["A\xf1ade un bloque que muestra contenido en varias columnas, luego a\xf1ade cualquier bloque de contenido que quieras."],"Error loading block: %s":["Error al cargar el bloque: %s"],"Unknown error":["Error desconocido"],"Embed Handler":["Gestor del servicio"],"term\x04Remove %s":["Eliminar %s"],"Copy the permalink":["Copia el enlace permanente"],"Permalink copied":["Enlace permanente copiado"],"Height in pixels":["Altura en p\xedxeles"],"Spacer Settings":["Ajustes del espaciador"],Spacer:["Espaciador"],"Toggle to show a large initial letter.":["Alternar para mostrar una letra inicial grande."],"Showing large initial letter.":["Mostrando letra inicial grande."],"Name:":["Nombre:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Eliminar elemento"],"Color code: %s":["C\xf3digo de color: %s"],"Skip to the selected block":["Saltar al bloque seleccionado"],"Publish\u2026":["Publicar\u2026"],"Schedule\u2026":["Programar\u2026"],"Edit post permalink":["Editar enlace permanente de la entrada"],"Show Block Settings":["Mostrar ajustes del bloque"],"Hide Block Settings":["Ocultar ajustes del bloque"],"Block settings closed":["Ajustes del bloque cerrados"],"Close plugin":["Cerrar plugin"],"Link settings":[],Unlink:["Quitar enlace"],"Page break":["Salto de p\xe1gina"],pagination:["paginaci\xf3n"],"next page":["p\xe1gina siguiente"],"Image Size":["Tama\xf1o de imagen"],Height:["Altura"],Width:["Ancho"],"Image Dimensions":["Dimensiones de la imagen"],"Thumbnails are not cropped.":["Las miniaturas no se recortan."],"Thumbnails are cropped to align.":["Las miniaturas se recortan alineadas."],"Media Library":["Biblioteca de medios"],Advanced:["Avanzado"],"Add item":[],"Reset the template":["Restablecer la plantilla"],"Keep it as is":["Mantenerla como est\xe1"],"The content of your post doesn\u2019t match the template assigned to your post type.":["El contenido de tu entrada no se ajusta a la plantilla asignada a tu tipo de contenido."],"Resetting the template may result in loss of content, do you want to continue?":["Restablecer la plantilla puede resultar en p\xe9rdida de contenido, \xbfquieres continuar?"],"Document Statistics":["Estad\xedsticas del documento"],"is now scheduled. It will go live on":["est\xe1 ahora programada. Estar\xe1 disponible el"],Scheduled:["Programada"],"Scheduling\u2026":["Programando\u2026"],"Code editor selected":["Editor de c\xf3digo seleccionado"],"Visual editor selected":["Editor visual seleccionado"],Plugins:["Plugins"],"Custom Size":["Tama\xf1o personalizado"],"Layout Elements":["Elementos de dise\xf1o"],"term\x04%s removed":["%s borrada"],"term\x04%s added":["%s a\xf1adida"],"imperative verb\x04Preview":["Vista previa"],"Block deleted.":["Bloque borrado."],"Block updated.":["Bloque actualizado."],"Block created.":["Bloque creado."],"Trashing failed":["Fallo al enviar a la papelera"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["Ri new cambios sin guardar. Si sigues se perder\xe1n."],"Document Outline":["Esquema del documento"],Paragraphs:["P\xe1rrafos"],Headings:["Encabezados"],Words:["Palabras"],"Content structure":[],Public:["P\xfablica"],"Protected with a password you choose. Only those with the password can view this post.":["Protegida con una contrase\xf1a que t\xfa elijas. Solo los que tengan la contrase\xf1a pueden ver esta entrada."],"Password Protected":["Protegida por contrase\xf1a"],"Only visible to site admins and editors.":["Solo visible para administradores y editores del sitio."],Private:["Privada"],"Visible to everyone.":["Visible por todos"],"Post Visibility":["Visibilidad de la entrada"],"Would you like to privately publish this post now?":["\xbfTe gustar\xeda publicar ahora en privado esta entrada?"],"Use a secure password":["Usa una contrase\xf1a segura"],"Create password":["Crear contrase\xf1a"],"Move to Trash":[],"Parent Term":["T\xe9rmino superior"],"Parent Category":["Categor\xeda superior"],"Add new term":["A\xf1adir nuevo t\xe9rmino"],"Add new category":["A\xf1adir nueva categor\xeda"],Term:["T\xe9rmino"],Tag:["Etiqueta"],"Add New Term":["A\xf1adir nuevo t\xe9rmino"],"Add New Tag":["A\xf1adir nueva etiqueta"],"Switch to Draft":["Cambiar a borrador"],"Are you sure you want to unpublish this post?":["\xbfEst\xe1s seguro de querer anular la publicaci\xf3n de esta entrada?"],Immediately:["Inmediatamente"],"Save Draft":["Guardar borrador"],Saving:["Guardando"],"Publish:":["Publicar: "],"Visibility:":["Visibilidad:"],"Are you ready to publish?":["\xbfEst\xe1s listo para publicar?"],"Copy Link":["Copiar enlace"],"What\u2019s next?":["\xbfY ahora qu\xe9?"],"is now live.":["est\xe1 ahora visible."],Published:["Publicada"],Schedule:["Programar"],Update:["Actualizar"],"Submit for Review":["Enviar a revisi\xf3n"],"Updating\u2026":["Actualizando..."],"Publishing\u2026":["Publicando..."],"Allow Pingbacks & Trackbacks":["Permitir pingbacks y trackbacks"],"Permalink:":["Enlace permanente:"],"Pending Review":["Pendiente de revisi\xf3n"],"%d Revision":["%d revisi\xf3n","%d revisiones"],"Suggestion:":["Sugerencia:"],"Post Format":["Formato de entrada:"],Chat:["Chat"],Status:["Estado"],Standard:["Est\xe1ndar"],Aside:["Minientrada"],"Set Featured Image":[],"Learn more about manual excerpts":["Aprende m\xe1s sobre extractos manuales"],"Write an excerpt (optional)":["Escribe un extracto (opcional)"],"Allow Comments":["Permitir comentarios"],"Template:":["Plantilla:"],"no parent":["sin superior"],"no title":["sin t\xedtulo"],Order:["Orden"],"No blocks found.":["No se han encontrado bloques."],"%d result found.":["Se encontr\xf3 %d resultado.","Se encontraron %d resultados."],Saved:["Guardado"],Embeds:["Incrustados"],Blocks:["Bloques"],"Search for a block":["Buscar un bloque"],"Add block":["A\xf1adir bloque"],"Add %s":["A\xf1adir %s"],"Copy Error":["Error al copiar"],"Copy Post Text":["Copiar texto de la entrada"],"Attempt Recovery":["Intentar recuperaci\xf3n"],"The editor has encountered an unexpected error.":["El editor ha encontrado un error inesperado."],Undo:["Deshacer"],Redo:["Rehacer"],"(Multiple H1 headings are not recommended)":["(No se recomiendan varios H1)"],"(Your theme may already use a H1 for the post title)":["(Tu tema puede que ya use un H1 para el t\xedtulo de la entrada)"],"(Incorrect heading level)":["(Nivel de encabezado incorrecto)"],"(Empty heading)":["(Encabezado vac\xedo)"],"Block Styles":["Estilos de bloque"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\xbfEst\xe1s seguro de querer borrar este bloque compartido?\nSe borrar\xe1 permanentemente de todas las entradas y p\xe1ginas que lo usen."],"Convert to Regular Block":["Convertir a bloque normal"],"More options":[],"Edit visually":["Editar visualmente"],Duplicate:["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Los bloques no se pueden mover hacia abajo porque ya est\xe1n en el fondo"],"Blocks cannot be moved up as they are already at the top":["Los bloques no se pueden mover arriba porque ya est\xe1n al principio"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["El bloque %s es el \xfanico bloque, y no puede moverse"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Convertir en bloques"],"Block: %s":["Bloque: %s"],"This block has encountered an error and cannot be previewed.":["Este bloque ha encontrado un error y no puede previsualizarse."],"No block selected.":["Ning\xfan bloque seleccionado."],"Transform into:":["Transformar a:"],Remove:["Quitar"],"Find original":["Encontrar el original"],"Copy All Content":["Copiar todo el contenido"],"Copied!":["\xa1Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Ahora hay ajustes adicionales disponibles en la barra de ajustes del editor de bloques"],Visibility:["Visibilidad"],"Status & Visibility":["Estado y visibilidad"],"Page Attributes":["Atributos de p\xe1gina"],Block:["Bloque","%d bloques"],Document:["Documento"],"Featured Image":["Imagen destacada"],"Close settings":["Cerrar ajustes"],"Editor content":["Contenido del editor"],Tools:["Herramientas"],Editor:["Editor"],"Code Editor":["Editor de c\xf3digo"],"Visual Editor":["Editor visual"],"Editor top bar":["Barra superior del editor"],Settings:["Ajustes"],Reset:["Restablecer"],"Dismiss this notice":["Descargar este aviso"],"Item removed.":["Elemento eliminado."],"Item added.":["Elemento a\xf1adido."],"Drop files to upload":["Arrastra archivos para subirlos"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Ha ocurrido un error desconocido."],"No results.":["No hay resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontrado, utiliza las teclas arriba y abajo para navegar.","%d resultados encontrados, utiliza las teclas arriba y abajo para navegar."],"(no title)":["(sin t\xedtulo)"],URL:["URL"],Submit:["Enviar"],Close:["Cerrar"],"Insert link":[],"Edit link":[],Link:["Enlace"],Strikethrough:["Tachado"],Italic:["Cursiva"],Bold:["Negrita"],"Remove link":[],"Number of items":["N\xfamero de elementos"],All:["Todo"],Category:["Categor\xeda"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["De antiguas a nuevas"],"Newest to Oldest":["De nuevas a antiguas"],"Order by":["Ordenar por"],Select:["Elegir"],"Select or Upload Media":["Elige o sube medios"],Video:["V\xeddeo"],"Edit video":["Editar v\xeddeo"],"Write\u2026":["Escribe\u2026"],poetry:["poes\xeda"],Verse:["Verso"],"New Column":["Nueva columna"],"Delete Column":["Borrar columna"],"Add Column After":["A\xf1adir columna despu\xe9s"],"Add Column Before":["A\xf1adir columna antes"],"Delete Row":["Borrar fila"],"Add Row After":["A\xf1adir fila despu\xe9s"],"Add Row Before":["A\xf1adir fila antes"],"Edit table":[],Table:["Tabla"],"Write subheading\u2026":["Escribe el subt\xedtulo\u2026"],"Write shortcode here\u2026":["Escribe aqu\xed el shortcode\u2026"],Shortcode:["Shortcode"],divider:["separador"],"horizontal-line":["l\xednea-horizontal"],Separator:["Separador"],Quote:["Cita"],"Write citation\u2026":["Escribe la cita\u2026"],"Write quote\u2026":["Escribe la cita\u2026"],Pullquote:["Cita"],"Write preformatted text\u2026":["Escribe texto preformateado\u2026"],Preformatted:["Preformateado"],text:["texto"],Paragraph:["P\xe1rrafo"],"Font Size":["Tama\xf1o de fuente"],"Drop Cap":["Capitalizar"],"Text Settings":["Ajustes del texto"],"Read more":["Leer m\xe1s"],"Write list\u2026":["Escribe una lista\u2026"],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista con vi\xf1etas"],"Indent list item":["A\xf1adir sangr\xeda al elemento de la lista"],"Outdent list item":["Reducir sangr\xeda al elemento de la lista"],"Convert to ordered list":["Convertir a lista ordenada"],"Convert to unordered list":["Convertir a lista desordenada"],List:["Lista"],"recent posts":["entradas recientes"],"No posts found.":["No se han encontrado entradas."],"Latest Posts":["\xdaltimas entradas"],"Display post date":["Mostrar fecha de la entrada"],"Grid view":[],"List view":[],photo:["foto"],"Image Settings":["Ajustes de imagen"],Image:["Imagen"],Preview:["Vista previa"],embed:["incrustar"],"Custom HTML":["HTML personalizado"],subtitle:["subt\xedtulo"],title:["t\xedtulo"],Heading:["Encabezado"],"Write heading\u2026":["Escribe el encabezado\u2026"],"Heading %d":["Encabezado %d"],Level:["Nivel"],"Heading Settings":["Ajustes de encabezado"],photos:["fotos"],images:["im\xe1genes"],"Remove Image":["Quitar imagen"],None:["Ninguna"],"Media File":["Archivo multimedia"],"Attachment Page":["P\xe1gina de adjuntos"],"Crop Images":["Recortar im\xe1genes"],"Gallery Settings":["Ajustes de la galer\xeda"],Gallery:["Galer\xeda"],Classic:["Cl\xe1sico"],video:["v\xeddeo"],audio:["audio"],music:["m\xfasica"],image:["imagen"],blog:["blog"],post:["entrada"],"Embedded content from %s":["Contenido incrustado desde %s"],"Enter URL to embed here\u2026":["Introduce aqu\xed la URL a incrustar\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Incrustando\u2026"],"Write title\u2026":["Escribe el t\xedtulo\u2026"],"Fixed Background":["Fondo fijo"],"Edit image":["Editar imagen"],Columns:["Columnas"],Experiments:[],Code:["C\xf3digo"],"Write code\u2026":["Escribe c\xf3digo\u2026"],Categories:["Categor\xedas"],"Show Hierarchy":[],"Show post counts":["Mostrar contador de entradas"],"Categories Settings":["Ajustes de categor\xedas"],"Add text\u2026":["A\xf1ade texto\u2026"],Button:["Bot\xf3n"],Apply:["Aplicar"],"Text Color":["Color del texto"],"Background Color":["Color de fondo"],"Block has been deleted or is unavailable.":["El bloque se ha borrado o no est\xe1 disponible."],"Reusable Blocks":["Bloque reutilizable"],Cancel:["Cancelar"],Edit:["Editar"],"Edit audio":["Editar audio"],"Write caption\u2026":["Escribe la leyenda\u2026"],"Use URL":["Usar URL"],Audio:["Audio"],Upload:["Subir"],"Additional CSS Class(es)":[],"HTML Anchor":["Anclaje HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combinaci\xf3n de color puede ser dif\xedcil de leer para la gente. Trata de usar un color de fondo m\xe1s claro y/o un color de texto m\xe1s oscuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combinaci\xf3n de color puede ser dif\xedcil de leer para la gente. Trata de usar un color de fondo m\xe1s oscuro y/o un color de texto m\xe1s claro."],Clear:["Restablecer"],"Custom color picker":["Selector de color personalizado"],"Color: %s":["Color: %s"],"Full Width":[],"Wide Width":[],Widgets:["Widgets"],Formatting:["Formatos"],"Common Blocks":["Bloques comunes"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimiendo desde 1440. Este es el plugin en desarrollo del nuevo editor de bloques del n\xfacleo."],"Add title":["A\xf1adir t\xedtulo"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["Autor"],Slug:["Slug"],Discussion:["Comentarios"],"Custom Fields":["Campos personalizados"],Excerpt:["Extracto"],Publish:["Publicar"],Metadata:["Metadatos"],Save:["Guardar"],Documentation:["Documentaci\xf3n"],"Select Category":["Elige la categor\xeda"],"(Untitled)":["(sin t\xedtulo)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["El equipo de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["Hace %s"],"Block style name must be a string.":[]}},841,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":["\u062e\u06cc\u0644\u06cc \u0628\u0632\u0631\u06af"],"Block breadcrumb":[],"Site Title":["\u0639\u0646\u0648\u0627\u0646 \u0633\u0627\u06cc\u062a"],"Open Colors Selector":["\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0627\u0646\u062a\u062e\u0627\u0628\u06af\u0631 \u0631\u0646\u06af"],"Overlay Gradient":["\u0637\u06cc\u0641 \u0631\u0648\u06cc\u0647"],"Templates list":["\u0641\u0647\u0631\u0633\u062a \u0642\u0627\u0644\u0628 \u0647\u0627"],"Templates list navigation":["\u067e\u06cc\u0645\u0627\u06cc\u0634 \u0641\u0647\u0631\u0633\u062a \u0642\u0627\u0644\u0628 \u0647\u0627"],"Filter templates list":["\u0635\u0627\u0641\u06cc \u0641\u0647\u0631\u0633\u062a \u0642\u0627\u0644\u0628 \u0647\u0627"],"Uploaded to this template":["\u0628\u0627\u0631\u06af\u0632\u0627\u0631\u06cc \u062f\u0631 \u0627\u06cc\u0646 \u0642\u0627\u0644\u0628"],"Insert into template":["\u062f\u0631\u062c \u062f\u0631\u0648\u0646 \u0642\u0627\u0644\u0628"],"Template archives":["\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc \u0647\u0627\u06cc \u0642\u0627\u0644\u0628"],"No templates found in Trash.":["\u0647\u06cc\u0686 \u0642\u0627\u0644\u0628\u06cc \u062f\u0631\u0648\u0646 \u0632\u0628\u0627\u0644\u0647 \u062f\u0627\u0646 \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f."],"No templates found.":["\u0647\u06cc\u0686 \u0642\u0627\u0644\u0628\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f."],"Parent Template:":["\u0642\u0627\u0644\u0628 \u0645\u0627\u062f\u0631:"],"Search Templates":["\u062c\u0633\u062a\u062c\u0648\u06cc \u0642\u0627\u0644\u0628 \u0647\u0627"],"All Templates":["\u0647\u0645\u0647 \u0642\u0627\u0644\u0628 \u0647\u0627"],"View Template":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0642\u0627\u0644\u0628"],"Edit Template":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0642\u0627\u0644\u0628"],"New Template":["\u0642\u0627\u0644\u0628 \u062c\u062f\u06cc\u062f"],"Add New Template":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0642\u0627\u0644\u0628 \u062c\u062f\u06cc\u062f"],"Template\x04Add New":["\u0627\u0641\u0632\u0648\u062f\u0646 \u062c\u062f\u06cc\u062f"],"Admin Menu text\x04Templates":["\u0642\u0627\u0644\u0628 \u0647\u0627"],Template:["\u0642\u0627\u0644\u0628"],"No matching template found":["\u0647\u06cc\u0686 \u0642\u0627\u0644\u0628 \u0633\u0627\u0632\u06af\u0627\u0646\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f."],"Gradient: %s":["\u0637\u06cc\u0641: %s"],"Gradient code: %s":["\u06a9\u062f \u0637\u06cc\u0641: %s"],"All content copied.":["\u062a\u0645\u0627\u0645 \u0645\u062d\u062a\u0648\u0627 \u06a9\u067e\u06cc \u0634\u062f."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["\u0628\u0627\u0631\u06af\u0632\u0627\u0631\u06cc \u0631\u0633\u0627\u0646\u0647 \u0634\u06a9\u0633\u062a \u062e\u0648\u0631\u062f. \u0627\u06af\u0631 \u06cc\u06a9 \u0639\u06a9\u0633 \u06cc\u0627 \u062a\u0635\u0648\u06cc\u0631 \u0628\u0632\u0631\u06af \u0627\u0633\u062a\u060c \u0644\u0637\u0641\u0627 \u0645\u0642\u06cc\u0627\u0633 \u0622\u0646 \u0631\u0627 \u06a9\u0627\u0647\u0634 \u062f\u0627\u062f\u0647 \u0648 \u0645\u062c\u062f\u062f\u0627 \u062a\u0644\u0627\u0634 \u0646\u0645\u0627\u06cc\u06cc\u062f."],Gradient:["\u0637\u06cc\u0641"],"Gradient Presets":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634 \u0641\u0631\u0636 \u0637\u06cc\u0641"],"No Preview Available.":["\u067e\u06cc\u0634\u200c\u0646\u0645\u0627\u06cc\u0634\u06cc \u062f\u0631\u062f\u0633\u062a\u0631\u0633 \u0646\u06cc\u0633\u062a."],Midnight:["\u0646\u06cc\u0645\u0647 \u0634\u0628"],"Electric grass":["\u0686\u0645\u0646 \u06a9\u0647\u0631\u0628\u0627\u06cc\u06cc"],"Pale ocean":["\u0627\u0642\u06cc\u0627\u0646\u0648\u0633 \u06a9\u0645 \u0631\u0646\u06af"],"Luminous dusk":["\u063a\u0631\u0648\u0628 \u0646\u0648\u0631\u0627\u0646\u06cc"],"Blush bordeaux":[],"Blush light purple":["\u0628\u0641\u0646\u0634 \u0633\u0631\u062e \u0631\u0648\u0634\u0646"],"Cool to warm spectrum":["\u0637\u06cc\u0641 \u0633\u0631\u062f \u0628\u0647 \u06af\u0631\u0645"],"Very light gray to cyan bluish gray":["\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u0628\u0633\u06cc\u0627\u0631 \u0631\u0648\u0634\u0646 \u0628\u0647 \u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u0645\u0627\u06cc\u0644 \u0628\u0647 \u0622\u0628\u06cc"],"Luminous vivid orange to vivid red":["\u0646\u0627\u0631\u0646\u062c\u06cc \u0631\u0648\u0634\u0646 \u062f\u0631\u062e\u0634\u0627\u0646 \u0628\u0647 \u0642\u0631\u0645\u0632 \u0631\u0648\u0634\u0646"],"Luminous vivid amber to luminous vivid orange":["\u06a9\u0647\u0631\u0628\u0627\u06cc \u0631\u0648\u0634\u0646 \u062f\u0631\u062e\u0634\u0627\u0646 \u062a\u0627 \u0646\u0627\u0631\u0646\u062c\u06cc \u0631\u0648\u0634\u0646 \u062f\u0631\u062e\u0634\u0627\u0646"],"Light green cyan to vivid green cyan":["\u0633\u0628\u0632 \u0641\u06cc\u0631\u0648\u0632\u0647 \u0627\u06cc \u0628\u0647 \u0633\u0628\u0632 \u0631\u0648\u0634\u0646"],"Vivid cyan blue to vivid purple":["\u0622\u0628\u06cc \u0631\u0648\u0634\u0646 \u0641\u06cc\u0631\u0648\u0632\u0647 \u0627\u06cc \u0628\u0647 \u0628\u0646\u0641\u0634 \u0631\u0648\u0634\u0646"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["December 6, 2018"],"February 21, 2019":["February 21, 2019"],"May 7, 2019":["May 7, 2019"],"Release Date":["\u062a\u0627\u0631\u06cc\u062e \u0627\u0646\u062a\u0634\u0627\u0631"],"Jazz Musician":["Jazz Musician"],Version:["\u0646\u0633\u062e\u0647"],"Six.":["\u0634\u0634."],"Five.":["\u067e\u0646\u062c."],"Four.":["\u0686\u0647\u0627\u0631."],"Three.":["\u0633\u0647."],"Two.":["\u062f\u0648."],"One.":["\u06cc\u06a9."],"One of the hardest things to do in technology is disrupt yourself.":["\u06cc\u06a9\u06cc \u0627\u0632 \u0633\u062e\u062a \u062a\u0631\u06cc\u0646 \u0686\u06cc\u0632\u0647\u0627 \u0628\u0631\u0627\u06cc \u0627\u0646\u062c\u0627\u0645 \u062f\u0631 \u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc \u062a\u0637\u0628\u06cc\u0642 \u062f\u0627\u062f\u0646 \u062e\u0648\u062f \u0627\u0633\u062a."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["\u0647\u0645\u0647 \u0686\u06cc\u0632 \u062f\u0631 \u0627\u0637\u0631\u0627\u0641 \u0627\u06cc\u0646 \u06cc\u06a9 \u0635\u0641\u062d\u0647 \u0646\u0645\u0627\u06cc\u0634 \u062a\u0642\u0631\u06cc\u0628\u0627\u064b \u0633\u06cc\u0627\u0647 \u0627\u0633\u062a. \u062d\u0627\u0644\u060c \u0628\u0639\u0646\u0648\u0627\u0646 \u062d\u0631\u06a9\u062a \u0622\u0647\u0633\u062a\u0647 \u062f\u0648\u0631\u0628\u06cc\u0646 \u0628\u0647 \u0633\u0645\u062a \u067e\u0646\u062c\u0631\u0647 \u06a9\u0647 \u062a\u0642\u0631\u06cc\u0628\u0627 \u06cc\u06a9 \u06a9\u0627\u0631\u062a \u067e\u0633\u062a\u0627\u0644 \u062f\u0631 \u0642\u0627\u0628 \u0627\u0633\u062a\u060c \u0633\u0627\u06cc\u0631 \u0634\u06cc\u0648\u0647 \u0647\u0627 \u0638\u0627\u0647\u0631 \u0645\u06cc \u0634\u0648\u062f."],"Window, very small in the distance, illuminated.":["\u067e\u0646\u062c\u0631\u0647 \u062f\u0631 \u0641\u0627\u0635\u0644\u0647 \u06a9\u0645\u06cc \u0645\u06cc \u062f\u0631\u062e\u0634\u062f."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["\u0686\u06a9\u0627\u0648\u06a9
\u0628\u06cc \u0635\u062f\u0627
\u0632\u0646\u062f\u06af\u06cc \u0627\u0634 \u0631\u0627 \u0628\u062f\u0633\u062a \u0645\u06cc \u0622\u0648\u0631\u062f."],"Welcome to the wonderful world of blocks\u2026":["\u0628\u0647 \u062f\u0646\u06cc\u0627\u06cc \u0647\u06cc\u062c\u0627\u0646 \u0627\u0646\u06af\u06cc\u0632 \u0628\u0644\u0648\u06a9 \u0647\u0627 \u062e\u0648\u0634 \u0622\u0645\u062f\u06cc\u062f..."],"Snow Patrol":["\u06af\u0634\u062a \u0628\u0631\u0641\u06cc"],Dimensions:["\u0627\u0628\u0639\u0627\u062f"],"Minimum height in pixels":["\u062d\u062f\u0627\u0642\u0644 \u0627\u0631\u062a\u0641\u0627\u0639 (\u067e\u06cc\u06a9\u0633\u0644)"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["\u062f\u0639\u0648\u062a \u0628\u0647 \u0627\u0642\u062f\u0627\u0645"],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":["\u067e\u06cc\u0645\u0627\u06cc\u0634 \u0628\u0644\u0627\u06a9 \u0647\u0627"],"Enable Full Site Editing":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0633\u0627\u06cc\u062a \u06a9\u0627\u0645\u0644"],"Full Site Editing":["\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u06a9\u0627\u0645\u0644 \u0633\u0627\u06cc\u062a"],"Templates to include in your theme.":["\u0642\u0627\u0644\u0628\u200c\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u067e\u0648\u0633\u062a\u0647\u0654 \u0634\u0645\u0627 \u062f\u0631 \u0628\u0631 \u062e\u0648\u0627\u0647\u062f \u06af\u0631\u0641\u062a."],Templates:["\u0642\u0627\u0644\u0628 \u0647\u0627"],"Inserter Help Panel":[],"Pre-publish Checks":["\u0628\u0631\u0631\u0633\u06cc \u0642\u0628\u0644 \u0627\u0632 \u0627\u0646\u062a\u0634\u0627\u0631"],"Please contact your site administrator to install new blocks.":["\u0644\u0637\u0641\u0627 \u0628\u0627 \u0645\u062f\u06cc\u0631 \u0633\u0627\u06cc\u062a \u062c\u0647\u062a \u0646\u0635\u0628 \u0628\u0644\u0627\u06a9 \u0647\u0627\u06cc \u062c\u062f\u06cc\u062f \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["\u0628\u0644\u0648\u06a9\u06cc \u062f\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0634\u0645\u0627 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f. \u0644\u0637\u0641\u0627 \u0628\u0627 \u0645\u062f\u06cc\u0631 \u0633\u0627\u06cc\u062a \u062e\u0648\u062f \u0628\u0631\u0627\u06cc \u0646\u0635\u0628 \u0628\u0644\u0648\u06a9 \u0647\u0627\u06cc \u062c\u062f\u06cc\u062f \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f."],"No blocks found in your library.":["\u0647\u06cc\u0686 \u0628\u0644\u0627\u06a9\u06cc \u062f\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0634\u0645\u0627 \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f."],"No blocks found in your library. These blocks can be downloaded and installed:":["\u0628\u0644\u0648\u06a9\u06cc \u062f\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0634\u0645\u0627 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f. \u0627\u06cc\u0646 \u0628\u0644\u0648\u06a9 \u0647\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u0646\u062f \u062f\u0627\u0646\u0644\u0648\u062f \u0648 \u0646\u0635\u0628 \u0634\u0648\u0646\u062f."],"No blocks found in your library. We did find %d block available for download.":["\u0628\u0644\u0648\u06a9\u06cc \u062f\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0634\u0645\u0627 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f. \u0645\u0627 %d \u0628\u0644\u0648\u06a9 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0628\u0631\u0627\u06cc \u062f\u0627\u0646\u0644\u0648\u062f \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u06cc\u0645."],"Block previews can\u2019t load.":["\u067e\u06cc\u0634 \u0646\u0645\u0627\u06cc\u0634 \u0628\u0644\u0648\u06a9 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0628\u0627\u0631\u06af\u0632\u0627\u0631\u06cc \u0634\u0648\u062f."],Retry:["\u062a\u0644\u0627\u0634 \u0645\u062c\u062f\u062f"],"Block previews can't install.":["\u067e\u06cc\u0634\u200c\u0646\u0645\u0627\u06cc\u0634 \u0628\u0644\u0648\u06a9 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0646\u0635\u0628 \u0634\u0648\u062f."],"Updated %s":["%s \u0628\u0647 \u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0634\u062f."],"%d active installation":["%d \u0646\u0635\u0628 \u0641\u0639\u0627\u0644"],"This author has %d block, with an average rating of %d.":["\u0627\u06cc\u0646 \u0646\u0648\u06cc\u0633\u0646\u062f\u0647 %d \u0628\u0644\u0648\u06a9 \u0628\u0627 \u0645\u06cc\u0627\u0646\u06af\u06cc\u0646 \u0627\u0645\u062a\u06cc\u0627\u0632 %d \u062f\u0627\u0631\u062f."],"Authored by %s":["\u0646\u0648\u0634\u062a\u0647 \u0634\u062f\u0647 \u062a\u0648\u0633\u0637 %s"],Add:["\u0627\u0641\u0632\u0648\u062f\u0646"],"%d total rating":[],"%s out of 5 stars":["%s \u0627\u0632 5 \u0633\u062a\u0627\u0631\u0647"],"Enter Address":["\u062f\u0631\u062c \u0646\u0634\u0627\u0646\u06cc"],"Pill Shape":["\u0634\u06a9\u0644 \u0642\u0631\u0635"],"Logos Only":["\u0641\u0642\u0637 \u0622\u0631\u0645 \u0647\u0627"],"Create a block of links to your social media or external sites":["\u0633\u0627\u062e\u062a \u06cc\u06a9 \u0628\u0644\u0648\u06a9 \u0627\u0632 \u067e\u06cc\u0648\u0646\u062f\u0647\u0627 \u0628\u0647 \u0634\u0628\u06a9\u0647 \u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u062e\u0648\u062f \u06cc\u06a9 \u0633\u0627\u06cc\u062a \u0647\u0627\u06cc \u062f\u06cc\u06af\u0631."],"Social links":["\u067e\u06cc\u0648\u0646\u062f\u0647\u0627\u06cc \u0634\u0628\u06a9\u0647 \u0627\u062c\u062a\u0645\u0627\u0639\u06cc"],"Open block navigator":["\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u067e\u06cc\u0645\u0627\u06cc\u0634\u06af\u0631 \u0628\u0644\u0648\u06a9 \u0647\u0627"],"Attachment page":["\u0628\u0631\u06af\u0647 \u067e\u06cc\u0648\u0633\u062a\u200c\u0647\u0627"],Fill:["\u067e\u0631 \u06a9\u0631\u062f\u0646"],"Link rel":["\u0627\u0631\u062a\u0628\u0627\u0637 \u067e\u06cc\u0648\u0646\u062f"],"Border Radius":["\u0634\u0639\u0627\u0639 \u0644\u0628\u0647"],"Write gallery caption\u2026":["\u0639\u0646\u0648\u0627\u0646 \u06af\u0627\u0644\u0631\u06cc \u0631\u0627 \u0628\u0646\u0648\u06cc\u0633\u06cc\u062f..."],"Content Blocks":["\u0628\u0644\u0648\u06a9 \u0647\u0627\u06cc \u0645\u062d\u062a\u0648\u0627"],"Restore the backup":["\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u06cc \u0646\u0633\u062e\u0647 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646"],"The backup of this post in your browser is different from the version below.":["\u0646\u0633\u062e\u0647 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646 \u0627\u06cc\u0646 \u0646\u0648\u0634\u062a\u0647 \u062f\u0631 \u0645\u0631\u0648\u0631\u06af\u0631 \u0634\u0645\u0627 \u0628\u0627 \u0646\u0633\u062e\u0647 \u0632\u06cc\u0631 \u0645\u062a\u0641\u0627\u0648\u062a \u0627\u0633\u062a."],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":["\u0645\u062a\u0623\u0633\u0641\u0645! \u0634\u0645\u0627 \u0645\u062c\u0627\u0632 \u0628\u0647 \u0646\u0635\u0628 \u0628\u0644\u0648\u06a9 \u0646\u0645\u06cc \u0628\u0627\u0634\u06cc\u062f."],"%1$d block is disabled.":["%1$d \u0628\u0644\u0648\u06a9 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f."],"Reverse List Numbering":[],"Start Value":["\u0645\u0642\u062f\u0627\u0631 \u0634\u0631\u0648\u0639"],"Ordered List Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0641\u0647\u0631\u0633\u062a \u0645\u0631\u062a\u0628 \u0634\u062f\u0647"],"Clear Media":["\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0631\u0633\u0627\u0646\u0647"],"block style\x04Circle Mask":[],"Default Style":["\u0633\u0628\u06a9 \u067e\u06cc\u0634\u200c\u0641\u0631\u0636"],"Not set":["\u062a\u0646\u0638\u06cc\u0645 \u0646\u0634\u062f\u0647"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["\u062f\u0631\u0648\u0646 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u06af\u0631\u062f\u0634 \u06a9\u0646\u06cc\u062f \u062a\u0627 \u0628\u0628\u06cc\u0646\u06cc\u062f \u0647\u0631 \u0628\u0644\u0648\u06a9 \u0686\u0647 \u06a9\u0627\u0631\u06cc \u0627\u0646\u062c\u0627\u0645 \u0645\u06cc \u062f\u0647\u062f."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["\u0628\u0644\u0648\u06a9 \u0647\u0627\u06cc \u0645\u062e\u062a\u0644\u0641\u06cc \u0628\u0631\u0627\u06cc \u062a\u0645\u0627\u0645 \u0627\u0646\u0648\u0627\u0639 \u0645\u062d\u062a\u0648\u0627 \u0645\u0648\u062c\u0648\u062f \u0647\u0633\u062a\u0646\u062f: \u0645\u062a\u0646\u060c \u0639\u0646\u0648\u0627\u0646\u060c \u062a\u0635\u0648\u06cc\u0631\u060c \u0644\u06cc\u0633\u062a\u060c \u0648\u06cc\u062f\u0626\u0648\u060c \u062c\u062f\u0648\u0644 \u0648 \u0628\u0633\u06cc\u0627\u0631\u06cc \u0645\u0648\u0627\u0631\u062f \u062f\u06cc\u06af\u0631 \u0631\u0627 \u062f\u0631\u062c \u06a9\u0646\u06cc\u062f."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["\u0628\u0647 \u062f\u0646\u06cc\u0627\u06cc \u0647\u06cc\u062c\u0627\u0646 \u0627\u0646\u06af\u06cc\u0632 \u0628\u0644\u0648\u06a9 \u0647\u0627 \u062e\u0648\u0634 \u0622\u0645\u062f\u06cc\u062f! \u0628\u0644\u0648\u06a9 \u0647\u0627 \u0627\u0633\u0627\u0633 \u062a\u0645\u0627\u0645 \u0645\u062d\u062a\u0648\u0627\u06cc \u062f\u0631\u0648\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0647\u0633\u062a\u0646\u062f."],"Version of the content block format used by the object.":["\u0646\u0633\u062e\u0647 \u0641\u0631\u0645\u062a \u0628\u0644\u0648\u06a9 \u0645\u062d\u062a\u0648\u0627\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647 \u062a\u0648\u0633\u0637 \u0634\u06cc\u0626."],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":["\u062a\u063a\u06cc\u06cc\u0631 \u062a\u0631\u0627\u0632 \u0633\u062a\u0648\u0646"],"Align Column Right":["\u0631\u0627\u0633\u062a \u0686\u06cc\u0646 \u06a9\u0631\u062f\u0646 \u0633\u062a\u0648\u0646"],"Align Column Center":["\u0648\u0633\u0637 \u0686\u06cc\u0646 \u06a9\u0631\u062f\u0646 \u0633\u062a\u0648\u0646"],"Align Column Left":["\u0686\u067e \u0686\u06cc\u0646 \u06a9\u0631\u062f\u0646 \u0633\u062a\u0648\u0646"],Color:["\u0631\u0646\u06af"],"Vivid purple":["\u0628\u0646\u0641\u0634 \u0631\u0648\u0634\u0646"],"Disable & Reload":["\u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0648 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0645\u062c\u062f\u062f"],"Enable & Reload":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0648 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0645\u062c\u062f\u062f"],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u062f"],"Experiments Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0631\u0631\u0633\u06cc"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["\u06af\u0648\u062a\u0646\u0628\u0631\u06af \u0627\u0645\u06a9\u0627\u0646\u0627\u062a \u0622\u0632\u0645\u0627\u06cc\u0634\u06cc \u0627\u06cc \u062f\u0627\u0631\u062f \u06a9\u0647 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0622\u0646\u0647\u0627 \u0631\u0627 \u0631\u0648\u0634\u0646 \u0646\u0645\u0627\u06cc\u06cc\u062f. \u062a\u0646\u0647\u0627 \u06a9\u0627\u0641\u06cc\u0633\u062a \u0622\u0646\u0686\u0647 \u0631\u0627 \u062a\u0645\u0627\u06cc\u0644 \u062f\u0627\u0631\u06cc\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0645\u0627\u06cc\u06cc\u062f. \u0627\u06cc\u0646 \u0627\u0645\u06a9\u0627\u0646\u0627\u062a \u0627\u062d\u062a\u0645\u0627\u0644 \u062a\u063a\u06cc\u06cc\u0631 \u062f\u0627\u0631\u0646\u062f\u061b \u0644\u0630\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0622\u0646\u0647\u0627 \u062f\u0631 \u0645\u062d\u0635\u0648\u0644 \u0628\u0647 \u0635\u0644\u0627\u062d \u0646\u06cc\u0633\u062a."],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":["\u0622\u0632\u0645\u0627\u06cc\u0634 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a"],"Block name name must be a string.":[],Custom:["\u0633\u0641\u0627\u0631\u0633\u06cc"],Draft:["\u067e\u06cc\u0634\u200c\u0646\u0648\u06cc\u0633"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["\u0628\u0644\u0648\u06a9 \"%1$s\" \u0634\u0627\u0645\u0644 \u0627\u0633\u062a\u0627\u06cc\u0644\u06cc \u0628\u0647 \u0646\u0627\u0645 \"%2$s.\" \u0646\u06cc\u0633\u062a."],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:["\u0646\u0627\u062f\u06cc\u062f\u0647 \u0628\u06af\u06cc\u0631"],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":["\u0627\u06cc\u0646 \u0686\u06cc\u0633\u062a\u061f"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["\u0628\u0647 \u0645\u0648\u062a\u0648\u0631\u0647\u0627\u06cc \u062c\u0633\u062a\u062c\u0648 \u0627\u062c\u0627\u0632\u0647 \u062f\u0646\u0628\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0627\u06cc\u0646 \u067e\u06cc\u0648\u0646\u062f \u0631\u0627 \u0646\u062f\u0647."],"Provide more context about where the link goes.":[],"Title Attribute":["\u0648\u06cc\u0698\u06af\u06cc \u0639\u0646\u0648\u0627\u0646"],"SEO Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0626\u0648"],Description:["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a"],"Open in new tab":["\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u062f\u0631 \u0632\u0628\u0627\u0646\u0647 \u062c\u062f\u06cc\u062f"],links:["\u0644\u06cc\u0646\u06a9 \u0647\u0627"],navigation:["\u0631\u0627\u0647\u0628\u0631\u06cc"],menu:["\u0641\u0647\u0631\u0633\u062a"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["\u0628\u0627\u0631\u06af\u0632\u0627\u0631\u06cc \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u06cc\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u0627\u0632 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0631\u0633\u0627\u0646\u0647."],"Learn more about embeds":["\u062f\u0631\u0628\u0627\u0631\u0647 \u062c\u0627\u0633\u0627\u0632\u06cc \u0647\u0627 \u0628\u06cc\u0634\u062a\u0631 \u0628\u062f\u0627\u0646\u06cc\u062f."],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["\u067e\u06cc\u0648\u0646\u062f\u06cc \u0631\u0627 \u06a9\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u062f\u0631 \u0633\u0627\u06cc\u062a \u0634\u0645\u0627 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0634\u0648\u062f\u060c \u062f\u0631\u0648\u0646 \u0645\u062d\u062a\u0648\u0627 \u0628\u0686\u0633\u0628\u0627\u0646\u06cc\u062f."],"Upload an image or video file, or pick one from your media library.":["\u0628\u0627\u0631\u06af\u0632\u0627\u0631\u06cc \u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 \u06cc\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u0627\u0632 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0631\u0633\u0627\u0646\u0647."],"Three columns; wide center column":["\u0633\u0647 \u0633\u062a\u0648\u0646\u061b \u0633\u062a\u0648\u0646 \u0648\u0633\u0637 \u0639\u0631\u06cc\u0636"],"Three columns; equal split":["\u0633\u0647 \u0633\u062a\u0648\u0646\u061b \u0627\u0646\u062f\u0627\u0632\u0647 \u0645\u0633\u0627\u0648\u06cc"],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":["\u062f\u0648 \u0633\u062a\u0648\u0646\u061b \u0627\u0646\u062f\u0627\u0632\u0647 \u0645\u0633\u0627\u0648\u06cc"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":["\u06af\u0632\u06cc\u0646\u0647 \u0647\u0627 \u0648 \u0627\u0628\u0632\u0627\u0631\u0647\u0627\u06cc \u0628\u06cc\u0634\u062a\u0631"],"Create Table":["\u0627\u06cc\u062c\u0627\u062f \u062c\u062f\u0648\u0644"],"Insert a table for sharing data.":["\u0628\u0631\u0627\u06cc \u0628\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u06af\u0630\u0627\u0631\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062c\u062f\u0648\u0644 \u062f\u0631\u062c \u0646\u0645\u0627\u06cc\u06cc\u062f."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":["\u06af\u0631\u0648\u0647"],"Separate with commas or the Enter key.":["\u062c\u062f\u0627 \u06a9\u0631\u062f\u0646 \u0628\u0627 \u06a9\u0627\u0645\u0627 \u06cc\u0627 \u06a9\u0644\u06cc\u062f Enter."],"Separate with commas, spaces, or the Enter key.":["\u062c\u062f\u0627 \u06a9\u0631\u062f\u0646 \u0628\u0627 \u06a9\u0627\u0645\u0627\u060c \u06a9\u0644\u06cc\u062f \u0641\u0627\u0635\u0644\u0647 (space) \u06cc\u0627 \u0648\u0631\u0648\u062f (Enter)."],"Separate multiple classes with spaces.":["\u06a9\u0644\u0627\u0633\u200c\u0647\u0627\u06cc \u0645\u062a\u0639\u062f\u062f \u0631\u0627 \u0628\u0627 \u0641\u0627\u0635\u0644\u0647 (space) \u062c\u062f\u0627 \u06a9\u0646\u06cc\u062f."],"Move image forward":["\u0627\u0646\u062a\u0642\u0627\u0644 \u062a\u0635\u0648\u06cc\u0631 \u0628\u0647 \u062c\u0644\u0648"],"Move image backward":["\u0627\u0646\u062a\u0642\u0627\u0644 \u062a\u0635\u0648\u06cc\u0631 \u0628\u0647 \u0639\u0642\u0628"],"Sorry, you are not allowed to edit sidebars.":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634\u060c \u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647\u200c\u06cc \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0633\u062a\u0648\u0646\u200c\u06a9\u0646\u0627\u0631\u06cc \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f."],"Sorry, you are not allowed to read sidebars.":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634\u060c \u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647\u200c\u06cc \u062e\u0648\u0627\u0646\u062f\u0646 \u0633\u062a\u0648\u0646\u200c\u06a9\u0646\u0627\u0631\u06cc \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f."],"The sidebar\u2019s ID.":["\u0634\u0646\u0627\u0633\u0647 \u0646\u0648\u0627\u0631 \u06a9\u0646\u0627\u0631\u06cc."],"Displays a set of blocks":["\u0645\u062c\u0645\u0648\u0639\u0647\u200c\u0627\u06cc \u0627\u0632 \u0628\u0644\u0648\u06a9\u200c\u0647\u0627 \u0631\u0627 \u0646\u0645\u0627\u06cc\u0634 \u0645\u06cc \u062f\u0647\u062f"],"Blocks Area":["\u0646\u0627\u062d\u06cc\u0647 \u0628\u0644\u0648\u06a9\u200c\u0647\u0627"],"Block rendered as empty.":["\u0628\u0644\u0648\u06a9 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u062e\u0627\u0644\u06cc \u0627\u0631\u0627\u0626\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a."],"Inline Code":["\u06a9\u062f \u062f\u0631\u0648\u0646\u200c\u062e\u0637\u06cc"],"Note: Autoplaying videos may cause usability issues for some visitors.":["\u0646\u06a9\u062a\u0647: \u067e\u062e\u0634 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0648\u06cc\u062f\u0626\u0648\u0647\u0627 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0628\u0631\u0627\u06cc \u0628\u0631\u062e\u06cc \u0628\u0627\u0632\u062f\u06cc\u062f\u06a9\u0646\u0646\u062f\u06af\u0627\u0646 \u0645\u0634\u06a9\u0644\u0627\u062a \u06a9\u0627\u0631\u0628\u0631\u06cc \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u062f."],"Footer section":["\u0628\u062e\u0634 \u067e\u0627\u0646\u0648\u0634\u062a"],"Header section":["\u0628\u062e\u0634 \u0633\u0631\u0646\u0648\u0634\u062a"],"Sorting and Filtering":["\u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0648 \u0635\u0627\u0641\u06cc \u06a9\u0631\u062f\u0646"],"Post Meta Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0646\u0648\u0634\u062a\u0647"],"Post Content":["\u0645\u062d\u062a\u0648\u0627\u06cc \u0646\u0648\u0634\u062a\u0647"],"Post Content Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0645\u062d\u062a\u0648\u0627\u06cc \u0646\u0648\u0634\u062a\u0647"],"Percentage width":["\u062f\u0631\u0635\u062f \u0639\u0631\u0636"],"Column Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u062a\u0648\u0646"],"Note: Autoplaying audio may cause usability issues for some visitors.":["\u0646\u06a9\u062a\u0647: \u067e\u062e\u0634 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0635\u062f\u0627\u0647\u0627 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0628\u0631\u0627\u06cc \u0628\u0631\u062e\u06cc \u0628\u0627\u0632\u062f\u06cc\u062f\u06a9\u0646\u0646\u062f\u06af\u0627\u0646 \u0645\u0634\u06a9\u0644\u0627\u062a \u06a9\u0627\u0631\u0628\u0631\u06cc \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u062f."],"Block area updated.":["\u0646\u0627\u062d\u06cc\u0647 \u0628\u0644\u0648\u06a9 \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0634\u062f."],"Block area scheduled.":["\u0646\u0627\u062d\u06cc\u0647 \u0628\u0644\u0648\u06a9 \u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc \u0634\u062f."],"Block area published.":["\u0646\u0627\u062d\u06cc\u0647 \u0628\u0644\u0648\u06a9 \u0645\u0646\u062a\u0634\u0631 \u0634\u062f."],"Block areas list":["\u0641\u0647\u0631\u0633\u062a \u0646\u0648\u0627\u062d\u06cc \u0628\u0644\u0648\u06a9"],"Block areas list navigation":["\u0641\u0647\u0631\u0633\u062a \u0631\u0627\u0647\u0628\u0631\u06cc \u0646\u0648\u0627\u062d\u06cc \u0628\u0644\u0648\u06a9"],"Filter block areas list":["\u0635\u0627\u0641\u06cc \u0644\u06cc\u0633\u062a \u0645\u0646\u0627\u0637\u0642 \u0628\u0644\u0648\u06a9"],"No block area found.":["\u0647\u06cc\u0686 \u0645\u0646\u0637\u0642\u0647 \u0628\u0644\u0648\u06a9\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f."],"Search Block Areas":["\u0645\u0646\u0627\u0637\u0642 \u0628\u0644\u0648\u06a9 \u062c\u0633\u062a\u062c\u0648"],"All Block Areas":["\u062a\u0645\u0627\u0645\u06cc \u0645\u0646\u0627\u0637\u0642 \u0628\u0644\u0648\u06a9"],"View Block Area":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0637\u0642\u0647 \u0628\u0644\u0648\u06a9"],"Edit Block Area":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0628\u0644\u0648\u06a9"],"New Block Area":["\u0628\u0644\u0648\u06a9 \u062c\u062f\u06cc\u062f"],"Add New Block Area":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0628\u0644\u0648\u06a9 \u062c\u062f\u06cc\u062f"],"admin menu\x04Block Areas":["\u0645\u0646\u0627\u0637\u0642 \u0628\u0644\u0648\u06a9"],"post type singular name\x04Block Area (Experimental)":["\u0645\u0646\u0637\u0642\u0647 \u0628\u0644\u0648\u06a9 (\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc)"],"post type general name\x04Block Area (Experimental)":["\u0645\u0646\u0637\u0642\u0647 \u0628\u0644\u0648\u06a9 (\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc)"],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":["\u0645\u062d\u062a\u0648\u0627\u06cc \u0635\u0641\u062d\u0647 \u0627\u0628\u0632\u0627\u0631\u06a9\u200c\u0647\u0627"],"Widgets advanced settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634\u0631\u0641\u062a\u0647 \u0627\u0628\u0632\u0627\u0631\u06a9\u200c\u0647\u0627"],"(experimental)":["(\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc)"],"Block Areas":["\u0646\u0648\u0627\u062d\u06cc \u0628\u0644\u0648\u06a9"],"Widgets screen top bar":[],"This color combination may be hard for people to read.":["\u0627\u06cc\u0646 \u062a\u0631\u06a9\u06cc\u0628 \u0631\u0646\u06af \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0628\u0631\u0627\u06cc \u0627\u0641\u0631\u0627\u062f \u0647\u0646\u06af\u0627\u0645 \u062e\u0648\u0627\u0646\u062f\u0646 \u0633\u062e\u062a \u0628\u0627\u0634\u062f."],"There is no poster image currently selected":["\u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0647\u06cc\u0686 \u062a\u0635\u0648\u06cc\u0631 \u067e\u06cc\u0634\u200c\u0646\u0645\u0627\u06cc\u0634\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a"],"The current poster image url is %s":["\u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u062a\u0635\u0648\u06cc\u0631 \u067e\u06cc\u0634\u200c\u0646\u0645\u0627\u06cc\u0634 \u0641\u0639\u0644\u06cc %s \u0627\u0633\u062a."],section:["\u0628\u062e\u0634"],row:["\u0631\u062f\u06cc\u0641"],wrapper:["\u0628\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc"],container:["\u062f\u0631\u0628\u0631\u062f\u0627\u0631\u0646\u062f\u0647"],"A block that groups other blocks.":["\u06cc\u06a9 \u0628\u0644\u0648\u06a9 \u06a9\u0647 \u0628\u0644\u0648\u06a9\u200c\u0647\u0627\u06cc \u062f\u06cc\u06af\u0631 \u0631\u0627 \u06af\u0631\u0648\u0647\u200c\u0628\u0646\u062f\u06cc \u0645\u06cc \u06a9\u0646\u062f."],Group:["\u06af\u0631\u0648\u0647"],"Crop image to fill entire column":["\u0628\u0631\u0634 \u062a\u0635\u0648\u06cc\u0631 \u0628\u0631\u0627\u06cc \u067e\u0631 \u06a9\u0631\u062f\u0646 \u062a\u0645\u0627\u0645 \u0633\u062a\u0648\u0646"],"Play inline":["\u0627\u062c\u0631\u0627 \u062e\u0637\u06cc"],"Leave empty if the image is purely decorative.":["\u0627\u06af\u0631 \u062a\u0635\u0648\u06cc\u0631 \u06a9\u0627\u0645\u0644\u0627\u064b \u062c\u0646\u0628\u0647 \u062a\u0632\u0626\u06cc\u0646\u06cc \u062f\u0627\u0631\u062f\u060c \u062e\u0627\u0644\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f."],"Describe the purpose of the image":["\u0647\u062f\u0641 \u0627\u06cc\u0646 \u062a\u0635\u0648\u06cc\u0631 \u0631\u0627 \u0634\u0631\u062d \u062f\u0647\u06cc\u062f"],"Add a block":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0628\u0644\u0648\u06a9"],"Block vertical alignment setting label\x04Change vertical alignment":["\u062a\u063a\u06cc\u06cc\u0631 \u062a\u0631\u0627\u0632 \u0639\u0645\u0648\u062f\u06cc"],"Block vertical alignment setting\x04Vertically Align Bottom":["\u062a\u0631\u0627\u0632 \u0639\u0645\u0648\u062f\u06cc \u067e\u0627\u06cc\u06cc\u0646"],"Block vertical alignment setting\x04Vertically Align Middle":["\u062a\u0631\u0627\u0632 \u0639\u0645\u0648\u062f\u06cc \u0645\u06cc\u0627\u0646\u0647"],"Replace Image":["\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u062a\u0635\u0648\u06cc\u0631"],"Block vertical alignment setting\x04Vertically Align Top":["\u062a\u0631\u0627\u0632 \u0639\u0645\u0648\u062f\u06cc \u0628\u0627\u0644\u0627"],"Display a legacy widget.":["\u0646\u0645\u0627\u06cc\u0634 \u06cc\u06a9 \u0627\u0628\u0632\u0627\u0631\u06a9 \u067e\u06cc\u0634\u06cc\u0646."],"Legacy Widget (Experimental)":["\u0627\u0628\u0632\u0627\u0631\u06a9 \u067e\u06cc\u0634\u06cc\u0646 (\u0622\u0632\u0645\u0627\u06cc\u0634\u06cc)"],"Change widget":["\u062a\u063a\u06cc\u06cc\u0631 \u0627\u0628\u0632\u0627\u0631\u06a9"],"Legacy Widget":["\u0627\u0628\u0632\u0627\u0631\u06a9 \u067e\u06cc\u0634\u06cc\u0646"],"You don't have permissions to use widgets on this site.":["\u0634\u0645\u0627 \u062f\u0633\u062a\u0631\u0633\u06cc \u0644\u0627\u0632\u0645 \u0628\u0631\u0627\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0628\u0632\u0627\u0631\u06a9\u200c\u0647\u0627 \u062f\u0631 \u0627\u06cc\u0646 \u0633\u0627\u06cc\u062a \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f."],"Select a legacy widget to display:":["\u06cc\u06a9 \u0627\u0628\u0632\u0627\u0631\u06a9 \u062c\u0647\u062a \u0646\u0645\u0627\u06cc\u0634 \u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0645\u0627\u06cc\u06cc\u062f:"],"There are no widgets available.":["\u0647\u06cc\u0686 \u0627\u0628\u0632\u0627\u0631\u06a9\u06cc \u062f\u0631\u062f\u0633\u062a\u0631\u0633 \u0646\u06cc\u0633\u062a."],"Change block type or style":["\u062a\u063a\u06cc\u06cc\u0631 \u0646\u0648\u0639 \u0628\u0644\u0648\u06a9 \u06cc\u0627 \u0627\u0633\u062a\u0627\u06cc\u0644"],"keyboard key\x04Space":["\u0641\u0627\u0635\u0644\u0647 (Space)"],"keyboard key\x04Backspace":["\u0641\u0627\u0635\u0644\u0647 \u0639\u0642\u0628 (Backspace)"],"More rich text controls":["\u06a9\u0646\u062a\u0631\u0644\u200c\u0647\u0627\u06cc \u0645\u062a\u0646 \u063a\u0646\u06cc \u0628\u06cc\u0634\u062a\u0631"],"Search Terms":["\u0648\u0627\u0698\u0647\u200c\u0647\u0627\u06cc \u062c\u0633\u062a\u062c\u0648"],"Exit the Editor":["\u062e\u0631\u0648\u062c \u0627\u0632 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631"],"Block Manager":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0628\u0644\u0648\u06a9"],"Class name of the widget.":["\u0646\u0627\u0645 \u06a9\u0644\u0627\u0633 \u0627\u0628\u0632\u0627\u0631\u06a9."],"Sorry, you are not allowed to access widgets on this site.":["\u0645\u062a\u0627\u0633\u0641\u0627\u0646\u0647 \u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647\u200c\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0627\u0628\u0632\u0627\u0631\u06a9\u200c\u0647\u0627\u06cc \u0627\u06cc\u0646 \u0633\u0627\u06cc\u062a \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f."],"Widgets (beta)":["\u0627\u0628\u0632\u0627\u0631\u06a9\u200c\u0647\u0627"],link:["\u067e\u06cc\u0648\u0646\u062f"],"Embedded content from %s can't be previewed in the editor.":["\u0627\u0645\u06a9\u0627\u0646 \u067e\u06cc\u0634\u200c\u0646\u0645\u0627\u06cc\u0634 \u0645\u062d\u062a\u0648\u0627\u06cc \u062c\u0627\u0633\u0627\u0632\u06cc \u0634\u062f\u0647 \u0627\u0632 %s \u062f\u0631 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f."],"Custom Color":["\u0631\u0646\u06af \u0633\u0641\u0627\u0631\u0634\u06cc"],"Prompt visitors to take action with a button-style link.":["\u0628\u0627\u0632\u062f\u06cc\u062f \u06a9\u0646\u0646\u062f\u06af\u0627\u0646 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u067e\u06cc\u0648\u0646\u062f \u0634\u0628\u06cc\u0647 \u062f\u06a9\u0645\u0647 \u0628\u0631\u0627\u06cc \u0627\u0642\u062f\u0627\u0645 \u0631\u0627\u0647\u0646\u0645\u0627\u06cc\u06cc \u06a9\u0646\u06cc\u062f."],"Stick to the top of the blog":["\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0628\u0647 \u0628\u0627\u0644\u0627\u06cc \u0628\u0644\u0627\u06af"],"Read about permalinks":["\u062e\u0648\u0627\u0646\u062f\u0646 \u062f\u0631\u0628\u0627\u0631\u0647 \u067e\u06cc\u0648\u0646\u062f\u0647\u0627\u06cc \u06cc\u06a9\u062a\u0627"],"The last part of the URL.":["\u0622\u062e\u0631\u06cc\u0646 \u0628\u062e\u0634 \u0627\u0632 \u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc."],"URL Slug":["\u0646\u0627\u0645\u06a9 \u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc"],"A cloud of your most used tags.":["\u0627\u0628\u0631\u06cc \u0627\u0632 \u0628\u0631\u0686\u0633\u0628\u200c\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0628\u06cc\u0634\u062a\u0631 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f\u0647\u200c\u0627\u06cc\u062f."],"Tag Cloud":["\u0627\u0628\u0631 \u0628\u0631\u0686\u0633\u0628"],Taxonomy:["\u0637\u0628\u0642\u0647\u200c\u0628\u0646\u062f\u06cc"],"Tag Cloud Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0627\u0628\u0631 \u0628\u0631\u0686\u0633\u0628"],"- Select -":["- \u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0645\u0627\u06cc\u06cc\u062f -"],Default:["\u067e\u06cc\u0634\u200c\u0641\u0631\u0636"],find:["\u06cc\u0627\u0641\u062a\u0646"],"Help visitors find your content.":["\u0628\u0647 \u0628\u0627\u0632\u062f\u06cc\u062f\u06a9\u0646\u0646\u062f\u06af\u0627\u0646 \u06a9\u0645\u06a9 \u06a9\u0646\u06cc\u062f \u0645\u062d\u062a\u0648\u0627\u06cc \u0634\u0645\u0627 \u0631\u0627 \u067e\u06cc\u062f\u0627 \u06a9\u0646\u0646\u062f."],Search:["\u062c\u0633\u062a\u062c\u0648"],"Add button text\u2026":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062a\u0646 \u062f\u06a9\u0645\u0647..."],"Button text":["\u0645\u062a\u0646 \u062f\u06a9\u0645\u0647"],"Optional placeholder\u2026":["\u0639\u0646\u0648\u0627\u0646 \u0646\u06af\u0647\u200c\u062f\u0627\u0631\u0646\u062f\u0647 \u0627\u062e\u062a\u06cc\u0627\u0631\u06cc..."],"Optional placeholder text":["\u0645\u062a\u0646 \u0639\u0646\u0648\u0627\u0646 \u0646\u06af\u0647\u200c\u062f\u0627\u0631\u0646\u062f\u0647 \u0627\u062e\u062a\u06cc\u0627\u0631\u06cc"],"Add label\u2026":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0628\u0631\u0686\u0633\u0628..."],"Label text":["\u0645\u062a\u0646 \u0628\u0631\u0686\u0633\u0628"],"image %1$d of %2$d in gallery":["\u062a\u0635\u0648\u06cc\u0631 %1$d \u0627\u0632 %2$d \u062f\u0631 \u06af\u0627\u0644\u0631\u06cc"],archive:["\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc"],posts:["\u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627"],"A calendar of your site\u2019s posts.":["\u06cc\u06a9 \u062a\u0642\u0648\u06cc\u0645 \u0627\u0632 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0633\u0627\u06cc\u062a \u0634\u0645\u0627."],Calendar:["\u062a\u0642\u0648\u06cc\u0645"],by:["\u062a\u0648\u0633\u0637"],"An error has occurred, which probably means the feed is down. Try again later.":["\u062e\u0637\u0627\u06cc\u06cc \u0631\u062e \u062f\u0627\u062f\u0647 \u0627\u0633\u062a\u060c \u06a9\u0647 \u0627\u062d\u062a\u0645\u0627\u0644\u0627\u064b \u0628\u0647 \u0627\u06cc\u0646 \u0645\u0639\u0646\u06cc \u0627\u0633\u062a \u06a9\u0647 \u062e\u0648\u0631\u0627\u06a9 \u06a9\u0627\u0631 \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f. \u0628\u0639\u062f\u0627\u064b \u062f\u0648\u0628\u0627\u0631\u0647 \u062a\u0644\u0627\u0634 \u06a9\u0646\u06cc\u062f."],"RSS Error:":["\u062e\u0637\u0627\u06cc RSS:"],"block style\x04Default":["\u067e\u06cc\u0634\u200c\u0641\u0631\u0636"],"Fullscreen mode deactivated":["\u062d\u0627\u0644\u062a \u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Fullscreen mode activated":["\u062d\u0627\u0644\u062a \u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Spotlight mode deactivated":["\u062d\u0627\u0644\u062a \u0648\u06cc\u0698\u0647 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Spotlight mode activated":["\u062d\u0627\u0644\u062a \u0648\u06cc\u0698\u0647 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Top toolbar deactivated":["\u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 \u0628\u0627\u0644\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Top toolbar activated":["\u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 \u0628\u0627\u0644\u0627 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],Back:["\u0639\u0642\u0628"],"Feature activated":["\u0648\u06cc\u0698\u06af\u06cc \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Feature deactivated":["\u0648\u06cc\u0698\u06af\u06cc \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Vertical Pos.":["\u0645\u0648\u0642\u0639\u06cc\u062a \u0639\u0645\u0648\u062f\u06cc"],"Horizontal Pos.":["\u0645\u0648\u0642\u0639\u06cc\u062a \u0627\u0641\u0642\u06cc"],feed:["\u062e\u0648\u0631\u0627\u06a9"],atom:["atom"],"Display entries from any RSS or Atom feed.":["\u0646\u0645\u0627\u06cc\u0634 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u0627\u0632 \u0647\u0631 RSS \u06cc\u0627 \u062e\u0648\u0631\u0627\u06a9 Atom."],RSS:["RSS"],"Max number of words in excerpt":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u06a9\u0644\u0645\u0627\u062a \u062f\u0631 \u0686\u06a9\u06cc\u062f\u0647"],"Display excerpt":["\u0646\u0645\u0627\u06cc\u0634 \u0686\u06a9\u06cc\u062f\u0647"],"Display date":["\u0646\u0645\u0627\u06cc\u0634 \u062a\u0627\u0631\u06cc\u062e"],"Display author":["\u0646\u0645\u0627\u06cc\u0634 \u0646\u0648\u06cc\u0633\u0646\u062f\u0647"],"RSS Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a RSS"],"Edit RSS URL":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc RSS"],"Content before this block will be shown in the excerpt on your archives page.":["\u0645\u062d\u062a\u0648\u0627\u06cc \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0628\u0644\u0648\u06a9 \u062f\u0631 \u0686\u06a9\u06cc\u062f\u0647 \u0628\u0631\u06af\u0647 \u0628\u0627\u06cc\u06af\u0627\u0646\u06cc\u200c\u0647\u0627\u06cc \u0634\u0645\u0627 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"Hide the excerpt on the full content page":[" \u0645\u062e\u0641\u06cc \u06a9\u0631\u062f\u0646 \u0686\u06a9\u06cc\u062f\u0647 \u062f\u0631 \u0645\u062d\u062a\u0648\u0627\u06cc \u06a9\u0627\u0645\u0644 \u0628\u0631\u06af\u0647"],"The excerpt is visible.":["\u0686\u06a9\u06cc\u062f\u0647 \u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u0633\u062a."],"The excerpt is hidden.":["\u0686\u06a9\u06cc\u062f\u0647 \u067e\u0646\u0647\u0627\u0646 \u0627\u0633\u062a."],"Sorry, this content could not be embedded.":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634\u060c \u0627\u06cc\u0646 \u0645\u062d\u062a\u0648\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u062c\u0627\u0633\u0627\u0632\u06cc \u0634\u0648\u062f."],"Embed Amazon Kindle content.":["\u062c\u0627\u0633\u0627\u0632\u06cc \u0645\u062d\u062a\u0648\u0627\u06cc Amazon Kindle."],ebook:["\u06a9\u062a\u0627\u0628 \u0627\u0644\u06a9\u062a\u0631\u0648\u0646\u06cc\u06a9"],"Embed Crowdsignal (formerly Polldaddy) content.":["\u062c\u0627\u0633\u0627\u0632\u06cc \u0645\u062d\u062a\u0648\u0627\u06cc Crowdsignal (Polldaddy \u0633\u0627\u0628\u0642)"],"Focal Point Picker":["\u0627\u0646\u062a\u062e\u0627\u0628\u06af\u0631 \u0646\u0642\u0637\u0647 \u06a9\u0627\u0646\u0648\u0646\u06cc"],Underline:["\u0632\u06cc\u0631 \u062e\u0637 \u062f\u0627\u0631"],"Attempt Block Recovery":["\u062a\u0644\u0627\u0634 \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u06cc\u0627\u0628\u06cc \u0628\u0644\u0648\u06a9"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["\u0645\u062d\u062a\u0648\u0627..."],"button label\x04Convert to link":["\u062a\u0628\u062f\u06cc\u0644 \u0628\u0647 \u067e\u06cc\u0648\u0646\u062f"],"button label\x04Try again":["\u062f\u0648\u0628\u0627\u0631\u0647 \u0633\u0639\u06cc \u06a9\u0646\u06cc\u062f"],"Editor tips":["\u0646\u06a9\u0627\u062a \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631"],"Block (selected)":["\u0628\u0644\u0648\u06a9 (\u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647)"],"Document (selected)":["\u0627\u0633\u0646\u0627\u062f (\u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647)"],"%d word":["%d \u06a9\u0644\u0645\u0647"],"Top Toolbar":["\u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 \u0628\u0627\u0644\u0627"],"Link Rel":["\u0644\u06cc\u0646\u06a9 Rel"],"Link CSS Class":["\u0644\u06cc\u0646\u06a9 \u06a9\u0644\u0627\u0633 CSS"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u062a\u0648\u0644\u06cc\u062f \u0645\u062d\u062a\u0648\u0627 \u0648 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0631\u062f\u0646 \u0622\u0646 \u062f\u0631 \u0633\u0627\u06cc\u062a \u0628\u0631\u0627\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u062c\u062f\u062f \u0634\u0645\u0627 \u0648 \u062f\u06cc\u06af\u0631 \u0646\u0648\u06cc\u0633\u0646\u062f\u06af\u0627\u0646\u060c \u0628\u0627 \u0628\u0647\u200c\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0628\u0644\u0648\u06a9\u060c \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062f\u0631 \u0647\u0631\u062c\u0627\u06cc\u06cc \u06a9\u0647 \u0628\u0644\u0648\u06a9 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647 \u0627\u0639\u0645\u0627\u0644 \u0645\u06cc\u200c\u0634\u0648\u062f."],"To edit the featured image, you need permission to upload media.":["\u0628\u0631\u0627\u06cc \u0648\u06cc\u0631\u0627\u06cc\u0634 \u062a\u0635\u0648\u06cc\u0631 \u0634\u0627\u062e\u0635 \u0628\u0627\u06cc\u062f \u0627\u062c\u0627\u0632\u0647 \u0622\u067e\u0644\u0648\u062f \u0631\u0633\u0627\u0646\u0647\u200c\u0647\u0627 \u0631\u0627 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f."],"To edit this block, you need permission to upload media.":["\u0628\u0631\u0627\u06cc \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0627\u06cc\u0646 \u0628\u0644\u0648\u06a9 \u0628\u0627\u06cc\u062f \u0627\u062c\u0627\u0632\u0647 \u0622\u067e\u0644\u0648\u062f \u0631\u0633\u0627\u0646\u0647\u200c\u0647\u0627 \u0631\u0627 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f."],"(selected block)":["(\u0628\u0644\u0648\u06a9 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647)"],"Block tools":["\u0627\u0628\u0632\u0627\u0631\u0647\u0627\u06cc \u0628\u0644\u0648\u06a9"],Permalink:["\u067e\u06cc\u0648\u0646\u062f"],"This image has an empty alt attribute":["\u0627\u06cc\u0646 \u062a\u0635\u0648\u06cc\u0631 \u06cc\u06a9 \u0645\u0634\u062e\u0635\u0647 \u0622\u0644\u062a \u062e\u0627\u0644\u06cc \u062f\u0627\u0631\u062f"],"This image has an empty alt attribute; its file name is %s":["\u0627\u06cc\u0646 \u062a\u0635\u0648\u06cc\u0631 \u06cc\u06a9 \u0645\u0634\u062e\u0635\u0647 \u0622\u0644\u062a \u062e\u0627\u0644\u06cc \u062f\u0627\u0631\u062f\u061b \u0646\u0627\u0645 \u0641\u0627\u06cc\u0644 \u0622\u0646 %s \u0627\u0633\u062a"],"Block area reverted to draft.":["\u0628\u0644\u0648\u06a9 \u0628\u0647 \u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633 \u0628\u0631\u06af\u0631\u062f\u0627\u0646\u062f\u0647 \u0634\u062f."],"Block area published privately.":["\u0628\u0644\u0648\u06a9 \u0628\u0647 \u0637\u0648\u0631 \u062e\u0635\u0648\u0635\u06cc \u0645\u0646\u062a\u0634\u0631 \u0634\u062f."],"No block areas found in Trash.":["\u0647\u06cc\u0686 \u0646\u0648\u0627\u062d\u06cc \u0628\u0644\u0648\u06a9\u06cc \u062f\u0631 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f."],"Block\x04Add New":["\u0627\u0641\u0632\u0648\u062f\u0646 \u062c\u062f\u06cc\u062f"],"add new on admin bar\x04Block Area":["\u0646\u0627\u062d\u06cc\u0647 \u0628\u0644\u0648\u06a9"],"Link inserted.":["\u067e\u06cc\u0648\u0646\u062f \u062f\u0631\u062c \u0634\u062f."],"Warning: the link has been inserted but may have errors. Please test it.":["\u0647\u0634\u062f\u0627\u0631: \u0627\u06cc\u0646 \u067e\u06cc\u0648\u0646\u062f \u0648\u0627\u0631\u062f \u0634\u062f\u0647 \u0627\u0645\u0627 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u062f\u0686\u0627\u0631 \u0627\u0634\u062a\u0628\u0627\u0647 \u0634\u0648\u062f. \u0644\u0637\u0641\u0627\u064b \u0622\u0646 \u0631\u0627 \u0627\u0645\u062a\u062d\u0627\u0646 \u06a9\u0646\u06cc\u062f."],"%s block selected.":["%s \u0628\u0644\u0648\u06a9\u200c\u0647\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f."],Thumbnail:["\u062a\u0635\u0648\u06cc\u0631 \u0628\u0646\u062f\u0627\u0646\u06af\u0634\u062a\u06cc"],"Full Size":["\u0627\u0646\u062f\u0627\u0632\u0647 \u06a9\u0627\u0645\u0644"],"Link selected.":["\u067e\u06cc\u0648\u0646\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f."],"Start writing with text or HTML":["\u0634\u0631\u0648\u0639 \u0628\u0647 \u0646\u0648\u0634\u062a\u0646 \u0628\u0627 \u0645\u062a\u0646 \u06cc\u0627 HTML"],"Type text or HTML":["\u062a\u0627\u06cc\u067e \u0645\u062a\u0646 \u06cc\u0627 HTML"],"Block icon":["\u0622\u06cc\u06a9\u0648\u0646 \u0628\u0644\u0648\u06a9"],"Align Text Right":["\u062a\u0631\u0627\u0632 \u0645\u062a\u0646 \u0631\u0627\u0633\u062a"],"Align Text Center":["\u062a\u0631\u0627\u0632 \u0645\u062a\u0646 \u0648\u0633\u0637"],"Align Text Left":["\u062a\u0631\u0627\u0632 \u0645\u062a\u0646 \u0686\u067e"],"Start writing or type / to choose a block":["\u0634\u0631\u0648\u0639 \u0628\u0647 \u0646\u0648\u0634\u062a\u0646 \u06cc\u0627 \u062a\u0627\u06cc\u067e / \u0628\u0631\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u06cc\u06a9 \u0628\u0644\u0648\u06a9"],"Empty block; start writing or type forward slash to choose a block":["\u0628\u0644\u0648\u06a9 \u062e\u0627\u0644\u06cc\u061b \u0634\u0631\u0648\u0639 \u0628\u0647 \u0646\u0648\u0634\u062a\u0646 \u06cc\u0627 \u062a\u0627\u06cc\u067e \u0628\u0647 \u062c\u0644\u0648 \u0628\u0631\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u06cc\u06a9 \u0628\u0644\u0648\u06a9"],"Paragraph block":["\u0628\u0644\u0648\u06a9 \u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641"],"Page Break":["\u0628\u0631\u0634 \u0635\u0641\u062d\u0647"],"Stack on mobile":["\u067e\u0634\u062a\u0647 \u0634\u062f\u0646 \u062f\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644"],Annotation:["\u062d\u0627\u0634\u06cc\u0647 \u0646\u0648\u06cc\u0633\u06cc"],"Drag images, upload new ones or select files from your library.":["\u062a\u0635\u0627\u0648\u06cc\u0631 \u0631\u0627 \u0628\u06a9\u0634\u06cc\u062f\u060c \u0645\u0648\u0627\u0631\u062f \u062c\u062f\u06cc\u062f \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0646\u0645\u0627\u06cc\u06cc\u062f \u06cc\u0627 \u0641\u0627\u06cc\u0644\u200c\u0647\u0627 \u0631\u0627 \u0627\u0632 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u062e\u0648\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0645\u0627\u06cc\u06cc\u062f."],"blocks\x04Most Used":["\u0628\u06cc\u0634\u062a\u0631\u06cc\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647"],"imperative verb\x04Resolve":["\u0631\u0641\u0639\u200c\u06a9\u0631\u062f\u0646"],"font size name\x04Huge":["\u0628\u0632\u0631\u06af"],"font size name\x04Large":["\u0628\u0632\u0631\u06af"],"font size name\x04Medium":["\u0645\u062a\u0648\u0633\u0637"],"font size name\x04Small":["\u06a9\u0648\u0686\u06a9"],"font size name\x04Normal":["\u0645\u0639\u0645\u0648\u0644\u06cc"],"keyboard button\x04Enter":["\u0648\u0627\u0631\u062f"],"button label\x04Import":["\u0648\u0627\u0631\u062f \u0643\u0631\u062f\u0646"],"button label\x04Download":["\u062f\u0627\u0646\u0644\u0648\u062f"],"button label\x04Embed":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646"],"block title\x04Embed":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646"],"block title\x04Classic":["\u06a9\u0644\u0627\u0633\u06cc\u06a9"],"block style\x04Large":["\u0628\u0632\u0631\u06af"],"%s (opens in a new tab)":["%s (\u062f\u0631 \u06cc\u06a9 \u0632\u0628\u0627\u0646\u0647 \u062c\u062f\u06cc\u062f \u0628\u0627\u0632 \u0645\u06cc\u200c\u0634\u0648\u062f)"],"Link edited.":["\u067e\u06cc\u0648\u0646\u062f \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0634\u062f\u0647"],"Link removed.":["\u067e\u06cc\u0648\u0646\u062f \u062d\u0630\u0641 \u0634\u062f."],media:["\u0631\u0633\u0627\u0646\u0647"],"Double-check your settings before publishing.":["\u0642\u0628\u0644 \u0627\u0632 \u0627\u0646\u062a\u0634\u0627\u0631 \u062f\u0648\u0628\u0627\u0631\u0647 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f."],"Generating preview\u2026":["\u062f\u0631\u062d\u0627\u0644 \u062a\u0648\u0644\u06cc\u062f \u067e\u06cc\u0634\u200c\u0646\u0645\u0627\u06cc\u0634..."],"Edit or update the image":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06cc\u0627 \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u062a\u0635\u0648\u06cc\u0631"],Media:["\u0631\u0633\u0627\u0646\u0647"],"Navigate to the nearest toolbar.":["\u062d\u0631\u06a9\u062a \u0628\u0647 \u0646\u0632\u062f\u06cc\u06a9\u062a\u0631\u06cc\u0646 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631."],"Document tools":["\u0633\u0646\u062f \u0627\u0628\u0632\u0627\u0631\u0647\u0627"],"Document and block tools":["\u0627\u0628\u0632\u0627\u0631\u0647\u0627\u06cc \u0628\u0644\u0648\u06a9 \u0648 \u0633\u0646\u062f"],"Embed a video from your media library or upload a new one.":["\u06cc\u06a9 \u0648\u06cc\u062f\u0626\u0648 \u0627\u0632 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0631\u0633\u0627\u0646\u0647\u200c\u0627\u06cc \u062e\u0648\u062f \u0642\u0631\u0627\u0631 \u062f\u0647\u06cc\u062f \u06cc\u0627 \u06cc\u06a9 \u0648\u06cc\u062f\u0626\u0648 \u062c\u062f\u06cc\u062f \u0622\u067e\u0644\u0648\u062f \u06a9\u0646\u06cc\u062f."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u0634\u0639\u0631\u06cc \u062f\u0631\u062c \u0646\u0645\u0627\u06cc\u06cc\u062f. \u0627\u0632 \u0642\u0627\u0644\u0628\u200c\u0647\u0627\u06cc \u0641\u0627\u0635\u0644\u0647\u200c\u06af\u0630\u0627\u0631\u06cc \u0648\u06cc\u0698\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f. \u06cc\u0627 \u062a\u0631\u0627\u0646\u0647 \u0622\u0647\u0646\u06af\u06cc \u0631\u0627 \u0646\u0642\u0644\u200c\u0642\u0648\u0644 \u0646\u0645\u0627\u06cc\u06cc\u062f."],"Add white space between blocks and customize its height.":["\u0641\u0627\u0635\u0644\u0647 \u0628\u06cc\u0646 \u0628\u0644\u0648\u06a9\u200c\u0647\u0627 \u0631\u0627 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f \u0648 \u0627\u0631\u062a\u0641\u0627\u0639 \u0622\u0646 \u0631\u0627 \u0633\u0641\u0627\u0631\u0634\u06cc \u06a9\u0646\u06cc\u062f."],"Insert additional custom elements with a WordPress shortcode.":["\u0639\u0646\u0627\u0635\u0631 \u0633\u0641\u0627\u0631\u0634\u06cc \u0627\u0636\u0627\u0641\u06cc \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u06a9\u062f \u06a9\u0648\u062a\u0627\u0647 \u0648\u0631\u062f\u067e\u0631\u0633 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"Create a break between ideas or sections with a horizontal separator.":["\u06cc\u06a9 \u062a\u0641\u06a9\u06cc\u06a9 \u0628\u06cc\u0646 \u0627\u06cc\u062f\u0647\u200c\u0647\u0627 \u06cc\u0627 \u0628\u062e\u0634\u200c\u0647\u0627 \u0628\u0627 \u062c\u062f\u0627 \u06a9\u0646\u0646\u062f\u0647 \u0627\u0641\u0642\u06cc \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u06cc\u062f."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u0628\u0647 \u0645\u062a\u0646 \u0646\u0642\u0644 \u0642\u0648\u0644 \u0634\u062f\u0647 \u062a\u0627\u06a9\u06cc\u062f \u0638\u0627\u0647\u0631\u06cc \u0628\u062f\u0647\u06cc\u062f. \xab\u062f\u0631 \u0646\u0642\u0644 \u0642\u0648\u0644 \u06a9\u0631\u062f\u0646 \u062f\u06cc\u06af\u0631\u0627\u0646\u060c \u0645\u0627 \u062e\u0648\u062f\u0645\u0627\u0646 \u0631\u0627 \u0646\u0634\u0627\u0646 \u0645\u06cc\u200c\u062f\u0647\u06cc\u0645.\xbb - \u0698\u0648\u0644\u06cc\u0648 \u06a9\u0648\u0631\u062a\u0627\u0632\u0627\u0631"],"Give special visual emphasis to a quote from your text.":["\u062a\u0627\u06a9\u06cc\u062f \u0648\u06cc\u0698\u0647\u200c\u0627\u06cc \u0628\u0631 \u0631\u0648\u06cc \u06cc\u06a9 \u0646\u0642\u0644 \u0642\u0648\u0644 \u0627\u0632 \u0645\u062a\u0646 \u062e\u0648\u062f \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f."],"Start with the building block of all narrative.":["\u0634\u0631\u0648\u0639 \u06a9\u0646\u06cc\u062f \u0628\u0647 \u0633\u0627\u062e\u062a\u0646 \u0628\u0644\u0648\u06a9 \u062a\u0645\u0627\u0645\u06cc \u0631\u0648\u0627\u06cc\u0627\u062a."],"Separate your content into a multi-page experience.":["\u0645\u062d\u062a\u0648\u0627\u06cc \u062e\u0648\u062f \u0631\u0627 \u062f\u0631 \u06cc\u06a9 \u062a\u062c\u0631\u0628\u0647 \u0686\u0646\u062f \u0635\u0641\u062d\u0647\u200c\u0627\u06cc \u062c\u062f\u0627 \u06a9\u0646\u06cc\u062f."],"Set media and words side-by-side for a richer layout.":["\u0631\u0633\u0627\u0646\u0647\u200c\u0647\u0627 \u0648 \u06a9\u0644\u0645\u0627\u062a \u0631\u0633\u0627\u0646\u0647 \u06a9\u0646\u0627\u0631\u06cc \u0631\u0627 \u0628\u0631\u0627\u06cc \u06cc\u06a9 \u0686\u06cc\u062f\u0645\u0627\u0646 \u063a\u0646\u06cc\u200c\u062a\u0631 \u062a\u0646\u0638\u06cc\u0645 \u06a9\u0646\u06cc\u062f."],"Media & Text Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0631\u0633\u0627\u0646\u0647 \u0648 \u0645\u062a\u0646"],"Create a bulleted or numbered list.":["\u0627\u06cc\u062c\u0627\u062f \u06cc\u06a9 \u0644\u06cc\u0633\u062a \u0634\u0645\u0627\u0631\u0647\u200c\u0628\u0646\u062f\u06cc \u0634\u062f\u0647 \u06cc\u0627 \u06af\u0644\u0648\u0644\u0647\u200c\u0627\u06cc."],"Display a list of your most recent comments.":["\u0646\u0645\u0627\u06cc\u0634 \u0641\u0647\u0631\u0633\u062a\u06cc \u0627\u0632 \u0622\u062e\u0631\u06cc\u0646 \u0646\u0638\u0631\u0627\u062a \u0634\u0645\u0627."],"Insert an image to make a visual statement.":["\u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 \u0628\u0631\u0627\u06cc \u0627\u06cc\u062c\u0627\u062f \u06cc\u06a9 \u0628\u06cc\u0627\u0646\u06cc\u0647 \u062a\u0635\u0648\u06cc\u0631\u06cc \u0642\u0631\u0627\u0631 \u062f\u0647\u06cc\u062f."],"Add custom HTML code and preview it as you edit.":["\u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u062f HTML \u0633\u0641\u0627\u0631\u0634\u06cc \u0648 \u067e\u06cc\u0634\u200c\u0646\u0645\u0627\u06cc\u0634 \u0622\u0646 \u062f\u0631 \u062d\u0627\u0644\u062a \u0648\u06cc\u0631\u0627\u06cc\u0634\u06cc."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u0628\u062e\u0634\u200c\u0647\u0627\u06cc \u062c\u062f\u06cc\u062f \u0631\u0627 \u0645\u0639\u0631\u0641\u06cc \u06a9\u0631\u062f\u0647 \u0648 \u0628\u0631\u0627\u06cc \u06a9\u0645\u06a9 \u0628\u0647 \u0628\u0627\u0632\u062f\u06cc\u062f\u06a9\u0646\u0646\u062f\u06af\u0627\u0646 (\u0648 \u0645\u0648\u062a\u0648\u0631\u0647\u0627\u06cc \u062c\u0633\u062a\u062c\u0648) \u06a9\u0647 \u0633\u0627\u062e\u062a\u0627\u0631 \u0645\u062d\u062a\u0648\u0627\u06cc \u0634\u0645\u0627 \u0631\u0627 \u062f\u0631\u06a9 \u06a9\u0646\u06cc\u062f."],"Display multiple images in a rich gallery.":["\u0646\u0645\u0627\u06cc\u0634 \u0639\u06a9\u0633 \u0647\u0627\u06cc \u0645\u062a\u0639\u062f\u062f \u062f\u0631 \u06cc\u06a9 \u06af\u0627\u0644\u0631\u06cc \u0628\u0632\u0631\u06af ."],"Add a link to a downloadable file.":["\u06cc\u06a9 \u0644\u06cc\u0646\u06a9 \u0628\u0647 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0642\u0627\u0628\u0644 \u062f\u0627\u0646\u0644\u0648\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"Embed videos, images, tweets, audio, and other content from external sources.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0641\u06cc\u0644\u0645\u200c\u0647\u0627\u060c \u062a\u0635\u0627\u0648\u06cc\u0631\u060c \u062a\u0648\u06cc\u06cc\u062a\u200c\u0647\u0627\u060c \u0635\u062f\u0627 \u0648 \u0633\u0627\u06cc\u0631 \u0645\u0637\u0627\u0644\u0628 \u0627\u0632 \u0645\u0646\u0627\u0628\u0639 \u062e\u0627\u0631\u062c\u06cc."],"Resize for smaller devices":["\u062a\u063a\u06cc\u06cc\u0631 \u0627\u0646\u062f\u0627\u0632\u0647 \u0628\u0631\u0627\u06cc \u062f\u0633\u062a\u06af\u0627\u0647 \u0647\u0627\u06cc \u06a9\u0648\u0686\u06a9\u062a\u0631"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u0627\u06cc\u0646 \u062a\u0639\u0628\u06cc\u0647 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0646\u0633\u0628\u062a \u0627\u0628\u0639\u0627\u062f \u0622\u0646 \u0631\u0627 \u0647\u0646\u06af\u0627\u0645 \u062a\u063a\u06cc\u06cc\u0631 \u0627\u0646\u062f\u0627\u0632\u0647 \u0645\u0631\u0648\u0631\u06af\u0631 \u062d\u0641\u0638 \u0646\u06a9\u0646\u062f."],"This embed will preserve its aspect ratio when the browser is resized.":["\u0627\u06cc\u0646 \u062a\u0639\u0628\u06cc\u0647 \u0628\u0627 \u0627\u0641\u0632\u0627\u06cc\u0634 \u0627\u0646\u062f\u0627\u0632\u0647 \u0645\u0631\u0648\u0631\u06af\u0631 \u0646\u0633\u0628\u062a \u0627\u0628\u0639\u0627\u062f \u0622\u0646 \u0631\u0627 \u062d\u0641\u0638 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f."],"Embed an Animoto video.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u0648\u06cc\u062f\u06cc\u0648 \u0645\u062a\u062d\u0631\u06a9."],"Embed a Vimeo video.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u0648\u06cc\u062f\u06cc\u0648 Vimeo."],"Embed Flickr content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Flickr."],"Embed Spotify content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Spotify ."],"Embed SoundCloud content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc SoundCloud."],"Embed a WordPress post.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u067e\u0633\u062a \u0648\u0631\u062f\u067e\u0631\u0633."],"Embed an Instagram post.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u067e\u0633\u062a \u0627\u06cc\u0646\u0633\u062a\u0627\u06af\u0631\u0627\u0645."],"Embed a Facebook post.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u067e\u0633\u062a \u0641\u06cc\u0633\u0628\u0648\u06a9."],"Embed a WordPress.tv video.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0648\u06cc\u062f\u06cc\u0648 WordPress.tv."],"Embed a VideoPress video.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u0648\u06cc\u062f\u06cc\u0648 VideoPress."],"Embed a Tumblr post.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u067e\u0633\u062a Tumblr."],"Embed a TED video.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u0648\u06cc\u062f\u06cc\u0648 TED."],"Embed Speaker Deck content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Speaker Deck."],"Embed a YouTube video.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u0648\u06cc\u062f\u06cc\u0648 \u06cc\u0648\u062a\u06cc\u0648\u0628."],"Embed SmugMug content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc SmugMug."],"Embed Slideshare content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Slideshare."],"Embed Scribd content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Scribd."],"Embed Screencast content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Screencast."],"Embed ReverbNation content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc ReverbNation."],"Embed a Reddit thread.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Reddit."],"Embed Polldaddy content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Polldaddy."],"Embed Mixcloud content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Mixcloud ."],"Embed a tweet.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u062a\u0648\u06cc\u06cc\u062a."],"Embed Meetup.com content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Meetup.com."],"Embed Kickstarter content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Kickstarter."],"Embed Issuu content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Issuu."],"Embed Imgur content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u06cc\u0627\u062a Imgur."],"Embed Hulu content.":["\u0642\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Hulu."],"Embed a Dailymotion video.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u0648\u06cc\u062f\u0626\u0648\u06cc Dailymotion."],"Embed CollegeHumor content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc CollegeHumor."],"Embed Cloudup content.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["\u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 \u06cc\u0627 \u0648\u06cc\u062f\u0626\u0648 \u0631\u0627 \u0628\u0627 \u06cc\u06a9 \u067e\u0648\u0634\u0634 \u0645\u062a\u0646 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f - \u0639\u0627\u0644\u06cc \u0628\u0631\u0627\u06cc \u0633\u0631\u0628\u0631\u06af\u200c\u0647\u0627."],"Display code snippets that respect your spacing and tabs.":["\u0646\u0645\u0627\u06cc\u0634 \u0642\u0637\u0639\u0647 \u06a9\u062f\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0628\u0647 \u0641\u0627\u0635\u0644\u0647 \u0647\u0627 \u0648 \u062a\u0628 \u0647\u0627 \u0631\u062c\u0648\u0639 \u0645\u06cc\u06a9\u0646\u062f."],"Use the classic WordPress editor.":["\u0627\u0632 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u06a9\u0644\u0627\u0633\u06cc\u06a9 \u0648\u0631\u062f\u067e\u0631\u0633 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f."],"Display a list of all categories.":["\u0646\u0645\u0627\u06cc\u0634 \u06cc\u06a9 \u0644\u06cc\u0633\u062a \u0627\u0632 \u0647\u0645\u0647 \u062f\u0633\u062a\u0647 \u0647\u0627."],"Embed a simple audio player.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646 \u06cc\u06a9 \u067e\u062e\u0634 \u06a9\u0646\u0646\u062f\u0647 \u0635\u0648\u062a\u06cc \u0633\u0627\u062f\u0647"],"noun\x04View":["\u0646\u0645\u0627\u06cc\u0634"],"editor button\x04Left to right":["\u0686\u067e \u0628\u0647 \u0631\u0627\u0633\u062a"],"Save as Pending":["\u0630\u062e\u06cc\u0631\u0647 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631"],"%s address":["%s \u0622\u062f\u0631\u0633"],"Paste or type URL":["\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u06cc\u0627 \u0646\u0648\u0634\u062a\u0646 URL"],"Insert from URL":["\u06af\u0646\u062c\u0627\u0646\u062f\u0646 \u0627\u0632 URL"],"Block Navigator":["\u067e\u06cc\u0645\u0627\u06cc\u0634\u06af\u0631 \u0628\u0644\u0648\u06a9"],Styles:["\u0634\u06cc\u0648\u0647\u200c\u0646\u0627\u0645\u0647 \u0647\u0627"],"Advanced Panels":["\u067e\u0646\u0644\u200c\u0647\u0627\u06cc \u067e\u06cc\u0634\u0631\u0641\u062a\u0647"],"Document Panels":["\u067e\u0646\u0644\u200c\u0647\u0627\u06cc \u0627\u0633\u0646\u0627\u062f"],General:["\u0639\u0645\u0648\u0645\u06cc"],"Open the block navigation menu.":["\u0645\u0646\u0648\u06cc \u06a9\u0646\u062a\u0631\u0644 \u0628\u0644\u0648\u06a9 \u0631\u0627 \u0628\u0627\u0632 \u06a9\u0646\u06cc\u062f"],"Work without distraction":["\u06a9\u0627\u0631 \u0628\u062f\u0648\u0646 \u062d\u0648\u0627\u0633 \u067e\u0631\u062a\u06cc"],"Focus on one block at a time":["\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0631\u0648\u06cc \u06cc\u06a9 \u0628\u0644\u0648\u06a9 \u062f\u0631 \u0644\u062d\u0638\u0647"],"Access all block and document tools in a single place":["\u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u062a\u0645\u0627\u0645 \u0627\u0628\u0632\u0627\u0631\u0647\u0627\u06cc \u0628\u0644\u0648\u06a9 \u0648 \u0633\u0646\u062f \u0628\u0635\u0648\u0631\u062a \u0648\u0627\u062d\u062f"],Options:["\u06af\u0632\u06cc\u0646\u0647 \u0647\u0627"],"(opens in a new tab)":["(\u062f\u0631 \u06cc\u06a9 \u0628\u0631\u06af\u0647 \u062c\u062f\u06cc\u062f \u0628\u0627\u0632 \u0645\u06cc \u0634\u0648\u062f)"],Minutes:["\u062f\u0642\u06cc\u0642\u0647 \u0647\u0627"],Hours:["\u0633\u0627\u0639\u062a \u0647\u0627"],Time:["\u0632\u0645\u0627\u0646"],Year:["\u0633\u0627\u0644"],Day:["\u0631\u0648\u0632"],December:["\u062f\u0633\u0627\u0645\u0628\u0631"],November:["\u0646\u0648\u0627\u0645\u0628\u0631"],October:["\u0627\u0648\u06a9\u062a\u0628\u0631"],September:["\u0633\u067e\u062a\u0627\u0645\u0628\u0631"],August:["\u0622\u06af\u0648\u0633\u062a"],July:["\u062c\u0648\u0644\u0627\u06cc"],June:["\u0698\u0648\u0626\u0646"],May:["\u0645\u0647"],April:["\u0622\u067e\u0631\u06cc\u0644"],March:["\u0645\u0627\u0631\u0686"],February:["\u0641\u0648\u0631\u06cc\u0647"],January:["\u0698\u0627\u0646\u0648\u06cc\u0647"],Month:["\u0645\u0627\u0647"],Date:["\u062a\u0627\u0631\u06cc\u062e"],"Go to the first (home) or last (end) day of a week.":["\u0628\u0631\u0648 \u0628\u0647 \u0627\u0648\u0644\u06cc\u0646 (\u062e\u0627\u0646\u0647) \u06cc\u0627 \u0622\u062e\u0631\u06cc\u0646 (\u067e\u0627\u06cc\u0627\u0646) \u0631\u0648\u0632 \u062f\u0631 \u0647\u0641\u062a\u0647."],"Home/End":["\u062e\u0627\u0646\u0647 / \u067e\u0627\u06cc\u0627\u0646"],"Home and End":["\u062e\u0627\u0646\u0647 \u0648 \u067e\u0627\u06cc\u0627\u0646"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u062d\u0631\u06a9\u062a \u0628\u0647 \u0639\u0642\u0628 (PgUp) \u06cc\u0627 \u062c\u0644\u0648 (PgDn) \u062f\u0631 \u06cc\u06a9 \u0645\u0627\u0647."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["\u0628\u0627\u0644\u0627\u06cc \u0635\u0641\u062d\u0647 \u0648 \u067e\u0627\u06cc\u06cc\u0646 \u0635\u0641\u062d\u0647"],"Move backward (up) or forward (down) by one week.":["\u062d\u0631\u06a9\u062a \u0628\u0647 \u0639\u0642\u0628 (\u0628\u0627\u0644\u0627) \u0648 \u062c\u0644\u0648 (\u067e\u0627\u06cc\u06cc\u0646) \u062f\u0631 \u0647\u0641\u062a\u0647."],"Up and Down Arrows":["\u067e\u06cc\u06a9\u0627\u0646\u200c\u0647\u0627\u06cc \u0628\u0627\u0644\u0627 \u0648 \u067e\u0627\u06cc\u06cc\u0646"],"Move backward (left) or forward (right) by one day.":["\u062d\u0631\u06a9\u062a \u0628\u0647 \u0639\u0642\u0628 (\u0686\u067e) \u06cc\u0627 \u0628\u0647 \u062c\u0644\u0648 (\u0631\u0627\u0633\u062a) \u062a\u0627 \u06cc\u06a9 \u0631\u0648\u0632."],"Left and Right Arrows":["\u067e\u06cc\u06a9\u0627\u0646\u200c\u0647\u0627\u06cc \u0686\u067e \u0648 \u0631\u0627\u0633\u062a"],"Select the date in focus.":["\u062a\u0627\u0631\u06cc\u062e \u062f\u0642\u06cc\u0642 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"Navigating with a keyboard":["\u0647\u062f\u0627\u06cc\u062a \u0628\u0648\u0633\u06cc\u0644\u0647 \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u062f"],"Click the desired day to select it.":["\u0628\u0631\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0631\u0648\u0632 \u062f\u0644\u062e\u0648\u0627\u0647 \u0631\u0648\u06cc \u0622\u0646 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f."],"Click the right or left arrows to select other months in the past or the future.":["\u0628\u0631\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0645\u0627\u0647 \u0647\u0627\u06cc \u062f\u06cc\u06af\u0631 \u062f\u0631 \u06af\u0630\u0634\u062a\u0647 \u0648 \u06cc\u0627 \u0622\u06cc\u0646\u062f\u0647 \u0628\u0631 \u0631\u0648\u06cc \u0631\u0627\u0633\u062a \u0648 \u0686\u067e \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f "],"Click to Select":["\u0628\u0631\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f"],"Calendar Help":["\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0642\u0648\u06cc\u0645"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["\u0627\u0632 \u06a9\u0644\u06cc\u062f\u200c\u0647\u0627\u06cc \u062c\u0647\u062a\u200c\u0646\u0645\u0627 \u0628\u0631\u0627\u06cc \u062a\u063a\u06cc\u06cc\u0631 \u0631\u0646\u06af \u067e\u0627\u06cc\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f. \u062d\u0631\u06a9\u062a \u0628\u0647 \u0628\u0627\u0644\u0627 \u0628\u0631\u0627\u06cc \u0631\u0648\u0634\u0646\u200c\u062a\u0631 \u0634\u062f\u0646 \u0631\u0646\u06af\u060c \u0628\u0647 \u067e\u0627\u06cc\u06cc\u0646 \u0628\u0631\u0627\u06cc \u062a\u06cc\u0631\u0647\u200c\u062a\u0631 \u0634\u062f\u0646\u060c \u0633\u0645\u062a \u0686\u067e \u0628\u0631\u0627\u06cc \u0627\u0641\u0632\u0627\u06cc\u0634 \u0627\u0634\u0628\u0627\u0639 \u0631\u0646\u06af\u060c \u0648 \u0633\u0645\u062a \u0631\u0627\u0633\u062a \u0628\u0631\u0627\u06cc \u06a9\u0627\u0647\u0634 \u0627\u0634\u0628\u0627\u0639 \u0631\u0646\u06af."],"Choose a shade":["\u06cc\u06a9 \u0633\u0627\u06cc\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"Change color format":["\u062a\u063a\u06cc\u06cc\u0631 \u0633\u06cc\u0633\u062a\u0645 \u0631\u0646\u06af\u06cc"],"Color value in HSL":["\u06a9\u062f \u0631\u0646\u06af \u062f\u0631 \u0633\u06cc\u0633\u062a\u0645 HSL"],"Color value in RGB":["\u06a9\u062f \u0631\u0646\u06af \u062f\u0631 \u0633\u06cc\u0633\u062a\u0645 RGB"],"Color value in hexadecimal":["\u06a9\u062f \u0631\u0646\u06af \u062f\u0631 \u0633\u06cc\u0633\u062a\u0645 16\u062a\u0627\u06cc\u06cc"],"RGB mode active":["\u062d\u0627\u0644\u062a RGB \u0641\u0639\u0627\u0644 \u0627\u0633\u062a"],"Hex color mode active":["\u062d\u0627\u0644\u062a \u0631\u0646\u06af 16\u062a\u0627\u06cc\u06cc \u0641\u0639\u0627\u0644 \u0627\u0633\u062a"],"Hue/saturation/lightness mode active":["\u062d\u0627\u0644\u062a \u0631\u0646\u06af / \u0627\u0634\u0628\u0627\u0639 / \u0633\u0628\u06a9 \u0628\u0648\u062f\u0646 \u0641\u0639\u0627\u0644 \u0627\u0633\u062a"],"Move the arrow left or right to change hue.":["\u0628\u0631\u0627\u06cc \u062a\u063a\u06cc\u06cc\u0631 \u0631\u0646\u06af \u0641\u0644\u0634 \u0631\u0627 \u0628\u0647 \u0686\u067e \u0648 \u06cc\u0627 \u0631\u0627\u0633\u062a \u062d\u0631\u06a9\u062a \u062f\u0647\u06cc\u062f."],"Hue value in degrees, from 0 to 359.":["\u0645\u0642\u062f\u0627\u0631 \u0631\u0646\u06af \u062f\u0631 \u062f\u0631\u062c\u0647 \u0627\u0632 0 \u062a\u0627 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["\u0645\u0642\u062f\u0627\u0631 \u0622\u0644\u0641\u0627 \u0627\u0632 \u06f0 (\u0634\u0641\u0627\u0641)\u062a\u0627 \u06f1 (\u06a9\u0627\u0645\u0644\u0627 \u06a9\u062f\u0631)."],Stripes:["\u0646\u0648\u0627\u0631\u0647\u0627"],"Your site doesn\u2019t include support for this block.":["\u0633\u0627\u06cc\u062a \u0634\u0645\u0627 \u0634\u0627\u0645\u0644 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0627\u0632 \u0627\u06cc\u0646 \u0628\u0644\u0648\u06a9 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f."],"Unrecognized Block":["\u0628\u0644\u0627\u06a9 \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\u0633\u0627\u06cc\u062a \u0634\u0645\u0627 \u0634\u0627\u0645\u0644 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0627\u0632 \u0628\u0644\u0648\u06a9 \"%s\" \u0646\u0645\u06cc\u200c\u0634\u0648\u062f. \u0634\u0645\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0628\u0644\u0648\u06a9 \u0631\u0627 \u062f\u0633\u062a\u200c\u0646\u062e\u0648\u0631\u062f\u0647 \u0628\u0627\u0642\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f \u0648 \u06cc\u0627 \u0628\u0647 \u0637\u0648\u0631 \u06a9\u0627\u0645\u0644 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\u0633\u0627\u06cc\u062a \u0634\u0645\u0627 \u0634\u0627\u0645\u0644 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0627\u0632 \u0628\u0644\u0648\u06a9 \"%s\" \u0646\u0645\u06cc\u200c\u0634\u0648\u062f. \u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0628\u0644\u0648\u06a9 \u0631\u0627 \u062f\u0633\u062a \u0646\u062e\u0648\u0631\u062f\u0647 \u0628\u0627\u0642\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f\u060c \u0645\u062d\u062a\u0648\u0627\u06cc \u0622\u0646 \u0631\u0627 \u0628\u0647 \u06cc\u06a9 \u0628\u0644\u0648\u06a9 \u0633\u0641\u0627\u0631\u0634\u06cc HTML \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0646\u06cc\u062f \u06cc\u0627 \u0622\u0646 \u0631\u0627 \u06a9\u0627\u0645\u0644\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f."],"Media area":["\u0646\u0627\u062d\u06cc\u0647 \u0631\u0633\u0627\u0646\u0647"],"Media & Text":["\u0631\u0633\u0627\u0646\u0647 \u0648 \u0645\u062a\u0646"],"Show media on right":["\u0646\u0645\u0627\u06cc\u0634 \u0631\u0633\u0627\u0646\u0647 \u062f\u0631 \u0631\u0627\u0633\u062a"],"Show media on left":["\u0646\u0645\u0627\u06cc\u0634 \u0631\u0633\u0627\u0646\u0647 \u062f\u0631 \u0686\u067e"],"Open in New Tab":["\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u062f\u0631 \u0632\u0628\u0627\u0646\u0647 \u062c\u062f\u06cc\u062f"],Cover:["\u0631\u0648\u06cc\u0647"],"Border Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0644\u0628\u0647"],"Edit media":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0631\u0633\u0627\u0646\u0647"],Medium:["\u0645\u06cc\u0627\u0646\u0647"],"Paste URL or type to search":["URL \u0631\u0627 \u0628\u0686\u0633\u0628\u0627\u0646\u06cc\u062f \u06cc\u0627 \u062a\u0627\u06cc\u067e \u06a9\u0646\u06cc\u062f \u062a\u0627 \u062c\u0633\u062a\u062c\u0648 \u0634\u0648\u062f"],Terms:["\u06a9\u0644\u0645\u0627\u062a"],"Your work will be published at the specified date and time.":["\u0646\u0648\u0634\u062a\u0647\u200c\u06cc \u0634\u0645\u0627 \u062f\u0631 \u062a\u0627\u0631\u06cc\u062e \u0648 \u0633\u0627\u0639\u062a \u0645\u0634\u062e\u0635 \u0634\u062f\u0647 \u0645\u0646\u062a\u0634\u0631 \u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"Are you ready to schedule?":["\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0628\u0631\u0627\u06cc \u0632\u0645\u0627\u0646\u200c\u0628\u0646\u062f\u06cc \u0622\u0645\u0627\u062f\u0647 \u0647\u0633\u062a\u06cc\u062f\u061f"],"Always show pre-publish checks.":["\u0647\u0645\u06cc\u0634\u0647 \u0628\u0631\u0631\u0633\u06cc \u067e\u06cc\u0634 \u0627\u0632 \u0627\u0646\u062a\u0634\u0627\u0631 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f."],"Take Over":["\u0628\u0647\u200c\u0639\u0647\u062f\u0647 \u06af\u0631\u0641\u062a\u0646"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u06cc\u06a9 \u06a9\u0627\u0631\u0628\u0631 \u062f\u06cc\u06af\u0631 \u062f\u0631 \u062d\u0627\u0644 \u06a9\u0627\u0631 \u06a9\u0631\u062f\u0646 \u0631\u0648\u06cc \u0627\u06cc\u0646 \u0646\u0648\u0634\u062a\u0647 \u0627\u0633\u062a\u060c \u0627\u0628\u0646 \u06cc\u0639\u0646\u06cc \u0634\u0645\u0627 \u0646\u0645\u06cc\u062a\u0648\u0627\u0646\u06cc\u062f \u062a\u063a\u06cc\u06cc\u0631\u06cc \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u06cc\u062f \u0645\u06af\u0631 \u0627\u06cc\u0646\u06a9\u0647 \u0622\u0646 \u0631\u0627 \u0628\u0647 \u0639\u0647\u062f\u0647 \u0628\u06af\u06cc\u0631\u06cc\u062f."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["\u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 %s \u062f\u0631 \u062d\u0627\u0644 \u06a9\u0627\u0631 \u06a9\u0631\u062f\u0646 \u0631\u0648\u06cc \u0627\u06cc\u0646 \u0646\u0648\u0634\u062a\u0647 \u0627\u0633\u062a\u060c \u0627\u0628\u0646 \u06cc\u0639\u0646\u06cc \u0634\u0645\u0627 \u0646\u0645\u06cc\u062a\u0648\u0627\u0646\u06cc\u062f \u062a\u063a\u06cc\u06cc\u0631\u06cc \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u06cc\u062f \u0645\u06af\u0631 \u0627\u06cc\u0646\u06a9\u0647 \u0622\u0646 \u0631\u0627 \u0628\u0647 \u0639\u0647\u062f\u0647 \u0628\u06af\u06cc\u0631\u06cc\u062f."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u06cc\u06a9 \u06a9\u0627\u0631\u0628\u0631 \u062f\u06cc\u06af\u0631 \u06a9\u0646\u062a\u0631\u0644 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0627\u06cc\u0646 \u067e\u0633\u062a \u0631\u0627 \u062f\u0627\u0631\u062f. \u0646\u06af\u0631\u0627\u0646 \u0646\u0628\u0627\u0634\u06cc\u062f \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0634\u0645\u0627 \u062a\u0627 \u0627\u06cc\u0646 \u0644\u062d\u0638\u0647 \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 %s \u06a9\u0646\u062a\u0631\u0644 \u0627\u06cc\u0646 \u067e\u0633\u062a \u0631\u0627 \u062f\u0627\u0631\u062f. \u0646\u06af\u0631\u0627\u0646 \u0646\u0628\u0627\u0634\u06cc\u062f\u060c \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0634\u0645\u0627 \u062a\u0627 \u0627\u06cc\u0646 \u0644\u062d\u0638\u0647 \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647\u200c\u0627\u0633\u062a."],Avatar:["\u0622\u0648\u0627\u062a\u0627\u0631"],"This post is already being edited.":["\u0627\u06cc\u0646 \u0646\u0648\u0634\u062a\u0647 \u0647\u0645\u200c\u0627\u06a9\u0646\u0648\u0646 \u062f\u0631 \u062d\u0627\u0644 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0627\u0633\u062a"],"Someone else has taken over this post.":["\u0634\u062e\u0635 \u062f\u06cc\u06af\u0631\u06cc \u0627\u06cc\u0646 \u0646\u0648\u0634\u062a\u0647 \u0631\u0627 \u062f\u0633\u062a \u06af\u0631\u0641\u062a\u0647 \u0627\u0633\u062a"],"This block contains unexpected or invalid content.":["\u0627\u06cc\u0646 \u0628\u0644\u0627\u06a9 \u062d\u0627\u0648\u06cc \u0645\u062d\u062a\u0648\u0627\u06cc \u063a\u06cc\u0631\u0645\u0646\u0637\u0642\u06cc \u06cc\u0627 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a."],"Resolve Block":["\u0631\u0641\u0639 \u06a9\u0631\u062f\u0646 \u0628\u0644\u0648\u06a9"],"Convert to HTML":["\u062a\u0628\u062f\u06cc\u0644 \u0628\u0647 HTML"],"This block can only be used once.":["\u0627\u06cc\u0646 \u0628\u0644\u0648\u06a9 \u062a\u0646\u0647\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u06cc\u06a9\u0628\u0627\u0631 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u0648\u062f."],"Exit Code Editor":["\u062e\u0631\u0648\u062c \u0627\u0632 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u06a9\u062f"],"Editing Code":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u062f"],"Solid Color":["\u0631\u0646\u06af \u062a\u0648\u067e\u064f\u0631"],"Main Color":["\u0631\u0646\u06af \u0627\u0635\u0644\u06cc"],HTML:["HTML"],"Write HTML\u2026":["\u0646\u0648\u0634\u062a\u0646 HTML ..."],"Media Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0631\u0633\u0627\u0646\u0647"],"Overlay Color":["\u067e\u0648\u0634\u0634 \u0631\u0646\u06af"],Overlay:["\u067e\u0648\u0634\u0634"],"Insert Media":["\u062f\u0631\u062c \u0631\u0633\u0627\u0646\u0647"],"Reusable block imported successfully!":["\u0628\u0644\u0627\u06a9 \u0628\u0627\u0632\u06a9\u0627\u0631\u0628\u0631\u062f\u067e\u0630\u06cc\u0631 \u0628\u0627\u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0634\u062f!"],"Invalid Reusable Block JSON file":["\u067e\u0631\u0648\u0646\u062f\u0647 JSON \u0628\u0644\u0627\u06a9 \u0628\u0627\u0632\u06a9\u0627\u0631\u0628\u0631\u062f\u067e\u0630\u06cc\u0631 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a"],"Invalid JSON file":["\u067e\u0631\u0648\u0646\u062f\u0647 JSON \u0646\u0627\u0645\u0639\u062a\u0628\u0631"],"Import from JSON":["\u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0627\u0632 JSON"],Backtick:["\u067e\u0634\u062a\u06cc"],Period:["\u062f\u0648\u0631\u0647 \u0632\u0645\u0627\u0646\u06cc"],Comma:["\u06a9\u0627\u0645\u0627"],"Change type of %d block":["\u062a\u063a\u06cc\u06cc\u0631 \u0646\u0648\u0639 \u0628\u0644\u0648\u06a9 %d"],Current:["\u062c\u0627\u0631\u06cc"],"After Conversion":["\u067e\u0633 \u0627\u0632 \u062a\u0628\u062f\u06cc\u0644"],"Change alignment":["\u062a\u063a\u06cc\u06cc\u0631 \u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc"],"Change text alignment":["\u062a\u063a\u06cc\u06cc\u0631 \u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u0645\u062a\u0646"],"%d block":["\u0628\u0644\u0648\u06a9(\u0647\u0627\u06cc) %d"],Escape:["\u067e\u0631\u0634 (\u0627\u0633\u06a9\u06cc\u067e)"],"Forward-slash":["\u062c\u0644\u0648-\u0639\u0642\u0628"],"No archives to show.":["\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"This file is empty.":["\u0627\u06cc\u0646 \u0641\u0627\u06cc\u0644 \u062e\u0627\u0644\u06cc \u0627\u0633\u062a."],"Sorry, this file type is not supported here.":["\u0645\u062a\u0627\u0633\u0641\u0627\u0646\u0647\u060c \u0627\u06cc\u0646 \u0646\u0648\u0639 \u0641\u0627\u06cc\u0644 \u062f\u0631 \u0627\u06cc\u0646\u062c\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc \u0634\u0648\u062f."],"Manage All Reusable Blocks":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u062a\u0645\u0627\u0645 \u0628\u0644\u0648\u06a9 \u0647\u0627\u06cc \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u062c\u062f\u062f"],Title:["\u0639\u0646\u0648\u0627\u0646"],"Fullscreen Mode":["\u062d\u0627\u0644\u062a \u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647"],"Beautiful landscape":["\u0645\u0646\u0638\u0631\u0647 \u0632\u06cc\u0628\u0627"],"Close panel":["\u0628\u0633\u062a\u0646 \u067e\u0646\u0644"],"Convert to Classic Block":["\u062a\u0628\u062f\u06cc\u0644 \u0628\u0647 \u0628\u0644\u0648\u06a9 \u06a9\u0644\u0627\u0633\u06cc\u06a9"],"Remove Poster Image":["\u062d\u0630\u0641 \u067e\u0648\u0633\u062a\u0631 \u062a\u0635\u0648\u06cc\u0631"],"Select Poster Image":["\u062a\u0635\u0648\u06cc\u0631 \u067e\u0648\u0633\u062a\u0631 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"Poster Image":["\u062a\u0635\u0648\u06cc\u0631 \u067e\u0648\u0633\u062a\u0631"],"This block is deprecated. Please use the Columns block instead.":["\u0627\u06cc\u0646 \u0628\u0644\u0627\u06a9 \u0642\u062f\u06cc\u0645\u06cc \u0634\u062f\u0647. \u0644\u0637\u0641\u0627 \u0627\u0632 \u0628\u0644\u0627\u06a9 \u0633\u062a\u0648\u0646\u200c\u0647\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f."],"Text Columns (deprecated)":["\u0645\u062a\u0646 \u0633\u062a\u0648\u0646\u06cc (\u0642\u062f\u06cc\u0645\u06cc \u0634\u062f\u0647)"],"Row Count":["\u062a\u0639\u062f\u0627\u062f \u0631\u062f\u06cc\u0641"],"Column Count":["\u062a\u0639\u062f\u0627\u062f \u0633\u062a\u0648\u0646"],"This block is deprecated. Please use the Paragraph block instead.":["\u0627\u06cc\u0646 \u0628\u0644\u0648\u06a9 \u0645\u0646\u0642\u0636\u06cc \u0634\u062f\u0647 \u0627\u0633\u062a \u0644\u0637\u0641\u0627 \u0628\u0647 \u062c\u0627\u06cc \u0622\u0646 \u0627\u0632 \u0628\u0644\u0648\u06a9 \u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f."],"Subheading (deprecated)":["\u0632\u06cc\u0631\u0639\u0646\u0648\u0627\u0646 (\u0645\u0646\u0633\u0648\u062e)"],blockquote:["\u0646\u0642\u0644 \u0642\u0648\u0644"],"Change the block type after adding a new paragraph.":["\u0628\u0639\u062f \u0627\u0632 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u06cc\u06a9 \u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641 \u062c\u062f\u06cc\u062f \u0646\u0648\u0639 \u0628\u0644\u0648\u06a9 \u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u062f\u0647\u06cc\u062f."],"Spotlight Mode":["\u062d\u0627\u0644\u062a \u0648\u06cc\u0698\u0647(\u062e\u0627\u0635)"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u0628\u0631\u0686\u0633\u0628 \u0647\u0627 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0648 \u0645\u0648\u062a\u0648\u0631\u0647\u0627\u06cc \u062c\u0633\u062a\u062c\u0648 \u06a9\u0645\u06a9 \u0645\u06cc \u06a9\u0646\u0646\u062f \u0628\u0647 \u0633\u0627\u06cc\u062a \u0634\u0645\u0627 \u0647\u062f\u0627\u06cc\u062a \u0634\u0648\u0646\u062f \u0648 \u0645\u062d\u062a\u0648\u0627\u06cc \u0634\u0645\u0627 \u0631\u0627 \u067e\u06cc\u062f\u0627 \u06a9\u0646\u0646\u062f. \u0686\u0646\u062f \u06a9\u0644\u0645\u0647 \u06a9\u0644\u06cc\u062f\u06cc \u0628\u0631\u0627\u06cc \u062a\u0648\u0635\u06cc\u0641 \u067e\u0633\u062a \u062e\u0648\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"Add tags":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0628\u0631\u0686\u0633\u0628"],"Apply the \"%1$s\" format.":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \"%1$s\" \u0641\u0631\u0645\u062a."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u0645\u0648\u0636\u0648\u0639 \u0634\u0645\u0627 \u0627\u0632 \u0641\u0631\u0645\u062a \u0647\u0627\u06cc \u0627\u0631\u0633\u0627\u0644\u06cc \u0628\u0631\u0627\u06cc \u0628\u0631\u062c\u0633\u062a\u0647 \u06a9\u0631\u062f\u0646 \u0627\u0646\u0648\u0627\u0639 \u0645\u062e\u062a\u0644\u0641 \u0645\u062d\u062a\u0648\u0627 \u0645\u0627\u0646\u0646\u062f \u062a\u0635\u0627\u0648\u06cc\u0631 \u0648 \u0648\u06cc\u062f\u06cc\u0648\u0647\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc \u06a9\u0646\u062f. \u06cc\u06a9 \u0642\u0627\u0644\u0628 \u0627\u0631\u0633\u0627\u0644\u06cc \u0628\u0631\u0627\u06cc \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0638\u0627\u0647\u0631 \u062e\u0627\u0635 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"Use a post format":["\u0627\u0632 \u0641\u0631\u0645\u062a \u0646\u0648\u0634\u062a\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f"],"Insert After":["\u067e\u0633 \u0627\u0632 \u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646"],"Insert Before":["\u0642\u0628\u0644 \u0627\u0632 \u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646"],"Move %1$d block from position %2$d down by one place":["\u062d\u0631\u06a9\u062a\u200c\u062f\u0627\u062f\u0646\u0650 %1$d \u0628\u0644\u0627\u06a9 \u0627\u0632 \u062c\u0627\u06cc\u06af\u0627\u0647 %2$d \u0628\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u0647\u200c\u06cc \u06cc\u06a9 \u0628\u0644\u0627\u06a9 \u0628\u0647 \u067e\u0627\u06cc\u06cc\u0646"],"Move %1$d block from position %2$d up by one place":["\u062d\u0631\u06a9\u062a\u200c\u062f\u0627\u062f\u0646\u0650 %1$d \u0628\u0644\u0627\u06a9 \u0627\u0632 \u062c\u0627\u06cc\u06af\u0627\u0647 %2$d \u0628\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u0647\u200c\u06cc \u06cc\u06a9 \u0628\u0644\u0627\u06a9 \u0628\u0647 \u0628\u0627\u0644\u0627"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["\u0641\u06cc\u0644\u0645"],"Insert a new block before the selected block(s).":["\u0628\u0644\u0627\u06a9\u06cc \u062a\u0627\u0632\u0647 \u0642\u0628\u0644 \u0627\u0632 \u0628\u0644\u0627\u06a9(\u0647\u0627\u06cc) \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647 \u062f\u0631\u062c \u06a9\u0646\u06cc\u062f."],"Remove the selected block(s).":["\u062d\u0630\u0641 \u0628\u0644\u0648\u06a9(\u0647\u0627\u06cc) \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647."],"Duplicate the selected block(s).":["\u062a\u06a9\u062b\u06cc\u0631 \u0628\u0644\u0648\u06a9(\u0647\u0627\u06cc) \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647."],"Block shortcuts":["\u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc \u0628\u0644\u0648\u06a9"],"Clear selection.":["\u062d\u0630\u0641 \u0627\u0646\u062a\u062e\u0627\u0628"],"Select all text when typing. Press again to select all blocks.":["\u0647\u0646\u06af\u0627\u0645 \u062a\u0627\u06cc\u067e \u062a\u0645\u0627\u0645 \u0645\u062a\u0646 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f \u0628\u0631\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u062a\u0645\u0627\u0645 \u0628\u0644\u0648\u06a9 \u0647\u0627 \u062f\u0648\u0628\u0627\u0631\u0647 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f."],"Selection shortcuts":["\u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc \u0645\u0646\u062a\u062e\u0628"],"Switch between Visual Editor and Code Editor.":["\u062a\u063a\u06cc\u06cc\u0631 \u0628\u06cc\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u062f\u06cc\u062f\u0627\u0631\u06cc \u0648 \u0645\u062a\u0646\u06cc."],"Navigate to the previous part of the editor (alternative).":["\u062d\u0631\u06a9\u062a \u0628\u0647 \u0628\u062e\u0634 \u0642\u0628\u0644\u06cc \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 (\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646)."],"Navigate to the next part of the editor (alternative).":["\u062d\u0631\u06a9\u062a \u0628\u0647 \u0628\u062e\u0634 \u0628\u0639\u062f\u06cc \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 (\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646)."],"Navigate to the previous part of the editor.":["\u062d\u0631\u06a9\u062a \u0628\u0647 \u0628\u062e\u0634 \u0642\u0628\u0644\u06cc \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631."],"Navigate to the next part of the editor.":["\u062d\u0631\u06a9\u062a \u0628\u0647 \u0628\u062e\u0634 \u0628\u0639\u062f\u06cc \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631."],"Show or hide the settings sidebar.":["\u0646\u0648\u0627\u0631 \u06a9\u0646\u0627\u0631\u06cc \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0631\u0627 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u06cc\u0627 \u067e\u0646\u0647\u0627\u0646 \u06a9\u0646\u06cc\u062f."],"Redo your last undo.":["\u0627\u0646\u062c\u0627\u0645 \u062f\u0648\u0628\u0627\u0631\u0647 \u0622\u062e\u0631\u06cc\u0646 \u0644\u063a\u0648 \u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f\u0647 \u0634\u0645\u0627."],"Undo your last changes.":["\u0644\u063a\u0648\u0627\u0646\u062c\u0627\u0645 \u0622\u062e\u0631\u06cc\u0646 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0634\u0645\u0627."],"Save your changes.":["\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062e\u0648\u062f \u0631\u0627 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u062f."],"Global shortcuts":["\u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc \u0639\u0645\u0648\u0645\u06cc"],"Remove a link.":["\u062d\u0630\u0641 \u06cc\u06a9 \u0644\u06cc\u0646\u06a9."],"Convert the selected text into a link.":["\u062a\u0628\u062f\u06cc\u0644 \u0645\u062a\u0646 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0628\u0647 \u06cc\u06a9 \u0644\u06cc\u0646\u06a9."],"Underline the selected text.":["\u0632\u06cc\u0631\u062e\u0637 \u062f\u0627\u0631 \u06a9\u0631\u062f\u0646 \u0645\u062a\u0646 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647."],"Make the selected text italic.":["\u06a9\u062c\u200c\u06a9\u0631\u062f\u0646 \u0645\u062a\u0646 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647."],"Make the selected text bold.":["\u0636\u062e\u06cc\u0645\u200c\u06a9\u0631\u062f\u0646 \u0645\u062a\u0646 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647."],"Text formatting":["\u0641\u0631\u0645\u062a \u0645\u062a\u0646"],"Insert a new block after the selected block(s).":["\u0628\u0639\u062f \u0627\u0632 \u0628\u0644\u0648\u06a9 (\u0647\u0627\u06cc) \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647\u060c \u06cc\u06a9 \u0628\u0644\u0648\u06a9 \u062c\u062f\u06cc\u062f \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"Keyboard Shortcuts":["\u0645\u06cc\u0627\u0646\u200c\u0628\u0631\u0647\u0627\u06cc \u0635\u0641\u062d\u0647\u200c\u06a9\u0644\u06cc\u062f"],"Thanks for testing Gutenberg!":["\u062a\u0634\u06a9\u0631 \u0628\u0631\u0627\u06cc \u0622\u0632\u0645\u0627\u06cc\u0634 \u06af\u0648\u062a\u0646\u0628\u0631\u06af!"],"Help build Gutenberg":["\u0631\u0627\u0647\u0646\u0645\u0627 \u0633\u0627\u062e\u062a\u0646 \u06af\u0648\u062a\u0646\u0628\u0631\u06af"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["\u0627\u06af\u0631 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u062f\u0631\u0628\u0627\u0631\u0647 \u0646\u062d\u0648\u0647 \u0633\u0627\u062e\u062a \u0628\u0644\u0648\u06a9\u200c\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc \u0628\u06cc\u0634\u062a\u0631 \u0628\u062f\u0627\u0646\u06cc\u062f\u060c \u06cc\u0627 \u0627\u06af\u0631 \u0628\u0647 \u06a9\u0645\u06a9 \u0628\u0647 \u067e\u0631\u0648\u0698\u0647 \u0639\u0644\u0627\u0642\u0647\u200c\u0645\u0646\u062f \u0647\u0633\u062a\u06cc\u062f \u0628\u0647 \u0645\u062e\u0632\u0646 GitHub \u0633\u0631 \u0628\u0632\u0646\u06cc\u062f."],"The WordPress community":["\u062c\u0627\u0645\u0639\u0647 \u0648\u0631\u062f\u067e\u0631\u0633"],"Code is Poetry":["\u06a9\u062f \u0634\u0639\u0631 \u0627\u0633\u062a"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["\u0634\u0645\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0647\u0631 \u0628\u0644\u0648\u06a9\u06cc \u06a9\u0647 \u062f\u0648\u0633\u062a \u062f\u0627\u0631\u06cc\u062f \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u06cc\u062f\u060c \u0627\u0633\u062a\u0627\u062a\u06cc\u06a9 \u06cc\u0627 \u067e\u0648\u06cc\u0627\u060c \u062a\u0632\u0626\u06cc\u0646\u06cc \u06cc\u0627 \u0633\u0627\u062f\u0647. \u062f\u0631 \u0627\u06cc\u0646\u062c\u0627 \u06cc\u06a9 \u0628\u0644\u0648\u06a9 \u0628\u0627\u0644\u0627\u06cc\u06cc \u0627\u0633\u062a:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["\u0647\u0631 \u0628\u0644\u0648\u06a9 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062a\u0631\u0627\u0632\u0648\u0647\u0627 \u0628\u0631\u0633\u062f. \u0628\u0644\u0648\u06a9 \u062c\u0627\u0633\u0627\u0632\u06cc \u0646\u06cc\u0632 \u0622\u0646\u0647\u0627 \u0631\u0627 \u062f\u0627\u0631\u062f \u0648 \u0627\u0632 \u062c\u0639\u0628\u0647 \u067e\u0627\u0633\u062e\u06af\u0648 \u0627\u0633\u062a:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["\u0639\u06a9\u0633 \u0628\u0627\u0644\u0627 \u06cc\u06a9 \u06af\u0627\u0644\u0631\u06cc \u0628\u0627 \u062f\u0648 \u062a\u0635\u0648\u06cc\u0631 \u0627\u0633\u062a. \u0627\u06cc\u0646 \u06cc\u06a9 \u0631\u0648\u0634 \u0633\u0627\u062f\u0647\u200c\u062a\u0631 \u0628\u0631\u0627\u06cc \u0627\u06cc\u062c\u0627\u062f \u0637\u0631\u062d\u200c\u0647\u0627\u06cc \u062c\u0630\u0627\u0628 \u0628\u0635\u0631\u06cc \u0627\u0633\u062a\u060c \u0628\u062f\u0648\u0646 \u0627\u06cc\u0646 \u06a9\u0647 \u0645\u062c\u0628\u0648\u0631 \u0628\u0627\u0634\u06cc\u062f \u0628\u0627 \u0634\u0646\u0627\u0648\u0631 \u0634\u062f\u0646 \u0633\u0631 \u0648 \u06a9\u0627\u0631 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f. \u0647\u0645\u0686\u0646\u06cc\u0646 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u0647 \u0631\u0627\u062d\u062a\u06cc \u06af\u0627\u0644\u0631\u06cc \u0631\u0627 \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u062a\u0639\u0648\u06cc\u0636 \u0628\u0644\u0648\u06a9 \u0628\u0647 \u062a\u0635\u0627\u0648\u06cc\u0631 \u0627\u0646\u0641\u0631\u0627\u062f\u06cc \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0646\u06cc\u062f."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["\u0645\u0637\u0645\u0626\u0646\u0627\u060c \u062a\u0635\u0648\u06cc\u0631 \u062a\u0645\u0627\u0645 \u0639\u06cc\u0627\u0631 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0628\u0633\u06cc\u0627\u0631 \u0628\u0632\u0631\u06af \u0628\u0627\u0634\u062f. \u0627\u0645\u0627 \u06af\u0627\u0647\u06cc \u0627\u0648\u0642\u0627\u062a \u062a\u0635\u0648\u06cc\u0631 \u0627\u0631\u0632\u0634\u0634 \u0631\u0627 \u062f\u0627\u0631\u062f."],"Accessibility is important — don’t forget image alt attribute":["\u0642\u0627\u0628\u0644\u06cc\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0647\u0645 \u0627\u0633\u062a & mdash\u061b \u0648\u06cc\u0698\u06af\u06cc alt \u062a\u0635\u0648\u06cc\u0631 \u0631\u0627 \u0641\u0631\u0627\u0645\u0648\u0634 \u0646\u06a9\u0646"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["\u0627\u06af\u0631 \u0634\u0645\u0627 \u062a\u0631\u06a9\u06cc\u0628 \u062c\u062f\u06cc\u062f \u06af\u0633\u062a\u0631\u062f\u0647 \u0648 \u062a\u0645\u0627\u0645 \u0639\u06cc\u0627\u0631 \u0628\u0627 \u06af\u0627\u0644\u0631\u06cc\u200c\u0647\u0627 \u0631\u0627 \u062a\u0631\u06a9\u06cc\u0628 \u06a9\u0646\u06cc\u062f\u060c \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0637\u0631\u062d \u0628\u0633\u06cc\u0627\u0631 \u063a\u0646\u06cc \u0627\u0632 \u0631\u0633\u0627\u0646\u0647\u200c\u0647\u0627 \u0631\u0627 \u0628\u0633\u06cc\u0627\u0631 \u0633\u0631\u06cc\u0639 \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u06cc\u062f:"],"Media Rich":["\u0631\u0633\u0627\u0646\u0647 \u063a\u0646\u06cc"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["\u0634\u0645\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u0627 \u06a9\u0634\u06cc\u062f\u0646 \u06cc\u06a9 \u0627\u0633\u0644\u0627\u06cc\u062f\u0631 \u062f\u0631 \u0646\u0648\u0627\u0631 \u06a9\u0646\u0627\u0631\u06cc \u0645\u0642\u062f\u0627\u0631 \u0633\u062a\u0648\u0646\u200c\u0647\u0627 \u0631\u0627 \u062f\u0631 \u06af\u0627\u0644\u0631\u06cc\u200c\u0647\u0627\u06cc \u062e\u0648\u062f \u062a\u063a\u06cc\u06cc\u0631 \u062f\u0647\u06cc\u062f."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["\u0628\u0644\u0648\u06a9 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0647\u0631 \u0686\u06cc\u0632\u06cc \u06a9\u0647 \u0646\u06cc\u0627\u0632 \u062f\u0627\u0631\u06cc\u062f \u0628\u0627\u0634\u062f \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0645\u062b\u0627\u0644\u060c \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0628\u062e\u0648\u0627\u0647\u06cc\u062f \u06cc\u06a9 \u0646\u0642\u0644 \u0642\u0648\u0644 \u0636\u0639\u06cc\u0641 \u0631\u0627 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0628\u062e\u0634\u06cc \u0627\u0632 \u0645\u062a\u0646 \u0645\u062a\u0646 \u062e\u0648\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f\u060c \u06cc\u0627 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u062a\u0631\u062c\u06cc\u062d \u062f\u0647\u06cc\u062f \u06cc\u06a9 \u0646\u0645\u0627\u06cc\u0634\u06af\u0631 \u063a\u0648\u0644 \u067e\u06cc\u06a9\u0631 \u062a\u0644\u0642\u06cc \u06a9\u0646\u06cc\u062f. \u0647\u0645\u0647 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647\u200c\u0647\u0627 \u062f\u0631 \u062f\u0627\u062e\u0644 \u062f\u0631\u062c \u0634\u062f\u0647 \u0627\u0633\u062a."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0645\u0631\u0628\u0648\u0637 \u0628\u0647 \u0645\u0646\u0628\u0639 \u0646\u0642\u0644 \u0642\u0648\u0644 \u06cc\u06a9 \u0641\u06cc\u0644\u062f \u0645\u062a\u0646\u06cc \u062c\u062f\u0627\u06af\u0627\u0646\u0647 \u0627\u0633\u062a\u060c \u0634\u0628\u06cc\u0647 \u0628\u0647 \u0632\u06cc\u0631\u0646\u0648\u06cc\u0633\u200c\u0647\u0627 \u062f\u0631 \u0632\u06cc\u0631 \u062a\u0635\u0627\u0648\u06cc\u0631\u060c \u0628\u0646\u0627\u0628\u0631\u0627\u06cc\u0646 \u0633\u0627\u062e\u062a\u0627\u0631 \u0646\u0642\u0644 \u0642\u0648\u0644 \u0645\u062d\u0627\u0641\u0638\u062a \u0645\u06cc\u200c\u0634\u0648\u062f \u062d\u062a\u06cc \u0627\u06af\u0631 \u0634\u0645\u0627 \u0627\u0646\u062a\u062e\u0627\u0628\u060c \u0627\u0635\u0644\u0627\u062d \u0648 \u06cc\u0627 \u062d\u0630\u0641 \u0645\u0646\u0628\u0639. \u0647\u0645\u06cc\u0634\u0647 \u0622\u0633\u0627\u0646 \u0627\u0633\u062a \u0628\u0631\u0627\u06cc \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0622\u0646 \u0628\u0647 \u0639\u0642\u0628."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["\u0645\u0632\u06cc\u062a \u0628\u0632\u0631\u06af\u06cc \u0627\u0632 \u0628\u0644\u0648\u06a9\u200c\u0647\u0627 \u0627\u06cc\u0646 \u0627\u0633\u062a \u06a9\u0647 \u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0622\u0646\u0647\u0627 \u0631\u0627 \u062f\u0631 \u062c\u0627\u06cc \u062e\u0648\u062f \u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0646\u06cc\u062f \u0648 \u0645\u062d\u062a\u0648\u0627\u06cc \u062e\u0648\u062f \u0631\u0627 \u0628\u0647 \u0637\u0648\u0631 \u0645\u0633\u062a\u0642\u06cc\u0645 \u062f\u0633\u062a\u06a9\u0627\u0631\u06cc \u06a9\u0646\u06cc\u062f. \u0628\u0647 \u062c\u0627\u06cc \u062f\u0627\u0634\u062a\u0646 \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc\u06cc \u0628\u0631\u0627\u06cc \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0686\u06cc\u0632\u0647\u0627\u06cc\u06cc \u0645\u0627\u0646\u0646\u062f \u0645\u0646\u0628\u0639 \u0646\u0642\u0644 \u0642\u0648\u0644 \u06cc\u0627 \u0645\u062a\u0646 \u06cc\u06a9 \u062f\u06a9\u0645\u0647\u060c \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0645\u062d\u062a\u0648\u0627\u06cc \u0622\u0646 \u0631\u0627 \u0628\u0647 \u0637\u0648\u0631 \u0645\u0633\u062a\u0642\u06cc\u0645 \u062a\u063a\u06cc\u06cc\u0631 \u062f\u0647\u06cc\u062f. \u0633\u0639\u06cc \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0646\u0642\u0644 \u0642\u0648\u0644 \u0632\u06cc\u0631 \u0631\u0627 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0646\u06cc\u062f:"],"Visual Editing":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u062f\u06cc\u062f\u0627\u0631\u06cc"],"And Lists like this one of course :)":["\u0648 \u0644\u06cc\u0633\u062a\u200c\u0647\u0627 \u0627\u0644\u0628\u062a\u0647 \u0645\u0627\u0646\u0646\u062f \u0627\u06cc\u0646 \u06cc\u06a9\u06cc :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["\u0637\u0631\u062d \u0628\u0646\u062f\u06cc \u0628\u0644\u0648\u06a9\u200c\u0647\u0627\u060c \u0634\u0628\u0647\u0647 \u062f\u06a9\u0645\u0647\u200c\u0647\u0627\u060c \u062a\u0635\u0627\u0648\u06cc\u0631 \u0634\u0627\u062e\u0635\u060c \u062c\u062f\u0627\u06a9\u0646\u0646\u062f\u0647\u200c\u0647\u0627 \u0648 \u063a\u06cc\u0631\u0647."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0646\u060c \u0645\u0627\u0646\u0646\u062f \u06cc\u0648\u062a\u06cc\u0648\u0628\u060c \u062a\u0648\u06cc\u062a\u200c\u0647\u0627\u060c \u0648 \u06cc\u0627 \u0633\u0627\u06cc\u0631 \u067e\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0631\u062f\u067e\u0631\u0633."],Galleries:["\u06af\u0627\u0644\u0631\u06cc\u0647\u0627"],"Images & Videos":["\u0641\u06cc\u0644\u0645 \u0648 \u062a\u0635\u0627\u0648\u06cc\u0631"],"Text & Headings":["\u0645\u062a\u0646 \u0648 \u0639\u0646\u0648\u0627\u0646"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["\u062a\u0635\u0648\u0631 \u06a9\u0646\u06cc\u062f \u0647\u0645\u0647 \u0686\u06cc\u0632\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0648\u0631\u062f\u067e\u0631\u0633 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0627\u0646\u062c\u0627\u0645 \u062f\u0647\u062f \u0628\u0647 \u0634\u0645\u0627 \u062f\u0631 \u0633\u0631\u0639\u062a \u0648 \u062f\u0631 \u0647\u0645\u0627\u0646 \u0645\u06a9\u0627\u0646 \u062f\u0631 \u0631\u0627\u0628\u0637 \u06a9\u0627\u0631\u0628\u0631\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0627\u0633\u062a. \u0628\u062f\u0648\u0646 \u0646\u06cc\u0627\u0632 \u0628\u0647 \u062a\u0634\u062e\u06cc\u0635 \u062a\u06af \u0647\u0627\u06cc HTML\u060c \u06a9\u0644\u0627\u0633 \u0647\u0627\u060c \u0648 \u06cc\u0627 \u0628\u0647 \u06cc\u0627\u062f \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f \u0646\u062d\u0648 \u0645\u062e\u062a\u0635\u0631 \u06a9\u0648\u062a\u0627\u0647. \u0627\u06cc\u0646 \u0631\u0648\u062d \u067e\u0634\u062a \u0648\u0631\u0648\u062f\u06cc \u0627\u0633\u062a - \u062f\u06a9\u0645\u0647 (+)\u06a9\u0647 \u062f\u0631 \u0627\u0637\u0631\u0627\u0641 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0645\u0634\u0627\u0647\u062f\u0647 \u0645\u06cc \u06a9\u0646\u06cc\u062f\u060c \u06a9\u0647 \u0628\u0647 \u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0645\u06cc \u062f\u0647\u062f \u062a\u0645\u0627\u0645 \u0628\u0644\u0648\u06a9 \u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0644\u06cc\u0633\u062a \u0631\u0627 \u0645\u0631\u0648\u0631 \u06a9\u0646\u06cc\u062f \u0648 \u0622\u0646\u0647\u0627 \u0631\u0627 \u062f\u0631 \u067e\u0633\u062a \u062e\u0648\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f. \u067e\u0644\u0627\u06af\u06cc\u0646 \u0647\u0627 \u0648 \u062a\u0645 \u0647\u0627 \u0642\u0627\u062f\u0631 \u0628\u0647 \u062b\u0628\u062a \u0646\u0627\u0645 \u062e\u0648\u062f\u060c \u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u0647\u0645\u0647 \u0646\u0648\u0639 \u0627\u0632 \u0627\u0645\u06a9\u0627\u0646\u0627\u062a \u0628\u0631\u0627\u06cc \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0648 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u063a\u0646\u06cc \u0627\u0633\u062a."],"The Inserter Tool":["\u0627\u0628\u0632\u0627\u0631 \u062f\u0631\u062c \u06a9\u0646\u0646\u062f\u0647"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["\u0627\u06af\u0631 \u067e\u0648\u0633\u062a\u0647 \u0634\u0645\u0627 \u0627\u0632 \u0622\u0646 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u06a9\u0646\u062f \u062f\u06a9\u0645\u0647 \"\u0639\u0631\u06cc\u0636\" \u0631\u0627 \u062f\u0631 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 \u062a\u0635\u0648\u06cc\u0631 \u0645\u0634\u0627\u0647\u062f\u0647 \u062e\u0648\u0627\u0647\u06cc\u062f \u06a9\u0631\u062f. \u0622\u0646 \u0631\u0627 \u0627\u0645\u062a\u062d\u0627\u0646 \u06a9\u0646\u06cc\u062f."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["\u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 \u0627\u0631\u0632\u0634 \u0647\u0632\u0627\u0631 \u06a9\u0644\u0645\u0647 \u062f\u0627\u0631\u062f"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":["... \u0645\u0627\u0646\u0646\u062f \u0627\u06cc\u0646 \u06cc\u06a9\u06cc\u060c \u06a9\u0647 \u0631\u0627\u0633\u062a \u0686\u06cc\u0646 \u0634\u062f\u0647 \u0627\u0633\u062a."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["\u0622\u0646\u0686\u0647 \u06a9\u0647 \u062f\u0631 \u062d\u0627\u0644 \u062e\u0648\u0627\u0646\u062f\u0646 \u0647\u0633\u062a\u06cc\u062f text block \u0627\u0633\u062a \u06a9\u0647 \u067e\u0627\u06cc\u0647 \u0627\u0635\u0644\u06cc \u0647\u0645\u0647 \u0627\u0633\u062a. \u0628\u0644\u0648\u06a9 \u0645\u062a\u0646 \u062f\u0627\u0631\u0627\u06cc \u06a9\u0646\u062a\u0631\u0644 \u0647\u0627\u06cc \u062e\u0627\u0635\u06cc \u0627\u0633\u062a \u06a9\u0647 \u0628\u0647 \u0637\u0648\u0631 \u0622\u0632\u0627\u062f\u0627\u0646\u0647 \u062f\u0631 \u0627\u0637\u0631\u0627\u0641 \u067e\u0633\u062a \u0645\u0646\u062a\u0642\u0644 \u0645\u06cc \u0634\u0648\u062f ..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["\u0647\u062f\u0641 \u0627\u06cc\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u062c\u062f\u06cc\u062f \u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc \u063a\u0646\u06cc \u0628\u0647 \u0648\u0631\u062f\u067e\u0631\u0633 \u0633\u0627\u062f\u0647 \u0648 \u0644\u0630\u062a \u0628\u062e\u0634 \u0627\u0633\u062a. \u0627\u06cc\u0646 \u067e\u0633\u062a \u06a9\u0627\u0645\u0644 \u0634\u0627\u0645\u0644 pieces of content \u0627\u0633\u062a - \u062a\u0627 \u062d\u062f\u0648\u062f\u06cc \u0634\u0628\u06cc\u0647 \u0628\u0647 \u0622\u062c\u0631 LEGO - \u06a9\u0647 \u0645\u06cc\u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u0627 \u0622\u0646 \u062d\u0631\u06a9\u062a \u06a9\u0646\u06cc\u062f \u0648 \u0628\u0627 \u0622\u0646 \u0627\u0631\u062a\u0628\u0627\u0637 \u0628\u0631\u0642\u0631\u0627\u0631 \u06a9\u0646\u06cc\u062f. \u062d\u0631\u06a9\u062a \u0645\u06a9\u0627\u0646 \u0646\u0645\u0627 \u062e\u0648\u062f \u0631\u0627 \u062f\u0631 \u0627\u0637\u0631\u0627\u0641 \u0648 \u0634\u0645\u0627 \u0645\u062a\u0648\u062c\u0647 \u0628\u0644\u0648\u06a9 \u0647\u0627\u06cc \u0645\u062e\u062a\u0644\u0641 \u0646\u0648\u0631 \u0628\u0627 \u062e\u0637\u0648\u0637 \u0648 \u0641\u0644\u0634. \u0641\u0644\u0634 \u0631\u0627 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f \u062a\u0627 \u0628\u0644\u0648\u06a9 \u0631\u0627 \u0628\u0647 \u0633\u0631\u0639\u062a \u062a\u063a\u06cc\u06cc\u0631 \u062f\u0647\u06cc\u062f\u060c \u0628\u062f\u0648\u0646 \u0627\u06cc\u0646\u06a9\u0647 \u062a\u0631\u0633 \u0627\u0632 \u062f\u0633\u062a \u062f\u0627\u062f\u0646 \u0686\u06cc\u0632\u0647\u0627\u06cc\u06cc \u0631\u0627 \u062f\u0631 \u0631\u0648\u0646\u062f \u06a9\u067e\u06cc \u0648 \u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f."],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["\u0628\u0647 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u06af\u0648\u062a\u0646\u0628\u0631\u06af \u062e\u0648\u0634 \u0622\u0645\u062f\u06cc\u062f"],"block name\x04More":["\u0628\u06cc\u0634\u062a\u0631"],"button to expand options\x04More":["\u0628\u06cc\u0634\u062a\u0631"],"Are you sure you want to unschedule this post?":["\u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u067e\u0633\u062a \u0631\u0627 \u063a\u06cc\u0631\u0642\u0627\u0628\u0644 \u0628\u0631\u0646\u0627\u0645\u0647 \u0631\u06cc\u0632\u06cc \u06a9\u0646\u06cc\u062f\u061f"],"Alt Text (Alternative Text)":["\u0645\u062a\u0646 \u0622\u0644\u062a (\u0645\u062a\u0646 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646)"],"Reusable Block":["\u0628\u0644\u0648\u06a9 \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u062c\u062f\u062f"],"Unique identifier for the object.":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0646\u062d\u0635\u0631 \u0628\u0647 \u0641\u0631\u062f \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0634\u06cc."],"Untitled Reusable Block":["\u0628\u0644\u0627\u06a9 \u0628\u0627\u0632\u06a9\u0627\u0631\u0628\u0631\u062f\u067e\u0630\u06cc\u0631 \u0628\u062f\u0648\u0646 \u0639\u0646\u0648\u0627\u0646"],Small:["\u06a9\u0648\u0686\u06a9"],"(%s: %s)":["(%s: %s)"],Reusable:["\u0628\u0627\u0632\u06a9\u0627\u0631\u0628\u0631\u062f\u067e\u0630\u06cc\u0631"],"(current %s: %s)":["(\u0641\u0639\u0644\u06cc %s: %s)"],"Remove from Reusable Blocks":["\u062d\u0630\u0641 \u0627\u0632 \u0628\u0644\u0627\u06a9\u200c\u0647\u0627\u06cc \u0628\u0627\u0632\u06a9\u0627\u0631\u0628\u0631\u062f\u067e\u0630\u06cc\u0631"],"Add to Reusable Blocks":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0628\u0647 \u0628\u0644\u0627\u06a9\u200c\u0647\u0627\u06cc \u0628\u0627\u0632\u06a9\u0627\u0631\u0628\u0631\u062f\u067e\u0630\u06cc\u0631"],"Keep as HTML":["\u0646\u06af\u0647 \u062f\u0627\u0634\u062a\u0646 \u0628\u0639\u0646\u0648\u0627\u0646 HTML"],"Edit URL":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0644\u06cc\u0646\u06a9"],"Color Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0631\u0646\u06af"],"The response is not a valid JSON response.":["\u062c\u0648\u0627\u0628 \u067e\u0627\u0633\u062e \u062c\u06cc\u0633\u0648\u0646 \u0645\u0639\u062a\u0628\u0631 \u0646\u06cc\u0633\u062a."],"Editor publish":["\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0639\u0645\u0648\u0645\u06cc"],Muted:["\u0633\u06a9\u0648\u062a"],"Video Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0648\u06cc\u062f\u0626\u0648"],"recent comments":["\u062f\u06cc\u062f\u06af\u0627\u0647\u0647\u0627\u06cc \u0627\u062e\u06cc\u0631"],"Latest Comments":["\u0622\u062e\u0631\u06cc\u0646 \u0646\u0638\u0631\u0627\u062a"],"Display Excerpt":["\u0646\u0645\u0627\u06cc\u0634 \u0686\u06a9\u06cc\u062f\u0647"],"Display Date":["\u062a\u0627\u0631\u06cc\u062e \u0646\u0645\u0627\u06cc\u0634"],"Display Avatar":["\u0646\u0645\u0627\u06cc\u0634 \u0622\u0648\u0627\u062a\u0627\u0631"],"Latest Comments Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0622\u062e\u0631\u06cc\u0646 \u062f\u06cc\u062f\u06af\u0627\u0647\u200c\u0647\u0627"],"Number of Comments":["\u062a\u0639\u062f\u0627\u062f \u062f\u06cc\u062f\u06af\u0627\u0647\u200c\u0647\u0627"],"Background Opacity":["\u0648\u0636\u0648\u062d \u067e\u0633 \u0632\u0645\u06cc\u0646\u0647"],Auto:["\u062e\u0648\u062f\u06a9\u0627\u0631"],Preload:["\u067e\u06cc\u0634\u200c\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc"],"Audio Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0635\u0648\u062a\u06cc"],"Display a monthly archive of your posts.":["\u0646\u0645\u0627\u06cc\u0634 \u06cc\u06a9 \u0622\u0631\u0634\u06cc\u0648 \u0645\u0627\u0647\u0627\u0646\u0647 \u0627\u0632 \u067e\u0633\u062a\u200c\u0647\u0627\u06cc \u062e\u0648\u062f."],"Display as Dropdown":["\u0646\u0645\u0627\u06cc\u0634 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0641\u0647\u0631\u0633\u062a \u0628\u0627\u0632\u0634\u0648"],"Show Post Counts":["\u0646\u0645\u0627\u06cc\u0634 \u062a\u0639\u062f\u0627\u062f \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627"],"Archives Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0627\u06cc\u06af\u0627\u0646\u06cc"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"No comments to show.":["\u062a\u0639\u062f\u0627\u062f \u062f\u06cc\u062f\u06af\u0627\u0647 \u062c\u0647\u062a \u0646\u0645\u0627\u06cc\u0634."],"%1$s on %2$s":["%1$s \u062f\u0631 %2$s"],"Select Post":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0648\u0634\u062a\u0647"],"Select Week":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0641\u062a\u0647"],"Select Day":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0631\u0648\u0632"],"Select Month":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0645\u0627\u0647"],"Select Year":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0633\u0627\u0644"],Archives:["\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc \u0647\u0627"],"Very dark gray":["\u0637\u0648\u0633\u06cc \u062e\u06cc\u0644\u06cc \u062a\u06cc\u0631\u0647"],"Cyan bluish gray":["\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u0645\u0627\u06cc\u0644 \u0628\u0647 \u0622\u0628\u06cc"],"Very light gray":["\u0637\u0648\u0633\u06cc \u062e\u06cc\u0644\u06cc \u0631\u0648\u0634\u0646"],"Vivid cyan blue":["\u0622\u0628\u06cc \u0641\u06cc\u0631\u0648\u0632\u0647\u200c\u0627\u06cc \u0632\u0646\u062f\u0647"],"Pale cyan blue":["\u0622\u0628\u06cc \u0641\u06cc\u0631\u0648\u0632\u0647\u200c\u0627\u06cc \u06a9\u0645 \u0631\u0646\u06af"],"Vivid green cyan":["\u0633\u0628\u0632 \u0641\u06cc\u0631\u0648\u0632\u0647\u200c\u0627\u06cc \u0632\u0646\u062f\u0647"],"Light green cyan":["\u0633\u0628\u0632 \u0631\u0648\u0634\u0646"],"Luminous vivid amber":["\u06a9\u0647\u0631\u0628\u0627\u06cc\u06cc \u0631\u0648\u0634\u0646 \u062f\u0631\u062e\u0634\u0627\u0646"],"Luminous vivid orange":["\u0646\u0627\u0631\u0646\u062c\u06cc \u0631\u0648\u0634\u0646 \u062f\u0631\u062e\u0634\u0627\u0646"],"Vivid red":["\u0642\u0631\u0645\u0632 \u0631\u0648\u0634\u0646"],"Pale pink":["\u0635\u0648\u0631\u062a\u06cc \u06a9\u0645\u200c\u0631\u0646\u06af"],"Inline image":["\u062a\u0635\u0648\u06cc\u0631 \u062a\u0648\u06a9\u0627\u0631"],"Available block types":["\u0627\u0646\u0648\u0627\u0639 \u0628\u0644\u0648\u06a9 \u0645\u0648\u062c\u0648\u062f"],"Transform To:":["\u062a\u0628\u062f\u06cc\u0644 \u0628\u0647:"],"Remove Block":["\u062d\u0630\u0641 \u0628\u0644\u0648\u06a9"],"Open publish panel":["\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u067e\u0646\u0644 \u0627\u0646\u062a\u0634\u0627\u0631"],Dots:["\u0646\u0642\u0637\u0647 \u0686\u06cc\u0646"],"Wide Line":["\u062e\u0637 \u0645\u0645\u062a\u062f"],Large:["\u0628\u0632\u0631\u06af"],"Show download button":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u06a9\u0645\u0647 \u062f\u0627\u0646\u0644\u0648\u062f"],"Download button settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062f\u06a9\u0645\u0647 \u062f\u0627\u0646\u0644\u0648\u062f"],"Link To":["\u0644\u06cc\u0646\u06a9 \u0628\u0647"],"Text link settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0648\u0646\u062f \u0645\u062a\u0646"],pdf:["pdf"],document:["\u0633\u0646\u062f"],"Copy URL":["\u06a9\u067e\u06cc \u0622\u062f\u0631\u0633"],"Write file name\u2026":["\u0646\u0627\u0645 \u067e\u0631\u0648\u0646\u062f\u0647 \u0631\u0627 \u0628\u0646\u0648\u06cc\u0633\u06cc\u062f..."],"Edit file":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0641\u0627\u06cc\u0644"],File:["\u0641\u0627\u06cc\u0644"],"A single column within a columns block.":["\u06cc\u06a9 \u0633\u062a\u0648\u0646 \u062a\u0646\u0647\u0627 \u062f\u0631 \u062f\u0627\u062e\u0644 \u06cc\u06a9 \u0628\u0644\u0648\u06a9 \u0633\u062a\u0648\u0646."],Column:["\u0633\u062a\u0648\u0646"],Outline:["\u062e\u0627\u0631\u062c \u062e\u0637"],Loop:["\u062d\u0644\u0642\u0647"],Autoplay:["\u067e\u062e\u0634 \u062e\u0648\u062f\u06a9\u0627\u0631"],"Playback Controls":["\u06a9\u0646\u062a\u0631\u0644 \u067e\u062e\u0634"],"Close dialog":["\u0628\u0633\u062a\u0646 \u06af\u0641\u062a\u06af\u0648"],"Sorry, this file type is not permitted for security reasons.":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634\u060c \u0627\u06cc\u0646 \u0646\u0648\u0639 \u067e\u0631\u0648\u0646\u062f\u0647 \u0628\u0647 \u062f\u0644\u0627\u06cc\u0644 \u0627\u0645\u0646\u06cc\u062a\u06cc \u0645\u062c\u0627\u0632 \u0646\u06cc\u0633\u062a."],"Disable tips":["\u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0631\u0627\u0647\u0646\u0645\u0627\u06cc\u06cc \u0647\u0627"],"Got it":["\u0641\u0647\u0645\u06cc\u062f\u0645"],"See next tip":["\u062f\u06cc\u062f\u0646 \u0646\u06a9\u062a\u0647 \u0628\u0639\u062f\u06cc"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u0648\u0642\u062a\u06cc \u0622\u0645\u0627\u062f\u0647 \u0647\u0633\u062a\u06cc\u062f\u060c \u06a9\u0627\u0631 \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u0628\u0631\u0631\u0633\u06cc \u0627\u0631\u0633\u0627\u0644 \u06a9\u0646\u06cc\u062f\u060c \u0648 \u06cc\u06a9 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0642\u0627\u062f\u0631 \u062e\u0648\u0627\u0647\u062f \u0628\u0648\u062f \u0622\u0646 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0634\u0645\u0627 \u062a\u0623\u06cc\u06cc\u062f \u06a9\u0646\u062f."],"Are you ready to submit for review?":["\u0622\u06cc\u0627 \u0622\u0645\u0627\u062f\u0647 \u0627\u0631\u0633\u0627\u0644 \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u0647\u0633\u062a\u06cc\u062f\u061f"],"Replace image":["\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u062a\u0635\u0648\u06cc\u0631"],"Remove image":["\u062d\u0630\u0641 \u062a\u0635\u0648\u06cc\u0631"],"Error while uploading file %s to the media library.":["\u062e\u0637\u0627 \u0647\u0646\u06af\u0627\u0645 \u0628\u0627\u0631\u06af\u0632\u0627\u0631\u06cc \u0641\u0627\u06cc\u0644 %s \u0628\u0647 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0631\u0633\u0627\u0646\u0647."],"This file exceeds the maximum upload size for this site.":["\u0627\u06cc\u0646 \u0641\u0627\u06cc\u0644 \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f\u0627\u06a9\u062b\u0631 \u0627\u0646\u062f\u0627\u0632\u0647 \u0622\u067e\u0644\u0648\u062f \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0633\u0627\u06cc\u062a \u0627\u0633\u062a."],"View the autosave":["\u0646\u0645\u0627\u06cc\u0634 \u0630\u062e\u06cc\u0631\u0647 \u062e\u0648\u062f\u06a9\u0627\u0631"],"There is an autosave of this post that is more recent than the version below.":["\u06cc\u06a9 \u0630\u062e\u06cc\u0631\u0647 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u0632 \u0627\u06cc\u0646 \u067e\u0633\u062a \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f \u06a9\u0647 \u062c\u062f\u06cc\u062f\u062a\u0631 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0632\u06cc\u0631 \u0627\u0633\u062a."],Autosaving:["\u0630\u062e\u06cc\u0631\u0647 \u062e\u0648\u062f\u06a9\u0627\u0631"],"Enter URL here\u2026":["URL \u0631\u0627 \u0627\u06cc\u0646\u062c\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f..."],"Pin to toolbar":["\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0628\u0647 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631"],"Unpin from toolbar":["\u0628\u0631\u062f\u0627\u0634\u062a\u0646 \u0627\u0632 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631"],"Insert a table \u2014 perfect for sharing charts and data.":["\u062c\u062f\u0648\u0644 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f - \u0645\u0646\u0627\u0633\u0628 \u0628\u0631\u0627\u06cc \u0628\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u06af\u0630\u0627\u0631\u06cc \u0646\u0645\u0648\u062f\u0627\u0631\u0647\u0627 \u0648 \u062f\u0627\u062f\u0647 \u0647\u0627."],"Fixed width table cells":["\u0633\u0644\u0648\u0644\u200c\u0647\u0627\u06cc \u062c\u062f\u0648\u0644 \u0628\u0627 \u067e\u0647\u0646\u0627\u06cc \u062b\u0627\u0628\u062a"],"Table Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062c\u062f\u0648\u0644"],"Add text that respects your spacing and tabs, and also allows styling.":["\u0645\u062a\u0646\u06cc \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0628\u0647 \u0641\u0648\u0627\u0635\u0644 \u0648 \u062a\u0628 \u0647\u0627 \u0627\u062d\u062a\u0631\u0627\u0645 \u0628\u06af\u0630\u0627\u0631\u062f \u0648 \u0647\u0645\u0686\u0646\u06cc\u0646 \u0627\u062c\u0627\u0632\u0647 \u0637\u0631\u0627\u062d\u06cc \u0638\u0627\u0647\u0631 \u0631\u0627 \u0628\u062f\u0647\u062f."],"Display a list of your most recent posts.":["\u0646\u0645\u0627\u06cc\u0634 \u06cc\u06a9 \u0644\u06cc\u0633\u062a \u0627\u0632 \u0622\u062e\u0631\u06cc\u0646 \u067e\u0633\u062a \u0647\u0627\u06cc \u0634\u0645\u0627."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\u06cc\u06a9 \u0628\u0644\u0648\u06a9 \u0631\u0627 \u06a9\u0647 \u0645\u062d\u062a\u0648\u0627\u06cc \u062f\u06cc\u06af\u0631 \u0633\u0627\u06cc\u062a\u200c\u0647\u0627 \u0645\u0627\u0646\u0646\u062f \u062a\u0648\u0626\u06cc\u062a\u0631\u060c \u0627\u06cc\u0646\u0633\u062a\u0627\u06af\u0631\u0627\u0645 \u06cc\u0627 \u06cc\u0648\u062a\u0648\u0628 \u0631\u0627 \u0646\u0645\u0627\u06cc\u0634 \u0645\u06cc\u062f\u0647\u062f\u060c \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u06cc\u06a9 \u0628\u0644\u0648\u06a9 \u0631\u0627 \u06a9\u0647 \u0645\u062d\u062a\u0648\u0627 \u0631\u0627 \u062f\u0631 \u0686\u0646\u062f\u06cc\u0646 \u0633\u062a\u0648\u0646 \u0646\u0645\u0627\u06cc\u0634 \u0645\u06cc \u062f\u0647\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f\u060c \u0633\u067e\u0633 \u0647\u0631 \u0646\u0648\u0639 \u0628\u0644\u0648\u06a9 \u0645\u062d\u062a\u0648\u0627\u06cc\u06cc \u0631\u0627 \u06a9\u0647 \u062f\u0648\u0633\u062a \u062f\u0627\u0631\u06cc\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"Error loading block: %s":["\u062e\u0637\u0627 \u062f\u0631 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0628\u0644\u0648\u06a9: %s"],"Unknown error":["\u0627\u0631\u0648\u0631 \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647"],"Embed Handler":["\u062c\u0627\u0633\u0627\u0632\u06cc \u0646\u06af\u0647\u062f\u0627\u0631\u0646\u062f\u0647"],"term\x04Remove %s":["\u062d\u0630\u0641 %s"],"Copy the permalink":["\u06a9\u067e\u06cc \u067e\u06cc\u0648\u0646\u062f \u06cc\u06a9\u062a\u0627"],"Permalink copied":["\u067e\u06cc\u0648\u0646\u062f \u06cc\u06a9\u062a\u0627 \u06a9\u067e\u06cc \u0634\u062f"],"Height in pixels":["\u0627\u0631\u062a\u0641\u0627\u0639 \u062f\u0631 \u067e\u06cc\u06a9\u0633\u0644"],"Spacer Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0641\u0627\u0635\u0644\u0647"],Spacer:["\u0641\u0627\u0635\u0644\u0647"],"Toggle to show a large initial letter.":["\u062a\u063a\u06cc\u06cc\u0631 \u0648\u0636\u0639\u06cc\u062a \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u0628\u0632\u0631\u06af \u062d\u0631\u0641 \u0627\u0648\u0644."],"Showing large initial letter.":["\u0646\u0645\u0627\u06cc\u0634 \u0628\u0632\u0631\u06af \u062d\u0631\u0641 \u0634\u0631\u0648\u0639."],"Name:":["\u0646\u0627\u0645:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["\u062d\u0630\u0641 \u0622\u06cc\u062a\u0645"],"Color code: %s":["\u06a9\u062f \u0631\u0646\u06af: %s"],"Skip to the selected block":["\u0631\u0641\u062a\u0646 \u0628\u0647 \u0628\u0644\u0648\u06a9 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647"],"Publish\u2026":["\u0627\u0646\u062a\u0634\u0627\u0631..."],"Schedule\u2026":["\u0632\u0645\u0627\u0646\u200c\u0628\u0646\u062f\u06cc..."],"Edit post permalink":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u067e\u06cc\u0648\u0646\u062f \u06cc\u06a9\u062a\u0627\u06cc \u0646\u0648\u0634\u062a\u0647"],"Show Block Settings":["\u0646\u0645\u0627\u06cc\u0634 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0644\u0627\u06a9"],"Hide Block Settings":["\u0645\u062e\u0641\u06cc \u06a9\u0631\u062f\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0644\u0648\u06a9"],"Block settings closed":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0644\u0648\u06a9 \u0628\u0633\u062a\u0647 \u0634\u062f"],"Close plugin":["\u0628\u0633\u062a\u0646 \u0627\u0641\u0632\u0648\u0646\u0647"],"Link settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0648\u0646\u062f"],Unlink:["\u0628\u062f\u0648\u0646 \u0644\u06cc\u0646\u06a9"],"Page break":["\u0628\u0631\u0634 \u0635\u0641\u062d\u0647"],pagination:["\u0635\u0641\u062d\u0647\u200c\u0628\u0646\u062f\u06cc"],"next page":["\u0635\u0641\u062d\u0647 \u0628\u0639\u062f\u06cc"],"Image Size":["\u0627\u0646\u062f\u0627\u0632\u0647 \u062a\u0635\u0648\u06cc\u0631"],Height:["\u0637\u0648\u0644"],Width:["\u0639\u0631\u0636"],"Image Dimensions":["\u0627\u0628\u0639\u0627\u062f \u062a\u0635\u0648\u06cc\u0631"],"Thumbnails are not cropped.":["\u062a\u0635\u0627\u0648\u06cc\u0631 \u0628\u0646\u062f\u0627\u0646\u06af\u0634\u062a\u06cc \u0628\u0631\u06cc\u062f\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u0646\u062f."],"Thumbnails are cropped to align.":["\u062a\u0635\u0627\u0648\u06cc\u0631 \u0628\u0646\u062f\u0627\u0646\u06af\u0634\u062a\u06cc \u0628\u0647 \u0647\u0645 \u0686\u0633\u0628\u06cc\u062f\u0647 \u0645\u06cc \u0634\u0648\u0646\u062f."],"Media Library":["\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0631\u0633\u0627\u0646\u0647"],Advanced:["\u0645\u0648\u0627\u0631\u062f \u0628\u06cc\u0634\u062a\u0631"],"Add item":["\u0627\u06cc\u0646 \u0645\u0648\u0631\u062f \u0631\u0627 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f"],"Reset the template":["\u0627\u0644\u06af\u0648 \u0631\u0627 \u0628\u0627\u0632\u0646\u0634\u0627\u0646\u06cc \u06a9\u0646\u06cc\u062f"],"Keep it as is":["\u0622\u0646 \u0631\u0627 \u062d\u0641\u0638 \u06a9\u0646\u06cc\u062f"],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u0645\u062d\u062a\u0648\u0627\u06cc \u0646\u0648\u0634\u062a\u0647 \u0634\u0645\u0627 \u0645\u0637\u0627\u0628\u0642 \u0628\u0627 \u0627\u0644\u06af\u0648\u06cc \u0627\u062e\u062a\u0635\u0627\u0635 \u06cc\u0627\u0641\u062a\u0647 \u0628\u0647 \u0646\u0648\u0639 \u0646\u0648\u0634\u062a\u0647 \u0634\u0645\u0627 \u0646\u06cc\u0633\u062a."],"Resetting the template may result in loss of content, do you want to continue?":["\u0628\u0627\u0632\u0646\u0634\u0627\u0646\u06cc \u0627\u0644\u06af\u0648 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0645\u0646\u062c\u0631 \u0628\u0647 \u0627\u0632 \u062f\u0633\u062a \u062f\u0627\u062f\u0646 \u0645\u062d\u062a\u0648\u0627\u06cc \u0634\u0648\u062f\u060c \u0622\u06cc\u0627 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u062f\u0627\u0645\u0647 \u062f\u0647\u06cc\u062f\u061f"],"Document Statistics":["\u0622\u0645\u0627\u0631 \u0633\u0646\u062f"],"is now scheduled. It will go live on":["\u0627\u06a9\u0646\u0648\u0646 \u0628\u0631\u0646\u0627\u0645\u0647 \u0631\u06cc\u0632\u06cc \u0634\u062f\u0647 \u0627\u0633\u062a \u0627\u062f\u0627\u0645\u0647 \u062e\u0648\u0627\u0647\u062f \u062f\u0627\u062f"],Scheduled:["\u0632\u0645\u0627\u0646\u200c\u0628\u0646\u062f\u06cc\u200c\u0634\u062f\u0647"],"Scheduling\u2026":["\u062f\u0631 \u062d\u0627\u0644 \u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc\u2026"],"Code editor selected":["\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u06a9\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Visual editor selected":["\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0638\u0627\u0647\u0631\u06cc\u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0627\u0633\u062a"],Plugins:["\u0627\u0641\u0632\u0648\u0646\u0647\u200c\u0647\u0627"],"Custom Size":["\u0627\u0646\u062f\u0627\u0631\u0647 \u0633\u0641\u0627\u0631\u0634\u06cc"],"Layout Elements":["\u0639\u0646\u0627\u0635\u0631 \u0637\u0631\u062d"],"term\x04%s removed":["%s \u062d\u0630\u0641 \u0634\u062f"],"term\x04%s added":["%s \u0627\u0641\u0632\u0648\u062f\u0647 \u0634\u062f"],"imperative verb\x04Preview":["\u067e\u06cc\u0634\u200c\u0646\u0645\u0627\u06cc\u0634"],"Block deleted.":["\u0628\u0644\u0627\u06a9 \u062d\u0630\u0641 \u0634\u062f."],"Block updated.":["\u0628\u0644\u0627\u06a9 \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0634\u062f."],"Block created.":["\u0628\u0644\u0627\u06a9 \u0627\u06cc\u062c\u0627\u062f \u0634\u062f."],"Trashing failed":["\u062d\u0630\u0641 \u06a9\u0631\u062f\u0646 \u0646\u0627\u0645\u0648\u0641\u0642"],"Updating failed.":["\u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0646\u0627\u0645\u0648\u0641\u0642 \u0628\u0648\u062f."],"Scheduling failed.":["\u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc \u0646\u0627\u0645\u0648\u0641\u0642 \u0628\u0648\u062f."],"Publishing failed.":["\u0627\u0646\u062a\u0634\u0627\u0631 \u0646\u0627\u0645\u0648\u0641\u0642 \u0628\u0648\u062f."],"View Post":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0646\u0648\u0634\u062a\u0647"],"You have unsaved changes. If you proceed, they will be lost.":["\u0634\u0645\u0627 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0630\u062e\u06cc\u0631\u0647 \u0646\u0634\u062f\u0647 \u062f\u0627\u0631\u06cc\u062f \u0627\u06af\u0631 \u0627\u062f\u0627\u0645\u0647 \u062f\u0647\u06cc\u062f\u060c \u0622\u0646\u0647\u0627 \u0627\u0632 \u062f\u0633\u062a \u062e\u0648\u0627\u0647\u0646\u062f \u0631\u0641\u062a."],"Document Outline":["\u0637\u0631\u062d \u0627\u0633\u0646\u0627\u062f"],Paragraphs:["\u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641\u200c\u0647\u0627"],Headings:["\u062a\u06cc\u062a\u0631\u0647\u0627"],Words:["\u0648\u0627\u0698\u0647\u200c\u0647\u0627"],"Content structure":["\u0633\u0627\u062e\u062a\u0627\u0631 \u0645\u062d\u062a\u0648\u0627"],Public:["\u0639\u0645\u0648\u0645\u06cc"],"Protected with a password you choose. Only those with the password can view this post.":["\u062d\u0641\u0627\u0638\u062a \u0634\u062f\u0647 \u0628\u0627 \u06a9\u0644\u0645\u0647 \u0639\u0628\u0648\u0631 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0631\u062f\u06cc\u062f. \u062a\u0646\u0647\u0627 \u06a9\u0633\u0627\u0646\u06cc \u06a9\u0647 \u06a9\u0644\u0645\u0647 \u0639\u0628\u0648\u0631 \u0631\u0627 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u0646\u062f \u0645\u06cc \u062a\u0648\u0627\u0646\u0646\u062f \u0646\u0648\u0634\u062a\u0647 \u0631\u0627 \u0628\u0628\u06cc\u0646\u0646\u062f."],"Password Protected":["\u062d\u0641\u0627\u0638\u062a \u0634\u062f\u0647 \u0628\u0627 \u06a9\u0644\u0645\u0647 \u0639\u0628\u0648\u0631"],"Only visible to site admins and editors.":["\u0641\u0642\u0637 \u0628\u0631\u0627\u06cc \u0645\u062f\u06cc\u0631 \u0633\u0627\u06cc\u062a \u0648 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647."],Private:["\u062e\u0635\u0648\u0635\u06cc"],"Visible to everyone.":["\u0628\u0631\u0627\u06cc \u0647\u0645\u0647 \u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647."],"Post Visibility":["\u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647 \u0628\u0648\u062f\u0646 \u0646\u0648\u0634\u062a\u0647"],"Would you like to privately publish this post now?":["\u0622\u06cc\u0627 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0646\u0648\u0634\u062a\u0647 \u0631\u0627 \u0628\u0635\u0648\u0631\u062a \u062e\u0635\u0648\u0635\u06cc \u0645\u0646\u062a\u0634\u0631 \u06a9\u0646\u06cc\u062f\u061f"],"Use a secure password":["\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06a9\u0644\u0645\u0647 \u0639\u0628\u0648\u0631 \u0645\u0646"],"Create password":["\u0627\u06cc\u062c\u0627\u062f \u06a9\u0644\u0645\u0647 \u0639\u0628\u0648\u0631"],"Move to Trash":["\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0647 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646"],"Parent Term":["\u0634\u0631\u0637 \u0648\u0627\u0644\u062f"],"Parent Category":["\u062f\u0633\u062a\u0647 \u0648\u0627\u0644\u062f"],"Add new term":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0634\u0631\u0637 \u062c\u062f\u06cc\u062f"],"Add new category":["\u0627\u0641\u0632\u0648\u062f\u0646 \u062f\u0633\u062a\u0647 \u062c\u062f\u06cc\u062f"],Term:["\u0634\u0631\u0637"],Tag:["\u0628\u0631\u0686\u0633\u0628"],"Add New Term":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0634\u0631\u0637 \u062c\u062f\u06cc\u062f"],"Add New Tag":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0628\u0631\u0686\u0633\u0628 \u062c\u062f\u06cc\u062f"],"Switch to Draft":["\u062a\u063a\u06cc\u06cc\u0631 \u0628\u0647 \u067e\u06cc\u0634\u200c\u0646\u0648\u06cc\u0633"],"Are you sure you want to unpublish this post?":["\u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646\u06cc\u062f \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0646\u0648\u0634\u062a\u0647 \u0631\u0627 \u0627\u0632 \u062d\u0627\u0644\u062a \u0627\u0646\u062a\u0634\u0627\u0631 \u062e\u0627\u0631\u062c \u0646\u0645\u0627\u0626\u06cc\u062f\u061f"],Immediately:["\u0628\u0644\u0627\u0641\u0627\u0635\u0644\u0647"],"Save Draft":["\u0630\u062e\u064a\u0631\u0647 \u067e\u06cc\u0634\u200c\u0646\u0648\u06cc\u0633"],Saving:["\u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc"],"Publish:":["\u0627\u0646\u062a\u0634\u0627\u0631:"],"Visibility:":["\u0642\u0627\u0628\u0644\u06cc\u062a \u0645\u0634\u0627\u0647\u062f\u0647: "],"Are you ready to publish?":["\u0622\u06cc\u0627 \u0622\u0645\u0627\u062f\u0647 \u0627\u0646\u062a\u0634\u0627\u0631 \u0647\u0633\u062a\u06cc\u062f\u061f"],"Copy Link":["\u06a9\u067e\u06cc \u067e\u06cc\u0648\u0646\u062f"],"What\u2019s next?":["\u06af\u0627\u0645 \u0628\u0639\u062f\u06cc \u0686\u06cc\u0633\u062a\u061f"],"is now live.":["\u0627\u06a9\u0646\u0648\u0646 \u0632\u0646\u062f\u0647 \u0627\u0633\u062a."],Published:["\u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647"],Schedule:["\u0632\u0645\u0627\u0646 \u0628\u0646\u062f\u06cc \u06a9\u0631\u062f\u0646"],Update:["\u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc"],"Submit for Review":["\u0627\u0631\u0633\u0627\u0644 \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc"],"Updating\u2026":["\u062f\u0631 \u062d\u0627\u0644 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc\u2026"],"Publishing\u2026":["\u062f\u0631\u062d\u0627\u0644 \u0627\u0646\u062a\u0634\u0627\u0631\u2026"],"Allow Pingbacks & Trackbacks":["\u0627\u062c\u0627\u0632\u0647 Pingbacks \u0648 Trackbacks"],"Permalink:":["\u067e\u06cc\u0648\u0646\u062f\u06cc\u06a9\u062a\u0627:"],"Pending Review":["\u062f\u0631\u0627\u0646\u062a\u0638\u0627\u0631 \u0628\u0631\u0631\u0633\u06cc"],"%d Revision":["%d \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc"],"Suggestion:":["\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc:"],"Post Format":["\u0646\u0648\u0639 \u0646\u0648\u0634\u062a\u0647"],Chat:["\u0686\u062a"],Status:["\u0648\u0636\u0639\u06cc\u062a"],Standard:["\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f"],Aside:["\u06a9\u0646\u0627\u0631\u0647\u0645"],"Set Featured Image":["\u062a\u0646\u0638\u06cc\u0645 \u062a\u0635\u0648\u06cc\u0631 \u0648\u06cc\u0698\u0647"],"Learn more about manual excerpts":["\u06cc\u0627\u062f\u06af\u06cc\u0631\u06cc \u0628\u06cc\u0634\u062a\u0631 \u062f\u0631\u0628\u0627\u0631\u0647 \u062e\u0644\u0627\u0635\u0647 \u062f\u0633\u062a\u06cc"],"Write an excerpt (optional)":["\u0646\u0648\u0634\u062a\u0646 \u062e\u0644\u0627\u0635\u0647 (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc)"],"Allow Comments":["\u067e\u0630\u06cc\u0631\u0641\u062a\u0646 \u062f\u06cc\u062f\u06af\u0627\u0647"],"Template:":["\u0642\u0627\u0644\u0628:"],"no parent":["\u0628\u062f\u0648\u0646 \u0648\u0627\u0644\u062f"],"no title":["\u0628\u062f\u0648\u0646 \u0639\u0646\u0648\u0627\u0646"],Order:["\u0633\u0641\u0627\u0631\u0634"],"No blocks found.":["\u0628\u0644\u0627\u06a9\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f."],"%d result found.":["%d \u0646\u062a\u06cc\u062c\u0647 \u06cc\u0627\u0641\u062a \u0634\u062f."],Saved:["\u0630\u062e\u06cc\u0631\u0647 \u0634\u062f"],Embeds:["\u062c\u0627\u0633\u0627\u0632\u06cc\u200c\u0647\u0627"],Blocks:["\u0628\u0644\u0648\u06a9\u200c\u0647\u0627"],"Search for a block":["\u062c\u0633\u062a\u062c\u0648 \u0628\u0631\u0627\u06cc \u0628\u0644\u0648\u06a9"],"Add block":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0628\u0644\u0648\u06a9"],"Add %s":["\u0627\u0641\u0632\u0648\u062f\u0646 %s"],"Copy Error":["\u06a9\u067e\u06cc \u062e\u0637\u0627"],"Copy Post Text":["\u06a9\u067e\u06cc \u0645\u062a\u0646 \u0646\u0648\u0634\u062a\u0647"],"Attempt Recovery":["\u062a\u0644\u0627\u0634 \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u06cc\u0627\u0628\u06cc"],"The editor has encountered an unexpected error.":["\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0628\u0627 \u06cc\u06a9 \u062e\u0637\u0627\u06cc \u0646\u0627\u0628\u0647\u0646\u06af\u0627\u0645 \u0645\u0648\u0627\u062c\u0647 \u0634\u062f."],Undo:["\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u06cc"],Redo:["\u0628\u0627\u0632\u0627\u0646\u062c\u0627\u0645"],"(Multiple H1 headings are not recommended)":["(\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0686\u0646\u062f\u06af\u0627\u0646\u0647 \u0627\u0632 H1 \u062a\u0648\u0635\u06cc\u0647 \u0646\u0645\u06cc \u0634\u0648\u062f)"],"(Your theme may already use a H1 for the post title)":["(\u0642\u0627\u0644\u0628 \u0634\u0645\u0627 \u0634\u0627\u06cc\u062f \u0627\u0632 H1 \u0628\u0631\u0627\u06cc \u0639\u0646\u0648\u0627\u0646 \u0645\u062a\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc \u06a9\u0646\u062f)"],"(Incorrect heading level)":["(\u0633\u0637\u062d \u062a\u06cc\u062a\u0631 \u0627\u0634\u062a\u0628\u0627\u0647)"],"(Empty heading)":["(\u062a\u06cc\u062a\u0631 \u062e\u0627\u0644\u06cc)"],"Block Styles":["\u0627\u0633\u062a\u0627\u06cc\u0644\u0647\u0627\u06cc \u0628\u0644\u0627\u06a9"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646\u06cc\u062f \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u0644\u0627\u06a9 \u0627\u0634\u062a\u0631\u0627\u06a9 \u06af\u0630\u0627\u0631\u06cc \u0634\u062f\u0647 \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f\u061f\n\n\u0627\u0646 \u0628\u0635\u0648\u0631\u062a \u06a9\u0644\u06cc \u062a\u0645\u0627\u0645 \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627 \u0648 \u0628\u0631\u06af\u0647\u200c\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0627\u0632 \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a \u062d\u0630\u0641 \u0645\u06cc \u06a9\u0646\u062f."],"Convert to Regular Block":["\u062a\u0628\u062f\u06cc\u0644 \u0628\u0647 \u0628\u0644\u0627\u06a9 \u0645\u0639\u0645\u0648\u0644\u06cc"],"More options":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u06cc\u0634\u062a\u0631"],"Edit visually":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0628\u0635\u0631\u06cc"],Duplicate:["\u062a\u06a9\u062b\u06cc\u0631"],"Blocks cannot be moved down as they are already at the bottom":["\u0628\u0644\u0627\u06a9\u200c\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u0646\u062f \u0628\u0647 \u067e\u0627\u06cc\u06cc\u0646 \u0645\u0646\u062a\u0642\u0644 \u0634\u0648\u0646\u062f \u0627\u0632 \u0627\u0646\u062c\u0627 \u06a9\u0647 \u062e\u0648\u062f\u0634\u0627\u0646 \u067e\u0627\u06cc\u06cc\u0646 \u0647\u0633\u062a\u0646\u062f"],"Blocks cannot be moved up as they are already at the top":["\u0628\u0644\u0627\u06a9\u200c\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u0646\u062f \u0628\u0647 \u0628\u0627\u0644\u0627 \u0645\u0646\u062a\u0642\u0644 \u0634\u0648\u0646\u062f \u0627\u0632 \u0622\u0646\u062c\u0627 \u06a9\u0647 \u062e\u0648\u062f\u0634\u0627\u0646 \u062f\u0631 \u0628\u0627\u0644\u0627 \u0647\u0633\u062a\u0646\u062f"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["\u0628\u0644\u0627\u06a9 %s \u062a\u0646\u0647\u0627 \u06cc\u06a9 \u0628\u0644\u0627\u06a9 \u0627\u0633\u062a\u060c \u0648 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0645\u0646\u062a\u0642\u0644 \u0634\u0648\u062f"],"Edit as HTML":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 HTML"],"Convert to Blocks":["\u062a\u0628\u062f\u06cc\u0644 \u0628\u0647 \u0628\u0644\u0627\u06a9\u200c\u0647\u0627"],"Block: %s":["\u0628\u0644\u0648\u06a9: %s"],"This block has encountered an error and cannot be previewed.":["\u0627\u06cc\u0646 \u0628\u0644\u0627\u06a9 \u062f\u0627\u0631\u0627\u06cc \u062e\u0637\u0627\u06cc\u06cc \u0627\u0633\u062a \u0648 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u067e\u06cc\u0634 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u062f."],"No block selected.":["\u0628\u0644\u0648\u06a9\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a."],"Transform into:":["\u062a\u0628\u062f\u06cc\u0644 \u0634\u062f\u0646 \u0628\u0647:"],Remove:["\u062d\u0630\u0641 \u06a9\u0631\u062f\u0646"],"Find original":["\u06cc\u0627\u0641\u062a\u0646 \u0627\u0635\u0644\u06cc"],"Copy All Content":["\u06a9\u067e\u06cc \u0647\u0645\u0647 \u0645\u062d\u062a\u0648\u0627"],"Copied!":["\u06a9\u067e\u06cc \u0634\u062f!"],"Additional settings are now available in the Editor block settings sidebar":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0627\u0636\u0627\u0641\u06cc \u062f\u0631 \u0646\u0648\u0627\u0631 \u06a9\u0646\u0627\u0631\u06cc \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634\u0631\u0641\u062a\u0647 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a"],Visibility:["\u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647 \u0628\u0648\u062f\u0646"],"Status & Visibility":["\u0648\u0636\u0639\u06cc\u062a \u0648 \u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647 \u0628\u0648\u062f\u0646"],"Page Attributes":["\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0628\u0631\u06af\u0647"],Block:["\u0628\u0644\u0648\u06a9"],Document:["\u0633\u0646\u062f"],"Featured Image":["\u062a\u0635\u0648\u06cc\u0631 \u0634\u0627\u062e\u0635"],"Close settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0633\u062a\u0646"],"Editor content":["\u0645\u062d\u062a\u0648\u0627\u06cc \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631"],Tools:["\u0627\u0628\u0632\u0627\u0631\u0647\u0627"],Editor:["\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631"],"Code Editor":["\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u06a9\u062f"],"Visual Editor":["\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u062f\u06cc\u062f\u0627\u0631\u06cc"],"Editor top bar":["\u0646\u0648\u0627\u0631\u0627\u0628\u0632\u0627\u0631 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631"],Settings:["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a"],Reset:["\u0628\u0627\u0632\u0646\u0634\u0627\u0646\u06cc"],"Dismiss this notice":["\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646 \u0627\u06cc\u0646 \u0627\u0639\u0644\u0627\u0646"],"Item removed.":["\u0645\u0648\u0631\u062f \u062d\u0630\u0641 \u0634\u062f."],"Item added.":["\u0645\u0648\u0631\u062f \u0627\u0641\u0632\u0648\u062f\u0647 \u0634\u062f."],"Drop files to upload":["\u0628\u0631\u0627\u06cc \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u067e\u0631\u0648\u0646\u062f\u0647 \u0628\u06a9\u0634\u06cc\u062f \u0648 \u0631\u0647\u0627 \u06a9\u0646\u06cc\u062f"],PM:["\u0628\u0639\u062f\u0627\u0632\u0638\u0647\u0631"],AM:["\u0642.\u0638"],"An unknown error occurred.":["\u062e\u0637\u0627\u06cc \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647 \u0627\u06cc \u0631\u062e \u062f\u0627\u062f."],"No results.":["\u0628\u062f\u0648\u0646 \u0646\u062a\u06cc\u062c\u0647."],"%d result found, use up and down arrow keys to navigate.":["%d \u0646\u062a\u06cc\u062c\u0647 \u06cc\u0627\u0641\u062a \u0634\u062f\u060c \u0627\u0632 \u0646\u0634\u0627\u0646\u0647\u200c\u06af\u0631 \u0628\u0627\u0644\u0627 \u0648 \u067e\u0627\u06cc\u06cc\u0646 \u0628\u0631\u0627\u06cc \u0633\u06cc\u0631 \u062f\u0631 \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f."],"(no title)":["(\u0628\u062f\u0648\u0646 \u0639\u0646\u0648\u0627\u0646)"],URL:["\u0644\u06cc\u0646\u06a9 "],Submit:["\u0627\u0631\u0633\u0627\u0644"],Close:["\u0628\u0633\u062a\u0647"],"Insert link":["\u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u06cc\u0648\u0646\u062f"],"Edit link":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u067e\u06cc\u0648\u0646\u062f"],Link:["\u067e\u06cc\u0648\u0646\u062f"],Strikethrough:["\u0627\u0632 \u0628\u06cc\u0646 \u0628\u0631\u062f\u0646"],Italic:["\u06a9\u062c"],Bold:["\u0636\u062e\u06cc\u0645"],"Remove link":["\u062d\u0630\u0641 \u067e\u06cc\u0648\u0646\u062f"],"Number of items":["\u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f"],All:["\u0647\u0645\u0647"],Category:["\u062f\u0633\u062a\u0647"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["\u0642\u062f\u06cc\u0645 \u0628\u0647 \u062c\u062f\u06cc\u062f"],"Newest to Oldest":["\u062c\u062f\u06cc\u062f \u0628\u0647 \u0642\u062f\u06cc\u0645"],"Order by":["\u0645\u0631\u062a\u0628\u200c\u0633\u0627\u0632\u06cc \u0628\u0631\u0627\u0633\u0627\u0633"],Select:["\u0627\u0646\u062a\u062e\u0627\u0628"],"Select or Upload Media":["\u0627\u0646\u062a\u062e\u0627\u0628 \u06cc\u0627 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0686\u0646\u062f\u0631\u0633\u0627\u0646\u0647"],Video:["\u0648\u06cc\u062f\u0626\u0648"],"Edit video":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0648\u06cc\u062f\u0626\u0648"],"Write\u2026":["\u0646\u0648\u0634\u062a\u0646\u2026"],poetry:["\u0634\u0639\u0631"],Verse:["\u0634\u0639\u0631"],"New Column":["\u0633\u062a\u0648\u0646 \u062c\u062f\u06cc\u062f"],"Delete Column":["\u062d\u0630\u0641 \u0633\u062a\u0648\u0646"],"Add Column After":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0633\u062a\u0648\u0646 \u0628\u0647 \u0628\u0639\u062f"],"Add Column Before":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0633\u062a\u0648\u0646 \u0628\u0647 \u0642\u0628\u0644"],"Delete Row":["\u062d\u0630\u0641 \u0631\u062f\u06cc\u0641"],"Add Row After":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0631\u062f\u06cc\u0641 \u0628\u0647 \u0628\u0639\u062f"],"Add Row Before":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0631\u062f\u06cc\u0641 \u0628\u0647 \u0642\u0628\u0644"],"Edit table":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u062c\u062f\u0648\u0644"],Table:["\u062c\u062f\u0648\u0644"],"Write subheading\u2026":["\u0646\u0648\u0634\u062a\u0646 \u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0628\u0631\u0627\u06cc \u0639\u0646\u0648\u0627\u0646"],"Write shortcode here\u2026":["\u0646\u0648\u0634\u062a \u06a9\u062f\u06a9\u0648\u062a\u0627\u0647 \u0627\u06cc\u0646\u062c\u0627\u2026"],Shortcode:["\u06a9\u062f\u06a9\u0648\u062a\u0627\u0647"],divider:["\u062a\u0642\u0633\u06cc\u0645 \u06a9\u0646\u0646\u062f\u0647"],"horizontal-line":["\u062e\u0637 \u062c\u062f\u0627\u06a9\u0646\u0646\u062f\u0647 \u0627\u0641\u0642\u06cc"],Separator:["\u062c\u062f\u0627\u06a9\u0646\u0646\u062f\u0647"],Quote:["\u0646\u0642\u0644 \u0642\u0648\u0644"],"Write citation\u2026":["\u0646\u0648\u0634\u062a\u0646 \u0627\u0633\u062a\u0646\u0627\u062f\u2026"],"Write quote\u2026":["\u0646\u0648\u0634\u062a\u0646 \u0646\u0642\u0644 \u0642\u0648\u0644\u2026"],Pullquote:["\u06a9\u0634\u06cc\u062f\u0646 \u0646\u0642\u0644 \u0642\u0648\u0644"],"Write preformatted text\u2026":["\u0646\u0648\u0634\u062a\u0646 \u0645\u062a\u0646 \u067e\u06cc\u0634 \u0641\u0631\u0645\u062a \u0634\u062f\u0647\u2026"],Preformatted:["\u067e\u06cc\u0634 \u0641\u0631\u0645\u062a \u0634\u062f\u0647"],text:["\u0645\u062a\u0646"],Paragraph:["\u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641"],"Font Size":["\u0627\u0646\u062f\u0627\u0632\u0647 \u0641\u0648\u0646\u062a"],"Drop Cap":["\u0631\u0627\u0633 \u0627\u0641\u062a\u0627\u062f\u0646"],"Text Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0645\u062a\u0646"],"Read more":["\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628"],"Write list\u2026":["\u0646\u0648\u0634\u062a\u0646 \u0644\u06cc\u0633\u062a\u2026"],"numbered list":["\u0644\u06cc\u0633\u062a \u0639\u062f\u062f\u06cc"],"ordered list":["\u0644\u06cc\u0633\u062a \u0645\u0631\u062a\u0628 \u0634\u062f\u0647"],"bullet list":["\u0644\u06cc\u0633\u062a \u0646\u0642\u0637\u0647\u200c\u0627\u06cc"],"Indent list item":["\u0645\u0648\u0631\u062f \u0644\u06cc\u0633\u062a \u0641\u0631\u0648\u0631\u0641\u062a\u0647"],"Outdent list item":["\u0645\u0648\u0631\u062f \u0644\u06cc\u0633\u062a \u0641\u0631\u0648\u0646\u0631\u0641\u062a\u0647"],"Convert to ordered list":["\u062a\u0628\u062f\u06cc\u0644 \u0628\u0647 \u0644\u06cc\u0633\u062a \u0645\u0631\u062a\u0628"],"Convert to unordered list":["\u062a\u0628\u062f\u06cc\u0644 \u0628\u0647 \u0644\u06cc\u0633\u062a \u0628\u062f\u0648\u0646 \u062a\u0631\u062a\u06cc\u0628"],List:["\u0644\u06cc\u0633\u062a"],"recent posts":["\u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0627\u062e\u06cc\u0631"],"No posts found.":["\u0646\u0648\u0634\u062a\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f."],"Latest Posts":["\u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627\u06cc \u0627\u062e\u06cc\u0631"],"Display post date":["\u0646\u0645\u0627\u06cc\u0634 \u062a\u0627\u0631\u06cc\u062e \u0646\u0648\u0634\u062a\u0647"],"Grid view":["\u0646\u0645\u0627\u06cc \u062c\u062f\u0648\u0644\u06cc"],"List view":["\u0646\u0645\u0627\u06cc \u0644\u06cc\u0633\u062a\u06cc"],photo:["\u062a\u0635\u0648\u06cc\u0631"],"Image Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062a\u0635\u0648\u06cc\u0631"],Image:["\u062a\u0635\u0648\u06cc\u0631"],Preview:["\u067e\u06cc\u0634\u200c\u0646\u0645\u0627\u06cc\u0634"],embed:["\u062c\u0627\u0633\u0627\u0632\u06cc"],"Custom HTML":["\u06a9\u062f \u0633\u0641\u0627\u0631\u0634\u06cc HTML"],subtitle:["\u0632\u06cc\u0631\u0639\u0646\u0648\u0627\u0646"],title:["\u0639\u0646\u0648\u0627\u0646"],Heading:["\u062a\u06cc\u062a\u0631"],"Write heading\u2026":["\u0646\u0648\u0634\u062a\u0646 \u0639\u0646\u0648\u0627\u0646\u2026"],"Heading %d":["\u062a\u06cc\u062a\u0631 %s"],Level:["\u0633\u0637\u062d"],"Heading Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062a\u06cc\u062a\u0631"],photos:["\u062a\u0635\u0627\u0648\u06cc\u0631"],images:["\u062a\u0635\u0627\u0648\u06cc\u0631"],"Remove Image":["\u062d\u0630\u0641 \u062a\u0635\u0648\u06cc\u0631"],None:["\u0647\u06cc\u0686\u200c\u06cc\u06a9"],"Media File":["\u067e\u0631\u0648\u0646\u062f\u0647 \u0686\u0646\u062f\u0631\u0633\u0627\u0646\u0647"],"Attachment Page":["\u067e\u06cc\u0648\u0633\u062a \u0628\u0631\u06af\u0647"],"Crop Images":["\u0628\u0631\u0634 \u062a\u0635\u0627\u0648\u06cc\u0631"],"Gallery Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u06af\u0627\u0644\u0631\u06cc"],Gallery:["\u06af\u0627\u0644\u0631\u06cc"],Classic:["\u06a9\u0644\u0627\u0633\u06cc\u06a9"],video:["\u0648\u06cc\u062f\u0626\u0648"],audio:["\u0635\u0648\u062a"],music:["\u0645\u0648\u0633\u06cc\u0642\u06cc"],image:["\u062a\u0635\u0648\u06cc\u0631"],blog:["\u0628\u0644\u0627\u06af"],post:["\u0646\u0648\u0634\u062a\u0647"],"Embedded content from %s":["\u062c\u0627\u0633\u0627\u0632\u06cc \u06a9\u0631\u062f\u0646 \u0645\u062d\u062a\u0648\u0627 \u0627\u0632 %s"],"Enter URL to embed here\u2026":["\u0622\u062f\u0631\u0633 \u067e\u06cc\u0648\u0646\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u062c\u0627\u0633\u0627\u0632\u06cc \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f\u2026"],"%s URL":["%s \u0622\u062f\u0631\u0633 \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc"],"Embedding\u2026":["\u062c\u0627\u0633\u0627\u0632\u06cc\u2026"],"Write title\u2026":["\u0646\u0648\u0634\u062a\u0646 \u0639\u0646\u0648\u0627\u0646\u2026"],"Fixed Background":["\u067e\u0633 \u0632\u0645\u06cc\u0646\u0647 \u062b\u0627\u0628\u062a"],"Edit image":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u062a\u0635\u0648\u06cc\u0631"],Columns:["\u0633\u062a\u0648\u0646\u200c\u0647\u0627"],Experiments:["\u0622\u0632\u0645\u0627\u06cc\u0634 \u06af\u0648\u062a\u0646\u0628\u0631\u06af"],Code:["\u06a9\u062f"],"Write code\u2026":["\u0646\u0648\u0634\u062a\u0646 \u06a9\u062f\u2026"],Categories:["\u062f\u0633\u062a\u0647\u200c\u0647\u0627"],"Show Hierarchy":["\u0646\u0645\u0627\u06cc\u0634 \u0633\u0644\u0633\u0644\u0647 \u0645\u0631\u0627\u062a\u0628\u06cc"],"Show post counts":["\u0646\u0645\u0627\u06cc\u0634 \u062a\u0639\u062f\u0627\u062f \u0646\u0648\u0634\u062a\u0647\u200c\u0647\u0627"],"Categories Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062f\u0633\u062a\u0647\u200c\u0647\u0627"],"Add text\u2026":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062a\u0646\u2026"],Button:["\u062f\u06a9\u0645\u0647"],Apply:["\u0627\u0639\u0645\u0627\u0644 \u06a9\u0631\u062f\u0646"],"Text Color":["\u0631\u0646\u06af \u0645\u062a\u0646"],"Background Color":["\u0631\u0646\u06af \u067e\u0633\u200c\u0632\u0645\u06cc\u0646\u0647"],"Block has been deleted or is unavailable.":["\u0628\u0644\u0627\u06a9 \u062d\u0630\u0641 \u0634\u062f\u0647 \u06cc\u0627 \u062f\u0631\u062f\u0633\u062a\u0631\u0633 \u0646\u0645\u06cc \u0628\u0627\u0634\u062f."],"Reusable Blocks":["\u0628\u0644\u0648\u06a9\u200c\u0647\u0627\u06cc \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0648\u0628\u0627\u0631\u0647"],Cancel:["\u0644\u063a\u0648"],Edit:["\u0648\u06cc\u0631\u0627\u06cc\u0634"],"Edit audio":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0635\u062f\u0627"],"Write caption\u2026":["\u0646\u0648\u0634\u062a\u0646 \u0639\u0646\u0648\u0627\u0646\u2026"],"Use URL":["\u0628\u06a9\u0627\u0631\u06af\u06cc\u0631\u06cc URL"],Audio:["\u0635\u062f\u0627"],Upload:["\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc"],"Additional CSS Class(es)":["\u06a9\u0644\u0627\u0633\u200c(\u0647\u0627\u06cc) CSS \u0627\u0636\u0627\u0641\u06cc"],"HTML Anchor":["\u0644\u0646\u06af\u0631 HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u0627\u06cc\u0646 \u062a\u0631\u06a9\u06cc\u0628 \u0631\u0646\u06af \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0628\u0631\u0627\u06cc \u0627\u0641\u0631\u0627\u062f \u0647\u0646\u06af\u0627\u0645 \u062e\u0648\u0627\u0646\u062f\u0646 \u0645\u0634\u06a9\u0644 \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u062f. \u067e\u0634\u062a \u0632\u0645\u06cc\u0646\u0647 \u0631\u0648\u0634\u0646\u062a\u0631 \u06cc\u0627 \u0631\u0646\u06af \u0645\u062a\u0646 \u062a\u0627\u0631\u06cc\u06a9\u062a\u0631 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u0627\u06cc\u0646 \u062a\u0631\u06a9\u06cc\u0628 \u0631\u0646\u06af \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0628\u0631\u0627\u06cc \u0627\u0641\u0631\u0627\u062f \u0647\u0646\u06af\u0627\u0645 \u062e\u0648\u0627\u0646\u062f\u0646 \u0645\u0634\u06a9\u0644 \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u062f. \u067e\u0634\u062a \u0632\u0645\u06cc\u0646\u0647 \u062a\u0627\u0631\u06cc\u06a9\u062a\u0631 \u06cc\u0627 \u0631\u0646\u06af \u0645\u062a\u0646 \u0631\u0627 \u0631\u0648\u0634\u0646\u062a\u0631 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],Clear:["\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646"],"Custom color picker":["\u0645\u062c\u0645\u0648\u0639\u0647 \u0633\u0641\u0627\u0631\u0634\u06cc \u0631\u0646\u06af"],"Color: %s":["\u0631\u0646\u06af: %s"],"Full Width":["\u0639\u0631\u0636 \u06a9\u0627\u0645\u0644"],"Wide Width":["\u0639\u0631\u0636 \u06af\u0633\u062a\u0631\u062f\u0647"],Widgets:["\u0627\u0628\u0632\u0627\u0631\u06a9\u200c\u0647\u0627"],Formatting:["\u0641\u0631\u0645\u062a \u06a9\u0631\u062f\u0646"],"Common Blocks":["\u0628\u0644\u0648\u06a9\u200c\u0647\u0627\u06cc \u0645\u0634\u062a\u0631\u06a9"],"Align Right":["\u0631\u0627\u0633\u062a \u0686\u06cc\u0646"],"Align Center":["\u0648\u0633\u0637 \u0686\u06cc\u0646"],"Align Left":["\u0686\u067e \u0686\u06cc\u0646"],"Printing since 1440. This is the development plugin for the new block editor in core.":["\u0628\u0631 \u0645\u0628\u0646\u0627\u06cc \u0635\u0646\u0639\u062a \u062d\u0631\u0648\u0641\u0686\u06cc\u0646\u06cc \u0686\u0627\u067e \u0627\u0632 \u0633\u0627\u0644 1440. \u0627\u06cc\u0646 \u0627\u0641\u0632\u0648\u0646\u0647 \u062f\u0631 \u062d\u0627\u0644 \u062a\u0648\u0633\u0639\u0647 \u0628\u0639\u0646\u0648\u0627\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u062c\u062f\u06cc\u062f \u0628\u0644\u0627\u06a9 \u062f\u0631 \u0647\u0633\u062a\u0647 \u0627\u0633\u062a."],"Add title":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0639\u0646\u0648\u0627\u0646"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["\u0646\u0648\u06cc\u0633\u0646\u062f\u0647"],Slug:["\u0646\u0627\u0645\u06a9"],Discussion:["\u06af\u0641\u062a\u06af\u0648"],"Custom Fields":["\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u0633\u0641\u0627\u0631\u0634\u06cc"],Excerpt:["\u0686\u06a9\u06cc\u062f\u0647"],Publish:["\u0627\u0646\u062a\u0634\u0627\u0631"],Metadata:["\u062f\u0627\u062f\u0647 \u0645\u062a\u0627"],Save:["\u0630\u062e\u06cc\u0631\u0647"],Documentation:["\u0645\u0633\u062a\u0646\u062f\u0627\u062a"],"Select Category":["\u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0633\u062a\u0647"],"(Untitled)":["(\u0628\u062f\u0648\u0646 \u0639\u0646\u0648\u0627\u0646)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["\u06af\u0648\u062a\u0646\u0628\u0631\u06af \u0628\u0647 \u0648\u0631\u062f\u067e\u0631\u0633 %s \u06cc\u0627 \u062c\u062f\u06cc\u062f\u062a\u0631 \u0628\u0631\u0627\u06cc \u0639\u0645\u0644\u06a9\u0631\u062f \u0635\u062d\u06cc\u062d \u0646\u06cc\u0627\u0632 \u062f\u0627\u0631\u062f. \u0644\u0637\u0641\u0627 \u0642\u0628\u0644 \u0627\u0632 \u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u06af\u0648\u062a\u0646\u0628\u0631\u06af \u0648\u0631\u062f\u067e\u0631\u0633 \u0631\u0627 \u0627\u0631\u062a\u0642\u0627\u0621 \u062f\u0647\u06cc\u062f."],"Gutenberg Team":["\u062a\u06cc\u0645 \u06af\u0648\u062a\u0646\u0628\u0631\u06af"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["\u06af\u0648\u062a\u0646\u0628\u0631\u06af"],Demo:["\u067e\u06cc\u0634\u0646\u0645\u0627\u06cc\u0634"],"%s ago":["%s \u0642\u0628\u0644"],"Block style name must be a string.":["\u0646\u0627\u0645 \u0646\u0648\u0639 \u0628\u0644\u0627\u06a9 \u0628\u0627\u06cc\u062f \u0631\u0634\u062a\u0647 \u0628\u0627\u0634\u0646\u062f."]}},842,[]); +__d(function(e,t,o,i,r,s,n){r.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":["Tr\xe8s grand"],"Block breadcrumb":["Bloc de fil d\u2019Ariane"],"Site Title":["Titre du site"],"Open Colors Selector":["Ouvrir le s\xe9lecteur de couleurs"],"Overlay Gradient":["D\xe9grad\xe9 de superposition"],"Templates list":["Liste des mod\xe8les"],"Templates list navigation":["Navigation de liste des mod\xe8les"],"Filter templates list":["Liste des mod\xe8les de filtre"],"Uploaded to this template":["T\xe9l\xe9vers\xe9 sur ce mod\xe8le"],"Insert into template":["Ins\xe9rer dans le mod\xe8le"],"Template archives":["Archives de mod\xe8le"],"No templates found in Trash.":["Aucun mod\xe8le trouv\xe9 dans la corbeille."],"No templates found.":["Aucun mod\xe8le trouv\xe9."],"Parent Template:":["Mod\xe8le parent\xa0:"],"Search Templates":["Rechercher des mod\xe8les"],"All Templates":["Tous les mod\xe8les"],"View Template":["Voir le mod\xe8le"],"Edit Template":["Modifier le mod\xe8le"],"New Template":["Nouveau mod\xe8le"],"Add New Template":["Ajouter un nouveau mod\xe8le"],"Template\x04Add New":["Ajouter un nouveau"],"Admin Menu text\x04Templates":["Mod\xe8les"],Template:["Mod\xe8le"],"No matching template found":["Aucun mod\xe8le correspondant trouv\xe9"],"Gradient: %s":["D\xe9grad\xe9\xa0: %s"],"Gradient code: %s":["Code de d\xe9grad\xe9\xa0: %s"],"All content copied.":["Copi\xe9 tout le contenu ."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Le t\xe9l\xe9versement du m\xe9dia a \xe9chou\xe9. Si c\u2019est une photo ou une grande image, veuillez la redimensionner puis r\xe9essayez."],Gradient:["D\xe9grad\xe9"],"Gradient Presets":["Pr\xe9r\xe9glages de d\xe9grad\xe9"],"No Preview Available.":["Aucun aper\xe7u disponible."],Midnight:["Minuit"],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 d\xe9cembre 2018"],"February 21, 2019":["21 f\xe9vrier 2019"],"May 7, 2019":["7 mai 2019"],"Release Date":["Date de sortie"],"Jazz Musician":["Musicien de jazz"],Version:["Version"],"Six.":["Six."],"Five.":["Cinq."],"Four.":["Quatre."],"Three.":["Trois."],"Two.":["Deux."],"One.":["Un."],"One of the hardest things to do in technology is disrupt yourself.":["L\u2019une des choses les plus difficiles \xe0 faire dans le monde des technologies est de se r\xe9inventer soi-m\xeame."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["Tout autour, l\u2019\xe9cran presque totalement noir. \xc0 pr\xe9sent, tandis que la cam\xe9ra se d\xe9place lentement vers la fen\xeatre qui est presque un timbre-poste dans le cadre, d\u2019autres formes apparaissent ;"],"Window, very small in the distance, illuminated.":["La fen\xeatre, tr\xe8s petite au loin, est illumin\xe9e."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAIBLES LUEURS DE L\u2019AUBE - 1940 (MINIATURE)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":["Bienvenue dans le monde merveilleux des blocs\u2026"],"Snow Patrol":["Patrouille des neiges"],Dimensions:["Dimensions"],"Minimum height in pixels":["Auteur minimale en pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Appel \xe0 l\u2019action"],"In quoting others, we cite ourselves.":["En citant les autres, nous nous citons nous-m\xeames."],cite:["citer"],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["Dans un village de la Manche dont je ne veux pas me rappeler le nom, il n\u2019y a pas longtemps que vivait un de ces hidalgos qui ont lance au r\xe2telier, vieille rondache, maigre haridelle et limier de chasse."],"Block navigation":["Bloc navigation"],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":["Mod\xe8les \xe0 inclure dans votre th\xe8me."],Templates:["Mod\xe8les"],"Inserter Help Panel":["Panneau d\u2019aide de l\u2019outil d\u2019insertion"],"Pre-publish Checks":["V\xe9rifications de pr\xe9-publication"],"Please contact your site administrator to install new blocks.":["Veuillez contacter l\u2019administrateur de votre site pour installer de nouveaux blocs."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Aucun bloc trouv\xe9 dans votre biblioth\xe8que. Veuillez contacter l'administrateur de votre site pour installer de nouveaux blocs."],"No blocks found in your library.":["Aucun bloc trouv\xe9 dans votre biblioth\xe8que."],"No blocks found in your library. These blocks can be downloaded and installed:":["Aucun bloc trouv\xe9 dans votre biblioth\xe8que. Ces blocs peuvent \xeatre t\xe9l\xe9charg\xe9s et install\xe9s\xa0:"],"No blocks found in your library. We did find %d block available for download.":["Aucun bloc trouv\xe9 dans votre biblioth\xe8que. Nous avons trouv\xe9 %d bloc disponible au t\xe9l\xe9chargement.","Aucun bloc trouv\xe9 dans votre biblioth\xe8que. Nous avons trouv\xe9 %d blocs disponibles au t\xe9l\xe9chargement."],"Block previews can\u2019t load.":["Les aper\xe7us de blocs ne peuvent pas se charger."],Retry:["R\xe9essayer"],"Block previews can't install.":["Les aper\xe7us de bloc ne peuvent pas \xeatre install\xe9s."],"Updated %s":["%s mis \xe0 jour"],"%d active installation":["%d installation active","%d installations actives"],"This author has %d block, with an average rating of %d.":["Cet auteur poss\xe8de %d bloc, avec une \xe9valuation moyenne de %d.","Cet auteur poss\xe8de %d blocs, avec une \xe9valuation moyenne de %d."],"Authored by %s":["Cr\xe9\xe9 par %s"],Add:["Ajouter"],"%d total rating":[],"%s out of 5 stars":["%s sur 5 \xe9toiles"],"Enter Address":["Saisisissez l\u2019adresse"],"Pill Shape":[],"Logos Only":["Logos uniquement"],"Create a block of links to your social media or external sites":["Cr\xe9er un bloc de liens vers vos r\xe9seaux sociaux ou sites externes"],"Social links":["Liens sociaux"],"Open block navigator":["Ouvrir le navigateur de blocs"],"Attachment page":["Page de fichier joint"],Fill:["Remplir"],"Link rel":["Attribut \xab\xa0Rel\xa0\xbb du lien"],"Border Radius":["Rayon de bordure"],"Write gallery caption\u2026":["\xc9crire la l\xe9gende de la galerie\u2026"],"Content Blocks":["Blocs de contenu"],"Restore the backup":["Restaurer\xa0la\xa0sauvegarde"],"The backup of this post in your browser is different from the version below.":["La sauvegarde de cet article dans votre navigateur est diff\xe9rente de la version ci-dessous."],"Enable Block Directory search":["Activer la recherche dans le r\xe9pertoire des blocs"],"Block Directory":["R\xe9pertoire des blocs"],"Unable to connect to the filesystem. Please confirm your credentials.":["Impossible de se connecter au syst\xe8me de fichier. Veuillez confirmer vos identifiants de connexion."],"Sorry, you are not allowed to install blocks.":["D\xe9sol\xe9, vous n\u2019avez pas l\u2019autorisation d\u2019installer des blocs."],"%1$d block is disabled.":["Le bloc %1$d est d\xe9sactiv\xe9.","Les blocs %1$d sont d\xe9sactiv\xe9s."],"Reverse List Numbering":["Inverser le num\xe9rotage de la liste"],"Start Value":["Valeur de d\xe9part"],"Ordered List Settings":["R\xe9glages de liste ordonn\xe9e"],"Clear Media":["Effacer le m\xe9dia"],"block style\x04Circle Mask":["Masque circulaire"],"Default Style":["Style\xa0par d\xe9faut"],"Not set":["Non d\xe9fini"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["Parcourez la biblioth\xe8que pour en savoir plus sur ce que fait chaque bloc."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Il existe des blocs pour toutes sortes de contenus : ins\xe9rer du texte, des en-t\xeates, des images, des listes, des vid\xe9os, des tableaux, et bien plus encore."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Vous voici dans le monde merveilleux des blocs ! Les blocs sont la base de tous les contenus au sien de l\u2019\xe9diteur."],"Version of the content block format used by the object.":["Version du format du bloc de contenu utilis\xe9 par l\u2019objet."],"HTML content for the object, transformed for display.":["Contenu HTML pour l\u2019objet, transform\xe9 pour l\u2019affichage."],"Content for the object, as it exists in the database.":["Contenu pour cet objet, tel qu\u2019il existe dans la base de donn\xe9es."],"The content for the object.":["Le contenu pour l\u2019objet."],"Change column alignment":["Modifier l\u2019alignement des colonnes"],"Align Column Right":["Aligner la colonne \xe0 droite"],"Align Column Center":["Centrer la colonne"],"Align Column Left":["Aligner la colonne \xe0 gauche"],Color:["Couleur"],"Vivid purple":["Violet \xe9clatant"],"Disable & Reload":["D\xe9sactiver et recharger"],"Enable & Reload":["Activer et recharger"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Un rechargement de page est n\xe9cessaire pour cette modification. Assurez-vous que votre contenu est enregistr\xe9 avant de recharger."],"Display these keyboard shortcuts.":["Afficher ces raccourcis clavier."],"Experiments Settings":["R\xe9glages exp\xe9rimentaux"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg dispose de plusieurs fonctionnalit\xe9s exp\xe9rimentales que vous pouvez activer. S\xe9lectionnez simplement celles que vous voulez utiliser. Ces fonctionnalit\xe9s peuvent \xeatre modifi\xe9es, il est donc d\xe9conseill\xe9 de les utiliser en production."],"Enable Widgets Screen and Legacy Widget Block":["Activer l\u2019\xe9cran de Widgets et l\u2019ancien bloc Widget"],"Experiment settings":["R\xe9glages exp\xe9rimentaux"],"Block name name must be a string.":["Les noms de blocs doivent \xeatre des cha\xeenes."],Custom:["Personnalis\xe9"],Draft:["Brouillon"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Le bloc \xab\xa0%1$s\xa0\xbb ne contient pas de style nomm\xe9 \xab\xa0%2$s\xa0\xbb."],"Learn more about anchors":["En savoir plus sur les ancres"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Saisir un mot ou deux sans utiliser d\u2019espaces pour cr\xe9er une adresse web unique \u2013\xa0une ancre\xa0\u2013 pour ce titre. Ensuite, vous pourrez cr\xe9er des liens directement vers cette section de votre page."],"Widget Blocks (Experimental)":["Blocs Widgets (exp\xe9rimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["T\xe9l\xe9versez un fichier vid\xe9o, choisissez-en un dans votre biblioth\xe8que de m\xe9dias ou ajoutez-en un avec une URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["T\xe9l\xe9versez un fichier image, choisissez-en un dans votre biblioth\xe8que de m\xe9dias ou ajoutez-en un avec une URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["T\xe9l\xe9versez un fichier son, choisissez-en un dans votre biblioth\xe8que de m\xe9dias ou ajoutez-en un avec une URL."],"Upload a media file or pick one from your media library.":["T\xe9l\xe9versez un fichier m\xe9dia ou choisissez-en un dans votre biblioth\xe8que de m\xe9dias."],Skip:["Passer"],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":["Qu\u2019est-ce\xa0?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Ne pas laisser les moteur de recherche suivre ce lien."],"Provide more context about where the link goes.":["Fournissez plus de contexte sur la destination du lien."],"Title Attribute":["Attribut du titre"],"SEO Settings":["R\xe9glages SEO"],Description:["Description"],"Open in new tab":["Ouvrir dans un nouvel onglet"],links:["liens"],navigation:["navigation"],menu:["menu"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["T\xe9l\xe9versez un fichier ou choisissez-en un dans votre biblioth\xe8que de m\xe9dias."],"Learn more about embeds":["En apprendre plus \xe0 propos des contenus embarqu\xe9s"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Collez un lien vers le contenu que vous souhaitez afficher sur votre site."],"Upload an image or video file, or pick one from your media library.":["T\xe9l\xe9versez un fichier image ou vid\xe9o, ou s\xe9lectionnez-en un dans la biblioth\xe8que de m\xe9dias."],"Three columns; wide center column":["Trois colonnes\xa0; colonne centrale large"],"Three columns; equal split":["Trois colonnes\xa0; largeur \xe9gale"],"Two columns; two-thirds, one-third split":["Deux colonnes\xa0: deux tiers/un tiers"],"Two columns; one-third, two-thirds split":["Deux colonnes\xa0: un tiers/deux tiers"],"Two columns; equal split":["Deux colonnes\xa0; largeur \xe9gale"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Votre site n\u2019a aucun %s, donc il n\u2019y a rien \xe0 afficher pour le moment."],"More tools & options":["Davantage d\u2019outils et options"],"Create Table":["Cr\xe9er un tableau"],"Insert a table for sharing data.":["Ins\xe9rer un tableau pour partager des donn\xe9es."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["D\xe9grouper"],"verb\x04Group":["Grouper"],"Separate with commas or the Enter key.":["S\xe9parez avec une virgule ou avec la touche entr\xe9e."],"Separate with commas, spaces, or the Enter key.":["S\xe9parez avec une virgule, un espace, ou avec la touche entr\xe9e."],"Separate multiple classes with spaces.":["Dans le cas de plusieurs classes, s\xe9parez-les avec des espaces."],"Move image forward":["D\xe9placer l\u2019image vers l\u2019avant"],"Move image backward":["D\xe9placer l\u2019image vers l\u2019arri\xe8re"],"Sorry, you are not allowed to edit sidebars.":["D\xe9sol\xe9, vous n\u2019avez pas l\u2019autorisation de modifier les colonnes lat\xe9rales."],"Sorry, you are not allowed to read sidebars.":["D\xe9sol\xe9, vous n\u2019avez pas l\u2019autorisation de visualiser les colonnes lat\xe9rales."],"The sidebar\u2019s ID.":["ID de la colonne lat\xe9rale."],"Displays a set of blocks":["S\u2019affiche comme un groupe de blocs"],"Blocks Area":["Zone de blocs"],"Block rendered as empty.":["Bloc devenu vide."],"Inline Code":["Code en ligne"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Remarque\xa0: la lecture automatique de vid\xe9o peut cr\xe9er des probl\xe8mes d\u2019utilisabilit\xe9 pour certains visiteurs."],"Footer section":["Section de pied de page"],"Header section":["Section d\u2019en-t\xeate"],"Sorting and Filtering":["Tri et filtrage"],"Post Meta Settings":["R\xe9glages des m\xe9ta de publication"],"Post Content":["Contenu de publication"],"Post Content Settings":["R\xe9glages de contenu de publication"],"Percentage width":["Largeur en pourcentage"],"Column Settings":["R\xe9glages de la colonne"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Remarque\xa0: la lecture automatique de sons peut causer des probl\xe8mes d\u2019utilisabilit\xe9 pour certains utilisateurs."],"Block area updated.":["Zone de blocs mise \xe0 jour."],"Block area scheduled.":["Zone de blocs planifi\xe9e."],"Block area published.":["Zone de blocs publi\xe9e."],"Block areas list":["Liste de zones de blocs"],"Block areas list navigation":["Navigation de liste de zones de blocs"],"Filter block areas list":["Filtrer la liste des zones de blocs"],"No block area found.":["Aucune zone de blocs trouv\xe9e."],"Search Block Areas":["Rechercher des zones de blocs"],"All Block Areas":["Toutes les zones de blocs"],"View Block Area":["Voir la zone de blocs"],"Edit Block Area":["Modifier la zone de blocs"],"New Block Area":["Nouvelle de zone de blocs"],"Add New Block Area":["Ajouter une nouvelle zone de blocs"],"admin menu\x04Block Areas":["Zones de blocs"],"post type singular name\x04Block Area (Experimental)":["Zone de blocs (exp\xe9rimental)"],"post type general name\x04Block Area (Experimental)":["Zone de blocs (exp\xe9rimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Type de publication personnalis\xe9 exp\xe9rimental qui stockera les zones de blocs r\xe9f\xe9renc\xe9es par th\xe8mes."],"Widgets screen content":["Contenu de l\u2019\xe9cran Widgets"],"Widgets advanced settings":["R\xe9glages avanc\xe9s des widgets"],"(experimental)":["(exp\xe9rimental)"],"Block Areas":["Zones de blocs"],"Widgets screen top bar":["Barre du haut de l\u2019\xe9cran Widgets"],"This color combination may be hard for people to read.":["Cette combinaison de couleurs risque d\u2019\xeatre difficile \xe0 lire."],"There is no poster image currently selected":["Il n\u2019y a actuellement aucune image de banni\xe8re s\xe9lectionn\xe9e"],"The current poster image url is %s":["L\u2019URL de l\u2019image de banni\xe8re actuelle est %s"],section:["section"],row:["ligne"],wrapper:["conteneur"],container:["contenant"],"A block that groups other blocks.":["Un bloc qui groupe d\u2019autres blocs."],Group:["Groupe"],"Crop image to fill entire column":["Recadrer l\u2019image pour remplir toute la colonne"],"Play inline":["Lancer directement"],"Leave empty if the image is purely decorative.":["Laisser vide si l\u2019image est purement d\xe9corative."],"Describe the purpose of the image":["D\xe9crivez l\u2019objet de l\u2019image"],"Add a block":["Ajouter un bloc"],"Block vertical alignment setting label\x04Change vertical alignment":["Modifier l\u2019alignement vertical"],"Block vertical alignment setting\x04Vertically Align Bottom":["Aligner verticalement en bas"],"Block vertical alignment setting\x04Vertically Align Middle":["Aligner verticalement au milieu"],"Replace Image":["Remplacer l\u2019image"],"Block vertical alignment setting\x04Vertically Align Top":["Aligner verticalement en haut"],"Display a legacy widget.":["Affiche un widget h\xe9rit\xe9."],"Legacy Widget (Experimental)":["Widget h\xe9rit\xe9 (exp\xe9rimental)"],"Change widget":["Modifier le widget"],"Legacy Widget":["Widget h\xe9rit\xe9"],"You don't have permissions to use widgets on this site.":["Vous n\u2019avez pas l\u2019autorisation d\u2019utiliser des widgets sur ce site."],"Select a legacy widget to display:":["S\xe9lectionner un widget h\xe9rit\xe9 \xe0 afficher\xa0:"],"There are no widgets available.":["Il n\u2019y a pas de widget disponible."],"Change block type or style":["Modifier le type ou le style de bloc"],"keyboard key\x04Space":["Espace"],"keyboard key\x04Backspace":["Retour"],"More rich text controls":["Davantage de contr\xf4les de texte enrichi"],"Search Terms":["Rechercher des termes"],"Exit the Editor":["Sortir de l\u2019\xe9diteur"],"Block Manager":["Gestionnaire de blocs"],"Class name of the widget.":["Nom de classe du widget."],"Sorry, you are not allowed to access widgets on this site.":["D\xe9sol\xe9, vous n\u2019\xeates pas autoris\xe9 \xe0 acc\xe9der aux widgets sur ce site."],"Widgets (beta)":["Widgets (b\xeata)"],link:["lien"],"Embedded content from %s can't be previewed in the editor.":["Les contenus embarqu\xe9s depuis %s ne peuvent \xeatre pr\xe9visualis\xe9s dans l\u2019\xe9diteur."],"Custom Color":["Couleur personnalis\xe9e"],"Prompt visitors to take action with a button-style link.":["Inviter les visiteurs \xe0 passer \xe0 l\u2019action \xe0 l\u2019aide d\u2019un lien ressemblant \xe0 un bouton."],"Stick to the top of the blog":["\xc9pingler en haut du blog"],"Read about permalinks":["Lire \xe0 propos des permaliens"],"The last part of the URL.":["La derni\xe8re partie de l\u2019URL."],"URL Slug":["Slug de l\u2019URL"],"A cloud of your most used tags.":["Un nuage de vos \xe9tiquettes les plus utilis\xe9es."],"Tag Cloud":["Nuage d\u2019\xe9tiquettes"],Taxonomy:["Taxonomie"],"Tag Cloud Settings":["R\xe9glages du nuage d\u2019\xe9tiquettes"],"- Select -":["- S\xe9lectionner -"],Default:["Par d\xe9faut"],find:["trouver"],"Help visitors find your content.":["Aider les visiteurs \xe0 trouver vos publications."],Search:["Recherche"],"Add button text\u2026":["Ajouter un texte au bouton\u2026"],"Button text":["Texte du bouton"],"Optional placeholder\u2026":["Texte indicatif facultatif\u2026"],"Optional placeholder text":["Texte indicatif facultatif"],"Add label\u2026":["Ajouter un libell\xe9\u2026"],"Label text":["Texte du libell\xe9"],"image %1$d of %2$d in gallery":["image %1$d de %2$d dans la galerie"],archive:["archive"],posts:["publications"],"A calendar of your site\u2019s posts.":["Un calendrier des publications de votre site."],Calendar:["Calendrier"],by:["par"],"An error has occurred, which probably means the feed is down. Try again later.":["Une erreur est survenue, ce qui signifie probablement que le flux est cass\xe9. R\xe9essayez plus tard."],"RSS Error:":["Erreur RSS\xa0:"],"block style\x04Default":["Par d\xe9faut"],"Fullscreen mode deactivated":["Mode plein \xe9cran d\xe9sactiv\xe9"],"Fullscreen mode activated":["Mode plein \xe9cran activ\xe9"],"Spotlight mode deactivated":["Mode mise en lumi\xe8re d\xe9sactiv\xe9"],"Spotlight mode activated":["Mode mise en lumi\xe8re activ\xe9"],"Top toolbar deactivated":["Barre d\u2019outils du haut d\xe9sactiv\xe9e"],"Top toolbar activated":["Barre d\u2019outils du haut activ\xe9e"],Back:["Retour"],"Feature activated":["Fonctionnalit\xe9 activ\xe9e"],"Feature deactivated":["Fonctionnalit\xe9 d\xe9sactiv\xe9e"],"Vertical Pos.":["Pos. verticale"],"Horizontal Pos.":["Pos. horizontale"],feed:["flux"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Afficher des \xe9l\xe9ments depuis n\u2019importe quel flux RSS ou Atom."],RSS:["RSS"],"Max number of words in excerpt":["Nombre maximum de mots dans l\u2019extrait"],"Display excerpt":["Afficher l\u2019extrait"],"Display date":["Afficher la date"],"Display author":["Afficher l\u2019auteur"],"RSS Settings":["R\xe9glages du RSS"],"Edit RSS URL":["Modifier l\u2019URL du flux RSS"],"Content before this block will be shown in the excerpt on your archives page.":["Le contenu avant ce bloc devrait \xeatre visible dans l\u2019extrait sur vos pages d\u2019archives."],"Hide the excerpt on the full content page":["Masquer l\u2019extrait sur la page de contenu complet"],"The excerpt is visible.":["L\u2019extrait est visible."],"The excerpt is hidden.":["L\u2019extrait est masqu\xe9."],"Sorry, this content could not be embedded.":["D\xe9sol\xe9, ce contenu ne peut pas \xeatre embarqu\xe9."],"Embed Amazon Kindle content.":["Contenu embarqu\xe9 Amazon Kindle."],ebook:["e-book"],"Embed Crowdsignal (formerly Polldaddy) content.":["Contenu embarqu\xe9 Crowdsignal (anciennement Polldaddy)."],"Focal Point Picker":["S\xe9lecteur de point de focalisation"],Underline:["Souligner"],"Attempt Block Recovery":["Tentative de restauration du bloc"],"Word count type. Do not translate!\x04words":["mots"],"content placeholder\x04Content\u2026":["Contenu\u2026"],"button label\x04Convert to link":["Convertir en lien"],"button label\x04Try again":["R\xe9essayer"],"Editor tips":["Conseils de r\xe9daction"],"Block (selected)":["Bloc (s\xe9lectionn\xe9)"],"Document (selected)":["Document (s\xe9lectionn\xe9)"],"%d word":["%d mot","%d mots"],"Top Toolbar":["Barre d\u2019outils du haut"],"Link Rel":["Relation du lien"],"Link CSS Class":["Classe CSS du lien"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Cr\xe9ez du contenu et enregistrez-le pour vous ou pour d\u2019autres contributeurs et contributrices afin de le r\xe9utiliser ailleurs sur votre site, et appliquer les modifications partout o\xf9 il est utilis\xe9."],"To edit the featured image, you need permission to upload media.":["Pour modifier l\u2019image mise en avant, vous devez avoir le droit de t\xe9l\xe9verser des m\xe9dias."],"To edit this block, you need permission to upload media.":["Pour modifier ce bloc, vous devez avoir le droit de t\xe9l\xe9verser des m\xe9dias."],"(selected block)":["(bloc s\xe9lectionn\xe9)"],"Block tools":["Outils du bloc"],Permalink:["Permalien"],"This image has an empty alt attribute":["Cette image a un attribut alt vide"],"This image has an empty alt attribute; its file name is %s":["Cette image a un attribut alt vide\xa0; le nom du fichier est %s"],"Block area reverted to draft.":["Zone de blocs redevenue brouillon."],"Block area published privately.":["Zone de blocs publi\xe9e en priv\xe9."],"No block areas found in Trash.":["Aucune zone de blocs trouv\xe9e \xe0 la corbeille."],"Block\x04Add New":["Ajouter un nouveau"],"add new on admin bar\x04Block Area":["Zone de blocs"],"Link inserted.":["Lien ins\xe9r\xe9."],"Warning: the link has been inserted but may have errors. Please test it.":["Avertissement\xa0: le lien a \xe9t\xe9 ins\xe9r\xe9 mais peut contenir des erreurs. Veuillez le tester."],"%s block selected.":["%s bloc s\xe9lectionn\xe9.","%s blocs s\xe9lectionn\xe9s."],Thumbnail:["Miniature"],"Full Size":["Pleine taille"],"Link selected.":["Lien s\xe9lectionn\xe9."],"Start writing with text or HTML":["Commencez \xe0 \xe9crire avec du texte ou du HTML"],"Type text or HTML":["Saisissez du texte ou su HTML"],"Block icon":["Ic\xf4ne de bloc"],"Align Text Right":["Aligner le texte \xe0 droite"],"Align Text Center":["Aligner le texte au centre"],"Align Text Left":["Aligner le texte \xe0 gauche"],"Start writing or type / to choose a block":["Commencez \xe0 \xe9crire ou saisissez \xab\xa0/\xa0\xbb pour choisir un bloc"],"Empty block; start writing or type forward slash to choose a block":["Bloc vide\xa0; commencez \xe0 \xe9crire ou saisissez une barre oblique pour choisir un bloc"],"Paragraph block":["Bloc paragraphe"],"Page Break":["Saut de page"],"Stack on mobile":["Empiler sur mobile"],Annotation:["Annotation"],"Drag images, upload new ones or select files from your library.":["Glisser des images, en t\xe9l\xe9verser de nouvelles ou s\xe9lectionner des fichiers dans votre biblioth\xe8que."],"blocks\x04Most Used":["Les plus utilis\xe9s"],"imperative verb\x04Resolve":["R\xe9soudre"],"font size name\x04Huge":["\xc9norme"],"font size name\x04Large":["Large"],"font size name\x04Medium":["M\xe9dium"],"font size name\x04Small":["Petite"],"font size name\x04Normal":["Normale"],"keyboard button\x04Enter":["Entr\xe9e"],"button label\x04Import":["Importer"],"button label\x04Download":["T\xe9l\xe9charger"],"button label\x04Embed":["Int\xe9grer"],"block title\x04Embed":["Contenu embarqu\xe9"],"block title\x04Classic":["Classique"],"block style\x04Large":["Large"],"%s (opens in a new tab)":["%s (ouverture dans un nouvel onglet)"],"Link edited.":["Lien modifi\xe9."],"Link removed.":["Lien retir\xe9."],media:["m\xe9dia"],"Double-check your settings before publishing.":["Rev\xe9rifiez vos r\xe9glages avant de publier."],"Generating preview\u2026":["G\xe9n\xe9ration de l\u2019aper\xe7u\u2026"],"Edit or update the image":["Modifier ou mettre \xe0 jour l\u2019image"],Media:["M\xe9dia"],"Navigate to the nearest toolbar.":["Naviguer vers la barre d\u2019outils la plus proche."],"Document tools":["Outils du document"],"Document and block tools":["Outils du document et des blocs"],"Embed a video from your media library or upload a new one.":["Int\xe9grer une vid\xe9o depuis votre biblioth\xe8que de m\xe9dias ou en t\xe9l\xe9verser une nouvelle."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Ins\xe9rer de la po\xe9sie en utilisant un format d\u2019espacement sp\xe9cifique, ou alors des paroles de chansons."],"Add white space between blocks and customize its height.":["Ajoutez un espace vide entre les blocs et personnalisez sa hauteur."],"Insert additional custom elements with a WordPress shortcode.":["Ins\xe9rer un \xe9l\xe9ment personnalis\xe9 additionnel avec un code court WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Cr\xe9er un espacement entre des id\xe9es ou entre des section avec un s\xe9parateur horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Donner une emphase visuelle \xe0 vos textes de citations. \xab\xa0En citant les autres, nous nous citons nous m\xeames\xa0\xbb \u2014\xa0Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Donner une emphase visuelle \xe0 une citation depuis votre texte."],"Start with the building block of all narrative.":["Commencer par la pierre angulaire de tout r\xe9cit."],"Separate your content into a multi-page experience.":["S\xe9parer votre contenu sur plusieurs pages."],"Set media and words side-by-side for a richer layout.":["Mettre un m\xe9dia et du texte c\xf4te-\xe0-c\xf4te pour une mise en page enrichie."],"Media & Text Settings":["M\xe9dia & r\xe9glages du texte"],"Create a bulleted or numbered list.":["Cr\xe9er une liste \xe0 puces ou une liste num\xe9rot\xe9e."],"Display a list of your most recent comments.":["Afficher une liste de vos commentaires les plus r\xe9cents."],"Insert an image to make a visual statement.":["Ins\xe9rer une image pour cr\xe9er une d\xe9claration visuelle."],"Add custom HTML code and preview it as you edit.":["Ajouter du code HTML personnalis\xe9 et le pr\xe9visualiser directement."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduire les nouvelles sections et organiser le contenu pour aider les visiteurs (et les moteurs de recherche) \xe0 comprendre la structure de votre contenu."],"Display multiple images in a rich gallery.":["Afficher de multiples images dans une galerie enrichie."],"Add a link to a downloadable file.":["Ajouter un lien vers un fichier t\xe9l\xe9chargeable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Int\xe9grer des vid\xe9os, des images, des tweets, des sons et d\u2019autres contenus depuis des sources externes."],"Resize for smaller devices":["Redimensionner pour les petits appareils"],"This embed may not preserve its aspect ratio when the browser is resized.":["Ce contenu int\xe9gr\xe9 pourrait perdre son ratio si le navigateur est redimensionn\xe9."],"This embed will preserve its aspect ratio when the browser is resized.":["Ce contenu int\xe9gr\xe9 conservera son ratio si le navigateur est redimensionn\xe9."],"Embed an Animoto video.":["Int\xe9grer une vid\xe9o Animoto."],"Embed a Vimeo video.":["Int\xe9grer une vid\xe9o Vimeo."],"Embed Flickr content.":["Int\xe9grer un contenu Flickr."],"Embed Spotify content.":["Int\xe9grer un contenu Spotify."],"Embed SoundCloud content.":["Int\xe9grer un contenu SoundCloud."],"Embed a WordPress post.":["Int\xe9grer une publication WordPress."],"Embed an Instagram post.":["Int\xe9grer une publication Instagram."],"Embed a Facebook post.":["Int\xe9grer une publication Facebook."],"Embed a WordPress.tv video.":["Int\xe9grer une vid\xe9o WordPress.tv."],"Embed a VideoPress video.":["Int\xe9grer une vid\xe9o VideoPress."],"Embed a Tumblr post.":["Int\xe9grer une publication Tumblr."],"Embed a TED video.":["Int\xe9grer une vid\xe9o TED."],"Embed Speaker Deck content.":["Int\xe9grer un contenu Speaker Deck."],"Embed a YouTube video.":["Int\xe9grer une vid\xe9o YouTube."],"Embed SmugMug content.":["Int\xe9grer un contenu SmugMug."],"Embed Slideshare content.":["Int\xe9grer un contenu Slideshare."],"Embed Scribd content.":["Int\xe9grer un contenu Scribd."],"Embed Screencast content.":["Int\xe9grer un contenu Screencast."],"Embed ReverbNation content.":["Int\xe9grer un contenu ReverbNation."],"Embed a Reddit thread.":["Int\xe9grer un fil de discussion Reddit."],"Embed Polldaddy content.":["Int\xe9grer un contenu Polldaddy."],"Embed Mixcloud content.":["Int\xe9grer un contenu Mixcloud."],"Embed a tweet.":["Int\xe9grer un tweet."],"Embed Meetup.com content.":["Int\xe9grer un contenu Meetup.com."],"Embed Kickstarter content.":["Int\xe9grer un contenu Kickstarter."],"Embed Issuu content.":["Int\xe9grer un contenu Issuu."],"Embed Imgur content.":["Int\xe9grer un contenu Imgur."],"Embed Hulu content.":["Int\xe9grer un contenu Hulu."],"Embed a Dailymotion video.":["Int\xe9grer une vid\xe9o Dailymotion."],"Embed CollegeHumor content.":["Int\xe9grer un contenu CollegeHumor."],"Embed Cloudup content.":["Int\xe9grer un contenu Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Ajouter une image ou une vid\xe9o avec un texte par dessus \u2013\xa0Parfait pour les en-t\xeates."],"Display code snippets that respect your spacing and tabs.":["Afficher des extraits de code qui respectent vos espacements et tabulations."],"Use the classic WordPress editor.":["Utiliser l\u2019ancien \xe9diteur WordPress."],"Display a list of all categories.":["Afficher une liste de toutes les cat\xe9gories."],"Embed a simple audio player.":["Int\xe9grer un simple lecteur audio."],"noun\x04View":["Vue"],"editor button\x04Left to right":["De gauche \xe0 droite"],"Save as Pending":["Enregistrer comme en attente"],"%s address":["adresse de %s"],"Paste or type URL":["Collez ou saisissez l\u2019URL"],"Insert from URL":["Ins\xe9rer \xe0 partir d\u2019une URL"],"Block Navigator":["Navigateur de blocs"],Styles:["Styles"],"Advanced Panels":["Panneaux avanc\xe9s"],"Document Panels":["Panneaux de documentation"],General:["G\xe9n\xe9ral"],"Open the block navigation menu.":["Ouvrir le menu de navigation de bloc."],"Work without distraction":["Travailler sans distraction"],"Focus on one block at a time":["Se concentrer sur un bloc \xe0 la fois"],"Access all block and document tools in a single place":["Acc\xe9der \xe0 tous les blocs et au document \xe0 partir d\u2019un endroit unique"],Options:["Options"],"(opens in a new tab)":["(ouvre un nouvel onglet)"],Minutes:["Minutes"],Hours:["Heures"],Time:["Heure"],Year:["Ann\xe9e"],Day:["Jour"],December:["D\xe9cembre"],November:["Novembre"],October:["Octobre"],September:["Septembre"],August:["Ao\xfbt"],July:["Juillet"],June:["Juin"],May:["Mai"],April:["Avril"],March:["Mars"],February:["F\xe9vrier"],January:["Janvier"],Month:["Mois"],Date:["Date"],"Go to the first (home) or last (end) day of a week.":["Aller au premier (accueil) ou dernier (fin) jour d\u2019une semaine."],"Home/End":["Accueil/fin"],"Home and End":["Accueil et fin"],"Move backward (PgUp) or forward (PgDn) by one month.":["Revenir en arri\xe8re (PgUp) ou avancer (PgDn) d\u2019un mois."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Paginer vers le haut et vers le bas"],"Move backward (up) or forward (down) by one week.":["Revenir en arri\xe8re (haut) ou avancer (bas) d\u2019une semaine."],"Up and Down Arrows":["Fl\xe8ches vers le haut et le bas"],"Move backward (left) or forward (right) by one day.":["Revenir en arri\xe8re (gauche) ou avancer (droite) d\u2019un jour."],"Left and Right Arrows":["Fl\xe8ches gauche et droite"],"Select the date in focus.":["S\xe9lectionner la date courante."],"Navigating with a keyboard":["Navigation avec un clavier"],"Click the desired day to select it.":["Cliquez sur le jour d\xe9sir\xe9 pour le s\xe9lectionner."],"Click the right or left arrows to select other months in the past or the future.":["Utilisez les fl\xe8ches droite ou gauche pour s\xe9lectionner d\u2019autres mois dans le pass\xe9 ou le futur."],"Click to Select":["Cliquez pour s\xe9lectionner"],"Calendar Help":["Aide de calendrier"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Utilisez les touches fl\xe9ch\xe9es pour changer la couleur de base. D\xe9placez-vous vers le haut pour \xe9claircir la couleur, vers le bas pour assombrir, vers la gauche pour diminuer la saturation, et vers la droite pour l\u2019augmenter."],"Choose a shade":["Choisir une teinte"],"Change color format":["Modifier le format de couleur"],"Color value in HSL":["Valeur de couleur en HSL"],"Color value in RGB":["Valeur de couleur en RGB"],"Color value in hexadecimal":["Valeur de la couleur en hexad\xe9cimal"],"RGB mode active":["Mode RVB actif"],"Hex color mode active":["Mode couleur h\xe9xad\xe9cimale actif"],"Hue/saturation/lightness mode active":["Mode teinte/saturation actif"],"Move the arrow left or right to change hue.":["D\xe9placer les fl\xe8ches vers la gauche ou la droite pour modifier la teinte."],"Hue value in degrees, from 0 to 359.":["Valeur de la teinte en chiffres de 0 \xe0 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valeur alpha de 0 (transparent) \xe0 1 (compl\xe8tement opaque)."],Stripes:["Rayures"],"Your site doesn\u2019t include support for this block.":["Votre site n\u2019inclut pas de support pour ce bloc."],"Unrecognized Block":["Bloc non reconnu"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Votre site n\u2019inclut pas le support pour le bloc \xab\xa0%s\xa0\xbb. Vous pouvez laisser ce bloc intact ou le retirer compl\xe8tement."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Votre site n\u2019inclut pas le support du bloc \xab\xa0%s\xa0\xbb. Vous pouvez laisser ce bloc tel quel, convertir son contenu en bloc HTML personnalis\xe9 ou le retirer compl\xe8tement."],"Media area":["Zone de m\xe9dia"],"Media & Text":["M\xe9dia & texte"],"Show media on right":["Afficher le m\xe9dia sur la droite"],"Show media on left":["Afficher le m\xe9dia sur la gauche"],"Open in New Tab":["Ouvrir dans un nouvel onglet"],Cover:["Banni\xe8re"],"Border Settings":["R\xe9glages de la bordure"],"Edit media":["Modifier le m\xe9dia"],Medium:["Moyen"],"Paste URL or type to search":["Copier l\u2019URL ou saisir une recherche"],Terms:["Termes"],"Your work will be published at the specified date and time.":["Votre publication sera mise en ligne \xe0 la date et \xe0 l\u2019heure sp\xe9cifi\xe9es."],"Are you ready to schedule?":["Voulez-vous planifier\xa0?"],"Always show pre-publish checks.":["Toujours afficher les v\xe9rifications de pr\xe9-publication."],"Take Over":["Prendre le contr\xf4le"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Un autre utilisateur ou utilisatrice travaille actuellement sur cette publication, ce qui signifie que vous ne pouvez pas faire de modifications \xe0 moins que vous ne preniez le contr\xf4le."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s travaille actuellement sur cette publication, ce qui signifie que vous ne pouvez pas faire de modifications \xe0 moins que vous ne preniez le contr\xf4le."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Un autre utilisateur ou utilisatrice vient de prendre le contr\xf4le d\u2019\xe9dition sur cette publication. Ne vous inqui\xe9tez pas, les modifications faites avant que cela n\u2019arrive ont \xe9t\xe9 enregistr\xe9s."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s vient de prendre le contr\xf4le d\u2019\xe9dition sur cette publication. Ne vous inqui\xe9tez pas, les modifications faites avant que cela n\u2019arrive ont \xe9t\xe9 enregistr\xe9s."],Avatar:["Avatar"],"This post is already being edited.":["Cette publication est d\xe9j\xe0 en cours de modification."],"Someone else has taken over this post.":["Quelqu\u2019un d\u2019autre a pris le contr\xf4le sur cette publication."],"This block contains unexpected or invalid content.":["Ce bloc contient du contenu non valide ou inattendu."],"Resolve Block":["R\xe9soudre les probl\xe8mes de ce bloc"],"Convert to HTML":["Convertir en HTML"],"This block can only be used once.":["Ce bloc ne peut \xeatre utilis\xe9 qu\u2019une fois."],"Exit Code Editor":["Sortir de l\u2019\xe9diteur de code"],"Editing Code":["\xc9dition de code"],"Solid Color":["Couleur unie"],"Main Color":["Couleur principale"],HTML:["HTML"],"Write HTML\u2026":["\xc9criture de HTML\u2026"],"Media Settings":["R\xe9glages des m\xe9dias"],"Overlay Color":["Couleur du masque"],Overlay:["Masque"],"Insert Media":["Ins\xe9rer un m\xe9dia"],"Reusable block imported successfully!":["Bloc r\xe9utilisable bien import\xe9\xa0!"],"Invalid Reusable Block JSON file":["Fichier JSON de bloc r\xe9utilisable non valide"],"Invalid JSON file":["Fichier JSON non valide"],"Import from JSON":["Importer d\u2019un JSON"],Backtick:["Retour arri\xe8re"],Period:["P\xe9riode"],Comma:["Virgule"],"Change type of %d block":["Modifier le type de %d bloc","Modifier le type de %d blocs"],Current:["Actuel"],"After Conversion":["Apr\xe8s conversion"],"Change alignment":["Modifier l\u2019alignement"],"Change text alignment":["Modifier l\u2019alignement du texte"],"%d block":["%d bloc","%d blocs"],Escape:["ESC"],"Forward-slash":["Barre oblique (slash)"],"No archives to show.":["Aucune archive \xe0 afficher."],"This file is empty.":["Ce fichier est vide."],"Sorry, this file type is not supported here.":["D\xe9sol\xe9 ce type de fichier n\u2019est pas pris en charge ici."],"Manage All Reusable Blocks":["G\xe9rer tous les blocs r\xe9utilisables"],Title:["Titre"],"Fullscreen Mode":["Mode plein \xe9cran"],"Beautiful landscape":["Beau panorama"],"Close panel":["Fermer le panneau"],"Convert to Classic Block":["Convertir en bloc Classique"],"Remove Poster Image":["Retirer l\u2019image de couverture"],"Select Poster Image":["S\xe9lectionner une image de couverture"],"Poster Image":["Image de couverture"],"This block is deprecated. Please use the Columns block instead.":["Ce bloc est obsol\xe8te. Veuillez utiliser le bloc Colonnes \xe0 la place."],"Text Columns (deprecated)":["Colonnes de texte (obsol\xe8te)"],"Row Count":["Compteur de lignes"],"Column Count":["Compteur de colonnes"],"This block is deprecated. Please use the Paragraph block instead.":["Ce bloc est obsol\xe8te. Veuillez utiliser le bloc Paragraphe \xe0 la place."],"Subheading (deprecated)":["Sous-titre (obsol\xe8te)"],blockquote:["citation"],"Change the block type after adding a new paragraph.":["Modifier le type de block apr\xe8s l\u2019ajout d\u2019un nouveau paragraphe."],"Spotlight Mode":["Mode \xab\xa0Mise en lumi\xe8re\xa0\xbb"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Les \xe9tiquettes aident les utilisateur et utilisatrices ainsi que les moteurs de recherche \xe0 naviguer sur votre site et \xe0 trouver vos contenus. Ajoutez quelques \xe9tiquettes pour d\xe9crire votre publication."],"Add tags":["Ajouter des \xe9tiquettes"],"Apply the \"%1$s\" format.":["Appliquer le format \xab\xa0%1$s\xa0\xbb."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Votre th\xe8me utilise les formats de publication pour mettre en avant diff\xe9rents types de contenus, comme les images ou les vid\xe9os. Appliquez un format de publication pour utiliser cette mise en forme sp\xe9cifique."],"Use a post format":["Utiliser un format de publication"],"Insert After":["Ins\xe9rer apr\xe8s"],"Insert Before":["Ins\xe9rer avant"],"Move %1$d block from position %2$d down by one place":["D\xe9placer le bloc %1$d d\u2019une place en dessous de %2$d","D\xe9placer les blocs %1$d d\u2019une place en dessous de %2$d"],"Move %1$d block from position %2$d up by one place":["D\xe9placer le bloc %1$d d\u2019une place en dessus de %2$d","D\xe9placer les blocs %1$d d\u2019une place en dessus de %2$d"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["vid\xe9o"],"Insert a new block before the selected block(s).":["Ins\xe9rer un nouveau block avant le ou les blocs s\xe9lectionn\xe9s."],"Remove the selected block(s).":["Retirer le ou les blocs s\xe9lectionn\xe9s."],"Duplicate the selected block(s).":["Dupliquer le ou les blocs s\xe9lectionn\xe9s."],"Block shortcuts":["Raccourcis pour les blocs"],"Clear selection.":["Effacer la s\xe9lection."],"Select all text when typing. Press again to select all blocks.":["S\xe9lectionner tout le texte lors de la saisie. Appuyez \xe0 nouveau pour s\xe9lectionner tous les blocs."],"Selection shortcuts":["Raccourcis de s\xe9lection"],"Switch between Visual Editor and Code Editor.":["Basculer de l\u2019\xe9diteur visuel \xe0 l\u2019\xe9diteur de code source."],"Navigate to the previous part of the editor (alternative).":["Naviguer vers la partie pr\xe9c\xe9dente de l\u2019\xe9diteur (alternative)."],"Navigate to the next part of the editor (alternative).":["Naviguer vers la partie suivante de l\u2019\xe9diteur (alternative)."],"Navigate to the previous part of the editor.":["Naviguer vers la partie pr\xe9c\xe9dente de l\u2019\xe9diteur."],"Navigate to the next part of the editor.":["Naviguer vers la partie suivante de l\u2019\xe9diteur."],"Show or hide the settings sidebar.":["Afficher ou masquer la colonne lat\xe9rale de r\xe9glages."],"Redo your last undo.":["Remettre en place votre derni\xe8re annulation."],"Undo your last changes.":["Annuler vos derni\xe8res modifications."],"Save your changes.":["Enregistrer vos modifications."],"Global shortcuts":["Raccourcis g\xe9n\xe9raux"],"Remove a link.":["Retirer un lien."],"Convert the selected text into a link.":["Convertir le texte s\xe9lectionn\xe9 en lien."],"Underline the selected text.":["Souligner le texte s\xe9lectionn\xe9."],"Make the selected text italic.":["Passer le texte s\xe9lectionn\xe9 en italique."],"Make the selected text bold.":["Passer le texte s\xe9lectionn\xe9 en gras."],"Text formatting":["Mise en forme du texte"],"Insert a new block after the selected block(s).":["Ins\xe9rer un nouveau bloc apr\xe8s le ou les blocs s\xe9lectionn\xe9s."],"Keyboard Shortcuts":["Raccourcis clavier"],"Thanks for testing Gutenberg!":["Merci de tester Gutenberg\xa0!"],"Help build Gutenberg":["Aidez \xe0 construire Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si vous voulez en savoir plus sur la fa\xe7on de construire des blocs additionnels, ou si vous souhaitez aider sur ce projet, rendez-vous sur le d\xe9p\xf4t GitHub."],"The WordPress community":["La communaut\xe9 WordPress"],"Code is Poetry":["Le code est une po\xe9sie."],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Vous pouvez construire autant de blocs que vous voulez, statiques ou dynamiques, d\xe9coratifs ou ordinaires. Voici un bloc de citation en ligne\xa0:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Tous les blocs proposent ce choix d\u2019alignement. Le bloc de contenu embarqu\xe9 le propose aussi, et cela est nativement responsive\xa0:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Ci-dessus, une galerie avec seulement deux images. C\u2019est une m\xe9thode simple pour cr\xe9er des mises en page attractives, sans avoir \xe0 faire flotter les images l\u2019une contre l\u2019autre. Vous pouvez aussi convertir la galerie vers des images individuelles, en utilisant le basculement d\u2019un type de bloc \xe0 un autre."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Bien s\xfbr, l\u2019image pleine largeur peut \xeatre assez imposante. Mais parfois l\u2019image peut en valoir la peine."],"Accessibility is important — don’t forget image alt attribute":["L\u2019accessibilit\xe9 est importante\xa0: n\u2019oubliez pas l\u2019attribut alt"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si vous combinez les nouveaux alignements large et pleine largeur avec des galeries, vous pouvez cr\xe9er des mises en page enrichies tr\xe8s rapidement\xa0:"],"Media Rich":["M\xe9dia enrichi"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Vous pouvez changer le nombre de colonnes de vos galeries en faisant glisser la barre dans l\u2019inspecteur de blocs de la colonne lat\xe9rale."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Les blocs peuvent \xeatre utilis\xe9 pour tout ce que vous voulez. Par exemple, vous pourriez ajouter une citation en regard de votre texte, ou alors afficher une \xe9norme citation. Toutes ces options sont disponibles dans l\u2019outil d\u2019insertion."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["L\u2019information correspondant \xe0 la source de la citation est un champ texte s\xe9par\xe9, similaire aux l\xe9gendes sous les images. Ainsi la structure de la citation est prot\xe9g\xe9e m\xeame si vous s\xe9lectionnez, modifiez ou retirez la source. Il est toujours possible de la remettre en place rapidement."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["L\u2019\xe9diteur s\u2019efforcera de cr\xe9er une nouvelle exp\xe9rience de construction des publications qui rendra plus simple l\u2019\xe9criture de publications enrichies. Les blocs rendront simple ce qui n\xe9cessite aujourd\u2019hui des codes courts, du HTML personnalis\xe9 et autres manipulations myst\xe9rieuses."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un grand avantage des blocs r\xe9side dans le fait que vous pouvez les modifier en direct et ainsi manipuler votre contenu en direct. Au lieu d\u2019avoir des champs pour \xe9diter ne serait-ce que l\u2019auteur d\u2019une citation, ou le texte d\u2019un bouton, vous pouvez changer ces contenus directement. Essayez de modifier la citation suivante\xa0:"],"Visual Editing":["Mode visuel"],"And Lists like this one of course :)":["Et des listes comme celle-ci bien entendu :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blocs de mise en page, bouton \xab\xa0J\u2019aime\xa0\xbb, banni\xe8res, s\xe9parateurs, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Contenus embarqu\xe9s, depuis YouTube, Twitter, ou d\u2019autres publications WordPress."],Galleries:["Galeries"],"Images & Videos":["Images & Vid\xe9os"],"Text & Headings":["Texte & Titres"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Essayez-donc, vous pourrez d\xe9couvrir des choses que WordPress peut ajouter dans vos publications que vous ne soup\xe7onniez pas. Voici une liste non exhaustive de ce que vous allez trouver\xa0:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Rendez-vous compte de ce que WordPress vous permet de faire rapidement et \xe0 partir d\u2019une seule et m\xeame interface. Inutile de vous emb\xeater avec des balises HTML, des classes ou des codes courts \xe0 la syntaxe compliqu\xe9e. C\u2019est l\u2019esprit qui anime l\u2019\xe9diteur \u2013\xa0voir le bouton (+) dans l\u2019\xe9diteur\xa0\u2013 qui vous permet de parcourir tous les blocs de contenu disponibles pour les ajouter \xe0 vos publications. Les extensions et les th\xe8mes sont capables d\u2019ajouter leurs propres blocs, ce qui ouvre la voie \xe0 toutes sortes de possibilit\xe9s."],"The Inserter Tool":["L\u2019outil d\u2019insertion"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Essayez de s\xe9lectionner, de supprimer ou de modifier la l\xe9gende. Maintenant vous n\u2019avez plus besoin d\u2019\xe9viter de s\xe9lectionner l\u2019image ou d\u2019autres textes par erreur et de g\xe2cher la mise en page."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Si votre th\xe8me le prend en charge, vous verrez le bouton \xab\xa0Large\xa0\xbb dans la barre d\u2019outils de l\u2019image. Essayez."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["La prise en charge des images et des m\xe9dias est un des objectifs principaux du nouvel \xe9diteur. Nous esp\xe9rons que vous d\xe9couvrirez les avantages de l\u2019ajout de l\xe9gendes, de passer vos images en mode pleine largeur et de toute autre manipulation. De fa\xe7on plus simple et robuste qu\u2019auparavant."],"A Picture is Worth a Thousand Words":["Une image vaut mille mots"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Les niveaux de titres sont aussi des blocs sp\xe9cifiques. Cela aide a organiser et mettre en valeur votre contenu."],"... like this one, which is right aligned.":["\u2026comme celui-ci, qui est align\xe9 \xe0 droite."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Ce que vous lisez actuellement est un bloc paragraphe, le bloc le plus basique de tous. Le bloc paragraphe poss\xe8de ses propres commandes lui permettant d\u2019\xeatre d\xe9plac\xe9 librement au sein de la publication."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Le but de ce nouvel \xe9diteur est de rendre l\u2019ajout de contenus riches simple et ludique. Cette publication toute enti\xe8re est compos\xe9e de morceaux de contenus \u2013\xa0un peu comme des briques Lego\xa0\u2013 que vous pouvez d\xe9placer et avec lesquels vous pouvez interagir. D\xe9placez votre curseur un peu partout et vous verrez les diff\xe9rents blocs se mettre en \xe9vidence. Appuyez sur les fl\xe8ches pour repositionner rapidement les blocs, sans crainte de perdre des choses dans l\u2019action de copier et coller."],"Of Mountains & Printing Presses":["\xc0 propos de montagnes & d\u2019imprimerie"],"Welcome to the Gutenberg Editor":["Bienvenue dans l\u2019\xe9diteur Gutenberg"],"block name\x04More":["Lire la suite"],"button to expand options\x04More":["Plus"],"Are you sure you want to unschedule this post?":["Confirmez-vous la d\xe9planification de cette publication\xa0?"],"Alt Text (Alternative Text)":["Texte alternatif (texte alternatif)"],"Reusable Block":["Bloc r\xe9utilisable"],"Unique identifier for the object.":["Identifiant unique de cet objet."],"Untitled Reusable Block":["Bloc r\xe9utilisable sans titre"],Small:["Petit"],"(%s: %s)":["(%s\xa0: %s)"],Reusable:["R\xe9utilisables"],"(current %s: %s)":["(%s\xa0actuel\xa0: %s)"],"Remove from Reusable Blocks":["Retirer des blocs r\xe9utilisables"],"Add to Reusable Blocks":["Ajouter aux blocs r\xe9utilisables"],"Keep as HTML":["Conserver en HTML"],"Edit URL":["Modifier l\u2019URL"],"Color Settings":["R\xe9glages de couleur"],"The response is not a valid JSON response.":["La r\xe9ponse n\u2019est pas une r\xe9ponse JSON valide."],"Editor publish":["Publication depuis l\u2019\xe9diteur"],Muted:["En sourdine"],"Video Settings":["R\xe9glages vid\xe9o"],"recent comments":["commentaires r\xe9cents"],"Latest Comments":["Derniers commentaires"],"Display Excerpt":["Afficher l\u2019extrait"],"Display Date":["Afficher la date"],"Display Avatar":["Afficher l\u2019avatar"],"Latest Comments Settings":["R\xe9glages des derniers commentaires"],"Number of Comments":["Nombre de commentaires"],"Background Opacity":["Opacit\xe9 de l\u2019arri\xe8re-plan"],Auto:["Auto"],Preload:["Pr\xe9chargement"],"Audio Settings":["R\xe9glages audio"],"Display a monthly archive of your posts.":["Affiche une archive mensuelle de vos articles."],"Display as Dropdown":["Afficher en tant que liste d\xe9roulante"],"Show Post Counts":["Afficher le nombre d\u2019articles"],"Archives Settings":["R\xe9glages des archives"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Support"],"No comments to show.":["Aucun commentaire \xe0 afficher."],"%1$s on %2$s":["%1$s dans %2$s"],"Select Post":["S\xe9lectionner un article"],"Select Week":["S\xe9lectionner une semaine"],"Select Day":["S\xe9lectionner un jour"],"Select Month":["S\xe9lectionner un mois"],"Select Year":["S\xe9lectionner une ann\xe9e"],Archives:["Archives"],"Very dark gray":["Gris tr\xe8s fonc\xe9"],"Cyan bluish gray":["Gris bleut\xe9 cyan"],"Very light gray":["Gris tr\xe8s clair"],"Vivid cyan blue":["Bleu cyan vif"],"Pale cyan blue":["Bleu cyan p\xe2le"],"Vivid green cyan":["Cyan vert vif"],"Light green cyan":["Vert clair cyan"],"Luminous vivid amber":["Ambre lumineux et vif"],"Luminous vivid orange":["Orange vif lumineux"],"Vivid red":["Rouge vif"],"Pale pink":["Rose p\xe2le"],"Inline image":["Image en ligne"],"Available block types":["Types de bloc disponibles"],"Transform To:":["Transformer en\xa0:"],"Remove Block":["Retirer le bloc"],"Open publish panel":["Ouvrir le panneau de publication"],Dots:["Points"],"Wide Line":["Ligne large"],Large:["Large"],"Show download button":["Afficher le bouton de t\xe9l\xe9chargement"],"Download button settings":["R\xe9glages du bouton de t\xe9l\xe9chargement"],"Link To":["Lier vers"],"Text link settings":["R\xe9glages du lien de texte"],pdf:["PDF"],document:["document"],"Copy URL":["Copier l\u2019URL"],"Write file name\u2026":["\xc9crire le nom du fichier..."],"Edit file":["Modifier un fichier"],File:["Fichier"],"A single column within a columns block.":["Une colonne unique dans un bloc de colonnes."],Column:["Colonne"],Outline:["Contour"],Loop:["Boucle"],Autoplay:["Lecture auto"],"Playback Controls":["Commandes de lecture"],"Close dialog":["Fermer la bo\xeete de dialogue"],"Sorry, this file type is not permitted for security reasons.":["D\xe9sol\xe9, ce type de fichier n\u2019est pas permis pour des raisons de s\xe9curit\xe9."],"Disable tips":["D\xe9sactiver les astuces"],"Got it":["J\u2019ai compris"],"See next tip":["Voir l\u2019astuce suivante"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Lorsque vous serez pr\xeat\xb7e, envoyez votre travail en relecture, ainsi un \xe9diteur pourra l\u2019approuver pour vous."],"Are you ready to submit for review?":["\xcates-vous pr\xeat\xb7e \xe0 l\u2019envoyer pour relecture\xa0?"],"Replace image":["Remplacer l\u2019image"],"Remove image":["Retirer l\u2019image"],"Error while uploading file %s to the media library.":["Erreur lors du t\xe9l\xe9versement du fichier %s dans la biblioth\xe8que de m\xe9dias."],"This file exceeds the maximum upload size for this site.":["Ce fichier d\xe9passe la taille maximum de t\xe9l\xe9versement de ce site."],"View the autosave":["Voir l\u2019enregistrement automatique"],"There is an autosave of this post that is more recent than the version below.":["Il existe un enregistrement automatique plus r\xe9cent pour ce contenu."],Autosaving:["Enregistrement automatique"],"Enter URL here\u2026":["Saisissez l\u2019URL ici\u2026"],"Pin to toolbar":["\xc9pingler \xe0 la barre d\u2019outils"],"Unpin from toolbar":["D\xe9crocher de la barre d\u2019outils"],"Insert a table \u2014 perfect for sharing charts and data.":["Ins\xe9rer un tableau \u2014\xa0parfait pour partager des graphiques et des donn\xe9es."],"Fixed width table cells":["Cellules de tableau \xe0 largeur fixe"],"Table Settings":["R\xe9glages du tableau"],"Add text that respects your spacing and tabs, and also allows styling.":["Ajoute du texte qui respecte les espacements et tabulation, et qui autorise \xe9galement de la mise en forme."],"Display a list of your most recent posts.":["Affiche une liste de vos articles les plus r\xe9cents."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Ajoute un bloc affichant du contenu r\xe9cup\xe9r\xe9 d\u2019autres sites, comme Twitter, Instagram ou YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Ajoute un bloc qui affiche le contenu en plusieurs colonnes, dans lesquelles vous pouvez placer n\u2019importe quels blocs de contenus."],"Error loading block: %s":["Erreur de chargement du bloc\xa0: %s"],"Unknown error":["Erreur inconnue"],"Embed Handler":["Prise en charge des contenus embarqu\xe9s"],"term\x04Remove %s":["Retirer %s"],"Copy the permalink":["Copier le permalien"],"Permalink copied":["Permalien copi\xe9"],"Height in pixels":["Hauteur en pixels"],"Spacer Settings":["R\xe9glages de l\u2019espacement"],Spacer:["Espacement"],"Toggle to show a large initial letter.":["Cliquer pour afficher une lettrine."],"Showing large initial letter.":["Affichage de la lettrine."],"Name:":["Nom\xa0:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s sur %3$s)"],"Remove item":["Retirer l\u2019\xe9l\xe9ment"],"Color code: %s":["Code couleur\xa0: %s"],"Skip to the selected block":["Aller au bloc s\xe9lectionn\xe9."],"Publish\u2026":["Publier\u2026"],"Schedule\u2026":["Planification\u2026"],"Edit post permalink":["Modifier le permalien du contenu"],"Show Block Settings":["Afficher les r\xe9glages du bloc"],"Hide Block Settings":["Masquer les r\xe9glages du bloc"],"Block settings closed":["R\xe9glages du bloc ferm\xe9s"],"Close plugin":["Fermer l\u2019extension"],"Link settings":["R\xe9glages de lien"],Unlink:["Supprimer le lien"],"Page break":["Saut de page"],pagination:["pagination"],"next page":["page suivante"],"Image Size":["Taille d\u2019image"],Height:["Hauteur"],Width:["Largeur"],"Image Dimensions":["Dimensions de l\u2019image"],"Thumbnails are not cropped.":["Les miniatures ne sont pas recadr\xe9es."],"Thumbnails are cropped to align.":["Les miniatures sont recadr\xe9es pour s\u2019aligner."],"Media Library":["Biblioth\xe8que de m\xe9dias"],Advanced:["Avanc\xe9"],"Add item":["Ajouter un \xe9l\xe9ment"],"Reset the template":["R\xe9initialiser le mod\xe8le"],"Keep it as is":["Laisser tel quel"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Le contenu ne correspond pas au mod\xe8le assign\xe9 au type de contenus."],"Resetting the template may result in loss of content, do you want to continue?":["R\xe9initialiser le mod\xe8le peut r\xe9sulter \xe0 la perte de contenus, voulez-vous continuer\xa0?"],"Document Statistics":["Statistiques du document"],"is now scheduled. It will go live on":["est maintenant planifi\xe9. Il sera publi\xe9 le"],Scheduled:["Planifi\xe9"],"Scheduling\u2026":["Planification\u2026"],"Code editor selected":["\xc9diteur de code s\xe9lectionn\xe9"],"Visual editor selected":["\xc9diteur visuel s\xe9lectionn\xe9"],Plugins:["Extensions"],"Custom Size":["Taille personnalis\xe9e"],"Layout Elements":["Mise en page"],"term\x04%s removed":["%s supprim\xe9"],"term\x04%s added":["%s ajout\xe9"],"imperative verb\x04Preview":["Pr\xe9visualiser"],"Block deleted.":["Bloc supprim\xe9."],"Block updated.":["Bloc mis \xe0 jour."],"Block created.":["Bloc cr\xe9\xe9."],"Trashing failed":["Suppression \xe9chou\xe9e"],"Updating failed.":["Mise \xe0 jour \xe9chou\xe9e."],"Scheduling failed.":["Planification \xe9chou\xe9e."],"Publishing failed.":["Publication \xe9chou\xe9e."],"View Post":["Voir la publication"],"You have unsaved changes. If you proceed, they will be lost.":["Vous avez des changements non enregistr\xe9s. Si vous poursuivez, ils seront perdus."],"Document Outline":["Aper\xe7u du document"],Paragraphs:["Paragraphes"],Headings:["Titres"],Words:["Mots"],"Content structure":["Structure du contenu"],Public:["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Prot\xe9g\xe9 avec le mot de passe choisi. Ce contenu ne peut \xeatre affich\xe9 que par les personnes disposant de ce mot de passe."],"Password Protected":["Prot\xe9g\xe9 par mot de passe"],"Only visible to site admins and editors.":["Uniquement visible pour les administrateur\xb7ices et les \xe9diteur\xb7ices."],Private:["Priv\xe9"],"Visible to everyone.":["Visible pour tout le monde."],"Post Visibility":["Visibilit\xe9 de la publication"],"Would you like to privately publish this post now?":["Voulez-vous passer cette publication en priv\xe9\xa0?"],"Use a secure password":["Utiliser un mot de passe s\xe9curis\xe9"],"Create password":["Cr\xe9er un mot de passe"],"Move to Trash":["D\xe9placer vers la corbeille"],"Parent Term":["Terme parent"],"Parent Category":["Cat\xe9gorie parente"],"Add new term":["Ajouter un nouveau terme"],"Add new category":["Ajouter une nouvelle cat\xe9gorie"],Term:["Terme"],Tag:["\xc9tiquette"],"Add New Term":["Ajouter un nouveau terme"],"Add New Tag":["Ajouter une nouvelle \xe9tiquette"],"Switch to Draft":["Enregistrer en brouillon"],"Are you sure you want to unpublish this post?":["Confirmez-vous la mise hors ligne de cette publication\xa0?"],Immediately:["Imm\xe9diatement"],"Save Draft":["Enregistrer le brouillon"],Saving:["Enregistrement"],"Publish:":["Publier\xa0: "],"Visibility:":["Visibilit\xe9\xa0: "],"Are you ready to publish?":["Pr\xeat\u22c5e \xe0 publier\xa0?"],"Copy Link":["Copier le lien"],"What\u2019s next?":["Que faire apr\xe8s\xa0?"],"is now live.":["est maintenant en ligne."],Published:["Publi\xe9"],Schedule:["Planifier"],Update:["Mettre \xe0 jour"],"Submit for Review":["Soumettre \xe0 la relecture"],"Updating\u2026":["Mise \xe0 jour\u2026"],"Publishing\u2026":["Publication\u2026"],"Allow Pingbacks & Trackbacks":["Autoriser les pings et les r\xe9troliens"],"Permalink:":["Permalien\xa0:"],"Pending Review":["En attente de relecture"],"%d Revision":["%d r\xe9vision","%d r\xe9visions"],"Suggestion:":["Suggestion\xa0:"],"Post Format":["Format de publication"],Chat:["Discussion"],Status:["\xc9tat"],Standard:["Standard"],Aside:["En passant"],"Set Featured Image":["D\xe9finir l\u2019image mise en avant"],"Learn more about manual excerpts":["En apprendre plus sur les extraits manuels"],"Write an excerpt (optional)":["R\xe9diger un extrait (facultatif)"],"Allow Comments":["Autoriser les commentaires"],"Template:":["Mod\xe8le\xa0:"],"no parent":["Aucun parent"],"no title":["aucun titre"],Order:["Ordre"],"No blocks found.":["Aucun bloc trouv\xe9."],"%d result found.":["%d r\xe9sultat trouv\xe9.","%d r\xe9sultats trouv\xe9s."],Saved:["Enregistr\xe9"],Embeds:["Contenus embarqu\xe9s"],Blocks:["Blocs"],"Search for a block":["Rechercher un bloc"],"Add block":["Ajouter un bloc"],"Add %s":["Ajouter\xa0: %s"],"Copy Error":["Copier l\u2019erreur"],"Copy Post Text":["Copier le texte du contenu"],"Attempt Recovery":["Tentative de r\xe9cup\xe9ration"],"The editor has encountered an unexpected error.":["L\u2019\xe9diteur a rencontr\xe9 une erreur inattendue."],Undo:["D\xe9faire"],Redo:["R\xe9tablir"],"(Multiple H1 headings are not recommended)":["(il est d\xe9conseill\xe9 d\u2019utiliser plusieurs titres H1)"],"(Your theme may already use a H1 for the post title)":["(votre th\xe8me devrait avoir un H1 pour le titre de cette publication)"],"(Incorrect heading level)":["(niveau de titre erron\xe9)"],"(Empty heading)":["(Titre vide)"],"Block Styles":["Styles de bloc"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Confirmez-vous la suppression de ce bloc r\xe9utilisable\xa0?\n\nIl sera retir\xe9 d\xe9finitivement de tous les contenus qui l\u2019utilisent."],"Convert to Regular Block":["Convertir en bloc Gutenberg normal"],"More options":["Plus d\u2019options"],"Edit visually":["Modifier visuellement"],Duplicate:["Dupliquer"],"Blocks cannot be moved down as they are already at the bottom":["Les blocs ne peuvent pas \xeatre d\xe9plac\xe9s vers le bas car ils sont d\xe9j\xe0 tout en bas."],"Blocks cannot be moved up as they are already at the top":["Les blocs ne peuvent pas \xeatre d\xe9plac\xe9s vers le haut car ils sont d\xe9j\xe0 tout en haut."],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["Le bloc \xab\xa0%s\xa0\xbb est le seul bloc et ne peut pas \xeatre d\xe9plac\xe9"],"Edit as HTML":["Modifier en HTML"],"Convert to Blocks":["Convertir en blocs"],"Block: %s":["Bloc\xa0: %s"],"This block has encountered an error and cannot be previewed.":["Ce bloc a rencontr\xe9 une erreur et ne peut pas \xeatre pr\xe9visualis\xe9."],"No block selected.":["Aucun bloc s\xe9lectionn\xe9."],"Transform into:":["Transformer en\xa0:"],Remove:["Retirer"],"Find original":["Trouver l\u2019original"],"Copy All Content":["Copier tout le contenu"],"Copied!":["Copi\xe9\xa0!"],"Additional settings are now available in the Editor block settings sidebar":["Des r\xe9glages suppl\xe9mentaires sont maintenant disponibles dans la colonne lat\xe9rale des r\xe9glages avanc\xe9s de l\u2019\xe9diteur"],Visibility:["Visibilit\xe9"],"Status & Visibility":["\xc9tat et visibilit\xe9"],"Page Attributes":["Attributs de page"],Block:["Bloc","%d Blocs"],Document:["Document"],"Featured Image":["Image mise en avant"],"Close settings":["Fermer les r\xe9glages"],"Editor content":["Contenu de l\u2019\xe9diteur"],Tools:["Outils"],Editor:["\xc9diteur"],"Code Editor":["\xc9diteur de code"],"Visual Editor":["\xc9diteur visuel"],"Editor top bar":["Barre d\u2019outils de l\u2019\xe9diteur"],Settings:["R\xe9glages"],Reset:["R\xe9initialiser "],"Dismiss this notice":["D\xe9sactiver cette notification"],"Item removed.":["\xc9l\xe9ment retir\xe9."],"Item added.":["\xc9l\xe9ment ajout\xe9."],"Drop files to upload":["Glisser les fichier \xe0 t\xe9l\xe9verser"],PM:["apr\xe8s-midi"],AM:["matin"],"An unknown error occurred.":["Une erreur inconnue est survenue."],"No results.":["Aucun r\xe9sultat."],"%d result found, use up and down arrow keys to navigate.":["%d r\xe9sultat trouv\xe9, vous pouvez naviguer avec les touches haut et bas.","%d r\xe9sultats trouv\xe9s, vous pouvez naviguer avec les touches haut et bas."],"(no title)":["(aucun titre)"],URL:["URL"],Submit:["Envoyer"],Close:["Fermer"],"Insert link":["Ins\xe9rer un lien"],"Edit link":["Modifier le lien"],Link:["Lien"],Strikethrough:["Barrer"],Italic:["Italique"],Bold:["Gras"],"Remove link":["Retirer le lien"],"Number of items":["Nombre d\u2019\xe9l\xe9ments"],All:["Tout"],Category:["Cat\xe9gorie"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Des plus anciens aux plus r\xe9cents"],"Newest to Oldest":["Des plus r\xe9cents aux plus anciens"],"Order by":["Ordonner par"],Select:["S\xe9lectionner"],"Select or Upload Media":["S\xe9lectionner ou t\xe9l\xe9verser un fichier"],Video:["Vid\xe9o"],"Edit video":["Modifier la vid\xe9o"],"Write\u2026":["R\xe9diger\u2026"],poetry:["po\xe9sie"],Verse:["Couplet"],"New Column":["Ajouter une colonne"],"Delete Column":["Supprimer une colonne"],"Add Column After":["Ajouter une colonne \xe0 la suite"],"Add Column Before":["Ajouter une colonne avant"],"Delete Row":["Supprimer la ligne"],"Add Row After":["Ajouter une ligne apr\xe8s"],"Add Row Before":["Ajouter une ligne avant"],"Edit table":["Modifier le tableau"],Table:["Tableau"],"Write subheading\u2026":["R\xe9diger une exergue\u2026"],"Write shortcode here\u2026":["Placer le code court ici\u2026"],Shortcode:["Code court"],divider:["S\xe9parateur"],"horizontal-line":["Filet horizontal"],Separator:["S\xe9parateur"],Quote:["Citation"],"Write citation\u2026":["R\xe9diger une citation\u2026"],"Write quote\u2026":["R\xe9diger une citation\u2026"],Pullquote:["Citation en exergue"],"Write preformatted text\u2026":["R\xe9diger un texte pr\xe9-format\xe9\u2026"],Preformatted:["Pr\xe9-format\xe9"],text:["Texte"],Paragraph:["Paragraphe"],"Font Size":["Taille de police"],"Drop Cap":["Lettrine"],"Text Settings":["R\xe9glages du texte"],"Read more":["Lire la suite"],"Write list\u2026":["R\xe9diger une liste\u2026"],"numbered list":["Liste num\xe9rot\xe9e"],"ordered list":["Liste ordonn\xe9e"],"bullet list":["Liste \xe0 puces"],"Indent list item":["Indenter l\u2019\xe9l\xe9ment de la liste"],"Outdent list item":["D\xe9sindenter l\u2019\xe9l\xe9ment de la liste"],"Convert to ordered list":["Convertir en liste ordonn\xe9e"],"Convert to unordered list":["Convertir en liste non-ordonn\xe9e"],List:["Liste"],"recent posts":["contenus r\xe9cents"],"No posts found.":["Aucun r\xe9sultat."],"Latest Posts":["Derniers contenus"],"Display post date":["Affiche la date du contenu"],"Grid view":["Vue en grille"],"List view":["Vue en liste"],photo:["photo"],"Image Settings":["R\xe9glages de l\u2019image"],Image:["Image"],Preview:["Aper\xe7u"],embed:["Contenu embarqu\xe9"],"Custom HTML":["HTML personnalis\xe9"],subtitle:["sous-titre"],title:["titre"],Heading:["Titre"],"Write heading\u2026":["R\xe9diger un titre\u2026"],"Heading %d":["Titrage %d"],Level:["Niveau"],"Heading Settings":["R\xe9glages du titre"],photos:["photos"],images:["images"],"Remove Image":["Retirer l\u2019image"],None:["Aucun"],"Media File":["Fichier m\xe9dia"],"Attachment Page":["Page du fichier joint"],"Crop Images":["Recadrer les images"],"Gallery Settings":["R\xe9glages de la galerie"],Gallery:["Galerie"],Classic:["Classique"],video:["vid\xe9o"],audio:["son"],music:["musique"],image:["image"],blog:["blog"],post:["contenu"],"Embedded content from %s":["Contenu embarqu\xe9 depuis %s"],"Enter URL to embed here\u2026":["Saisir l\u2019URL \xe0 embarquer\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["R\xe9cup\xe9ration\u2026"],"Write title\u2026":["R\xe9diger le titre\u2026"],"Fixed Background":["Arri\xe8re-plan fixe"],"Edit image":["Modifier l\u2019image"],Columns:["Colonnes"],Experiments:["Exp\xe9rimentaux"],Code:["Code"],"Write code\u2026":["R\xe9diger du code\u2026"],Categories:["Cat\xe9gories"],"Show Hierarchy":["Afficher la hi\xe9rarchie"],"Show post counts":["Afficher le nombre de contenus"],"Categories Settings":["R\xe9glages des cat\xe9gories"],"Add text\u2026":["Ajout de texte\u2026"],Button:["Bouton"],Apply:["Appliquer"],"Text Color":["Couleur du texte"],"Background Color":["Couleur d\u2019arri\xe8re-plan"],"Block has been deleted or is unavailable.":["Le bloc a \xe9t\xe9 supprim\xe9 ou n\u2019est plus disponible."],"Reusable Blocks":["Bloc r\xe9utilisable"],Cancel:["Annuler"],Edit:["Modifier"],"Edit audio":["Modifier le fichier son"],"Write caption\u2026":["R\xe9diger la l\xe9gende\u2026"],"Use URL":["Utiliser une URL"],Audio:["Son"],Upload:["T\xe9l\xe9verser"],"Additional CSS Class(es)":["Classe(s) CSS additionnelle(s)"],"HTML Anchor":["Ancre HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Cette combinaison de couleurs peut \xeatre difficile a lire pour certaines personnes. Essayer une couleur d\u2019arri\xe8re-plan plus claire et/ou une couleur de texte plus fonc\xe9e."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Cette combinaison de couleurs est difficilement lisible. Essayez d\u2019utiliser une couleur d\u2019arri\xe8re-plan et/ou de texte plus sombre."],Clear:["Effacer"],"Custom color picker":["S\xe9lecteur de couleur personnalis\xe9e"],"Color: %s":["Couleur\xa0: %s"],"Full Width":["Pleine largeur"],"Wide Width":["Grande largeur"],Widgets:["Widgets"],Formatting:["Mise en forme"],"Common Blocks":["Blocs communs"],"Align Right":["Aligner \xe0 droite"],"Align Center":["Centrer"],"Align Left":["Aligner \xe0 gauche"],"Printing since 1440. This is the development plugin for the new block editor in core.":["L\u2019impression depuis 1440. L\u2019extension en cours de d\xe9veloppement pour le nouvel \xe9diteur de blocs du c\u0153ur WP."],"Add title":["Ajout de titre"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Le mode d\xe9veloppement de Gutenberg n\xe9cessite que des fichiers soient g\xe9n\xe9r\xe9s. Lancer npm install pour installer les d\xe9pendances, et npm run dev pour g\xe9n\xe9rer et v\xe9rifier les fichiers. Lire le fichier de contribution (en anglais) pour plus d\u2019informations."],Author:["Auteur\xb7e"],Slug:["Identifiant"],Discussion:["Discussion"],"Custom Fields":["Champs personnalis\xe9s"],Excerpt:["Extrait"],Publish:["Publier"],Metadata:["M\xe9tadonn\xe9e"],Save:["Enregistrer"],Documentation:["Documentation"],"Select Category":["S\xe9lection de cat\xe9gorie"],"(Untitled)":["(Sans titre)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg n\xe9cessite WordPress %s ou sup\xe9rieur pour fonctionner correctement. Veuillez mettre \xe0 niveau WordPress avant d\u2019activer Gutenberg."],"Gutenberg Team":["L\u2019\xe9quipe de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["D\xe9mo"],"%s ago":["Il y a %s"],"Block style name must be a string.":["Le nom de style de bloc doit \xeatre une cha\xeene."]}},843,[]); +__d(function(e,a,o,t,r,i,s){r.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// Un \xabbloque\xbb \xe9 o termo abstracto utilizado\n// para describir as unidades de marcado que\n// cando se compo\xf1en xuntas, forman o\n// contido ou dese\xf1o dunha p\xe1xina.\nregisterBlockType( name, settings );"],"You are probably offline.":["Probablemente esteas desconectado."],"Justify items right":["Xustificar elementos \xe1 dereita"],"Justify items center":["Xustificar elementos ao centro"],"Justify items left":["Xustificar elementos \xe1 esquerda"],"Change items justification":["Cambiar o xustificado dos elementos"],"The media file has been replaced":["O arquivo de medios foi substitu\xeddo"],Replace:["Substitu\xedr"],"Choose pattern":["Elixir patr\xf3n"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Actualmente est\xe1s no modo de edici\xf3n. Para volver ao modo de navegaci\xf3n, pulsa \xabEscape\xbb."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Actualmente est\xe1s no modo de navegaci\xf3n. Navega entre bloques usando a tecla \xabTab\xbb. Para sa\xedr do modo de navegaci\xf3n e editar o bloque seleccionado, pulsa \xabIntro\xbb."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Usa as teclas de frecha esquerda ou dereita ou arrastra e solta co rato para cambiar a posici\xf3n do degradado. Pulsa o bot\xf3n para cambiar a cor ou eliminar o punto de control."],"Gradient control point at position %1$s with color code %2$s.":["Punto de control de degradado na posici\xf3n %1$s con c\xf3digo de cor %2$s."],"Preset Size":["Tama\xf1o por defecto"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["As ferramentas ofrecen diferentes interacci\xf3ns para a selecci\xf3n e edici\xf3n de bloques. Para seleccionar, pulsa \xabEscape\xbb, para volver \xe1 edici\xf3n, pulsa \xabIntro\xbb."],"Open Media Library":["Abrir biblioteca de medios"],Next:["Seguinte"],Previous:["Anterior"],Finish:["Finalizar"],"Page %1$d of %2$d":["P\xe1xina %1$d de %2$d"],"Guide controls":["Controis de gu\xeda"],"Remove Control Point":["Eliminar punto de control"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Cada bloque v\xe9n co seu propio conxunto de controis para cambiar cousas coma a cor, o ancho e a ali\xf1aci\xf3n. Estes mostraranse e ocultaranse automaticamente cando selecciones un bloque."],"Make each block your own":["Fai que cada bloque sexa teu"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["No editor de WordPress, cada par\xe1grafo, imaxe ou v\xeddeo pres\xe9ntase coma un \xabbloque\xbb distinto de contido."],"ADD MEDIA":["ENGADIR MEDIOS"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":["Todos os bloques que tes dispo\xf1ibles est\xe1n na biblioteca de bloques. Encontraralos onde sexa que vexas a icona "],"Get to know the Block Library":["Co\xf1ece a biblioteca de bloques"],"Welcome Guide":["Gu\xeda de benvida"],"Enable Page Templates":["Activar modelos de p\xe1xina"],"Page Templates":["Modelos de p\xe1xina"],"Enable Full Site Editing Demo Templates":["Activar os modelos de demostraci\xf3n de edici\xf3n completa do sitio"],"Full Site Editing Demo Templates":["Modelos de demostraci\xf3n de edici\xf3n completa do sitio"],"Welcome to the Block Editor":["Benvido ao editor de bloques"],"Get started":["Primeiros pasos"],inserter:["insertador"],"Post Title":["T\xedtulo da entrada"],"Add nofollow to link":["Engadir nofollow ao enlace"],"Link Settings":["Axustes do enlace"],"Add Submenu":["Engadir submen\xfa"],"Add link\u2026":["Engadir enlace\u2026"],Dark:["Escuro"],Light:["Claro"],recording:["gravaci\xf3n"],podcast:["podcast"],sound:["son"],"Array of instance changes":["Array de cambios na instancia"],"Current widget instance":["Instancia actual do widget"],"Template parts to include in your templates.":["Partes do modelo a inclu\xedr nos teus modelos."],"Template parts list":["Lista de partes do modelo"],"Template parts list navigation":["Lista de navegaci\xf3n de partes do modelo"],"Filter template parts list":["Filtrar lista de partes do modelo"],"Uploaded to this template part":["Subiba a esta parte do modelo"],"Insert into template part":["Insertar na parte do modelo"],"Template part archives":["Arquivo de partes do modelo"],"No template parts found in Trash.":["Non se encontraron partes do modelo na papeleira."],"No template parts found.":["Non se encontraron partes do modelo."],"Parent Template Part:":["Parte do modelo pai:"],"Search Template Parts":["Buscar partes do modelo"],"All Template Parts":["Todas as partes do modelo"],"View Template Part":["Ver parte do modelo"],"Edit Template Part":["Editar parte do modelo"],"New Template Part":["Nova parte do modelo"],"Add New Template Part":["Engadir nova parte do modelo"],"Template Part\x04Add New":["Engadir nova"],"Admin Menu text\x04Template Parts":["Partes do modelo"],"Template Part":["Parte do modelo"],"Template Parts":["Partes do modelo"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Lingoa proletaria do meu pobo\neu f\xe1loa porque si, \nporque me gosta,\nporque me peta e quero e dame a ga\xf1a\nporque me sai de dentro, al\xe1 do fondo\ndunha tristura aceda que me abrangue\nao ver tantos patufos desleigados\u2026"],Navigation:["Navegaci\xf3n"],"Loading Navigation\u2026":["Cargando navegaci\xf3n..."],"Navigation Structure":["Estrutura de navegaci\xf3n"],"Create empty":["Crear baleiro"],"Create from all top pages":["Crea con todas as p\xe1xinas pai"],"Create a Navigation from all existing pages, or create an empty one.":["Crea unha navegaci\xf3n con todas as p\xe1xinas existentes ou crea unha nova baleira."],"Navigation Link":["Enlace de navegaci\xf3n"],"(Note: many devices and browsers do not display this text.)":["(Nota: moitos dispositivos e navegadores non mostran este texto.)"],"Describe the role of this image on the page.":["Describe o rol desta imaxe na p\xe1xina."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Alterna entre usar o mesmo valor en todos os tama\xf1os de pantalla ou usar un \xfanico valor por tama\xf1o de pantalla."],"Use the same %s on all screensizes.":["Utilizar o mesmo %s en todos os tama\xf1os de pantalla."],"Large screens":["Pantallas grandes"],"Medium screens":["Pantallas medianas"],"Small screens":["Pantallas pequenas"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["Controla a propiedade %1$s para os \xabviewports\xbb %2$s."],Change:["Cambiar"],"Currently selected":["Seleccionado actualmente"],"Search or type url":["Busca ou escribe a URL"],"Press ENTER to add this link":["Presiona ENTER para engadir este enlace"],"Currently selected link settings":["Axustes do enlace seleccionado actualmente"],"Generic label for block inserter button\x04Add block":["Engadir bloque"],"directly add the only allowed block\x04Add %s":["Engadir %s"],"%s block added":["Bloque %s engadido"],"Move %s":["Mover %s"],"Extra Large":["Extra grande"],"Block breadcrumb":["Bloque de faragullas de pan"],"Site Title":["T\xedtulo do sitio"],"Open Colors Selector":["Abrir o selector da cor"],"Overlay Gradient":["Degradado superposto"],"Templates list":["Lista de modelos"],"Templates list navigation":["Navegaci\xf3n da lista de modelos"],"Filter templates list":["Filtro da lista de modelos"],"Uploaded to this template":["Subido a este modelo"],"Insert into template":["Inserir no modelo"],"Template archives":["Arquivos de modelos"],"No templates found in Trash.":["Non se atoparon modelos na papeleira"],"No templates found.":["No se atoparon modelos."],"Parent Template:":["Modelo principal:"],"Search Templates":["Buscar modelos"],"All Templates":["T\xf3dolos modelos"],"View Template":["Ver o modelo"],"Edit Template":["Editar o modelo"],"New Template":["Novo modelo"],"Add New Template":["Engadir un novo modelo"],"Template\x04Add New":["Engadir novo"],"Admin Menu text\x04Templates":["Modelos"],Template:["Modelo"],"No matching template found":["No se atoparon modelos que coincidan"],"Gradient: %s":["Degradado: %s"],"Gradient code: %s":["C\xf3digo de degradado: %s"],"All content copied.":["Copiado todo o contido."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Erro na subida de medios. Se isto \xe9 unha foto ou unha imaxe grande, por favor, reduce o seu tama\xf1o e int\xe9ntao de novo."],Gradient:["Degradado"],"Gradient Presets":["Axustes previos de degradado"],"No Preview Available.":["Vista previa non dispo\xf1ible."],Midnight:["Medianoite"],"Electric grass":["Herba el\xe9ctrica"],"Pale ocean":["Oc\xe9ano p\xe1lido"],"Luminous dusk":["Atardecer luminoso"],"Blush bordeaux":["Rubor burdeos"],"Blush light purple":["Rubor p\xfarpura claro"],"Cool to warm spectrum":["Espectro fr\xedo a quente"],"Very light gray to cyan bluish gray":["Gris moi claro a gris azulado cian"],"Luminous vivid orange to vivid red":["Laranxa vivo luminoso a roxo vivo"],"Luminous vivid amber to luminous vivid orange":["\xc1mbar vivo luminoso a laranxa vivo"],"Light green cyan to vivid green cyan":["Verde cian claro a verde cian vivo"],"Vivid cyan blue to vivid purple":["Cian azul vivo a p\xfarpura vivo"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 de decembro de 2018"],"February 21, 2019":["21 de febreiro de 2019"],"May 7, 2019":["7 de maio de 2019"],"Release Date":["Data de lanzamento"],"Jazz Musician":["M\xfasico de jazz"],Version:["Versi\xf3n"],"Six.":["Seis."],"Five.":["Cinco."],"Four.":["Catro."],"Three.":["Tres."],"Two.":["Dous."],"One.":["Un."],"One of the hardest things to do in technology is disrupt yourself.":["Unha das cousas m\xe1is dif\xedciles de facer en tecnolox\xeda \xe9 interromperte a ti mesmo."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["O redor hai unha pantalla case totalmente negra. Agora, mentres a c\xe1mara se move lentamente ata a fiestra que \xe9 case un selo de correos no marco, aparecen outras formas;"],"Window, very small in the distance, illuminated.":["Fiestra, moi pequena na distancia, iluminada."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - AMENCER - 1940 (MINIATURA)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["O reici\xf1o
G\xe1\xf1ase a vida
Sen facer ru\xeddo."],"Welcome to the wonderful world of blocks\u2026":["Benvido ao marabilloso mundo dos bloques\u2026"],"Snow Patrol":["Patrulla da neve"],Dimensions:["Dimensi\xf3ns"],"Minimum height in pixels":["Altura m\xednima en p\xedxeles"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["A peich amatomaa apetecan a wan da pradeira. Vai vostede moi cargadoo pola gloria da mi\xf1a nai, que est\xe1 a cousa moi mali\xf1aaaar, Gayosooooooor"],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["L\xe9vame ao sircoo non podoooor pola gloria da mi\xf1a nai, pola gloria da mi\xf1a nai. Vai vostede moi cargadi\xf1ooor diodenoo ao ataquerl, l\xe9vame ao sircoo non che digo trigo por non chamarte Rodrigor. "],"Call to Action":["Chamada \xe1 acci\xf3n"],"In quoting others, we cite ourselves.":["O citar a outros, cit\xe1monos a n\xf3s mesmos."],cite:["cita"],"Mont Blanc appears\u2014still, snowy, and serene.":["O Mont Blanc parece\u2013a\xednda, nevado, e calmo."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["Nun lugar da Mancha, cuxo nome no quero recordar, non fai moito tempo que viv\xeda un fidalgo dos de lanza en estaleiro, adarga antiga, cabalo fraco e galgo corredor."],"Block navigation":["Navegaci\xf3n de bloques"],"Enable Full Site Editing":["Activar a edici\xf3n completa do sitio"],"Full Site Editing":["Edici\xf3n completa do sitio"],"Templates to include in your theme.":["Modelos a incluir no teu tema."],Templates:["Modelos"],"Inserter Help Panel":["Panel de axuda do inxertador"],"Pre-publish Checks":["Comprobaci\xf3ns previas \xe1 publicaci\xf3n"],"Please contact your site administrator to install new blocks.":["Por favor, contacta co administrador do teu sitio para instalar novos bloques."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No se atoparon bloques na t\xfaa biblioteca. Por favor, contacta co administrador do teu sitio para instalar novos bloques."],"No blocks found in your library.":["Non se atoparon bloques na t\xfaa biblioteca."],"No blocks found in your library. These blocks can be downloaded and installed:":["Non se atoparon bloques na t\xfaa biblioteca. Estes bloques poden ser descargados e instalados:"],"No blocks found in your library. We did find %d block available for download.":["Non se atoparon bloques na t\xfaa biblioteca. Atopamos %d bloque dispo\xf1ible para descargar.","Non se atoparon bloques na t\xfaa biblioteca. Atopamos %d bloques dispo\xf1ibles para descargar."],"Block previews can\u2019t load.":["Non se poden cargar as vistas previas do bloque."],Retry:["Reintentar"],"Block previews can't install.":["Non se poden instalar as vistas previas do bloque."],"Updated %s":["%s actualizado"],"%d active installation":["%d instalaci\xf3n activa","%d instalaci\xf3ns activas"],"This author has %d block, with an average rating of %d.":["Este autor ten %d bloque, cunha valoraci\xf3n media de %d.","Este autor ten %d bloques, cunha valoraci\xf3n media de %d."],"Authored by %s":["Creado por %s"],Add:["Engadir"],"%d total rating":["%d valoraci\xf3n en total","%d valoraci\xf3ns en total"],"%s out of 5 stars":["%s de 5 estrelas"],"Enter Address":["Engadir a direcci\xf3n"],"Pill Shape":["Forma de pastilla"],"Logos Only":["S\xf3 logotipos"],"Create a block of links to your social media or external sites":["Crea un bloque de ligaz\xf3ns aos teus medios sociais ou sitios externos"],"Social links":["Ligaz\xf3ns sociais"],"Open block navigator":["Abrir o navegador de bloques"],"Attachment page":["P\xe1xina de adxuntos"],Fill:["Encher"],"Link rel":["\xabrel\xbb daligaz\xf3n"],"Border Radius":["Radio do borde"],"Write gallery caption\u2026":["Escribe a lenda da galer\xeda..."],"Content Blocks":["Bloques de contenido"],"Restore the backup":["Restaurar a copia de seguridade"],"The backup of this post in your browser is different from the version below.":["A copia de seguridade desta entrada no teu navegador \xe9 diferente da seguinte versi\xf3n."],"Enable Block Directory search":["Activar a busca no directorio de bloques"],"Block Directory":["Directorio de bloques"],"Unable to connect to the filesystem. Please confirm your credentials.":["Non se puido conectar co sistema de arquivos. Por favor, confirma os teus credenciais."],"Sorry, you are not allowed to install blocks.":["S\xedntoo, non tes permiso para instalar bloques."],"%1$d block is disabled.":["%1$d bloque est\xe1 desactivado.","%1$d bloques est\xe1n desactivados."],"Reverse List Numbering":["Lista de numeraci\xf3n inversa"],"Start Value":["Valor inicial"],"Ordered List Settings":["Axustes de listas ordenadas"],"Clear Media":["Baleirar os medios"],"block style\x04Circle Mask":["M\xe1scara circular"],"Default Style":["Estilo por defecto"],"Not set":["Non establecido"],"While writing, you can press / to quickly insert new blocks.":["Ao escribir, podes pulsar / para insertar novos bloques rapidamente."],"Browse through the library to learn more about what each block does.":["Examina a biblioteca para aprender m\xe1is sobre que fai cada bloque."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Hai bloques dispo\xf1ibles para todo tipo de contidos: inserir texto, encabezados, imaxes, listas, v\xeddeos, t\xe1boas e moito m\xe1is."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Benvido ao marabilloso mundo dos bloques! Os bloques son a base de todo contido dentro do editor."],"Version of the content block format used by the object.":["Versi\xf3n do formato do bloque de contido usado polo obxecto."],"HTML content for the object, transformed for display.":["Contido HTML para o obxecto, transformado para a s\xfaa visualizaci\xf3n."],"Content for the object, as it exists in the database.":["Contido para o obxecto, tal como existe na base de datos."],"The content for the object.":["O contido para o obxecto."],"Change column alignment":["Cambiar a ali\xf1aci\xf3n da columna"],"Align Column Right":["Ali\xf1ar a columna \xe1 dereita"],"Align Column Center":["Ali\xf1ar a columna ao centro"],"Align Column Left":["Ali\xf1ar a columna \xe1 esquerda"],Color:["Cor"],"Vivid purple":["Morado vivo"],"Disable & Reload":["Desactivar e recargar"],"Enable & Reload":["Activar e recargar"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Neces\xedtase recargar a p\xe1xina para este cambio. Antes de recargar, aseg\xfarate de que o teu contido est\xe1 gardado."],"Display these keyboard shortcuts.":["Amosar estes atallos del teclado."],"Experiments Settings":["Axustes experimentais"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg ten algunhas caracter\xedsticas experimentais que podes activar. Selecciona cada unha das que che gustar\xeda usar. Estas caracter\xedsticas son como cambios, polo que non \xe9 aconsellable usalas en produci\xf3n."],"Enable Widgets Screen and Legacy Widget Block":["Activar a pantalla de widgets e o bloque de widgets heredados"],"Experiment settings":["Axustes experimentais"],"Block name name must be a string.":["O nome do bloque ten que ser unha cadea."],Custom:["Personalizado"],Draft:["Borrador"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["O bloque \xab%1$s\xbb non ten un estilo chamado \xab%2$s\xbb."],"Learn more about anchors":["Aprende m\xe1is sobre as anclaxes"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Engade unha palabra ou d\xfaas \u2013 sen espazos \u2013 para crear unha direcci\xf3n web \xfanica so para este encabezado, chamada \xabancoraxe\xbb. Logo poder\xe1s enlazar directamente a esta secci\xf3n da t\xfaa p\xe1xina."],"Widget Blocks (Experimental)":["Bloques de widget (experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Sube un arquivo de v\xeddeo, elixe un da t\xfaa biblioteca de medios ou engade un con unha URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Sube un arquivo de imaxe, elixe un da t\xfaa biblioteca de medios ou engade un cunha URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Sube un arquivo de audio, elixe un da t\xfaa biblioteca de medios ou engade un cunha URL."],"Upload a media file or pick one from your media library.":["Sube un arquivo de medios ou elixe un da t\xfaa biblioteca de medios."],Skip:["Saltar"],"Select a pattern to start with.":["Elixe un dese\xf1o co que comezar."],"Add a page, link, or other item to your navigation.":["Engade unha p\xe1xina, ligaz\xf3n ou outro elemento \xe1 t\xfaa navegaci\xf3n."],"What's this?":["Qu\xe9 \xe9 isto?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Non permitir que os motores de b\xfasqueda sigan esta ligaz\xf3n."],"Provide more context about where the link goes.":["Ofrece m\xe1is contexto sobre onde vai a ligaz\xf3n."],"Title Attribute":["Atributo do t\xedtulo"],"SEO Settings":["Axustes SEO"],Description:["Descrici\xf3n"],"Open in new tab":["Abrir nunha nova pestana"],links:["ligaz\xf3ns"],navigation:["navegaci\xf3n"],menu:["men\xfa"],"Add a navigation block to your site.":["Engade un bloque de navegaci\xf3n ao teu sitio."],"Upload a file or pick one from your media library.":["Sube un arquivo de medios ou elixe un da t\xfaa biblioteca de medios."],"Learn more about embeds":["Aprende m\xe1is sobre os incrustados"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Pega unha ligaz\xf3n ao contido que queiras amosar no teu sitio."],"Upload an image or video file, or pick one from your media library.":["Sube un arquivo de imaxe ou v\xeddeo ou elixe un da t\xfaa biblioteca de medios."],"Three columns; wide center column":["Tres columnas; columna ancha centrada"],"Three columns; equal split":["Tres columnas; igual separaci\xf3n"],"Two columns; two-thirds, one-third split":["D\xfaas columnas: separaci\xf3n de dous tercios, un tercio "],"Two columns; one-third, two-thirds split":["D\xfaas columnas; separaci\xf3n dun tercio, dous tercios"],"Two columns; equal split":["D\xfaas columnas; igual separaci\xf3n"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["O teu sitio non ten ning\xfan %s, as\xed que non hai nada que amosar aqu\xed de momento."],"More tools & options":["M\xe1is ferramentas e opci\xf3ns"],"Create Table":["Crear tabla"],"Insert a table for sharing data.":["Engadir unha tabla para compartir datos."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Desagrupar"],"verb\x04Group":["Agrupar"],"Separate with commas or the Enter key.":["Sep\xe1rao con comas ou coa tecla Intro."],"Separate with commas, spaces, or the Enter key.":["Sep\xe1rao con comas, espacios o la tecla Intro."],"Separate multiple classes with spaces.":["Separa m\xfaltiples clases con espazos."],"Move image forward":["Mover a imaxe cara adiante"],"Move image backward":["Mover a imaxe cara atr\xe1s"],"Sorry, you are not allowed to edit sidebars.":["S\xedntoo, non tes permisos para editar barras laterais."],"Sorry, you are not allowed to read sidebars.":["S\xedntoo, non tes permisos para ler barras laterais."],"The sidebar\u2019s ID.":["ID da barra lateral"],"Displays a set of blocks":["Amosa un conxunto de bloques"],"Blocks Area":["\xc1rea de bloques"],"Block rendered as empty.":["Bloque amosado vac\xedo."],"Inline Code":["C\xf3digo en l\xed\xf1a"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Aviso: A reproduci\xf3n autom\xe1tica de v\xeddeos pode provocarlle problemas de usabilidade a alg\xfans visitantes."],"Footer section":["Secci\xf3n do p\xe9 de p\xe1xina"],"Header section":["Secci\xf3n de cabeceira"],"Sorting and Filtering":["Ordenaci\xf3n e filtrado"],"Post Meta Settings":["Axustes de meta de entrada"],"Post Content":["Contido da entrada"],"Post Content Settings":["Axustes de contido da entrada"],"Percentage width":["Porcentaxe de ancho"],"Column Settings":["Axustes de columna"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Aviso: A reproduci\xf3n autom\xe1tica de audio pode provocarlle conflitos de usabilidade a alg\xfans visitantes."],"Block area updated.":["\xc1rea de bloques actualizada."],"Block area scheduled.":["\xc1rea de bloques programada."],"Block area published.":["\xc1rea de bloques publicada."],"Block areas list":["Lista de \xe1reas de bloques "],"Block areas list navigation":["Navegaci\xf3n de \xe1reas de bloques"],"Filter block areas list":["Filtrar lista de \xe1reas de bloques"],"No block area found.":["Non se atopou ning\xfan \xe1rea de bloques."],"Search Block Areas":["Buscar \xe1reas de bloques"],"All Block Areas":["Todas as \xe1reas de bloques"],"View Block Area":["Ver \xe1rea de bloques"],"Edit Block Area":["Editar \xe1rea de bloques"],"New Block Area":["Nova \xe1rea de bloques"],"Add New Block Area":["Engadir nova \xe1rea de bloques"],"admin menu\x04Block Areas":["\xc1reas de bloques"],"post type singular name\x04Block Area (Experimental)":["\xc1rea de bloques (Experimental)"],"post type general name\x04Block Area (Experimental)":["\xc1rea de bloques (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Tipo de contido personalizado que almacena as \xe1reas de bloques referenciadas polos temas."],"Widgets screen content":["Contido da pantalla de widgets."],"Widgets advanced settings":["Axustes avanzados de widgets"],"(experimental)":["(experimental)"],"Block Areas":["\xc1reas de bloques"],"Widgets screen top bar":["Barra superior da pantalla de widgets"],"This color combination may be hard for people to read.":["Esta combinaci\xf3n de cor pode ser dif\xedcil de ler para a xente."],"There is no poster image currently selected":["Non hai ningunha imaxe de p\xf3ster seleccionada agora"],"The current poster image url is %s":["A URL da imaxe actual do p\xf3ster \xe9 %s"],section:["secci\xf3n"],row:["fila"],wrapper:["envoltura"],container:["contenedor"],"A block that groups other blocks.":["Un bloque que agrupa outros bloques."],Group:["Grupo"],"Crop image to fill entire column":["Recortar imaxe para encher toda a columna"],"Play inline":["Reproducci\xf3n integrada"],"Leave empty if the image is purely decorative.":["D\xe9ixao baleiro se a imaxe \xe9 soamente decorativa."],"Describe the purpose of the image":["Describe o prop\xf3sito da imaxe"],"Add a block":["Engade un bloque"],"Block vertical alignment setting label\x04Change vertical alignment":["Cambiar alineaci\xf3n"],"Block vertical alignment setting\x04Vertically Align Bottom":["Alineaci\xf3n vertical ao fondo"],"Block vertical alignment setting\x04Vertically Align Middle":["Alineaci\xf3n vertical ao medio"],"Replace Image":["Substituir imaxe"],"Block vertical alignment setting\x04Vertically Align Top":["Alineaci\xf3n vertical arriba"],"Display a legacy widget.":["Amosa un widget herdado."],"Legacy Widget (Experimental)":["Widget herdado (experimental)"],"Change widget":["Cambiar widget"],"Legacy Widget":["Widget herdado"],"You don't have permissions to use widgets on this site.":["Non tes permisos para usar widgets neste sitio."],"Select a legacy widget to display:":["Elixe un widget herdado a amosar:"],"There are no widgets available.":["Non hai widgets dispo\xf1ibles."],"Change block type or style":["Cambiar tipo ou estilo do bloque"],"keyboard key\x04Space":["Espacio"],"keyboard key\x04Backspace":["Retroceso"],"More rich text controls":["M\xe1is controles de texto enriquecido"],"Search Terms":["Termos de busca"],"Exit the Editor":["Sa\xedr do editor"],"Block Manager":["Xestor de bloques"],"Class name of the widget.":["Nome da clase do widget."],"Sorry, you are not allowed to access widgets on this site.":["S\xedntoo, non tes permisos para acceder a widgets neste sitio."],"Widgets (beta)":["Widgets (beta)"],link:["ligaz\xf3n"],"Embedded content from %s can't be previewed in the editor.":["O contido incrustado dende %s non se pode previsualizar no editor."],"Custom Color":["Cor personalizado"],"Prompt visitors to take action with a button-style link.":["Anima aos visitantes a que fagan algunha acci\xf3n cunha ligaz\xf3n estilo bot\xf3n."],"Stick to the top of the blog":["Fixar na parte superior do blog"],"Read about permalinks":["Ler acerca das ligaz\xf3ns permanentes"],"The last part of the URL.":["A \xfaltima parte da URL."],"URL Slug":["Slug da URL"],"A cloud of your most used tags.":["Una nube das etiquetas m\xe1is usadas."],"Tag Cloud":["Nube de etiquetas"],Taxonomy:["Taxonom\xeda"],"Tag Cloud Settings":["Axustes da nube de etiquetas"],"- Select -":["- Selecciona -"],Default:["Por defecto"],find:["atopar"],"Help visitors find your content.":["Axuda aos visitantes a atopar o teu contido."],Search:["Buscar"],"Add button text\u2026":["Engadir texto ao bot\xf3n"],"Button text":["Texto do bot\xf3n"],"Optional placeholder\u2026":["Marcador de posici\xf3n opcional ..."],"Optional placeholder text":["Texto do marcador de posici\xf3n opcional"],"Add label\u2026":["Engadir etiqueta..."],"Label text":["Texto da etiqueta"],"image %1$d of %2$d in gallery":["imaxe %1$d de %2$d na galer\xeda"],archive:["arquivo"],posts:["entradas"],"A calendar of your site\u2019s posts.":["Un calendario das entradas do teu sitio."],Calendar:["Calendario"],by:["por"],"An error has occurred, which probably means the feed is down. Try again later.":["Houbo un erro, que seguramente far\xe1 que o feed non funcione. Proba de novo m\xe1is tarde."],"RSS Error:":["Erro de RSS:"],"block style\x04Default":["Por defecto"],"Fullscreen mode deactivated":["Modo a pantalla completa desactivado"],"Fullscreen mode activated":["Modo a pantalla completa activado"],"Spotlight mode deactivated":["Modo de enfoque desactivado"],"Spotlight mode activated":["Modo de enfoque activado"],"Top toolbar deactivated":["Barra superior desactivada"],"Top toolbar activated":["Barra superior activada"],Back:["Voltar"],"Feature activated":["Caracter\xedstica activada"],"Feature deactivated":["Caracter\xedstica desactivada"],"Vertical Pos.":["Pos. vertical."],"Horizontal Pos.":["Pos. horizontal."],feed:["feed"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Amosa entradas de calquera feed RSS ou Atom."],RSS:["RSS"],"Max number of words in excerpt":["N\xfamero m\xe1ximo de palabras no extracto"],"Display excerpt":["Amosar extracto"],"Display date":["Amosar data"],"Display author":["Amosar autor"],"RSS Settings":["Axustes RSS"],"Edit RSS URL":["Editar URL do RSS"],"Content before this block will be shown in the excerpt on your archives page.":["O contido anterior a este bloque amosarase no extracto da t\xfaa p\xe1xina de inicio."],"Hide the excerpt on the full content page":["Ocultar o extracto na p\xe1xina co contido completo"],"The excerpt is visible.":["O extracto \xe9 visible."],"The excerpt is hidden.":["O extracto est\xe1 oculto."],"Sorry, this content could not be embedded.":["S\xedntoo, este contido non se pode incrustar."],"Embed Amazon Kindle content.":["Incrustar contido de Amazon Kindle."],ebook:["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Incrustar contido de Crowdsignal (antes Polldaddy)."],"Focal Point Picker":["Selector do punto focal"],Underline:["subli\xf1ado"],"Attempt Block Recovery":["Intento de recuperaci\xf3n do bloque"],"Word count type. Do not translate!\x04words":["palabras"],"content placeholder\x04Content\u2026":["Contido\u2026"],"button label\x04Convert to link":["Convertir a ligaz\xf3n"],"button label\x04Try again":["Proba de novo"],"Editor tips":["Trucos para o editor"],"Block (selected)":["Bloque (seleccionado)"],"Document (selected)":["Documento (seleccionado)"],"%d word":["%d verba","%d verbas"],"Top Toolbar":["Barra de ferramentas superior"],"Link Rel":["Relaci\xf3n de ligaz\xf3n"],"Link CSS Class":["Clases CSS da ligaz\xf3n"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Crea contido e g\xe1rdao para ti e outros colaboradores para que se reutilice a trav\xe9s do teu sitio. Actualiza o bloque e os cambios aplicaranse en todos os lugares nos que se usan."],"To edit the featured image, you need permission to upload media.":["Para editar a imaxe destacada, necesitas permisos para subir arquivos de medios."],"To edit this block, you need permission to upload media.":["Para editar este bloque, necesitas permisos para subir arquivos de medios."],"(selected block)":["(bloques seleccionados)"],"Block tools":["Ferramentas do bloque"],Permalink:["Ligaz\xf3n permanente"],"This image has an empty alt attribute":["Esta imaxe ten o atributo alt baleiro"],"This image has an empty alt attribute; its file name is %s":["Esta imaxe ten o atributo alt baleiro; o se nome de arquivo \xe9 %s"],"Block area reverted to draft.":["Bloque cambiado a borrador."],"Block area published privately.":["Bloque publicado en privado."],"No block areas found in Trash.":["Non se atoparon bloques na papeleira."],"Block\x04Add New":["Engadir novo"],"add new on admin bar\x04Block Area":["Bloque"],"Link inserted.":["Ligaz\xf3n engadida."],"Warning: the link has been inserted but may have errors. Please test it.":["Atenci\xf3n: a ligaz\xf3n inseriuse pero pode ter erros. Por favor, compr\xf3bao. "],"%s block selected.":["%s bloque seleccionado.","%s bloques seleccionados."],Thumbnail:["Miniatura"],"Full Size":["Tama\xf1o completo"],"Link selected.":["Ligaz\xf3n seleccionada."],"Start writing with text or HTML":["Comeza a escribir texto ou HTML"],"Type text or HTML":["Escribe texto ou HTML"],"Block icon":["Icono do bloque"],"Align Text Right":["Alinear texto \xe1 dereita"],"Align Text Center":["Alinear texto \xf3 centro"],"Align Text Left":["Alinear texto \xe1 esquerda"],"Start writing or type / to choose a block":["Comeza a escribir ou escribe / para elexir un bloque"],"Empty block; start writing or type forward slash to choose a block":["Bloque vac\xedo; comeza a escribir ou escribe unha barra inclinada hacia adiante para elexir un bloque"],"Paragraph block":["Bloque de p\xe1rrafo"],"Page Break":["Salto de p\xe1xina"],"Stack on mobile":["Apilado en m\xf3bil"],Annotation:["Notas"],"Drag images, upload new ones or select files from your library.":["Arrastra imaxes, sobe novas ou elixe arquivos desde a t\xfaa biblioteca."],"blocks\x04Most Used":["M\xe1is utilizados"],"imperative verb\x04Resolve":["Resolve"],"font size name\x04Huge":["Enorme"],"font size name\x04Large":["Grande"],"font size name\x04Medium":["Medio"],"font size name\x04Small":["Pequeno\t"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Intro"],"button label\x04Import":["Importar\t"],"button label\x04Download":["Descarga\t "],"button label\x04Embed":["Incrustar"],"block title\x04Embed":["Incrustado"],"block title\x04Classic":["Cl\xe1sico"],"block style\x04Large":["Grande"],"%s (opens in a new tab)":["%s (abre nunha pesta\xf1a nova)"],"Link edited.":["Ligaz\xf3n editada."],"Link removed.":["Ligaz\xf3n eliminada."],media:["medios"],"Double-check your settings before publishing.":["Volve comprobar os teus axustes antes de publicar."],"Generating preview\u2026":["Xerando vista previa\u2026"],"Edit or update the image":["Edita ou actualiza a imaxe"],Media:["Multimedia"],"Navigate to the nearest toolbar.":["Navega ata a barra de ferramentas m\xe1is preto."],"Document tools":["Ferramentas do documento"],"Document and block tools":["Ferramentas do documento e os bloques"],"Embed a video from your media library or upload a new one.":["Incrusta un v\xeddeo dende a t\xfaa biblioteca de medios ou sube un novo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Inserte poes\xeda. Utiliza formatos de espaciado especiais. Ou cita letras de canci\xf3ns."],"Add white space between blocks and customize its height.":["Engade espazo en branco entre bloques e personaliza a s\xfaa altura."],"Insert additional custom elements with a WordPress shortcode.":["Engade elementos adicionais personalizados cun shortcode de WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crea unha ruptura entre ideas ou secci\xf3ns cun separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Da un \xe9nfasis visual o texto citado. \"\xd3 citar a outros, citamonos a n\xf3s mesmos\". \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Da un \xe9nfasis visual especial a unha cita do teu texto."],"Start with the building block of all narrative.":["Empeza co bloque que cimenta toda a narrativa."],"Separate your content into a multi-page experience.":["Separa o teu contido nunha experiencia multi-p\xe1xina."],"Set media and words side-by-side for a richer layout.":["Coloca as palabras e os medios un \xe1 beira do outro para ter un dese\xf1o m\xe1is rico."],"Media & Text Settings":["Axustes de medios e texto"],"Create a bulleted or numbered list.":["Crea unha lista de vi\xf1etas ou numerada."],"Display a list of your most recent comments.":["Mostra unha lista dos teus comentarios m\xe1is recentes."],"Insert an image to make a visual statement.":["Insere unha imaxe para facer unha declaraci\xf3n visual"],"Add custom HTML code and preview it as you edit.":["Engade c\xf3digo personalizado HTML e previsual\xedzalo mentres o editas."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce novas secci\xf3ns e organiza o contido para axudar aos visitantes (e aos motores de procura) a comprender a estrutura do teu contido."],"Display multiple images in a rich gallery.":["Mostra m\xfaltiples imaxes nunha galer\xeda enriquecida.\t "],"Add a link to a downloadable file.":["Engade unha ligaz\xf3n a un arquivo descargable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incrusta v\xeddeos, imaxes, tweets, audios, e outros contidos desde fontes externas."],"Resize for smaller devices":["Cambia o tama\xf1o para dispositivos m\xe1is pequenos."],"This embed may not preserve its aspect ratio when the browser is resized.":["Este incrustado poder\xeda non manter a s\xfaa relaci\xf3n de aspecto cando o navegador cambie de tama\xf1o."],"This embed will preserve its aspect ratio when the browser is resized.":["Este incrustado manter\xe1 a s\xfaa relaci\xf3n de aspecto cando o navegador cambie de tama\xf1o."],"Embed an Animoto video.":["Incrustar video de Animoto."],"Embed a Vimeo video.":["Incrustar video de Vimeo."],"Embed Flickr content.":["Incrustar contido de Flickr."],"Embed Spotify content.":["Incrustar contido de Spotify."],"Embed SoundCloud content.":["Incrustar contido de SoundCloud."],"Embed a WordPress post.":["Incrustar entrada de WordPress."],"Embed an Instagram post.":["Incrustar unha entrada de Instagram."],"Embed a Facebook post.":["Incrustar unha entrada de Facebook."],"Embed a WordPress.tv video.":["Incrustar un v\xeddeo de WordPress.tv."],"Embed a VideoPress video.":["Incrustar un video de VideoPress."],"Embed a Tumblr post.":["Incrustar unha publicaci\xf3n de Tumblr."],"Embed a TED video.":["Incrustar un v\xeddeo de TED."],"Embed Speaker Deck content.":["Incrustar contido de Speaker Deck."],"Embed a YouTube video.":["Incrustar un video de YouTube."],"Embed SmugMug content.":["Incrustar contido de SmugMug."],"Embed Slideshare content.":["Incrustar contido de Slideshare."],"Embed Scribd content.":["Incrustar contido de Scribd."],"Embed Screencast content.":["Incrustar contido de Screencast."],"Embed ReverbNation content.":["Incrustar contido de ReverbNation."],"Embed a Reddit thread.":["Incrustar contido de Reddit."],"Embed Polldaddy content.":["Incrustar contido de Polldaddy."],"Embed Mixcloud content.":["Incrustar contido de Mixcloud."],"Embed a tweet.":["Incrustar un tweet."],"Embed Meetup.com content.":["Incrustar contido de Meetup.com."],"Embed Kickstarter content.":["Incrustar contido de Kickstarter."],"Embed Issuu content.":["Incrustar contido de Issuu."],"Embed Imgur content.":["Incrustar contido de Imgur."],"Embed Hulu content.":["Incrustar contido de Hulu."],"Embed a Dailymotion video.":["Incrustar video de Dailymotion."],"Embed CollegeHumor content.":["Incrustar contido de CollegeHumor."],"Embed Cloudup content.":["Incrustar contido de Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Engade unha imaxe ou un video cun texto superposto \u2014 xenial para cabeceiras."],"Display code snippets that respect your spacing and tabs.":["Mostra fragmentos de c\xf3digo que respetan os teus espazos e tabuladores."],"Use the classic WordPress editor.":["Usar o editor cl\xe1sico de WordPress."],"Display a list of all categories.":["Mostra unha lista de todas as categor\xedas."],"Embed a simple audio player.":["Incrusta un reprodutor sinxelo de audio.\t"],"noun\x04View":["Ver"],"editor button\x04Left to right":["De esquerda a dereita"],"Save as Pending":["Gardar como pendente"],"%s address":["%s direcci\xf3n"],"Paste or type URL":["Pegar ou escribir URL"],"Insert from URL":["Inserir desde URL"],"Block Navigator":["Navegaci\xf3n de bloques"],Styles:["Estilos"],"Advanced Panels":["Paneis avanzados"],"Document Panels":["Paneis de documentos"],General:["Xeral"],"Open the block navigation menu.":["Abre o men\xfa de navegaci\xf3n de bloques."],"Work without distraction":["Traballo sen distracci\xf3ns"],"Focus on one block at a time":["Enf\xf3cache nun bloque cada vez"],"Access all block and document tools in a single place":["Accede a todos as ferramentas de bloques e documentos desde un s\xf3 lugar"],Options:["Opci\xf3ns"],"(opens in a new tab)":["(abrir nunha nova pestana)"],Minutes:["Minutos"],Hours:["Horas"],Time:["Hora"],Year:["Ano"],Day:["D\xeda"],December:["Decembro"],November:["Novembro"],October:["Outubro"],September:["Setembro"],August:["Agosto"],July:["Xullo"],June:["Xu\xf1o"],May:["Maio"],April:["Abril"],March:["Marzo"],February:["Febreiro"],January:["Xaneiro"],Month:["Mes"],Date:["Data"],"Go to the first (home) or last (end) day of a week.":["Ir o primero (inicial) ou \xfaltimo (final) d\xeda da semana."],"Home/End":["Inicio/Fin"],"Home and End":["Inicio e final"],"Move backward (PgUp) or forward (PgDn) by one month.":["Moverse cara atr\xe1s ( PgUp) ou cara adiante ( PgDn) un mes."],"PgUp/PgDn":["PxUp/PxDn "],"Page Up and Page Down":["P\xe1xina arriba e p\xe1xina abaixo"],"Move backward (up) or forward (down) by one week.":["Moverse cara atr\xe1s (arriba) ou cara adiante (abaixo) unha semana.\t "],"Up and Down Arrows":["Frechas arriba e abaixo"],"Move backward (left) or forward (right) by one day.":["Moverse cara atr\xe1s (esquerda) ou cara adiante (dereita) un d\xeda."],"Left and Right Arrows":["Frechas esquerda e dereita"],"Select the date in focus.":["Seleccionar a data con foco."],"Navigating with a keyboard":["Navegando co teclado"],"Click the desired day to select it.":["Fai clic no d\xeda desexado para seleccionalo."],"Click the right or left arrows to select other months in the past or the future.":["Fai clic nas frechas esquerda e dereita para seleccionar outros meses no pasado ou no futuro.\t "],"Click to Select":["Clic para seleccionar"],"Calendar Help":["Axuda do almanaque"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Usa as teclas do cursor para cambiar a cor base. Arriba para aclarar a cor, abaixo para escurecelo, esquerda para reducir a saturaci\xf3n e dereita para incrementar a saturaci\xf3n."],"Choose a shade":["Elixe unha sombra"],"Change color format":["Cambia o formato da cor"],"Color value in HSL":["Valor da cor en HSL"],"Color value in RGB":["Valor da cor en RGB"],"Color value in hexadecimal":["Valor da cor en hexadecimal"],"RGB mode active":["Modo RGB activo"],"Hex color mode active":["Modo cor HEX activo"],"Hue/saturation/lightness mode active":["Modo de tono/saturaci\xf3n/brillo activo"],"Move the arrow left or right to change hue.":["Move a frecha \xe1 esquerda ou \xe1 dereita para cambiar o matiz."],"Hue value in degrees, from 0 to 359.":["Valor da tonalidade en graos, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor alfa, de 0 (transparente) a 1 (opaco)."],Stripes:["Raias"],"Your site doesn\u2019t include support for this block.":["O teu sitio non incl\xfae soporte para este bloque."],"Unrecognized Block":["Bloque non reco\xf1ecido"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["O teu sitio non \xe9 compatibilidade co bloque \"%s\". Podes deixar intacto este bloque ou borralo do todo."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["O teu sitio non \xe9 compatibilidade co bloque \"%s\". Podes deixar intacto este bloque, converter o seu contido a un bloque de HTML personalizado ou borralo do todo."],"Media area":["\xc1rea de medios"],"Media & Text":["Media e texto"],"Show media on right":["Mostrar medio na dereita"],"Show media on left":["Mostrar media na esquerda"],"Open in New Tab":["Abrir nunha nova pesta\xf1a"],Cover:["Portada"],"Border Settings":["Axustes de borde"],"Edit media":["Editar media"],Medium:["Medio"],"Paste URL or type to search":["Pega o URL ou teclea para buscar"],Terms:["Termos"],"Your work will be published at the specified date and time.":["O teu traballo publicarase na data e hora establecidas."],"Are you ready to schedule?":["Est\xe1s listo para programar?"],"Always show pre-publish checks.":["Mostrar sempre as comprobaci\xf3ns previas."],"Take Over":["Tomar o control"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Hai outro usuario traballando agora mesmo nesta entrada, o que quere dicir que ti non podes facer cambios, a non ser que tomes o control."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s est\xe1 a traballar agora mesmo nesta entrada, o que quere dicir que ti non podes facer cambios a non ser que tomes o control."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Outro usuario ten agora o control de edici\xf3n desta entrada. Non te preocupes, gard\xe1ronse os teus cambios ata este momento."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s ten agora o control de edici\xf3n desta entrada. Non te preocupes, gard\xe1ronse os teus cambios ata este momento."],Avatar:["Avatar"],"This post is already being edited.":["Esta entrada est\xe1 a ser editada."],"Someone else has taken over this post.":["Algu\xe9n tomou o control desta entrada."],"This block contains unexpected or invalid content.":["Este bloque cont\xe9n contido inesperado ou non v\xe1lido."],"Resolve Block":["Resolver bloque\t"],"Convert to HTML":["Convertir a HTML"],"This block can only be used once.":["Este bloque s\xf3 se pode usar unha vez."],"Exit Code Editor":["Sa\xedd do editor de c\xf3digo"],"Editing Code":["Editando c\xf3digo"],"Solid Color":["Cor s\xf3lida"],"Main Color":["Cor principal"],HTML:["HTML"],"Write HTML\u2026":["Escribir HTML"],"Media Settings":["Axustes de medios"],"Overlay Color":["Cor de superposici\xf3n"],Overlay:["Superposici\xf3n"],"Insert Media":["Inserir obxecto"],"Reusable block imported successfully!":["Bloque reutilizable importado correctamente!\t"],"Invalid Reusable Block JSON file":["Arquivo JSON de bloque reutilizable non v\xe1lido"],"Invalid JSON file":["Arquivo JSON non v\xe1lido"],"Import from JSON":["Importar dende JSON"],Backtick:["Acento grave"],Period:["Per\xedodo"],Comma:["Coma"],"Change type of %d block":["Cambiar o tipo de %d bloque","Cambiar o tipo de %d bloques"],Current:["Actual"],"After Conversion":["Desp\xf3is da conversi\xf3n"],"Change alignment":["Cambiar alineamento"],"Change text alignment":["Cambiar alineaci\xf3n do texto"],"%d block":["%d bloque","%d bloques"],Escape:["Escape"],"Forward-slash":["Barra"],"No archives to show.":["Non hai arquivos para mostrar."],"This file is empty.":["Este arquivo est\xe1 baleiro."],"Sorry, this file type is not supported here.":["Sent\xedmolo, este tipo de arquivo non \xe9 compatible aqu\xed."],"Manage All Reusable Blocks":["Xestionar todos os bloques reutilizables"],Title:["T\xedtulo"],"Fullscreen Mode":["Modo a pantalla completa"],"Beautiful landscape":["Preciosa paisaxe"],"Close panel":["Pechar panel\t"],"Convert to Classic Block":["Converter a bloque cl\xe1sico"],"Remove Poster Image":["Eliminar imaxe do p\xf3ster"],"Select Poster Image":["Seleccionar imaxe do cartel"],"Poster Image":["Imaxe de p\xf3ster"],"This block is deprecated. Please use the Columns block instead.":["Este bloque est\xe1 obsoleto. Por favor, utiliza o bloque de columnas no seu lugar."],"Text Columns (deprecated)":["Columnas de texto (obsoletas)"],"Row Count":["Reconto de filas"],"Column Count":["Reconto de columnas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloque est\xe1 en desuso. Por favor, usa o bloque de par\xe1grafo no seu lugar."],"Subheading (deprecated)":["Subt\xedtulo (en desuso)"],blockquote:["cita"],"Change the block type after adding a new paragraph.":["Cambia o tipo de bloque despois de agregar un novo par\xe1grafo."],"Spotlight Mode":["Modo de enfoque"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["As etiquetas axudan aos usuarios e aos motores de b\xfasqueda a navegar polo teu sitio e atopar o teu contido. Engade alg\xfanhas palabras clave que describan a t\xfaa entrada."],"Add tags":["Engadir etiquetas"],"Apply the \"%1$s\" format.":["Aplica o formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["O teu tema utiliza formatos de entrada para destacar os distintos tipos de contido, como imaxes ou v\xeddeos. Aplica un formato de entrada para ver estes estilos especiais."],"Use a post format":["Usa un formato de entrada"],"Insert After":["Inserir despois"],"Insert Before":["Inserir antes"],"Move %1$d block from position %2$d down by one place":["Move %1$d bloque da posici\xf3n %2$d a un sitio m\xe1is abaixo","Move %1$d bloques da posici\xf3n %2$d a un sitio m\xe1is abaixo"],"Move %1$d block from position %2$d up by one place":["Move %1$d bloque da posici\xf3n %2$d un sitio m\xe1is arriba","Move %1$d bloques da posici\xf3n %2$d un sitio m\xe1is arriba"],"Move %1$s block from position %2$d %3$s to position %4$d":["Move %1$s bloque da posici\xf3n %2$d %3$s \xe1 posici\xf3n %4$d"],movie:["pel\xedcula"],"Insert a new block before the selected block(s).":["Inserta un novo bloque antes do/os bloque( s) seleccionado( s)."],"Remove the selected block(s).":["Elimina o/os bloque( s) seleccionado( s)."],"Duplicate the selected block(s).":["Duplica o/os bloque( s) seleccionado( s)."],"Block shortcuts":["Atallos de bloques"],"Clear selection.":["Limpar a selecci\xf3n"],"Select all text when typing. Press again to select all blocks.":["Selecciona todo o texto mentres tecleas. Pulsa de novo para seleccionar todolos bloques."],"Selection shortcuts":["Atallos de selecci\xf3n"],"Switch between Visual Editor and Code Editor.":["Cambiar entre o editor visual e o editor de c\xf3digo."],"Navigate to the previous part of the editor (alternative).":["Navega ata a parte anterior do editor (alternativa)."],"Navigate to the next part of the editor (alternative).":["Navega ata a parte seguinte do editor (alternativa)."],"Navigate to the previous part of the editor.":["Navega ata a parte anterior do editor."],"Navigate to the next part of the editor.":["Navega ata a parte seguinte do editor."],"Show or hide the settings sidebar.":["Mostra ou oculta a barra lateral de axustes."],"Redo your last undo.":["Refai o teu \xfaltimo desfacer."],"Undo your last changes.":["Desfai os teus \xfaltimos cambios."],"Save your changes.":["Garda os teus cambios."],"Global shortcuts":["Atallos globais"],"Remove a link.":["Elimina a ligaz\xf3n"],"Convert the selected text into a link.":["Converte o texto seleccionado nunha ligaz\xf3n."],"Underline the selected text.":["Subli\xf1a o texto seleccionado.\t"],"Make the selected text italic.":["Cambia o texto seleccionado a cursiva.\t"],"Make the selected text bold.":["Cambia o texto seleccionado a negrita."],"Text formatting":["Formatos de texto"],"Insert a new block after the selected block(s).":["Inserta un novo bloque despois do/os bloque( s) seleccionado( s)."],"Keyboard Shortcuts":["Atallos de teclado"],"Thanks for testing Gutenberg!":["Grazas por probar Gutenberg!"],"Help build Gutenberg":["Axuda a construir Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Se quieres aprender m\xe1is sobre c\xf3mo crear bloques adicionais, ou se est\xe1s interesado en axudar co proxecto, p\xe1sate polo repositorio en GitHub."],"The WordPress community":["A comunidade de WordPress"],"Code is Poetry":["O c\xf3digo \xe9 poes\xeda"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Podes crear calquera bloque que queras, est\xe1tico e din\xe1mico, decorativo ou plano. Aqu\xed tes un bloque de cita:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Calquera bloque pode estar nalgunha destas alineaci\xf3ns. O bloque de incrustar tam\xe9n as ten, i \xe9 adaptable dende a base:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["O de enrriba \xe9 unha galer\xeda con s\xf3 d\xfaas imaxes. \xc9 un modo sinxelo de crear visualmente atractivos dese\xf1os, sin ter que lidiar con floats. Tam\xe9n podes convertir f\xe1cilmente a galer\xeda de novo a imaxes individuais, usando o cambiador de bloques."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Por suposto, a imaxe a ancho completo pode ser realmente grande. Pero a veces a imaxe \xe9 o importante."],"Accessibility is important — don’t forget image alt attribute":["A accesibilidade \xe9 importante. Non te esquzas do atributo de imaxe alt. "],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Se combinas as novas alineaci\xf3ns de galer\xeda ancha e ancho completo podes crear dese\xf1os ricos en medios moi r\xe1pidamente: "],"Media Rich":["Medios enriquecidos"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Podes cambiar a cantidade de columnas das t\xfaas galer\xedas arrastrando un control deslizante no inspector de bloques da barra lateral. "],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Os bloques poden ser o que necesitas. Por exemplo, pode que queras engadir unha cita suave como parte da composici\xf3n do teu texto, ou pode que prefiras mostrar unha estilizada e xigante. Todas est\xe1s opci\xf3ns est\xe1n no insertador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["A informaci\xf3n correspondente \xe1 orixe da cita est\xe1 nun campo de texto separado, parecido \xe1s lendas baixo as imaxes, para que a estrutura da cita est\xe9 protexida ainda que a selecciones, modifiques ou quites da orixe. \xc9 sempre sinxelo engadila de novo. "],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["O editor tratar\xe1 de crear unha nova experiencia de creaci\xf3n de p\xe1xinas e entradas que axuden a escribir publicaci\xf3ns enriquecidas sen esforzo, e ten \u201cbloques\u201d para facelo sinxelo o que levar\xeda hoxe a usar shortcodes, HTML persoalizado ou esot\xe9ricos descubrimentos de incrustaci\xf3ns."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un gran beneficio dos bloques \xe9 que podes editalos onde est\xe9n e manipular directamente o teu contido. En vez de ter campos para editar cousas como o c\xf3digo ou unha cita, ou o texto dun bot\xf3n, podes cambiar directamente o contido. Proba a modificar a seguinte cita: "],"Visual Editing":["Edici\xf3n visual"],"And Lists like this one of course :)":["E listas coma esta por suposto :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloques de dese\xf1o, coma bot\xf3ns, imaxes principais, separadores, etc. "],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incrustados, como YouTube, tuits ou entradas de outro WordPress. "],Galleries:["Galer\xedas"],"Images & Videos":["Imaxes e videos"],"Text & Headings":["Texto i encabezados"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["An\xedmate a probalo, podes descubrir cousas que WordPress xa pode engadir nas t\xfaas entradas das que no ti\xf1as nin idea. Aqu\xed tes unha breve lista do que a d\xeda de hoxe podes atopar ah\xed: "],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imaxina que todo o que WordPress pode facer est\xe9 dispo\xf1ible para ti r\xe1pidamente e no mesmo sitio da interfaz. Non tes que descubrir etiquetas HTML, clases ou recordar sintaxis complicadas de shortcodes. Ese \xe9 o esp\xedritu tra-lo inxertador \u2014 o bot\xf3n (+) que hai no editor \u2014 que che permite navegar por todolos bloques de contido dispo\xf1ibles e engadilos a t\xfaa entrada. Os plugins e temas poden rexistrar os seus propios, abrindo unha gran cantidade de posibilidades para a edici\xf3n e a publicaci\xf3n enriquecida. "],"The Inserter Tool":["A ferramenta Insertador"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Proba a seleccionar ou quitar ou editar a lenda, agora xa non tes porque ser coidadoso \xe1 hora de seleccionar a imaxe ou textos por error e arruinar a presentaci\xf3n."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Se o teu tema \xe9 compatible ver\xe1s o bot\xf3n \"ancho\" na barra de ferramentas da imaxe. Pr\xf3bao."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Xestionar im\xe1xes e medios co m\xe1ximo coidado \xe9 un enfoque principal do novo editor. Afortunadamente atopar\xe1s posibilidades para engadir lendas ou facer de ancho completo as t\xfaas fotos dun modo moito m\xe1is f\xe1cil e robusto que antes."],"A Picture is Worth a Thousand Words":["Unha imaxe vale m\xe1is que mil verbas"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Os encabezados tam\xe9n son bloques separados, o que axuda \xe1 estructura e organizaci\xf3n do teu contido."],"... like this one, which is right aligned.":["... coma esta, que est\xe1 alineada \xe1 dereita."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["O que est\xe1s lendo agora \xe9 un bloque de texto, o bloque m\xe1is b\xe1sico de todos. O bloque de texto ten os seus propios controles para movelo libremente por t\xf3dala publicaci\xf3n\u2026 "],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["O obxectivo deste novo editor \xe9 facer que engadir contido enriquecido a WordPress sexa algo sinxelo e agradable. Toda esta entrada est\xe1 creada con pezas de contido \u2014algo parecido \xf3s ladrillos LEGO \u2014 que podes mover e cos que podes interactuar. Move o teu cursor e ver\xe1s que aparecen os distintos bloques con l\xed\xf1as e frechas. Pulsa nas frechas para recolocar r\xe1pidamente os bloques, sen medo a perder cousas sen o proceso de copiar e pegar. "],"Of Mountains & Printing Presses":["Falando de monta\xf1as e imprentas"],"Welcome to the Gutenberg Editor":["Benvido ao editor Gutenberg"],"block name\x04More":["M\xe1is"],"button to expand options\x04More":["M\xe1is"],"Are you sure you want to unschedule this post?":["Est\xe1s seguro de querer anular a programaci\xf3n desta entrada?"],"Alt Text (Alternative Text)":["Texto alt (texto alternativo)"],"Reusable Block":["Bloque reutilizable"],"Unique identifier for the object.":["Identificador \xfanico para o obxecto."],"Untitled Reusable Block":["Bloque reutilizable sen t\xedtulo"],Small:["Pequeno"],"(%s: %s)":["(%s: %s)"],Reusable:["Reutilizable"],"(current %s: %s)":["(actual %s: %s)"],"Remove from Reusable Blocks":["Borrar dos bloques reutilizables"],"Add to Reusable Blocks":["Engadir aos bloques reutilizables"],"Keep as HTML":["Manter como HTML"],"Edit URL":["Editar URL"],"Color Settings":["Axustes de cor"],"The response is not a valid JSON response.":["As respostas non son unha resposta JSON v\xe1lida."],"Editor publish":["Publicaci\xf3n do editor"],Muted:["Apagado"],"Video Settings":["Axustes de v\xeddeo"],"recent comments":["comentarios recentes"],"Latest Comments":["\xdaltimos comentarios"],"Display Excerpt":["Mostrar extracto"],"Display Date":["Mostrar data"],"Display Avatar":["Mostrar avatar"],"Latest Comments Settings":["Axustes de \xfaltimos comentarios"],"Number of Comments":["N\xfamero de comentarios"],"Background Opacity":["Opacidade do fondo"],Auto:["Auto"],Preload:["Precargar"],"Audio Settings":["Axustes de audio"],"Display a monthly archive of your posts.":["Mostra un arquivo por meses das t\xfaas entradas.\t "],"Display as Dropdown":["Mostrar como un despreg\xe1bel"],"Show Post Counts":["Mostrar contador de entradas"],"Archives Settings":["Axustes de arquivos"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Soporte"],"No comments to show.":["Non hai comentarios para mostrar."],"%1$s on %2$s":["%1$s en %2$s"],"Select Post":["Seleccionar entrada"],"Select Week":["Seleccionar semana"],"Select Day":["Seleccionar d\xeda"],"Select Month":["Seleccionar mes"],"Select Year":["Seleccionar ano"],Archives:["Hist\xf3rico"],"Very dark gray":["Gris moi escuro"],"Cyan bluish gray":["Gris azulado cian"],"Very light gray":["Gris moi claro"],"Vivid cyan blue":["Azul ciano vivo"],"Pale cyan blue":["Azul ciano p\xe1lido"],"Vivid green cyan":["Ciano verde vivo"],"Light green cyan":["Ciano verde claro"],"Luminous vivid amber":["Ambar vivo luminoso"],"Luminous vivid orange":["Laranxa vivo luminoso"],"Vivid red":["Vermello vivo"],"Pale pink":["Rosa p\xe1lido"],"Inline image":["Imaxe integrada"],"Available block types":["Tipos de bloques dispo\xf1ibles"],"Transform To:":["Transformar a:"],"Remove Block":["Quitar bloque"],"Open publish panel":["Abrir o panel de publicar"],Dots:["Puntos"],"Wide Line":["L\xed\xf1a ancha"],Large:["Grande"],"Show download button":["Amosar o bot\xf3n de descarga"],"Download button settings":["Axustes do bot\xf3n de descarga"],"Link To":["Ligaz\xf3n a"],"Text link settings":["Axustes do texto da ligaz\xf3n"],pdf:["pdf"],document:["documento"],"Copy URL":["Copiar URL"],"Write file name\u2026":["Escribe o nome do arquivo\u2026"],"Edit file":["Editar arquivo"],File:["Ficheiro "],"A single column within a columns block.":["Unha columna simple dentro dun bloque de columnas."],Column:["Columna"],Outline:["Contorno"],Loop:["Bucle"],Autoplay:["Reproduci\xf3n autom\xe1tica"],"Playback Controls":["Controis de reproduci\xf3n"],"Close dialog":["Pechar di\xe1logo"],"Sorry, this file type is not permitted for security reasons.":["Sent\xedmoscho, este tipo de ficheiro non est\xe1 permitido por motivos de seguridade. "],"Disable tips":["Desactivar consellos"],"Got it":["Entendido"],"See next tip":["Ver seguinte consello"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Cando est\xe9s listo, env\xeda o teu traballo para revisi\xf3n, e un editor poder\xe1 aprobalo"],"Are you ready to submit for review?":["Est\xe1s listo para envialo a revisi\xf3n?"],"Replace image":["Substitu\xedr imaxe"],"Remove image":["Eliminar a imaxe"],"Error while uploading file %s to the media library.":["Erro ao subir o arquivo %s a biblioteca de medios."],"This file exceeds the maximum upload size for this site.":["Este ficheiro \xe9 m\xe1is grande que o tama\xf1o m\xe1ximo de carga para este sitio."],"View the autosave":["Ver o gardado autom\xe1tico"],"There is an autosave of this post that is more recent than the version below.":["Hai un gardado autom\xe1tico desta entrada que \xe9 m\xe1is recente ca versi\xf3n de abaixo."],Autosaving:["Gardando automaticamente"],"Enter URL here\u2026":["Introduce a URL aqu\xed..."],"Pin to toolbar":["Fixar na barra de tarefas"],"Unpin from toolbar":["Soltar da barra de tarefas"],"Insert a table \u2014 perfect for sharing charts and data.":["Inserte unha t\xe1boa -- perfecto para compartir gr\xe1ficos e datos.\t"],"Fixed width table cells":["Largo fixo de celas de t\xe1boa"],"Table Settings":["Configuraci\xf3n da t\xe1boa"],"Add text that respects your spacing and tabs, and also allows styling.":["Engadir texto que respecte o teu espazado e lapelas, e tam\xe9n permite estilos."],"Display a list of your most recent posts.":["Presentar unha lista das t\xfaas publicaci\xf3ns m\xe1is recentes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Engade un bloque que presenta contido tra\xeddo doutros sitios, como Twitter, Instagram ou Youtube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Engade un bloque que presenta o contido en m\xfaltiplas columnas, logo engade calquera dos bloques de contido que queiras."],"Error loading block: %s":["Produciuse un erro cargando o bloque: %s"],"Unknown error":["Erro desco\xf1ecido"],"Embed Handler":["Manipulador de incorporaci\xf3ns"],"term\x04Remove %s":["Retirar %s"],"Copy the permalink":["Copiar a ligaz\xf3n permanente"],"Permalink copied":["Ligaz\xf3n permanente copiada"],"Height in pixels":["Altura en p\xedxels"],"Spacer Settings":["Configuraci\xf3n do espazador"],Spacer:["Espazador"],"Toggle to show a large initial letter.":["Trocar para amosar unha gran letra inicial."],"Showing large initial letter.":["Amosanndo gran letra inicial."],"Name:":["Con nome"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Eliminar elemento"],"Color code: %s":["Cor do c\xf3digo: %s"],"Skip to the selected block":["Saltar o bloque seleccionado"],"Publish\u2026":["Publicar\u2026"],"Schedule\u2026":["Programado"],"Edit post permalink":["Editar a ligaz\xf3n permanente da publicaci\xf3n"],"Show Block Settings":["Amosar a configuraci\xf3n do bloque"],"Hide Block Settings":["Agochar a configuraci\xf3n do bloque"],"Block settings closed":["Configuraci\xf3n do bloque pechada"],"Close plugin":["Pechar complemento"],"Link settings":["Axustes da ligaz\xf3n"],Unlink:["Desfacer a ligaz\xf3n"],"Page break":["Salto de p\xe1xina"],pagination:["Paxinaci\xf3n"],"next page":["P\xe1xina seguinte"],"Image Size":["Tama\xf1o da imaxe"],Height:["Altura"],Width:["Anchura"],"Image Dimensions":["Dimensi\xf3ns da imaxe"],"Thumbnails are not cropped.":["Non se recortan as miniaturas."],"Thumbnails are cropped to align.":["Rec\xf3rtanse as miniaturas para ali\xf1alas."],"Media Library":["Biblioteca multimedia"],Advanced:["Avanzado"],"Add item":["Engadir \xedtem."],"Reset the template":["Reiniciar o modelo"],"Keep it as is":["Mantelo tal como \xe9"],"The content of your post doesn\u2019t match the template assigned to your post type.":["O contido da t\xfaa entrada non se axusta \xe1 plantilla asignada ao teu tipo de contido."],"Resetting the template may result in loss of content, do you want to continue?":["Restablecer a plantilla pode rematar coa perda do contido, Queres continuar?"],"Document Statistics":["Estad\xedsticas do documento"],"is now scheduled. It will go live on":["est\xe1 agora programada. Estar\xe1 dispo\xf1ible o"],Scheduled:["Programado"],"Scheduling\u2026":["Programando\u2026"],"Code editor selected":["Editor de c\xf3digo seleccionado"],"Visual editor selected":["Editor visual seleccionado"],Plugins:["Plugins"],"Custom Size":["Tama\xf1o personalizado"],"Layout Elements":["Elementos de dese\xf1o"],"term\x04%s removed":["%s borrada"],"term\x04%s added":["%s engadida"],"imperative verb\x04Preview":["Vista previa"],"Block deleted.":["Bloque eliminado."],"Block updated.":["Bloque actualizado."],"Block created.":["Bloque creado."],"Trashing failed":["Fallo ao enviar \xf3 lixo"],"Updating failed.":["Erro ao actualizar"],"Scheduling failed.":["Erro ao programar"],"Publishing failed.":["Erro ao publicar"],"View Post":["Ver entrada"],"You have unsaved changes. If you proceed, they will be lost.":["Tes cambios sen gardar. Se contin\xfaas, perderanse."],"Document Outline":["Esquema do documento"],Paragraphs:["P\xe1rrafos"],Headings:["Encabezados"],Words:["Palabras:"],"Content structure":["Estructura do contido"],Public:["P\xfablico"],"Protected with a password you choose. Only those with the password can view this post.":["Protexida coa contrasinal que ti elixas. So os que te\xf1an a contrasinal poden ver esta entrada."],"Password Protected":["Protexido con contrasinal"],"Only visible to site admins and editors.":["S\xf3 visible para administradores e editores do sitio."],Private:["Privado"],"Visible to everyone.":["Visible por todos"],"Post Visibility":["Visibilidade da entrada"],"Would you like to privately publish this post now?":["Gustar\xedache publicar agora en privado esta entrada?"],"Use a secure password":["Usa unha contrasinal segura"],"Create password":["Crear unha contrasinal"],"Move to Trash":["Mover \xe1 papeleira"],"Parent Term":["Termo superior"],"Parent Category":["Categor\xeda nai"],"Add new term":["Engadir novo termo"],"Add new category":["Engadir nova categor\xeda"],Term:["Termo"],Tag:["Etiqueta"],"Add New Term":["Engade un novo termo"],"Add New Tag":["Engadir unha etiqueta nova"],"Switch to Draft":["Cambiar a borrador"],"Are you sure you want to unpublish this post?":["Est\xe1s seguro de querer anular a publicaci\xf3n desta entrada?"],Immediately:["Inmediatamente"],"Save Draft":["Gardar como borrador"],Saving:["Gardando"],"Publish:":["Publicar:"],"Visibility:":["Visibilidade:"],"Are you ready to publish?":["Est\xe1s listo para publicar?"],"Copy Link":["Copiar ligaz\xf3n"],"What\u2019s next?":["E agora qu\xe9?"],"is now live.":["est\xe1 agora visible"],Published:["Publicado"],Schedule:["Programar"],Update:["Actualizar"],"Submit for Review":["Enviar a revisi\xf3n"],"Updating\u2026":["Actualizando..."],"Publishing\u2026":["Publicando..."],"Allow Pingbacks & Trackbacks":["Permitir pingbacks e trackbacks"],"Permalink:":["Ligaz\xf3n permanente:"],"Pending Review":["Pendente de revisi\xf3n"],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suxesti\xf3ns"],"Post Format":["Formato de entrada"],Chat:["Chat"],Status:["Estado "],Standard:["Est\xe1ndar\t"],Aside:["Minientrada"],"Set Featured Image":["Establecer imaxe destacada"],"Learn more about manual excerpts":["Aprende m\xe1is sobre extractos manuais"],"Write an excerpt (optional)":["Escribe un extracto (opcional)\t"],"Allow Comments":["Permitir comentarios"],"Template:":["Plantilla:"],"no parent":["sen superior"],"no title":["sen t\xedtulo"],Order:["Orde"],"No blocks found.":["Non se atoparon bloques."],"%d result found.":["%d resultado atopado.","%d resultados atopados."],Saved:["Gardado"],Embeds:["Incrustados"],Blocks:["Bloques"],"Search for a block":["Buscar un bloque"],"Add block":["Engadir bloque"],"Add %s":["Engadir %s"],"Copy Error":["Copiar erro"],"Copy Post Text":["Copiar texto da entrada"],"Attempt Recovery":["Tentar recuperaci\xf3n"],"The editor has encountered an unexpected error.":["O editor atopou un erro inesperado."],Undo:["Desfacer"],Redo:["Refacer"],"(Multiple H1 headings are not recommended)":["(Non se recomendan varios H1)"],"(Your theme may already use a H1 for the post title)":["(O teu tema poida que xa use un H1 para o t\xedtulo da entrada)"],"(Incorrect heading level)":["(Nivel de encabezado incorrecto)"],"(Empty heading)":["(Encabezado baleiro)\t"],"Block Styles":["Estilos de bloque"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Est\xe1s seguro de querer borrar este bloque compartido? Eliminarase permanentemente de todalas entradas e p\xe1xinas que o usen. "],"Convert to Regular Block":["Converter a bloque normal"],"More options":["M\xe1is opci\xf3ns"],"Edit visually":["Editar visualmente"],Duplicate:["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Os bloques non se poden mover cara abaixo porque xa est\xe1n no fondo"],"Blocks cannot be moved up as they are already at the top":["Os bloques non se poden mover arriba porque xa est\xe1n ao principio"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["O bloque %1$s est\xe1 ao principio do contenido e non se pode mover %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["O bloque %1$s est\xe1 ao final do contido e non se pode mover %2$s"],"Block %s is the only block, and cannot be moved":["O bloque %s \xe9 o \xfanico bloque, e non pode moverse"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Converter a bloques"],"Block: %s":["Bloque: %s"],"This block has encountered an error and cannot be previewed.":["Este bloque atopou un erro e non pode previsualizarse."],"No block selected.":["Ning\xfan bloque seleccionado."],"Transform into:":["Transformar a:"],Remove:["Eliminar"],"Find original":["Atopar orixinal"],"Copy All Content":["Copiar todo o contido"],"Copied!":["Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Agora hai axustes adicionais dispo\xf1ibles na barra de axustes do editor de bloques"],Visibility:["Visibilidade"],"Status & Visibility":["Estado e visibilidade"],"Page Attributes":["Atributos de p\xe1xina"],Block:["Bloque "],Document:["Documento"],"Featured Image":["Imaxe Destacada"],"Close settings":["Pechar axustes"],"Editor content":["Contido do editor"],Tools:["Ferramentas "],Editor:["Editor"],"Code Editor":["Editor de c\xf3digo"],"Visual Editor":["Editor visual"],"Editor top bar":["Barra superior do editor"],Settings:["Configuraci\xf3n"],Reset:["Restablecer"],"Dismiss this notice":["Ignorar este aviso"],"Item removed.":["Elemento eliminado."],"Item added.":["Elemento engadido."],"Drop files to upload":["Soltar ficheiros para enviar"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Houbo un erro desco\xf1ecido"],"No results.":["Non hai resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado atopado, utiliza as teclas arriba e abaixo para navegar.","%d resultados atopados, utiliza as teclas arriba e abaixo para navegar."],"(no title)":["(sen t\xedtulo)"],URL:["URL"],Submit:["Enviar"],Close:["Pechar"],"Insert link":["Engadir Ligaz\xf3n"],"Edit link":["Editar ligaz\xf3n"],Link:["Ligaz\xf3n"],Strikethrough:["Riscado"],Italic:["Cursiva"],Bold:["Negra"],"Remove link":["Eliminar a ligaz\xf3n"],"Number of items":["N\xfamero de elementos"],All:["Todos"],Category:["Categor\xeda"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["De antigas a novas"],"Newest to Oldest":["De novas a antigas"],"Order by":["Ordenar por "],Select:["Seleccionar"],"Select or Upload Media":["Elixe ou sube medios"],Video:["V\xeddeo"],"Edit video":["Editar v\xeddeo"],"Write\u2026":["Escribe\u2026"],poetry:["poes\xeda"],Verse:["Verso"],"New Column":["Nova columna"],"Delete Column":["Borrar columna"],"Add Column After":["Engadir columna despois"],"Add Column Before":["Engadir columna antes"],"Delete Row":["Borrar fila"],"Add Row After":["Engadir fila despois"],"Add Row Before":["Engadir fila antes"],"Edit table":["Editar t\xe1boa"],Table:["T\xe1boa "],"Write subheading\u2026":["Escribe o subt\xedtulo\u2026"],"Write shortcode here\u2026":["Escribe aqu\xed o shortcode\u2026"],Shortcode:["Shortcode"],divider:["separador"],"horizontal-line":["li\xf1a-horizontal"],Separator:["Separador"],Quote:["Cita"],"Write citation\u2026":["Escribe a referencia\u2026"],"Write quote\u2026":["Escribe a cita\u2026"],Pullquote:["Cita"],"Write preformatted text\u2026":["Escribe texto preformateado\u2026"],Preformatted:["Preformatado"],text:["texto"],Paragraph:["Par\xe1grafo"],"Font Size":["Tama\xf1o de letra"],"Drop Cap":["Capitalizar"],"Text Settings":["Axustes do texto"],"Read more":["Ler m\xe1is"],"Write list\u2026":["Escribe unha lista\u2026"],"numbered list":["lista numerada"],"ordered list":["Lista ordenada"],"bullet list":["lista de vi\xf1etas"],"Indent list item":["Engadir sangr\xeda ao elemento da lista"],"Outdent list item":["Reducir sangr\xeda ao elemento da lista"],"Convert to ordered list":["Converter a lista ordenada"],"Convert to unordered list":["Converter a lista desordenada"],List:["Lista"],"recent posts":["entradas recentes"],"No posts found.":["Non se atoparon artigos."],"Latest Posts":["\xdaltimas entradas"],"Display post date":["Mostrar data da entrada"],"Grid view":["Vista de cuadr\xedcula"],"List view":["Vista de listado"],photo:["foto\t"],"Image Settings":["Axustes de imaxe"],Image:["Imaxe"],Preview:["Previsualizar"],embed:["incrustar\t"],"Custom HTML":["HTML personalizado"],subtitle:["subt\xedtulo\t"],title:["t\xedtulo\t"],Heading:["Encabezado"],"Write heading\u2026":["Escribe o encabezado\u2026"],"Heading %d":["Encabezado %d"],Level:["Nivel"],"Heading Settings":["Axustes de encabezado"],photos:["fotos"],images:["imaxes"],"Remove Image":["Quitar imaxe"],None:["Ning\xfan"],"Media File":["Ficheiro multimedia"],"Attachment Page":["P\xe1xina de anexos"],"Crop Images":["Recortar imaxes"],"Gallery Settings":["Configuraci\xf3n de galer\xeda"],Gallery:["Galeria"],Classic:["Cl\xe1sico\t "],video:["v\xeddeo"],audio:["audio"],music:["m\xfasica"],image:["imaxe"],blog:["blog"],post:["entrada"],"Embedded content from %s":["Contido incrustado dende %s"],"Enter URL to embed here\u2026":["Engade aqu\xed a URL a incrustar\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Incrustando\u2026"],"Write title\u2026":["Escribe o t\xedtulo\u2026"],"Fixed Background":["Fondo fixo"],"Edit image":["Editar imaxe"],Columns:["Columnas"],Experiments:["Experimentos"],Code:["C\xf3digo"],"Write code\u2026":["Escribe c\xf3digo\u2026"],Categories:["Categor\xedas"],"Show Hierarchy":["Mostrar xerarqu\xeda"],"Show post counts":["Amosa o reconto das entradas"],"Categories Settings":["Axustes de categor\xedas"],"Add text\u2026":["Engade texto\u2026"],Button:["Bot\xf3n"],Apply:["Aplicar"],"Text Color":["Cor do texto"],"Background Color":["Cor de fondo"],"Block has been deleted or is unavailable.":["O bloque borrouse ou non est\xe1 dispo\xf1ible."],"Reusable Blocks":["Bloque reutilizable"],Cancel:["Cancelar"],Edit:["Editar"],"Edit audio":["Editar audio"],"Write caption\u2026":["Escribe a lenda\u2026\t"],"Use URL":["Usa a URL"],Audio:["Audio"],Upload:["Cargar"],"Additional CSS Class(es)":["Clase(s) CSS adicional/adicion\xe1is"],"HTML Anchor":["Anclaxe HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combinaci\xf3n de cor pode ser dif\xedcil de ler para a xente. Trata de usar unha cor de fondo m\xe1is claro e/ou unha cor de texto m\xe1is escuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combinaci\xf3n de cor pode ser dif\xedcil de ler para a xente. Trata de usar unha cor de fondo m\xe1is escuro e/ou unha cor de texto m\xe1is claro."],Clear:["Limpar"],"Custom color picker":["Selector de cor personalizada"],"Color: %s":["Cor: %s"],"Full Width":["Ancho completo"],"Wide Width":["Ancho amplo"],Widgets:["Widgets"],Formatting:["Formatos\t "],"Common Blocks":["Bloques com\xfans"],"Align Right":["Ali\xf1ado dereito"],"Align Center":["Ali\xf1amento centrado"],"Align Left":["Ali\xf1amento \xe1 esquerda"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimindo dende 1440. Este \xe9 o plugin en desenvolvemento do novo editor de bloques do n\xfacleo."],"Add title":["Engade o t\xedtulo"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["O modo de desenvolvemento de Gutenberg require crear unha serie de arquivos. Executa npm install para instalar as dependencias, npm run build para crear os arquivos ou npm run dev para crear e ver os arquivos. Lee o arquivo colaborando para m\xe1is informaci\xf3n. "],Author:["Autor"],Slug:["Slug"],Discussion:["Comentarios"],"Custom Fields":["Campos personalizados"],Excerpt:["Extracto"],Publish:["Publicar"],Metadata:["Metadatos"],Save:["Gardar"],Documentation:["Documentaci\xf3n"],"Select Category":["Seleccionar categor\xeda"],"(Untitled)":["(Sen t\xedtulo)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg necesita WordPress %s ou posterior para funcionar correctamente. Por favor, actualiza WordPress antes de activar Gutenberg."],"Gutenberg Team":["O equipo de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["hai %s"],"Block style name must be a string.":["Os nomes de tipo de bloque deben ser cadeas."]}},844,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":["\u05d1\u05dc\u05d5\u05e7 (\u05e0\u05d1\u05d7\u05e8)"],"Document (selected)":["\u05de\u05e1\u05de\u05da (\u05e0\u05d1\u05d7\u05e8)"],"%d word":[],"Top Toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u05d9\u05e6\u05d9\u05e8\u05ea \u05ea\u05d5\u05db\u05df \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d7\u05d5\u05d6\u05e8 \u05d1\u05e8\u05d7\u05d1\u05d9 \u05d4\u05d0\u05ea\u05e8. \u05e2\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05dc\u05d1\u05dc\u05d5\u05e7 \u05d9\u05d7\u05d5\u05dc\u05d5 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05d1\u05db\u05dc \u05de\u05e7\u05d5\u05dd \u05d1\u05d5 \u05d4\u05d5\u05d0 \u05de\u05d5\u05e4\u05d9\u05e2. "],"To edit the featured image, you need permission to upload media.":["\u05db\u05d3\u05d9 \u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05d4\u05ea\u05de\u05d5\u05e0\u05d4 \u05d4\u05e8\u05d0\u05e9\u05d9\u05ea , \u05e0\u05d3\u05e8\u05e9\u05ea \u05d4\u05e8\u05e9\u05d0\u05d4 \u05dc\u05d4\u05e2\u05dc\u05d0\u05ea \u05de\u05d3\u05d9\u05d4."],"To edit this block, you need permission to upload media.":["\u05db\u05d3\u05d9 \u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05d4\u05d1\u05dc\u05d5\u05e7 \u05d4\u05d6\u05d4, \u05e0\u05d3\u05e8\u05e9\u05ea \u05d4\u05e8\u05e9\u05d0\u05d4 \u05dc\u05d4\u05e2\u05dc\u05d0\u05ea \u05de\u05d3\u05d9\u05d4."],"(selected block)":["(\u05d4\u05d1\u05dc\u05d5\u05e7 \u05d4\u05e0\u05d1\u05d7\u05e8)"],"Block tools":[],Permalink:[],"This image has an empty alt attribute":["\u05d7\u05e1\u05e8 \u05de\u05d0\u05e4\u05d9\u05d9\u05df alt \u05dc\u05ea\u05de\u05d5\u05e0\u05d4 \u05d4\u05d6\u05d5"],"This image has an empty alt attribute; its file name is %s":["\u05d7\u05e1\u05e8 \u05de\u05d0\u05e4\u05d9\u05d9\u05df alt \u05dc\u05ea\u05de\u05d5\u05e0\u05d4 \u05d4\u05d6\u05d5; \u05e9\u05dd \u05d4\u05e7\u05d5\u05d1\u05e5 \u05d4\u05d5\u05d0 %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":[],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],Thumbnail:[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":["\u05dc\u05e2\u05e8\u05d5\u05dd \u05d1\u05ea\u05e6\u05d5\u05d2\u05d4 \u05dc\u05e0\u05d9\u05d9\u05d3\u05d9\u05dd"],Annotation:[],"Drag images, upload new ones or select files from your library.":["\u05d2\u05e8\u05d9\u05e8\u05ea \u05ea\u05de\u05d5\u05e0\u05d5\u05ea, \u05d4\u05e2\u05dc\u05d0\u05d4 \u05e9\u05dc \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea, \u05d0\u05d5 \u05d4\u05d5\u05e1\u05e4\u05d4 \u05de\u05e1\u05e4\u05e8\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4."],"blocks\x04Most Used":[],"imperative verb\x04Resolve":["\u05dc\u05ea\u05e7\u05df"],"font size name\x04Huge":[],"font size name\x04Large":[],"font size name\x04Medium":[],"font size name\x04Small":[],"font size name\x04Normal":[],"keyboard button\x04Enter":[],"button label\x04Import":[],"button label\x04Download":[],"button label\x04Embed":[],"block title\x04Embed":[],"block title\x04Classic":[],"block style\x04Large":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],media:[],"Double-check your settings before publishing.":["\u05de\u05d5\u05de\u05dc\u05e5 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05dc\u05e4\u05e0\u05d9 \u05d4\u05e4\u05e8\u05e1\u05d5\u05dd."],"Generating preview\u2026":["\u05d9\u05d5\u05e6\u05e8 \u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4\u2026"],"Edit or update the image":["\u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05d5 \u05dc\u05e2\u05d3\u05db\u05df \u05d0\u05ea \u05d4\u05ea\u05de\u05d5\u05e0\u05d4"],Media:[],"Navigate to the nearest toolbar.":["\u05e0\u05d9\u05d5\u05d5\u05d8 \u05d0\u05dc \u05e1\u05e8\u05d2\u05dc \u05d4\u05db\u05dc\u05d9\u05dd \u05d4\u05e7\u05e8\u05d5\u05d1 \u05d1\u05d9\u05d5\u05ea\u05e8."],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05d5\u05d9\u05d3\u05d0\u05d5 \u05de\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc \u05d4\u05d0\u05ea\u05e8, \u05d0\u05d5 \u05d4\u05e2\u05dc\u05d0\u05ea \u05d5\u05d9\u05d3\u05d0\u05d5 \u05d7\u05d3\u05e9."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u05dc\u05e6\u05d9\u05d8\u05d5\u05d8 \u05de\u05d9\u05dc\u05d9\u05dd \u05e9\u05dc \u05e9\u05d9\u05e8\u05d9\u05dd, \u05d4\u05d8\u05de\u05e2\u05ea \u05e9\u05d9\u05e8\u05d4, \u05d0\u05d5 \u05db\u05e9\u05d9\u05e9 \u05e6\u05d5\u05e8\u05da \u05d1\u05e8\u05d9\u05d5\u05d5\u05d7 \u05de\u05d9\u05d5\u05d7\u05d3."],"Add white space between blocks and customize its height.":["\u05dc\u05d4\u05d5\u05e1\u05e4\u05ea \u05e8\u05d5\u05d5\u05d7 \u05d1\u05d2\u05d5\u05d1\u05d4 \u05de\u05e9\u05ea\u05e0\u05d4 \u05d1\u05d9\u05df \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd."],"Insert additional custom elements with a WordPress shortcode.":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05d0\u05dc\u05de\u05e0\u05d8\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05e9\u05d5\u05e8\u05d8\u05e7\u05d5\u05d3\u05d9\u05dd \u05e9\u05dc \u05d5\u05d5\u05e8\u05d3\u05e4\u05e8\u05e1."],"Create a break between ideas or sections with a horizontal separator.":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05de\u05e4\u05e8\u05d9\u05d3 \u05d0\u05d5\u05e4\u05e7\u05d9 \u05db\u05d3\u05d9 \u05dc\u05d4\u05e4\u05e8\u05d9\u05d3 \u05d1\u05d9\u05df \u05e8\u05e2\u05d9\u05d5\u05e0\u05d5\u05ea \u05d0\u05d5 \u05d7\u05dc\u05e7\u05d9\u05dd \u05e9\u05d5\u05e0\u05d9\u05dd."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u05d3\u05d2\u05e9 \u05d5\u05d9\u05d6\u05d5\u05d0\u05dc\u05d9 \u05dc\u05e6\u05d9\u05d8\u05d5\u05d8\u05d9\u05dd. \u05f4\u05d4\u05d9\u05db\u05d5\u05dc\u05ea \u05dc\u05e6\u05d8\u05d8 \u05d4\u05d9\u05d0 \u05ea\u05d7\u05dc\u05d9\u05e3 \u05e9\u05d9\u05de\u05d5\u05e9\u05d9 \u05dc\u05e9\u05e0\u05d9\u05e0\u05d5\u05ea.\u05f4 \u2014 \u05d5\u05d9\u05dc\u05d9\u05d0\u05dd \u05e1\u05d5\u05de\u05e8\u05e1\u05d8 \u05de\u05d5\u05d4\u05dd"],"Give special visual emphasis to a quote from your text.":["\u05d4\u05d5\u05e1\u05d9\u05e4\u05d5 \u05d3\u05d2\u05e9 \u05d5\u05d9\u05d6\u05d5\u05d0\u05dc\u05d9 \u05dc\u05e6\u05d9\u05d8\u05d5\u05d8 \u05de\u05ea\u05d5\u05da \u05d4\u05d8\u05e7\u05e1\u05d8 \u05e9\u05dc\u05db\u05dd."],"Start with the building block of all narrative.":["\u05d4\u05d1\u05e1\u05d9\u05e1 \u05e9\u05dc \u05db\u05dc \u05ea\u05d5\u05db\u05df."],"Separate your content into a multi-page experience.":["\u05d4\u05e4\u05e8\u05d3\u05ea \u05d4\u05ea\u05d5\u05db\u05df \u05dc\u05de\u05e1\u05e4\u05e8 \u05e2\u05de\u05d5\u05d3\u05d9\u05dd."],"Set media and words side-by-side for a richer layout.":["\u05de\u05d9\u05e7\u05d5\u05dd \u05d8\u05e7\u05e1\u05d8 \u05d5\u05de\u05d3\u05d9\u05d1\u05d4 \u05e6\u05d3-\u05d0\u05dc-\u05e6\u05d3 \u05dc\u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e8\u05d4\u05d9\u05d1\u05d4."],"Media & Text Settings":[],"Create a bulleted or numbered list.":["\u05d9\u05e6\u05d9\u05e8\u05ea \u05e8\u05e9\u05d9\u05de\u05d4 \u05e2\u05dd \u05ea\u05d1\u05dc\u05d9\u05d8\u05d9\u05dd \u05d0\u05d5 \u05e8\u05e9\u05d9\u05de\u05d4 \u05de\u05de\u05d5\u05e1\u05e4\u05e8\u05ea."],"Display a list of your most recent comments.":["\u05d4\u05e6\u05d2\u05ea \u05e8\u05e9\u05d9\u05de\u05d4 \u05e9\u05dc \u05d4\u05ea\u05d2\u05d5\u05d1\u05d5\u05ea \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05ea."],"Insert an image to make a visual statement.":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05de\u05d5\u05e0\u05d4 \u05dc\u05d3\u05d2\u05e9 \u05d7\u05d6\u05d5\u05ea\u05d9."],"Add custom HTML code and preview it as you edit.":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05e7\u05d5\u05d3 HTML \u05e2\u05dd \u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4 \u05ea\u05d5\u05da \u05db\u05d3\u05d9 \u05e2\u05e8\u05d9\u05db\u05d4."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u05d0\u05e8\u05d2\u05d5\u05df \u05d5\u05d7\u05dc\u05d5\u05e7\u05ea \u05d4\u05ea\u05d5\u05db\u05df \u05dc\u05de\u05e7\u05d8\u05e2\u05d9\u05dd \u05db\u05d3\u05d9 \u05dc\u05e1\u05d9\u05d9\u05e2 \u05dc\u05de\u05d1\u05e7\u05e8\u05d9\u05dd (\u05d5\u05dc\u05de\u05e0\u05d5\u05e2\u05d9 \u05d4\u05d7\u05d9\u05e4\u05d5\u05e9) \u05dc\u05d4\u05d1\u05d9\u05df \u05d0\u05ea \u05de\u05d1\u05e0\u05d4 \u05d4\u05ea\u05d5\u05db\u05df \u05e9\u05dc\u05da."],"Display multiple images in a rich gallery.":["\u05d4\u05e6\u05d2\u05ea \u05de\u05e1\u05e4\u05e8 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d1\u05d2\u05dc\u05e8\u05d9\u05d4 \u05e2\u05e9\u05d9\u05e8\u05d4."],"Add a link to a downloadable file.":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05e7\u05d9\u05e9\u05d5\u05e8 \u05dc\u05e7\u05d5\u05d1\u05e5 \u05d4\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d5\u05e8\u05d3\u05d4."],"Embed videos, images, tweets, audio, and other content from external sources.":["\u05d4\u05d8\u05de\u05e2\u05ea \u05e7\u05d8\u05e2\u05d9 \u05d5\u05d9\u05d3\u05d0\u05d5, \u05ea\u05de\u05d5\u05e0\u05d5\u05ea, \u05e6\u05d9\u05d5\u05e6\u05d9\u05dd, \u05e9\u05de\u05e2, \u05d5\u05ea\u05d5\u05db\u05df \u05d0\u05d7\u05e8 \u05de\u05de\u05e7\u05d5\u05e8\u05d5\u05ea \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9\u05d9\u05dd."],"Resize for smaller devices":["\u05d2\u05d5\u05d3\u05dc \u05de\u05e9\u05ea\u05e0\u05d4 \u05dc\u05de\u05db\u05e9\u05d9\u05e8\u05d9\u05dd \u05e7\u05d8\u05e0\u05d9\u05dd"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u05d9\u05ea\u05db\u05df \u05e9\u05d4\u05d8\u05de\u05e2\u05d4 \u05d6\u05d5 \u05dc\u05d0 \u05ea\u05e9\u05de\u05d5\u05e8 \u05e2\u05dc \u05d9\u05d7\u05e1 \u05d4\u05d2\u05d5\u05d1\u05d4-\u05e8\u05d5\u05d7\u05d1 \u05e9\u05dc\u05d4 \u05d1\u05e2\u05ea \u05e9\u05d9\u05e0\u05d5\u05d9 \u05d2\u05d5\u05d3\u05dc \u05d4\u05d3\u05e4\u05d3\u05e4\u05df."],"This embed will preserve its aspect ratio when the browser is resized.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05d6\u05d5 \u05ea\u05e9\u05de\u05d5\u05e8 \u05e2\u05dc \u05d9\u05d7\u05e1 \u05d4\u05d2\u05d5\u05d1\u05d4-\u05e8\u05d5\u05d7\u05d1 \u05e9\u05dc\u05d4 \u05d1\u05e2\u05ea \u05e9\u05d9\u05e0\u05d5\u05d9 \u05d2\u05d5\u05d3\u05dc \u05d4\u05d3\u05e4\u05d3\u05e4\u05df."],"Embed an Animoto video.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05d5\u05d9\u05d3\u05d0\u05d5 \u05de-Animoto."],"Embed a Vimeo video.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05d5\u05d9\u05d3\u05d0\u05d5 \u05de-Vimeo."],"Embed Flickr content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Flicker."],"Embed Spotify content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Spotify."],"Embed SoundCloud content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-SoundCloud."],"Embed a WordPress post.":[],"Embed an Instagram post.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05e4\u05d5\u05e1\u05d8 \u05de-Instagram."],"Embed a Facebook post.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Facebook."],"Embed a WordPress.tv video.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05d5\u05d9\u05d3\u05d0\u05d5 \u05de-WordPress.tv"],"Embed a VideoPress video.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05d5\u05d9\u05d3\u05d0\u05d5 \u05de-VideoPress"],"Embed a Tumblr post.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05e4\u05d5\u05e1\u05d8 \u05de\u05d8\u05d0\u05de\u05d1\u05dc\u05e8."],"Embed a TED video.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05d5\u05d9\u05d3\u05d0\u05d5 \u05de-TED."],"Embed Speaker Deck content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Speaker Deck."],"Embed a YouTube video.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05d5\u05d9\u05d3\u05d0\u05d5 \u05de-Youtube."],"Embed SmugMug content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-SmugMug."],"Embed Slideshare content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Slideshare."],"Embed Scribd content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Scribd."],"Embed Screencast content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Screencast."],"Embed ReverbNation content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-ReverbNation."],"Embed a Reddit thread.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05d3\u05d9\u05d5\u05df \u05de-Reddit."],"Embed Polldaddy content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Polldaddy."],"Embed Mixcloud content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Mixcloud."],"Embed a tweet.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05e6\u05d9\u05d5\u05e5 \u05de\u05d8\u05d5\u05d5\u05d9\u05d8\u05e8."],"Embed Meetup.com content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Meetup.com."],"Embed Kickstarter content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Kickstarter."],"Embed Issuu content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Issuu."],"Embed Imgur content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Imgur."],"Embed Hulu content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Hulu."],"Embed a Dailymotion video.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05d5\u05d9\u05d3\u05d0\u05d5 \u05de-Dailymotion"],"Embed CollegeHumor content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-CollegeHumor."],"Embed Cloudup content.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05de-Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05de\u05d5\u05e0\u05d4 \u05d0\u05d5 \u05d5\u05d9\u05d3\u05d0\u05d5 \u05d5\u05de\u05e2\u05dc\u05d9\u05d4\u05dd \u05d8\u05e7\u05e1\u05d8 \u2014 \u05de\u05e6\u05d5\u05d9\u05df \u05e2\u05d1\u05d5\u05e8 \u05db\u05d5\u05ea\u05e8\u05d5\u05ea \u05e8\u05d0\u05e9\u05d9\u05d5\u05ea."],"Display code snippets that respect your spacing and tabs.":["\u05d4\u05e6\u05d2\u05ea \u05de\u05e7\u05d8\u05e2\u05d9 \u05e7\u05d5\u05d3 \u05ea\u05d5\u05da \u05db\u05d3\u05d9 \u05e9\u05de\u05d9\u05e8\u05d4 \u05e2\u05dc \u05d4\u05e8\u05d9\u05d5\u05d5\u05d7 \u05d4\u05de\u05e7\u05d5\u05e8\u05d9."],"Use the classic WordPress editor.":["\u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e2\u05d5\u05e8\u05da \u05d4\u05e7\u05dc\u05d0\u05e1\u05d9 \u05e9\u05dc WordPress."],"Display a list of all categories.":["\u05d4\u05e6\u05d2\u05d4 \u05e9\u05dc \u05e8\u05e9\u05d9\u05de\u05ea \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea."],"Embed a simple audio player.":["\u05d4\u05d8\u05de\u05e2\u05d4 \u05e9\u05dc \u05e0\u05d2\u05df \u05d0\u05d5\u05d3\u05d9\u05d5 \u05e4\u05e9\u05d5\u05d8."],"noun\x04View":[],"editor button\x04Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":["\u05dc\u05d4\u05d3\u05d1\u05d9\u05e7 \u05d0\u05d5 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05db\u05ea\u05d5\u05d1\u05ea URL"],"Insert from URL":[],"Block Navigator":[],Styles:[],"Advanced Panels":[],"Document Panels":[],General:[],"Open the block navigation menu.":["\u05dc\u05e4\u05ea\u05d5\u05d7 \u05d0\u05ea \u05ea\u05e4\u05e8\u05d9\u05d8 \u05d4\u05e0\u05d9\u05d5\u05d5\u05d8 \u05e9\u05dc \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd."],"Work without distraction":["\u05e2\u05d1\u05d5\u05d3\u05d4 \u05dc\u05dc\u05d0 \u05d4\u05e1\u05d7\u05d5\u05ea \u05d3\u05e2\u05ea"],"Focus on one block at a time":["\u05d4\u05ea\u05de\u05e7\u05d3\u05d5\u05ea \u05d1\u05d1\u05dc\u05d5\u05e7 \u05d0\u05d7\u05d3 \u05d1\u05db\u05dc \u05e4\u05e2\u05dd"],"Access all block and document tools in a single place":["\u05d2\u05d9\u05e9\u05d4 \u05dc\u05db\u05dc \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05d5\u05d4\u05de\u05e1\u05de\u05da \u05d1\u05de\u05e7\u05d5\u05dd \u05d0\u05d7\u05d3."],Options:[],"(opens in a new tab)":[],Minutes:[],Hours:[],Time:[],Year:[],Day:[],December:[],November:[],October:[],September:[],August:[],July:[],June:[],May:[],April:[],March:[],February:[],January:[],Month:[],Date:[],"Go to the first (home) or last (end) day of a week.":["\u05de\u05e2\u05d1\u05e8 \u05dc\u05d9\u05d5\u05dd \u05d4\u05e8\u05d0\u05e9\u05d5\u05df (home) \u05d0\u05d5 \u05d4\u05d0\u05d7\u05e8\u05d5\u05df (end) \u05d1\u05e9\u05d1\u05d5\u05e2."],"Home/End":[],"Home and End":["\u202bHome \u05d5-End"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u05de\u05e2\u05d1\u05e8 \u05d0\u05d7\u05d5\u05e8\u05d4 (PgUp) \u05d0\u05d5 \u05e7\u05d3\u05d9\u05de\u05d4 (PgDn) \u05d1\u05d7\u05d5\u05d3\u05e9 \u05d0\u05d7\u05d3."],"PgUp/PgDn":[],"Page Up and Page Down":["\u202bPage Up \u05d5-Page Down"],"Move backward (up) or forward (down) by one week.":["\u05d4\u05d6\u05d6\u05d4 \u05d0\u05d7\u05d5\u05e8\u05d4 (\u05dc\u05de\u05e2\u05dc\u05d4) \u05d0\u05d5 \u05e7\u05d3\u05d9\u05de\u05d4 (\u05dc\u05de\u05d8\u05d4) \u05d1\u05e9\u05d1\u05d5\u05e2 \u05d0\u05d7\u05d3."],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":["\u05de\u05e2\u05d1\u05e8 \u05d9\u05d5\u05dd \u05d0\u05d7\u05d3 \u05d0\u05d7\u05d5\u05e8\u05d4 (\u05e9\u05de\u05d0\u05dc\u05d4) \u05d0\u05d5 \u05e7\u05d3\u05d9\u05de\u05d4 (\u05d9\u05de\u05d9\u05e0\u05d4)."],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":["\u05d0\u05e4\u05e9\u05e8 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05e2\u05dc \u05d4\u05d7\u05e6\u05d9\u05dd \u05d9\u05de\u05d9\u05e0\u05d4 \u05d0\u05d5 \u05e9\u05de\u05d0\u05dc\u05d4 \u05db\u05d3\u05d9 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05d7\u05d5\u05d3\u05e9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd \u05d1\u05e2\u05d1\u05e8 \u05d0\u05d5 \u05d1\u05e2\u05ea\u05d9\u05d3."],"Click to Select":[],"Calendar Help":["\u05e2\u05d6\u05e8\u05d4 \u05e2\u05d1\u05d5\u05e8 \u05dc\u05d5\u05d7 \u05d4\u05e9\u05e0\u05d4"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":["\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d6\u05d9\u05d6 \u05d0\u05ea \u05d4\u05d7\u05e5 \u05e9\u05de\u05d0\u05dc\u05d4 \u05d0\u05d5 \u05d9\u05de\u05d9\u05e0\u05d4 \u05db\u05d3\u05d9 \u05dc\u05e9\u05e0\u05d5\u05ea \u05d2\u05d5\u05d5\u05df."],"Hue value in degrees, from 0 to 359.":["\u05e2\u05e8\u05da \u05d4\u05d2\u05d5\u05d5\u05df (Hue) \u05d1\u05de\u05e2\u05dc\u05d5\u05ea, \u05d1\u05d9\u05df 0 \u05dc-359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["\u05e2\u05e8\u05da \u05d0\u05dc\u05e4\u05d0, \u05de-0 (\u05e9\u05e7\u05d5\u05e3) \u05dc-1 (\u05d0\u05d8\u05d5\u05dd \u05dc\u05d7\u05dc\u05d5\u05d8\u05d9\u05df)."],Stripes:[],"Your site doesn\u2019t include support for this block.":["\u05d4\u05d0\u05ea\u05e8 \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05d5 \u05db\u05d5\u05dc\u05dc \u05ea\u05de\u05d9\u05db\u05d4 \u05d1\u05d1\u05dc\u05d5\u05e7 \u05d6\u05d4."],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\u05d4\u05d0\u05ea\u05e8 \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05d5 \u05db\u05d5\u05dc\u05dc \u05ea\u05de\u05d9\u05db\u05d4 \u05d1\u05d1\u05dc\u05d5\u05e7 \"%s\". \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e9\u05d0\u05d9\u05e8 \u05d0\u05ea \u05d4\u05d1\u05dc\u05d5\u05e7 \u05db\u05de\u05d5 \u05e9\u05d4\u05d5\u05d0 \u05d0\u05d5 \u05dc\u05d4\u05e1\u05d9\u05e8\u05d5 \u05dc\u05d7\u05dc\u05d5\u05d8\u05d9\u05df."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\u05d4\u05d0\u05ea\u05e8 \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05d5 \u05db\u05d5\u05dc\u05dc \u05ea\u05d5\u05de\u05da \u05d1\u05d1\u05dc\u05d5\u05e7 \"%s\". \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e9\u05d0\u05d9\u05e8 \u05d0\u05ea \u05d4\u05d1\u05dc\u05d5\u05e7 \u05db\u05de\u05d5\u05ea \u05e9\u05d4\u05d5\u05d0, \u05dc\u05d4\u05de\u05d9\u05e8 \u05d0\u05ea \u05ea\u05d5\u05db\u05e0\u05d5 \u05dc\u05d1\u05dc\u05d5\u05e7 HTML \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea, \u05d0\u05d5 \u05dc\u05d4\u05e1\u05d9\u05e8\u05d5 \u05dc\u05d7\u05dc\u05d5\u05d8\u05d9\u05df."],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:[],"Border Settings":[],"Edit media":[],Medium:[],"Paste URL or type to search":[],Terms:[],"Your work will be published at the specified date and time.":["\u05d4\u05e2\u05d1\u05d5\u05d3\u05d4 \u05e9\u05dc\u05da \u05ea\u05e4\u05d5\u05e8\u05e1\u05dd \u05d1\u05ea\u05d0\u05e8\u05d9\u05da \u05d5\u05d1\u05e9\u05e2\u05d4 \u05e9\u05e6\u05d5\u05d9\u05e0\u05d5."],"Are you ready to schedule?":["\u05d4\u05d0\u05dd \u05dc\u05e7\u05d1\u05d5\u05e2 \u05de\u05d5\u05e2\u05d3 \u05dc\u05e4\u05e8\u05e1\u05d5\u05dd?"],"Always show pre-publish checks.":["\u05dc\u05d4\u05e6\u05d9\u05d2 \u05ea\u05de\u05d9\u05d3 \u05d0\u05ea \u05d4\u05d1\u05d3\u05d9\u05e7\u05d5\u05ea \u05dc\u05e4\u05e0\u05d9 \u05d4\u05e4\u05e8\u05e1\u05d5\u05dd."],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u05de\u05e9\u05ea\u05de\u05e9 \u05d0\u05d7\u05e8 \u05e2\u05d5\u05e8\u05da \u05db\u05e8\u05d2\u05e2 \u05d0\u05ea \u05d4\u05e4\u05d5\u05e1\u05d8 \u05d4\u05d6\u05d4, \u05de\u05d4 \u05e9\u05d0\u05d5\u05de\u05e8 \u05e9\u05d0\u05d9\u05df \u05d1\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea\u05da \u05dc\u05d1\u05e6\u05e2 \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd, \u05d0\u05dc\u05d0 \u05d0\u05dd \u05ea\u05d1\u05e6\u05e2/\u05d9 \u05d4\u05e9\u05ea\u05dc\u05d8\u05d5\u05ea \u05e2\u05dc \u05d4\u05e4\u05d5\u05e1\u05d8."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["\u05d4\u05de\u05e9\u05ea\u05de\u05e9 %s \u05e2\u05d5\u05e8\u05da \u05db\u05e8\u05d2\u05e2 \u05d0\u05ea \u05d4\u05e4\u05d5\u05e1\u05d8 \u05d4\u05d6\u05d4, \u05de\u05d4 \u05e9\u05d0\u05d5\u05de\u05e8 \u05e9\u05d0\u05d9\u05df \u05d1\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea\u05da \u05dc\u05d1\u05e6\u05e2 \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd, \u05d0\u05dc\u05d0 \u05d0\u05dd \u05ea\u05d1\u05e6\u05e2/\u05d9 \u05d4\u05e9\u05ea\u05dc\u05d8\u05d5\u05ea \u05e2\u05dc \u05d4\u05e4\u05d5\u05e1\u05d8."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u05d4\u05e9\u05dc\u05d9\u05d8\u05d4 \u05d1\u05e2\u05e8\u05d9\u05db\u05ea \u05e4\u05d5\u05e1\u05d8 \u05d6\u05d4 \u05e2\u05d1\u05e8\u05d4 \u05db\u05e2\u05ea \u05dc\u05de\u05e9\u05ea\u05de\u05e9 \u05d0\u05d7\u05e8. \u05d0\u05dc \u05d3\u05d0\u05d2\u05d4, \u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05e9\u05dc\u05da \u05e2\u05d3 \u05dc\u05e8\u05d2\u05e2 \u05d6\u05d4 \u05e0\u05e9\u05de\u05e8\u05d5."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u05d4\u05e9\u05dc\u05d9\u05d8\u05d4 \u05d1\u05e2\u05e8\u05d9\u05db\u05ea \u05e4\u05d5\u05e1\u05d8 \u05d6\u05d4 \u05e2\u05d1\u05e8\u05d4 \u05db\u05e2\u05ea \u05dc-%s. \u05d0\u05dc \u05d3\u05d0\u05d2\u05d4, \u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05e9\u05dc\u05da \u05e2\u05d3 \u05dc\u05e8\u05d2\u05e2 \u05d6\u05d4 \u05e0\u05e9\u05de\u05e8\u05d5."],Avatar:[],"This post is already being edited.":["\u05e4\u05d5\u05e1\u05d8 \u05d6\u05d4 \u05db\u05d1\u05e8 \u05e0\u05de\u05e6\u05d0 \u05d1\u05de\u05e6\u05d1 \u05e2\u05e8\u05d9\u05db\u05d4."],"Someone else has taken over this post.":["\u05de\u05d9\u05e9\u05d4\u05d5 \u05d0\u05d7\u05e8 \u05d4\u05e9\u05ea\u05dc\u05d8 \u05e2\u05dc \u05d4\u05e4\u05d5\u05e1\u05d8 \u05d4\u05d6\u05d4."],"This block contains unexpected or invalid content.":["\u05d1\u05dc\u05d5\u05e7 \u05d6\u05d4 \u05de\u05db\u05d9\u05dc \u05ea\u05d5\u05db\u05df \u05dc\u05d0 \u05e6\u05e4\u05d5\u05d9 \u05d0\u05d5 \u05dc\u05d0 \u05d7\u05d5\u05e7\u05d9."],"Resolve Block":["\u05dc\u05ea\u05e7\u05df \u05d1\u05dc\u05d5\u05e7"],"Convert to HTML":[],"This block can only be used once.":["\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d1\u05dc\u05d5\u05e7 \u05d6\u05d4 \u05e8\u05e7 \u05e4\u05e2\u05dd \u05d0\u05d7\u05ea."],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],HTML:[],"Write HTML\u2026":[],"Media Settings":[],"Overlay Color":[],Overlay:[],"Insert Media":[],"Reusable block imported successfully!":["\u05d1\u05dc\u05d5\u05e7 \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d7\u05d5\u05d6\u05e8 \u05d9\u05d5\u05d1\u05d0 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4!"],"Invalid Reusable Block JSON file":["\u05e7\u05d5\u05d1\u05e5 JSON \u05e9\u05dc \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d7\u05d5\u05d6\u05e8 \u05e4\u05d2\u05d5\u05dd"],"Invalid JSON file":["\u05e7\u05d5\u05d1\u05e5 JSON \u05dc\u05d0 \u05ea\u05e7\u05e0\u05d9"],"Import from JSON":["\u05d9\u05d1\u05d5\u05d0 \u05de\u05ea\u05d5\u05da JSON"],Backtick:["\u05d2\u05e8\u05e9 (Backtick)"],Period:["\u05e0\u05e7\u05d5\u05d3\u05d4"],Comma:["\u05e4\u05e1\u05d9\u05e7"],"Change type of %d block":["\u05e9\u05d9\u05e0\u05d5\u05d9 \u05d4\u05e1\u05d5\u05d2 \u05e9\u05dc \u05d1\u05dc\u05d5\u05e7 \u05d0\u05d7\u05d3","\u05e9\u05d9\u05e0\u05d5\u05d9 \u05d4\u05e1\u05d5\u05d2 \u05e9\u05dc %d \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd"],Current:["\u05e0\u05d5\u05db\u05d7\u05d9"],"After Conversion":["\u05dc\u05d0\u05d7\u05e8 \u05d4\u05de\u05e8\u05d4"],"Change alignment":[],"Change text alignment":[],"%d block":["\u05d1\u05dc\u05d5\u05e7 \u05d0\u05d7\u05d3","%d \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd"],Escape:["ESC"],"Forward-slash":["\u05dc\u05d5\u05db\u05e1\u05df"],"No archives to show.":["\u05d0\u05d9\u05df \u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05dc\u05ea\u05e6\u05d5\u05d2\u05d4."],"This file is empty.":["\u05d4\u05e7\u05d5\u05d1\u05e5 \u05d4\u05d6\u05d4 \u05e8\u05d9\u05e7."],"Sorry, this file type is not supported here.":["\u05de\u05e6\u05d8\u05e2\u05e8\u05d9\u05dd, \u05e1\u05d5\u05d2 \u05d4\u05e7\u05d5\u05d1\u05e5 \u05d4\u05d6\u05d4 \u05d0\u05d9\u05e0\u05d5 \u05e0\u05ea\u05de\u05da \u05db\u05d0\u05df."],"Manage All Reusable Blocks":["\u05e0\u05d9\u05d4\u05d5\u05dc \u05db\u05dc \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d7\u05d5\u05d6\u05e8"],Title:["\u05db\u05d5\u05ea\u05e8\u05ea"],"Fullscreen Mode":["\u05de\u05e6\u05d1 \u05de\u05e1\u05da \u05de\u05dc\u05d0"],"Beautiful landscape":["\u05e0\u05d5\u05e3 \u05d9\u05e4\u05d4"],"Close panel":["\u05e1\u05d2\u05d5\u05e8 \u05e4\u05d0\u05e0\u05dc"],"Convert to Classic Block":["\u05d4\u05de\u05e8\u05d4 \u05dc\u05d1\u05dc\u05d5\u05e7 \u05e7\u05dc\u05d0\u05e1\u05d9"],"Remove Poster Image":["\u05d4\u05e1\u05e8 \u05ea\u05de\u05d5\u05e0\u05ea \u05e4\u05d5\u05e1\u05d8\u05e8"],"Select Poster Image":["\u05d1\u05d7\u05d9\u05e8\u05ea \u05ea\u05de\u05d5\u05e0\u05ea \u05e4\u05d5\u05e1\u05d8\u05e8"],"Poster Image":["\u05ea\u05de\u05d5\u05e0\u05ea \u05e4\u05d5\u05e1\u05d8\u05e8"],"This block is deprecated. Please use the Columns block instead.":["\u05d1\u05dc\u05d5\u05e7 \u05d6\u05d4 \u05d4\u05d5\u05e6\u05d0 \u05de\u05e9\u05d9\u05de\u05d5\u05e9. \u05d9\u05e9 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d1\u05dc\u05d5\u05e7 \u05e2\u05de\u05d5\u05d3\u05d5\u05ea \u05d1\u05de\u05e7\u05d5\u05dd."],"Text Columns (deprecated)":["\u05e2\u05de\u05d5\u05d3\u05d5\u05ea \u05d8\u05e7\u05e1\u05d8 (\u05d4\u05d5\u05e6\u05d0 \u05de\u05e9\u05d9\u05de\u05d5\u05e9)"],"Row Count":["\u05de\u05e1\u05e4\u05e8 \u05e9\u05d5\u05e8\u05d5\u05ea"],"Column Count":["\u05de\u05e1\u05e4\u05e8 \u05e2\u05de\u05d5\u05d3\u05d5\u05ea"],"This block is deprecated. Please use the Paragraph block instead.":["\u05d1\u05dc\u05d5\u05e7 \u05d6\u05d4 \u05d4\u05d5\u05e6\u05d0 \u05de\u05e9\u05d9\u05de\u05d5\u05e9. \u05d9\u05e9 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d1\u05dc\u05d5\u05e7 \u05e4\u05d9\u05e1\u05e7\u05d4 \u05d1\u05de\u05e7\u05d5\u05dd."],"Subheading (deprecated)":["\u05db\u05d5\u05ea\u05e8\u05ea \u05de\u05e9\u05e0\u05d4 (\u05d4\u05d5\u05e6\u05d0 \u05de\u05e9\u05d9\u05de\u05d5\u05e9)"],blockquote:["\u05e6\u05d9\u05d8\u05d5\u05d8"],"Change the block type after adding a new paragraph.":["\u05dc\u05e9\u05d9\u05e0\u05d5\u05d9 \u05e1\u05d5\u05d2 \u05d4\u05d1\u05dc\u05d5\u05e7 \u05dc\u05d0\u05d7\u05e8 \u05d4\u05d5\u05e1\u05e4\u05ea \u05e4\u05e1\u05e7\u05d4 \u05d7\u05d3\u05e9\u05d4."],"Spotlight Mode":["\u05de\u05e6\u05d1 \u05d6\u05e8\u05e7\u05d5\u05e8"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u05ea\u05d2\u05d9\u05d5\u05ea \u05de\u05e1\u05d9\u05d9\u05e2\u05d5\u05ea \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d5\u05dc\u05de\u05e0\u05d5\u05e2\u05d9 \u05d7\u05d9\u05e4\u05d5\u05e9 \u05dc\u05e0\u05d5\u05d5\u05d8 \u05d1\u05d0\u05ea\u05e8 \u05e9\u05dc\u05da \u05d5\u05dc\u05de\u05e6\u05d5\u05d0 \u05d0\u05ea \u05d4\u05ea\u05d5\u05db\u05df \u05e9\u05dc\u05da. \u05de\u05d5\u05de\u05dc\u05e5 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05db\u05de\u05d4 \u05de\u05d9\u05dc\u05d5\u05ea \u05de\u05e4\u05ea\u05d7 \u05db\u05d3\u05d9 \u05dc\u05ea\u05d0\u05e8 \u05d0\u05ea \u05ea\u05d5\u05db\u05df \u05d4\u05e4\u05d5\u05e1\u05d8 \u05e9\u05dc\u05da."],"Add tags":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05d2\u05d9\u05d5\u05ea"],"Apply the \"%1$s\" format.":["\u05d4\u05d7\u05dc \u05e4\u05d5\u05e8\u05de\u05d8 \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u05d4\u05ea\u05d1\u05e0\u05d9\u05ea \u05e9\u05dc\u05da \u05e2\u05d5\u05e9\u05d4 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05f4\u05e1\u05d5\u05d2\u05d9 \u05ea\u05d5\u05db\u05df\u05f4 \u05db\u05d3\u05d9 \u05dc\u05d4\u05d3\u05d2\u05d9\u05e9 \u05e1\u05d5\u05d2\u05d9\u05dd \u05e9\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc \u05ea\u05d5\u05db\u05df, \u05db\u05de\u05d5 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d0\u05d5 \u05e7\u05d1\u05e6\u05d9 \u05d5\u05d9\u05d3\u05d0\u05d5. \u05e0\u05d9\u05ea\u05df \u05dc\u05d1\u05d7\u05d5\u05e8 \u05e1\u05d5\u05d2 \u05ea\u05d5\u05db\u05df \u05db\u05d3\u05d9 \u05dc\u05d4\u05e6\u05d9\u05d2 \u05d0\u05ea \u05d4\u05e2\u05d9\u05e6\u05d5\u05d1 \u05d4\u05de\u05d9\u05d5\u05d7\u05d3."],"Use a post format":["\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e1\u05d5\u05d2 \u05ea\u05d5\u05db\u05df"],"Insert After":["\u05d4\u05d5\u05e1\u05e4\u05d4 \u05d0\u05d7\u05e8\u05d9"],"Insert Before":["\u05d4\u05d5\u05e1\u05e4\u05d4 \u05dc\u05e4\u05e0\u05d9"],"Move %1$d block from position %2$d down by one place":["\u202b\u05d4\u05e2\u05d1\u05e8 \u05d1\u05dc\u05d5\u05e7 \u05d0\u05d7\u05d3 \u05de\u05d4\u05de\u05d9\u05e7\u05d5\u05dd %2 \u05de\u05d3\u05e8\u05d2\u05d4 \u05d0\u05d7\u05ea \u05dc\u05de\u05d8\u05d4","\u202b\u202b\u05d4\u05e2\u05d1\u05e8 %1$d \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05de\u05d4\u05de\u05d9\u05e7\u05d5\u05dd %2$d \u05de\u05d3\u05e8\u05d2\u05d4 \u05d0\u05d7\u05ea \u05dc\u05de\u05d8\u05d4"],"Move %1$d block from position %2$d up by one place":["\u05d4\u05e2\u05d1\u05e8 \u05d1\u05dc\u05d5\u05e7 \u05d0\u05d7\u05d3 \u05de\u05d4\u05de\u05d9\u05e7\u05d5\u05dd %2$d \u05de\u05d3\u05e8\u05d2\u05d4 \u05d0\u05d7\u05ea \u05dc\u05de\u05e2\u05dc\u05d4","\u202b\u05d4\u05e2\u05d1\u05e8 %1$d \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05de\u05d4\u05de\u05d9\u05e7\u05d5\u05dd %2$d \u05de\u05d3\u05e8\u05d2\u05d4 \u05d0\u05d7\u05ea \u05dc\u05de\u05e2\u05dc\u05d4"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["\u05e1\u05e8\u05d8"],"Insert a new block before the selected block(s).":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05d1\u05dc\u05d5\u05e7 \u05d7\u05d3\u05e9 \u05dc\u05e4\u05e0\u05d9 \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05d4\u05e0\u05d1\u05d7\u05e8\u05d9\u05dd."],"Remove the selected block(s).":["\u05d4\u05e1\u05e8 \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05de\u05e1\u05d5\u05de\u05e0\u05d9\u05dd."],"Duplicate the selected block(s).":["\u05e9\u05d9\u05db\u05e4\u05d5\u05dc \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05d4\u05de\u05e1\u05d5\u05de\u05e0\u05d9\u05dd."],"Block shortcuts":["\u05e7\u05d9\u05e6\u05d5\u05e8\u05d9 \u05d3\u05e8\u05da \u05e2\u05d1\u05d5\u05e8 \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd"],"Clear selection.":["\u05e0\u05d9\u05e7\u05d5\u05d9 \u05d1\u05d7\u05d9\u05e8\u05d4."],"Select all text when typing. Press again to select all blocks.":["\u05d1\u05d7\u05d9\u05e8\u05ea \u05db\u05dc \u05d4\u05d8\u05e7\u05e1\u05d8 \u05d1\u05d6\u05de\u05df \u05d4\u05d4\u05e7\u05dc\u05d3\u05d4. \u05dc\u05d7\u05e6\u05d5 \u05e9\u05d5\u05d1 \u05db\u05d3\u05d9 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05d0\u05ea \u05db\u05dc \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd."],"Selection shortcuts":["\u05e7\u05d9\u05e6\u05d5\u05e8 \u05d3\u05e8\u05da \u05e2\u05d1\u05d5\u05e8 \u05ea\u05d5\u05db\u05df \u05de\u05e1\u05d5\u05de\u05df"],"Switch between Visual Editor and Code Editor.":["\u05de\u05e2\u05d1\u05e8 \u05de\u05d4\u05e2\u05d5\u05e8\u05da \u05d4\u05d5\u05d9\u05d6\u05d5\u05d0\u05dc\u05d9 \u05dc\u05e2\u05d5\u05e8\u05da \u05d4\u05e7\u05d5\u05d3."],"Navigate to the previous part of the editor (alternative).":["\u05e0\u05d9\u05d5\u05d5\u05d8 \u05dc\u05d7\u05dc\u05e7 \u05d4\u05e7\u05d5\u05d3\u05dd \u05e9\u05dc \u05d4\u05e2\u05d5\u05e8\u05da (\u05d0\u05dc\u05d8\u05e8\u05e0\u05d8\u05d9\u05d1\u05d4)."],"Navigate to the next part of the editor (alternative).":["\u05e0\u05d9\u05d5\u05d5\u05d8 \u05dc\u05d7\u05dc\u05e7 \u05d4\u05d1\u05d0 \u05e9\u05dc \u05d4\u05e2\u05d5\u05e8\u05da (\u05d0\u05dc\u05d8\u05e8\u05e0\u05d8\u05d9\u05d1\u05d4)."],"Navigate to the previous part of the editor.":["\u05e0\u05d9\u05d5\u05d5\u05d8 \u05dc\u05d7\u05dc\u05e7 \u05d4\u05e7\u05d5\u05d3\u05dd \u05e9\u05dc \u05d4\u05e2\u05d5\u05e8\u05da."],"Navigate to the next part of the editor.":["\u05e0\u05d9\u05d5\u05d5\u05d8 \u05dc\u05d7\u05dc\u05e7 \u05d4\u05d1\u05d0 \u05e9\u05dc \u05d4\u05e2\u05d5\u05e8\u05da."],"Show or hide the settings sidebar.":["\u05d4\u05e6\u05d2/\u05d4\u05e1\u05ea\u05e8 \u05e1\u05e8\u05d2\u05dc \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e6\u05d3\u05d3\u05d9."],"Redo your last undo.":["\u05d1\u05e6\u05e2 \u05e9\u05d5\u05d1 \u05d0\u05ea \u05d4\u05e4\u05e2\u05d5\u05dc\u05d4 \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4."],"Undo your last changes.":["\u05d1\u05d8\u05dc \u05d0\u05ea \u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd."],"Save your changes.":["\u05e9\u05d9\u05de\u05e8\u05d5 \u05d0\u05ea \u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd."],"Global shortcuts":["\u05e7\u05d9\u05e6\u05d5\u05e8\u05d9 \u05d3\u05e8\u05da \u05d2\u05dc\u05d5\u05d1\u05dc\u05d9\u05dd"],"Remove a link.":["\u05d4\u05e1\u05e8 \u05dc\u05d9\u05e0\u05e7."],"Convert the selected text into a link.":["\u05dc\u05d4\u05de\u05d9\u05e8 \u05d0\u05ea \u05d4\u05d8\u05e7\u05e1\u05d8 \u05d4\u05e0\u05d1\u05d7\u05e8 \u05dc\u05dc\u05d9\u05e0\u05e7."],"Underline the selected text.":["\u05d4\u05d5\u05e1\u05e3 \u05e7\u05d5 \u05ea\u05d7\u05ea\u05d5\u05df \u05dc\u05d8\u05e7\u05e1\u05d8 \u05e9\u05e0\u05d1\u05d7\u05e8."],"Make the selected text italic.":["\u05d4\u05e4\u05d5\u05da \u05d0\u05ea \u05d4\u05d8\u05e7\u05e1\u05d8 \u05d4\u05e0\u05d1\u05d7\u05e8 \u05dc\u05e0\u05d8\u05d5\u05d9."],"Make the selected text bold.":["\u05d4\u05d3\u05d2\u05e9 \u05d0\u05ea \u05d4\u05d8\u05e7\u05e1\u05d8 \u05d4\u05e0\u05d1\u05d7\u05e8."],"Text formatting":["\u05e2\u05d9\u05e6\u05d5\u05d1 \u05d8\u05e7\u05e1\u05d8"],"Insert a new block after the selected block(s).":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05d1\u05dc\u05d5\u05e7 \u05d7\u05d3\u05e9 \u05dc\u05d0\u05d7\u05e8 \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05d4\u05e0\u05d1\u05d7\u05e8\u05d9\u05dd."],"Keyboard Shortcuts":["\u05e7\u05d9\u05e6\u05d5\u05e8\u05d9 \u05de\u05e7\u05dc\u05d3\u05ea"],"Thanks for testing Gutenberg!":["\u05ea\u05d5\u05d3\u05d4 \u05e9\u05d1\u05d3\u05d9\u05e7\u05ea \u05d0\u05ea \u05d2\u05d5\u05d8\u05e0\u05d1\u05e8\u05d2."],"Help build Gutenberg":["\u05e2\u05d9\u05d6\u05e8\u05d5 \u05dc\u05d1\u05e0\u05d5\u05ea \u05d0\u05ea \u05d2\u05d5\u05d8\u05e0\u05d1\u05e8\u05d2"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":["\u05e7\u05d4\u05d9\u05dc\u05ea \u05d5\u05d5\u05e8\u05d3\u05e4\u05e8\u05e1"],"Code is Poetry":["\u05e7\u05d5\u05d3 \u05d4\u05d5\u05d0 \u05e9\u05d9\u05e8\u05d4"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":["\u05de\u05d3\u05d9\u05d4"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["\u05de\u05d0\u05d8 \u05de\u05d5\u05dc\u05e0\u05d5\u05d5\u05d2, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["\u05e2\u05d9\u05e6\u05d5\u05d1 \u05d5\u05d9\u05d6\u05d5\u05d0\u05dc\u05d9"],"And Lists like this one of course :)":["\u05d5\u05e8\u05e9\u05d9\u05de\u05d4 \u05db\u05de\u05d5 \u05d6\u05d5, \u05db\u05de\u05d5\u05d1\u05df :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:["\u05d2\u05dc\u05e8\u05d9\u05d5\u05ea"],"Images & Videos":["\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d5\u05e1\u05e8\u05d8\u05d9\u05dd"],"Text & Headings":["\u05d8\u05e7\u05e1\u05d8\u05d9\u05dd \u05d5\u05db\u05d5\u05ea\u05e8\u05d5\u05ea"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["\u05ea\u05de\u05d5\u05e0\u05d4 \u05e9\u05d5\u05d5\u05d4 \u05d0\u05dc\u05e3 \u05de\u05d9\u05dc\u05d9\u05dd"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":["... \u05db\u05de\u05d5 \u05d6\u05d5, \u05d4\u05de\u05d9\u05d5\u05e9\u05e8\u05ea \u05dc\u05d9\u05de\u05d9\u05df."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["\u05d1\u05e8\u05d5\u05db\u05d9\u05dd \u05d4\u05d1\u05d0\u05d9\u05dd \u05dc\u05e2\u05d5\u05e8\u05da \u05d2\u05d5\u05d8\u05e0\u05d1\u05e8\u05d2"],"block name\x04More":["\u05e2\u05d5\u05d3"],"button to expand options\x04More":["\u05e2\u05d5\u05d3"],"Are you sure you want to unschedule this post?":["\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d1\u05d8\u05dc \u05d0\u05ea \u05ea\u05d6\u05de\u05d5\u05df \u05d4\u05e4\u05e8\u05e1\u05d5\u05dd \u05e9\u05dc \u05d4\u05e4\u05d5\u05e1\u05d8 \u05d4\u05d6\u05d4?"],"Alt Text (Alternative Text)":["\u05d8\u05e7\u05e1\u05d8 \u05d0\u05dc\u05d8\u05e8\u05e0\u05d8\u05d9\u05d1\u05d9"],"Reusable Block":["\u05d1\u05dc\u05d5\u05e7 \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d7\u05d5\u05d6\u05e8"],"Unique identifier for the object.":["\u05de\u05d6\u05d4\u05d4 \u05d9\u05d7\u05d5\u05d3\u05d9 \u05dc\u05d0\u05d5\u05d1\u05d9\u05d9\u05e7\u05d8."],"Untitled Reusable Block":["\u05d1\u05dc\u05d5\u05e7 \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d7\u05d5\u05d6\u05e8 \u05dc\u05dc\u05d0 \u05e9\u05dd"],Small:["\u05e7\u05d8\u05df"],"(%s: %s)":["(%s: %s)"],Reusable:["\u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d7\u05d5\u05d6\u05e8"],"(current %s: %s)":["(\u05db\u05e8\u05d2\u05e2 %s: %s)"],"Remove from Reusable Blocks":["\u05dc\u05d4\u05e1\u05d9\u05e8 \u05de\u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d7\u05d5\u05d6\u05e8"],"Add to Reusable Blocks":["\u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05dc\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d7\u05d5\u05d6\u05e8"],"Keep as HTML":["\u05e9\u05de\u05d5\u05e8 \u05db-HTML"],"Edit URL":["\u05e2\u05e8\u05d9\u05db\u05ea \u05db\u05ea\u05d5\u05d1\u05ea"],"Color Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e6\u05d1\u05e2"],"The response is not a valid JSON response.":["\u05d4\u05ea\u05e9\u05d5\u05d1\u05d4 \u05e9\u05d4\u05ea\u05e7\u05d1\u05dc\u05d4 \u05d0\u05d9\u05e0\u05e0\u05d4 \u05d1\u05e4\u05d5\u05e8\u05de\u05d8 JSON \u05ea\u05e7\u05d9\u05df."],"Editor publish":["\u05e4\u05e8\u05e1\u05d5\u05dd \u05e9\u05dc \u05d4\u05e2\u05d5\u05e8\u05da"],Muted:["\u05de\u05d5\u05e9\u05ea\u05e7"],"Video Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d5\u05d9\u05d3\u05d0\u05d5"],"recent comments":["\u05ea\u05d2\u05d5\u05d1\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea"],"Latest Comments":["\u05ea\u05d2\u05d5\u05d1\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea"],"Display Excerpt":["\u05d4\u05e6\u05d2 \u05ea\u05d9\u05d0\u05d5\u05e8"],"Display Date":["\u05d4\u05e6\u05d2 \u05ea\u05d0\u05e8\u05d9\u05da"],"Display Avatar":["\u05d4\u05e6\u05d2 \u05e6\u05dc\u05de\u05d9\u05ea \u05de\u05d7\u05d1\u05e8"],"Latest Comments Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05ea\u05d2\u05d5\u05d1\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea"],"Number of Comments":["\u05de\u05e1\u05e4\u05e8 \u05ea\u05d2\u05d5\u05d1\u05d5\u05ea"],"Background Opacity":["\u05e9\u05e7\u05d9\u05e4\u05d5\u05ea \u05e8\u05e7\u05e2"],Auto:["\u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9"],Preload:["\u05d8\u05e2\u05df \u05de\u05e8\u05d0\u05e9"],"Audio Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d0\u05d5\u05d3\u05d9\u05d5"],"Display a monthly archive of your posts.":["\u05de\u05e6\u05d9\u05d2 \u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d7\u05d5\u05d3\u05e9\u05d9 \u05e9\u05dc \u05d4\u05e4\u05d5\u05e1\u05d8\u05d9\u05dd \u05e9\u05dc\u05da."],"Display as Dropdown":["\u05dc\u05d4\u05e6\u05d9\u05d2 \u05db\u05e8\u05e9\u05d9\u05de\u05d4 \u05e0\u05e4\u05ea\u05d7\u05ea"],"Show Post Counts":["\u05d4\u05e6\u05d2 \u05de\u05e1\u05e4\u05e8 \u05e4\u05d5\u05e1\u05d8\u05d9\u05dd"],"Archives Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d0\u05e8\u05db\u05d9\u05d5\u05df"],"https://wordpress.org/support/plugin/gutenberg":["https://he.wordpress.org/support/plugin/gutenberg"],Support:["\u05ea\u05de\u05d9\u05db\u05d4"],"No comments to show.":["\u05d0\u05d9\u05df \u05ea\u05d2\u05d5\u05d1\u05d5\u05ea \u05dc\u05d4\u05e6\u05d9\u05d2."],"%1$s on %2$s":["%1$s \u05e2\u05dc %2$s"],"Select Post":["\u05d1\u05d7\u05d9\u05e8\u05ea \u05e4\u05d5\u05e1\u05d8"],"Select Week":["\u05d1\u05d7\u05d9\u05e8\u05ea \u05e9\u05d1\u05d5\u05e2"],"Select Day":["\u05d1\u05d7\u05d9\u05e8\u05ea \u05d9\u05d5\u05dd"],"Select Month":["\u05d1\u05d7\u05d9\u05e8\u05ea \u05d7\u05d5\u05d3\u05e9"],"Select Year":["\u05d1\u05d7\u05d9\u05e8\u05ea \u05e9\u05e0\u05d4"],Archives:["\u05d0\u05e8\u05db\u05d9\u05d5\u05df"],"Very dark gray":["\u05d0\u05e4\u05d5\u05e8 \u05db\u05d4\u05d4 \u05de\u05d0\u05d5\u05d3"],"Cyan bluish gray":["\u05e6\u05d9\u05d0\u05df \u05d0\u05e4\u05d5\u05e8 \u05db\u05d7\u05dc\u05d7\u05dc"],"Very light gray":["\u05d0\u05e4\u05d5\u05e8 \u05d1\u05d4\u05d9\u05e8 \u05de\u05d0\u05d5\u05d3"],"Vivid cyan blue":[],"Pale cyan blue":["\u05e6\u05d9\u05d0\u05df \u05db\u05d7\u05d5\u05dc \u05d1\u05d4\u05d9\u05e8"],"Vivid green cyan":[],"Light green cyan":["\u05e6\u05d9\u05d0\u05df \u05d9\u05e8\u05d5\u05e7 \u05d1\u05d4\u05d9\u05e8"],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":["\u05d0\u05d3\u05d5\u05dd \u05d1\u05d4\u05d9\u05e8"],"Pale pink":["\u05d5\u05e8\u05d5\u05d3 \u05d1\u05d4\u05d9\u05e8"],"Inline image":[],"Available block types":["\u05e1\u05d5\u05d2\u05d9 \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05d6\u05de\u05d9\u05e0\u05d9\u05dd"],"Transform To:":["\u05dc\u05d4\u05e4\u05d5\u05da \u05dc:"],"Remove Block":["\u05d4\u05e1\u05e8 \u05d1\u05dc\u05d5\u05e7"],"Open publish panel":["\u05e4\u05ea\u05d7 \u05e4\u05d0\u05e0\u05dc \u05e4\u05e8\u05e1\u05d5\u05dd"],Dots:["\u05e0\u05e7\u05d5\u05d3\u05d5\u05ea"],"Wide Line":["\u05e9\u05d5\u05e8\u05d4 \u05e8\u05d7\u05d1\u05d4"],Large:["\u05d2\u05d3\u05d5\u05dc"],"Show download button":[],"Download button settings":[],"Link To":["\u05e7\u05d9\u05e9\u05d5\u05e8 \u05d0\u05dc"],"Text link settings":[],pdf:["pdf"],document:["\u05de\u05e1\u05de\u05da"],"Copy URL":["\u05d4\u05e2\u05ea\u05e7 \u05db\u05ea\u05d5\u05d1\u05ea"],"Write file name\u2026":["\u05db\u05ea\u05d1\u05d5 \u05e9\u05dd \u05e7\u05d5\u05d1\u05e5\u2026"],"Edit file":["\u05e2\u05e8\u05d9\u05db\u05ea \u05e7\u05d5\u05d1\u05e5"],File:["\u05e7\u05d5\u05d1\u05e5"],"A single column within a columns block.":["\u05e2\u05de\u05d5\u05d3\u05d4 \u05d1\u05d5\u05d3\u05d3\u05ea \u05d1\u05ea\u05d5\u05da \u05d1\u05dc\u05d5\u05e7 \u05e9\u05dc \u05de\u05e1\u05e4\u05e8 \u05e2\u05de\u05d5\u05d3\u05d5\u05ea."],Column:["\u05e2\u05de\u05d5\u05d3\u05d4"],Outline:["\u05de\u05ea\u05d0\u05e8"],Loop:["\u05dc\u05e0\u05d2\u05df \u05d1\u05dc\u05d9 \u05d4\u05e4\u05e1\u05e7\u05d4"],Autoplay:["\u05d4\u05e4\u05e2\u05dc\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea"],"Playback Controls":["\u05db\u05e4\u05ea\u05d5\u05e8\u05d9 \u05d4\u05e4\u05e2\u05dc\u05d4"],"Close dialog":["\u05e1\u05d2\u05d5\u05e8 \u05ea\u05d9\u05d1\u05ea \u05d3\u05d5-\u05e9\u05d9\u05d7"],"Sorry, this file type is not permitted for security reasons.":["\u05e1\u05d5\u05d2 \u05d4\u05e7\u05d5\u05d1\u05e5 \u05d0\u05d9\u05e0\u05d5 \u05de\u05d5\u05e8\u05e9\u05d4 \u05de\u05d8\u05e2\u05de\u05d9 \u05d0\u05d1\u05d8\u05d7\u05d4."],"Disable tips":["\u05d1\u05d8\u05dc \u05d8\u05d9\u05e4\u05d9\u05dd"],"Got it":["\u05d4\u05d1\u05e0\u05ea\u05d9"],"See next tip":["\u05d4\u05d8\u05d9\u05e4 \u05d4\u05d1\u05d0"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u05d0\u05dd \u05d4\u05ea\u05d5\u05db\u05df \u05de\u05d5\u05db\u05df, \u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05dc\u05d5\u05d7 \u05d0\u05d5\u05ea\u05d5 \u05dc\u05d1\u05d9\u05e7\u05d5\u05e8\u05ea, \u05d5\u05e2\u05d5\u05e8\u05da \u05d9\u05d5\u05db\u05dc \u05dc\u05d0\u05e9\u05e8 \u05d0\u05d5\u05ea\u05d5 \u05e2\u05d1\u05d5\u05e8\u05da."],"Are you ready to submit for review?":["\u05de\u05d5\u05db\u05df \u05dc\u05e9\u05dc\u05d5\u05d7 \u05e1\u05e7\u05d9\u05e8\u05d4?"],"Replace image":["\u05d4\u05d7\u05dc\u05e3 \u05ea\u05de\u05d5\u05e0\u05d4"],"Remove image":["\u05d4\u05e1\u05e8 \u05ea\u05de\u05d5\u05e0\u05d4"],"Error while uploading file %s to the media library.":["\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05de\u05d4\u05dc\u05da \u05d4\u05e2\u05dc\u05d0\u05ea \u05e7\u05d5\u05d1\u05e5 %s \u05dc\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4."],"This file exceeds the maximum upload size for this site.":[],"View the autosave":["\u05dc\u05d4\u05e6\u05d9\u05d2 \u05d0\u05ea \u05d4\u05ea\u05d5\u05db\u05df \u05e9\u05e0\u05e9\u05de\u05e8 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea"],"There is an autosave of this post that is more recent than the version below.":["\u05e7\u05d9\u05d9\u05de\u05ea \u05e9\u05de\u05d9\u05e8\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05e9\u05dc \u05d4\u05e4\u05d5\u05e1\u05d8 \u05d4\u05d6\u05d4, \u05d5\u05d4\u05d9\u05d0 \u05d7\u05d3\u05e9\u05d4 \u05d9\u05d5\u05ea\u05e8 \u05de\u05d4\u05d2\u05e8\u05e1\u05d4 \u05d4\u05de\u05d5\u05e6\u05d2\u05ea \u05db\u05e2\u05ea."],Autosaving:["\u05e9\u05de\u05d9\u05e8\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea"],"Enter URL here\u2026":["\u05d4\u05db\u05e0\u05e1 \u05db\u05ea\u05d5\u05d1\u05ea \u05db\u05d0\u05df..."],"Pin to toolbar":["\u05e0\u05e2\u05e5 \u05dc\u05e1\u05e8\u05d2\u05dc \u05db\u05dc\u05d9\u05dd"],"Unpin from toolbar":["\u05e9\u05d7\u05e8\u05e8 \u05e0\u05e2\u05d9\u05e6\u05d4 \u05de\u05e1\u05e8\u05d2\u05dc \u05db\u05dc\u05d9\u05dd"],"Insert a table \u2014 perfect for sharing charts and data.":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05d8\u05d1\u05dc\u05d4 \u2014 \u05dc\u05d4\u05e6\u05d2\u05ea \u05de\u05d9\u05d3\u05e2 \u05d0\u05d5 \u05ea\u05e8\u05e9\u05d9\u05de\u05d9\u05dd."],"Fixed width table cells":["\u05ea\u05d0\u05d9 \u05d8\u05d1\u05dc\u05d4 \u05d1\u05e8\u05d5\u05d7\u05d1 \u05e7\u05d1\u05d5\u05e2"],"Table Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d8\u05d1\u05dc\u05d4"],"Add text that respects your spacing and tabs, and also allows styling.":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05d8\u05e7\u05e1\u05d8 \u05d4\u05db\u05d5\u05dc\u05dc \u05db\u05d1\u05e8 \u05e8\u05d5\u05d5\u05d7\u05d9\u05dd \u05d5\u05d8\u05d0\u05d1\u05d9\u05dd, \u05d5\u05de\u05d0\u05e4\u05e9\u05e8 \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d1\u05e2\u05d9\u05e6\u05d5\u05d1."],"Display a list of your most recent posts.":["\u05d4\u05e6\u05d2 \u05e8\u05e9\u05d9\u05de\u05d4 \u05e9\u05dc \u05d4\u05e4\u05d5\u05e1\u05d8\u05d9\u05dd \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05d1\u05dc\u05d5\u05e7 \u05d4\u05de\u05e6\u05d9\u05d2 \u05ea\u05d5\u05db\u05df \u05e9\u05e0\u05de\u05e9\u05da \u05de\u05d0\u05ea\u05e8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd, \u05db\u05de\u05d5 \u05d8\u05d5\u05d5\u05d9\u05d8\u05e8, Instagram \u05d0\u05d5 YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05d1\u05dc\u05d5\u05e7 \u05d4\u05de\u05e6\u05d9\u05d2 \u05ea\u05d5\u05db\u05df \u05d1\u05de\u05e1\u05e4\u05e8 \u05e2\u05de\u05d5\u05d3\u05d5\u05ea - \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05e9\u05d5\u05e0\u05d9\u05dd \u05dc\u05db\u05dc \u05e2\u05de\u05d5\u05d3\u05d4."],"Error loading block: %s":["\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05d8\u05e2\u05d9\u05e0\u05ea \u05d1\u05dc\u05d5\u05e7: %s"],"Unknown error":["\u05e9\u05d2\u05d9\u05d0\u05d4 \u05dc\u05d0 \u05d9\u05d3\u05d5\u05e2\u05d4"],"Embed Handler":[],"term\x04Remove %s":["\u05d4\u05e1\u05e8 %s"],"Copy the permalink":["\u05d4\u05e2\u05ea\u05e7 \u05e7\u05d9\u05e9\u05d5\u05e8"],"Permalink copied":["\u05d4\u05e7\u05d9\u05e9\u05d5\u05e8 \u05d4\u05d5\u05e2\u05ea\u05e7"],"Height in pixels":["\u05d2\u05d5\u05d1\u05d4 \u05d1\u05e4\u05d9\u05e7\u05e1\u05dc\u05d9\u05dd"],"Spacer Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05de\u05e8\u05d5\u05d5\u05d7"],Spacer:["\u05de\u05e8\u05d5\u05d5\u05d7"],"Toggle to show a large initial letter.":["\u05dc\u05d9\u05d7\u05e6\u05d5 \u05e2\u05dc \u05d4\u05db\u05e4\u05ea\u05d5\u05e8 \u05db\u05d3\u05d9 \u05dc\u05d4\u05e6\u05d9\u05d2 \u05d0\u05d5\u05ea \u05e8\u05d0\u05e9\u05d5\u05e0\u05d4 \u05d2\u05d3\u05d5\u05dc\u05d4."],"Showing large initial letter.":["\u05de\u05e6\u05d9\u05d2 \u05d0\u05d5\u05ea \u05e8\u05d0\u05e9\u05d5\u05e0\u05d4 \u05d2\u05d3\u05d5\u05dc\u05d4."],"Name:":["\u05e9\u05dd:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s \u05de\u05ea\u05d5\u05da %3$s)"],"Remove item":["\u05d4\u05e1\u05e8 \u05e4\u05e8\u05d9\u05d8"],"Color code: %s":["\u05e7\u05d5\u05d3 \u05e6\u05d1\u05e2: %s"],"Skip to the selected block":["\u05d3\u05d9\u05dc\u05d5\u05d2 \u05dc\u05d1\u05dc\u05d5\u05e7 \u05d4\u05e0\u05d1\u05d7\u05e8"],"Publish\u2026":["\u05e4\u05d9\u05e8\u05e1\u05d5\u05dd"],"Schedule\u2026":["\u05ea\u05d9\u05d6\u05de\u05d5\u05df"],"Edit post permalink":["\u05e2\u05e8\u05d9\u05db\u05ea \u05d4\u05e7\u05d9\u05e9\u05d5\u05e8 \u05d4\u05d9\u05e9\u05d9\u05e8 \u05e9\u05dc \u05d4\u05e4\u05d5\u05e1\u05d8"],"Show Block Settings":["\u05d4\u05e6\u05d2 \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d1\u05dc\u05d5\u05e7"],"Hide Block Settings":["\u05d4\u05e1\u05ea\u05e8 \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d1\u05dc\u05d5\u05e7"],"Block settings closed":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d4\u05d1\u05dc\u05d5\u05e7 \u05e0\u05e1\u05d2\u05e8\u05d5"],"Close plugin":["\u05e1\u05d2\u05d9\u05e8\u05ea \u05d4\u05ea\u05d5\u05e1\u05e3"],"Link settings":[],Unlink:["\u05d4\u05e1\u05e8 \u05e7\u05d9\u05e9\u05d5\u05e8"],"Page break":["\u05de\u05e2\u05d1\u05e8 \u05d3\u05e3"],pagination:["\u05d3\u05e4\u05d3\u05d5\u05e3"],"next page":["\u05d4\u05d3\u05e3 \u05d4\u05d1\u05d0"],"Image Size":["\u05d2\u05d5\u05d3\u05dc \u05ea\u05de\u05d5\u05e0\u05d4"],Height:["\u05d2\u05d5\u05d1\u05d4"],Width:["\u05e8\u05d5\u05d7\u05d1"],"Image Dimensions":["\u05de\u05d9\u05de\u05d3\u05d9 \u05d4\u05ea\u05de\u05d5\u05e0\u05d4"],"Thumbnails are not cropped.":["\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05de\u05d5\u05e7\u05d8\u05e0\u05d5\u05ea \u05dc\u05d0 \u05d7\u05ea\u05d5\u05db\u05d5\u05ea"],"Thumbnails are cropped to align.":["\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea \u05d9\u05d9\u05d7\u05ea\u05db\u05d5 \u05dc\u05d8\u05d5\u05d1\u05ea \u05d4\u05d9\u05d9\u05e9\u05d5\u05e8"],"Media Library":["\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05de\u05d3\u05d9\u05d4"],Advanced:["\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea"],"Add item":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05e4\u05e8\u05d9\u05d8"],"Reset the template":["\u05d0\u05d9\u05e4\u05d5\u05e1 \u05d4\u05ea\u05d1\u05e0\u05d9\u05ea"],"Keep it as is":["\u05e9\u05de\u05d9\u05e8\u05d4 \u05dc\u05dc\u05d0 \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd"],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u05ea\u05d5\u05db\u05df \u05d4\u05e4\u05d5\u05e1\u05d8 \u05dc\u05d0 \u05ea\u05d5\u05d0\u05dd \u05d0\u05ea \u05d4\u05ea\u05d1\u05e0\u05d9\u05ea \u05e9\u05dc \u05e1\u05d5\u05d2 \u05d4\u05ea\u05d5\u05db\u05df."],"Resetting the template may result in loss of content, do you want to continue?":["\u05d0\u05d9\u05e4\u05d5\u05e1 \u05d4\u05ea\u05d1\u05e0\u05d9\u05ea \u05d9\u05db\u05d5\u05dc \u05dc\u05d2\u05e8\u05d5\u05dd \u05dc\u05d0\u05d9\u05d1\u05d5\u05d3 \u05d4\u05ea\u05d5\u05db\u05df, \u05d4\u05d0\u05dd \u05dc\u05d4\u05de\u05e9\u05d9\u05da?"],"Document Statistics":["\u05e1\u05d8\u05d8\u05d9\u05e1\u05d8\u05d9\u05e7\u05ea \u05d4\u05de\u05e1\u05de\u05da"],"is now scheduled. It will go live on":["\u05ea\u05d5\u05d6\u05de\u05df. \u05d4\u05d5\u05d0 \u05d9\u05e4\u05d5\u05e8\u05e1\u05dd \u05d1\u05d0\u05ea\u05e8 \u05d1"],Scheduled:["\u05de\u05ea\u05d5\u05d6\u05de\u05df \u05dc\u05e4\u05e8\u05e1\u05d5\u05dd"],"Scheduling\u2026":["\u05de\u05ea\u05d6\u05de\u05df\u2026"],"Code editor selected":["\u05e2\u05d5\u05e8\u05da \u05e7\u05d5\u05d3 \u05e0\u05d1\u05d7\u05e8"],"Visual editor selected":["\u05e2\u05d5\u05e8\u05da \u05d5\u05d9\u05d6\u05d5\u05d0\u05dc\u05d9 \u05e0\u05d1\u05d7\u05e8"],Plugins:["\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd"],"Custom Size":["\u05d2\u05d5\u05d3\u05dc \u05de\u05d5\u05ea\u05d0\u05dd"],"Layout Elements":["\u05d0\u05dc\u05de\u05e0\u05d8\u05d9\u05dd \u05d1\u05e4\u05e8\u05d9\u05e1\u05d4"],"term\x04%s removed":["%s \u05d4\u05d5\u05e1\u05e8"],"term\x04%s added":["%s \u05e0\u05d5\u05e1\u05e3"],"imperative verb\x04Preview":["\u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4"],"Block deleted.":["\u05d4\u05d1\u05dc\u05d5\u05e7 \u05e0\u05de\u05d7\u05e7."],"Block updated.":["\u05d4\u05d1\u05dc\u05d5\u05e7 \u05e2\u05d5\u05d3\u05db\u05df."],"Block created.":["\u05d4\u05d1\u05dc\u05d5\u05e7 \u05e0\u05d5\u05e6\u05e8."],"Trashing failed":["\u05d4\u05de\u05d7\u05d9\u05e7\u05d4 \u05e0\u05db\u05e9\u05dc\u05d4"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["\u05d9\u05e9\u05e0\u05dd \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05e9\u05dc\u05d0 \u05e0\u05e9\u05de\u05e8\u05d5 \u05d5\u05d4\u05dd \u05d9\u05dc\u05db\u05d5 \u05dc\u05d0\u05d9\u05d1\u05d5\u05d3."],"Document Outline":["\u05de\u05ea\u05d0\u05e8 \u05d4\u05de\u05e1\u05de\u05da"],Paragraphs:["\u05e4\u05d9\u05e1\u05e7\u05d0\u05d5\u05ea"],Headings:["\u05db\u05d5\u05ea\u05e8\u05d5\u05ea"],Words:["\u05de\u05d9\u05dc\u05d9\u05dd"],"Content structure":["\u05de\u05d1\u05e0\u05d4 \u05d4\u05ea\u05d5\u05db\u05df"],Public:["\u05e6\u05d9\u05d1\u05d5\u05e8\u05d9"],"Protected with a password you choose. Only those with the password can view this post.":["\u05de\u05d5\u05d2\u05df \u05e2\u05dd \u05e1\u05d9\u05e1\u05de\u05d4 \u05dc\u05d1\u05d7\u05d9\u05e8\u05d4. \u05e8\u05e7 \u05d1\u05e2\u05dc\u05d9 \u05d4\u05e1\u05d9\u05e1\u05de\u05d4 \u05d9\u05d5\u05db\u05dc\u05d5 \u05dc\u05e6\u05e4\u05d5\u05ea \u05d1\u05e4\u05d5\u05e1\u05d8."],"Password Protected":["\u05de\u05d5\u05d2\u05df \u05d1\u05e1\u05d9\u05e1\u05de\u05d4"],"Only visible to site admins and editors.":["\u05d6\u05de\u05d9\u05df \u05dc\u05e6\u05e4\u05d9\u05d9\u05d4 \u05e8\u05e7 \u05dc\u05de\u05e0\u05d4\u05dc\u05d9 \u05d4\u05d0\u05ea\u05e8 \u05d5\u05dc\u05e2\u05d5\u05e8\u05db\u05d9\u05dd."],Private:["\u05e4\u05e8\u05d8\u05d9"],"Visible to everyone.":["\u05d6\u05de\u05d9\u05df \u05dc\u05e6\u05e4\u05d9\u05d9\u05d4 \u05dc\u05db\u05d5\u05dc\u05dd."],"Post Visibility":["\u05e0\u05e8\u05d0\u05d5\u05ea \u05d4\u05e4\u05d5\u05e1\u05d8"],"Would you like to privately publish this post now?":["\u05d4\u05d0\u05dd \u05dc\u05e4\u05e8\u05e1\u05dd \u05e2\u05db\u05e9\u05d9\u05d5 \u05d0\u05ea \u05d4\u05e4\u05d5\u05e1\u05d8 \u05d1\u05d0\u05d5\u05e4\u05df \u05e4\u05e8\u05d8\u05d9?"],"Use a secure password":["\u05de\u05d5\u05de\u05dc\u05e5 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05e1\u05d9\u05e1\u05de\u05d4 \u05d7\u05d6\u05e7\u05d4"],"Create password":["\u05d9\u05e6\u05d9\u05e8\u05ea \u05e1\u05d9\u05e1\u05de\u05d4"],"Move to Trash":[],"Parent Term":["\u05de\u05d5\u05e0\u05d7 \u05d0\u05d1"],"Parent Category":["\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05ea \u05d0\u05d1"],"Add new term":["\u05de\u05d5\u05e0\u05d7 \u05d7\u05d3\u05e9"],"Add new category":["\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4 \u05d7\u05d3\u05e9\u05d4"],Term:["\u05de\u05d5\u05e0\u05d7"],Tag:["\u05ea\u05d2\u05d9\u05ea"],"Add New Term":["\u05de\u05d5\u05e0\u05d7 \u05d7\u05d3\u05e9"],"Add New Tag":["\u05ea\u05d2\u05d9\u05ea \u05d7\u05d3\u05e9\u05d4"],"Switch to Draft":["\u05dc\u05d4\u05e2\u05d1\u05d9\u05e8 \u05dc\u05d8\u05d9\u05d5\u05d8\u05d4"],"Are you sure you want to unpublish this post?":["\u05d4\u05d0\u05dd \u05dc\u05d1\u05d8\u05dc \u05d0\u05ea \u05e4\u05e8\u05e1\u05d5\u05dd \u05d4\u05e4\u05d5\u05e1\u05d8?"],Immediately:["\u05de\u05d9\u05d9\u05d3"],"Save Draft":["\u05e9\u05de\u05d9\u05e8\u05ea \u05d8\u05d9\u05d5\u05d8\u05d4"],Saving:["\u05e9\u05d5\u05de\u05e8"],"Publish:":["\u05e4\u05e8\u05e1\u05d5\u05dd:"],"Visibility:":["\u05ea\u05e6\u05d5\u05d2\u05d4:"],"Are you ready to publish?":["\u05d4\u05db\u05dc \u05de\u05d5\u05db\u05df \u05dc\u05e4\u05e8\u05e1\u05d5\u05dd?"],"Copy Link":["\u05d4\u05e2\u05ea\u05e7 \u05e7\u05d9\u05e9\u05d5\u05e8"],"What\u2019s next?":["\u05de\u05d4 \u05d4\u05dc\u05d0\u05d4?"],"is now live.":["\u05e2\u05db\u05e9\u05d9\u05d5 \u05d6\u05de\u05d9\u05df \u05d1\u05d0\u05ea\u05e8"],Published:["\u05e4\u05d5\u05e8\u05e1\u05dd"],Schedule:["\u05ea\u05d9\u05d6\u05de\u05d5\u05df"],Update:["\u05e2\u05d3\u05db\u05d5\u05df"],"Submit for Review":["\u05d4\u05d2\u05e9 \u05dc\u05d0\u05d9\u05e9\u05d5\u05e8"],"Updating\u2026":["\u05de\u05e2\u05d3\u05db\u05df\u2026"],"Publishing\u2026":["\u05de\u05e4\u05e8\u05e1\u05dd\u2026"],"Allow Pingbacks & Trackbacks":["\u05dc\u05d0\u05e4\u05e9\u05e8 \u05e4\u05d9\u05e0\u05d2\u05d1\u05d0\u05e7\u05d9\u05dd \u05d5\u05d8\u05e8\u05d0\u05e7\u05d1\u05d0\u05e7\u05d9\u05dd"],"Permalink:":["\u05e7\u05d9\u05e9\u05d5\u05e8 \u05d9\u05e9\u05d9\u05e8:"],"Pending Review":["\u05de\u05de\u05ea\u05d9\u05df \u05dc\u05d0\u05d9\u05e9\u05d5\u05e8"],"%d Revision":["%d \u05d2\u05d9\u05e8\u05e1\u05d4","%d \u05d2\u05d9\u05e8\u05e1\u05d0\u05d5\u05ea"],"Suggestion:":["\u05d4\u05e6\u05e2\u05d4:"],"Post Format":["\u05e1\u05d5\u05d2 \u05ea\u05d5\u05db\u05df"],Chat:["\u05e6'\u05d0\u05d8"],Status:["\u05de\u05e6\u05d1"],Standard:["\u05e1\u05d8\u05e0\u05d3\u05e8\u05d8\u05d9"],Aside:["\u05ea\u05d5\u05db\u05df \u05e6\u05d3\u05d3\u05d9"],"Set Featured Image":[],"Learn more about manual excerpts":["\u05de\u05d9\u05d3\u05e2 \u05e0\u05d5\u05e1\u05e3 \u05d0\u05d5\u05d3\u05d5\u05ea \u05ea\u05e7\u05e6\u05d9\u05e8\u05d9\u05dd"],"Write an excerpt (optional)":["\u05db\u05ea\u05d9\u05d1\u05ea \u05ea\u05e7\u05e6\u05d9\u05e8 (\u05d0\u05d5\u05e4\u05e6\u05d9\u05e0\u05d0\u05dc\u05d9)"],"Allow Comments":["\u05e4\u05ea\u05d5\u05d7 \u05dc\u05ea\u05d2\u05d5\u05d1\u05d5\u05ea"],"Template:":["\u05ea\u05d1\u05e0\u05d9\u05ea \u05e2\u05de\u05d5\u05d3:"],"no parent":["\u05dc\u05dc\u05d0 \u05d4\u05d5\u05e8\u05d4"],"no title":["\u05dc\u05dc\u05d0 \u05db\u05d5\u05ea\u05e8\u05ea"],Order:["\u05e1\u05d3\u05e8"],"No blocks found.":["\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd."],"%d result found.":["\u05e0\u05de\u05e6\u05d0\u05d4 \u05ea\u05d5\u05e6\u05d0\u05d4 \u05d0\u05d7\u05ea.","\u05e0\u05de\u05e6\u05d0\u05d5 %d \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea."],Saved:["\u05e0\u05e9\u05de\u05e8"],Embeds:["\u05d4\u05d8\u05de\u05e2\u05d5\u05ea"],Blocks:["\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd"],"Search for a block":["\u05d7\u05d9\u05e4\u05d5\u05e9 \u05d1\u05dc\u05d5\u05e7"],"Add block":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05d1\u05dc\u05d5\u05e7"],"Add %s":["\u05d4\u05d5\u05e1\u05e4\u05ea %s"],"Copy Error":["\u05e9\u05d2\u05d9\u05d0\u05ea \u05d4\u05e2\u05ea\u05e7\u05d4"],"Copy Post Text":["\u05d4\u05e2\u05ea\u05e7 \u05d0\u05ea \u05d4\u05d8\u05e7\u05e1\u05d8 \u05e9\u05dc \u05d4\u05e4\u05d5\u05e1\u05d8"],"Attempt Recovery":["\u05dc\u05e0\u05e1\u05d5\u05ea \u05dc\u05e9\u05d7\u05d6\u05e8"],"The editor has encountered an unexpected error.":["\u05d4\u05e2\u05d5\u05e8\u05da \u05e0\u05ea\u05e7\u05dc \u05d1\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05dc\u05ea\u05d9 \u05e6\u05e4\u05d5\u05d9\u05d4."],Undo:["\u05d1\u05d9\u05d8\u05d5\u05dc \u05e4\u05e2\u05d5\u05dc\u05d4 \u05d0\u05d7\u05e8\u05d5\u05e0\u05d4"],Redo:["\u05d1\u05e6\u05e2 \u05e9\u05d5\u05d1"],"(Multiple H1 headings are not recommended)":["(\u05de\u05d5\u05de\u05dc\u05e5 \u05e9\u05dc\u05d0 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d9\u05d5\u05ea\u05e8 \u05de\u05db\u05d5\u05ea\u05e8\u05ea H1 \u05d0\u05d7\u05ea)"],"(Your theme may already use a H1 for the post title)":["(\u05d9\u05ea\u05db\u05df \u05d5\u05d4\u05ea\u05d1\u05e0\u05d9\u05ea \u05e9\u05dc\u05da \u05db\u05d1\u05e8 \u05de\u05e9\u05ea\u05de\u05e9\u05ea \u05d1-H1 \u05e2\u05d1\u05d5\u05e8 \u05db\u05d5\u05ea\u05e8\u05ea \u05d4\u05e4\u05d5\u05e1\u05d8)"],"(Incorrect heading level)":["(\u05e8\u05de\u05ea \u05db\u05d5\u05ea\u05e8\u05ea \u05dc\u05d0 \u05e0\u05db\u05d5\u05e0\u05d4)"],"(Empty heading)":["(\u05db\u05d5\u05ea\u05e8\u05ea \u05e8\u05d9\u05e7\u05d4)"],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d1\u05dc\u05d5\u05e7 \u05d4\u05de\u05e9\u05d5\u05ea\u05e3?\n\n\u05d4\u05d5\u05d0 \u05d9\u05de\u05d7\u05e7 \u05dc\u05e6\u05de\u05d9\u05ea\u05d5\u05ea \u05de\u05db\u05dc \u05d4\u05e4\u05d5\u05e1\u05d8\u05d9\u05dd \u05d5\u05d4\u05d3\u05e4\u05d9\u05dd \u05d1\u05d4\u05dd \u05d4\u05d5\u05d0 \u05de\u05d5\u05e4\u05d9\u05e2."],"Convert to Regular Block":["\u05dc\u05d4\u05de\u05d9\u05e8 \u05dc\u05d1\u05dc\u05d5\u05e7 \u05e8\u05d2\u05d9\u05dc"],"More options":["\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea"],"Edit visually":["\u05e2\u05e8\u05d9\u05db\u05d4 \u05d5\u05d9\u05d6\u05d5\u05d0\u05dc\u05d9\u05ea"],Duplicate:["\u05e9\u05db\u05e4\u05dc"],"Blocks cannot be moved down as they are already at the bottom":["\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d5\u05e8\u05d9\u05d3 \u05d0\u05ea \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05d1\u05d2\u05dc\u05dc \u05e9\u05d4\u05dd \u05db\u05d1\u05e8 \u05d1\u05ea\u05d7\u05ea\u05d9\u05ea"],"Blocks cannot be moved up as they are already at the top":["\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e2\u05dc\u05d5\u05ea \u05d0\u05ea \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05d1\u05d2\u05dc\u05dc \u05e9\u05d4\u05dd \u05db\u05d1\u05e8 \u05d1\u05d7\u05dc\u05e7 \u05d4\u05e2\u05dc\u05d9\u05d5\u05df \u05d1\u05d9\u05d5\u05ea\u05e8"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["\u05d1\u05dc\u05d5\u05e7 %s \u05d4\u05d5\u05d0 \u05d4\u05d1\u05dc\u05d5\u05e7 \u05d4\u05d9\u05d7\u05d9\u05d3 \u05d5\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d6\u05d9\u05d6\u05d5"],"Edit as HTML":["\u05e2\u05e8\u05d9\u05db\u05ea HTML"],"Convert to Blocks":["\u05dc\u05d4\u05de\u05d9\u05e8 \u05dc\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd"],"Block: %s":["\u05d1\u05dc\u05d5\u05e7: %s"],"This block has encountered an error and cannot be previewed.":["\u05d0\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05e2\u05dd \u05d4\u05d1\u05dc\u05d5\u05e7 \u05d4\u05d6\u05d4, \u05d5\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e6\u05d9\u05d2 \u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4 \u05e9\u05dc\u05d5."],"No block selected.":["\u05dc\u05d0 \u05e0\u05d1\u05d7\u05e8 \u05d1\u05dc\u05d5\u05e7."],"Transform into:":["\u05dc\u05d4\u05e4\u05d5\u05da \u05dc:"],Remove:["\u05d4\u05e1\u05e8"],"Find original":["\u05dc\u05de\u05e6\u05d5\u05d0 \u05d0\u05ea \u05d4\u05de\u05e7\u05d5\u05e8"],"Copy All Content":["\u05d4\u05e2\u05ea\u05e7 \u05d0\u05ea \u05db\u05dc \u05d4\u05ea\u05d5\u05db\u05df"],"Copied!":["\u05d4\u05d5\u05e2\u05ea\u05e7!"],"Additional settings are now available in the Editor block settings sidebar":["\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea \u05e0\u05d9\u05ea\u05df \u05dc\u05e8\u05d0\u05d5\u05ea \u05d1\u05e1\u05e8\u05d2\u05dc \u05d4\u05e6\u05d3\u05d3\u05d9 \u05e9\u05dc \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d4\u05d1\u05dc\u05d5\u05e7"],Visibility:["\u05e0\u05d9\u05e8\u05d0\u05d5\u05ea"],"Status & Visibility":["\u05e1\u05d8\u05d8\u05d5\u05e1 \u05d5\u05e0\u05d9\u05e8\u05d0\u05d5\u05ea"],"Page Attributes":["\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05e2\u05de\u05d5\u05d3"],Block:["\u05d1\u05dc\u05d5\u05e7","%d \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd"],Document:["\u05de\u05e1\u05de\u05da"],"Featured Image":["\u05ea\u05de\u05d5\u05e0\u05d4 \u05e8\u05d0\u05e9\u05d9\u05ea"],"Close settings":["\u05dc\u05e1\u05d2\u05d5\u05e8 \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea"],"Editor content":["\u05ea\u05d5\u05db\u05df \u05d4\u05e2\u05d5\u05e8\u05da"],Tools:["\u05db\u05dc\u05d9\u05dd"],Editor:["\u05e2\u05d5\u05e8\u05da"],"Code Editor":["\u05e2\u05d5\u05e8\u05da \u05e7\u05d5\u05d3"],"Visual Editor":["\u05e2\u05d5\u05e8\u05da \u05d5\u05d9\u05d6\u05d5\u05d0\u05dc\u05d9"],"Editor top bar":["\u05e1\u05e8\u05d2\u05dc \u05db\u05dc\u05d9\u05dd \u05e9\u05dc \u05d4\u05e2\u05d5\u05e8\u05da"],Settings:["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea"],Reset:["\u05d0\u05d9\u05e4\u05d5\u05e1"],"Dismiss this notice":["\u05dc\u05d4\u05e1\u05ea\u05d9\u05e8 \u05d4\u05d5\u05d3\u05e2\u05d4 \u05d6\u05d5"],"Item removed.":["\u05d4\u05e4\u05e8\u05d9\u05d8 \u05d4\u05d5\u05e1\u05e8."],"Item added.":["\u05d4\u05e4\u05e8\u05d9\u05d8 \u05d4\u05ea\u05d5\u05d5\u05e1\u05e3."],"Drop files to upload":["\u05d2\u05e8\u05d5\u05e8 \u05dc\u05db\u05d0\u05df \u05e7\u05d1\u05e6\u05d9\u05dd \u05db\u05d3\u05d9 \u05dc\u05d4\u05e2\u05dc\u05d5\u05ea\u05dd \u05dc\u05d0\u05ea\u05e8"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["\u05d0\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05dc\u05d0 \u05d9\u05d3\u05d5\u05e2\u05d4."],"No results.":["\u05d0\u05d9\u05df \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea."],"%d result found, use up and down arrow keys to navigate.":["\u05e0\u05de\u05e6\u05d0\u05d4 \u05ea\u05d5\u05e6\u05d0\u05d4 \u05d0\u05d7\u05ea. \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d7\u05d9\u05e6\u05d9\u05dd \u05dc\u05de\u05e2\u05dc\u05d4 \u05d5\u05dc\u05de\u05d8\u05d4 \u05d1\u05de\u05e7\u05dc\u05d3\u05ea \u05db\u05d3\u05d9 \u05dc\u05e0\u05d5\u05d5\u05d8.","\u05e0\u05de\u05e6\u05d0\u05d5 %d \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea. \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d7\u05d9\u05e6\u05d9\u05dd \u05dc\u05de\u05e2\u05dc\u05d4 \u05d5\u05dc\u05de\u05d8\u05d4 \u05d1\u05de\u05e7\u05dc\u05d3\u05ea \u05db\u05d3\u05d9 \u05dc\u05e0\u05d5\u05d5\u05d8."],"(no title)":["(\u05dc\u05dc\u05d0 \u05db\u05d5\u05ea\u05e8\u05ea)"],URL:["\u05db\u05ea\u05d5\u05d1\u05ea URL"],Submit:["\u05e9\u05dc\u05d7"],Close:["\u05e1\u05d2\u05d5\u05e8"],"Insert link":[],"Edit link":[],Link:["\u05e7\u05d9\u05e9\u05d5\u05e8"],Strikethrough:["\u05e7\u05d5 \u05d7\u05d5\u05e6\u05d4"],Italic:["\u05e0\u05d8\u05d5\u05d9"],Bold:["\u05de\u05d5\u05d3\u05d2\u05e9"],"Remove link":[],"Number of items":["\u05de\u05e1\u05e4\u05e8 \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd"],All:["\u05d4\u05db\u05dc"],Category:["\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4"],"Z \u2192 A":["\u05ea \u2190 \u05d0"],"A \u2192 Z":["\u05d0 \u2190 \u05ea"],"Oldest to Newest":["\u05de\u05d4\u05d9\u05e9\u05df \u05dc\u05d7\u05d3\u05e9"],"Newest to Oldest":["\u05de\u05d4\u05d7\u05d3\u05e9 \u05dc\u05d9\u05e9\u05df"],"Order by":["\u05dc\u05de\u05d9\u05d9\u05df \u05e2\u05dc \u05e4\u05d9"],Select:["\u05d1\u05d7\u05d9\u05e8\u05d4"],"Select or Upload Media":["\u05dc\u05d1\u05d7\u05d5\u05e8 \u05d0\u05d5 \u05dc\u05d4\u05e2\u05dc\u05d5\u05ea \u05de\u05d3\u05d9\u05d4"],Video:["\u05d5\u05d9\u05d3\u05d0\u05d5"],"Edit video":["\u05e2\u05e8\u05d9\u05db\u05ea \u05d5\u05d9\u05d3\u05d0\u05d5"],"Write\u2026":["\u05dc\u05db\u05ea\u05d5\u05d1\u2026"],poetry:["\u05e9\u05d9\u05e8\u05d4"],Verse:["\u05e4\u05e1\u05d5\u05e7"],"New Column":["\u05e2\u05de\u05d5\u05d3\u05d4 \u05d7\u05d3\u05e9\u05d4"],"Delete Column":["\u05dc\u05de\u05d7\u05d5\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4"],"Add Column After":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05e2\u05de\u05d5\u05d3\u05d4 \u05d0\u05d7\u05e8\u05d9"],"Add Column Before":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05e2\u05de\u05d5\u05d3\u05d4 \u05dc\u05e4\u05e0\u05d9"],"Delete Row":["\u05dc\u05de\u05d7\u05d5\u05e7 \u05e9\u05d5\u05e8\u05d4"],"Add Row After":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9"],"Add Row Before":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9"],"Edit table":[],Table:["\u05d8\u05d1\u05dc\u05d4"],"Write subheading\u2026":["\u05db\u05ea\u05d5\u05d1 \u05db\u05d5\u05ea\u05e8\u05ea \u05de\u05e9\u05e0\u05d4\u2026"],"Write shortcode here\u2026":["\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05db\u05d0\u05df \u05e9\u05d5\u05e8\u05d8\u05e7\u05d5\u05d3\u2026"],Shortcode:["\u05e9\u05d5\u05e8\u05d8\u05e7\u05d5\u05d3"],divider:["\u05de\u05e4\u05e8\u05d9\u05d3"],"horizontal-line":["\u05e7\u05d5 \u05d0\u05d5\u05e4\u05e7\u05d9"],Separator:["\u05de\u05e4\u05e8\u05d9\u05d3"],Quote:["\u05e6\u05d9\u05d8\u05d5\u05d8"],"Write citation\u2026":["\u05db\u05ea\u05d9\u05d1\u05ea \u05e6\u05d9\u05d8\u05d8\u05d4\u2026"],"Write quote\u2026":["\u05db\u05ea\u05d9\u05d1\u05ea \u05e6\u05d9\u05d8\u05d5\u05d8\u2026"],Pullquote:["\u05e6\u05d9\u05d8\u05d5\u05d8"],"Write preformatted text\u2026":["\u05db\u05ea\u05d9\u05d1\u05ea \u05d8\u05e7\u05e1\u05d8 \u05dc\u05dc\u05d0 \u05ea\u05d1\u05e0\u05d9\u05ea"],Preformatted:["\u05de\u05e2\u05d5\u05e6\u05d1 \u05de\u05e8\u05d0\u05e9"],text:["\u05d8\u05e7\u05e1\u05d8"],Paragraph:["\u05e4\u05e1\u05e7\u05d4 \u05e8\u05d2\u05d9\u05dc\u05d4"],"Font Size":["\u05d2\u05d5\u05d3\u05dc \u05d2\u05d5\u05e4\u05df"],"Drop Cap":["\u05d0\u05d5\u05ea \u05e4\u05ea\u05d9\u05d7"],"Text Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d8\u05e7\u05e1\u05d8"],"Read more":["\u05dc\u05e7\u05e8\u05d5\u05d0 \u05e2\u05d5\u05d3"],"Write list\u2026":["\u05d4\u05d5\u05e4\u05e1\u05ea \u05e8\u05e9\u05d9\u05de\u05d4\u2026"],"numbered list":["\u05e8\u05e9\u05d9\u05de\u05d4 \u05de\u05e1\u05e4\u05e8\u05d9\u05ea"],"ordered list":["\u05e8\u05e9\u05d9\u05de\u05d4 \u05de\u05e1\u05d5\u05d3\u05e8\u05ea"],"bullet list":["\u05e8\u05e9\u05d9\u05de\u05ea \u05ea\u05d1\u05dc\u05d9\u05d8\u05d9\u05dd"],"Indent list item":["\u05d4\u05d6\u05d6\u05d4 \u05e4\u05e0\u05d9\u05de\u05d4 \u05e9\u05dc \u05d4\u05e4\u05e8\u05d9\u05d8"],"Outdent list item":["\u05d4\u05d6\u05d6\u05d4 \u05d4\u05d7\u05d5\u05e6\u05d4 \u05e9\u05dc \u05d4\u05e4\u05e8\u05d9\u05d8"],"Convert to ordered list":["\u05dc\u05d4\u05de\u05d9\u05e8 \u05dc\u05e8\u05e9\u05d9\u05de\u05d4 \u05de\u05de\u05d5\u05e1\u05e4\u05e8\u05ea"],"Convert to unordered list":["\u05dc\u05d4\u05de\u05d9\u05e8 \u05dc\u05e8\u05e9\u05d9\u05de\u05d4 \u05dc\u05d0 \u05de\u05de\u05d5\u05e1\u05e4\u05e8\u05ea"],List:["\u05e8\u05e9\u05d9\u05de\u05d4"],"recent posts":["\u05e4\u05d5\u05e1\u05d8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd"],"No posts found.":["\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05e4\u05d5\u05e1\u05d8\u05d9\u05dd."],"Latest Posts":["\u05e4\u05d5\u05e1\u05d8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd"],"Display post date":["\u05d4\u05e6\u05d2\u05ea \u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05e4\u05d5\u05e1\u05d8"],"Grid view":[],"List view":[],photo:["\u05ea\u05de\u05d5\u05e0\u05d4"],"Image Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05ea\u05de\u05d5\u05e0\u05d4"],Image:["\u05ea\u05de\u05d5\u05e0\u05d4"],Preview:["\u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4"],embed:["\u05d4\u05d8\u05de\u05e2\u05d4"],"Custom HTML":["HTML \u05de\u05d5\u05ea\u05d0\u05dd"],subtitle:["\u05db\u05d5\u05ea\u05e8\u05ea \u05de\u05e9\u05e0\u05d4"],title:["\u05db\u05d5\u05ea\u05e8\u05ea"],Heading:["\u05db\u05d5\u05ea\u05e8\u05ea"],"Write heading\u2026":["\u05db\u05ea\u05d9\u05d1\u05ea \u05db\u05d5\u05ea\u05e8\u05ea\u2026"],"Heading %d":["\u05db\u05d5\u05ea\u05e8\u05ea %s"],Level:["\u05e8\u05de\u05d4"],"Heading Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05db\u05d5\u05ea\u05e8\u05ea"],photos:["\u05e6\u05d9\u05dc\u05d5\u05de\u05d9\u05dd"],images:["\u05ea\u05de\u05d5\u05e0\u05d5\u05ea"],"Remove Image":["\u05d4\u05e1\u05e8 \u05ea\u05de\u05d5\u05e0\u05d4"],None:["\u05dc\u05dc\u05d0"],"Media File":["\u05e7\u05d5\u05d1\u05e5 \u05de\u05d3\u05d9\u05d4"],"Attachment Page":["\u05e2\u05de\u05d5\u05d3 \u05d4\u05e7\u05d5\u05d1\u05e5"],"Crop Images":["\u05d7\u05d9\u05ea\u05d5\u05da \u05ea\u05de\u05d5\u05e0\u05d5\u05ea"],"Gallery Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d2\u05dc\u05e8\u05d9\u05d4"],Gallery:["\u05d2\u05dc\u05e8\u05d9\u05d9\u05d4"],Classic:["\u05e7\u05dc\u05d0\u05e1\u05d9"],video:["\u05d5\u05d9\u05d3\u05d0\u05d5"],audio:["\u05d0\u05d5\u05d3\u05d9\u05d5"],music:["\u05de\u05d5\u05e1\u05d9\u05e7\u05d4"],image:["\u05ea\u05de\u05d5\u05e0\u05d4"],blog:["\u05d1\u05dc\u05d5\u05d2"],post:["\u05e4\u05d5\u05e1\u05d8"],"Embedded content from %s":["\u05ea\u05d5\u05db\u05df \u05de\u05d5\u05d8\u05de\u05e2 \u05de-%s"],"Enter URL to embed here\u2026":["\u05db\u05ea\u05d5\u05d1\u05ea \u05e9\u05dc \u05d4\u05ea\u05d5\u05db\u05df \u05dc\u05d4\u05d8\u05de\u05e2\u05d4\u2026"],"%s URL":["\u05db\u05ea\u05d5\u05d1\u05d5\u05ea %s"],"Embedding\u2026":["\u05de\u05d8\u05de\u05d9\u05e2\u2026"],"Write title\u2026":["\u05db\u05ea\u05d9\u05d1\u05ea \u05db\u05d5\u05ea\u05e8\u05ea\u2026"],"Fixed Background":["\u05e8\u05e7\u05e2 \u05e7\u05d1\u05d5\u05e2"],"Edit image":["\u05e2\u05e8\u05d9\u05db\u05ea \u05ea\u05de\u05d5\u05e0\u05d4"],Columns:["\u05d8\u05d5\u05e8\u05d9\u05dd"],Experiments:[],Code:["\u05e7\u05d5\u05d3"],"Write code\u2026":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05e7\u05d5\u05d3\u2026"],Categories:["\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea"],"Show Hierarchy":["\u05d4\u05e6\u05d2 \u05d4\u05d9\u05e8\u05e8\u05db\u05d9\u05d4"],"Show post counts":["\u05d4\u05e6\u05d2\u05ea \u05de\u05e1\u05e4\u05e8 \u05e4\u05d5\u05e1\u05d8\u05d9\u05dd \u05d1\u05db\u05dc \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4"],"Categories Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea"],"Add text\u2026":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05d8\u05e7\u05e1\u05d8\u2026"],Button:["\u05db\u05e4\u05ea\u05d5\u05e8"],Apply:["\u05d4\u05d7\u05dc"],"Text Color":["\u05e6\u05d1\u05e2 \u05d4\u05d8\u05e7\u05e1\u05d8"],"Background Color":["\u05e6\u05d1\u05e2 \u05e8\u05e7\u05e2"],"Block has been deleted or is unavailable.":["\u05d4\u05d1\u05dc\u05d5\u05e7 \u05e0\u05de\u05d7\u05e7 \u05d0\u05d5 \u05dc\u05d0 \u05d6\u05de\u05d9\u05df."],"Reusable Blocks":["\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d7\u05d5\u05d6\u05e8"],Cancel:["\u05d1\u05d8\u05dc"],Edit:["\u05e2\u05e8\u05d9\u05db\u05d4"],"Edit audio":["\u05e2\u05e8\u05d9\u05db\u05ea \u05d0\u05d5\u05d3\u05d9\u05d5"],"Write caption\u2026":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05d9\u05d0\u05d5\u05e8\u2026"],"Use URL":["\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05db\u05ea\u05d5\u05d1\u05ea URL"],Audio:["\u05d0\u05d5\u05d3\u05d9\u05d5"],Upload:["\u05dc\u05d4\u05e2\u05dc\u05d5\u05ea"],"Additional CSS Class(es)":[],"HTML Anchor":["\u05e2\u05d5\u05d2\u05df HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u05d9\u05ea\u05db\u05df \u05d5\u05e9\u05d9\u05dc\u05d5\u05d1 \u05d4\u05e6\u05d1\u05e2\u05d9\u05dd \u05d4\u05d6\u05d4 \u05d9\u05e7\u05e9\u05d4 \u05e2\u05dc \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05dc\u05e7\u05e8\u05d5\u05d0. \u05e0\u05d0 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e8\u05e7\u05e2 \u05d1\u05d4\u05d9\u05e8 \u05d9\u05d5\u05ea\u05e8 \u05d5/\u05d0\u05d5 \u05e6\u05d1\u05e2 \u05d8\u05e7\u05e1\u05d8 \u05db\u05d4\u05d4 \u05d9\u05d5\u05ea\u05e8."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u05d9\u05ea\u05db\u05df \u05d5\u05e9\u05d9\u05dc\u05d5\u05d1 \u05d4\u05e6\u05d1\u05e2\u05d9\u05dd \u05d4\u05d6\u05d4 \u05d9\u05e7\u05e9\u05d4 \u05e2\u05dc \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05dc\u05e7\u05e8\u05d5\u05d0. \u05e0\u05d0 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e8\u05e7\u05e2 \u05db\u05d4\u05d4 \u05d9\u05d5\u05ea\u05e8 \u05d5/\u05d0\u05d5 \u05e6\u05d1\u05e2 \u05d8\u05e7\u05e1\u05d8 \u05d1\u05d4\u05d9\u05e8 \u05d9\u05d5\u05ea\u05e8."],Clear:["\u05e0\u05e7\u05d4"],"Custom color picker":["\u05d1\u05d5\u05d7\u05e8 \u05e6\u05d1\u05e2"],"Color: %s":["\u05e6\u05d1\u05e2: %s"],"Full Width":[],"Wide Width":[],Widgets:["\u05d5\u05d9\u05d3\u05d2'\u05d8\u05d9\u05dd"],Formatting:["\u05e2\u05d9\u05e6\u05d5\u05d1"],"Common Blocks":["\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05e0\u05e4\u05d5\u05e6\u05d9\u05dd"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["\u05de\u05d3\u05e4\u05d9\u05e1\u05d9\u05dd \u05de\u05e9\u05e0\u05ea 1440. \u05ea\u05d5\u05e1\u05e3 \u05d6\u05d4 \u05e0\u05de\u05e6\u05d0 \u05d1\u05e4\u05d9\u05ea\u05d5\u05d7 \u05dc\u05d8\u05d5\u05d1\u05ea \u05e2\u05d5\u05e8\u05da \u05d4\u05ea\u05d5\u05db\u05df \u05d4\u05d7\u05d3\u05e9 \u05e9\u05dc \u05d5\u05d5\u05e8\u05d3\u05e4\u05e8\u05e1."],"Add title":["\u05d4\u05d5\u05e1\u05e4\u05ea \u05db\u05d5\u05ea\u05e8\u05ea"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["\u05de\u05d0\u05ea"],Slug:["\u05de\u05d6\u05d4\u05d4 \u05dc\u05db\u05ea\u05d5\u05d1\u05ea"],Discussion:["\u05d3\u05d9\u05d5\u05df"],"Custom Fields":["\u05e9\u05d3\u05d5\u05ea \u05de\u05d9\u05d5\u05d7\u05d3\u05d9\u05dd"],Excerpt:["\u05ea\u05e7\u05e6\u05d9\u05e8"],Publish:["\u05e4\u05e8\u05e1\u05d5\u05dd"],Metadata:["\u05de\u05d8\u05d4 \u05d3\u05d8\u05d4"],Save:["\u05e9\u05de\u05d9\u05e8\u05d4"],Documentation:["\u05ea\u05d9\u05e2\u05d5\u05d3"],"Select Category":["\u05d1\u05d7\u05d9\u05e8\u05ea \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4"],"(Untitled)":["(\u05dc\u05dc\u05d0 \u05db\u05d5\u05ea\u05e8\u05ea)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["\u05e6\u05d5\u05d5\u05ea \u05d2\u05d5\u05d8\u05e0\u05d1\u05e8\u05d2"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["\u05d2\u05d5\u05d8\u05e0\u05d1\u05e8\u05d2"],Demo:["\u05d4\u05d3\u05d2\u05de\u05d4"],"%s ago":["\u05dc\u05e4\u05e0\u05d9 %s"],"Block style name must be a string.":[]}},845,[]); +__d(function(e,a,o,i,t,r,n){t.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":["Prosinac 6, 2018"],"February 21, 2019":["Velja\u010da 21, 2019"],"May 7, 2019":["Svibanj 7, 2019"],"Release Date":["Datum izdavanja"],"Jazz Musician":["Jazz glazbenik"],Version:["Ina\u010dica"],"Six.":["\u0160est."],"Five.":["Pet."],"Four.":["\u010cetiri."],"Three.":["Tri."],"Two.":["Dva."],"One.":["Jedan."],"One of the hardest things to do in technology is disrupt yourself.":["Jedna od naje\u017eih stvari u tehnologiji je disruptirati samog sebe."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["Sve oko ovoga je crno. Kada se kamera polako po\u010dne pomicati prema prozoru koji je veli\u010dine po\u0161tanske marke u kadru, drugi oblici se po\u010dnu formirati."],"Window, very small in the distance, illuminated.":["Prozor, vrlo malen u daljini, osvijetljen."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["Cari\u0107
se uzdr\u017eava
be\u0161umno."],"Welcome to the wonderful world of blocks\u2026":["Dobro do\u0161li u prekrasni svijet blokova..."],"Snow Patrol":["Snow Patrol"],Dimensions:["Dimenzije"],"Minimum height in pixels":["Minimalna visina u pikselima"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Poziv na akciju"],"In quoting others, we cite ourselves.":["Navode\u0107i druge, navodimo se."],cite:["citat"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc izgleda\u2014jo\u0161 uvijek, pod snijegom i spokojan."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["U nekom selu u Manchi, kojemu ne \u017eelim ime spominjati, \u017eivio je prije malo vremena plemi\u0107, od onih koji imaju koplje na stalku, starinski \u0161tit, kukavno kljuse i hitra hrta."],"Block navigation":["Navigacija blokova"],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":["Unesi Panel pomo\u0107i"],"Pre-publish Checks":["Provjere prije objavljivanja"],"Please contact your site administrator to install new blocks.":["Kontaktirajte administratora web-stranice kako bi instalirali nove blokove."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Blokovi nisu prona\u0111eni u va\u0161oj zbirci. Kontaktirajte administratora web-stranice kako bi instalirali nove blokove."],"No blocks found in your library.":["Blokovi nisu prona\u0111eni u va\u0161oj zbirci."],"No blocks found in your library. These blocks can be downloaded and installed:":["Blokovi nisu prona\u0111eni u va\u0161oj zbirci. Ove blokove je mogu\u0107e preuzeti i instalirati:"],"No blocks found in your library. We did find %d block available for download.":["Blokovi nisu prona\u0111eni u va\u0161oj zbirci. Prona\u0111ena su %d bloka dostupna za preuzimanje.","Blokovi nisu prona\u0111eni u va\u0161oj zbirci. Prona\u0111ena su %d bloka dostupna za preuzimanje.","Blokovi nisu prona\u0111eni u va\u0161oj zbirci. Prona\u0111eno je %d blokova dostupnih za preuzimanje."],"Block previews can\u2019t load.":["Pretpregled bloka nije mogu\u0107e u\u010ditati."],Retry:["Poku\u0161ajte ponovno"],"Block previews can't install.":["Pretpregled bloka nije mogu\u0107e instalirati."],"Updated %s":["A\u017eurirano %s"],"%d active installation":["%d aktivne instalacije","%d aktivne instalacije","%d aktivnih instalacija"],"This author has %d block, with an average rating of %d.":["Ovaj autor ima %d blok, s prosje\u010dnom ocjenom od %d.","Ovaj autor ima %d bloka, s prosje\u010dnom ocjenom od %d.","Ovaj autor ima %d blokova, s prosje\u010dnom ocjenom od %d."],"Authored by %s":["Autor %s"],Add:["Dodaj"],"%d total rating":["%d ukupna ocjena","%d ukupne ocjene","%d ukupne ocjene"],"%s out of 5 stars":["%s od 5 zvjezdica"],"Enter Address":["Unesite adresu"],"Pill Shape":["Oblik pilule"],"Logos Only":["Samo logotipi"],"Create a block of links to your social media or external sites":["Kreirajte blok poveznica za va\u0161e dru\u0161tvene mre\u017ee ili vanjske web-stranice"],"Social links":["Dru\u0161tvene poveznice"],"Open block navigator":["Otvori blok navigator"],"Attachment page":["Stranica privitka"],Fill:["Popuni"],"Link rel":["Poveznica rel"],"Border Radius":["Radijus obruba"],"Write gallery caption\u2026":["Napi\u0161ite opis galerije..."],"Content Blocks":["Blokovi za sadr\u017eaj"],"Restore the backup":["Vrati sigurnosnu kopiju"],"The backup of this post in your browser is different from the version below.":["Sigurnosna kopija ove objave u va\u0161em pregledniku je druga\u010dija od ina\u010dice ispod."],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":["Nije se mogu\u0107e povezati na sistem podataka. Potvrdite va\u0161e akreditive."],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":["%1$d blok je onemogu\u0107en.","%1$d bloka su onemogu\u0107ena.","%1$d blokova je onemogu\u0107eno."],"Reverse List Numbering":["Lista s obrnutim brojanjem"],"Start Value":["Po\u010detna vrijednost"],"Ordered List Settings":["Postavke broj\u010dane liste"],"Clear Media":["Obri\u0161i medije"],"block style\x04Circle Mask":["Maska kruga"],"Default Style":["Izvorni stil"],"Not set":["Nije postavljeno"],"While writing, you can press / to quickly insert new blocks.":["Dok pi\u0161ete, mo\u017eete pritisnuti / kako bi unijeli nove blokove."],"Browse through the library to learn more about what each block does.":["Pregledajte zbirku blokova kako bi saznali mogu\u0107nosti svakog bloka."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Postoje blokovi za svakakve vrste sadr\u017eaja: unos teksta, zaglavlja, slika, lista, videa, tablica, i jo\u0161 puno toga."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Dobro do\u0161li u prekrasni svijet blokova! Blokovi su osnova svog sadr\u017eaja unutar ure\u0111iva\u010da."],"Version of the content block format used by the object.":["Ina\u010dica formata blok sadr\u017eaja koju koristi objekt."],"HTML content for the object, transformed for display.":["HTML sadr\u017eaj za objekt, transformiran za prikaz."],"Content for the object, as it exists in the database.":["Sadr\u017eaj objekta, kakav postoji u bazi podataka."],"The content for the object.":["Sadr\u017eaj objekta."],"Change column alignment":["Promjeni poravnanje stupca"],"Align Column Right":["Poravnaj stupac desno"],"Align Column Center":["Centriraj stupac"],"Align Column Left":["Poravnaj stupac lijevo"],Color:["Boja"],"Vivid purple":["Jasno ljubi\u010dasta"],"Disable & Reload":["Onemogu\u0107i i ponovno u\u010ditaj"],"Enable & Reload":["Omogu\u0107i i ponovno u\u010ditaj"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Potrebno je ponovno u\u010ditavanja stranice za ovu promjenu. Pobrinite se da je sadr\u017eaj sa\u010duvan prije ponovnog u\u010ditavanja."],"Display these keyboard shortcuts.":["Prika\u017ei ove tipkovne pre\u010dace."],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":["Ime bloka mora biti niz znakova (string)."],Custom:["Prilagodljivo"],Draft:["Skica"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blok \"%1$s\" ne sadr\u017eava stil pod nazivom \"%2$s.\"."],"Learn more about anchors":["Saznaj vi\u0161e o sidrima"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Unesite rije\u010d, dvije \u2014 bez razmaka \u2014 kako bi napravili jedinstvenu web adresu koje se zove \"sidro\", samo za ovo zaglavlje. Nakon toga imati \u0107ete direktnu poveznicu do ovog dijela sadr\u017eaja."],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":["Prenesite video, odaberite ga iz medijske zbirke, ili ga dodajte koriste\u0107i URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Prenesite sliku, odaberite ju iz medijske zbirke, ili ju dodajte koriste\u0107i URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Prenesite audio, odaberite ga iz medijske zbirke, ili ga dodajte koriste\u0107i URL."],"Upload a media file or pick one from your media library.":["Prenesite medijsku datoteku ili ju odaberite iz medijske zbirke."],Skip:["Presko\u010di"],"Select a pattern to start with.":["Odaberite uzorak s kojim \u017eelite zapo\u010deti."],"Add a page, link, or other item to your navigation.":["Dodajte stranicu, poveznicu, ili druge stavke u va\u0161 Navigacijski izbornik."],"What's this?":["\u0160to je ovo?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Nemoj dopustiti web tra\u017eilicama da prate ovu poveznicu."],"Provide more context about where the link goes.":["Pru\u017eite vi\u0161e konteksta o tome kuda vodi ova poveznica."],"Title Attribute":["Svojstva naslova"],"SEO Settings":["SEO postavke"],Description:["Opis"],"Open in new tab":["Otvori u novoj kartici"],links:["poveznice"],navigation:["navigacija"],menu:["izbornik"],"Add a navigation block to your site.":["Dodaj navigacijski izbornik na web-stranicu."],"Upload a file or pick one from your media library.":["Prenesite datoteku ili odaberite neku iz medijske zbirke."],"Learn more about embeds":["Saznaj vi\u0161e o ugradbenim kodovima"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Zalijepite poveznicu do sadr\u017eaja koji \u017eelite prikazati na web-stranici."],"Upload an image or video file, or pick one from your media library.":["Prenesite sliku ili video, ili odaberite ne\u0161to iz medijske zbirke."],"Three columns; wide center column":["Tri stupca; \u0161iroki srednji stupac"],"Three columns; equal split":["Tri stupca; jednake \u0161irine"],"Two columns; two-thirds, one-third split":["Dva stupca: podijeljeni na dvije tre\u0107ine, jedna tre\u0107ina "],"Two columns; one-third, two-thirds split":["Dva stupca: podijeljeni na jedna tre\u0107ina, dvije tre\u0107ine"],"Two columns; equal split":["Dva stupca; jednake \u0161irine"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Va\u0161a web-stranica nema %s, stoga se nema ni\u0161ta za prikazati ovdje."],"More tools & options":["Vi\u0161e alata i opcija"],"Create Table":["Kreiraj tablicu"],"Insert a table for sharing data.":["Unesite tablicu za dijeljenje podataka."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Degrupiraj"],"verb\x04Group":["Grupiraj"],"Separate with commas or the Enter key.":["Razdvojite zarezom ili pritisnite Enter tipku."],"Separate with commas, spaces, or the Enter key.":["Razdvojite zarezima, razmacima ili Enter tipkom."],"Separate multiple classes with spaces.":["Razdvojite klase s razmakom."],"Move image forward":["Pomakni sliku naprijed"],"Move image backward":["Pomakni sliku nazad"],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":["Blok je iscrtan kao prazan."],"Inline Code":["Inline kod"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Napomena: Video koji se automatski pokre\u0107e mo\u017ee prouzro\u010diti probleme za neke posjetitelje."],"Footer section":["Odjeljak podno\u017eja"],"Header section":["Odjeljak zaglavlja"],"Sorting and Filtering":["Sortiranje i filtriranje"],"Post Meta Settings":["Postavke meta podataka objave"],"Post Content":["Sadr\u017eaj objave"],"Post Content Settings":["Postavke sadr\u017eaja objave"],"Percentage width":["\u0160irina u postotcima"],"Column Settings":["Postavke stupaca"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Napomena: Audio koji se automatski pokre\u0107e mo\u017ee prouzro\u010diti probleme za neke posjetitelje."],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":["Sadr\u017eaj widget zaslona"],"Widgets advanced settings":["Napredne postavke widgeta"],"(experimental)":["(eksperimentalno)"],"Block Areas":["Blok podru\u010dja"],"Widgets screen top bar":["Gornja alatna traka widget zaslona"],"This color combination may be hard for people to read.":["Ova kombinacija boja umanjiti \u0107e \u010ditljivost."],"There is no poster image currently selected":["Trenutno nije odabrana poster slika"],"The current poster image url is %s":["URL trenutne poster slike je %s"],section:["sekcija"],row:["redak"],wrapper:["omota\u010d"],container:["kontejner"],"A block that groups other blocks.":["Blok koji grupira druge blokove"],Group:["Grupa"],"Crop image to fill entire column":["Izre\u017ei sliku kako bi popunila cijeli stupac"],"Play inline":["Reproduciraj inline"],"Leave empty if the image is purely decorative.":["Ostavite prazno ako je slika samo dekorativna."],"Describe the purpose of the image":["Opi\u0161ite svrhu slike"],"Add a block":["Dodaj blok"],"Block vertical alignment setting label\x04Change vertical alignment":["Promijenite poravnanje"],"Block vertical alignment setting\x04Vertically Align Bottom":["Vertikalno poravnaj na dno"],"Block vertical alignment setting\x04Vertically Align Middle":["Vertikalno poravnaj u sredinu"],"Replace Image":["Zamijeni sliku"],"Block vertical alignment setting\x04Vertically Align Top":["Vertikalno poravnaj na vrh"],"Display a legacy widget.":["Prika\u017ei naslije\u0111eni widget."],"Legacy Widget (Experimental)":["Naslije\u0111eni widget (Eksperimentalno)"],"Change widget":["Promijeni widget"],"Legacy Widget":["Naslije\u0111eni widget"],"You don't have permissions to use widgets on this site.":["Nemate dopu\u0161tenje za kori\u0161tenje widgeta na ovoj web-stranici."],"Select a legacy widget to display:":["Odaberite naslije\u0111eni widget za prikaz:"],"There are no widgets available.":["Nema dostupnih widgeta."],"Change block type or style":["Promijenite vrstu bloka ili stil"],"keyboard key\x04Space":["Razmaknica"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["Vi\u0161e kontrola oboga\u0107enog teksta"],"Search Terms":["Pojmovi pretrage"],"Exit the Editor":["Izlazak iz ure\u0111iva\u010da"],"Block Manager":["Upravitelj blokova"],"Class name of the widget.":["Naziv klase widgeta."],"Sorry, you are not allowed to access widgets on this site.":["Na\u017ealost, nemate dopu\u0161tenje za pristup widgetima na ovoj web-stranici."],"Widgets (beta)":["Widgeti (beta)"],link:["poveznica"],"Embedded content from %s can't be previewed in the editor.":["Ugra\u0111eni sadr\u017eaj s %s nije mogu\u0107e pretpregledati u ure\u0111iva\u010du."],"Custom Color":["Prilago\u0111ena boja"],"Prompt visitors to take action with a button-style link.":["Potaknite posjetitelje na akciju s poveznicom u obliku dugmeta."],"Stick to the top of the blog":["Zalijepi na vrh bloga"],"Read about permalinks":["Pro\u010ditajte vi\u0161e o stalnim vezama"],"The last part of the URL.":["Zadnji dio URL-a."],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["Oblak va\u0161ih najkori\u0161tenijih oznaka."],"Tag Cloud":["Oblak oznaka"],Taxonomy:["Taksonomija"],"Tag Cloud Settings":["Postavke Oblaka oznaka"],"- Select -":["- Odaberite -"],Default:["Izvorno"],find:["prona\u0111i"],"Help visitors find your content.":["Pomozite posjetiteljima da prona\u0111u va\u0161 sadr\u017eaj."],Search:["Pretraga"],"Add button text\u2026":["Dodaj tekst gumba..."],"Button text":["Tekst gumba"],"Optional placeholder\u2026":["Opcionalni zamjenski tekst"],"Optional placeholder text":["Opcionalni zamjenski tekst"],"Add label\u2026":["Dodaj natpis..."],"Label text":["Tekst natpisa"],"image %1$d of %2$d in gallery":["slika %1$d od %2$d u galeriji"],archive:["arhiva"],posts:["objave"],"A calendar of your site\u2019s posts.":["Kalendar objava va\u0161e web-stranice."],Calendar:["Kalendar"],by:["autora/ice"],"An error has occurred, which probably means the feed is down. Try again later.":["Do\u0161lo je do gre\u0161ke, \u0161to vjerojatno zna\u010di da je kanal onesposobljen. Poku\u0161ajte kasnije."],"RSS Error:":["RSS gre\u0161ka:"],"block style\x04Default":["Izvorno"],"Fullscreen mode deactivated":["Prikaz punog zaslona je deaktiviran."],"Fullscreen mode activated":["Prikaz punog zaslona je aktiviran."],"Spotlight mode deactivated":["Mod Sredi\u0161te pa\u017enje deaktiviran"],"Spotlight mode activated":["Mod Sredi\u0161te pa\u017enje aktiviran"],"Top toolbar deactivated":["Gornja alatna traka deativirana"],"Top toolbar activated":["Gornja alatna traka ativirana"],Back:["Povratak"],"Feature activated":["Zna\u010dajka aktivirana"],"Feature deactivated":["Zna\u010dajka deaktivirana"],"Vertical Pos.":["Vertikalna poz."],"Horizontal Pos.":["Horizontalna poz."],feed:["kanal"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Prika\u017eite unose s bilo kojeg RSS ili Atom kanala."],RSS:["RSS"],"Max number of words in excerpt":["Maksimalni broj rije\u010di u sa\u017eetku"],"Display excerpt":["Prika\u017ei sa\u017eetak"],"Display date":["Prika\u017ei datum"],"Display author":["Prika\u017ei autora"],"RSS Settings":["RSS Postavke"],"Edit RSS URL":["Uredi RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Sadr\u017eaj ispred ovog bloka biti \u0107e prikazan u sa\u017eetku na stranicama arhiva."],"Hide the excerpt on the full content page":["Sakrij sa\u017eetak na stranici s prikazom cijelog sadr\u017eaja"],"The excerpt is visible.":["Sa\u017eetak je vidljiv"],"The excerpt is hidden.":["Sa\u017eetak je skriven"],"Sorry, this content could not be embedded.":["Na\u017ealost ovaj sadr\u017eaj nije mogu\u0107e ugraditi."],"Embed Amazon Kindle content.":["Ugradi Amazon Kindle sadr\u017eaj."],ebook:["eknjiga"],"Embed Crowdsignal (formerly Polldaddy) content.":["Ugradi Crowdsignal (prija\u0161nji Polldaddy) sadr\u017eaj."],"Focal Point Picker":["Odabir \u017eari\u0161ne to\u010dke"],Underline:["Podcrtano"],"Attempt Block Recovery":["Poku\u0161aj oporavka bloka"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Sadr\u017eaj\u2026"],"button label\x04Convert to link":["Pretvori u poveznicu"],"button label\x04Try again":["Poku\u0161aj ponovo"],"Editor tips":["Savjeti ure\u0111iva\u010da"],"Block (selected)":["Blok (odabran)"],"Document (selected)":["Dokument (odabran)"],"%d word":["%d rije\u010di","%d rije\u010di","%d rije\u010di"],"Top Toolbar":["Gornja alatna traka"],"Link Rel":["Poveznica rel"],"Link CSS Class":["Pove\u017ei CSS klasu"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Izradite sadr\u017eaj i spremite ga za vas i ostale suradnike za ponovnu upotrebu na svojoj web-stranici. A\u017eurirajte blok i promjene se primjenjuju svugdje gdje se upotrebljava."],"To edit the featured image, you need permission to upload media.":["Kako bi izmijenili istaknutu sliku, treba vam dozvola za prijenos medija."],"To edit this block, you need permission to upload media.":["Da biste uredili ovaj blok, trebate dopu\u0161tenje za prijenos medija."],"(selected block)":["(odabrani blok)"],"Block tools":["Blok alati"],Permalink:["Stalna veza"],"This image has an empty alt attribute":["Ova slika ima prazan alt atribut"],"This image has an empty alt attribute; its file name is %s":["Ova slika ima prazan alt atribut ; naziv datoteke je %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":["Dodaj novi"],"add new on admin bar\x04Block Area":[],"Link inserted.":["Poveznica je unesena."],"Warning: the link has been inserted but may have errors. Please test it.":["Upozorenje: unesena je poveznica, ali mo\u017eda sadr\u017ei gre\u0161ke. Testirajte ju."],"%s block selected.":["%s odabran blok.","%s odabrana bloka.","%s odabranih blokova."],Thumbnail:["Minijatura"],"Full Size":["Puna veli\u010dina"],"Link selected.":["Poveznica je odabrana."],"Start writing with text or HTML":["Zapo\u010dnite pisati tekstom ili HTML-om"],"Type text or HTML":["Upi\u0161ite tekst ili HTML"],"Block icon":["Ikona bloka"],"Align Text Right":["Poravnaj tekst desno"],"Align Text Center":["Centriraj tekst"],"Align Text Left":["Poravnaj tekst lijevo "],"Start writing or type / to choose a block":["Zapo\u010dnite pisati ili upi\u0161ite / za odabir bloka"],"Empty block; start writing or type forward slash to choose a block":["Prazan blok; zapo\u010dnite pisati ili upi\u0161ite uzlaznu kosu crtu kako biste odabrali blok"],"Paragraph block":["Paragraf blok"],"Page Break":["Prijelom stranice"],"Stack on mobile":["Poslo\u017ei u niz na mobitelu"],Annotation:["Anotacija"],"Drag images, upload new ones or select files from your library.":["Povucite slike, prenesite nove ili odaberite datoteke iz svoje biblioteke."],"blocks\x04Most Used":["Naj\u010de\u0161\u0107e kori\u0161teni"],"imperative verb\x04Resolve":["Razrije\u0161i"],"font size name\x04Huge":["Ogroman"],"font size name\x04Large":["Velik"],"font size name\x04Medium":["Srednji"],"font size name\x04Small":["Mali"],"font size name\x04Normal":["Normalno"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Uvezi"],"button label\x04Download":["Preuzmi"],"button label\x04Embed":["Ugradi"],"block title\x04Embed":["Ugradnja"],"block title\x04Classic":["Klasi\u010dni"],"block style\x04Large":["Velik"],"%s (opens in a new tab)":["%s (otvara se u novoj kartici)"],"Link edited.":["Poveznica ure\u0111ena."],"Link removed.":["Poveznica uklonjena."],media:["medij"],"Double-check your settings before publishing.":["Dobro provjerite svoje postavke prije objave."],"Generating preview\u2026":["Stvaranje pretpregleda..."],"Edit or update the image":["Uredi ili a\u017euriraj sliku"],Media:["Medij"],"Navigate to the nearest toolbar.":["Kreni do najbli\u017ee alatne trake."],"Document tools":["Alati dokumenta"],"Document and block tools":["Alati dokumenta i bloka"],"Embed a video from your media library or upload a new one.":["Ugradite video iz zbirke medija ili prenesite novi."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Umetnite poeziju. Upotrijebite posebne oblike razmaka. Ili navedite tekstove pjesama."],"Add white space between blocks and customize its height.":["Dodajte bijeli prostor izme\u0111u blokova i prilagodite njegovu visinu."],"Insert additional custom elements with a WordPress shortcode.":["Umetnite dodatne prilago\u0111ene elemente pomo\u0107u WordPress kratkog koda."],"Create a break between ideas or sections with a horizontal separator.":["Kreirajte prekid izme\u0111u ideja ili odjeljaka s vodoravnim separatorom."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Dajte vizualni naglasak na citirani tekst. \"Navode\u0107i druge, navodimo se.\" - Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Pridodajte poseban vizualni naglasak citatu iz teksta."],"Start with the building block of all narrative.":["Po\u010dnite s gra\u0111evnim blokom svake pripovijesti."],"Separate your content into a multi-page experience.":["Razdvojite sadr\u017eaj na vi\u0161e stranica."],"Set media and words side-by-side for a richer layout.":["Postavite medijske zapise i tekst jednu uz drugo za bogatiji izgled."],"Media & Text Settings":["Postavke medija i teksta"],"Create a bulleted or numbered list.":["Stvori popis s grafi\u010dkim oznakama."],"Display a list of your most recent comments.":["Prika\u017eite popis va\u0161ih najnovijih komentara."],"Insert an image to make a visual statement.":["Ubacite sliku kako bi napravili vizualnu izjavu."],"Add custom HTML code and preview it as you edit.":["Dodaj proizvoljni HTML kod i pregledaj ga prilikom unosa."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Predstavite nove sekcije i organizirajte sadr\u017eaj kako bi pomogli posjetiteljima (i tra\u017eilicama) da razumiju strukturu va\u0161eg sadr\u017eaja."],"Display multiple images in a rich gallery.":["Prikaz vi\u0161e slika u bogatoj galeriji."],"Add a link to a downloadable file.":["Dodajte poveznicu na datoteku koja se mo\u017ee preuzeti."],"Embed videos, images, tweets, audio, and other content from external sources.":["Ugradite videozapise, slike, tweetove, audio i ostale sadr\u017eaje iz vanjskih izvora."],"Resize for smaller devices":["Promijenite veli\u010dinu za manje ure\u0111aje"],"This embed may not preserve its aspect ratio when the browser is resized.":["Ovaj ugra\u0111eni sadr\u017eaj mo\u017eda ne\u0107e sa\u010duvati omjer proporcija kada se promijeni veli\u010dina preglednika."],"This embed will preserve its aspect ratio when the browser is resized.":["Ovaj ugra\u0111eni sadr\u017eaj sa\u010duvat \u0107e omjer proporcija prilikom mijenjanja veli\u010dine preglednika."],"Embed an Animoto video.":["Ugradi Animoto sadr\u017eaj."],"Embed a Vimeo video.":["Ugradi Vimeo video."],"Embed Flickr content.":["Ugradi Flickr sadr\u017eaj."],"Embed Spotify content.":["Ugradi Spotify sadr\u017eaj."],"Embed SoundCloud content.":["Ugradi SoundCloud sadr\u017eaj."],"Embed a WordPress post.":["Ugradi WordPress objavu."],"Embed an Instagram post.":["Ugradi Instagram objavu."],"Embed a Facebook post.":["Ugradi Facebook objavu."],"Embed a WordPress.tv video.":["Ugradi WordPress.tv video."],"Embed a VideoPress video.":["Ugradi VideoPress video."],"Embed a Tumblr post.":["Ugradi Tumblr objavu."],"Embed a TED video.":["Ugradi TED video."],"Embed Speaker Deck content.":["Ugradi Speaker Deck sadr\u017eaj."],"Embed a YouTube video.":["Ugradi YouTube video."],"Embed SmugMug content.":["Ugradi SmugMug sadr\u017eaj."],"Embed Slideshare content.":["Ugradi Slideshare sadr\u017eaj."],"Embed Scribd content.":["Ugradi Scribd sadr\u017eaj."],"Embed Screencast content.":["Ugradi Screencast sadr\u017eaj."],"Embed ReverbNation content.":["Ugradi ReverbNation sadr\u017eaj."],"Embed a Reddit thread.":["Ugradi Reddit nit."],"Embed Polldaddy content.":["Ugradi Polldaddy sadr\u017eaj."],"Embed Mixcloud content.":["Ugradi Mixcloud sadr\u017eaj."],"Embed a tweet.":["Ugradi tweet."],"Embed Meetup.com content.":["Ugradi Meetup.com sadr\u017eaj."],"Embed Kickstarter content.":["Ugradi Kickstarter sadr\u017eaj."],"Embed Issuu content.":["Ugradi Issuu sadr\u017eaj."],"Embed Imgur content.":["Ugradi Imgur sadr\u017eaj."],"Embed Hulu content.":["Ugradi Hulu sadr\u017eaj."],"Embed a Dailymotion video.":["Ugradi Dailymotion video."],"Embed CollegeHumor content.":["Ugradi CollegeHumor sadr\u017eaj."],"Embed Cloudup content.":["Ugradi Cloudup sadr\u017eaj."],"Add an image or video with a text overlay \u2014 great for headers.":["Dodaj sliku ili video s tekstom koji ga prekriva \u2014 izvrsno za zaglavlje."],"Display code snippets that respect your spacing and tabs.":["Prika\u017ei isje\u010dak koda koji po\u0161tuje va\u0161e razmake i tabulatore."],"Use the classic WordPress editor.":["Upotrijebite klasi\u010dni WordPress ure\u0111iva\u010d."],"Display a list of all categories.":["Prika\u017eite popis svih kategorija."],"Embed a simple audio player.":["Ugradi jednostavan svira\u010d zvuka."],"noun\x04View":["Pregled"],"editor button\x04Left to right":["S lijeva na desno"],"Save as Pending":["Spremi pod Na \u010dekanju"],"%s address":["%s adresa"],"Paste or type URL":["Zalijepite ili upi\u0161ite URL"],"Insert from URL":["Dodaj s URL-a"],"Block Navigator":["Navigacija blokova"],Styles:["Stilovi"],"Advanced Panels":["Napredni paneli"],"Document Panels":["Dokument paneli"],General:["Op\u0107enito"],"Open the block navigation menu.":["Otvori navigacijski izbornik bloka."],"Work without distraction":["Radi bez ometanja"],"Focus on one block at a time":["Fokusiraj se na jedan po jedan blok"],"Access all block and document tools in a single place":["Na jednom mjestu pristupite svim alatima bloka i dokumenta."],Options:["Opcije"],"(opens in a new tab)":["(otvara se u novoj kartici)"],Minutes:["Minute"],Hours:["Sati"],Time:["Vrijeme"],Year:["Godina"],Day:["Dan"],December:["prosinac"],November:["studeni"],October:["listopad"],September:["rujan"],August:["kolovoz"],July:["srpanj"],June:["lipanj"],May:["svibanj"],April:["travanj"],March:["o\u017eujak"],February:["velja\u010da"],January:["sije\u010danj"],Month:["Mjesec"],Date:["Datum"],"Go to the first (home) or last (end) day of a week.":["Idite na prvi (home) ili zadnji (end) dan u tjednu."],"Home/End":["Home/End"],"Home and End":["Home i End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Pomakni se unazad (PgUp) ili unaprijed (PgDn) za jedan mjesec."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up i Page Down"],"Move backward (up) or forward (down) by one week.":["Idite nazad (up) ili naprijed (down) za jedan tjedan."],"Up and Down Arrows":["Strelice gore i dolje. "],"Move backward (left) or forward (right) by one day.":["Idite nazad (lijevo) ili naprijed (desno) po jedan dan."],"Left and Right Arrows":["Lijeva i desna strelica"],"Select the date in focus.":["Odaberite datum u fokusu."],"Navigating with a keyboard":["Kretanje pomo\u0107u tipkovnice"],"Click the desired day to select it.":["Klikom odaberite \u017eeljeni datum."],"Click the right or left arrows to select other months in the past or the future.":["Kliknite na desnu ili lijevu strelicu kako bi odabrali neki pro\u0161li ili budu\u0107i mjesec."],"Click to Select":["Kliknite za odabir."],"Calendar Help":["Pomo\u0107 za kalendar"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Upotrijebite strelice na tipkovnici kako bi odabrali osnovnu boju. Pomaknite gore kako bi posvijetlili boju, dolje kako bi ju potamnili, lijevo da smanjite zasi\u0107enost i desno kako bi pove\u0107ali zasi\u0107enost."],"Choose a shade":["Odaberite nijansu"],"Change color format":["Promijenite format boje"],"Color value in HSL":["HSL vrijednost boje"],"Color value in RGB":["RGB vrijednost boje"],"Color value in hexadecimal":["Heksadecimalna vrijednost boje"],"RGB mode active":["RGB na\u010din aktivan"],"Hex color mode active":["Heksadecimalni na\u010din boja aktivan "],"Hue/saturation/lightness mode active":["Hue/saturation/lightness na\u010din aktivan"],"Move the arrow left or right to change hue.":["Pomaknite strelicu lijevo ili desno kako bi promijenili ton boje."],"Hue value in degrees, from 0 to 359.":["Vrijednost tona boje u stupnjevima, od 0 do 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alfa vrijednost, od 0 (prozirno) do 1 (potpuno neprozirno)."],Stripes:["Prugice"],"Your site doesn\u2019t include support for this block.":["Va\u0161a web-stranica ne uklju\u010duje podr\u0161ku za ovaj blok."],"Unrecognized Block":["Neprepoznati blok."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Va\u0161a web-stranica ne sadr\u017ei podr\u0161ku za \"%s\" blok. Mo\u017eete ostaviti ovaj blok nedirnutim ili ga ukloniti u potpunosti."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Va\u0161a web-stranica ne sadr\u017ei podr\u0161ku za \"%s\" blok. Mo\u017eete ostaviti ovaj blok nedirnutim, pretvoriti njegov sadr\u017eaj u Prilago\u0111eni HTML blok, ili ga ukloniti u potpunosti."],"Media area":["Podru\u010dje za medij"],"Media & Text":["Medij i tekst"],"Show media on right":["Prika\u017ei medij na desnoj strani."],"Show media on left":["Prika\u017ei medij na lijevoj strani."],"Open in New Tab":["Otvori u novoj kartici"],Cover:["Naslovna slika"],"Border Settings":["Postavke obruba"],"Edit media":["Uredi medij"],Medium:["Srednja veli\u010dina"],"Paste URL or type to search":["Zalijepite URL ili utipkajte za pretragu."],Terms:["Pojmovi"],"Your work will be published at the specified date and time.":["Va\u0161e djelo bit \u0107e objavljeno na dan i u vrijeme koje ste odredili."],"Are you ready to schedule?":["Jeste li spremni za zakazivanje?"],"Always show pre-publish checks.":["Uvijek prika\u017ei provjere prije objavljivanja."],"Take Over":["Preuzmi"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Drugi korisnik trenutno radi na ovoj objavi. To zna\u010di da ne mo\u017eete raditi izmjene osim ako ne preuzmete ure\u0111ivanje."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s trenutno radi na ovoj objavi. To zna\u010di da ne mo\u017eete raditi izmjene osim ako ne preuzmete ure\u0111ivanje."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Drugi korisnik sada ima kontrolu nad ure\u0111ivanjem ove objave. Ne brinite, va\u0161e promjene koje ste napravili do ovog trenutka su spremljene."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s sada ima kontrolu nad ure\u0111ivanjem ove objave. Ne brinite, va\u0161e promjene koje ste napravili do ovog trenutka su spremljene."],Avatar:["Avatar"],"This post is already being edited.":["Objava se ve\u0107 ure\u0111uje."],"Someone else has taken over this post.":["Netko drugi je preuzeo ovu objavu."],"This block contains unexpected or invalid content.":["Ovaj blok ima u sebi neo\u010dekivani ili neispravni sadr\u017eaj."],"Resolve Block":["Razrije\u0161i blok"],"Convert to HTML":["Pretvori u HTML"],"This block can only be used once.":["Ovaj blok se mo\u017ee iskoristiti samo jednom."],"Exit Code Editor":["Iza\u0111i iz ure\u0111iva\u010da koda"],"Editing Code":["Ure\u0111ivanje koda"],"Solid Color":["Puna boja"],"Main Color":["Glavna boja"],HTML:["HTML"],"Write HTML\u2026":["Napi\u0161ite HTML..."],"Media Settings":["Postavke medija"],"Overlay Color":["Prekrivaju\u0107a boja"],Overlay:["Prekrivaju\u0107i element"],"Insert Media":["Unesi medijski zapis"],"Reusable block imported successfully!":["Vi\u0161ekratno upotrebljivi blok je uspje\u0161no uvezen!"],"Invalid Reusable Block JSON file":["Neispravna JSON datoteka vi\u0161ekratno upotrebljivog bloka"],"Invalid JSON file":["Neispravna JSON datoteka"],"Import from JSON":["Uvezi iz JSON-a"],Backtick:["Backtick"],Period:["To\u010dka"],Comma:["Zarez"],"Change type of %d block":["Promijenite vrstu za %d blok. ","Promijenite vrstu za %d bloka. ","Promijenite vrstu za %d blokova. "],Current:["Trenutni"],"After Conversion":["Nakon pretvorbe"],"Change alignment":["Promjeni poravnanje"],"Change text alignment":["Promjeni poravnanje teksta"],"%d block":["%d blok","%d bloka","%d blokova"],Escape:["Escape tipka"],"Forward-slash":["Prednja kosa crta"],"No archives to show.":["Nema arhiva za prikazati."],"This file is empty.":["Ova datoteka je prazna."],"Sorry, this file type is not supported here.":["Na\u017ealost, ova vrsta datoteke nije podr\u017eana ovdje."],"Manage All Reusable Blocks":["Upravljanje svim vi\u0161ekratno upotrebljivim blokovima"],Title:["Naslov"],"Fullscreen Mode":["Re\u017eim punog zaslona"],"Beautiful landscape":["Prekrasni krajolik"],"Close panel":["Zatvori panel"],"Convert to Classic Block":["Pretvori u Klasi\u010dni blok"],"Remove Poster Image":["Ukloni Poster sliku"],"Select Poster Image":["Odaberi poster sliku"],"Poster Image":["Poster slika"],"This block is deprecated. Please use the Columns block instead.":["Ovaj blok je zastario. Umjesto njega upotrijebite blok Stupce."],"Text Columns (deprecated)":["Tekstualni stupac (zastarjelo)"],"Row Count":["Broj redova"],"Column Count":["Broj stupaca"],"This block is deprecated. Please use the Paragraph block instead.":["Ovaj blok je zastario. Umjesto njega upotrijebite blok Paragraf."],"Subheading (deprecated)":["Podnaslov (zastarjelo)"],blockquote:["citat"],"Change the block type after adding a new paragraph.":["Promijenite vrstu bloka nakon dodavanja novog paragrafa."],"Spotlight Mode":["Istakni aktivni blok"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Oznake poma\u017eu korisnicima i tra\u017eilicama s kori\u0161tenjem va\u0161e web-stranice i pronalaskom sadr\u017eaja. Dodajte nekoliko klju\u010dnih rije\u010di kako bi opisali objavu."],"Add tags":["Dodaj oznake"],"Apply the \"%1$s\" format.":["Primjeni \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Va\u0161 tema koristi formate objava kako bi istaknula razli\u010dite vrste sadr\u017eaja, kao \u0161to su slike ili video. Primijenite formate objave kako bi vidjeli posebni stil."],"Use a post format":["Upotrijebit format objave"],"Insert After":["Ubaci nakon"],"Insert Before":["Ubaci prije"],"Move %1$d block from position %2$d down by one place":["Pomakni %1$d blok iz pozicije %2$d dolje za jedno mjesto.","Pomakni %1$d bloka iz pozicije %2$d dolje za jedno mjesto.","Pomakni %1$d blokova iz pozicije %2$d dolje za jedno mjesto."],"Move %1$d block from position %2$d up by one place":["Pomakni %1$d blok iz pozicije %2$d gore za jedno mjesto.","Pomakni %1$d bloka iz pozicije %2$d gore za jedno mjesto.","Pomakni %1$d blokova iz pozicije %2$d gore za jedno mjesto."],"Move %1$s block from position %2$d %3$s to position %4$d":["Pomakni %1$s blok iz pozicije %2$d %3$s na poziciju %4$d"],movie:["film"],"Insert a new block before the selected block(s).":["Ubaci novi blok ispred odabranog bloka/blokova."],"Remove the selected block(s).":["Ukloni odabrani blok/blokove."],"Duplicate the selected block(s).":["Dupliciraj odabrani blok/blokove."],"Block shortcuts":["Blok pre\u010daci"],"Clear selection.":["Obri\u0161i selekciju."],"Select all text when typing. Press again to select all blocks.":["Odaberite cijeli tekst tijekom tipkanja. Kliknite ponovno za odabir svih blokova."],"Selection shortcuts":["Pre\u010daci odabira"],"Switch between Visual Editor and Code Editor.":["Prebaci izme\u0111u Vizualnog ure\u0111iva\u010da i Ure\u0111iva\u010da koda."],"Navigate to the previous part of the editor (alternative).":["Povratak na prethodni dio ure\u0111iva\u010da (alternativa)."],"Navigate to the next part of the editor (alternative).":["Kreni na sljede\u0107i dio ure\u0111iva\u010da (alternativa)."],"Navigate to the previous part of the editor.":["Kreni na prethodni dio ure\u0111iva\u010da."],"Navigate to the next part of the editor.":["Kreni na sljede\u0107i dio ure\u0111iva\u010da."],"Show or hide the settings sidebar.":["Sakrij ili prika\u017ei postavke bo\u010dne trake."],"Redo your last undo.":["Vrati zadnje poni\u0161tavanje."],"Undo your last changes.":["Poni\u0161ti zadnje promjene."],"Save your changes.":["Spremi promjene."],"Global shortcuts":["Globalne pre\u010dice"],"Remove a link.":["Ukloni poveznicu."],"Convert the selected text into a link.":["Pretvori odabrani tekst u poveznicu."],"Underline the selected text.":["Podcrtaj odabrani tekst."],"Make the selected text italic.":["Modificiraj odabrani tekst kao kurziv."],"Make the selected text bold.":["Modificiraj odabrani tekst kao podebljan."],"Text formatting":["Formatiranje teksta"],"Insert a new block after the selected block(s).":["Ubaci novi blok nakon odabranog bloka/blokova."],"Keyboard Shortcuts":["Tipke pre\u010daca"],"Thanks for testing Gutenberg!":["Hvala \u0161to testirate Gutenberg!"],"Help build Gutenberg":["Pomozite izgraditi Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Ako \u017eelite nau\u010diti vi\u0161e kako izgraditi dodatne blokove, ili ste zainteresirani pomo\u0107i s projektom, po\u0111ite na GitHub repozitorij."],"The WordPress community":["WordPress zajednica"],"Code is Poetry":["Kod je poezija"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Mo\u017eete izgraditi bilo kakav blok, stati\u010dni ili dinami\u010dni, dekorativni ili obi\u010dni. Ovo je blok citata:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Svaki blok se mo\u017ee podesiti poravnanjima. Blok ugradbenog koda tako\u0111er ih ima, i prilagodljiv je:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Iznad se nalazi galerija s dvije slike. To je jednostavniji na\u010din kako kreirati vizualno privla\u010dne prijelome, bez da se morate brinuti o CSS float. Tako\u0111er jednostavno mo\u017eete pretvoriti galeriju nazad u individualne slike, koriste\u0107i prebaciva\u010d bloka."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Da, ponekad slika pune \u0161irine mo\u017ee biti velika. Ali ponekad slika je vrijedna toga."],"Accessibility is important — don’t forget image alt attribute":["Pristupa\u010dnost je va\u017ena — ne zaboravite alt atribute slike"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Ako kombinirate nove poravnanja \u0161iroko i pune \u0161irine s galerijama, mo\u017eete kreirati prijelom vrlo bogat medijskim zapisima, vrlo brzo:"],"Media Rich":["Bogato medijima"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Mo\u017eete promijeniti broj stupaca u va\u0161im galerijama povla\u010de\u0107i kliza\u010d u inspektoru bloka u bo\u010dnoj traci."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blokovi mogu biti sve \u0161to trebate. Na primjer, mo\u017eda \u017eelite dodati mali citat kao dio kompozicije va\u0161eg teksta, ili mo\u017eda ga \u017eelite prikazati kao veliki. Sve ove opcije su dostupne."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Informacije o izvoru citata nalazi se u posebnom tekstualnom polju, sli\u010dno opisima ispod slika, tako da je struktura citata za\u0161ti\u0107ena \u010dak i ako odaberete, modificirate ili uklonite izvor. Uvijek je lako vratiti to nazad."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["Ure\u0111iva\u010d je namijenjen da postigne ugodno iskustvo kreiranja novih stranica i objava, i sadr\u017ei \u201cblokove\u201d koji \u0107e olak\u0161ati posao za koji su trebali kratki kodovi, korisni\u010dki HTML ili \u201czagonetne\u201d ugradbene kodove. "],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Velika prednost blokova je da ih mo\u017eete urediti na licu mjesta i manipulirati sadr\u017eajem direktno. Umjesto da morate imate polja za ure\u0111ivanje stvari poput izvora citata, ili teksta dugmeta, mo\u017eete direktno promijeniti sadr\u017eaj. Poku\u0161ajte urediti sljede\u0107i citat:"],"Visual Editing":["Vizualno ure\u0111ivanje"],"And Lists like this one of course :)":["I Lista popute ove :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blok prijeloma, poput Dugme, Naslovna slika, Razdjelnici, itd."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Ugradbeni kodovi poput YouTube, Tweetovi, ili druge WordPress objave."],Galleries:["Galerije"],"Images & Videos":["Slike i video"],"Text & Headings":["Tekst i naslovi"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Isprobajte i mo\u017eda otkrijete stvari koje WordPress ve\u0107 sad mo\u017ee dodati u va\u0161e objave a za koje niste znali. Ovo je kratki popis \u0161to trenutno mo\u017eete prona\u0107i:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Zamislite da je sve \u0161to WordPress mo\u017ee u\u010diniti jednostavno dostupno i na istom mjestu u su\u010delju. Ne trebate znati HTML oznake, klase ili pamtiti komplicirane kratke kodove. To je ideja koja stoji iza dugmeta umetanja sadr\u017eaja \u2014 (+) dugme koje \u0107ete vidjeti u ure\u0111iva\u010du\u2014koje vam omogu\u0107uje pregledavanje svih dostupnih blokova sadr\u017eaja i dodavanje u objave. Dodaci i teme mogu registrirati svoje blokove, \u0161to otvara svakakve mogu\u0107nosti za bogato ure\u0111ivanje i izdava\u0161tvo."],"The Inserter Tool":["Alat umetanja sadr\u017eaja"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Poku\u0161ajte odabrati i ukloniti opis slike, sada vi\u0161e ne morate biti brinuti o slu\u010dajnom odabiru slike ili teksta i da upropastite prezentaciju."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Ako va\u0161a tema podr\u017eava, vidjeti \u0107ete \"duga\u010dko\" dugme u alatnoj traci slike. Isprobajte."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Rukovanje slikama i medijskim zapisima s najve\u0107om brigom, primarni je fokus novog ure\u0111iva\u010da. Nadamo se da \u0107e vam novi na\u010din dodavanja opisa slike ili prikaza slike pune \u0161irine biti puno jednostavniji i robusniji nego prije."],"A Picture is Worth a Thousand Words":["Slika govori vi\u0161e nego tisu\u0107u rije\u010di"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Naslovi su tako\u0111er odovojeni blok, \u0161to poma\u017ee s strukturom i organizacijom va\u0161eg sadr\u017eaja."],"... like this one, which is right aligned.":["... poput ove, koje je poravnata desno."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Ovo \u0161to \u010ditate je tekstualni blok najosnovniji blok od svih. Tekstualni blok ima svoje kontrole za slobodno pomicanje po objavi…"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Cilj ovog novog ure\u0111iva\u010da je u\u010diniti dodavanje bogatog sadr\u017eaja u WordPress jednostavnim i ugodnim. Ova cijela objava je sastavljena od dijelova sadr\u017eaja\u2014sli\u010dno LEGO kockama\u2014koje mo\u017eete pomicati okolo i pode\u0161avati. Pomaknite kursor mi\u0161a i vidjeti \u0107ete kako razli\u010diti blokovi osvijetle s obrubom i strelicama. Kliknite na strelice kako bi brzo premjestili blokove, bez bojazni da \u0107ete izgubiti stvari u procesu."],"Of Mountains & Printing Presses":["O planinama i tiskarskim strojevima"],"Welcome to the Gutenberg Editor":["Dobro do\u0161li u Gutenberg ure\u0111iva\u010d"],"block name\x04More":["Vi\u0161e"],"button to expand options\x04More":["Vi\u0161e"],"Are you sure you want to unschedule this post?":["Sigurno \u017eelite ukloniti zakazno vrijeme objave?"],"Alt Text (Alternative Text)":["Alt tekst (Alternativni tekst)"],"Reusable Block":["Vi\u0161ekratno upotrebljivi blok"],"Unique identifier for the object.":["Unikatni identifikator objekta."],"Untitled Reusable Block":["Vi\u0161ekratno upotrebljivi blok bez naslova"],Small:["Malo"],"(%s: %s)":["(%s: %s)"],Reusable:["Vi\u0161ekratno upotrebljivi"],"(current %s: %s)":["(trenutno %s: %s)"],"Remove from Reusable Blocks":["Ukloni iz vi\u0161ekratno upotrebljivih blokova"],"Add to Reusable Blocks":["Dodaj u vi\u0161ekratno upotrebljive blokove"],"Keep as HTML":["Zadr\u017ei kao HTML"],"Edit URL":["Uredi URL"],"Color Settings":["Postavke boje"],"The response is not a valid JSON response.":["Odgovor nije ispravni JSON odgovor."],"Editor publish":["Objava ure\u0111iva\u010da"],Muted:["Isklju\u010den zvuk"],"Video Settings":["Video postavke"],"recent comments":["nedavni komentari"],"Latest Comments":["Najnoviji komentari"],"Display Excerpt":["Prika\u017ei sa\u017eetak"],"Display Date":["Prika\u017ei datum"],"Display Avatar":["Prika\u017ei avatar"],"Latest Comments Settings":["Postavke najnovijih komentara"],"Number of Comments":["Broj komentara"],"Background Opacity":["Neprozirnost pozadine"],Auto:["Auto"],Preload:["Predu\u010ditavanje"],"Audio Settings":["Audio postavke"],"Display a monthly archive of your posts.":["Prika\u017eite mjese\u010dni arhiv va\u0161ih objava."],"Display as Dropdown":["Prika\u017ei kao padaju\u0107i popis"],"Show Post Counts":["Prika\u017ei broj objava"],"Archives Settings":["Postavke arhiva"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Podr\u0161ka"],"No comments to show.":["Nema komentara za prikaz."],"%1$s on %2$s":["%1$s o %2$s"],"Select Post":["Odaberite objavu"],"Select Week":["Odaberite tjedan"],"Select Day":["Odaberite dan"],"Select Month":["Odaberi mjesec"],"Select Year":["Odaberite godinu"],Archives:["Arhiva"],"Very dark gray":["Vrlo tamno siva"],"Cyan bluish gray":["Cijan plavkasto siva"],"Very light gray":["Jako svjetlo siva"],"Vivid cyan blue":["Jasno cijan plava"],"Pale cyan blue":["Blijeda cijan plava"],"Vivid green cyan":["Jasno zeleno cijan"],"Light green cyan":["Svijetlo zeleno cijan"],"Luminous vivid amber":["Luminozno jasna \u017euta"],"Luminous vivid orange":["Luminozno jasna naran\u010dasta"],"Vivid red":["Jasno crvena"],"Pale pink":["Blijedo roza"],"Inline image":["Umetnuta slika"],"Available block types":["Dostupne vrste blokova"],"Transform To:":["Transformiraj u:"],"Remove Block":["Ukloni blok"],"Open publish panel":["Otvori panel objave"],Dots:["To\u010dke"],"Wide Line":["\u0160iroka linija"],Large:["Velika"],"Show download button":["Prika\u017ei dugme Preuzimanje"],"Download button settings":["Postavke dugmeta Preuzimanje"],"Link To":["Poveznica za"],"Text link settings":["Postavke teksta poveznice"],pdf:["pdf"],document:["dokument"],"Copy URL":["Kopiraj URL"],"Write file name\u2026":["Upi\u0161ite ime datoteke\u2026"],"Edit file":["Uredi datoteku"],File:["Datoteka"],"A single column within a columns block.":["Jedan stupac unutar bloka stupci."],Column:["Stupac"],Outline:["Struktura"],Loop:["Petlja"],Autoplay:["Autoplay"],"Playback Controls":["Kontrole reprodukcije"],"Close dialog":["Zatvori dialog"],"Sorry, this file type is not permitted for security reasons.":["Na\u017ealost, ova vrsta datoteka nije dozvoljena iz sigurnosnih razloga."],"Disable tips":["Isklju\u010di savjete"],"Got it":["Shva\u0107am"],"See next tip":["Prika\u017ei sljede\u0107i savjet"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Kada ste spremni, predajte svoje djelo na recenziju i Urednik \u0107e mo\u0107i to odobriti za vas."],"Are you ready to submit for review?":["Jeste li spremni predati za recenziju?"],"Replace image":["Zamijeni sliku"],"Remove image":["Ukloni sliku"],"Error while uploading file %s to the media library.":["Gre\u0161ka pri prijenosu datoteke %s u medijsku zbirku."],"This file exceeds the maximum upload size for this site.":["Ova datoteka je prema\u0161ila maksimalno dozvoljenu veli\u010dinu za prijenos za ovu web stranicu."],"View the autosave":["Pregledaj automatsku snimku."],"There is an autosave of this post that is more recent than the version below.":["Postoji automatska snimka ove objave koja je a\u017eurnija od ina\u010dice ispod."],Autosaving:["Automatsko spremanje"],"Enter URL here\u2026":["Ovdje unesite URL..."],"Pin to toolbar":["Pribodi u alatnu traku"],"Unpin from toolbar":["Makni iz alatne trake"],"Insert a table \u2014 perfect for sharing charts and data.":["Ubacite tablicu -- savr\u0161eno za dijeljenje dijagrama i podataka."],"Fixed width table cells":["Fiksna \u0161irina \u0107elija tablice"],"Table Settings":["Postavke tablice"],"Add text that respects your spacing and tabs, and also allows styling.":["Dodajte tekst koji po\u0161tuje razmak i tabove, i dozvoljava stiliziranje."],"Display a list of your most recent posts.":["Prika\u017eite listu najnovijih objava."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Dodajte blok koji prikazuje sadr\u017eaj sa drugih web-stranica, poput Twittera, Instagrama ili YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Dodajte blok koji prikazuje sadr\u017eaj organiziran u stupce, a zatim dodajte blokove s \u017eeljenim sadr\u017eajem."],"Error loading block: %s":["Gre\u0161ka pri u\u010ditavanju bloka: %s"],"Unknown error":["Nepoznata gre\u0161ka."],"Embed Handler":["Upravlja\u010dki sklop ugradbenog koda"],"term\x04Remove %s":["Ukloni %s"],"Copy the permalink":["Kopiraj stalnu vezu"],"Permalink copied":["Stalna veza je kopirana"],"Height in pixels":["Visina u pikselima"],"Spacer Settings":["Postavke razmaka"],Spacer:["Razmak"],"Toggle to show a large initial letter.":["Prebacite kako bi prikazali ve\u0107e po\u010detno slovo."],"Showing large initial letter.":["Prikazuje se ve\u0107e po\u010detno slovo."],"Name:":["Ime:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Ukloni stavku"],"Color code: %s":["Kod boje: %s"],"Skip to the selected block":["Presko\u010di do odabranog bloka."],"Publish\u2026":["Objavi..."],"Schedule\u2026":["Tempiranje..."],"Edit post permalink":["Uredi stalnu vezu objave"],"Show Block Settings":["Prika\u017ei postavke bloka"],"Hide Block Settings":["Sakrij postavke bloka"],"Block settings closed":["Postavke bloka su zatvorene"],"Close plugin":["Zatvori dodatak"],"Link settings":["Postavke poveznice"],Unlink:["Ukloni poveznicu"],"Page break":["Prijelom stranice"],pagination:["numeriranje stranica"],"next page":["slijede\u0107a stranica"],"Image Size":["Veli\u010dina slike"],Height:["Visina"],Width:["\u0160irina"],"Image Dimensions":["Dimenzije slike"],"Thumbnails are not cropped.":["Sli\u010dice nisu izrezane."],"Thumbnails are cropped to align.":["Sli\u010dice su izrezane kako bi se poravnale."],"Media Library":["Zbirka medija"],Advanced:["Napredno"],"Add item":["Dodaj stavku."],"Reset the template":["Ponovno postavi predlo\u017eak."],"Keep it as is":["Zadr\u017ei kako je trenutno."],"The content of your post doesn\u2019t match the template assigned to your post type.":["Sadr\u017eaj va\u0161e objave ne podudara se s predlo\u0161kom koji je dodijeljen vrsti objave."],"Resetting the template may result in loss of content, do you want to continue?":["Ponovno postavljanje predlo\u0161ka mo\u017ee rezultirati s gubitkom sadr\u017eaja, \u017eelite li nastaviti?"],"Document Statistics":["Statistika dokumenta"],"is now scheduled. It will go live on":["sad je tempirana. Postat \u0107e javna u"],Scheduled:["Tempirano"],"Scheduling\u2026":["Tempiranje..."],"Code editor selected":["Odabrani ure\u0111iva\u010d koda"],"Visual editor selected":["Odabrani vizualni ure\u0111iva\u010d"],Plugins:["Dodaci"],"Custom Size":["Prilago\u0111ena veli\u010dina"],"Layout Elements":["Elementi konstrukcije"],"term\x04%s removed":["%s uklonjeno"],"term\x04%s added":["%s dodano"],"imperative verb\x04Preview":["Pretpregled"],"Block deleted.":["Blok obrisan."],"Block updated.":["Blok a\u017euriran."],"Block created.":["Blok kreiran."],"Trashing failed":["Premje\u0161tanje u sme\u0107e nije uspjelo."],"Updating failed.":["A\u017euriranje nije uspjelo."],"Scheduling failed.":["Tempiranje nije uspjelo."],"Publishing failed.":["Objavljivanje nije uspjelo."],"View Post":["Pregledaj objavu"],"You have unsaved changes. If you proceed, they will be lost.":["Imate nespremljene promjene. Ako nastavite, bit \u0107e izgubljene."],"Document Outline":["Konture dokumenta"],Paragraphs:["Paragrafi"],Headings:["Naslovi"],Words:["Rije\u010di"],"Content structure":["Struktura sadr\u017eaja"],Public:["Javno"],"Protected with a password you choose. Only those with the password can view this post.":["Za\u0161ti\u0107eno s odabranom lozinkom. Samo oni koji znaju lozinku mogu vidjeti ovu objavu."],"Password Protected":["Za\u0161ti\u0107eno lozinkom"],"Only visible to site admins and editors.":["Vidljivo samo administratorima i urednicima."],Private:["Privatno"],"Visible to everyone.":["Vidljivo svima."],"Post Visibility":["Vidljivost objave"],"Would you like to privately publish this post now?":["\u017delite li sada privatno objaviti ovu objavu?"],"Use a secure password":["Upotrijebite sigurnu lozinku"],"Create password":["Kreiraj lozinku"],"Move to Trash":["Premjesti u sme\u0107e"],"Parent Term":["Mati\u010dni pojam"],"Parent Category":["Mati\u010dna kategorija"],"Add new term":["Dodaj novi pojam"],"Add new category":["Dodaj novu kategoriju"],Term:["Pojam"],Tag:["Oznaka"],"Add New Term":["Dodaj novi pojam"],"Add New Tag":["Dodaj novu oznaku"],"Switch to Draft":["Promijeni u skicu"],"Are you sure you want to unpublish this post?":["Sigurno \u017eelite postaviti ovu objavu kao neobjavljenu?"],Immediately:["Odmah"],"Save Draft":["Spremi skicu"],Saving:["Spremanje"],"Publish:":["Objavi:"],"Visibility:":["Vidljivost:"],"Are you ready to publish?":["Jeste li spremni objaviti?"],"Copy Link":["Kopiraj poveznicu"],"What\u2019s next?":["\u0160to je slijede\u0107e?"],"is now live.":["sada je objavljeno."],Published:["Objavljeno"],Schedule:["Tempiraj"],Update:["A\u017euriraj"],"Submit for Review":["Podnesi na recenziju"],"Updating\u2026":["A\u017euriranje..."],"Publishing\u2026":["Objavljivanje..."],"Allow Pingbacks & Trackbacks":["Dopusti povratne pingove i povratne veze"],"Permalink:":["Stalna veza:"],"Pending Review":["\u010ceka recenziju"],"%d Revision":["%d revizija","%d revizije","%d revizija"],"Suggestion:":["Prijedlozi:"],"Post Format":["Vrsta objave"],Chat:["\u010cavrljanje"],Status:["Status"],Standard:["Standardno"],Aside:["Crtica"],"Set Featured Image":["Postavi istaknutu sliku"],"Learn more about manual excerpts":["Saznajte vi\u0161e o ru\u010dnim sa\u017eecima"],"Write an excerpt (optional)":["Napi\u0161ite sa\u017eetak (opcionalno)"],"Allow Comments":["Dopusti komentare"],"Template:":["Predlo\u017eak:"],"no parent":["bez mati\u010dnog"],"no title":["nema naslova"],Order:["Redoslijed"],"No blocks found.":["Blokovi nisu prona\u0111eni."],"%d result found.":["%d prona\u0111en rezultat.","%d prona\u0111ena rezultata.","%d prona\u0111enih rezultata."],Saved:["Spremljeno"],Embeds:["Ugradnje"],Blocks:["Blokovi"],"Search for a block":["Pretraga za blokom"],"Add block":["Dodaj blok"],"Add %s":["Dodaj %s"],"Copy Error":["Gre\u0161ka kopiranja"],"Copy Post Text":["Kopiraj tekst objave"],"Attempt Recovery":["Poku\u0161aj oporavka"],"The editor has encountered an unexpected error.":["Ure\u0111iva\u010d se suo\u010dio s neo\u010dekivanom gre\u0161kom."],Undo:["Poni\u0161ti"],Redo:["Vrati poni\u0161tenu radnju"],"(Multiple H1 headings are not recommended)":["(Nije preporu\u010deno imati vi\u0161e H1 naslova)"],"(Your theme may already use a H1 for the post title)":["(Mogu\u0107e je da va\u0161a tema ve\u0107 koristi H1 za naslov objave)"],"(Incorrect heading level)":["(Neispravni nivo naslova)"],"(Empty heading)":["(Prazan naslov)"],"Block Styles":["Stilovi blokova"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Sigurno \u017eelite obrisati ovaj Vi\u0161ekratno upotrebljivi blok?\n\nBiti \u0107e trajno uklonjen iz svih objava i stranica koje ga koriste."],"Convert to Regular Block":["Pretvori u Regularni blok"],"More options":["Vi\u0161e opcija"],"Edit visually":["Uredi vizualno"],Duplicate:["Dupliciraj"],"Blocks cannot be moved down as they are already at the bottom":["Blokovi se ne mogu pomaknuti dolje jer se ve\u0107 nalaze na dnu"],"Blocks cannot be moved up as they are already at the top":["Blokovi se ne mogu pomaknuti gore jer se ve\u0107 nalaze na vrhu"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Blok %1$s je na po\u010detku sadr\u017eaja i ne mo\u017ee se pomaknuti %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Blok %1$s je na kraju sadr\u017eaja i ne mo\u017ee se pomaknuti %2$s"],"Block %s is the only block, and cannot be moved":["Blok %s je jedini blok, i ne mo\u017ee se pomaknuti"],"Edit as HTML":["Uredi kao HTML"],"Convert to Blocks":["Pretvori u Blokove"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Ovaj blok je suo\u010den s gre\u0161kom i ne mo\u017ee se pretpregledati."],"No block selected.":["Nijedan blok nije odabran."],"Transform into:":["Pretvori u:"],Remove:["Ukloni"],"Find original":["Prona\u0111i original"],"Copy All Content":["Kopiraj sav sadr\u017eaj"],"Copied!":["Kopirano!"],"Additional settings are now available in the Editor block settings sidebar":["Sad su dostupne dodatne postavke u bo\u010dnoj traci postavki ure\u0111iva\u010da bloka."],Visibility:["Vidljivost"],"Status & Visibility":["Status i vidljivost"],"Page Attributes":["Atributi stranice"],Block:["Blok"],Document:["Dokument"],"Featured Image":["Istaknuta slika"],"Close settings":["Zatvori postavke"],"Editor content":["Ure\u0111iva\u010d sadr\u017eaja"],Tools:["Alati"],Editor:["Ure\u0111iva\u010d"],"Code Editor":["Ure\u0111iva\u010d koda"],"Visual Editor":["Vizualni ure\u0111iva\u010d"],"Editor top bar":["Alatna traka ure\u0111iva\u010da"],Settings:["Postavke"],Reset:["Ponovno postavi"],"Dismiss this notice":["Zatvori ovu obavijest "],"Item removed.":["Stavka je uklonjena."],"Item added.":["Stavka dodana."],"Drop files to upload":["Ispustite zapise za prijenos"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Pojavila se nepoznata gre\u0161ka"],"No results.":["Nema rezultata."],"%d result found, use up and down arrow keys to navigate.":["%d rezultat prona\u0111en, za navigaciju upotrijebite tipke sa strelicama za pomicanje prema gore i dolje.","%d rezultata prona\u0111eno, za navigaciju upotrijebite tipke ss strelicama za pomicanje prema gore i dolje.","%d rezultata prona\u0111eno, za navigaciju upotrijebite tipke ss strelicama za pomicanje prema gore i dolje."],"(no title)":["(bez naslova)"],URL:["URL"],Submit:["Po\u0161alji"],Close:["Zatvori"],"Insert link":["Unesi poveznicu"],"Edit link":["Uredi poveznicu"],Link:["Poveznica"],Strikethrough:["Precrtano"],Italic:["Kurziv"],Bold:["Podebljano"],"Remove link":["Ukloni poveznicu"],"Number of items":["Broj stavki"],All:["Svi"],Category:["Kategorija"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Od starijeg prema novijem"],"Newest to Oldest":["Od novijeg prema starijem"],"Order by":["Rasporedi po"],Select:["Odaberi"],"Select or Upload Media":["Odaberite ili prenesite medijski zapis"],Video:["Video"],"Edit video":["Uredi video"],"Write\u2026":["Pi\u0161ite..."],poetry:["poeziju"],Verse:["Stih"],"New Column":["Novi stupac"],"Delete Column":["Obri\u0161i stupac"],"Add Column After":["Dodaj stupac nakon"],"Add Column Before":["Dodaj stupac prije"],"Delete Row":["Obri\u0161i red"],"Add Row After":["Dodaj red nakon"],"Add Row Before":["Dodaj red prije"],"Edit table":["Uredi tablicu"],Table:["Tablica"],"Write subheading\u2026":["Napi\u0161ite podnaslov..."],"Write shortcode here\u2026":["Ovdje napi\u0161ite kratki kod..."],Shortcode:["Kratki kod"],divider:["razdjelnik"],"horizontal-line":["horizontalna-linija"],Separator:["Separator"],Quote:["Citat"],"Write citation\u2026":["Napi\u0161ite citiranje..."],"Write quote\u2026":["Napi\u0161ite citat..."],Pullquote:["Uvu\u010deni citat"],"Write preformatted text\u2026":["Napi\u0161ite pred-formatirani tekst..."],Preformatted:["Predoblikovano"],text:["tekst"],Paragraph:["Odlomak"],"Font Size":["Veli\u010dina slova"],"Drop Cap":["Veliko po\u010detno slovo"],"Text Settings":["Postavke teksta"],"Read more":["Vi\u0161e informacija"],"Write list\u2026":["Napi\u0161ite listu..."],"numbered list":["broj\u010danu listu"],"ordered list":["Broj\u010dani popis"],"bullet list":["lista s oznakama"],"Indent list item":["Uvuci stavku liste"],"Outdent list item":["Izvuci stavku liste"],"Convert to ordered list":["Pretvori u poredanu listu"],"Convert to unordered list":["Pretvori u neporedanu listu"],List:["Popis"],"recent posts":["nedavne objave"],"No posts found.":["Nije prona\u0111ena nijedna objava."],"Latest Posts":["Najnovije objave"],"Display post date":["Prika\u017ei datum objave"],"Grid view":["Prikaz u re\u0161etki"],"List view":["Prikaz u listi"],photo:["slika"],"Image Settings":["Postavke slike"],Image:["Slika"],Preview:["Pretpregled"],embed:["ugradnja"],"Custom HTML":["Prilago\u0111eni HTML"],subtitle:["podnaslov"],title:["naslov"],Heading:["Naslov"],"Write heading\u2026":["Napi\u0161ite naslov..."],"Heading %d":["Naslov %d"],Level:["Nivo"],"Heading Settings":["Postavke naslova"],photos:["slike"],images:["Slike"],"Remove Image":["Ukloni sliku"],None:["Nijedno"],"Media File":["Medijski zapis"],"Attachment Page":["Stranica privitka"],"Crop Images":["Izre\u017ei sliku"],"Gallery Settings":["Postavke galerije"],Gallery:["Galerija"],Classic:["Klasi\u010dni"],video:["video"],audio:["audio"],music:["glazba"],image:["slika"],blog:["blog"],post:["objava"],"Embedded content from %s":["Ugradi sadr\u017eaj sa %s"],"Enter URL to embed here\u2026":["Ovdje unesite URL za ugradnju..."],"%s URL":["%s URL"],"Embedding\u2026":["Ugra\u0111ivanje..."],"Write title\u2026":["Napi\u0161ite naslov"],"Fixed Background":["Stati\u010dna pozadina"],"Edit image":["Uredi sliku"],Columns:["Stupci"],Experiments:[],Code:["Kod"],"Write code\u2026":["Napi\u0161ite kod..."],Categories:["Kategorije"],"Show Hierarchy":["Prika\u017ei hijerarhiju"],"Show post counts":["Prika\u017ei broj objava"],"Categories Settings":["Postavke kategorija"],"Add text\u2026":["Dodaj tekst..."],Button:["Dugme"],Apply:["Primijeni"],"Text Color":["Boja teksta"],"Background Color":["Pozadinska boja"],"Block has been deleted or is unavailable.":["Blok je obrisan ili nedostupan."],"Reusable Blocks":["Vi\u0161ekratno upotrebljivi blokovi"],Cancel:["Odustani"],Edit:["Uredi"],"Edit audio":["Uredi audio"],"Write caption\u2026":["Napi\u0161ite opis..."],"Use URL":["Upotrijebi URL"],Audio:["Audio"],Upload:["Prijenos"],"Additional CSS Class(es)":["Dodatne CSS klase"],"HTML Anchor":["HTML sidro"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Mogu\u0107e je da \u0107e ova kombinacija boja biti te\u0161ka za \u010ditanje. Poku\u0161ajte koristiti svjetliju pozadinsku boju i/ili tamniju boju teksta."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Mogu\u0107e je da \u0107e ova kombinacija boja biti te\u0161ka za \u010ditanje. Poku\u0161ajte koristiti tamniju pozadinsku boju i/ili svjetliju boju teksta."],Clear:["Obri\u0161i"],"Custom color picker":["Korisni\u010dki bira\u010d boje"],"Color: %s":["Boja: %s"],"Full Width":["Pune \u0161irine"],"Wide Width":["Pove\u0107ane \u0161irine"],Widgets:["Widgeti"],Formatting:["Formatiranje"],"Common Blocks":["Uobi\u010dajeni blokovi"],"Align Right":["Poravnaj desno"],"Align Center":["Centriraj"],"Align Left":["Poravnaj lijevo"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Tiska od 1440. Ovo je razvojni dodatak za novi blok ure\u0111iva\u010d u jezgri."],"Add title":["Dodajte naslov"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg razvojni re\u017eim rada zahtijeva da se datoteke izgrade. Pokrenite npm install kako bi instalirali ovisnosti, npm run build kako bi izgradili datoteke ili npm run dev kako bi izgradili datoteke i nadzirali promjene. Pro\u010ditajte contributing datoteku za vi\u0161e informacija."],Author:["Autor"],Slug:["Slug"],Discussion:["Rasprava"],"Custom Fields":["Dodatni podaci"],Excerpt:["Sa\u017eetak"],Publish:["Objavi"],Metadata:["Metapodaci"],Save:["Spremi"],Documentation:["Dokumentacija"],"Select Category":["Odaberi kategoriju"],"(Untitled)":["(Bez naslova)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg zahtjeva WordPress %s ili noviji kako bi ispravno funkcionirao. Nadogradite WordPress prije aktiviranja Gutenberga."],"Gutenberg Team":["Gutenberg Tim"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["prije %s"],"Block style name must be a string.":["Ime stila bloka mora biti niz znakova (string)."]}},846,[]); +__d(function(e,t,o,a,i,s,r){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top Toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],Permalink:[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":[],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],Thumbnail:[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],Annotation:[],"Drag images, upload new ones or select files from your library.":[],"blocks\x04Most Used":[],"imperative verb\x04Resolve":[],"font size name\x04Huge":[],"font size name\x04Large":[],"font size name\x04Medium":[],"font size name\x04Small":[],"font size name\x04Normal":[],"keyboard button\x04Enter":[],"button label\x04Import":[],"button label\x04Download":[],"button label\x04Embed":[],"block title\x04Embed":[],"block title\x04Classic":[],"block style\x04Large":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],media:[],"Double-check your settings before publishing.":[],"Generating preview\u2026":[],"Edit or update the image":[],Media:[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text Settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay \u2014 great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\x04View":[],"editor button\x04Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],Styles:[],"Advanced Panels":[],"Document Panels":[],General:[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],Options:[],"(opens in a new tab)":[],Minutes:[],Hours:[],Time:[],Year:[],Day:[],December:[],November:[],October:[],September:[],August:[],July:[],June:[],May:[],April:[],March:[],February:[],January:[],Month:[],Date:[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],Stripes:[],"Your site doesn\u2019t include support for this block.":[],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:[],"Border Settings":[],"Edit media":[],Medium:[],"Paste URL or type to search":[],Terms:[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],Avatar:[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],HTML:[],"Write HTML\u2026":[],"Media Settings":[],"Overlay Color":[],Overlay:[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":[],Backtick:[],Period:[],Comma:[],"Change type of %d block":[],Current:[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],Escape:[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage All Reusable Blocks":[],Title:[],"Fullscreen Mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],blockquote:[],"Change the block type after adding a new paragraph.":[],"Spotlight Mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual Editor and Code Editor.":[],"Navigate to the previous part of the editor (alternative).":[],"Navigate to the next part of the editor (alternative).":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard Shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\x04More":[],"button to expand options\x04More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":["N\xe9vtelen \xfajrafelhaszn\xe1lhat\xf3 blokk"],Small:[],"(%s: %s)":["(%s: %s)"],Reusable:["\xdajra felhaszn\xe1lhat\xf3"],"(current %s: %s)":["(aktu\xe1lis %s: %s)"],"Remove from Reusable Blocks":["Elt\xe1vol\xedt\xe1s az \xfajra felhaszn\xe1lhat\xf3 blokkokb\xf3l"],"Add to Reusable Blocks":["Hozz\xe1ad\xe1s az \xfajra felhaszn\xe1lhat\xf3 blokkokhoz"],"Keep as HTML":[],"Edit URL":["URL szerkeszt\xe9se"],"Color Settings":["Sz\xedn be\xe1ll\xedt\xe1sa"],"The response is not a valid JSON response.":[],"Editor publish":[],Muted:[],"Video Settings":["Vide\xf3 be\xe1ll\xedt\xe1sok"],"recent comments":["legut\xf3bbi hozz\xe1sz\xf3l\xe1s"],"Latest Comments":["Legut\xf3bbi hozz\xe1sz\xf3l\xe1sok"],"Display Excerpt":["Kivonat megjelen\xedt\xe9se"],"Display Date":["D\xe1tum megjelen\xedt\xe9se"],"Display Avatar":["Avatar megjelen\xedt\xe9se"],"Latest Comments Settings":["Legut\xf3bbi hozz\xe1sz\xf3l\xe1sok be\xe1ll\xedt\xe1sai"],"Number of Comments":["Hozz\xe1sz\xf3l\xe1sok sz\xe1ma"],"Background Opacity":["H\xe1tt\xe9r \xe1tl\xe1tsz\xf3s\xe1g"],Auto:["Automatikus"],Preload:[],"Audio Settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":[],"Show Post Counts":[],"Archives Settings":[],"https://wordpress.org/support/plugin/gutenberg":[],Support:[],"No comments to show.":[],"%1$s on %2$s":[],"Select Post":[],"Select Week":[],"Select Day":[],"Select Month":[],"Select Year":[],Archives:[],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":[],"Transform To:":[],"Remove Block":[],"Open publish panel":[],Dots:[],"Wide Line":[],Large:[],"Show download button":[],"Download button settings":[],"Link To":[],"Text link settings":[],pdf:["pdf"],document:["dokument"],"Copy URL":["URL m\xe1sol\xe1sa"],"Write file name\u2026":[],"Edit file":[],File:[],"A single column within a columns block.":[],Column:[],Outline:[],Loop:[],Autoplay:[],"Playback Controls":[],"Close dialog":[],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":[],"Got it":[],"See next tip":[],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":[],"Remove image":[],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":[],"View the autosave":[],"There is an autosave of this post that is more recent than the version below.":[],Autosaving:[],"Enter URL here\u2026":[],"Pin to toolbar":["R\xf6gz\xedt\xe9s az eszk\xf6zt\xe1rra"],"Unpin from toolbar":["Elt\xe1vol\xedt\xe1s az eszk\xf6zt\xe1rr\xf3l"],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":["Fix sz\xe9less\xe9g\u0171 t\xe1bl\xe1zatcell\xe1k"],"Table Settings":["T\xe1bl\xe1zat be\xe1ll\xedt\xe1sai"],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":["A legut\xf3bbi bejegyz\xe9sek list\xe1j\xe1nak mutat\xe1sa."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":[],"Error loading block: %s":["Blokkbet\xf6lt\xe9si hiba: %s"],"Unknown error":["Ismeretlen hiba"],"Embed Handler":[],"term\x04Remove %s":["%s elt\xe1vol\xedt\xe1sa"],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer Settings":[],Spacer:[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":[],"Skip to the selected block":[],"Publish\u2026":[],"Schedule\u2026":[],"Edit post permalink":[],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Link settings":[],Unlink:[],"Page break":[],pagination:[],"next page":[],"Image Size":[],Height:[],Width:[],"Image Dimensions":[],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":[],Advanced:[],"Add item":[],"Reset the template":[],"Keep it as is":[],"The content of your post doesn\u2019t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":[],"is now scheduled. It will go live on":[],Scheduled:[],"Scheduling\u2026":[],"Code editor selected":[],"Visual editor selected":[],Plugins:[],"Custom Size":[],"Layout Elements":[],"term\x04%s removed":[],"term\x04%s added":[],"imperative verb\x04Preview":[],"Block deleted.":[],"Block updated.":[],"Block created.":[],"Trashing failed":[],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":[],"Document Outline":[],Paragraphs:[],Headings:[],Words:[],"Content structure":[],Public:[],"Protected with a password you choose. Only those with the password can view this post.":[],"Password Protected":[],"Only visible to site admins and editors.":[],Private:[],"Visible to everyone.":[],"Post Visibility":[],"Would you like to privately publish this post now?":[],"Use a secure password":[],"Create password":[],"Move to Trash":[],"Parent Term":[],"Parent Category":[],"Add new term":[],"Add new category":[],Term:[],Tag:[],"Add New Term":[],"Add New Tag":[],"Switch to Draft":[],"Are you sure you want to unpublish this post?":[],Immediately:[],"Save Draft":[],Saving:[],"Publish:":[],"Visibility:":[],"Are you ready to publish?":[],"Copy Link":[],"What\u2019s next?":[],"is now live.":[],Published:[],Schedule:[],Update:[],"Submit for Review":[],"Updating\u2026":[],"Publishing\u2026":[],"Allow Pingbacks & Trackbacks":[],"Permalink:":[],"Pending Review":[],"%d Revision":[],"Suggestion:":[],"Post Format":[],Chat:[],Status:[],Standard:[],Aside:[],"Set Featured Image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow Comments":[],"Template:":[],"no parent":[],"no title":[],Order:[],"No blocks found.":[],"%d result found.":[],Saved:[],Embeds:[],Blocks:[],"Search for a block":[],"Add block":[],"Add %s":[],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],Undo:[],Redo:[],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":[],"Edit visually":[],Duplicate:[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":[],"Convert to Blocks":[],"Block: %s":[],"This block has encountered an error and cannot be previewed.":[],"No block selected.":[],"Transform into:":[],Remove:[],"Find original":[],"Copy All Content":[],"Copied!":[],"Additional settings are now available in the Editor block settings sidebar":[],Visibility:[],"Status & Visibility":[],"Page Attributes":[],Block:[],Document:[],"Featured Image":[],"Close settings":[],"Editor content":[],Tools:[],Editor:[],"Code Editor":[],"Visual Editor":[],"Editor top bar":[],Settings:[],Reset:[],"Dismiss this notice":[],"Item removed.":[],"Item added.":[],"Drop files to upload":[],PM:[],AM:[],"An unknown error occurred.":[],"No results.":[],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":[],URL:[],Submit:[],Close:[],"Insert link":[],"Edit link":[],Link:[],Strikethrough:[],Italic:[],Bold:[],"Remove link":[],"Number of items":[],All:[],Category:[],"Z \u2192 A":[],"A \u2192 Z":[],"Oldest to Newest":[],"Newest to Oldest":[],"Order by":[],Select:[],"Select or Upload Media":[],Video:[],"Edit video":[],"Write\u2026":[],poetry:[],Verse:[],"New Column":[],"Delete Column":[],"Add Column After":[],"Add Column Before":[],"Delete Row":[],"Add Row After":[],"Add Row Before":[],"Edit table":[],Table:[],"Write subheading\u2026":[],"Write shortcode here\u2026":[],Shortcode:[],divider:[],"horizontal-line":[],Separator:[],Quote:[],"Write citation\u2026":[],"Write quote\u2026":[],Pullquote:[],"Write preformatted text\u2026":[],Preformatted:[],text:[],Paragraph:[],"Font Size":[],"Drop Cap":[],"Text Settings":[],"Read more":[],"Write list\u2026":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],List:[],"recent posts":[],"No posts found.":[],"Latest Posts":[],"Display post date":[],"Grid view":[],"List view":[],photo:[],"Image Settings":[],Image:[],Preview:[],embed:[],"Custom HTML":[],subtitle:[],title:[],Heading:[],"Write heading\u2026":[],"Heading %d":[],Level:[],"Heading Settings":[],photos:[],images:[],"Remove Image":[],None:[],"Media File":[],"Attachment Page":[],"Crop Images":[],"Gallery Settings":[],Gallery:[],Classic:[],video:[],audio:[],music:[],image:[],blog:[],post:[],"Embedded content from %s":[],"Enter URL to embed here\u2026":[],"%s URL":[],"Embedding\u2026":[],"Write title\u2026":[],"Fixed Background":[],"Edit image":[],Columns:[],Experiments:[],Code:[],"Write code\u2026":[],Categories:[],"Show Hierarchy":[],"Show post counts":[],"Categories Settings":[],"Add text\u2026":[],Button:[],Apply:[],"Text Color":[],"Background Color":[],"Block has been deleted or is unavailable.":[],"Reusable Blocks":[],Cancel:[],Edit:[],"Edit audio":[],"Write caption\u2026":[],"Use URL":[],Audio:[],Upload:[],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],Clear:[],"Custom color picker":[],"Color: %s":[],"Full Width":[],"Wide Width":[],Widgets:[],Formatting:[],"Common Blocks":[],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["C\xedm hozz\xe1ad\xe1sa"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["Szerz\u0151"],Slug:["Slug"],Discussion:["Besz\xe9lget\xe9s"],"Custom Fields":["Egyedi mez\u0151k "],Excerpt:["Kivonat"],Publish:["K\xf6zz\xe9t\xe9tel"],Metadata:["Meta adat"],Save:["Ment\xe9s"],Documentation:["Dokument\xe1ci\xf3"],"Select Category":["Kateg\xf3ria v\xe1laszt\xe1sa"],"(Untitled)":["(N\xe9vtelen)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Gutenberg csapat."],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Dem\xf3"],"%s ago":["%s \xf3ta"],"Block style name must be a string.":[]}},847,[]); +__d(function(e,t,o,a,i,r,n){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top Toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],Permalink:[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":[],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],Thumbnail:[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],Annotation:[],"Drag images, upload new ones or select files from your library.":[],"blocks\x04Most Used":[],"imperative verb\x04Resolve":[],"font size name\x04Huge":[],"font size name\x04Large":[],"font size name\x04Medium":[],"font size name\x04Small":[],"font size name\x04Normal":[],"keyboard button\x04Enter":[],"button label\x04Import":[],"button label\x04Download":[],"button label\x04Embed":[],"block title\x04Embed":[],"block title\x04Classic":[],"block style\x04Large":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],media:[],"Double-check your settings before publishing.":[],"Generating preview\u2026":[],"Edit or update the image":[],Media:[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text Settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay \u2014 great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\x04View":[],"editor button\x04Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],Styles:[],"Advanced Panels":[],"Document Panels":[],General:[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],Options:[],"(opens in a new tab)":[],Minutes:[],Hours:[],Time:[],Year:[],Day:[],December:[],November:[],October:[],September:[],August:[],July:[],June:[],May:[],April:[],March:[],February:[],January:[],Month:[],Date:[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],Stripes:[],"Your site doesn\u2019t include support for this block.":[],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:[],"Border Settings":[],"Edit media":[],Medium:[],"Paste URL or type to search":[],Terms:[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],Avatar:[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],HTML:[],"Write HTML\u2026":[],"Media Settings":[],"Overlay Color":[],Overlay:[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":[],Backtick:[],Period:[],Comma:[],"Change type of %d block":[],Current:[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],Escape:[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage All Reusable Blocks":[],Title:[],"Fullscreen Mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],blockquote:[],"Change the block type after adding a new paragraph.":[],"Spotlight Mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual Editor and Code Editor.":[],"Navigate to the previous part of the editor (alternative).":[],"Navigate to the next part of the editor (alternative).":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard Shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\x04More":[],"button to expand options\x04More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":[],Small:[],"(%s: %s)":[],Reusable:[],"(current %s: %s)":[],"Remove from Reusable Blocks":[],"Add to Reusable Blocks":[],"Keep as HTML":[],"Edit URL":[],"Color Settings":[],"The response is not a valid JSON response.":[],"Editor publish":[],Muted:[],"Video Settings":[],"recent comments":[],"Latest Comments":[],"Display Excerpt":[],"Display Date":[],"Display Avatar":[],"Latest Comments Settings":[],"Number of Comments":[],"Background Opacity":[],Auto:[],Preload:[],"Audio Settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":[],"Show Post Counts":[],"Archives Settings":[],"https://wordpress.org/support/plugin/gutenberg":[],Support:[],"No comments to show.":[],"%1$s on %2$s":[],"Select Post":[],"Select Week":[],"Select Day":[],"Select Month":[],"Select Year":[],Archives:[],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":[],"Transform To:":[],"Remove Block":[],"Open publish panel":[],Dots:[],"Wide Line":[],Large:[],"Show download button":[],"Download button settings":[],"Link To":[],"Text link settings":[],pdf:[],document:[],"Copy URL":[],"Write file name\u2026":[],"Edit file":[],File:[],"A single column within a columns block.":[],Column:[],Outline:[],Loop:[],Autoplay:[],"Playback Controls":[],"Close dialog":[],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":[],"Got it":[],"See next tip":[],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":[],"Remove image":[],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":[],"View the autosave":[],"There is an autosave of this post that is more recent than the version below.":[],Autosaving:[],"Enter URL here\u2026":[],"Pin to toolbar":[],"Unpin from toolbar":[],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table Settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":[],"Error loading block: %s":[],"Unknown error":[],"Embed Handler":[],"term\x04Remove %s":[],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer Settings":[],Spacer:[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":[],"Skip to the selected block":[],"Publish\u2026":[],"Schedule\u2026":[],"Edit post permalink":[],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Link settings":[],Unlink:[],"Page break":[],pagination:[],"next page":[],"Image Size":[],Height:[],Width:[],"Image Dimensions":[],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":[],Advanced:[],"Add item":[],"Reset the template":[],"Keep it as is":[],"The content of your post doesn\u2019t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":[],"is now scheduled. It will go live on":[],Scheduled:[],"Scheduling\u2026":[],"Code editor selected":[],"Visual editor selected":[],Plugins:[],"Custom Size":[],"Layout Elements":[],"term\x04%s removed":[],"term\x04%s added":[],"imperative verb\x04Preview":[],"Block deleted.":[],"Block updated.":[],"Block created.":[],"Trashing failed":[],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":[],"Document Outline":[],Paragraphs:[],Headings:[],Words:[],"Content structure":[],Public:[],"Protected with a password you choose. Only those with the password can view this post.":[],"Password Protected":[],"Only visible to site admins and editors.":[],Private:[],"Visible to everyone.":[],"Post Visibility":[],"Would you like to privately publish this post now?":[],"Use a secure password":[],"Create password":[],"Move to Trash":[],"Parent Term":[],"Parent Category":[],"Add new term":[],"Add new category":[],Term:[],Tag:[],"Add New Term":[],"Add New Tag":[],"Switch to Draft":[],"Are you sure you want to unpublish this post?":[],Immediately:[],"Save Draft":[],Saving:[],"Publish:":[],"Visibility:":[],"Are you ready to publish?":[],"Copy Link":[],"What\u2019s next?":[],"is now live.":[],Published:[],Schedule:[],Update:[],"Submit for Review":[],"Updating\u2026":[],"Publishing\u2026":[],"Allow Pingbacks & Trackbacks":[],"Permalink:":[],"Pending Review":[],"%d Revision":[],"Suggestion:":[],"Post Format":[],Chat:[],Status:[],Standard:[],Aside:[],"Set Featured Image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow Comments":[],"Template:":[],"no parent":[],"no title":[],Order:[],"No blocks found.":[],"%d result found.":[],Saved:[],Embeds:[],Blocks:[],"Search for a block":[],"Add block":[],"Add %s":[],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],Undo:[],Redo:[],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":[],"Edit visually":[],Duplicate:[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":[],"Convert to Blocks":[],"Block: %s":[],"This block has encountered an error and cannot be previewed.":[],"No block selected.":[],"Transform into:":[],Remove:[],"Find original":[],"Copy All Content":[],"Copied!":[],"Additional settings are now available in the Editor block settings sidebar":[],Visibility:[],"Status & Visibility":[],"Page Attributes":[],Block:[],Document:[],"Featured Image":[],"Close settings":[],"Editor content":[],Tools:[],Editor:[],"Code Editor":[],"Visual Editor":[],"Editor top bar":[],Settings:[],Reset:[],"Dismiss this notice":[],"Item removed.":[],"Item added.":[],"Drop files to upload":[],PM:[],AM:[],"An unknown error occurred.":[],"No results.":[],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":[],URL:[],Submit:[],Close:[],"Insert link":[],"Edit link":[],Link:[],Strikethrough:[],Italic:[],Bold:[],"Remove link":[],"Number of items":[],All:[],Category:[],"Z \u2192 A":[],"A \u2192 Z":[],"Oldest to Newest":[],"Newest to Oldest":[],"Order by":[],Select:[],"Select or Upload Media":[],Video:[],"Edit video":[],"Write\u2026":[],poetry:[],Verse:[],"New Column":[],"Delete Column":[],"Add Column After":[],"Add Column Before":[],"Delete Row":[],"Add Row After":[],"Add Row Before":[],"Edit table":[],Table:[],"Write subheading\u2026":[],"Write shortcode here\u2026":[],Shortcode:[],divider:[],"horizontal-line":[],Separator:[],Quote:[],"Write citation\u2026":[],"Write quote\u2026":[],Pullquote:[],"Write preformatted text\u2026":[],Preformatted:[],text:[],Paragraph:[],"Font Size":[],"Drop Cap":[],"Text Settings":[],"Read more":[],"Write list\u2026":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],List:[],"recent posts":[],"No posts found.":[],"Latest Posts":[],"Display post date":[],"Grid view":[],"List view":[],photo:[],"Image Settings":[],Image:[],Preview:[],embed:[],"Custom HTML":[],subtitle:[],title:[],Heading:[],"Write heading\u2026":[],"Heading %d":[],Level:[],"Heading Settings":[],photos:[],images:[],"Remove Image":[],None:[],"Media File":[],"Attachment Page":[],"Crop Images":[],"Gallery Settings":[],Gallery:[],Classic:[],video:[],audio:[],music:[],image:[],blog:[],post:[],"Embedded content from %s":[],"Enter URL to embed here\u2026":[],"%s URL":[],"Embedding\u2026":[],"Write title\u2026":[],"Fixed Background":[],"Edit image":[],Columns:[],Experiments:[],Code:[],"Write code\u2026":[],Categories:[],"Show Hierarchy":[],"Show post counts":[],"Categories Settings":[],"Add text\u2026":[],Button:[],Apply:[],"Text Color":[],"Background Color":[],"Block has been deleted or is unavailable.":[],"Reusable Blocks":[],Cancel:[],Edit:[],"Edit audio":[],"Write caption\u2026":[],"Use URL":[],Audio:[],Upload:[],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],Clear:[],"Custom color picker":[],"Color: %s":[],"Full Width":[],"Wide Width":[],Widgets:[],Formatting:[],"Common Blocks":[],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":[],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:[],Slug:[],Discussion:[],"Custom Fields":[],Excerpt:[],Publish:[],Metadata:[],Save:[],Documentation:[],"Select Category":[],"(Untitled)":[],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":[],"https://github.com/WordPress/gutenberg":[],Gutenberg:[],Demo:[],"%s ago":[],"Block style name must be a string.":[]}},848,[]); +__d(function(e,t,o,a,i,r,n){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top Toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],Permalink:[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":[],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],Thumbnail:[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],Annotation:[],"Drag images, upload new ones or select files from your library.":[],"blocks\x04Most Used":[],"imperative verb\x04Resolve":[],"font size name\x04Huge":[],"font size name\x04Large":[],"font size name\x04Medium":[],"font size name\x04Small":[],"font size name\x04Normal":[],"keyboard button\x04Enter":[],"button label\x04Import":[],"button label\x04Download":[],"button label\x04Embed":[],"block title\x04Embed":[],"block title\x04Classic":[],"block style\x04Large":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],media:[],"Double-check your settings before publishing.":[],"Generating preview\u2026":[],"Edit or update the image":[],Media:[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text Settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay \u2014 great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\x04View":[],"editor button\x04Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],Styles:[],"Advanced Panels":[],"Document Panels":[],General:[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],Options:[],"(opens in a new tab)":[],Minutes:[],Hours:[],Time:[],Year:[],Day:[],December:[],November:[],October:[],September:[],August:[],July:[],June:[],May:[],April:[],March:[],February:[],January:[],Month:[],Date:[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],Stripes:[],"Your site doesn\u2019t include support for this block.":[],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:[],"Border Settings":[],"Edit media":[],Medium:[],"Paste URL or type to search":[],Terms:[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],Avatar:[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],HTML:[],"Write HTML\u2026":[],"Media Settings":[],"Overlay Color":[],Overlay:[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":[],Backtick:[],Period:[],Comma:[],"Change type of %d block":[],Current:[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],Escape:[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage All Reusable Blocks":[],Title:[],"Fullscreen Mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],blockquote:[],"Change the block type after adding a new paragraph.":[],"Spotlight Mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual Editor and Code Editor.":[],"Navigate to the previous part of the editor (alternative).":[],"Navigate to the next part of the editor (alternative).":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard Shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\x04More":[],"button to expand options\x04More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":[],Small:[],"(%s: %s)":[],Reusable:[],"(current %s: %s)":[],"Remove from Reusable Blocks":[],"Add to Reusable Blocks":[],"Keep as HTML":[],"Edit URL":[],"Color Settings":[],"The response is not a valid JSON response.":[],"Editor publish":[],Muted:[],"Video Settings":[],"recent comments":[],"Latest Comments":[],"Display Excerpt":[],"Display Date":[],"Display Avatar":[],"Latest Comments Settings":[],"Number of Comments":[],"Background Opacity":[],Auto:[],Preload:[],"Audio Settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":[],"Show Post Counts":[],"Archives Settings":[],"https://wordpress.org/support/plugin/gutenberg":[],Support:[],"No comments to show.":[],"%1$s on %2$s":[],"Select Post":[],"Select Week":[],"Select Day":[],"Select Month":[],"Select Year":[],Archives:[],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":[],"Transform To:":[],"Remove Block":[],"Open publish panel":[],Dots:[],"Wide Line":[],Large:[],"Show download button":[],"Download button settings":[],"Link To":[],"Text link settings":[],pdf:[],document:[],"Copy URL":[],"Write file name\u2026":[],"Edit file":[],File:[],"A single column within a columns block.":[],Column:[],Outline:[],Loop:[],Autoplay:[],"Playback Controls":[],"Close dialog":[],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":[],"Got it":[],"See next tip":[],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":[],"Remove image":[],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":[],"View the autosave":[],"There is an autosave of this post that is more recent than the version below.":[],Autosaving:[],"Enter URL here\u2026":[],"Pin to toolbar":[],"Unpin from toolbar":[],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table Settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":[],"Error loading block: %s":[],"Unknown error":[],"Embed Handler":[],"term\x04Remove %s":[],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer Settings":[],Spacer:[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":[],"Skip to the selected block":[],"Publish\u2026":[],"Schedule\u2026":[],"Edit post permalink":[],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Link settings":[],Unlink:[],"Page break":[],pagination:[],"next page":[],"Image Size":[],Height:[],Width:[],"Image Dimensions":[],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":[],Advanced:[],"Add item":[],"Reset the template":[],"Keep it as is":[],"The content of your post doesn\u2019t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":[],"is now scheduled. It will go live on":[],Scheduled:[],"Scheduling\u2026":[],"Code editor selected":[],"Visual editor selected":[],Plugins:[],"Custom Size":[],"Layout Elements":[],"term\x04%s removed":[],"term\x04%s added":[],"imperative verb\x04Preview":[],"Block deleted.":[],"Block updated.":[],"Block created.":[],"Trashing failed":[],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":[],"Document Outline":[],Paragraphs:[],Headings:[],Words:[],"Content structure":[],Public:[],"Protected with a password you choose. Only those with the password can view this post.":[],"Password Protected":[],"Only visible to site admins and editors.":[],Private:[],"Visible to everyone.":[],"Post Visibility":[],"Would you like to privately publish this post now?":[],"Use a secure password":[],"Create password":[],"Move to Trash":[],"Parent Term":[],"Parent Category":[],"Add new term":[],"Add new category":[],Term:[],Tag:[],"Add New Term":[],"Add New Tag":[],"Switch to Draft":[],"Are you sure you want to unpublish this post?":[],Immediately:[],"Save Draft":[],Saving:[],"Publish:":[],"Visibility:":[],"Are you ready to publish?":[],"Copy Link":[],"What\u2019s next?":[],"is now live.":[],Published:[],Schedule:[],Update:[],"Submit for Review":[],"Updating\u2026":[],"Publishing\u2026":[],"Allow Pingbacks & Trackbacks":[],"Permalink:":[],"Pending Review":[],"%d Revision":[],"Suggestion:":[],"Post Format":[],Chat:[],Status:[],Standard:[],Aside:[],"Set Featured Image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow Comments":[],"Template:":[],"no parent":[],"no title":[],Order:[],"No blocks found.":[],"%d result found.":[],Saved:[],Embeds:[],Blocks:[],"Search for a block":[],"Add block":[],"Add %s":[],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],Undo:[],Redo:[],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":[],"Edit visually":[],Duplicate:[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":[],"Convert to Blocks":[],"Block: %s":[],"This block has encountered an error and cannot be previewed.":[],"No block selected.":[],"Transform into:":[],Remove:[],"Find original":[],"Copy All Content":[],"Copied!":[],"Additional settings are now available in the Editor block settings sidebar":[],Visibility:[],"Status & Visibility":[],"Page Attributes":[],Block:[],Document:[],"Featured Image":[],"Close settings":[],"Editor content":[],Tools:[],Editor:[],"Code Editor":[],"Visual Editor":[],"Editor top bar":[],Settings:[],Reset:[],"Dismiss this notice":[],"Item removed.":[],"Item added.":[],"Drop files to upload":[],PM:[],AM:[],"An unknown error occurred.":[],"No results.":[],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":[],URL:[],Submit:[],Close:[],"Insert link":[],"Edit link":[],Link:[],Strikethrough:[],Italic:[],Bold:[],"Remove link":[],"Number of items":[],All:[],Category:[],"Z \u2192 A":[],"A \u2192 Z":[],"Oldest to Newest":[],"Newest to Oldest":[],"Order by":[],Select:[],"Select or Upload Media":[],Video:[],"Edit video":[],"Write\u2026":[],poetry:[],Verse:[],"New Column":[],"Delete Column":[],"Add Column After":[],"Add Column Before":[],"Delete Row":[],"Add Row After":[],"Add Row Before":[],"Edit table":[],Table:[],"Write subheading\u2026":[],"Write shortcode here\u2026":[],Shortcode:[],divider:[],"horizontal-line":[],Separator:[],Quote:[],"Write citation\u2026":[],"Write quote\u2026":[],Pullquote:[],"Write preformatted text\u2026":[],Preformatted:[],text:[],Paragraph:[],"Font Size":[],"Drop Cap":[],"Text Settings":[],"Read more":[],"Write list\u2026":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],List:[],"recent posts":[],"No posts found.":[],"Latest Posts":[],"Display post date":[],"Grid view":[],"List view":[],photo:[],"Image Settings":[],Image:[],Preview:[],embed:[],"Custom HTML":[],subtitle:[],title:[],Heading:[],"Write heading\u2026":[],"Heading %d":[],Level:[],"Heading Settings":[],photos:[],images:[],"Remove Image":[],None:[],"Media File":[],"Attachment Page":[],"Crop Images":[],"Gallery Settings":[],Gallery:[],Classic:[],video:[],audio:[],music:[],image:[],blog:[],post:[],"Embedded content from %s":[],"Enter URL to embed here\u2026":[],"%s URL":[],"Embedding\u2026":[],"Write title\u2026":[],"Fixed Background":[],"Edit image":[],Columns:[],Experiments:[],Code:[],"Write code\u2026":[],Categories:[],"Show Hierarchy":[],"Show post counts":[],"Categories Settings":[],"Add text\u2026":[],Button:[],Apply:[],"Text Color":[],"Background Color":[],"Block has been deleted or is unavailable.":[],"Reusable Blocks":[],Cancel:[],Edit:[],"Edit audio":[],"Write caption\u2026":[],"Use URL":[],Audio:[],Upload:[],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],Clear:[],"Custom color picker":[],"Color: %s":[],"Full Width":[],"Wide Width":[],Widgets:[],Formatting:[],"Common Blocks":[],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":[],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:[],Slug:[],Discussion:[],"Custom Fields":[],Excerpt:[],Publish:[],Metadata:[],Save:[],Documentation:[],"Select Category":[],"(Untitled)":[],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":[],"https://github.com/WordPress/gutenberg":[],Gutenberg:[],Demo:[],"%s ago":[],"Block style name must be a string.":[]}},849,[]); +__d(function(e,i,o,a,t,n,r){t.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":["Sei probabilmente offline."],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":["Questo file media \xe8 stato sostituito"],Replace:["Sostituisci"],"Choose pattern":["Scegli il pattern"],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":["Apri la libreria dei media"],Next:["Prossimo"],Previous:["Precedente"],Finish:["Finito"],"Page %1$d of %2$d":["Pagina %1$d di %2$d"],"Guide controls":[],"Remove Control Point":["Rimuovi punto di controllo"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":["AGGIUNGI MEDIA"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":["Abilita i template della pagina"],"Page Templates":["Template della pagina"],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":["Titolo dell'articolo"],"Add nofollow to link":["Aggiungi nofollow al link"],"Link Settings":["Impostazioni dei link"],"Add Submenu":["Aggiungi un sottomenu"],"Add link\u2026":["Aggiungi link..."],Dark:["Scuro"],Light:["Chiaro"],recording:["registrazione"],podcast:["podcast"],sound:["suono"],"Array of instance changes":["Array delle modifiche all'istanza"],"Current widget instance":["Istanza corrente del widget"],"Template parts to include in your templates.":["Parti di template da includere nei tuoi template."],"Template parts list":["Elenco delle parti del template"],"Template parts list navigation":["Navigazione nell'elenco delle parti di template"],"Filter template parts list":["Filtra l'elenco delle parti di template"],"Uploaded to this template part":["Caricato in questa parte di template"],"Insert into template part":["Inserisci nelle parti di template"],"Template part archives":["Archivi delle parti di template"],"No template parts found in Trash.":["Non \xe8 stata trovata nessuna parte di template nel Cestino."],"No template parts found.":["Non \xe8 stata trovata nessuna parte di template."],"Parent Template Part:":["Parte di template genitore:"],"Search Template Parts":["Cerca tra le parti di template"],"All Template Parts":["Tutte le parti del template"],"View Template Part":["Visualizza parte del template"],"Edit Template Part":["Modifica parte del template"],"New Template Part":["Nuova parte del template"],"Add New Template Part":["Aggiungi una nuova parte del template"],"Template Part\x04Add New":["Aggiungi nuova"],"Admin Menu text\x04Template Parts":["Parti del template"],"Template Part":["Parte del template"],"Template Parts":["Parti del template"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Che cosa stava facendo, il grande dio Pan,\n\tGi\xf9 tra le canne vicino al fiume?\nDiffondere la rovina e disperdere il divieto,\nSpruzzare e remare con gli zoccoli di una capra,\nE rompere i gigli d'oro a galla\n Con la libellula sul fiume."],Navigation:["Navigazione"],"Loading Navigation\u2026":["Caricamento navigazione"],"Navigation Structure":["Struttura navigazione"],"Create empty":["Crea vuoto"],"Create from all top pages":["Crea da tutte le pagine superiori"],"Create a Navigation from all existing pages, or create an empty one.":["Crea una navigazione da tutte le pagine esistenti oppure creane una vuota."],"Navigation Link":["Link di navigazione"],"(Note: many devices and browsers do not display this text.)":["(Nota: molti dispositivi e browser non visualizzano questo testo.)"],"Describe the role of this image on the page.":["Descrivi il ruolo di questa immagine nella pagina."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Passa dall'uso dello stesso valore per tutte le dimensioni dello schermo o dall'uso di un singolo valore per dimensione dello schermo."],"Use the same %s on all screensizes.":["Usa la stessa %s su tutte le dimensioni dello schermo."],"Large screens":["Schermi grandi"],"Medium screens":["Schermi medi"],"Small screens":["Schermi piccoli"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["Controlla la propriet\xe0 %1$s per i viewport %2$s."],Change:["Cambia"],"Currently selected":["Attualmente selezionato"],"Search or type url":["Cerca o digita l'url"],"Press ENTER to add this link":["Premi INVIO per aggiungere questo link"],"Currently selected link settings":["Impostazioni del link attualmente selezionato"],"Generic label for block inserter button\x04Add block":["Aggiungi blocco"],"directly add the only allowed block\x04Add %s":["Aggiungi %s"],"%s block added":["%s blocc aggiunto"],"Move %s":["Sposta %s"],"Extra Large":["Molto grande"],"Block breadcrumb":["Blocco dei breadcrumb"],"Site Title":["Titolo del sito"],"Open Colors Selector":["Apri il selettore dei colori"],"Overlay Gradient":["Gradiente di sovrapposizione"],"Templates list":["Elenco dei template"],"Templates list navigation":["Navigazione elenco dei template"],"Filter templates list":["Filtro elenco dei template"],"Uploaded to this template":["Caricato in questo template"],"Insert into template":["Inserisci nel template"],"Template archives":["Archivi template"],"No templates found in Trash.":["Nessun template trovato nel Cestino."],"No templates found.":["Nessun template trovato."],"Parent Template:":["Template genitore:"],"Search Templates":["Ricerca template"],"All Templates":["Tutti i template"],"View Template":["Visualizza template"],"Edit Template":["Modifica il template"],"New Template":["Nuovo template"],"Add New Template":["Aggiungi un nuovo template"],"Template\x04Add New":["Aggiungi nuovo"],"Admin Menu text\x04Templates":["Template"],Template:["Template"],"No matching template found":["Non \xe8 stato trovato alcun template corrispondente"],"Gradient: %s":["Gradiente: %s"],"Gradient code: %s":["Codice gradiente: %s"],"All content copied.":["Tutto il contenuto \xe8 stato copiato."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Upload dei media falliti. Se questa \xe8 una foto o un'immagine grande, riduci le dimensioni e riprova."],Gradient:["Gradiente"],"Gradient Presets":["Gradienti preimpostati"],"No Preview Available.":["Nessuna anteprima disponibile."],Midnight:["Mezzanotte"],"Electric grass":["Verde erba elettrico"],"Pale ocean":["Azzurro oceano tenue"],"Luminous dusk":["Tramonto luminoso"],"Blush bordeaux":["Bordeaux pastello"],"Blush light purple":["Viola tenue pastello"],"Cool to warm spectrum":["Gamma dai colori freddi ai colori caldi"],"Very light gray to cyan bluish gray":["Dal grigio molto chiaro al ciano bluastro grigio"],"Luminous vivid orange to vivid red":["Da arancione intenso luminoso a rosso vivo"],"Luminous vivid amber to luminous vivid orange":["Da ambra intenso luminoso ad arancione intenso luminoso"],"Light green cyan to vivid green cyan":["Da ciano verde chiaro a ciano verde intenso"],"Vivid cyan blue to vivid purple":["Da blu ciano intenso a viola intenso"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 dicembre 2018"],"February 21, 2019":["21 febbraio 2019"],"May 7, 2019":["7 maggio 2019"],"Release Date":["Data di pubblicazione"],"Jazz Musician":["Musicista jazz"],Version:["Versione"],"Six.":["Sei."],"Five.":["Cinque."],"Four.":["Quattro."],"Three.":["Tre."],"Two.":["Due."],"One.":["Uno."],"One of the hardest things to do in technology is disrupt yourself.":["Una delle cose pi\xf9 difficili da fare con la tecnologia \xe8 fermare s\xe9 stessi."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["Tutto attorno lo schermo \xe8 quasi completamente nero. Ora, mentre la telecamera si muove lentamente verso la finestra che \xe8 nell'inquadratura \xe8 grande quasi quanto un francobollo, altre forme appaiono;"],"Window, very small in the distance, illuminated.":["Finestra, molto piccola in lontananza, illuminata."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURA)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["Lo scricciolo
Si guadagna da vivere
Silenziosamente."],"Welcome to the wonderful world of blocks\u2026":["Benvenuti nel meraviglioso mondo dei blocchi\u2026"],"Snow Patrol":["Snow Patrol"],Dimensions:["Dimensioni"],"Minimum height in pixels":["Altezza minima in pixel"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Invito all'azione"],"In quoting others, we cite ourselves.":["Citando altri, citiamo noi stessi."],cite:["citazione"],"Mont Blanc appears\u2014still, snowy, and serene.":["Appare il Monte Bianco - immobile, innevato e sereno."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In un villaggio della Mancia, il cui nome non desidero ricordare, non molto tempo fa viveva uno di quei gentiluomini che possiedono una lancia nella rastrelliera, un vecchio brocchiere, un ronzino magro e un levriero da caccia."],"Block navigation":["Navigazione tra i blocchi"],"Enable Full Site Editing":["Abilita la modalit\xe0 di modifica dell'intero sito"],"Full Site Editing":["Modalit\xe0 di modifica dell'intero sito"],"Templates to include in your theme.":["Template da includere nel tuo tema."],Templates:["Template"],"Inserter Help Panel":["Pannello di aiuto dello strumento di inserimento"],"Pre-publish Checks":["Controlli pre-pubblicazione"],"Please contact your site administrator to install new blocks.":["Contatta l'amministratore del sito per installare i nuovi blocchi."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Nessun blocco trovato nella tua libreria. Contatta l'amministratore del sito per installare i nuovi blocchi."],"No blocks found in your library.":["Nessun blocco trovato nella tua libreria."],"No blocks found in your library. These blocks can be downloaded and installed:":["Nessun blocco trovato nella tua libreria. Questi blocchi possono essere scaricati e installati:"],"No blocks found in your library. We did find %d block available for download.":["Nessun blocco trovato nella tua libreria. Abbiamo trovato %d blocco disponibile per lo scaricamento.","Nessun blocco trovato nella tua libreria. Abbiamo trovato %d blocchi disponibili per lo scaricamento."],"Block previews can\u2019t load.":["L'anteprima del blocco non pu\xf2 essere scaricata."],Retry:["Riprova"],"Block previews can't install.":["L'anteprima del blocco non pu\xf2 essere installata."],"Updated %s":["Aggiornato %s."],"%d active installation":["%d installazione attiva","%d installazioni attive"],"This author has %d block, with an average rating of %d.":["Questo autore ha %d blocco, con una valutazione media di %d.","Questo autore ha %d blocchi, con una valutazione media di %d."],"Authored by %s":["Scritto da %s"],Add:["Aggiungi"],"%d total rating":["%d valutazione totale","%d valutazioni totali"],"%s out of 5 stars":["%s su 5 stelle"],"Enter Address":["Inserisci indirizzo"],"Pill Shape":["Forma di pillola"],"Logos Only":["Solo loghi"],"Create a block of links to your social media or external sites":["Crea un blocco di link ai tuoi social media o siti esterni"],"Social links":["Link social"],"Open block navigator":["Apri la navigazione tra i blocchi"],"Attachment page":["Pagina dell\u2019allegato"],Fill:["Riempi"],"Link rel":["Link Rel"],"Border Radius":["Raggio del bordo"],"Write gallery caption\u2026":["Scrivi la didascalia della galleria\u2026"],"Content Blocks":["Blocchi di contenuto"],"Restore the backup":["Ripristina il backup"],"The backup of this post in your browser is different from the version below.":["Il backup di questo articolo nel tuo browser \xe8 diverso dalla versione sotto."],"Enable Block Directory search":["Abilita la ricerca nella Directory dei blocchi"],"Block Directory":["Directory dei blocchi"],"Unable to connect to the filesystem. Please confirm your credentials.":["Impossibilitato al collegamento al filesystem. Controlla le tue credenziali."],"Sorry, you are not allowed to install blocks.":["Non hai il permesso per installare i blocchi."],"%1$d block is disabled.":["%1$d blocco \xe8 disabiliato.","%1$d blocchi sono disabilitati."],"Reverse List Numbering":["Ordine inverso di numerazione"],"Start Value":["Valore di partenza"],"Ordered List Settings":["Impostazioni degli elenchi ordinati"],"Clear Media":["Cancella media"],"block style\x04Circle Mask":["Formato circolare"],"Default Style":["Stile predefinito"],"Not set":["Non impostato"],"While writing, you can press / to quickly insert new blocks.":["Mentre scrivi, puoi premere / per inserire velocemente un nuovo blocco."],"Browse through the library to learn more about what each block does.":["Esplora la libreria per conoscere cosa fa ogni blocco."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Sono disponibili blocchi per ogni tipo di contenuto: testo, titoli, immagini, elenchi, video, tabelle e molto altro."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Ti diamo il benvenuto nel meraviglioso mondo dei blocchi! I blocchi sono la base di tutti i contenuti con questo editor. "],"Version of the content block format used by the object.":["Versione del formato del blocco di contenuto utilizzata dall'oggetto."],"HTML content for the object, transformed for display.":["Contenuto HTML dell'oggetto, trasformato per essere visualizzato."],"Content for the object, as it exists in the database.":["Il contenuto dell'oggetto, come riportato nel database."],"The content for the object.":["Il contenuto dell'oggetto."],"Change column alignment":["Cambia l'allineamento della colonna"],"Align Column Right":["Allineamento della colonna a destra"],"Align Column Center":["Allineamento della colonna al centro"],"Align Column Left":["Allineamento della colonna a sinistra"],Color:["Colore"],"Vivid purple":["Viola intenso"],"Disable & Reload":["Disabilita e ricarica"],"Enable & Reload":["Abilita e ricarica"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Per applicare questa modifica \xe8 necessario ricaricare la pagina. Assicurati di aver salvato il contenuto prima di ricaricare."],"Display these keyboard shortcuts.":["Visualizza queste scorciatoie da tastiera."],"Experiments Settings":["Impostazioni degli esperimenti"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg ha delle funzionalit\xe0 sperimentali che puoi attivare. Seleziona quelle che vuoi utilizzare. \xc8 probabile che queste funzionalit\xe0 cambieranno quindi non \xe8 consigliabile utilizzarle in produzione."],"Enable Widgets Screen and Legacy Widget Block":["Abilita la schermata Aree per i blocchi (sperimentale) e il blocco Widget legacy"],"Experiment settings":["Impostazioni delle funzionalit\xe0 sperimentali"],"Block name name must be a string.":["Il nome del blocco deve essere una stringa."],Custom:["Personalizzato"],Draft:["Bozza"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Il blocco \"%1$s\" non contiene uno stile con nome \"%2$s.\"."],"Learn more about anchors":["Ulteriori informazioni sulle ancore"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Inserisci una parola o due \u2014 senza spazi \u2014 per creare un unico indirizzo web proprio per questo titolo, chiamato \u201cancora\u201d. Poi, sari in grado di collegare direttamente a questa sezione della tua pagina."],"Widget Blocks (Experimental)":["Blocchi del widget (Sperimentale)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Carica un file video, scegline uno dalla tua libreria dei media o aggiungine uno con un URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Carica una immagine, scegline una dalla tua libreria dei media o aggiungine una con un URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Carica un file audio, scegline uno dalla tua libreria dei media o aggiungine uno con un URL."],"Upload a media file or pick one from your media library.":["Carica un file media o scegline uno dalla tua libreria dei media."],Skip:["Salta"],"Select a pattern to start with.":["Seleziona un pattern con cui iniziare."],"Add a page, link, or other item to your navigation.":["Aggiungi una pagina, un link o un altro elemento ala tua navigazione."],"What's this?":["Che cos'\xe8 questo?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Non lasciare che i motori di ricerca seguano questo link."],"Provide more context about where the link goes.":["Fornire pi\xf9 contesto su dove va il link."],"Title Attribute":["Attributo del titolo"],"SEO Settings":["Impostazioni SEO"],Description:["Descrizione"],"Open in new tab":["Apri in una nuova scheda"],links:["link"],navigation:["navigazione"],menu:["menu"],"Add a navigation block to your site.":["Aggiungi un blocco di navigazione al tuo sito."],"Upload a file or pick one from your media library.":["Carica un file o sceglierne uno dalla tua libreria dei media."],"Learn more about embeds":["Ulteriori informazioni sugli incorporamenti"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Incolla un link al contenuto che vuoi visualizzare sul tuo sito."],"Upload an image or video file, or pick one from your media library.":["Carica un file immagine o video, o scegline uno dalla tua libreria dei media."],"Three columns; wide center column":["Tre colonne; ampia colonna centrale"],"Three columns; equal split":["Tre colonne; suddivise equamente"],"Two columns; two-thirds, one-third split":["Due colonne; suddivise in due terzi e un terzo"],"Two columns; one-third, two-thirds split":["Due colonne; suddivise in un terzo e due terzi"],"Two columns; equal split":["Due colonne; suddivise equamente"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Il tuo sito non ha %s, quindi non c'\xe8 nulla da mostrare qui al momento."],"More tools & options":["Pi\xf9 strumenti & opzioni"],"Create Table":["Crea tabella"],"Insert a table for sharing data.":["Inserisci una tabella per condividere i dati."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Separa"],"verb\x04Group":["Raggruppa"],"Separate with commas or the Enter key.":["Separa con virgole o premendo il tasto Invio."],"Separate with commas, spaces, or the Enter key.":["Separa con virgole, con spazi o premendo il tasto Invio."],"Separate multiple classes with spaces.":["Separa classi multiple con gli spazi."],"Move image forward":["Muovi l'immagine avanti"],"Move image backward":["Muovi l'immagine indietro"],"Sorry, you are not allowed to edit sidebars.":["Non hai i permessi di edit la barra laterale."],"Sorry, you are not allowed to read sidebars.":["Non hai i permessi in read per la barra laterale."],"The sidebar\u2019s ID.":["L'ID della barra laterale."],"Displays a set of blocks":["Visualizza un insieme di blocchi"],"Blocks Area":["Area dei blocchi "],"Block rendered as empty.":["Il blocco \xe8 stato reso come blocco vuoto."],"Inline Code":["Codice inline"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Nota: l'autoplay per i video pu\xf2 causare problemi di usabilit\xe0 per alcuni visitatori."],"Footer section":["Sezione footer"],"Header section":["Sezione header"],"Sorting and Filtering":["Ordinamento e filtraggio"],"Post Meta Settings":["Impostazioni dei metadati dell'articolo"],"Post Content":["Contenuto dell'articolo"],"Post Content Settings":["Impostazioni del contenuto dell'articolo"],"Percentage width":["Percentuale della larghezza"],"Column Settings":["Impostazioni della colonna"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Nota: l'autoplay per gli audio pu\xf2 causare problemi di usabilit\xe0 per alcuni visitatori."],"Block area updated.":["Area del blocco aggiornata."],"Block area scheduled.":["Area di blocco programmata."],"Block area published.":["Area del blocco pubblicata."],"Block areas list":["Elenco delle aree del blocco"],"Block areas list navigation":["Navigazione nell'elenco delle aree dei blocchi"],"Filter block areas list":["Filtra l'elenco delle aree dei blocchi"],"No block area found.":["Nessuna area del blocco trovata."],"Search Block Areas":["Cerca nelle aree dei blocchi"],"All Block Areas":["Tutte le aree del blocco"],"View Block Area":["Visualizza l'area del blocco"],"Edit Block Area":["Modifica l'area del blocco"],"New Block Area":["Nuova area del blocco"],"Add New Block Area":["Aggiungi una nuova area del blocco"],"admin menu\x04Block Areas":["Aree dei blocchi"],"post type singular name\x04Block Area (Experimental)":["Area del blocco (sperimentale)"],"post type general name\x04Block Area (Experimental)":["Area del blocco (sperimentale)"],"Experimental custom post type that will store block areas referenced by themes.":["Post type personalizzati e sperimentali che memorizzeranno le aree dei blocchi referenziate dai temi."],"Widgets screen content":["Contenuto della schermata dei widget"],"Widgets advanced settings":["Impostazioni avanzate dei widget"],"(experimental)":["(sperimentale)"],"Block Areas":["Aree per i blocchi"],"Widgets screen top bar":["Barra superiore della schermata dei widget"],"This color combination may be hard for people to read.":["Questa combinazione di colori pu\xf2 essere difficile da leggere per le persone."],"There is no poster image currently selected":["Nessuna immagine di anteprima \xe8 selezionata"],"The current poster image url is %s":["L'url attuale dell'immagine di anteprima \xe8 %s"],section:["sezione"],row:["riga"],wrapper:["wrapper"],container:["contenitore"],"A block that groups other blocks.":["Un blocco che raggruppa altri blocchi."],Group:["Gruppo"],"Crop image to fill entire column":["Ritaglia l'immagine per riempire l'intera colonna"],"Play inline":["Riproduci all'interno"],"Leave empty if the image is purely decorative.":["Lascia vuoto se l'immagine \xe8 solamente decorativa"],"Describe the purpose of the image":["Descrivi l'immagine o il motivo per cui c'\xe8"],"Add a block":["Aggiungi un blocco"],"Block vertical alignment setting label\x04Change vertical alignment":["Cambia l'allineamento verticale"],"Block vertical alignment setting\x04Vertically Align Bottom":["Allinea verticalmente in basso"],"Block vertical alignment setting\x04Vertically Align Middle":["Allinea verticalmente al centro"],"Replace Image":["Sostituisci l'immagine"],"Block vertical alignment setting\x04Vertically Align Top":["Allinea verticalmente in alto"],"Display a legacy widget.":["Visualizza un widget legacy."],"Legacy Widget (Experimental)":["Widget legacy (sperimentale)"],"Change widget":["Cambia widget"],"Legacy Widget":["Widget legacy"],"You don't have permissions to use widgets on this site.":["Non hai i permessi per utilizzare i widget su questo sito."],"Select a legacy widget to display:":["Seleziona un widget legacy da visualizzare:"],"There are no widgets available.":["Non ci sono widget disponibili."],"Change block type or style":["Cambia tipo o stile del blocco"],"keyboard key\x04Space":["Spazio"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["Ulteriori controlli rich text"],"Search Terms":["Cerca termini"],"Exit the Editor":["Esci dall'editor"],"Block Manager":["Gestore dei blocchi"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Non hai i permessi per accedere ai widget su questo sito."],"Widgets (beta)":["Widget (beta)"],link:["link"],"Embedded content from %s can't be previewed in the editor.":["L'anteprima del contenuto incorporato da %s non pu\xf2 essere visualizzata nell'editor."],"Custom Color":["Colore personalizzato"],"Prompt visitors to take action with a button-style link.":["Invita gli utenti ad effettuare un'azione con un link che ha l'aspetto di un pulsante."],"Stick to the top of the blog":["Metti in evidenza nella parte alta del blog"],"Read about permalinks":["Leggi riguardo i permalink"],"The last part of the URL.":["L'ultima parte dell'URL."],"URL Slug":["Slug dell'URL"],"A cloud of your most used tags.":["Un cloud dei tuoi tag pi\xf9 utilizzati."],"Tag Cloud":["Tag Cloud"],Taxonomy:["Tassonomia"],"Tag Cloud Settings":["Impostazioni Tag Cloud"],"- Select -":["- Seleziona -"],Default:["Predefinito"],find:["trova"],"Help visitors find your content.":["Aiuta i visitatori a trovare i tuoi contenuti."],Search:["Cerca"],"Add button text\u2026":["Aggiungi il testo del pulsante..."],"Button text":["Testo del pulsante"],"Optional placeholder\u2026":["Placeholder opzionale\u2026"],"Optional placeholder text":["Testo placeholder opzionale"],"Add label\u2026":["Aggiungi una etichetta..."],"Label text":["Testo dell'etichetta"],"image %1$d of %2$d in gallery":["immagine %1$d of %2$d nella galleria"],archive:["archivio"],posts:["articoli"],"A calendar of your site\u2019s posts.":["Un calendario degli articoli del tuo sito."],Calendar:["Calendario"],by:["di"],"An error has occurred, which probably means the feed is down. Try again later.":["Si \xe8 verificato un errore; probabilmente il feed non \xe8 attivo. Riprova pi\xf9 tardi."],"RSS Error:":["Errore RSS:"],"block style\x04Default":["Predefinito"],"Fullscreen mode deactivated":["Modalit\xe0 a schermo intero disattivata"],"Fullscreen mode activated":["Modalit\xe0 a schermo intero attivata"],"Spotlight mode deactivated":["Modalit\xe0 in risalto disattivata"],"Spotlight mode activated":["Modalit\xe0 in risalto attivata"],"Top toolbar deactivated":["Barra degli strumenti in alto disattivata"],"Top toolbar activated":["Barra degli strumenti in alto attivata"],Back:["Indietro"],"Feature activated":["Caratteristica attivata"],"Feature deactivated":["Caratteristica disattivata"],"Vertical Pos.":["Pos. verticale"],"Horizontal Pos.":["Pos. orizzontale"],feed:["feed"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Visualizza gli elementi di un qualunque feed RSS o Atom."],RSS:["RSS"],"Max number of words in excerpt":["Numero massimo di parole nel riassunto"],"Display excerpt":["Visualizza il riassunto"],"Display date":["Visualizza la data"],"Display author":["Visualizza l'autore"],"RSS Settings":["Impostazioni RSS"],"Edit RSS URL":["Modifica l'URL dell'RSS"],"Content before this block will be shown in the excerpt on your archives page.":["Il contenuto prima di questo blocco verr\xe0 mostrato nel riassunto della pagina degli archivi."],"Hide the excerpt on the full content page":["Nascondi il riassunto sulla pagina con il contenuto completo"],"The excerpt is visible.":["Il riassunto \xe8 visibile."],"The excerpt is hidden.":["Il riassunto \xe8 nascosto."],"Sorry, this content could not be embedded.":["Questo contenuto non pu\xf2 essere incorporato."],"Embed Amazon Kindle content.":["Incorpora il contenuto di Amazon Kindle."],ebook:["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Incorpora il contenuto di Crowdsignal (precedentemente Polldaddy)."],"Focal Point Picker":["Selettore del punto focale"],Underline:["Sottolineato"],"Attempt Block Recovery":["Tentativo di recupero del blocco"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Contenuto\u2026"],"button label\x04Convert to link":["Converti in link"],"button label\x04Try again":["Riprova"],"Editor tips":["Suggerimenti sull'editor"],"Block (selected)":["Blocco (selezionato)"],"Document (selected)":["Documento (selezionato)"],"%d word":["%d parola","%d parole"],"Top Toolbar":["Barra degli strumenti in alto"],"Link Rel":["Link Rel"],"Link CSS Class":["Classe CSS del link"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Crea contenuti e salvali per te e per glialtri contributori per riutilizzarli sul tuo sito. Aggiorna il blocco, e le modifiche si applicano ovunque siano state utilizzate."],"To edit the featured image, you need permission to upload media.":["Per modificare l'immagine in evidenza, ti occorre l'autorizzazione al caricamento dei media."],"To edit this block, you need permission to upload media.":["Per modificare questo blocco devi avere il permesso di caricare file media."],"(selected block)":["(blocco selezionato)"],"Block tools":["Strumenti blocco"],Permalink:["Permalink"],"This image has an empty alt attribute":["Questa immagine ha l'attributo alt vuoto"],"This image has an empty alt attribute; its file name is %s":["Questa immagine ha l'attributo alt vuoto; il nome del file \xe8 %s"],"Block area reverted to draft.":["Area del blocco ripristinata come bozza."],"Block area published privately.":["Area del blocco pubblicata privatamente."],"No block areas found in Trash.":["Nessuna area del blocco trovata nel cestino."],"Block\x04Add New":["Aggiungi nuovo"],"add new on admin bar\x04Block Area":["Area del blocco"],"Link inserted.":["Link inserito."],"Warning: the link has been inserted but may have errors. Please test it.":["Attenzione: hai inserito il link ma ci potrebbero essere degli errori. Provalo."],"%s block selected.":["%s blocchi selezionati."],Thumbnail:["Miniatura"],"Full Size":["Dimensione reale"],"Link selected.":["Link selezionato."],"Start writing with text or HTML":["Inizia a scrivere con testo o HTML"],"Type text or HTML":["Digita testo o HTML"],"Block icon":["Icona del blocco"],"Align Text Right":["Allinea il testo a destra"],"Align Text Center":["Allinea il testo al centro"],"Align Text Left":["Allinea il testo a sinistra"],"Start writing or type / to choose a block":["Inizia a scrivere o digita / per scegliere un blocco"],"Empty block; start writing or type forward slash to choose a block":["Blocco vuoto; inizia a scrivere o digita la barra in avanti per scegliere un blocco"],"Paragraph block":["Blocco del paragrafo"],"Page Break":["Interruzione di pagina"],"Stack on mobile":["Stack su mobile"],Annotation:["Annotazione"],"Drag images, upload new ones or select files from your library.":["Trascina le immagini, caricane di nuove o seleziona i file dalla tua libreria."],"blocks\x04Most Used":["Pi\xf9 utilizzati"],"imperative verb\x04Resolve":["Correggi"],"font size name\x04Huge":["Enorme"],"font size name\x04Large":["Grande"],"font size name\x04Medium":["Medio"],"font size name\x04Small":["Piccolo"],"font size name\x04Normal":["Normale"],"keyboard button\x04Enter":["Invio"],"button label\x04Import":["Importa"],"button label\x04Download":["Download"],"button label\x04Embed":["Incorpora"],"block title\x04Embed":["Incorpora"],"block title\x04Classic":["Editor classico"],"block style\x04Large":["Grande"],"%s (opens in a new tab)":["%s (apre in una nuova scheda)"],"Link edited.":["Link modificato."],"Link removed.":["Link rimosso."],media:["media"],"Double-check your settings before publishing.":["Controlla nuovamente le tue impostazioni prima di pubblicare."],"Generating preview\u2026":["Generazione dell'anteprima ..."],"Edit or update the image":["Modifica o aggiorna l'immagine"],Media:["Media"],"Navigate to the nearest toolbar.":["Passare alla barra degli strumenti pi\xf9 vicina."],"Document tools":["Strumenti del documento"],"Document and block tools":["Strumenti del documento e dei blocchi"],"Embed a video from your media library or upload a new one.":["Incorpora un video dalla tua libreria dei media o caricane uno nuovo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Inserisci una poesia. Utilizza formati di spaziatura speciali. O cita i testi."],"Add white space between blocks and customize its height.":["Aggiungi uno spazio bianco tra i blocchi e personalizza la sua altezza."],"Insert additional custom elements with a WordPress shortcode.":["Inserisci elementi personalizzati aggiuntivi con uno shortcode di WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crea una interruzione tra idee o sezioni con un separatore orizzontale."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Dai un'enfasi visiva al testo citato. \"Citando gli altri, citiamo noi stessi.\" - Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Dai un'enfasi visiva speciale ad una citazione dal tuo testo."],"Start with the building block of all narrative.":["Comincia con la pietra angolare di tutta la storia."],"Separate your content into a multi-page experience.":["Suddividi il tuo contenuto in una esperienza multi-pagina."],"Set media and words side-by-side for a richer layout.":["Imposta supporti e parole media affiancati per un layout pi\xf9 ricco."],"Media & Text Settings":["Impostazioni di media e testo"],"Create a bulleted or numbered list.":["Crea un elenco puntato o numerato."],"Display a list of your most recent comments.":["Visualizza una lista dei tuoi commenti pi\xf9 recenti."],"Insert an image to make a visual statement.":["Inserisci una immagine e cattura l'attenzione."],"Add custom HTML code and preview it as you edit.":["Aggiungi codice HTML personalizzato e visualizzalo in anteprima mentre lo modifichi."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduci nuove sezioni e organizza i contenuti per aiutare i visitatori (e i motori di ricerca) a comprenderne la struttura."],"Display multiple images in a rich gallery.":["Visualizza pi\xf9 immagini in una ricca galleria."],"Add a link to a downloadable file.":["Aggiungi un link a un file che pu\xf2 essere scaricato."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incorpora video, immagini, tweet, audio, e altro contenuto da sorgenti esterne."],"Resize for smaller devices":["Ridimensiona per dispositivi pi\xf9 piccoli"],"This embed may not preserve its aspect ratio when the browser is resized.":["Questo incorporamento potrebbe non conservare le proporzioni quando il browser \xe8 ridimensionato."],"This embed will preserve its aspect ratio when the browser is resized.":["Questo incorporamento manterr\xe0 le proporzioni quando viene ridimensionato il browser."],"Embed an Animoto video.":["Incorpora un video da Animoto."],"Embed a Vimeo video.":["Incorpora un video da Vimeo."],"Embed Flickr content.":["Incorpora un contenuto di Flickr."],"Embed Spotify content.":["Incorpora un contenuto di Spotify."],"Embed SoundCloud content.":["Incorpora un contenuto di SoundCloud."],"Embed a WordPress post.":["Incorpora un articolo WordPress."],"Embed an Instagram post.":["Incorpora un post di Instagram."],"Embed a Facebook post.":["Incorpora un post di Facebook."],"Embed a WordPress.tv video.":["Incorpora un video di WordPress.tv."],"Embed a VideoPress video.":["Incorpora un video di VideoPress."],"Embed a Tumblr post.":["Incorpora un articolo di Tumblr."],"Embed a TED video.":["Incorpora un video TED."],"Embed Speaker Deck content.":["Incorpora un contenuto di Speaker Deck."],"Embed a YouTube video.":["Incorpora un video di YouTube."],"Embed SmugMug content.":["Incorpora un contenuto di SmugMug."],"Embed Slideshare content.":["Incorpora un contenuto di Slideshare."],"Embed Scribd content.":["Incorpora un contenuto di Scribd."],"Embed Screencast content.":["Incorpora un contenuto di Screencast."],"Embed ReverbNation content.":["Incorpora un contenuto di ReverbNation."],"Embed a Reddit thread.":["Incorpora un thread di Reddit."],"Embed Polldaddy content.":["Incorpora un contenuto di Polldaddy."],"Embed Mixcloud content.":["Incorpora un contenuto di Mixcloud."],"Embed a tweet.":["Incorpora un tweet."],"Embed Meetup.com content.":["Incorpora un contenuto di Meetup.com."],"Embed Kickstarter content.":["Incorpora un contenuto di Kickstarter."],"Embed Issuu content.":["Incorpora un contenuto di Issuu."],"Embed Imgur content.":["Incorpora un contenuto di Imgur."],"Embed Hulu content.":["Incorpora un contenuto di Hulu."],"Embed a Dailymotion video.":["Incorpora un video da Dailymotion."],"Embed CollegeHumor content.":["Incorpora un contenuto di CollegeHumor."],"Embed Cloudup content.":["Incorpora un contenuto di Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Aggiungi un'immagine o un video con un testo sovrapposto \u2014 ottimi per gli header."],"Display code snippets that respect your spacing and tabs.":["Mostra frammenti di codice che rispettano spazi e tabulazioni."],"Use the classic WordPress editor.":["Utilizza l'editor classico di WordPress."],"Display a list of all categories.":["Visualizza un elenco di tutte le categorie."],"Embed a simple audio player.":["Incorpora un player audio semplice."],"noun\x04View":["Visualizzazione"],"editor button\x04Left to right":["Da sinistra a destra"],"Save as Pending":["Salva come In attesa"],"%s address":["%s indirizzo"],"Paste or type URL":["Incolla o digita l'URL"],"Insert from URL":["Inserisci dall'URL"],"Block Navigator":["Navigazione tra i blocchi"],Styles:["Stili"],"Advanced Panels":["Pannelli avanzati"],"Document Panels":["Pannelli del documento"],General:["Generale"],"Open the block navigation menu.":["Apre il menu per navigare tra i blocchi"],"Work without distraction":["Lavora senza distrazioni"],"Focus on one block at a time":["Concentrati su un blocco alla volta"],"Access all block and document tools in a single place":["Accedi a tutti gli strumenti di blocco e documento in un unico posto"],Options:["Opzioni"],"(opens in a new tab)":["(si apre in una nuova scheda)"],Minutes:["Minuti"],Hours:["Ore"],Time:["Data"],Year:["Anno"],Day:["Giorno"],December:["Dicembre"],November:["Novembre"],October:["Ottobre"],September:["Settembre"],August:["Agosto"],July:["Luglio"],June:["Giugno"],May:["Maggio"],April:["Aprile"],March:["Marzo"],February:["Febbraio"],January:["Gennaio"],Month:["Mese"],Date:["Data"],"Go to the first (home) or last (end) day of a week.":["Vai al primo (inizio) o all'ultimo (fine) giorno della settimana."],"Home/End":["Inizio/Fine"],"Home and End":["Inizio e Fine"],"Move backward (PgUp) or forward (PgDn) by one month.":["Vai indietro (PagSu) o avanti (PagGi\xf9) di un mese."],"PgUp/PgDn":["PagSu/PagGi\xf9"],"Page Up and Page Down":["Pagina Su e Pagina Gi\xf9"],"Move backward (up) or forward (down) by one week.":["Vai indietro (su) o avanti (gi\xf9) di una settimana."],"Up and Down Arrows":["Frecce su e gi\xf9"],"Move backward (left) or forward (right) by one day.":["Vai indietro (sinistra) o avanti (destra) di un giorno."],"Left and Right Arrows":["Frecce sinistra e destra"],"Select the date in focus.":["Selezioni la data col focus."],"Navigating with a keyboard":["Navigazione tramite tastiera"],"Click the desired day to select it.":["Fai clic sul giorno desiderato per selezionarlo."],"Click the right or left arrows to select other months in the past or the future.":["Fai clic sulle frecce sinistra e destra per selezionare un mese precedente o successivo."],"Click to Select":["Fai clic per selezionare"],"Calendar Help":["Aiuto per il calendario"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Utilizza i tasti freccia per cambiare il colore di base. Muovi in su per rendere il colore pi\xf9 chiaro, in gi\xf9 per renderlo pi\xf9 scuro, a sinistra per diminuire la saturazione e a destra per aumentare la saturazione."],"Choose a shade":["Scegli un'ombra"],"Change color format":["Cambia formato colore"],"Color value in HSL":["Colore in valore HSL"],"Color value in RGB":["Colore in valore RGB"],"Color value in hexadecimal":["Colore in valore esadecimale"],"RGB mode active":["Modalit\xe0 RGB attiva"],"Hex color mode active":["Modalit\xe0 colore esadecimale attiva "],"Hue/saturation/lightness mode active":["Modalit\xe0 tonalit\xe0/saturazione/luminosit\xe0 attiva "],"Move the arrow left or right to change hue.":["Utilizza le frecce sinistra o destra per cambiare la tonalit\xe0."],"Hue value in degrees, from 0 to 359.":["Valore della tonalit\xe0 in gradi, da 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valore alfa, da 0 (trasparente) a 1 (completamente opaco)."],Stripes:["Strisce"],"Your site doesn\u2019t include support for this block.":["Il tuo sito non include il supporto per questo blocco."],"Unrecognized Block":["Blocco non riconosciuto"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Il tuo sito non include il supporto per il blocco \"%s\". Puoi lasciare questo blocco intatto o rimuoverlo completamente."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Il tuo sito non include il supporto per il blocco \"%s\". Puoi lasciare questo blocco intatto, convertire il suo contenuto in un blocco HTML personalizzato o rimuoverlo completamente."],"Media area":["area Media"],"Media & Text":["Media e testo"],"Show media on right":["Mostra i media a destra"],"Show media on left":["Mostra i media a sinistra"],"Open in New Tab":["Apri in una nuova scheda"],Cover:["Copertina"],"Border Settings":["Impostazioni bordi"],"Edit media":["Modifica media"],Medium:["Medio"],"Paste URL or type to search":["Incolla l'URL oppure digita per cercare"],Terms:["Termini"],"Your work will be published at the specified date and time.":["Il tuo articolo sar\xe0 pubblicato alla data e ora specificata."],"Are you ready to schedule?":["Sei pronto per la pianificazione?"],"Always show pre-publish checks.":["Mostra sempre le verifiche pre-pubblicazione."],"Take Over":["Prendi il controllo"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Un altro utente sta lavorando ora su questo articolo, significa che non puoi effettuare modifiche, a meno che tu non ne prenda il controllo."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s sta lavorando ora su questo articolo, significa che non puoi effettuare modifiche, a meno che tu non ne prenda il controllo."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Ora un altro utente ha preso il controllo sulla modifica di questo articolo. Non ti preoccupare, le tue modifiche fatte finora sono state salvate."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Ora %s ha preso il controllo sulla modifica di questo articolo. Non ti preoccupare, le tue modifiche fatte finora sono state salvate."],Avatar:["Avatar"],"This post is already being edited.":["Questo articolo \xe8 gi\xe0 in fase di modifica."],"Someone else has taken over this post.":["Qualcun altro ha preso il controllo di questo articolo."],"This block contains unexpected or invalid content.":["Questo blocco contiene contenuto inaspettato o non valido."],"Resolve Block":["Correggi blocco"],"Convert to HTML":["Converti in HTML"],"This block can only be used once.":["Questo blocco pu\xf2 essere utilizzato una sola volta."],"Exit Code Editor":["Esci dall'editor del codice"],"Editing Code":["Modalit\xe0 editor del codice attiva"],"Solid Color":["Tinta unita"],"Main Color":["Colore principale"],HTML:["HTML"],"Write HTML\u2026":["Scrivi HTML\u2026"],"Media Settings":["Impostazioni media"],"Overlay Color":["Colore di sovrapposizione"],Overlay:["Sovrapposizione"],"Insert Media":["Inserisci media"],"Reusable block imported successfully!":["Blocco riutilizzabile importato con successo!"],"Invalid Reusable Block JSON file":["File JSON del blocco riutilizzabile non valido"],"Invalid JSON file":["File JSON non valido"],"Import from JSON":["Importa da JSON"],Backtick:["Accento grave"],Period:["Punto"],Comma:["Virgola"],"Change type of %d block":["Cambia tipo di %d blocco","Cambia tipo di %d blocchi"],Current:["Attuale"],"After Conversion":["Dopo la conversione"],"Change alignment":["Cambia l'allineamento"],"Change text alignment":["Cambia l'allineamento del testo"],"%d block":["%d blocco","%d blocchi"],Escape:["Tasto Esc"],"Forward-slash":["Barra obliqua"],"No archives to show.":["Nessun archivio da mostrare."],"This file is empty.":["Questo file \xe8 vuoto."],"Sorry, this file type is not supported here.":["Questo tipo di file non \xe8 supportato."],"Manage All Reusable Blocks":["Gestisci tutti i blocchi riutilizzabili"],Title:["Titolo"],"Fullscreen Mode":["Modalit\xe0 a schermo intero"],"Beautiful landscape":["Panorama stupendo"],"Close panel":["Chiudi il pannello"],"Convert to Classic Block":["Converti in blocco classico"],"Remove Poster Image":["Rimuovi Immagine di anteprima"],"Select Poster Image":["Seleziona l'immagine di anteprima"],"Poster Image":["Immagine di anteprima"],"This block is deprecated. Please use the Columns block instead.":["Questo blocco \xe8 deprecato. Al suo posto utilizza il blocco Colonne."],"Text Columns (deprecated)":["Testo in colonne (deprecato)"],"Row Count":["Numero di righe"],"Column Count":["Numero di colonne"],"This block is deprecated. Please use the Paragraph block instead.":["Questo blocco \xe8 deprecato. Al suo posto utilizza il blocco Paragrafo."],"Subheading (deprecated)":["Sottotitolo (deprecato)"],blockquote:["citazione"],"Change the block type after adding a new paragraph.":["Cambia il tipo di blocco dopo aver aggiunto un nuovo paragrafo."],"Spotlight Mode":["Modalit\xe0 in risalto"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["I tag aiutano gli utenti e i motori di ricerca a visitare il tuo sito e trovare i contenuti. Aggiungi qualche parola per descrivere il tuo articolo."],"Add tags":["Aggiungi tag"],"Apply the \"%1$s\" format.":["Applica il formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Il tuo tema utilizza i formati articolo per evidenziare diversi tipi di contenuti, come immagini o video. Applica un formato articolo per vedere queste formattazioni speciali."],"Use a post format":["Utilizza un formato articolo"],"Insert After":["Inserisci dopo"],"Insert Before":["Inserisci prima"],"Move %1$d block from position %2$d down by one place":["Muovi %1$d blocco dalla posizione %2$d in gi\xf9 di un posto","Muovi i %1$d blocchi dalla posizione %2$d in gi\xf9 di un posto"],"Move %1$d block from position %2$d up by one place":["Muovi %1$d blocco dalla posizione %2$d in su di un posto","Muovi i %1$d blocchi dalla posizione %2$d in su di un posto"],"Move %1$s block from position %2$d %3$s to position %4$d":["Muovi il blocco %1$s dalla posizione %2$d %3$s alla posizione %4$d"],movie:["film"],"Insert a new block before the selected block(s).":["Inserisce un nuovo blocco prima dei blocchi selezionati."],"Remove the selected block(s).":["Rimuove i blocchi selezionati."],"Duplicate the selected block(s).":["Duplica i blocchi selezionati."],"Block shortcuts":["Scorciatoie per il blocco"],"Clear selection.":["Annulla la selezione."],"Select all text when typing. Press again to select all blocks.":["Seleziona tutto il testo mentre digiti. Premere di nuovo per selezionare tutti i blocchi."],"Selection shortcuts":["Scorciatoie per la selezione"],"Switch between Visual Editor and Code Editor.":["Passa da Editor visuale a Editor del codice e viceversa."],"Navigate to the previous part of the editor (alternative).":["Vai alla sezione precedente dell'editor (alternativo)."],"Navigate to the next part of the editor (alternative).":["Vai alla sezione successiva dell'editor (alternativo)."],"Navigate to the previous part of the editor.":["Vai alla sezione precedente dell'editor."],"Navigate to the next part of the editor.":["Vai alla sezione successiva dell'editor."],"Show or hide the settings sidebar.":["Mostra o nasconde la barra laterale delle impostazioni."],"Redo your last undo.":["Ripristina la modifica annullata."],"Undo your last changes.":["Annulla l'ultima modifica."],"Save your changes.":["Salva le tue modifiche."],"Global shortcuts":["Scorciatoie globali"],"Remove a link.":["Rimuove un link."],"Convert the selected text into a link.":["Converte il testo selezionato in un link."],"Underline the selected text.":["Sottolinea il testo selezionato."],"Make the selected text italic.":["Rende il testo selezionato in corsivo."],"Make the selected text bold.":["Rende il testo selezionato in grassetto."],"Text formatting":["Formattazione del testo"],"Insert a new block after the selected block(s).":["Inserisce un nuovo blocco dopo i blocchi selezionati."],"Keyboard Shortcuts":["Scorciatoie da tastiera"],"Thanks for testing Gutenberg!":["Grazie per aver testato Gutenberg!"],"Help build Gutenberg":["Aiuta a costruire Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Se vuoi imparare di pi\xf9 su come sviluppare blocchi aggiuntivi o sei interessato a dare una mano al progetto, vai al repository su GitHub."],"The WordPress community":["La comunit\xe0 di WordPress"],"Code is Poetry":["Il codice \xe8 poesia"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Puoi sviluppare qualsiasi blocco tu voglia, statico o dinamico, decorativo o semplice. Ecco il blocco di una citazione in evidenza:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Qualsiasi blocco pu\xf2 usufruire di questi allineamenti. Anche i blocchi incorporati hanno i loro e sono gi\xe0 predisposti per essere responsivi:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Quella sopra \xe8 una galleria con sole due immagini. \xc8 un modo facile di creare layout ad impatto visivo, senza dover combattere con i float. Puoi anche riconvertire facilmente la galleria in immagini individuali, utilizzando la funzione di cambio blocco."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Certo, l'immagine a larghezza piena pu\xf2 essere molto grande. Ma qualche volta l'immagine lo merita."],"Accessibility is important — don’t forget image alt attribute":["L'accessibilit\xe0 \xe8 importante \u2014 non dimenticare l'attributo alt dell'immagine"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Se combini i nuovi allineamenti a larghezza ampia e a larghezza piena con le gallerie, puoi creare un layout multimediale molto avanzato, molto velocemente:"],"Media Rich":["Formattazione avanzata dei media"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Puoi cambiare la quantit\xe0 di colonne delle tue gallerie trascinando un selettore nel blocco inspector della barra laterale."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["I blocchi possono essere qualsiasi cosa di cui hai bisogno. Per esempio potresti voler aggiungere una citazione non invasiva come parte della composizione del tuo testo, oppure potresti preferire visualizzarne una gigante. Tutte queste opzioni sono disponibili con lo strumento di inserimento."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["L'informazione corrispondente alla fonte della citazione \xe8 un campo di testo separato, simile alle didascalie sotto le immagini, cos\xec la struttura della citazione \xe8 protetta anche se selezioni, modifichi o rimuovi la fonte. \xc8 sempre facile aggiungerla di nuovo."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["L'editor prover\xe0 a creare una nuova esperienza di costruzione di pagine e articoli che agevoler\xe0 la scrittura di articoli con formattazione avanzata, e con i \u201cblocchi\u201d render\xe0 semplice quello che oggi \xe8 ottenuto con shortcode, HTML personalizzato ed embed discovery di \u201cprovenienza incerta\u201d."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un enorme beneficio dei blocchi \xe8 che puoi modificarli dove sono e modificare il tuo contenuto direttamente. Invece di avere campi per modificare cose come la fonte di una citazione o il testo di un pulsante, puoi cambiare direttamente il contenuto. Prova a modificare la citazione seguente:"],"Visual Editing":["Modifiche visuali"],"And Lists like this one of course :)":["Ed elenchi come questo naturalmente :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blocchi di layout come pulsanti, immagini a tutto schermo (hero), separatori, ecc ecc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Oggetti da incorporare come YouTube, Tweet o altri articoli di WordPress."],Galleries:["Gallerie"],"Images & Videos":["Immagini e video"],"Text & Headings":["Testi e titoli"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Provalo, potresti scoprire cosa WordPress pu\xf2 gi\xe0 aggiungere nei tuoi articoli che non ti aspetti. Ecco un elenco di cosa puoi trovare in questo momento:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Immagina che tutto quello che WordPress pu\xf2 fare sia disponibile velocemente e nella stessa posizione dell'interfaccia. Nessuna necessit\xe0 di capire tag HTML e classi o ricordare le complicate sintassi dei shortcode. \xc8 l'anima che sta dietro allo strumento di inserimento \u2014il pulsante (+) che vedi vicino all'editor\u2014 che ti permette di scorrere tutti i blocchi di contenuto disponibili e aggiungerli nel tuo articolo. Plugin e temi possono registrare i loro propri blocchi, offrendo cos\xec ogni tipo di possibilit\xe0 per formattazioni avanzate e pubblicazione."],"The Inserter Tool":["Lo strumento di inserimento"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Prova a selezionare e rimuovere o modificare la didascalia, ora non devi pi\xf9 stare attento nel selezionare l'immagine o altro testo per errore e rovinarne la presentazione."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Se il tuo tema lo supporta vedrai un pulsante \"larghezza ampia\" nella barra degli strumenti dell'immagine. Provalo."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Gestire immagini e media con la massima attenzione \xe8 un obiettivo primario del nuovo editor. Speriamo che troverai gli aspetti di aggiungere didascalie o di rendere le tue foto a larghezza piena pi\xf9 facili e solidi di prima."],"A Picture is Worth a Thousand Words":["Un'immagine vale pi\xf9 di mille parole"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Anche i titoli sono blocchi separati, i quali aiutano a strutturare e organizzare il tuo contenuto."],"... like this one, which is right aligned.":["... come questo, allineato a destra."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Quello che stai leggendo adesso \xe8 un blocco di testo il pi\xf9 semplice di tutti i blocchi. Il blocco di testo ha le sue opzioni per essere liberamente mosso nell'articolo..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["L'obiettivo di questo nuovo editor \xe8 di rendere l'aggiunta di contenuto con formattazione avanzata in WordPress semplice e piacevole. L'intero articolo \xe8 composto da pezzi di contenuto \u2014un po' simili ai mattoncini LEGO\u2014 che puoi muovere e con cui puoi interagire. Muovi il puntatore e noterai i vari blocchi evidenziarsi con bordi e frecce. Premi le frecce per riposizionare velocemente i blocchi, evitando la paura di perdere qualcosa durante il copia e incolla."],"Of Mountains & Printing Presses":["Di montagne e macchine da stampa"],"Welcome to the Gutenberg Editor":["Benvenuto nell'editor Gutenberg"],"block name\x04More":["Leggi tutto"],"button to expand options\x04More":["Altre opzioni"],"Are you sure you want to unschedule this post?":["Desideri rimuovere la pianificazione di questo articolo?"],"Alt Text (Alternative Text)":["Alt Text (testo alternativo)"],"Reusable Block":["Blocco riutilizzabile"],"Unique identifier for the object.":["Identificatore univoco per l'oggetto."],"Untitled Reusable Block":["Blocco riutilizzabile senza nome"],Small:["piccolo"],"(%s: %s)":["(%s: %s)"],Reusable:["Riutilizzabile"],"(current %s: %s)":["(attuale %s: %s)"],"Remove from Reusable Blocks":["Togli dai blocchi riutilizzabili"],"Add to Reusable Blocks":["Aggiungi ai blocchi riutilizzabili"],"Keep as HTML":["Mantieni come HTML"],"Edit URL":["Modifica l'URL"],"Color Settings":["Impostazioni colore"],"The response is not a valid JSON response.":["La risposta non \xe8 una risposta JSON valida."],"Editor publish":["Pannello di pubblicazione dell'editor"],Muted:["Silenzioso"],"Video Settings":["Impostazioni video"],"recent comments":["Commenti recenti"],"Latest Comments":["Ultimi commenti"],"Display Excerpt":["Visualizza il riassunto"],"Display Date":["Visualizza la data"],"Display Avatar":["Visualizza l'avatar"],"Latest Comments Settings":["Impostazioni ultimi commenti"],"Number of Comments":["Numero di commenti"],"Background Opacity":["Opacit\xe0 dello sfondo"],Auto:["Auto"],Preload:["Precaricamento"],"Audio Settings":["Impostazioni audio"],"Display a monthly archive of your posts.":["Visualizza gli archivi mensili dei tuoi articoli."],"Display as Dropdown":["Visualizza come menu a discesa"],"Show Post Counts":["Mostra conteggio articoli"],"Archives Settings":["Impostazioni degli archivi"],"https://wordpress.org/support/plugin/gutenberg":["https://it.wordpress.org/support/plugin/gutenberg"],Support:["Supporto"],"No comments to show.":["Nessun commento da mostrare."],"%1$s on %2$s":["%1$s su %2$s"],"Select Post":["Seleziona un articolo"],"Select Week":["Seleziona la settimana"],"Select Day":["Seleziona il giorno"],"Select Month":["Seleziona il mese"],"Select Year":["Seleziona l'anno"],Archives:["Archivi"],"Very dark gray":["Grigio molto scuro"],"Cyan bluish gray":["Ciano bluastro grigio"],"Very light gray":["Grigio molto chiaro"],"Vivid cyan blue":["Blu ciano intenso"],"Pale cyan blue":["Blu ciano pallido"],"Vivid green cyan":["Ciano verde intenso"],"Light green cyan":["Ciano verde chiaro"],"Luminous vivid amber":["Ambra intenso luminoso"],"Luminous vivid orange":["Arancione intenso luminoso"],"Vivid red":["Rosso vivo"],"Pale pink":["Rosa pallido"],"Inline image":["Immagine in linea"],"Available block types":["Tipologie di blocchi disponibili"],"Transform To:":["Trasforma in:"],"Remove Block":["Rimuovi blocco"],"Open publish panel":["Apri il pannello di pubblicazione"],Dots:["Punti"],"Wide Line":["Linea ampia"],Large:["Grande"],"Show download button":["Mostra il pulsante download"],"Download button settings":["Impostazioni del pulsante download"],"Link To":["Link a"],"Text link settings":["Impostazioni testo del link"],pdf:["pdf"],document:["documento"],"Copy URL":["Copia l'URL"],"Write file name\u2026":["Scrivi il nome del file..."],"Edit file":["Modifica file"],File:["File"],"A single column within a columns block.":["Una singola colonna all'interno di un blocco di colonne."],Column:["Colonna"],Outline:["Bordo in evidenza"],Loop:["Ciclo"],Autoplay:["Autoplay"],"Playback Controls":["Controlli di riproduzione"],"Close dialog":["Chiudi la finestra di dialogo"],"Sorry, this file type is not permitted for security reasons.":["Questo tipo di file non \xe8 permesso per ragioni di sicurezza."],"Disable tips":["Disabilita i suggerimenti"],"Got it":["Fatto"],"See next tip":["Vedi il prossimo suggerimento"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Quando sei pronto, invia il tuo lavoro per la revisione e un editore sar\xe0 in grado di approvarlo per te."],"Are you ready to submit for review?":["Sei pronto a inviare per la revisione?"],"Replace image":["Sostituisci immagine"],"Remove image":["Rimuovi immagine"],"Error while uploading file %s to the media library.":["Errore durante il caricamento del file %s nella libreria dei media."],"This file exceeds the maximum upload size for this site.":["Questo file supera la dimensione massima di caricamento per questo sito."],"View the autosave":["Visualizza salvataggio automatico"],"There is an autosave of this post that is more recent than the version below.":["C'\xe8 un salvataggio automatico di questo articolo che \xe8 pi\xf9 recente della versione qui sotto."],Autosaving:["Salvataggio automatico in corso"],"Enter URL here\u2026":["Inserisci URL qui\u2026"],"Pin to toolbar":["Aggiungi alla barra degli strumenti"],"Unpin from toolbar":["Rimuovi dalla barra degli strumenti"],"Insert a table \u2014 perfect for sharing charts and data.":["Inserisci una tabella \u2014 perfetto per condividere grafici e dati."],"Fixed width table cells":["Celle tabella a larghezza fissa"],"Table Settings":["Impostazioni tabella"],"Add text that respects your spacing and tabs, and also allows styling.":["Aggiungi testo che rispetta spazi e tabulazioni e ti permette anche di formattare."],"Display a list of your most recent posts.":["Visualizza un elenco dei tuoi articoli pi\xf9 recenti."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Aggiungi un blocco che visualizza il contenuto estratto da altri siti, come Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Aggiungi un blocco che visualizza il contenuto in colonne multiple, quindi aggiungi qualunque blocco di contenuto a tuo piacere."],"Error loading block: %s":["Errore durante il caricamento del blocco: %s"],"Unknown error":["Errore sconosciuto"],"Embed Handler":["Handler dell'oggetto incorporato"],"term\x04Remove %s":["Rimuovi %s"],"Copy the permalink":["Copia il permalink"],"Permalink copied":["Permalink copiato"],"Height in pixels":["Altezza in pixel"],"Spacer Settings":["Impostazioni spazio vuoto"],Spacer:["Spazio vuoto"],"Toggle to show a large initial letter.":["Attiva per mostrare una grande lettera iniziale."],"Showing large initial letter.":["Lettera iniziale pi\xf9 grande visualizzata."],"Name:":["Nome:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s di %3$s)"],"Remove item":["Rimuovi elemento"],"Color code: %s":["Codice colore: %s"],"Skip to the selected block":["Vai al blocco selezionato"],"Publish\u2026":["Pubblica\u2026"],"Schedule\u2026":["Pianifica\u2026"],"Edit post permalink":["Modifica il permalink dell'articolo"],"Show Block Settings":["Mostra impostazioni blocco"],"Hide Block Settings":["Nascondi impostazioni blocco"],"Block settings closed":["Impostazioni blocco chiuse"],"Close plugin":["Chiudi il plugin"],"Link settings":["Impostazioni link"],Unlink:["Rimuovi link"],"Page break":["Interruzione di pagina"],pagination:["paginazione"],"next page":["pagina successiva"],"Image Size":["Dimensione dell'immagine"],Height:["Altezza"],Width:["Larghezza"],"Image Dimensions":["Dimensioni immagine"],"Thumbnails are not cropped.":["Le miniature non sono ritagliate."],"Thumbnails are cropped to align.":["Le miniature sono ritagliate per uniformare le dimensioni."],"Media Library":["Libreria media"],Advanced:["Avanzate"],"Add item":["Aggiungi elemento"],"Reset the template":["Reimposta il template"],"Keep it as is":["Conservalo cos\xec com'\xe8"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Il contenuto del tuo articolo non corrisponde al template assegnato al tuo post type."],"Resetting the template may result in loss of content, do you want to continue?":["Reimpostare il template pu\xf2 portare alla perdita del contenuto, vuoi continuare?"],"Document Statistics":["Statistiche del documento"],"is now scheduled. It will go live on":["\xe8 ora pianificato. Sar\xe0 pubblicato il"],Scheduled:["Pianificato"],"Scheduling\u2026":["Pianificazione in corso\u2026"],"Code editor selected":["Editor del codice selezionato"],"Visual editor selected":["Editor visuale selezionato"],Plugins:["Plugin"],"Custom Size":["Dimensioni personalizzate"],"Layout Elements":["Elementi del layout"],"term\x04%s removed":["%s eliminati"],"term\x04%s added":["%s aggiunti"],"imperative verb\x04Preview":["Anteprima"],"Block deleted.":["Blocco eliminato."],"Block updated.":["Blocco aggiornato."],"Block created.":["Blocco creato."],"Trashing failed":["Eliminazione fallita"],"Updating failed.":["Aggiornamento fallito."],"Scheduling failed.":["Programmazione fallita."],"Publishing failed.":["Pubblicazione fallita."],"View Post":["Visualizza articolo"],"You have unsaved changes. If you proceed, they will be lost.":["Hai delle modifiche non salvate. Se continui, verranno perse."],"Document Outline":["Struttura del documento"],Paragraphs:["Paragrafi"],Headings:["Titoli"],Words:["Parole"],"Content structure":["Struttura del contenuto"],Public:["Pubblico"],"Protected with a password you choose. Only those with the password can view this post.":["Protetto da una password di tua scelta. Solo chi possiede la password pu\xf2 visualizzare questo articolo."],"Password Protected":["Protetto da password"],"Only visible to site admins and editors.":["Visibile solo agli amministratori e agli editori del sito."],Private:["Privato"],"Visible to everyone.":["Visibile a tutti."],"Post Visibility":["Visibilit\xe0 articolo"],"Would you like to privately publish this post now?":["Vorresti pubblicare adesso questo articolo in privato?"],"Use a secure password":["Usa una password sicura"],"Create password":["Crea la password"],"Move to Trash":["Sposta nel cestino"],"Parent Term":["Termine genitore"],"Parent Category":["Categoria genitore"],"Add new term":["Aggiungi nuovo termine"],"Add new category":["Aggiungi una nuova categoria"],Term:["Termine"],Tag:["Tag"],"Add New Term":["Aggiungi nuovo termine"],"Add New Tag":["Aggiungi nuovo tag"],"Switch to Draft":["Converti in bozza"],"Are you sure you want to unpublish this post?":["Desideri annullare la pubblicazione di questo articolo?"],Immediately:["Immediatamente"],"Save Draft":["Salva bozza"],Saving:["Salvataggio in corso"],"Publish:":["Pubblica:"],"Visibility:":["Visibilit\xe0:"],"Are you ready to publish?":["Sei pronto per pubblicare?"],"Copy Link":["Copia il link"],"What\u2019s next?":["Cos'altro puoi fare?"],"is now live.":["\xe8 ora pubblicato."],Published:["Pubblicato"],Schedule:["Pianifica"],Update:["Aggiorna"],"Submit for Review":["Invia per la revisione"],"Updating\u2026":["Aggiornamento in corso\u2026"],"Publishing\u2026":["Stai pubblicando\u2026"],"Allow Pingbacks & Trackbacks":["Permetti pingbacks e trackbacks"],"Permalink:":["Permalink:"],"Pending Review":["In attesa di revisione"],"%d Revision":["%d revisione","%d revisioni"],"Suggestion:":["Suggerimento:"],"Post Format":["Formato articolo"],Chat:["Chat"],Status:["Stato"],Standard:["Standard"],Aside:["Digressione"],"Set Featured Image":["Imposta immagine in evidenza"],"Learn more about manual excerpts":["Per saperne di pi\xf9 sui riassunti manuali"],"Write an excerpt (optional)":["Scrivi un riassunto (facoltativo)"],"Allow Comments":["Permetti di commentare"],"Template:":["Template:"],"no parent":["Nessun genitore"],"no title":["Nessun titolo"],Order:["Ordinamento"],"No blocks found.":["Nessun blocco trovato."],"%d result found.":["%d risultato trovato.","%d risultati trovati."],Saved:["Salvato"],Embeds:["Incorporamenti"],Blocks:["Blocchi"],"Search for a block":["Cerca un blocco"],"Add block":["Aggiungi blocco"],"Add %s":["Aggiungi %s"],"Copy Error":["Copia l'errore"],"Copy Post Text":["Copia il testo dell'articolo"],"Attempt Recovery":["Tentativo di recupero"],"The editor has encountered an unexpected error.":["L'editor ha riscontrato un errore inaspettato."],Undo:["Annulla"],Redo:["Ripeti"],"(Multiple H1 headings are not recommended)":["(molteplici intestazioni H1 sono sconsigliate)"],"(Your theme may already use a H1 for the post title)":["(il tuo tema utilizza gi\xe0 un H1 per il titolo dell'articolo)"],"(Incorrect heading level)":["(livello di intestazione non corretto)"],"(Empty heading)":["(titolo vuoto)"],"Block Styles":["Stili dei blocchi"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Sei sicuro di voler eliminare questo blocco riutilizzabile?\n\nSar\xe0 rimosso definitivamente da tutti i post e dalle pagine che lo utilizzano."],"Convert to Regular Block":["Converti in blocco regolare"],"More options":["Altre opzioni"],"Edit visually":["Modifica visivamente"],Duplicate:["Duplica"],"Blocks cannot be moved down as they are already at the bottom":["I blocchi non possono essere spostati verso il basso poich\xe9 sono gi\xe0 in fondo"],"Blocks cannot be moved up as they are already at the top":["I blocchi non possono essere spostati verso l'alto perch\xe9 sono gi\xe0 all'inizio"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Il blocco %1$s \xe8 all'inizio del contenuto e non pu\xf2 essere spostato %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Il blocco %1$s \xe8 alla fine del contenuto e non pu\xf2 essere spostato %2$s"],"Block %s is the only block, and cannot be moved":["Il blocco %s \xe8 unico, e non pu\xf2 essere mosso"],"Edit as HTML":["Modifica come HTML"],"Convert to Blocks":["Converti in blocchi"],"Block: %s":["Blocco: %s"],"This block has encountered an error and cannot be previewed.":["Questo blocco ha causato un errore e non pu\xf2 essere visualizzato in anteprima."],"No block selected.":["Nessun blocco selezionato."],"Transform into:":["Trasforma in:"],Remove:["Rimuovi"],"Find original":["Trova l'originale"],"Copy All Content":["Copia tutto il contenuto"],"Copied!":["Copiato!"],"Additional settings are now available in the Editor block settings sidebar":["Impostazioni aggiuntive sono ora disponibili nella barra laterale delle impostazioni del blocco"],Visibility:["Visibilit\xe0"],"Status & Visibility":["Stato e visibilit\xe0"],"Page Attributes":["Attributi della pagina"],Block:["Blocco","%d Blocchi"],Document:["Documento"],"Featured Image":["Immagine in evidenza"],"Close settings":["Chiudi le impostazioni"],"Editor content":["Contenuto dell'editor"],Tools:["Strumenti"],Editor:["Editor"],"Code Editor":["Editor del codice"],"Visual Editor":["Editor visuale"],"Editor top bar":["Barra unificata degli strumenti dell'editor"],Settings:["Impostazioni"],Reset:["Reimpostare"],"Dismiss this notice":["Ignora questo avviso"],"Item removed.":["Termine rimosso."],"Item added.":["Elemento aggiunto."],"Drop files to upload":["Trascina file per caricare"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Si \xe8 verificato un errore sconosciuto."],"No results.":["Nessun risultato."],"%d result found, use up and down arrow keys to navigate.":["%d risultato trovato, utilizza i tasti freccia su e gi\xf9 per navigare.","%d risultati trovati, utilizza i tasti freccia su e gi\xf9 per navigare."],"(no title)":["(senza titolo)"],URL:["URL"],Submit:["Invia"],Close:["Chiudi"],"Insert link":["Inserisci link"],"Edit link":["Modifica link"],Link:["Link"],Strikethrough:["Barrato"],Italic:["Corsivo"],Bold:["Grassetto"],"Remove link":["Rimuovi link"],"Number of items":["Numero di elementi"],All:["Tutto"],Category:["Categoria"],"Z \u2192 A":["Z \u27f6 A"],"A \u2192 Z":["A \u27f6 Z"],"Oldest to Newest":["Dal meno recente al pi\xf9 recente"],"Newest to Oldest":["Dal pi\xf9 recente al meno recente"],"Order by":["Ordina per"],Select:["Seleziona"],"Select or Upload Media":["Seleziona o carica media"],Video:["Video"],"Edit video":["Modifica video"],"Write\u2026":["Scrivi..."],poetry:["poesia"],Verse:["Verso"],"New Column":["Nuova colonna"],"Delete Column":["Elimina colonna"],"Add Column After":["Aggiungi colonna dopo"],"Add Column Before":["Aggiungi colonna prima"],"Delete Row":["Elimina riga"],"Add Row After":["Aggiungi riga dopo"],"Add Row Before":["Aggiungi riga prima"],"Edit table":["Modifica tabella"],Table:["Tabella"],"Write subheading\u2026":["Scrivi un sottotitolo..."],"Write shortcode here\u2026":["Scrivi qui lo shortcode..."],Shortcode:["Shortcode"],divider:["divisore"],"horizontal-line":["linea orizzontale"],Separator:["Separatore"],Quote:["Citazione"],"Write citation\u2026":["Scrivi citazione..."],"Write quote\u2026":["Scrivi una citazione..."],Pullquote:["Citazione evidenziata"],"Write preformatted text\u2026":["Scrivi testo preformattato..."],Preformatted:["Preformattato"],text:["testo"],Paragraph:["Paragrafo"],"Font Size":["Dimensione del font"],"Drop Cap":["Capolettera"],"Text Settings":["Impostazioni del testo"],"Read more":["Leggi tutto"],"Write list\u2026":["Scrivi elenco\u2026"],"numbered list":["lista numerata"],"ordered list":["lista ordinata"],"bullet list":["lista puntata"],"Indent list item":["Aumenta rientro voci elenco"],"Outdent list item":["Riduci rientro voci elenco"],"Convert to ordered list":["Converti in lista ordinata"],"Convert to unordered list":["Converti in lista non ordinata"],List:["Elenco"],"recent posts":["articoli recenti"],"No posts found.":["Nessun articolo trovato."],"Latest Posts":["Articoli recenti"],"Display post date":["Visualizza data articolo"],"Grid view":["Visualizzazione in modalit\xe0 griglia"],"List view":["Visualizzazione in modalit\xe0 elenco"],photo:["foto"],"Image Settings":["Impostazioni immagine"],Image:["Immagine"],Preview:["Anteprima"],embed:["incorporato"],"Custom HTML":["HTML personalizzato"],subtitle:["sottotitolo"],title:["titolo"],Heading:["Titolo"],"Write heading\u2026":["Scrivi titolo\u2026"],"Heading %d":["Titolo %d"],Level:["Livello"],"Heading Settings":["Impostazioni titolo"],photos:["Foto"],images:["Immagini"],"Remove Image":["Rimuovi immagine"],None:["Nessuna"],"Media File":["File media"],"Attachment Page":["Pagina dell\u2019allegato"],"Crop Images":["Ritaglia immagini"],"Gallery Settings":["Impostazioni galleria"],Gallery:["Galleria"],Classic:["Editor classico"],video:["video"],audio:["audio"],music:["musica"],image:["immagine"],blog:["blog"],post:["articolo"],"Embedded content from %s":["Contenuto incorporato da %s"],"Enter URL to embed here\u2026":["Inserisci qui l'URL da incorporare..."],"%s URL":["%s URL"],"Embedding\u2026":["Incorporamento in corso\u2026"],"Write title\u2026":["Scrivi il titolo..."],"Fixed Background":["Sfondo fisso"],"Edit image":["Modifica immagine"],Columns:["Colonne"],Experiments:["Esperimenti"],Code:["Codice"],"Write code\u2026":["Scrivi codice..."],Categories:["Categorie"],"Show Hierarchy":["Visualizza la gerarchia"],"Show post counts":["Mostra conteggio articoli"],"Categories Settings":["Impostazioni delle categorie"],"Add text\u2026":["Aggiungi testo..."],Button:["Pulsante"],Apply:["Applica"],"Text Color":["Colore del testo"],"Background Color":["Colore di sfondo"],"Block has been deleted or is unavailable.":["Il blocco \xe8 stato eliminato o non \xe8 disponibile."],"Reusable Blocks":["Blocchi riutilizzabili"],Cancel:["Annulla"],Edit:["Modifica"],"Edit audio":["Modifica l'audio"],"Write caption\u2026":["Scrivi una didascalia..."],"Use URL":["Usa l'URL"],Audio:["Audio"],Upload:["Carica"],"Additional CSS Class(es)":["Classe/i CSS aggiuntiva/e"],"HTML Anchor":["Ancora HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Questa combinazione di colori pu\xf2 essere difficile da leggere per le persone. Prova a utilizzare un colore di sfondo pi\xf9 chiaro e / o un colore di testo pi\xf9 scuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Questa combinazione di colori pu\xf2 essere difficile da leggere per le persone. Prova a utilizzare un colore di sfondo pi\xf9 scuro e / o un colore di testo pi\xf9 brillante."],Clear:["Pulisci"],"Custom color picker":["Selettore colore personalizzato"],"Color: %s":["Colore: %s"],"Full Width":["Larghezza piena"],"Wide Width":["Larghezza ampia"],Widgets:["Widget"],Formatting:["Formattazione"],"Common Blocks":["Blocchi comuni"],"Align Right":["Allinea a destra"],"Align Center":["Allinea al centro"],"Align Left":["Allinea a sinistra"],"Printing since 1440. This is the development plugin for the new block editor in core.":["La stampa dal 1440. Questo \xe8 il plugin di sviluppo per il nuovo editor a blocchi del core."],"Add title":["Aggiungi titolo"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["La modalit\xe0 di sviluppo Gutenberg richiede la creazione di file. Esegui npm install per installare le dipendenze, npm run build per creare i file e npm run dev per creare i file e visualizzare i cambiamenti. Leggi il file contributo per maggiori informazioni."],Author:["Autore"],Slug:["Slug"],Discussion:["Discussione"],"Custom Fields":["Campi personalizzati"],Excerpt:["Riassunto"],Publish:["Pubblica"],Metadata:["Metadati"],Save:["Salva"],Documentation:["Documentazione"],"Select Category":["Seleziona una categoria"],"(Untitled)":["(senza titolo)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg richiede WordPress %s o successivo per funzionare correttamente. Aggiorna WordPress prima di attivare Gutenberg."],"Gutenberg Team":["Team Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s fa"],"Block style name must be a string.":["I nomi degli stili dei blocchi devono essere stringhe."]}},850,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":["2018\u5e7412\u67086\u65e5"],"February 21, 2019":["2019\u5e742\u670821\u65e5"],"May 7, 2019":["2019\u5e745\u67087\u65e5"],"Release Date":["\u30ea\u30ea\u30fc\u30b9\u65e5"],"Jazz Musician":["\u30b8\u30e3\u30ba\u97f3\u697d\u5bb6"],Version:["\u30d0\u30fc\u30b8\u30e7\u30f3"],"Six.":["6."],"Five.":["5."],"Four.":["4."],"Three.":["3."],"Two.":["2."],"One.":["1."],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 \u5c0f\u6797\u4e00\u8336"],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":["\u884c\u52d5\u559a\u8d77"],"In quoting others, we cite ourselves.":[],cite:["\u5f15\u7528"],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":["\u30d6\u30ed\u30c3\u30af\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3"],"Enable Full Site Editing":["\u30b5\u30a4\u30c8\u5168\u4f53\u306e\u7de8\u96c6\u3092\u6709\u52b9\u5316"],"Full Site Editing":["\u30b5\u30a4\u30c8\u5168\u4f53\u306e\u7de8\u96c6"],"Templates to include in your theme.":[],Templates:["\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8"],"Inserter Help Panel":["\u633f\u5165\u30c4\u30fc\u30eb\u30d8\u30eb\u30d7\u30d1\u30cd\u30eb"],"Pre-publish Checks":["\u516c\u958b\u524d\u30c1\u30a7\u30c3\u30af"],"Please contact your site administrator to install new blocks.":["\u65b0\u3057\u3044\u30d6\u30ed\u30c3\u30af\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u3001\u30b5\u30a4\u30c8\u7ba1\u7406\u8005\u306b\u9023\u7d61\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"No blocks found in your library. Please contact your site administrator to install new blocks.":["\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u30d6\u30ed\u30c3\u30af\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002\u30b5\u30a4\u30c8\u7ba1\u7406\u8005\u306b\u9023\u7d61\u3057\u3001\u65b0\u3057\u3044\u30d6\u30ed\u30c3\u30af\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"No blocks found in your library.":["\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u30d6\u30ed\u30c3\u30af\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002"],"No blocks found in your library. These blocks can be downloaded and installed:":["\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u30d6\u30ed\u30c3\u30af\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002\u30d6\u30ed\u30c3\u30af\u306f\u4ee5\u4e0b\u304b\u3089\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059:"],"No blocks found in your library. We did find %d block available for download.":["\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u30d6\u30ed\u30c3\u30af\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002%d\u4ef6\u306e\u30d6\u30ed\u30c3\u30af\u304c\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u53ef\u80fd\u3067\u3059\u3002"],"Block previews can\u2019t load.":["\u30d6\u30ed\u30c3\u30af\u30d7\u30ec\u30d3\u30e5\u30fc\u304c\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002"],Retry:["\u518d\u8a66\u884c"],"Block previews can't install.":["\u30d6\u30ed\u30c3\u30af\u30d7\u30ec\u30d3\u30e5\u30fc\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u305b\u3093\u3002"],"Updated %s":["%s \u3092\u66f4\u65b0\u3057\u307e\u3057\u305f"],"%d active installation":["%d\u500b\u306e\u6709\u52b9\u306a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb"],"This author has %d block, with an average rating of %d.":[],"Authored by %s":["\u4f5c\u8005: %s"],Add:["\u8ffd\u52a0"],"%d total rating":["\u5408\u8a08%d\u4ef6\u306e\u8a55\u4fa1"],"%s out of 5 stars":["5\u3064\u661f\u4e2d%s\u3064\u661f"],"Enter Address":["\u30a2\u30c9\u30ec\u30b9\u3092\u5165\u529b"],"Pill Shape":["\u30ab\u30d7\u30bb\u30eb\u5f62"],"Logos Only":["\u30ed\u30b4\u306e\u307f"],"Create a block of links to your social media or external sites":[],"Social links":["\u30bd\u30fc\u30b7\u30e3\u30eb\u30ea\u30f3\u30af"],"Open block navigator":["\u30d6\u30ed\u30c3\u30af\u30ca\u30d3\u30b2\u30fc\u30bf\u30fc\u3092\u958b\u304f"],"Attachment page":["\u6dfb\u4ed8\u30d5\u30a1\u30a4\u30eb\u306e\u30da\u30fc\u30b8"],Fill:["\u5857\u308a\u3064\u3076\u3057"],"Link rel":["\u30ea\u30f3\u30af rel \u5c5e\u6027"],"Border Radius":["\u89d2\u4e38\u534a\u5f84"],"Write gallery caption\u2026":[],"Content Blocks":["\u30b3\u30f3\u30c6\u30f3\u30c4\u30d6\u30ed\u30c3\u30af"],"Restore the backup":["\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u5fa9\u5143"],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":["\u30d6\u30ed\u30c3\u30af\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u691c\u7d22\u3092\u6709\u52b9\u5316"],"Block Directory":["\u30d6\u30ed\u30c3\u30af\u30c7\u30a3\u30ec\u30af\u30c8\u30ea"],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":["\u30d6\u30ed\u30c3\u30af\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093\u3002"],"%1$d block is disabled.":["%1$d\u500b\u306e\u30d6\u30ed\u30c3\u30af\u304c\u7121\u52b9\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002"],"Reverse List Numbering":["\u30ea\u30b9\u30c8\u306e\u6570\u5b57\u3092\u9006\u9806\u306b\u3059\u308b"],"Start Value":["\u521d\u671f\u5024"],"Ordered List Settings":["\u756a\u53f7\u4ed8\u304d\u30ea\u30b9\u30c8\u8a2d\u5b9a"],"Clear Media":["\u30e1\u30c7\u30a3\u30a2\u3092\u30af\u30ea\u30a2"],"block style\x04Circle Mask":["\u4e38\u5f62\u30de\u30b9\u30af"],"Default Style":["\u30c7\u30d5\u30a9\u30eb\u30c8\u30b9\u30bf\u30a4\u30eb"],"Not set":["\u672a\u8a2d\u5b9a"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":["\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u4f7f\u7528\u3059\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u30d6\u30ed\u30c3\u30af\u5f62\u5f0f\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3002"],"HTML content for the object, transformed for display.":["\u8868\u793a\u7528\u306b\u6574\u5f62\u6e08\u307f\u306e\u3001\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e HTML \u30b3\u30f3\u30c6\u30f3\u30c4\u3002"],"Content for the object, as it exists in the database.":[],"The content for the object.":["\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3002"],"Change column alignment":["\u30ab\u30e9\u30e0\u306e\u914d\u7f6e\u3092\u5909\u66f4"],"Align Column Right":["\u30ab\u30e9\u30e0\u3092\u53f3\u5bc4\u305b"],"Align Column Center":["\u30ab\u30e9\u30e0\u3092\u4e2d\u592e\u914d\u7f6e"],"Align Column Left":["\u30ab\u30e9\u30e0\u3092\u5de6\u5bc4\u305b"],Color:["\u8272"],"Vivid purple":["\u9bae\u3084\u304b\u306a\u30d1\u30fc\u30d7\u30eb"],"Disable & Reload":["\u7121\u52b9\u5316\u3057\u3066\u30ea\u30ed\u30fc\u30c9"],"Enable & Reload":["\u6709\u52b9\u5316\u3057\u3066\u30ea\u30ed\u30fc\u30c9"],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":["\u3053\u308c\u3089\u306e\u30ad\u30fc\u30dc\u30fc\u30c9\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\u3092\u8868\u793a\u3059\u308b\u3002"],"Experiments Settings":["\u5b9f\u9a13\u7684\u8a2d\u5b9a"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":["\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u753b\u9762\u3068\u53e4\u3044\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u30d6\u30ed\u30c3\u30af\u3092\u6709\u52b9\u5316"],"Experiment settings":["\u5b9f\u9a13\u7684\u306a\u8a2d\u5b9a"],"Block name name must be a string.":[],Custom:["\u30ab\u30b9\u30bf\u30e0"],Draft:["\u4e0b\u66f8\u304d"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":["\u30a2\u30f3\u30ab\u30fc\u306e\u8a73\u7d30"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":["\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u30d6\u30ed\u30c3\u30af (\u30c6\u30b9\u30c8\u6a5f\u80fd)"],"Upload a video file, pick one from your media library, or add one with a URL.":["\u52d5\u753b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u304b\u3001\u30e1\u30c7\u30a3\u30a2\u30e9\u30a4\u30d6\u30e9\u30ea\u304b\u3089\u9078\u629e\u3001\u307e\u305f\u306f URL \u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Upload an image file, pick one from your media library, or add one with a URL.":["\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u304b\u3001\u30e1\u30c7\u30a3\u30a2\u30e9\u30a4\u30d6\u30e9\u30ea\u304b\u3089\u9078\u629e\u3001\u307e\u305f\u306f URL \u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Upload an audio file, pick one from your media library, or add one with a URL.":["\u97f3\u58f0\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u304b\u3001\u30e1\u30c7\u30a3\u30a2\u30e9\u30a4\u30d6\u30e9\u30ea\u304b\u3089\u9078\u629e\u3001\u307e\u305f\u306f URL \u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Upload a media file or pick one from your media library.":["\u30e1\u30c7\u30a3\u30a2\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u304b\u3001\u30e1\u30c7\u30a3\u30a2\u30e9\u30a4\u30d6\u30e9\u30ea\u304b\u3089\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],Skip:["\u30b9\u30ad\u30c3\u30d7"],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":["\u3053\u308c\u306f\u4f55 ?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u306b\u3053\u306e\u30ea\u30f3\u30af\u3092\u30d5\u30a9\u30ed\u30fc\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3057\u307e\u3059\u3002"],"Provide more context about where the link goes.":["\u30ea\u30f3\u30af\u5148\u306b\u3064\u3044\u3066\u3001\u3055\u3089\u306a\u308b\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002"],"Title Attribute":["\u30bf\u30a4\u30c8\u30eb\u5c5e\u6027"],"SEO Settings":["SEO \u8a2d\u5b9a"],Description:["\u6982\u8981"],"Open in new tab":["\u65b0\u3057\u3044\u30bf\u30d6\u3067\u958b\u304f"],links:["\u30ea\u30f3\u30af"],navigation:["\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3"],menu:["\u30e1\u30cb\u30e5\u30fc"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3001\u307e\u305f\u306f\u30e1\u30c7\u30a3\u30a2\u30e9\u30a4\u30d6\u30e9\u30ea\u304b\u3089\u9078\u629e\u3057\u3066\u4e0b\u3055\u3044\u3002"],"Learn more about embeds":["\u57cb\u3081\u8fbc\u307f\u306e\u8a73\u7d30"],"https://wordpress.org/support/article/embeds/":["https://wpdocs.osdn.jp/oEmbed"],"Paste a link to the content you want to display on your site.":["\u30b5\u30a4\u30c8\u306b\u8868\u793a\u3057\u305f\u3044\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30ea\u30f3\u30af\u3092\u8cbc\u308a\u4ed8\u3051\u307e\u3059\u3002"],"Upload an image or video file, or pick one from your media library.":["\u753b\u50cf\u3084\u52d5\u753b\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u304b\u3001\u30e1\u30c7\u30a3\u30a2\u30e9\u30a4\u30d6\u30e9\u30ea\u304b\u3089\u9078\u629e\u3057\u3066\u4e0b\u3055\u3044\u3002"],"Three columns; wide center column":["3\u30ab\u30e9\u30e0: \u4e2d\u592e\u3092\u5e83\u304f"],"Three columns; equal split":["3\u30ab\u30e9\u30e0: \u5747\u7b49\u5272"],"Two columns; two-thirds, one-third split":["2\u30ab\u30e9\u30e0: 2/3\u30011/3\u306b\u5206\u5272"],"Two columns; one-third, two-thirds split":["2\u30ab\u30e9\u30e0: 1/3\u30012/3\u306b\u5206\u5272"],"Two columns; equal split":["2\u30ab\u30e9\u30e0: \u5747\u7b49\u5272"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["\u30b5\u30a4\u30c8\u306b%s\u304c\u306a\u3044\u305f\u3081\u3001\u73fe\u5728\u3053\u3053\u306b\u8868\u793a\u3059\u308b\u3082\u306e\u306f\u3042\u308a\u307e\u305b\u3093\u3002"],"More tools & options":["\u30c4\u30fc\u30eb\u3068\u8a2d\u5b9a\u3092\u3055\u3089\u306b\u8868\u793a"],"Create Table":["\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210"],"Insert a table for sharing data.":["\u8868\u3092\u633f\u5165\u3057\u3066\u30c7\u30fc\u30bf\u3092\u30b7\u30a7\u30a2\u3057\u307e\u3059\u3002"],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["\u30b0\u30eb\u30fc\u30d7\u89e3\u9664"],"verb\x04Group":["\u30b0\u30eb\u30fc\u30d7\u5316"],"Separate with commas or the Enter key.":["\u534a\u89d2\u30b3\u30f3\u30de\u307e\u305f\u306f\u30a8\u30f3\u30bf\u30fc\u30ad\u30fc\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"Separate with commas, spaces, or the Enter key.":["\u534a\u89d2\u30b3\u30f3\u30de\u3001\u30b9\u30da\u30fc\u30b9\u307e\u305f\u306f\u30a8\u30f3\u30bf\u30fc\u30ad\u30fc\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"Move image forward":["\u753b\u50cf\u3092\u524d\u306b\u79fb\u52d5"],"Move image backward":["\u753b\u50cf\u3092\u5f8c\u308d\u306b\u79fb\u52d5"],"Sorry, you are not allowed to edit sidebars.":["\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u7de8\u96c6\u3059\u308b\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093\u3002"],"Sorry, you are not allowed to read sidebars.":["\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u8aad\u307f\u8fbc\u3080\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093\u3002"],"The sidebar\u2019s ID.":["\u30b5\u30a4\u30c9\u30d0\u30fc\u306e ID\u3002"],"Displays a set of blocks":["\u30d6\u30ed\u30c3\u30af\u306e\u30bb\u30c3\u30c8\u3092\u8868\u793a\u3057\u307e\u3059\u3002"],"Blocks Area":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2"],"Block rendered as empty.":["\u30d6\u30ed\u30c3\u30af\u3092\u7a7a\u767d\u3068\u3057\u3066\u30ec\u30f3\u30c0\u30ea\u30f3\u30b0\u3057\u307e\u3059\u3002"],"Inline Code":["\u30a4\u30f3\u30e9\u30a4\u30f3\u30b3\u30fc\u30c9"],"Note: Autoplaying videos may cause usability issues for some visitors.":["\u6ce8: \u52d5\u753b\u306e\u81ea\u52d5\u518d\u751f\u306f\u3001\u30d3\u30b8\u30bf\u30fc\u306b\u3088\u3063\u3066\u306f\u30e6\u30fc\u30b6\u30d3\u30ea\u30c6\u30a3\u306e\u554f\u984c\u3092\u5f15\u304d\u8d77\u3053\u3059\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002"],"Footer section":["\u30d5\u30c3\u30bf\u30fc\u30bb\u30af\u30b7\u30e7\u30f3"],"Header section":["\u30d8\u30c3\u30c0\u30fc\u30bb\u30af\u30b7\u30e7\u30f3"],"Sorting and Filtering":["\u4e26\u3079\u66ff\u3048\u3068\u7d5e\u308a\u8fbc\u307f"],"Post Meta Settings":["\u6295\u7a3f\u30e1\u30bf\u8a2d\u5b9a"],"Post Content":["\u6295\u7a3f\u30b3\u30f3\u30c6\u30f3\u30c4"],"Post Content Settings":["\u6295\u7a3f\u30b3\u30f3\u30c6\u30f3\u30c4\u8a2d\u5b9a"],"Percentage width":["\u30d1\u30fc\u30bb\u30f3\u30c8\u6307\u5b9a\u5e45"],"Column Settings":["\u30ab\u30e9\u30e0\u8a2d\u5b9a"],"Note: Autoplaying audio may cause usability issues for some visitors.":["\u6ce8: \u97f3\u58f0\u306e\u81ea\u52d5\u518d\u751f\u306f\u3001\u30d3\u30b8\u30bf\u30fc\u306b\u3088\u3063\u3066\u306f\u30e6\u30fc\u30b6\u30d3\u30ea\u30c6\u30a3\u306e\u554f\u984c\u3092\u5f15\u304d\u8d77\u3053\u3059\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002"],"Block area updated.":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002"],"Block area scheduled.":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u3092\u4e88\u7d04\u6295\u7a3f\u3057\u307e\u3057\u305f\u3002"],"Block area published.":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u3092\u516c\u958b\u3057\u307e\u3057\u305f\u3002"],"Block areas list":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u30ea\u30b9\u30c8"],"Block areas list navigation":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u30ea\u30b9\u30c8\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3"],"Filter block areas list":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u30ea\u30b9\u30c8\u3092\u7d5e\u308a\u8fbc\u3080"],"No block area found.":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002"],"Search Block Areas":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u3092\u691c\u7d22"],"All Block Areas":["\u3059\u3079\u3066\u306e\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2"],"View Block Area":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u3092\u8868\u793a"],"Edit Block Area":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u3092\u7de8\u96c6"],"New Block Area":["\u65b0\u898f\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2"],"Add New Block Area":["\u65b0\u3057\u3044\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u3092\u8ffd\u52a0"],"admin menu\x04Block Areas":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2"],"post type singular name\x04Block Area (Experimental)":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2 (\u30c6\u30b9\u30c8\u6a5f\u80fd)"],"post type general name\x04Block Area (Experimental)":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2 (\u30c6\u30b9\u30c8\u6a5f\u80fd)"],"Experimental custom post type that will store block areas referenced by themes.":["\u30c6\u30fc\u30de\u304c\u53c2\u7167\u53ef\u80fd\u306a\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u3092\u683c\u7d0d\u3059\u308b\u3001\u30c6\u30b9\u30c8\u4e2d\u306e\u30ab\u30b9\u30bf\u30e0\u6295\u7a3f\u30bf\u30a4\u30d7\u3067\u3059\u3002"],"Widgets screen content":["\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u753b\u9762\u30b3\u30f3\u30c6\u30f3\u30c4"],"Widgets advanced settings":["\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u306e\u9ad8\u5ea6\u306a\u8a2d\u5b9a"],"(experimental)":["(\u30c6\u30b9\u30c8\u6a5f\u80fd)"],"Block Areas":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2"],"Widgets screen top bar":["\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u753b\u9762\u306e\u4e0a\u90e8\u30d0\u30fc"],"This color combination may be hard for people to read.":["\u3053\u306e\u8272\u306e\u7d44\u307f\u5408\u308f\u305b\u306f\u3001\u8aad\u307f\u3065\u3089\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002"],"There is no poster image currently selected":["\u73fe\u5728\u9078\u629e\u4e2d\u306e\u30dd\u30b9\u30bf\u30fc\u753b\u50cf\u306f\u3042\u308a\u307e\u305b\u3093"],"The current poster image url is %s":["\u73fe\u5728\u306e\u30dd\u30b9\u30bf\u30fc\u753b\u50cf URL \u306f %s \u3067\u3059"],section:["\u30bb\u30af\u30b7\u30e7\u30f3"],row:["\u884c"],wrapper:["\u30e9\u30c3\u30d1\u30fc"],container:["\u30b3\u30f3\u30c6\u30ca\u30fc"],"A block that groups other blocks.":["\u4ed6\u306e\u30d6\u30ed\u30c3\u30af\u3092\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u305f\u30d6\u30ed\u30c3\u30af\u3002"],Group:["\u30b0\u30eb\u30fc\u30d7"],"Crop image to fill entire column":["\u30ab\u30e9\u30e0\u5168\u4f53\u3092\u5857\u308a\u3064\u3076\u3059\u3088\u3046\u306b\u753b\u50cf\u3092\u5207\u308a\u629c\u304f"],"Play inline":["\u30a4\u30f3\u30e9\u30a4\u30f3\u3067\u518d\u751f"],"Leave empty if the image is purely decorative.":["\u753b\u50cf\u304c\u5358\u306a\u308b\u88c5\u98fe\u306e\u5834\u5408\u3001\u7a7a\u6b04\u306b\u3057\u307e\u3059\u3002"],"Describe the purpose of the image":["\u753b\u50cf\u306e\u76ee\u7684\u3092\u8aac\u660e"],"Add a block":["\u30d6\u30ed\u30c3\u30af\u3092\u8ffd\u52a0"],"Block vertical alignment setting label\x04Change vertical alignment":["\u5782\u76f4\u914d\u7f6e\u3092\u5909\u66f4"],"Block vertical alignment setting\x04Vertically Align Bottom":["\u7e26\u4f4d\u7f6e\u3092\u4e0b\u306b"],"Block vertical alignment setting\x04Vertically Align Middle":["\u7e26\u4f4d\u7f6e\u3092\u4e2d\u592e\u306b"],"Replace Image":["\u753b\u50cf\u3092\u7f6e\u63db"],"Block vertical alignment setting\x04Vertically Align Top":["\u7e26\u4f4d\u7f6e\u3092\u4e0a\u306b"],"Display a legacy widget.":["\u5f93\u6765\u306e\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u3092\u8868\u793a\u3057\u307e\u3059\u3002"],"Legacy Widget (Experimental)":["\u5f93\u6765\u306e\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8 (\u30c6\u30b9\u30c8\u6a5f\u80fd)"],"Change widget":["\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u3092\u5909\u66f4"],"Legacy Widget":["\u5f93\u6765\u306e\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8"],"You don't have permissions to use widgets on this site.":["\u30b5\u30a4\u30c8\u3067\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u3092\u4f7f\u7528\u3059\u308b\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093\u3002"],"Select a legacy widget to display:":["\u5f93\u6765\u306e\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u3092\u9078\u629e\u3057\u3066\u8868\u793a:"],"There are no widgets available.":["\u5229\u7528\u53ef\u80fd\u306a\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u304c\u3042\u308a\u307e\u305b\u3093\u3002"],"Change block type or style":["\u30d6\u30ed\u30c3\u30af\u30bf\u30a4\u30d7\u307e\u305f\u306f\u30b9\u30bf\u30a4\u30eb\u3092\u5909\u66f4"],"keyboard key\x04Space":["Space"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["\u3088\u308a\u30ea\u30c3\u30c1\u306a\u30c6\u30ad\u30b9\u30c8\u5236\u5fa1"],"Search Terms":["\u691c\u7d22\u30ef\u30fc\u30c9"],"Exit the Editor":["\u30a8\u30c7\u30a3\u30bf\u30fc\u3092\u7d42\u4e86"],"Block Manager":["\u30d6\u30ed\u30c3\u30af\u30de\u30cd\u30fc\u30b8\u30e3\u30fc"],"Class name of the widget.":["\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u306e\u30af\u30e9\u30b9\u540d\u3002"],"Sorry, you are not allowed to access widgets on this site.":["\u30b5\u30a4\u30c8\u306e\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093\u3002"],"Widgets (beta)":["\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8 (\u30d9\u30fc\u30bf)"],link:["\u30ea\u30f3\u30af"],"Embedded content from %s can't be previewed in the editor.":["%s \u304b\u3089\u306e\u57cb\u3081\u8fbc\u307f\u30b3\u30f3\u30c6\u30f3\u30c4\u306f\u30a8\u30c7\u30a3\u30bf\u30fc\u5185\u3067\u30d7\u30ec\u30d3\u30e5\u30fc\u3067\u304d\u307e\u305b\u3093\u3002"],"Custom Color":["\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc"],"Prompt visitors to take action with a button-style link.":["\u30dc\u30bf\u30f3\u30b9\u30bf\u30a4\u30eb\u306e\u30ea\u30f3\u30af\u3067\u3001\u8a2a\u554f\u8005\u306b\u884c\u52d5\u3092\u559a\u8d77\u3057\u307e\u3057\u3087\u3046\u3002"],"Stick to the top of the blog":["\u30d6\u30ed\u30b0\u306e\u30c8\u30c3\u30d7\u306b\u56fa\u5b9a"],"Read about permalinks":["\u30d1\u30fc\u30de\u30ea\u30f3\u30af\u306e\u8a73\u7d30"],"The last part of the URL.":[],"URL Slug":["URL \u30b9\u30e9\u30c3\u30b0"],"A cloud of your most used tags.":["\u3088\u304f\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u30bf\u30b0\u306e\u7f85\u5217\u3002"],"Tag Cloud":["\u30bf\u30b0\u30af\u30e9\u30a6\u30c9"],Taxonomy:["\u30bf\u30af\u30bd\u30ce\u30df\u30fc"],"Tag Cloud Settings":["\u30bf\u30b0\u30af\u30e9\u30a6\u30c9\u8a2d\u5b9a"],"- Select -":["- \u9078\u629e -"],Default:["\u30c7\u30d5\u30a9\u30eb\u30c8"],find:["\u898b\u3064\u3051\u308b"],"Help visitors find your content.":["\u8a2a\u554f\u8005\u304c\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u3064\u3051\u3089\u308c\u308b\u3088\u3046\u624b\u52a9\u3051\u3057\u307e\u3057\u3087\u3046\u3002"],Search:["\u691c\u7d22"],"Add button text\u2026":["\u30dc\u30bf\u30f3\u306e\u30c6\u30ad\u30b9\u30c8\u3092\u8ffd\u52a0..."],"Button text":["\u30dc\u30bf\u30f3\u306e\u30c6\u30ad\u30b9\u30c8"],"Optional placeholder\u2026":["\u4efb\u610f\u306e\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0\u30fc\u2026"],"Optional placeholder text":["\u4efb\u610f\u306e\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0\u30fc\u30c6\u30ad\u30b9\u30c8"],"Add label\u2026":["\u30e9\u30d9\u30eb\u3092\u8ffd\u52a0\u2026"],"Label text":["\u30e9\u30d9\u30eb\u30c6\u30ad\u30b9\u30c8"],"image %1$d of %2$d in gallery":["\u30ae\u30e3\u30e9\u30ea\u30fc\u5185\u306e\u753b\u50cf%1$d\u4ef6\u4e2d%2$d\u4ef6"],archive:["\u30a2\u30fc\u30ab\u30a4\u30d6"],posts:["\u6295\u7a3f"],"A calendar of your site\u2019s posts.":["\u30b5\u30a4\u30c8\u306e\u6295\u7a3f\u30ab\u30ec\u30f3\u30c0\u30fc\u3002"],Calendar:["\u30ab\u30ec\u30f3\u30c0\u30fc"],by:["by"],"An error has occurred, which probably means the feed is down. Try again later.":["\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30d5\u30a3\u30fc\u30c9\u306e\u914d\u4fe1\u304c\u505c\u6b62\u3057\u3066\u3044\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u518d\u5ea6\u304a\u8a66\u3057\u304f\u3060\u3055\u3044\u3002"],"RSS Error:":["RSS \u30a8\u30e9\u30fc:"],"block style\x04Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Fullscreen mode deactivated":["\u30d5\u30eb\u30b9\u30af\u30ea\u30fc\u30f3\u30e2\u30fc\u30c9\u3092\u505c\u6b62\u3057\u307e\u3057\u305f"],"Fullscreen mode activated":["\u30d5\u30eb\u30b9\u30af\u30ea\u30fc\u30f3\u30e2\u30fc\u30c9\u3092\u6709\u52b9\u5316\u3057\u307e\u3057\u305f"],"Spotlight mode deactivated":["\u30b9\u30dd\u30c3\u30c8\u30e9\u30a4\u30c8\u30e2\u30fc\u30c9\u3092\u505c\u6b62\u3057\u307e\u3057\u305f"],"Spotlight mode activated":["\u30b9\u30dd\u30c3\u30c8\u30e9\u30a4\u30c8\u30e2\u30fc\u30c9\u3092\u6709\u52b9\u5316\u3057\u307e\u3057\u305f"],"Top toolbar deactivated":["\u30c8\u30c3\u30d7\u30c4\u30fc\u30eb\u30d0\u30fc\u3092\u505c\u6b62\u3057\u307e\u3057\u305f"],"Top toolbar activated":["\u30c8\u30c3\u30d7\u30c4\u30fc\u30eb\u30d0\u30fc\u3092\u6709\u52b9\u5316\u3057\u307e\u3057\u305f"],Back:["\u623b\u308b"],"Feature activated":["\u6a5f\u80fd\u3092\u6709\u52b9\u5316\u3057\u307e\u3057\u305f"],"Feature deactivated":["\u6a5f\u80fd\u3092\u505c\u6b62\u3057\u307e\u3057\u305f"],"Vertical Pos.":["\u7e26\u4f4d\u7f6e"],"Horizontal Pos.":["\u6a2a\u4f4d\u7f6e"],feed:["\u30d5\u30a3\u30fc\u30c9"],atom:["Atom"],"Display entries from any RSS or Atom feed.":["RSS \u307e\u305f\u306f Atom \u30d5\u30a3\u30fc\u30c9\u304b\u3089\u306e\u6295\u7a3f\u3092\u8868\u793a\u3057\u307e\u3059\u3002"],RSS:["RSS"],"Max number of words in excerpt":["\u629c\u7c8b\u5185\u306e\u6700\u5927\u5358\u8a9e\u6570"],"Display excerpt":["\u629c\u7c8b\u3092\u8868\u793a"],"Display date":["\u65e5\u4ed8\u3092\u8868\u793a"],"Display author":["\u6295\u7a3f\u8005\u3092\u8868\u793a"],"RSS Settings":["RSS \u8a2d\u5b9a"],"Edit RSS URL":["RSS \u306e URL \u3092\u7de8\u96c6"],"Content before this block will be shown in the excerpt on your archives page.":["\u3053\u306e\u30d6\u30ed\u30c3\u30af\u3088\u308a\u524d\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3001\u30a2\u30fc\u30ab\u30a4\u30d6\u30da\u30fc\u30b8\u306e\u629c\u7c8b\u306b\u8868\u793a\u3057\u307e\u3059\u3002"],"Hide the excerpt on the full content page":["\u30b3\u30f3\u30c6\u30f3\u30c4\u5168\u6587\u30da\u30fc\u30b8\u3067\u629c\u7c8b\u3092\u975e\u8868\u793a"],"The excerpt is visible.":["\u629c\u7c8b\u3092\u8868\u793a\u4e2d\u3067\u3059\u3002"],"The excerpt is hidden.":["\u629c\u7c8b\u306f\u8868\u793a\u3055\u308c\u307e\u305b\u3093\u3002"],"Sorry, this content could not be embedded.":["\u3053\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002"],"Embed Amazon Kindle content.":["Amazon Kindle \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],ebook:["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Crowdsignal (\u65e7 Polldaddy) \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Focal Point Picker":["\u7126\u70b9\u30d4\u30c3\u30ab\u30fc"],Underline:["\u4e0b\u7dda"],"Attempt Block Recovery":["\u30d6\u30ed\u30c3\u30af\u306e\u30ea\u30ab\u30d0\u30ea\u30fc\u3092\u8a66\u884c"],"Word count type. Do not translate!\x04words":["characters_including_spaces"],"content placeholder\x04Content\u2026":["\u30b3\u30f3\u30c6\u30f3\u30c4\u2026"],"button label\x04Convert to link":["\u30ea\u30f3\u30af\u3078\u5909\u63db"],"button label\x04Try again":["\u518d\u8a66\u884c"],"Editor tips":["\u30a8\u30c7\u30a3\u30bf\u30fc\u306e\u30d2\u30f3\u30c8"],"Block (selected)":["\u30d6\u30ed\u30c3\u30af (\u9078\u629e\u6e08\u307f)"],"Document (selected)":["\u6587\u66f8 (\u9078\u629e\u6e08\u307f)"],"%d word":["%d\u5358\u8a9e"],"Top Toolbar":["\u30c8\u30c3\u30d7\u30c4\u30fc\u30eb\u30d0\u30fc"],"Link Rel":["\u30ea\u30f3\u30af rel \u5c5e\u6027"],"Link CSS Class":["\u30ea\u30f3\u30af CSS \u30af\u30e9\u30b9"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u4f5c\u6210\u3057\u3001\u81ea\u5206\u3084\u4ed6\u306e\u6295\u7a3f\u8005\u304c\u30b5\u30a4\u30c8\u3067\u518d\u5229\u7528\u3067\u304d\u308b\u3088\u3046\u4fdd\u5b58\u3057\u307e\u3057\u3087\u3046\u3002\u30d6\u30ed\u30c3\u30af\u3092\u66f4\u65b0\u3059\u308b\u3068\u3001\u518d\u5229\u7528\u3057\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u5834\u6240\u3067\u66f4\u65b0\u304c\u9069\u7528\u3055\u308c\u307e\u3059\u3002 "],"To edit the featured image, you need permission to upload media.":["\u30a2\u30a4\u30ad\u30e3\u30c3\u30c1\u753b\u50cf\u3092\u7de8\u96c6\u3059\u308b\u306b\u306f\u3001\u30e1\u30c7\u30a3\u30a2\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u6a29\u9650\u304c\u5fc5\u8981\u3067\u3059\u3002"],"To edit this block, you need permission to upload media.":["\u3053\u306e\u30d6\u30ed\u30c3\u30af\u3092\u7de8\u96c6\u3059\u308b\u306b\u306f\u3001\u30e1\u30c7\u30a3\u30a2\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u6a29\u9650\u304c\u5fc5\u8981\u3067\u3059\u3002"],"(selected block)":["(\u9078\u629e\u6e08\u307f\u30d6\u30ed\u30c3\u30af)"],"Block tools":["\u30d6\u30ed\u30c3\u30af\u306e\u30c4\u30fc\u30eb\u30d0\u30fc"],Permalink:["\u30d1\u30fc\u30de\u30ea\u30f3\u30af"],"This image has an empty alt attribute":["\u3053\u306e\u753b\u50cf\u306b\u306f alt \u5c5e\u6027\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093"],"This image has an empty alt attribute; its file name is %s":["\u753b\u50cf\u306b alt \u5c5e\u6027\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u30d5\u30a1\u30a4\u30eb\u540d: %s"],"Block area reverted to draft.":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u3092\u4e0b\u66f8\u304d\u306b\u623b\u3057\u307e\u3057\u305f\u3002 "],"Block area published privately.":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u3092\u9650\u5b9a\u516c\u958b\u3057\u307e\u3057\u305f\u3002 "],"No block areas found in Trash.":["\u30b4\u30df\u7bb1\u5185\u306b\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2\u306f\u3042\u308a\u307e\u305b\u3093\u3002 "],"Block\x04Add New":["\u65b0\u898f\u8ffd\u52a0"],"add new on admin bar\x04Block Area":["\u30d6\u30ed\u30c3\u30af\u30a8\u30ea\u30a2"],"Link inserted.":["\u30ea\u30f3\u30af\u3092\u633f\u5165\u3057\u307e\u3057\u305f\u3002"],"Warning: the link has been inserted but may have errors. Please test it.":["\u8b66\u544a: \u30ea\u30f3\u30af\u3092\u633f\u5165\u3057\u307e\u3057\u305f\u304c\u3001\u30a8\u30e9\u30fc\u304c\u3042\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u30c6\u30b9\u30c8\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"%s block selected.":["%s\u500b\u306e\u30d6\u30ed\u30c3\u30af\u3092\u9078\u629e\u3057\u307e\u3057\u305f\u3002"],Thumbnail:["\u30b5\u30e0\u30cd\u30a4\u30eb"],"Full Size":["\u30d5\u30eb\u30b5\u30a4\u30ba"],"Link selected.":["\u30ea\u30f3\u30af\u3092\u9078\u629e\u3057\u307e\u3057\u305f\u3002"],"Start writing with text or HTML":["\u30c6\u30ad\u30b9\u30c8\u307e\u305f\u306f HTML \u3092\u5165\u529b\u3057\u3066\u958b\u59cb"],"Type text or HTML":["\u30c6\u30ad\u30b9\u30c8\u307e\u305f\u306f HTML \u3092\u5165\u529b"],"Block icon":["\u30d6\u30ed\u30c3\u30af\u30a2\u30a4\u30b3\u30f3"],"Align Text Right":["\u53f3\u5bc4\u305b"],"Align Text Center":["\u4e2d\u592e\u5bc4\u305b"],"Align Text Left":["\u5de6\u5bc4\u305b"],"Start writing or type / to choose a block":["\u6587\u7ae0\u3092\u5165\u529b\u3001\u307e\u305f\u306f / \u3067\u30d6\u30ed\u30c3\u30af\u3092\u9078\u629e"],"Empty block; start writing or type forward slash to choose a block":["\u7a7a\u306e\u30d6\u30ed\u30c3\u30af\u3067\u3059 - \u6587\u7ae0\u3092\u5165\u529b\u3001\u307e\u305f\u306f / \u3067\u30d6\u30ed\u30c3\u30af\u3092\u9078\u629e "],"Paragraph block":["\u6bb5\u843d\u30d6\u30ed\u30c3\u30af"],"Page Break":["\u30da\u30fc\u30b8\u533a\u5207\u308a"],"Stack on mobile":["\u30e2\u30d0\u30a4\u30eb\u3067\u306f\u4e0a\u4e0b\u306b\u3059\u308b"],Annotation:["\u6ce8\u91c8"],"Drag images, upload new ones or select files from your library.":["\u753b\u50cf\u3092\u30c9\u30e9\u30c3\u30b0\u3057\u3066\u65b0\u3057\u304f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u304b\u3001\u30e9\u30a4\u30d6\u30e9\u30ea\u304b\u3089\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002 "],"blocks\x04Most Used":["\u6700\u3082\u4f7f\u308f\u308c\u3066\u3044\u308b"],"imperative verb\x04Resolve":["\u89e3\u6c7a"],"font size name\x04Huge":["\u7279\u5927"],"font size name\x04Large":["\u5927"],"font size name\x04Medium":["\u4e2d"],"font size name\x04Small":["\u5c0f"],"font size name\x04Normal":["\u6a19\u6e96"],"keyboard button\x04Enter":["\u5165\u529b"],"button label\x04Import":["\u30a4\u30f3\u30dd\u30fc\u30c8"],"button label\x04Download":["\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9"],"button label\x04Embed":["\u57cb\u3081\u8fbc\u307f"],"block title\x04Embed":["\u57cb\u3081\u8fbc\u307f"],"block title\x04Classic":["\u30af\u30e9\u30b7\u30c3\u30af"],"block style\x04Large":["\u5927"],"%s (opens in a new tab)":["%s (\u65b0\u3057\u3044\u30bf\u30d6\u3067\u958b\u304f)"],"Link edited.":["\u30ea\u30f3\u30af\u3092\u7de8\u96c6\u3057\u307e\u3057\u305f\u3002"],"Link removed.":["\u30ea\u30f3\u30af\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002"],media:["\u30e1\u30c7\u30a3\u30a2"],"Double-check your settings before publishing.":["\u516c\u958b\u3059\u308b\u524d\u306b\u3001\u8a2d\u5b9a\u3092\u518d\u78ba\u8a8d\u3057\u307e\u3057\u3087\u3046\u3002"],"Generating preview\u2026":["\u30d7\u30ec\u30d3\u30e5\u30fc\u3092\u751f\u6210\u4e2d..."],"Edit or update the image":["\u753b\u50cf\u306e\u7de8\u96c6\u307e\u305f\u306f\u66f4\u65b0"],Media:["\u30e1\u30c7\u30a3\u30a2"],"Navigate to the nearest toolbar.":["\u4e00\u756a\u8fd1\u304f\u306b\u3042\u308b\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u79fb\u52d5\u3059\u308b\u3002"],"Document tools":["\u6587\u66f8\u30c4\u30fc\u30eb"],"Document and block tools":["\u6587\u66f8\u30fb\u30d6\u30ed\u30c3\u30af\u30c4\u30fc\u30eb"],"Embed a video from your media library or upload a new one.":["\u52d5\u753b\u3092\u30e1\u30c7\u30a3\u30a2\u30e9\u30a4\u30d6\u30e9\u30ea\u304b\u3089\u3001\u307e\u305f\u306f\u65b0\u3057\u304f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3057\u3066\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u8a69\u3092\u633f\u5165\u3057\u307e\u3059\u3002\u7279\u5225\u306a\u4f59\u767d\u5f62\u5f0f\u3092\u4f7f\u3063\u305f\u308a\u3001\u6b4c\u8a5e\u3092\u5f15\u7528\u3057\u305f\u308a\u3067\u304d\u307e\u3059\u3002"],"Add white space between blocks and customize its height.":["\u30d6\u30ed\u30c3\u30af\u306e\u9593\u306b\u3001\u9ad8\u3055\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u53ef\u80fd\u306a\u4f59\u767d\u3092\u8ffd\u52a0\u3057\u307e\u3059\u3002"],"Insert additional custom elements with a WordPress shortcode.":["WordPress \u30b7\u30e7\u30fc\u30c8\u30b3\u30fc\u30c9\u3067\u8ffd\u52a0\u306e\u30ab\u30b9\u30bf\u30e0\u8981\u7d20\u3092\u633f\u5165\u3057\u307e\u3059\u3002"],"Create a break between ideas or sections with a horizontal separator.":["\u6c34\u5e73\u306e\u533a\u5207\u308a\u3092\u4f7f\u3063\u3066\u3001\u30a2\u30a4\u30c7\u30a2\u3084\u30bb\u30af\u30b7\u30e7\u30f3\u306e\u9593\u3067\u6539\u884c\u3057\u307e\u3059\u3002"],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u5f15\u7528\u30c6\u30ad\u30b9\u30c8\u3092\u8996\u899a\u7684\u306b\u5f37\u8abf\u3057\u307e\u3059\u3002\u300c\u4ed6\u8005\u306e\u5f15\u7528\u306f\u3001\u6211\u3005\u81ea\u8eab\u3078\u306e\u5f15\u7528\u3067\u3042\u308b\u300d\u2014\u30d5\u30ea\u30aa\u30fb\u30b3\u30eb\u30bf\u30b5\u30eb"],"Give special visual emphasis to a quote from your text.":["\u6587\u7ae0\u304b\u3089\u306e\u5f15\u7528\u306b\u7279\u5225\u306a\u8996\u899a\u7684\u5f37\u8abf\u3092\u4e0e\u3048\u307e\u3059\u3002"],"Start with the building block of all narrative.":["\u30d6\u30ed\u30c3\u30af\u3092\u4f7f\u3063\u3066\u3001\u3044\u308d\u3044\u308d\u306a\u7269\u8a9e\u3092\u7d44\u307f\u7acb\u3066\u3066\u304f\u3060\u3055\u3044\u3002"],"Separate your content into a multi-page experience.":["\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u8907\u6570\u306e\u30da\u30fc\u30b8\u306b\u5206\u3051\u3066\u8868\u793a\u3057\u307e\u3059\u3002"],"Set media and words side-by-side for a richer layout.":["\u753b\u50cf\u3068\u6587\u7ae0\u3092\u6a2a\u4e26\u3073\u306e\u30ea\u30c3\u30c1\u306a\u30ec\u30a4\u30a2\u30a6\u30c8\u306b\u3057\u307e\u3059\u3002"],"Media & Text Settings":["\u30e1\u30c7\u30a3\u30a2\u3068\u6587\u7ae0\u306e\u8a2d\u5b9a"],"Create a bulleted or numbered list.":["\u756a\u53f7\u306a\u3057\u3001\u307e\u305f\u306f\u756a\u53f7\u4ed8\u304d\u306e\u30ea\u30b9\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002"],"Display a list of your most recent comments.":["\u6700\u65b0\u306e\u30b3\u30e1\u30f3\u30c8\u3092\u8868\u793a\u3057\u307e\u3059\u3002"],"Insert an image to make a visual statement.":["\u753b\u50cf\u3092\u633f\u5165\u3057\u3001\u8996\u899a\u306b\u8a34\u3048\u307e\u3059\u3002"],"Add custom HTML code and preview it as you edit.":["\u30ab\u30b9\u30bf\u30e0 HTML \u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u3002\u7de8\u96c6\u3057\u306a\u304c\u3089\u30d7\u30ec\u30d3\u30e5\u30fc\u304c\u53ef\u80fd\u3067\u3059\u3002"],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u65b0\u3057\u3044\u30bb\u30af\u30b7\u30e7\u30f3\u3092\u7d39\u4ecb\u3057\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u6574\u7406\u3059\u308b\u3053\u3068\u3067\u3001\u30d3\u30b8\u30bf\u30fc (\u304a\u3088\u3073\u691c\u7d22\u30a8\u30f3\u30b8\u30f3) \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u69cb\u9020\u7406\u89e3\u306e\u624b\u52a9\u3051\u3092\u3057\u307e\u3057\u3087\u3046\u3002"],"Display multiple images in a rich gallery.":["\u8907\u6570\u306e\u753b\u50cf\u3092\u30ea\u30c3\u30c1\u306a\u30ae\u30e3\u30e9\u30ea\u30fc\u3067\u8868\u793a\u3057\u307e\u3059\u3002"],"Add a link to a downloadable file.":["\u30d5\u30a1\u30a4\u30eb\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u30ea\u30f3\u30af\u3092\u8ffd\u52a0\u3057\u307e\u3059\u3002"],"Embed videos, images, tweets, audio, and other content from external sources.":["\u52d5\u753b\u3001\u753b\u50cf\u3001\u30c4\u30a4\u30fc\u30c8\u3001\u97f3\u58f0\u3001\u304a\u3088\u3073\u305d\u306e\u4ed6\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u5916\u90e8\u30bd\u30fc\u30b9\u304b\u3089\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Resize for smaller devices":["\u5c0f\u3055\u3044\u7aef\u672b\u3067\u30ea\u30b5\u30a4\u30ba"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u3053\u306e\u57cb\u3081\u8fbc\u307f\u306f\u3001\u30d6\u30e9\u30a6\u30b6\u306e\u30b5\u30a4\u30ba\u5909\u66f4\u6642\u306b\u30a2\u30b9\u30da\u30af\u30c8\u6bd4\u3092\u4fdd\u6301\u3057\u306a\u3044\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002"],"This embed will preserve its aspect ratio when the browser is resized.":["\u3053\u306e\u57cb\u3081\u8fbc\u307f\u306f\u3001\u30d6\u30e9\u30a6\u30b6\u306e\u30b5\u30a4\u30ba\u5909\u66f4\u6642\u306b\u30a2\u30b9\u30da\u30af\u30c8\u6bd4\u3092\u4fdd\u6301\u3057\u307e\u3059\u3002"],"Embed an Animoto video.":["Animoto \u52d5\u753b\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed a Vimeo video.":["Vimeo \u52d5\u753b\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Flickr content.":["Flickr \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Spotify content.":["Spotify \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed SoundCloud content.":["SoundCloud \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed a WordPress post.":["WordPress \u6295\u7a3f\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed an Instagram post.":["Instagram \u6295\u7a3f\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed a Facebook post.":["Facebook \u6295\u7a3f\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed a WordPress.tv video.":["WordPress.tv \u52d5\u753b\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed a VideoPress video.":["VideoPress \u52d5\u753b\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed a Tumblr post.":["Tumblr \u6295\u7a3f\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed a TED video.":["TED \u52d5\u753b\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Speaker Deck content.":["Speaker Deck \u30b9\u30e9\u30a4\u30c9\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed a YouTube video.":["YouTube \u52d5\u753b\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed SmugMug content.":["SmugMug \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Slideshare content.":["Slideshare \u30b9\u30e9\u30a4\u30c9\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Scribd content.":["Scribd \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Screencast content.":["Screencast \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed ReverbNation content.":["ReverbNation \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed a Reddit thread.":["Reddit \u30b9\u30ec\u30c3\u30c9\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Polldaddy content.":["Polldaddy \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Mixcloud content.":["Mixcloud \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed a tweet.":["\u30c4\u30a4\u30fc\u30c8\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Meetup.com content.":["Meetup.com \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Kickstarter content.":["Kickstarter \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Issuu content.":["Issuu \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Imgur content.":["Imgur \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Hulu content.":["Hulu \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed a Dailymotion video.":["Dailymotion \u52d5\u753b\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed CollegeHumor content.":["CollegeHumor \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Embed Cloudup content.":["Cloudup \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"Add an image or video with a text overlay \u2014 great for headers.":["\u30c6\u30ad\u30b9\u30c8\u30aa\u30fc\u30d0\u30fc\u30ec\u30a4\u3092\u542b\u3080\u753b\u50cf\u307e\u305f\u306f\u52d5\u753b\u3092\u8ffd\u52a0\u3057\u307e\u3059\u3002\u30d8\u30c3\u30c0\u30fc\u306b\u6700\u9069\u3067\u3059\u3002"],"Display code snippets that respect your spacing and tabs.":["\u4f59\u767d\u3084\u30bf\u30b0\u3092\u8003\u616e\u3057\u305f\u30b3\u30fc\u30c9\u30b9\u30cb\u30da\u30c3\u30c8\u3092\u8868\u793a\u3057\u307e\u3059\u3002"],"Use the classic WordPress editor.":["WordPress \u30af\u30e9\u30b7\u30c3\u30af\u30a8\u30c7\u30a3\u30bf\u30fc\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002"],"Display a list of all categories.":["\u3059\u3079\u3066\u306e\u30ab\u30c6\u30b4\u30ea\u30fc\u3092\u30ea\u30b9\u30c8\u8868\u793a\u3057\u307e\u3059\u3002"],"Embed a simple audio player.":["\u30b7\u30f3\u30d7\u30eb\u306a\u97f3\u58f0\u30d7\u30ec\u30a4\u30e4\u30fc\u3092\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002"],"noun\x04View":["\u8868\u793a"],"editor button\x04Left to right":["\u5de6\u304b\u3089\u53f3"],"Save as Pending":["\u30ec\u30d3\u30e5\u30fc\u5f85\u3061\u3068\u3057\u3066\u4fdd\u5b58"],"%s address":["%s\u306e\u30a2\u30c9\u30ec\u30b9"],"Paste or type URL":["URL \u3092\u5165\u529b\u307e\u305f\u306f\u8cbc\u308a\u4ed8\u3051"],"Insert from URL":["URL \u304b\u3089\u633f\u5165"],"Block Navigator":["\u30d6\u30ed\u30c3\u30af\u30ca\u30d3\u30b2\u30fc\u30bf\u30fc"],Styles:["\u30b9\u30bf\u30a4\u30eb"],"Advanced Panels":["\u8a73\u7d30\u30d1\u30cd\u30eb"],"Document Panels":["\u6587\u66f8\u30d1\u30cd\u30eb"],General:["\u4e00\u822c"],"Open the block navigation menu.":["\u30d6\u30ed\u30c3\u30af\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u958b\u304f\u3002"],"Work without distraction":["\u6c17\u304c\u6563\u308b\u8981\u7d20\u3092\u96a0\u3059"],"Focus on one block at a time":["\u3072\u3068\u3064\u306e\u30d6\u30ed\u30c3\u30af\u306b\u96c6\u4e2d"],"Access all block and document tools in a single place":["\u30d6\u30ed\u30c3\u30af\u30fb\u6587\u66f8\u30c4\u30fc\u30eb\u3092\u540c\u3058\u5834\u6240\u306b\u307e\u3068\u3081\u308b"],Options:["\u30aa\u30d7\u30b7\u30e7\u30f3"],"(opens in a new tab)":["(\u65b0\u3057\u3044\u30bf\u30d6\u3067\u958b\u304f)"],Minutes:["\u5206"],Hours:["\u6642"],Time:["\u6642\u9593"],Year:["\u5e74"],Day:["\u65e5"],December:["12\u6708"],November:["11\u6708"],October:["10\u6708"],September:["9\u6708"],August:[" 8\u6708"],July:["7\u6708"],June:["6\u6708"],May:["5\u6708"],April:["4\u6708"],March:["3\u6708"],February:["2\u6708"],January:["1\u6708"],Month:["\u6708"],Date:["\u65e5\u4ed8"],"Go to the first (home) or last (end) day of a week.":["1\u9031\u9593\u306e\u521d\u65e5 (home) \u307e\u305f\u306f\u6700\u7d42\u65e5 (end) \u306b\u79fb\u52d5\u3057\u307e\u3059\u3002"],"Home/End":["Home/End"],"Home and End":["Home \u3068 End"],"Move backward (PgUp) or forward (PgDn) by one month.":["1\u30f6\u6708\u305a\u3064\u5f8c\u308d (PgUp) \u304a\u3088\u3073\u524d (PgDn) \u306b\u79fb\u52d5\u3057\u307e\u3059\u3002"],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up \u3068 Page Down"],"Move backward (up) or forward (down) by one week.":["1\u9031\u9593\u305a\u3064\u5f8c\u308d (\u4e0a) \u304a\u3088\u3073\u524d (\u4e0b) \u306b\u79fb\u52d5\u3057\u307e\u3059\u3002"],"Up and Down Arrows":["\u5341\u5b57\u30ad\u30fc\u306e\u4e0a\u4e0b"],"Move backward (left) or forward (right) by one day.":["1\u65e5\u305a\u3064\u5f8c\u308d (\u5de6) \u304a\u3088\u3073\u524d (\u53f3) \u306b\u79fb\u52d5\u3057\u307e\u3059\u3002"],"Left and Right Arrows":["\u5341\u5b57\u30ad\u30fc\u306e\u5de6\u53f3"],"Select the date in focus.":["\u30d5\u30a9\u30fc\u30ab\u30b9\u3059\u308b\u65e5\u306b\u3061\u3092\u9078\u629e\u3057\u307e\u3059\u3002"],"Navigating with a keyboard":["\u30ad\u30fc\u30dc\u30fc\u30c9\u3067\u306e\u64cd\u4f5c"],"Click the desired day to select it.":["\u5e0c\u671b\u65e5\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u9078\u629e\u3057\u307e\u3059\u3002"],"Click the right or left arrows to select other months in the past or the future.":["\u5de6\u53f3\u306e\u77e2\u5370\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u3001\u672a\u6765\u307e\u305f\u306f\u904e\u53bb\u306e\u6708\u3092\u9078\u629e\u3057\u307e\u3059\u3002"],"Click to Select":["\u30af\u30ea\u30c3\u30af\u3057\u3066\u9078\u629e"],"Calendar Help":["\u30ab\u30ec\u30f3\u30c0\u30fc\u306e\u30d8\u30eb\u30d7"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["\u77e2\u5370\u30ad\u30fc\u3092\u4f7f\u7528\u3057\u3066\u57fa\u672c\u8272\u3092\u5909\u66f4\u3057\u307e\u3059\u3002\u8272\u3092\u660e\u308b\u304f\u3059\u308b\u306b\u306f\u4e0a\u306b\u3001\u6697\u304f\u3059\u308b\u306b\u306f\u4e0b\u306b\u3001\u5f69\u5ea6\u3092\u4e0a\u3052\u308b\u306b\u306f\u5de6\u306b\u3001\u5f69\u5ea6\u3092\u4e0b\u3052\u308b\u306b\u306f\u53f3\u306b\u52d5\u304b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Choose a shade":["\u5f71\u3092\u9078\u629e"],"Change color format":["\u8272\u306e\u5f62\u5f0f\u3092\u5909\u66f4"],"Color value in HSL":["HSL \u5024\u3067\u306e\u8272\u6307\u5b9a"],"Color value in RGB":["RGB \u5024\u3067\u306e\u8272\u6307\u5b9a"],"Color value in hexadecimal":["16\u9032\u6570\u3067\u306e\u8272\u6307\u5b9a"],"RGB mode active":["RGB \u30e2\u30fc\u30c9\u3092\u4f7f\u7528\u4e2d"],"Hex color mode active":["16\u9032\u6570\u30ab\u30e9\u30fc\u30e2\u30fc\u30c9\u3092\u4f7f\u7528\u4e2d"],"Hue/saturation/lightness mode active":["\u8272\u76f8 / \u5f69\u5ea6 / \u660e\u5ea6\u30e2\u30fc\u30c9\u3092\u4f7f\u7528\u4e2d"],"Move the arrow left or right to change hue.":["\u77e2\u5370\u3092\u5de6\u53f3\u306b\u79fb\u52d5\u3057\u3066\u8272\u76f8\u3092\u5909\u66f4\u3057\u307e\u3059\u3002"],"Hue value in degrees, from 0 to 359.":["0\u304b\u3089369\u307e\u3067\u306e\u5ea6\u6570\u306b\u3088\u308b\u8272\u76f8\u5024\u3002"],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["0 (\u900f\u660e) \u304b\u30891 (\u5b8c\u5168\u306b\u4e0d\u900f\u660e) \u307e\u3067\u306e\u30a2\u30eb\u30d5\u30a1\u5024\u3002"],Stripes:["\u30b9\u30c8\u30e9\u30a4\u30d7"],"Your site doesn\u2019t include support for this block.":["\u3053\u306e\u30d6\u30ed\u30c3\u30af\u306f\u30b5\u30a4\u30c8\u3067\u672a\u5bfe\u5fdc\u3067\u3059\u3002"],"Unrecognized Block":["\u8a8d\u8b58\u3067\u304d\u306a\u3044\u30d6\u30ed\u30c3\u30af"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\"%s\" \u30d6\u30ed\u30c3\u30af\u306f\u30b5\u30a4\u30c8\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u305d\u306e\u307e\u307e\u6b8b\u3059\u304b\u3001\u5b8c\u5168\u306b\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\"%s\" \u30d6\u30ed\u30c3\u30af\u306f\u30b5\u30a4\u30c8\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u305d\u306e\u307e\u307e\u6b8b\u3059\u304b\u3001\u30ab\u30b9\u30bf\u30e0 HTML \u30d6\u30ed\u30c3\u30af\u3078\u5909\u63db\u3001\u307e\u305f\u306f\u5b8c\u5168\u306b\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Media area":["\u30e1\u30c7\u30a3\u30a2\u30a8\u30ea\u30a2"],"Media & Text":["\u30e1\u30c7\u30a3\u30a2\u3068\u6587\u7ae0"],"Show media on right":["\u30e1\u30c7\u30a3\u30a2\u3092\u53f3\u306b\u8868\u793a"],"Show media on left":["\u30e1\u30c7\u30a3\u30a2\u3092\u5de6\u306b\u8868\u793a"],"Open in New Tab":["\u65b0\u3057\u3044\u30bf\u30d6\u3067\u958b\u304f"],Cover:["\u30ab\u30d0\u30fc"],"Border Settings":["\u67a0\u7dda\u8a2d\u5b9a"],"Edit media":["\u30e1\u30c7\u30a3\u30a2\u3092\u7de8\u96c6"],Medium:["\u4e2d"],"Paste URL or type to search":["URL \u3092\u30da\u30fc\u30b9\u30c8\u307e\u305f\u306f\u5165\u529b\u3057\u3066\u691c\u7d22"],Terms:["\u9805\u76ee"],"Your work will be published at the specified date and time.":["\u3053\u306e\u6295\u7a3f\u306f\u8a2d\u5b9a\u65e5\u6642\u306b\u516c\u958b\u3055\u308c\u307e\u3059\u3002"],"Are you ready to schedule?":["\u6295\u7a3f\u3092\u4e88\u7d04\u3057\u307e\u3059\u304b ?"],"Always show pre-publish checks.":["\u516c\u958b\u524d\u30c1\u30a7\u30c3\u30af\u3092\u5e38\u306b\u8868\u793a\u3059\u308b\u3002"],"Take Over":["\u5f15\u304d\u7d99\u3050"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u4ed6\u306e\u30e6\u30fc\u30b6\u30fc\u304c\u73fe\u5728\u3053\u306e\u6295\u7a3f\u3092\u7de8\u96c6\u4e2d\u3067\u3059\u3002\u5f15\u304d\u7d99\u304e\u306e\u64cd\u4f5c\u3092\u884c\u308f\u306a\u3044\u9650\u308a\u3001\u5909\u66f4\u3092\u52a0\u3048\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s \u3055\u3093\u304c\u73fe\u5728\u3053\u306e\u6295\u7a3f\u3092\u7de8\u96c6\u4e2d\u3067\u3059\u3002\u5f15\u304d\u7d99\u304e\u306e\u64cd\u4f5c\u3092\u884c\u308f\u306a\u3044\u9650\u308a\u3001\u5909\u66f4\u3092\u52a0\u3048\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002"],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u4ed6\u306e\u30e6\u30fc\u30b6\u30fc\u304c\u73fe\u5728\u3053\u306e\u6295\u7a3f\u306e\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u7de8\u96c6\u4e2d\u3067\u3059\u304c\u3001\u3054\u5fc3\u914d\u306a\u304f\u3002\u3053\u308c\u307e\u3067\u306b\u52a0\u3048\u305f\u5909\u66f4\u306f\u4fdd\u5b58\u3055\u308c\u3066\u3044\u307e\u3059\u3002"],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s \u3055\u3093\u304c\u73fe\u5728\u3053\u306e\u6295\u7a3f\u306e\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u7de8\u96c6\u4e2d\u3067\u3059\u304c\u3001\u3054\u5fc3\u914d\u306a\u304f\u3002\u3053\u308c\u307e\u3067\u306b\u52a0\u3048\u305f\u5909\u66f4\u306f\u4fdd\u5b58\u3055\u308c\u3066\u3044\u307e\u3059\u3002"],Avatar:["\u30a2\u30d0\u30bf\u30fc"],"This post is already being edited.":["\u3053\u306e\u6295\u7a3f\u306f\u73fe\u5728\u7de8\u96c6\u4e2d\u3067\u3059\u3002"],"Someone else has taken over this post.":["\u4ed6\u306e\u4eba\u304c\u3053\u306e\u6295\u7a3f\u306e\u7de8\u96c6\u3092\u5f15\u304d\u7d99\u304e\u307e\u3057\u305f\u3002"],"This block contains unexpected or invalid content.":["\u3053\u306e\u30d6\u30ed\u30c3\u30af\u306b\u306f\u3001\u60f3\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u304b\u7121\u52b9\u306a\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u3002"],"Resolve Block":["\u30d6\u30ed\u30c3\u30af\u306e\u554f\u984c\u3092\u89e3\u6c7a"],"Convert to HTML":["HTML \u306b\u5909\u63db"],"This block can only be used once.":["\u3053\u306e\u30d6\u30ed\u30c3\u30af\u306f\u4e00\u5ea6\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002"],"Exit Code Editor":["\u30b3\u30fc\u30c9\u30a8\u30c7\u30a3\u30bf\u30fc\u3092\u7d42\u4e86"],"Editing Code":["\u30b3\u30fc\u30c9\u306e\u7de8\u96c6"],"Solid Color":["\u7121\u5730"],"Main Color":["\u30e1\u30a4\u30f3\u30ab\u30e9\u30fc"],HTML:["HTML"],"Write HTML\u2026":["HTML \u3092\u5165\u529b\u2026"],"Media Settings":["\u30e1\u30c7\u30a3\u30a2\u8a2d\u5b9a"],"Overlay Color":["\u30aa\u30fc\u30d0\u30fc\u30ec\u30a4\u306e\u8272"],Overlay:["\u30aa\u30fc\u30d0\u30fc\u30ec\u30a4"],"Insert Media":["\u30e1\u30c7\u30a3\u30a2\u3092\u633f\u5165"],"Reusable block imported successfully!":["\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af\u306f\u6b63\u5e38\u306b\u30a4\u30f3\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3057\u305f\u3002"],"Invalid Reusable Block JSON file":["\u7121\u52b9\u306a\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af\u306e JSON \u30d5\u30a1\u30a4\u30eb"],"Invalid JSON file":["\u7121\u52b9\u306a JSON \u30d5\u30a1\u30a4\u30eb"],"Import from JSON":["JSON \u304b\u3089\u30a4\u30f3\u30dd\u30fc\u30c8"],Backtick:["\u30d0\u30c3\u30af\u30c6\u30a3\u30c3\u30af"],Period:["\u30d4\u30ea\u30aa\u30c9"],Comma:["\u30ab\u30f3\u30de"],"Change type of %d block":["%d\u500b\u306e\u30d6\u30ed\u30c3\u30af\u306e\u30bf\u30a4\u30d7\u3092\u5909\u66f4\u3059\u308b"],Current:["\u73fe\u5728"],"After Conversion":["\u5909\u63db\u5f8c"],"Change alignment":["\u914d\u7f6e\u3092\u5909\u66f4"],"Change text alignment":["\u30c6\u30ad\u30b9\u30c8\u306e\u914d\u7f6e\u3092\u5909\u66f4"],"%d block":["%d\u500b\u306e\u30d6\u30ed\u30c3\u30af"],Escape:["\u30a8\u30b9\u30b1\u30fc\u30d7"],"Forward-slash":["\u524d\u65b9\u30b9\u30e9\u30c3\u30b7\u30e5"],"No archives to show.":["\u8868\u793a\u3059\u308b\u30a2\u30fc\u30ab\u30a4\u30d6\u306f\u3042\u308a\u307e\u305b\u3093\u3002"],"This file is empty.":["\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u7a7a\u3067\u3059\u3002"],"Sorry, this file type is not supported here.":["\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u5f62\u5f0f\u306f\u3053\u306e\u7b87\u6240\u3067\u975e\u5bfe\u5fdc\u3067\u3059\u3002"],"Manage All Reusable Blocks":["\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af\u3092\u7ba1\u7406"],Title:["\u30bf\u30a4\u30c8\u30eb"],"Fullscreen Mode":["\u30d5\u30eb\u30b9\u30af\u30ea\u30fc\u30f3\u30e2\u30fc\u30c9"],"Beautiful landscape":["\u7f8e\u3057\u3044\u98a8\u666f"],"Close panel":["\u30d1\u30cd\u30eb\u3092\u9589\u3058\u308b"],"Convert to Classic Block":["\u30af\u30e9\u30b7\u30c3\u30af\u30d6\u30ed\u30c3\u30af\u306b\u5909\u63db"],"Remove Poster Image":["\u30dd\u30b9\u30bf\u30fc\u753b\u50cf\u3092\u524a\u9664"],"Select Poster Image":["\u30dd\u30b9\u30bf\u30fc\u753b\u50cf\u3092\u9078\u629e"],"Poster Image":["\u30dd\u30b9\u30bf\u30fc\u753b\u50cf"],"This block is deprecated. Please use the Columns block instead.":["\u3053\u306e\u30d6\u30ed\u30c3\u30af\u306f\u975e\u63a8\u5968\u3067\u3059\u3002\u4ee3\u308f\u308a\u306b\u30ab\u30e9\u30e0\u30d6\u30ed\u30c3\u30af\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Text Columns (deprecated)":["\u30c6\u30ad\u30b9\u30c8\u30ab\u30e9\u30e0 (\u975e\u63a8\u5968)"],"Row Count":["\u884c\u6570"],"Column Count":["\u5217\u6570"],"This block is deprecated. Please use the Paragraph block instead.":["\u3053\u306e\u30d6\u30ed\u30c3\u30af\u306f\u975e\u63a8\u5968\u3067\u3059\u3002\u4ee3\u308f\u308a\u306b\u6bb5\u843d\u30d6\u30ed\u30c3\u30af\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Subheading (deprecated)":["\u5c0f\u898b\u51fa\u3057 (\u975e\u63a8\u5968)"],blockquote:["\u5f15\u7528"],"Change the block type after adding a new paragraph.":["\u65b0\u898f\u6bb5\u843d\u306e\u8ffd\u52a0\u5f8c\u3001\u30d6\u30ed\u30c3\u30af\u30bf\u30a4\u30d7\u3092\u5909\u66f4\u3057\u307e\u3059\u3002"],"Spotlight Mode":["\u30b9\u30dd\u30c3\u30c8\u30e9\u30a4\u30c8\u30e2\u30fc\u30c9"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u30bf\u30b0\u306f\u3001\u30b5\u30fc\u30c1\u30a8\u30f3\u30b8\u30f3\u304c\u30e6\u30fc\u30b6\u30fc\u3092\u3042\u306a\u305f\u306e\u30b5\u30a4\u30c8\u3078\u8a98\u5c0e\u3057\u305f\u308a\u3001\u30e6\u30fc\u30b6\u30fc\u304c\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u63a2\u3059\u969b\u306e\u52a9\u3051\u306b\u306a\u308a\u307e\u3059\u3002\u3044\u304f\u3064\u304b\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u8db3\u3057\u3066\u6295\u7a3f\u306e\u8aac\u660e\u3092\u3057\u3066\u307f\u307e\u3057\u3087\u3046\u3002"],"Add tags":["\u30bf\u30b0\u3092\u8ffd\u52a0"],"Apply the \"%1$s\" format.":["\u300c%1$s\u300d\u5f62\u5f0f\u3092\u9069\u7528\u3002"],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u3054\u5229\u7528\u4e2d\u306e\u30c6\u30fc\u30de\u3067\u306f\u6295\u7a3f\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3092\u4f7f\u7528\u3057\u3001\u753b\u50cf\u3084\u52d5\u753b\u3068\u3044\u3063\u305f\u7570\u306a\u308b\u7a2e\u985e\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30cf\u30a4\u30e9\u30a4\u30c8\u3057\u3066\u3044\u307e\u3059\u3002\u6295\u7a3f\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3092\u9069\u7528\u3057\u3001\u72ec\u81ea\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Use a post format":["\u6295\u7a3f\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3092\u4f7f\u7528"],"Insert After":["\u5f8c\u306b\u633f\u5165"],"Insert Before":["\u524d\u306b\u633f\u5165"],"Move %1$d block from position %2$d down by one place":["%1$d\u500b\u306e\u30d6\u30ed\u30c3\u30af\u3092%2$d\u306e\u4f4d\u7f6e\u304b\u30891\u3064\u4e0b\u306b\u79fb\u52d5\u3059\u308b"],"Move %1$d block from position %2$d up by one place":["%1$d\u500b\u306e\u30d6\u30ed\u30c3\u30af\u3092%2$d\u306e\u4f4d\u7f6e\u304b\u30891\u3064\u4e0a\u306b\u79fb\u52d5\u3059\u308b"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["\u52d5\u753b"],"Insert a new block before the selected block(s).":["\u9078\u629e\u3057\u305f\u30d6\u30ed\u30c3\u30af\u306e\u524d\u306b\u65b0\u3057\u3044\u30d6\u30ed\u30c3\u30af\u3092\u633f\u5165\u3059\u308b\u3002"],"Remove the selected block(s).":["\u9078\u629e\u3057\u305f\u30d6\u30ed\u30c3\u30af\u3092\u524a\u9664\u3059\u308b\u3002"],"Duplicate the selected block(s).":["\u9078\u629e\u3057\u305f\u30d6\u30ed\u30c3\u30af\u3092\u8907\u88fd\u3059\u308b\u3002"],"Block shortcuts":["\u30d6\u30ed\u30c3\u30af\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8"],"Clear selection.":["\u9078\u629e\u80a2\u3092\u30af\u30ea\u30a2\u3059\u308b\u3002"],"Select all text when typing. Press again to select all blocks.":["\u5165\u529b\u4e2d\u306b\u3059\u3079\u3066\u306e\u30c6\u30ad\u30b9\u30c8\u3092\u9078\u629e\u3057\u307e\u3059\u3002\u3059\u3079\u3066\u306e\u30d6\u30ed\u30c3\u30af\u3092\u9078\u629e\u3059\u308b\u306b\u306f\u3082\u3046\u4e00\u5ea6\u62bc\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Selection shortcuts":["\u9078\u629e\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8"],"Switch between Visual Editor and Code Editor.":["\u30d3\u30b8\u30e5\u30a2\u30eb\u30a8\u30c7\u30a3\u30bf\u30fc\u3068\u30b3\u30fc\u30c9\u30a8\u30c7\u30a3\u30bf\u30fc\u3092\u5207\u308a\u66ff\u3048\u308b\u3002"],"Navigate to the previous part of the editor (alternative).":["\u30a8\u30c7\u30a3\u30bf\u30fc\u306e\u524d\u306e\u90e8\u5206\u306b\u79fb\u52d5\u3059\u308b (\u4ee3\u66ff\u30aa\u30d7\u30b7\u30e7\u30f3) \u3002"],"Navigate to the next part of the editor (alternative).":["\u30a8\u30c7\u30a3\u30bf\u30fc\u306e\u5f8c\u306e\u90e8\u5206\u306b\u79fb\u52d5\u3059\u308b (\u4ee3\u66ff\u30aa\u30d7\u30b7\u30e7\u30f3) \u3002"],"Navigate to the previous part of the editor.":["\u30a8\u30c7\u30a3\u30bf\u30fc\u306e\u524d\u306e\u90e8\u5206\u306b\u79fb\u52d5\u3059\u308b\u3002"],"Navigate to the next part of the editor.":["\u30a8\u30c7\u30a3\u30bf\u30fc\u306e\u5f8c\u306e\u90e8\u5206\u306b\u79fb\u52d5\u3059\u308b\u3002"],"Show or hide the settings sidebar.":["\u8a2d\u5b9a\u30b5\u30a4\u30c9\u30d0\u30fc\u306e\u8868\u793a/\u975e\u8868\u793a\u3092\u5207\u308a\u66ff\u3048\u308b\u3002"],"Redo your last undo.":["\u524d\u56de\u306e\u53d6\u308a\u6d88\u3057\u3092\u3084\u308a\u76f4\u3059\u3002"],"Undo your last changes.":["\u76f4\u524d\u306e\u5909\u66f4\u3092\u53d6\u308a\u6d88\u3059\u3002"],"Save your changes.":["\u5909\u66f4\u3092\u4fdd\u5b58\u3059\u308b\u3002"],"Global shortcuts":["\u30b0\u30ed\u30fc\u30d0\u30eb\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8"],"Remove a link.":["\u30ea\u30f3\u30af\u3092\u524a\u9664\u3059\u308b\u3002"],"Convert the selected text into a link.":["\u9078\u629e\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u3092\u30ea\u30f3\u30af\u306b\u5909\u63db\u3059\u308b\u3002"],"Underline the selected text.":["\u9078\u629e\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306b\u4e0b\u7dda\u3092\u4ed8\u3051\u308b\u3002"],"Make the selected text italic.":["\u9078\u629e\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u3092\u659c\u4f53\u306b\u3059\u308b\u3002"],"Make the selected text bold.":["\u9078\u629e\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u3092\u592a\u5b57\u306b\u3059\u308b\u3002"],"Text formatting":["\u66f8\u5f0f\u8a2d\u5b9a"],"Insert a new block after the selected block(s).":["\u9078\u629e\u3057\u305f\u30d6\u30ed\u30c3\u30af\u306e\u5f8c\u306b\u65b0\u3057\u3044\u30d6\u30ed\u30c3\u30af\u3092\u633f\u5165\u3059\u308b\u3002"],"Keyboard Shortcuts":["\u30ad\u30fc\u30dc\u30fc\u30c9\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8"],"Thanks for testing Gutenberg!":["Gutenberg \u3092\u30c6\u30b9\u30c8\u3057\u3066\u3044\u305f\u3060\u304d\u3001\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059 !"],"Help build Gutenberg":["Gutenberg \u306e\u958b\u767a\u3092\u624b\u4f1d\u3046"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["\u8ffd\u52a0\u30d6\u30ed\u30c3\u30af\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u5b66\u3093\u3060\u308a\u3001\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u5354\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306b\u8208\u5473\u304c\u3042\u308b\u5834\u5408\u306f\u3001GitHub\u30ea\u30dd\u30b8\u30c8\u30ea\u3078\u79fb\u52d5\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"The WordPress community":["WordPress \u30b3\u30df\u30e5\u30cb\u30c6\u30a3"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["\u9759\u7684\u307e\u305f\u306f\u52d5\u7684\u3001\u88c5\u98fe\u7684\u307e\u305f\u306f\u30d7\u30ec\u30fc\u30f3\u306a\u3082\u306e\u306a\u3069\u3001\u304a\u597d\u307f\u306e\u30d6\u30ed\u30c3\u30af\u3092\u69cb\u7bc9\u3067\u304d\u307e\u3059\u3002\u3053\u3061\u3089\u304c\u30d7\u30eb\u30af\u30aa\u30fc\u30c8\u30d6\u30ed\u30c3\u30af\u3067\u3059\u3002"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["\u3042\u3089\u3086\u308b\u30d6\u30ed\u30c3\u30af\u3067\u3053\u308c\u3089\u306e\u914d\u7f6e\u3092\u9078\u629e\u3067\u304d\u307e\u3059\u3002\u57cb\u3081\u8fbc\u307f\u30d6\u30ed\u30c3\u30af\u3067\u3082\u5229\u7528\u3067\u304d\u3001\u30dc\u30c3\u30af\u30b9\u5916\u3067\u3082\u30ec\u30b9\u30dd\u30f3\u30b7\u30d6\u5bfe\u5fdc\u3057\u3066\u3044\u307e\u3059:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["\u4e0a\u306f2\u3064\u306e\u753b\u50cf\u306e\u307f\u306e\u30ae\u30e3\u30e9\u30ea\u30fc\u3067\u3059\u3002\u30d5\u30ed\u30fc\u30c8\u8abf\u6574\u3092\u884c\u3046\u3053\u3068\u306a\u304f\u3001\u9b45\u529b\u7684\u306a\u898b\u305f\u76ee\u306e\u30ec\u30a4\u30a2\u30a6\u30c8\u3092\u7c21\u5358\u306b\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u307e\u305f\u30d6\u30ed\u30c3\u30af\u3092\u5207\u308a\u66ff\u3048\u3066\u3001\u30ae\u30e3\u30e9\u30ea\u30fc\u3092\u500b\u5225\u306e\u753b\u50cf\u3078\u7c21\u5358\u306b\u623b\u3059\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u3002"],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["\u5168\u5e45\u753b\u50cf\u306f\u304b\u306a\u308a\u5927\u304d\u304f\u306a\u308b\u5834\u5408\u3082\u3042\u308a\u307e\u3059\u304c\u3001\u753b\u50cf\u306b\u3088\u3063\u3066\u306f\u305d\u3046\u3059\u308b\u4fa1\u5024\u304c\u3042\u308b\u3053\u3068\u3082\u3042\u308a\u307e\u3059\u3002"],"Accessibility is important — don’t forget image alt attribute":["\u30a2\u30af\u30bb\u30b7\u30d3\u30ea\u30c6\u30a3\u306f\u91cd\u8981\u3067\u3059 — \u753b\u50cf\u306e Alt \u5c5e\u6027\u3092\u304a\u5fd8\u308c\u306a\u304f\u3002"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["\u65b0\u3057\u3044\u5e45\u5e83\u3068\u5168\u5e45\u914d\u7f6e\u3092\u30ae\u30e3\u30e9\u30ea\u30fc\u3068\u7d44\u307f\u5408\u308f\u305b\u308b\u3068\u3001\u975e\u5e38\u306b\u30e1\u30c7\u30a3\u30a2\u30ea\u30c3\u30c1\u306a\u30ec\u30a4\u30a2\u30a6\u30c8\u3092\u3059\u3070\u3084\u304f\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002"],"Media Rich":["\u30e1\u30c7\u30a3\u30a2\u91cd\u8996"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["\u30b5\u30a4\u30c9\u30d0\u30fc\u306e\u30d6\u30ed\u30c3\u30af\u30a4\u30f3\u30b9\u30da\u30af\u30bf\u30fc\u3067\u30b9\u30e9\u30a4\u30c0\u30fc\u3092\u30c9\u30e9\u30c3\u30b0\u3059\u308b\u3068\u3001\u30ae\u30e3\u30e9\u30ea\u30fc\u306e\u30ab\u30e9\u30e0\u6570\u3092\u5909\u66f4\u3067\u304d\u307e\u3059\u3002"],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["\u30d6\u30ed\u30c3\u30af\u306f\u3001\u5fc5\u8981\u306a\u3082\u306e\u4f55\u3067\u3082\u304b\u307e\u3044\u307e\u305b\u3093\u3002\u305f\u3068\u3048\u3070\u3001\u30c6\u30ad\u30b9\u30c8\u69cb\u6210\u306e\u4e00\u90e8\u3068\u3057\u3066\u76ee\u7acb\u305f\u306a\u3044\u5f15\u7528\u7b26\u3092\u8ffd\u52a0\u3057\u3066\u3082\u3088\u3044\u3067\u3057\u3087\u3046\u3002\u307e\u305f\u306f\u3001\u5de8\u5927\u3067\u88c5\u98fe\u7684\u306a\u3082\u306e\u3092\u8868\u793a\u3055\u305b\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u3002\u3053\u308c\u3089\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u3059\u3079\u3066\u633f\u5165\u30c4\u30fc\u30eb\u5185\u3067\u5229\u7528\u3067\u304d\u307e\u3059\u3002"],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["\u5f15\u7528\u306e\u200b\u200b\u30bd\u30fc\u30b9\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u306f\u3001\u753b\u50cf\u4e0b\u306e\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u306b\u4f3c\u305f\u5225\u306e\u30c6\u30ad\u30b9\u30c8\u30d5\u30a3\u30fc\u30eb\u30c9\u3067\u3059\u3002\u3053\u306e\u305f\u3081\u3001\u30bd\u30fc\u30b9\u3092\u9078\u629e\u3001\u5909\u66f4\u3001\u307e\u305f\u306f\u524a\u9664\u3057\u3066\u3082\u3001\u5f15\u7528\u81ea\u4f53\u306e\u200b\u200b\u69cb\u9020\u306f\u4fdd\u8b77\u3055\u308c\u307e\u3059\u3002\u3044\u3064\u3067\u3082\u7c21\u5358\u306b\u623b\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002"],"Matt Mullenweg, 2017":["\u30de\u30c3\u30c8\u30fb\u30de\u30ec\u30f3\u30a6\u30a7\u30c3\u30b0\u30012017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["\u3053\u306e\u30a8\u30c7\u30a3\u30bf\u30fc\u306f\u3001\u30ea\u30c3\u30c1\u306a\u6295\u7a3f\u3084\u56fa\u5b9a\u30da\u30fc\u30b8\u306e\u4f5c\u6210\u3092\u7c21\u5358\u306b\u3059\u308b\u3001\u65b0\u3057\u3044\u57f7\u7b46\u4f53\u9a13\u3092\u751f\u307f\u51fa\u305d\u3046\u3068\u3057\u3066\u3044\u307e\u3059\u3002\u307e\u305f\u300c\u30d6\u30ed\u30c3\u30af\u300d\u306b\u3088\u3063\u3066\u3001\u73fe\u5728\u306f\u30b7\u30e7\u30fc\u30c8\u30b3\u30fc\u30c9\u3001\u30ab\u30b9\u30bf\u30e0 HTML\u3001\u5916\u90e8\u57cb\u3081\u8fbc\u307f\u30b3\u30fc\u30c9\u81ea\u52d5\u30c7\u30a3\u30b9\u30ab\u30d0\u30ea\u30fc\u6a5f\u80fd\u304c\u5b9f\u73fe\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u3088\u308a\u7c21\u5358\u306b\u3057\u307e\u3059\u3002"],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["\u30d6\u30ed\u30c3\u30af\u306e\u5927\u304d\u306a\u5229\u70b9\u306f\u3001\u305d\u308c\u305e\u308c\u306e\u5834\u6240\u3067\u7de8\u96c6\u3057\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u76f4\u63a5\u64cd\u4f5c\u3067\u304d\u308b\u3053\u3068\u3067\u3059\u3002\u5f15\u7528\u30bd\u30fc\u30b9\u3084\u30dc\u30bf\u30f3\u5185\u30c6\u30ad\u30b9\u30c8\u306a\u3069\u3092\u7de8\u96c6\u3059\u308b\u305f\u3081\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u6301\u3064\u306e\u3067\u306f\u306a\u304f\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u76f4\u63a5\u5909\u66f4\u3067\u304d\u307e\u3059\u3002\u4ee5\u4e0b\u306e\u5f15\u7528\u3092\u7de8\u96c6\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044:"],"Visual Editing":["\u30d3\u30b8\u30e5\u30a2\u30eb\u7de8\u96c6"],"And Lists like this one of course :)":["\u3082\u3061\u308d\u3093\u3001\u3053\u306e\u3088\u3046\u306a\u30ea\u30b9\u30c8\u3082 ^^"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["\u30dc\u30bf\u30f3\u3084\u30d2\u30fc\u30ed\u30fc\u753b\u50cf\u3001\u533a\u5207\u308a\u306a\u3069\u306e\u30ec\u30a4\u30a2\u30a6\u30c8\u30d6\u30ed\u30c3\u30af\u3002"],"Embeds, like YouTube, Tweets, or other WordPress posts.":["YouTube\u3001\u30c4\u30a4\u30fc\u30c8\u3001\u4ed6\u306e WordPress \u6295\u7a3f\u306a\u3069\u306e\u57cb\u3081\u8fbc\u307f\u3002"],Galleries:["\u30ae\u30e3\u30e9\u30ea\u30fc"],"Images & Videos":["\u753b\u50cf\u3068\u52d5\u753b"],"Text & Headings":["\u30c6\u30ad\u30b9\u30c8\u3068\u898b\u51fa\u3057"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["\u304a\u8a66\u3057\u3044\u305f\u3060\u304f\u3068\u3001WordPress \u304c\u6295\u7a3f\u306b\u8ffd\u52a0\u53ef\u80fd\u3067\u3042\u308a\u306a\u304c\u3089\u3001\u3054\u5b58\u77e5\u3067\u306f\u306a\u304b\u3063\u305f\u3082\u306e\u3092\u898b\u3064\u3051\u3066\u3044\u305f\u3060\u3051\u308b\u3067\u3057\u3087\u3046\u3001\u4ee5\u4e0b\u306f\u3053\u306e\u6295\u7a3f\u304c\u4f7f\u7528\u3057\u3066\u3044\u308b\u30d6\u30ed\u30c3\u30af\u306e\u7c21\u5358\u306a\u30ea\u30b9\u30c8\u3067\u3059\u3002"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["WordPress \u304c\u3067\u304d\u308b\u3059\u3079\u3066\u306e\u3053\u3068\u304c\u3001\u3059\u3070\u3084\u304f\u3001\u540c\u3058\u5834\u6240\u30fb\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u53ef\u80fd\u3067\u3042\u308b\u3068\u60f3\u50cf\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002HTML \u30bf\u30b0\u3084\u30af\u30e9\u30b9\u3092\u7406\u89e3\u3057\u305f\u308a\u3001\u8907\u96d1\u306a\u30b7\u30e7\u30fc\u30c8\u30b3\u30fc\u30c9\u69cb\u6587\u3092\u899a\u3048\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u3053\u308c\u3053\u305d\u304c\u300c\u633f\u5165\u300d\u30c4\u30fc\u30eb\u2014\u30a8\u30c7\u30a3\u30bf\u30fc\u4e2d\u306b\u3042\u308b (+) \u30dc\u30bf\u30f3\u2014\u306e\u771f\u9ac4\u3067\u3001\u3059\u3079\u3066\u306e\u5229\u7528\u53ef\u80fd\u306a\u30b3\u30f3\u30c6\u30f3\u30c4\u30d6\u30ed\u30c3\u30af\u3092\u95b2\u89a7\u3057\u3001\u6295\u7a3f\u306b\u8ffd\u52a0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30d7\u30e9\u30b0\u30a4\u30f3\u3068\u30c6\u30fc\u30de\u306f\u72ec\u81ea\u306e\u30d6\u30ed\u30c3\u30af\u3092\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u3001\u30ea\u30c3\u30c1\u306a\u7de8\u96c6\u3084\u516c\u958b\u306e\u53ef\u80fd\u6027\u3092\u5e83\u3052\u307e\u3059\u3002"],"The Inserter Tool":["\u300c\u633f\u5165\u300d\u30c4\u30fc\u30eb"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u3092\u9078\u629e\u3001\u524a\u9664\u3001\u7de8\u96c6\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002\u753b\u50cf\u3084\u4ed6\u306e\u30c6\u30ad\u30b9\u30c8\u3092\u9593\u9055\u3063\u3066\u9078\u629e\u3057\u3066\u3001\u8868\u793a\u3092\u53f0\u7121\u3057\u306b\u3057\u306a\u3044\u3088\u3046\u6c17\u3092\u4f7f\u308f\u305a\u306b\u6e08\u3080\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f\u3002"],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["\u30c6\u30fc\u30de\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308c\u3070\u3001\u753b\u50cf\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u300c\u5e45\u5e83\u300d\u30dc\u30bf\u30f3\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002\u304a\u8a66\u3057\u304f\u3060\u3055\u3044\u3002"],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["\u753b\u50cf\u3068\u30e1\u30c7\u30a3\u30a2\u53d6\u308a\u6271\u3044\u3078\u306e\u9ad8\u3044\u6c17\u9063\u3044\u306f\u3001\u65b0\u3057\u3044\u30a8\u30c7\u30a3\u30bf\u30fc\u306e\u30e1\u30a4\u30f3\u30d5\u30a9\u30fc\u30ab\u30b9\u3067\u3059\u3002\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u305f\u308a\u3001\u5168\u5e45\u306b\u3059\u308b\u306e\u304c\u3088\u308a\u7c21\u5358\u3067\u5354\u529b\u306b\u306a\u3063\u3066\u3044\u308b\u306e\u306b\u304a\u6c17\u3065\u304d\u3044\u305f\u3060\u3051\u308b\u3067\u3057\u3087\u3046\u3002"],"A Picture is Worth a Thousand Words":["\u767e\u805e\u306f\u4e00\u753b\u50cf\u306b\u3057\u304b\u305a"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["\u898b\u51fa\u3057\u306f\u5225\u30d6\u30ed\u30c3\u30af\u3068\u306a\u3063\u3066\u304a\u308a\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30a2\u30a6\u30c8\u30e9\u30a4\u30f3\u3068\u69cb\u6210\u306b\u5f79\u7acb\u3061\u307e\u3059\u3002"],"... like this one, which is right aligned.":["\u2026\u4f8b\u3048\u3070\u3001\u53f3\u63c3\u3048\u306e\u3053\u308c\u306e\u3088\u3046\u306a\u3082\u306e\u3067\u3059\u3002"],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["\u73fe\u5728\u3054\u89a7\u3044\u305f\u3060\u3044\u3066\u3044\u308b\u306e\u304c\u30c6\u30ad\u30b9\u30c8\u30d6\u30ed\u30c3\u30af\u3067\u3001\u3059\u3079\u3066\u306e\u30d6\u30ed\u30c3\u30af\u306e\u3046\u3061\u4e00\u756a\u57fa\u672c\u306e\u30d6\u30ed\u30c3\u30af\u3067\u3059\u3002\u30c6\u30ad\u30b9\u30c8\u30d6\u30ed\u30c3\u30af\u306f\u3001\u6295\u7a3f\u5185\u3092\u81ea\u7531\u306b\u79fb\u52d5\u3067\u304d\u308b\u72ec\u81ea\u306e\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u304c\u3064\u3044\u3066\u3044\u307e\u3059\u3002"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["\u3053\u306e\u65b0\u3057\u3044\u30a8\u30c7\u30a3\u30bf\u30fc\u306e\u30b4\u30fc\u30eb\u306f\u3001WordPress \u3078\u306e\u30ea\u30c3\u30c1\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u8ffd\u52a0\u3092\u30b7\u30f3\u30d7\u30eb\u3067\u697d\u3057\u304f\u3059\u308b\u3053\u3068\u3067\u3059\u3002\u3053\u306e\u6295\u7a3f\u5168\u4f53\u304c\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d1\u30fc\u30c4\u2014LEGO \u30d6\u30ed\u30c3\u30af\u306e\u3088\u3046\u306a\u3082\u306e\u2014\u306b\u3088\u308a\u69cb\u6210\u3055\u308c\u3066\u304a\u308a\u3001\u52d5\u304b\u3057\u305f\u308a\u64cd\u4f5c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3059\u3068\u3001\u69d8\u3005\u306a\u30d6\u30ed\u30c3\u30af\u304c\u67a0\u7dda\u3068\u77e2\u5370\u3068\u3068\u3082\u306b\u30d5\u30a9\u30fc\u30ab\u30b9\u3055\u308c\u307e\u3059\u3002\u77e2\u5370\u3092\u62bc\u3059\u3068\u30d6\u30ed\u30c3\u30af\u3092\u3059\u3070\u3084\u304f\u4e26\u3073\u66ff\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u3001\u30b3\u30d4\u30fc & \u30da\u30fc\u30b9\u30c8\u3057\u3066\u3044\u308b\u3046\u3061\u306b\u5185\u5bb9\u304c\u6d88\u3048\u3066\u3057\u307e\u3046\u6050\u308c\u304c\u3042\u308a\u307e\u305b\u3093\u3002"],"Of Mountains & Printing Presses":["Gutenberg \u3092\u8a66\u3057\u3066\u307f\u3088\u3046"],"Welcome to the Gutenberg Editor":["Gutenberg \u30a8\u30c7\u30a3\u30bf\u30fc\u306b\u3088\u3046\u3053\u305d"],"block name\x04More":["\u7d9a\u304d\u3092\u8aad\u3080"],"button to expand options\x04More":["\u3055\u3089\u306b\u8868\u793a"],"Are you sure you want to unschedule this post?":["\u672c\u5f53\u306b\u3053\u306e\u6295\u7a3f\u306e\u4e88\u7d04\u3092\u53d6\u308a\u6d88\u3057\u307e\u3059\u304b ?"],"Alt Text (Alternative Text)":["Alt \u30c6\u30ad\u30b9\u30c8 (\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8)"],"Reusable Block":["\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af"],"Unique identifier for the object.":["\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72ec\u81ea\u8b58\u5225\u5b50\u3002"],"Untitled Reusable Block":["\u7121\u984c\u306e\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af"],Small:["\u5c0f\u3055\u3044"],"(%s: %s)":["(%s: %s)"],Reusable:["\u518d\u5229\u7528\u53ef\u80fd"],"(current %s: %s)":["(\u73fe\u5728\u306e %s: %s)"],"Remove from Reusable Blocks":["\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af\u304b\u3089\u524a\u9664"],"Add to Reusable Blocks":["\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af\u306b\u8ffd\u52a0"],"Keep as HTML":["HTML \u3068\u3057\u3066\u4fdd\u6301"],"Edit URL":["URL \u3092\u7de8\u96c6"],"Color Settings":["\u8272\u8a2d\u5b9a"],"The response is not a valid JSON response.":["\u8fd4\u7b54\u304c\u6b63\u3057\u3044 JSON \u30ec\u30b9\u30dd\u30f3\u30b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002"],"Editor publish":["\u30a8\u30c7\u30a3\u30bf\u30fc\u306e\u6295\u7a3f\u30d1\u30cd\u30eb"],Muted:["\u30df\u30e5\u30fc\u30c8 (\u6d88\u97f3)"],"Video Settings":["\u52d5\u753b\u8a2d\u5b9a"],"recent comments":["\u6700\u8fd1\u306e\u30b3\u30e1\u30f3\u30c8"],"Latest Comments":["\u6700\u65b0\u306e\u30b3\u30e1\u30f3\u30c8"],"Display Excerpt":["\u629c\u7c8b\u3092\u8868\u793a"],"Display Date":["\u65e5\u4ed8\u3092\u8868\u793a"],"Display Avatar":["\u30a2\u30d0\u30bf\u30fc\u3092\u8868\u793a"],"Latest Comments Settings":["\u6700\u65b0\u306e\u30b3\u30e1\u30f3\u30c8\u8a2d\u5b9a"],"Number of Comments":["\u30b3\u30e1\u30f3\u30c8\u6570"],"Background Opacity":["\u80cc\u666f\u306e\u900f\u904e\u7387"],Auto:["\u81ea\u52d5"],Preload:["\u5148\u8aad\u307f"],"Audio Settings":["\u97f3\u58f0\u8a2d\u5b9a"],"Display a monthly archive of your posts.":["\u8a18\u4e8b\u306e\u6708\u5225\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u8868\u793a\u3057\u307e\u3059\u3002"],"Display as Dropdown":["\u30c9\u30ed\u30c3\u30d7\u30c0\u30a6\u30f3\u3067\u8868\u793a"],"Show Post Counts":["\u6295\u7a3f\u6570\u3092\u8868\u793a"],"Archives Settings":["\u30a2\u30fc\u30ab\u30a4\u30d6\u8a2d\u5b9a"],"https://wordpress.org/support/plugin/gutenberg":["https://ja.wordpress.org/support/plugin/gutenberg"],Support:["\u30b5\u30dd\u30fc\u30c8"],"No comments to show.":["\u8868\u793a\u3067\u304d\u308b\u30b3\u30e1\u30f3\u30c8\u306f\u3042\u308a\u307e\u305b\u3093\u3002"],"%1$s on %2$s":["%2$s \u306b %1$s \u3088\u308a"],"Select Post":["\u6295\u7a3f\u3092\u9078\u629e"],"Select Week":["\u9031\u3092\u9078\u629e"],"Select Day":["\u65e5\u3092\u9078\u629e"],"Select Month":["\u6708\u3092\u9078\u629e"],"Select Year":["\u5e74\u3092\u9078\u629e"],Archives:["\u30a2\u30fc\u30ab\u30a4\u30d6"],"Very dark gray":["\u30c0\u30fc\u30af\u30fb\u30b0\u30ec\u30fc"],"Cyan bluish gray":["\u30b7\u30a2\u30f3\u30d6\u30eb\u30fc\u30b0\u30ec\u30fc"],"Very light gray":["\u30e9\u30a4\u30c8\u30fb\u30b0\u30ec\u30fc"],"Vivid cyan blue":["\u9bae\u3084\u304b\u306a\u30b7\u30a2\u30f3\u30d6\u30eb\u30fc"],"Pale cyan blue":["\u6de1\u3044\u30b7\u30a2\u30f3\u30d6\u30eb\u30fc"],"Vivid green cyan":["\u9bae\u3084\u304b\u306a\u30b0\u30ea\u30fc\u30f3\u30b7\u30a2\u30f3"],"Light green cyan":["\u8584\u3044\u30b0\u30ea\u30fc\u30f3\u30b7\u30a2\u30f3"],"Luminous vivid amber":["\u7425\u73c0"],"Luminous vivid orange":["\u30aa\u30ec\u30f3\u30b8"],"Vivid red":["\u30ec\u30c3\u30c9"],"Pale pink":["\u30d4\u30f3\u30af"],"Inline image":["\u30a4\u30f3\u30e9\u30a4\u30f3\u753b\u50cf"],"Available block types":["\u5229\u7528\u53ef\u80fd\u306a\u30d6\u30ed\u30c3\u30af\u30bf\u30a4\u30d7"],"Transform To:":["\u5909\u63db:"],"Remove Block":["\u30d6\u30ed\u30c3\u30af\u3092\u524a\u9664"],"Open publish panel":["\u516c\u958b\u30d1\u30cd\u30eb\u3092\u958b\u304f"],Dots:["\u30c9\u30c3\u30c8"],"Wide Line":["\u5e45\u5e83\u7dda"],Large:["\u5927"],"Show download button":["\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u30dc\u30bf\u30f3\u3092\u8868\u793a"],"Download button settings":["\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u30dc\u30bf\u30f3\u8a2d\u5b9a"],"Link To":["\u30ea\u30f3\u30af\u5148"],"Text link settings":["\u30c6\u30ad\u30b9\u30c8\u30ea\u30f3\u30af\u8a2d\u5b9a"],pdf:["pdf"],document:["\u6587\u66f8"],"Copy URL":["URL \u3092\u30b3\u30d4\u30fc"],"Write file name\u2026":["\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u5165\u529b..."],"Edit file":["\u30d5\u30a1\u30a4\u30eb\u3092\u7de8\u96c6"],File:["\u30d5\u30a1\u30a4\u30eb"],"A single column within a columns block.":["\u30ab\u30e9\u30e0\u30d6\u30ed\u30c3\u30af\u5185\u306e1\u3064\u306e\u30ab\u30e9\u30e0\u3002"],Column:["\u30ab\u30e9\u30e0"],Outline:["\u30a2\u30a6\u30c8\u30e9\u30a4\u30f3"],Loop:["\u30eb\u30fc\u30d7"],Autoplay:["\u81ea\u52d5\u518d\u751f"],"Playback Controls":["\u30d7\u30ec\u30a4\u30d0\u30c3\u30af\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb"],"Close dialog":["\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u9589\u3058\u308b"],"Sorry, this file type is not permitted for security reasons.":["\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u30bf\u30a4\u30d7\u306f\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4e0a\u306e\u7406\u7531\u304b\u3089\u3001\u8a31\u53ef\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"],"Disable tips":["\u30d2\u30f3\u30c8\u3092\u7121\u52b9\u5316"],"Got it":["OK"],"See next tip":["\u6b21\u306e\u30d2\u30f3\u30c8\u3092\u898b\u308b"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u6e96\u5099\u304c\u3067\u304d\u305f\u3089\u30ec\u30d3\u30e5\u30fc\u3092\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3057\u3087\u3046\u3002\u7de8\u96c6\u8005\u304c\u627f\u8a8d\u3057\u3066\u516c\u958b\u3067\u304d\u307e\u3059\u3002"],"Are you ready to submit for review?":["\u30ec\u30d3\u30e5\u30fc\u3092\u30ea\u30af\u30a8\u30b9\u30c8\u3059\u308b\u6e96\u5099\u304c\u3067\u304d\u307e\u3057\u305f\u304b ?"],"Replace image":["\u753b\u50cf\u306e\u7f6e\u304d\u63db\u3048"],"Remove image":["\u753b\u50cf\u306e\u524a\u9664"],"Error while uploading file %s to the media library.":["\u30d5\u30a1\u30a4\u30eb %s \u3092\u30e1\u30c7\u30a3\u30a2\u30e9\u30a4\u30d6\u30e9\u30ea\u3078\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"],"This file exceeds the maximum upload size for this site.":["\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u30b5\u30a4\u30c8\u306e\u6700\u5927\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u30b5\u30a4\u30ba\u3092\u8d85\u3048\u3066\u3044\u307e\u3059\u3002"],"View the autosave":["\u81ea\u52d5\u4fdd\u5b58\u3092\u8868\u793a"],"There is an autosave of this post that is more recent than the version below.":["\u4ee5\u4e0b\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3088\u308a\u3082\u65b0\u3057\u3044\u81ea\u52d5\u4fdd\u5b58\u3055\u308c\u305f\u6295\u7a3f\u304c\u3042\u308a\u307e\u3059\u3002"],Autosaving:["\u81ea\u52d5\u4fdd\u5b58\u4e2d"],"Enter URL here\u2026":["URL\u3092\u3053\u3053\u306b\u5165\u529b..."],"Pin to toolbar":["\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u56fa\u5b9a"],"Unpin from toolbar":["\u30c4\u30fc\u30eb\u30d0\u30fc\u3078\u306e\u56fa\u5b9a\u89e3\u9664"],"Insert a table \u2014 perfect for sharing charts and data.":["\u8868\u306e\u633f\u5165\u3002\u30c1\u30e3\u30fc\u30c8\u3068\u30c7\u30fc\u30bf\u306e\u5171\u6709\u306b\u6700\u9069\u3067\u3059\u3002"],"Fixed width table cells":["\u56fa\u5b9a\u5e45\u306e\u30c6\u30fc\u30d6\u30eb\u30bb\u30eb"],"Table Settings":["\u30c6\u30fc\u30d6\u30eb\u8a2d\u5b9a"],"Add text that respects your spacing and tabs, and also allows styling.":["\u30b9\u30da\u30fc\u30b9\u3084\u30bf\u30d6\u3092\u542b\u3080\u30c6\u30ad\u30b9\u30c8\u3092\u8ffd\u52a0\u3057\u3001\u30b9\u30bf\u30a4\u30ea\u30f3\u30b0\u3057\u3066\u8868\u793a\u3057\u307e\u3059\u3002"],"Display a list of your most recent posts.":["\u6700\u8fd1\u306e\u6295\u7a3f\u306e\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059\u3002"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Twitter\u3001Instagram\u3001YouTube \u306a\u3069\u4ed6\u30b5\u30a4\u30c8\u304b\u3089\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u5f15\u7528\u8868\u793a\u3059\u308b\u30d6\u30ed\u30c3\u30af\u3092\u8ffd\u52a0\u3057\u307e\u3059\u3002"],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u8907\u6570\u30ab\u30e9\u30e0\u8868\u793a\u306e\u30d6\u30ed\u30c3\u30af\u3092\u8ffd\u52a0\u3057\u3066\u3001\u304a\u597d\u307f\u306e\u30d6\u30ed\u30c3\u30af\u3092\u914d\u7f6e\u3057\u307e\u3057\u3087\u3046\u3002"],"Error loading block: %s":["\u30d6\u30ed\u30c3\u30af\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc: %s"],"Unknown error":["\u4e0d\u660e\u306a\u30a8\u30e9\u30fc"],"Embed Handler":["\u57cb\u3081\u8fbc\u307f\u30cf\u30f3\u30c9\u30e9\u30fc"],"term\x04Remove %s":["%s\u3092\u524a\u9664"],"Copy the permalink":["\u30d1\u30fc\u30de\u30ea\u30f3\u30af\u3092\u30b3\u30d4\u30fc"],"Permalink copied":["\u30d1\u30fc\u30de\u30ea\u30f3\u30af\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3057\u305f"],"Height in pixels":["\u30d4\u30af\u30bb\u30eb\u5024\u3067\u306e\u9ad8\u3055 "],"Spacer Settings":["\u4f59\u767d\u306e\u8a2d\u5b9a"],Spacer:["\u30b9\u30da\u30fc\u30b5\u30fc"],"Toggle to show a large initial letter.":["\u5148\u982d\u6587\u5b57\u3092\u5927\u304d\u306a\u8868\u793a\u306b\u5207\u308a\u66ff\u3048\u307e\u3059\u3002"],"Showing large initial letter.":["\u5148\u982d\u6587\u5b57\u3092\u5927\u304d\u304f\u8868\u793a\u3057\u3066\u3044\u307e\u3059\u3002"],"Name:":["\u540d\u524d:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s/%3$s)"],"Remove item":["\u9805\u76ee\u3092\u524a\u9664"],"Color code: %s":["\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9: %s"],"Skip to the selected block":["\u9078\u629e\u3057\u305f\u30d6\u30ed\u30c3\u30af\u3092\u30b9\u30ad\u30c3\u30d7"],"Publish\u2026":["\u516c\u958b\u3059\u308b"],"Schedule\u2026":["\u4e88\u7d04\u3059\u308b"],"Edit post permalink":["\u6295\u7a3f\u30d1\u30fc\u30de\u30ea\u30f3\u30af\u306e\u7de8\u96c6"],"Show Block Settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a\u3092\u8868\u793a"],"Hide Block Settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a\u3092\u975e\u8868\u793a"],"Block settings closed":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a\u306e\u975e\u8868\u793a\u4e2d"],"Close plugin":["\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u9589\u3058\u308b"],"Link settings":["\u30ea\u30f3\u30af\u8a2d\u5b9a"],Unlink:["\u30ea\u30f3\u30af\u3092\u89e3\u9664"],"Page break":["\u30da\u30fc\u30b8\u533a\u5207\u308a"],pagination:["\u30da\u30fc\u30b8\u30cd\u30fc\u30b7\u30e7\u30f3"],"next page":["\u6b21\u306e\u30da\u30fc\u30b8"],"Image Size":["\u753b\u50cf\u30b5\u30a4\u30ba"],Height:["\u9ad8\u3055"],Width:["\u5e45"],"Image Dimensions":["\u753b\u50cf\u306e\u5bf8\u6cd5"],"Thumbnails are not cropped.":["\u30b5\u30e0\u30cd\u30a4\u30eb\u304c\u30af\u30ed\u30c3\u30d7\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"],"Thumbnails are cropped to align.":["\u30b5\u30e0\u30cd\u30a4\u30eb\u3092\u6574\u5217\u306b\u3042\u308f\u305b\u3066\u30af\u30ed\u30c3\u30d7\u3057\u307e\u3057\u305f\u3002"],"Media Library":["\u30e1\u30c7\u30a3\u30a2\u30e9\u30a4\u30d6\u30e9\u30ea"],Advanced:["\u9ad8\u5ea6\u306a\u8a2d\u5b9a"],"Add item":["\u9805\u76ee\u3092\u8ffd\u52a0"],"Reset the template":["\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u30ea\u30bb\u30c3\u30c8"],"Keep it as is":["\u5909\u66f4\u3057\u306a\u3044"],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u6295\u7a3f\u306e\u672c\u6587\u306f\u6295\u7a3f\u30bf\u30a4\u30d7\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002"],"Resetting the template may result in loss of content, do you want to continue?":["\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u30ea\u30bb\u30c3\u30c8\u3059\u308b\u3068\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u5931\u308f\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u7d9a\u884c\u3057\u307e\u3059\u304b ?"],"Document Statistics":["\u6587\u66f8\u306e\u7d71\u8a08\u60c5\u5831"],"is now scheduled. It will go live on":["\u3092\u4e88\u7d04\u3057\u307e\u3057\u305f\u3002\u516c\u958b\u4e88\u5b9a\u65e5:"],Scheduled:["\u4e88\u7d04\u6e08\u307f"],"Scheduling\u2026":["\u4e88\u7d04\u4e2d\u2026"],"Code editor selected":["\u30b3\u30fc\u30c9\u30a8\u30c7\u30a3\u30bf\u30fc\u3092\u9078\u629e\u3057\u307e\u3057\u305f"],"Visual editor selected":["\u30d3\u30b8\u30e5\u30a2\u30eb\u30a8\u30c7\u30a3\u30bf\u30fc\u3092\u9078\u629e\u3057\u307e\u3057\u305f"],Plugins:["\u30d7\u30e9\u30b0\u30a4\u30f3"],"Custom Size":["\u30ab\u30b9\u30bf\u30e0\u30b5\u30a4\u30ba"],"Layout Elements":["\u30ec\u30a4\u30a2\u30a6\u30c8\u8981\u7d20"],"term\x04%s removed":["%s\u3092\u524a\u9664\u3057\u307e\u3057\u305f"],"term\x04%s added":["%s\u3092\u8ffd\u52a0\u3057\u307e\u3057\u305f"],"imperative verb\x04Preview":["\u30d7\u30ec\u30d3\u30e5\u30fc"],"Block deleted.":["\u30d6\u30ed\u30c3\u30af\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002"],"Block updated.":["\u30d6\u30ed\u30c3\u30af\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002"],"Block created.":["\u30d6\u30ed\u30c3\u30af\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002"],"Trashing failed":["\u30b4\u30df\u7bb1\u306b\u5165\u308c\u3089\u308c\u307e\u305b\u3093"],"Updating failed.":["\u66f4\u65b0\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"],"Scheduling failed.":["\u4e88\u7d04\u6295\u7a3f\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"],"Publishing failed.":["\u516c\u958b\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"],"View Post":["\u6295\u7a3f\u306e\u8868\u793a"],"You have unsaved changes. If you proceed, they will be lost.":["\u672a\u4fdd\u5b58\u306e\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u3002\u7d9a\u884c\u3059\u308b\u3068\u5931\u308f\u308c\u307e\u3059\u3002"],"Document Outline":["\u6587\u66f8\u306e\u6982\u8981"],Paragraphs:["\u6bb5\u843d"],Headings:["\u898b\u51fa\u3057"],Words:["\u8a9e"],"Content structure":["\u30b3\u30f3\u30c6\u30f3\u30c4\u69cb\u9020"],Public:["\u516c\u958b"],"Protected with a password you choose. Only those with the password can view this post.":["\u4efb\u610f\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3067\u4fdd\u8b77\u3057\u307e\u3059\u3002\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u77e5\u3063\u3066\u3044\u308b\u95b2\u89a7\u8005\u306e\u307f\u304c\u3053\u306e\u8a18\u4e8b\u3092\u8868\u793a\u3067\u304d\u307e\u3059\u3002"],"Password Protected":["\u30d1\u30b9\u30ef\u30fc\u30c9\u4fdd\u8b77"],"Only visible to site admins and editors.":["\u30b5\u30a4\u30c8\u7ba1\u7406\u8005\u3068\u7de8\u96c6\u8005\u306b\u3060\u3051\u8868\u793a\u3055\u308c\u307e\u3059\u3002"],Private:["\u975e\u516c\u958b"],"Visible to everyone.":["\u3059\u3079\u3066\u306e\u4eba\u306b\u8868\u793a\u3055\u308c\u307e\u3059\u3002"],"Post Visibility":["\u516c\u958b\u72b6\u614b"],"Would you like to privately publish this post now?":["\u4eca\u3059\u3050\u975e\u516c\u958b\u3067\u6295\u7a3f\u3057\u307e\u3059\u304b ?"],"Use a secure password":["\u5b89\u5168\u306a\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u4f7f\u7528"],"Create password":["\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u4f5c\u6210"],"Move to Trash":["\u30b4\u30df\u7bb1\u3078\u79fb\u52d5"],"Parent Term":["\u89aa\u9805\u76ee"],"Parent Category":["\u89aa\u30ab\u30c6\u30b4\u30ea\u30fc"],"Add new term":["\u65b0\u898f\u9805\u76ee\u3092\u8ffd\u52a0"],"Add new category":["\u65b0\u898f\u30ab\u30c6\u30b4\u30ea\u30fc\u3092\u8ffd\u52a0"],Term:["\u9805\u76ee"],Tag:["\u30bf\u30b0"],"Add New Term":["\u65b0\u898f\u9805\u76ee\u3092\u8ffd\u52a0"],"Add New Tag":["\u65b0\u898f\u30bf\u30b0\u3092\u8ffd\u52a0"],"Switch to Draft":["\u4e0b\u66f8\u304d\u3078\u5207\u308a\u66ff\u3048"],"Are you sure you want to unpublish this post?":["\u672c\u5f53\u306b\u3053\u306e\u6295\u7a3f\u3092\u672a\u516c\u958b\u306b\u3057\u307e\u3059\u304b ?"],Immediately:["\u4eca\u3059\u3050"],"Save Draft":["\u4e0b\u66f8\u304d\u4fdd\u5b58"],Saving:["\u4fdd\u5b58\u4e2d"],"Publish:":["\u516c\u958b:"],"Visibility:":["\u516c\u958b\u72b6\u614b:"],"Are you ready to publish?":["\u516c\u958b\u3057\u3066\u3082\u3088\u3044\u3067\u3059\u304b ?"],"Copy Link":["\u30ea\u30f3\u30af\u3092\u30b3\u30d4\u30fc"],"What\u2019s next?":["\u6b21\u306e\u64cd\u4f5c"],"is now live.":["\u3092\u516c\u958b\u3057\u307e\u3057\u305f\u3002"],Published:["\u516c\u958b\u6e08\u307f"],Schedule:["\u4e88\u7d04\u6295\u7a3f"],Update:["\u66f4\u65b0"],"Submit for Review":["\u30ec\u30d3\u30e5\u30fc\u5f85\u3061\u3068\u3057\u3066\u9001\u4fe1"],"Updating\u2026":["\u66f4\u65b0\u4e2d\u2026"],"Publishing\u2026":["\u516c\u958b\u4e2d\u2026"],"Allow Pingbacks & Trackbacks":["\u30d4\u30f3\u30d0\u30c3\u30af\u3068\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af\u3092\u8a31\u53ef"],"Permalink:":["\u30d1\u30fc\u30de\u30ea\u30f3\u30af:"],"Pending Review":["\u30ec\u30d3\u30e5\u30fc\u5f85\u3061"],"%d Revision":["%d\u4ef6\u306e\u30ea\u30d3\u30b8\u30e7\u30f3"],"Suggestion:":["\u63d0\u6848:"],"Post Format":["\u6295\u7a3f\u30d5\u30a9\u30fc\u30de\u30c3\u30c8"],Chat:["\u30c1\u30e3\u30c3\u30c8"],Status:["\u30b9\u30c6\u30fc\u30bf\u30b9"],Standard:["\u6a19\u6e96"],Aside:["\u30a2\u30b5\u30a4\u30c9"],"Set Featured Image":["\u30a2\u30a4\u30ad\u30e3\u30c3\u30c1\u753b\u50cf\u3092\u8a2d\u5b9a"],"Learn more about manual excerpts":["\u624b\u52d5\u629c\u7c8b\u306e\u8a73\u7d30"],"Write an excerpt (optional)":["\u629c\u7c8b\u3092\u5165\u529b (\u4efb\u610f)"],"Allow Comments":["\u30b3\u30e1\u30f3\u30c8\u3092\u8a31\u53ef"],"Template:":["\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8:"],"no parent":["\u89aa\u306f\u3042\u308a\u307e\u305b\u3093"],"no title":["\u30bf\u30a4\u30c8\u30eb\u306f\u3042\u308a\u307e\u305b\u3093"],Order:["\u4e26\u3073\u9806"],"No blocks found.":["\u30d6\u30ed\u30c3\u30af\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002"],"%d result found.":["%d\u4ef6\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002"],Saved:["\u4fdd\u5b58\u3057\u307e\u3057\u305f"],Embeds:["\u57cb\u3081\u8fbc\u307f"],Blocks:["\u30d6\u30ed\u30c3\u30af"],"Search for a block":["\u30d6\u30ed\u30c3\u30af\u306e\u691c\u7d22"],"Add block":["\u30d6\u30ed\u30c3\u30af\u306e\u8ffd\u52a0"],"Add %s":["%s\u306e\u8ffd\u52a0"],"Copy Error":["\u30a8\u30e9\u30fc\u6587\u3092\u30b3\u30d4\u30fc"],"Copy Post Text":["\u6295\u7a3f\u5185\u5bb9\u3092\u30b3\u30d4\u30fc"],"Attempt Recovery":["\u5fa9\u65e7\u3092\u8a66\u307f\u308b"],"The editor has encountered an unexpected error.":["\u30a8\u30c7\u30a3\u30bf\u30fc\u3067\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"],Undo:["\u5143\u306b\u623b\u3059"],Redo:["\u3084\u308a\u76f4\u3059"],"(Multiple H1 headings are not recommended)":["(\u8907\u6570\u306e H1 \u898b\u51fa\u3057\u306f\u975e\u63a8\u5968\u3067\u3059)"],"(Your theme may already use a H1 for the post title)":["(\u30c6\u30fc\u30de\u306b\u3088\u3063\u3066 H1 \u304c\u6295\u7a3f\u30bf\u30a4\u30c8\u30eb\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059)"],"(Incorrect heading level)":["(\u898b\u51fa\u3057\u30ec\u30d9\u30eb\u306b\u9593\u9055\u3044\u304c\u3042\u308a\u307e\u3059)"],"(Empty heading)":["(\u7a7a\u767d\u898b\u51fa\u3057)"],"Block Styles":["\u30d6\u30ed\u30c3\u30af\u30b9\u30bf\u30a4\u30eb"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\u672c\u5f53\u306b\u3053\u306e\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af\u3092\u524a\u9664\u3057\u307e\u3059\u304b ?\n\n\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af\u3092\u4f7f\u7528\u3057\u3066\u3044\u305f\u3059\u3079\u3066\u306e\u6295\u7a3f\u3084\u56fa\u5b9a\u30da\u30fc\u30b8\u304b\u3089\u5b8c\u5168\u306b\u524a\u9664\u3055\u308c\u307e\u3059\u3002"],"Convert to Regular Block":["\u901a\u5e38\u306e\u30d6\u30ed\u30c3\u30af\u3078\u5909\u63db"],"More options":["\u8a73\u7d30\u8a2d\u5b9a"],"Edit visually":["\u30d3\u30b8\u30e5\u30a2\u30eb\u7de8\u96c6"],Duplicate:["\u8907\u88fd"],"Blocks cannot be moved down as they are already at the bottom":["\u30d6\u30ed\u30c3\u30af\u306f\u3059\u3067\u306b\u4e00\u756a\u4e0b\u306b\u3042\u308b\u305f\u3081\u3001\u4e0b\u306b\u79fb\u52d5\u3067\u304d\u307e\u305b\u3093"],"Blocks cannot be moved up as they are already at the top":["\u30d6\u30ed\u30c3\u30af\u306f\u3059\u3067\u306b\u4e00\u756a\u4e0a\u306b\u3042\u308b\u305f\u3081\u3001\u4e0a\u306b\u79fb\u52d5\u3067\u304d\u307e\u305b\u3093"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["\u30d6\u30ed\u30c3\u30af\u300c%s\u300d\u306f\u552f\u4e00\u306e\u30d6\u30ed\u30c3\u30af\u306a\u306e\u3067\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3002"],"Edit as HTML":["HTML \u3068\u3057\u3066\u7de8\u96c6"],"Convert to Blocks":["\u30d6\u30ed\u30c3\u30af\u3078\u5909\u63db"],"Block: %s":["\u30d6\u30ed\u30c3\u30af: %s"],"This block has encountered an error and cannot be previewed.":["\u3053\u306e\u30d6\u30ed\u30c3\u30af\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u305f\u3081\u30d7\u30ec\u30d3\u30e5\u30fc\u3067\u304d\u307e\u305b\u3093\u3002"],"No block selected.":["\u30d6\u30ed\u30c3\u30af\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"],"Transform into:":["\u5909\u63db\u5148:"],Remove:["\u524a\u9664"],"Find original":["\u30aa\u30ea\u30b8\u30ca\u30eb\u306e\u691c\u7d22"],"Copy All Content":["\u3059\u3079\u3066\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30b3\u30d4\u30fc"],"Copied!":["\u30b3\u30d4\u30fc\u3057\u307e\u3057\u305f\u3002"],"Additional settings are now available in the Editor block settings sidebar":["\u30a8\u30c7\u30a3\u30bf\u30fc\u8a73\u7d30\u8a2d\u5b9a\u30b5\u30a4\u30c9\u30d0\u30fc\u304b\u3089\u8ffd\u52a0\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u3059\u3002"],Visibility:["\u516c\u958b\u72b6\u614b"],"Status & Visibility":["\u30b9\u30c6\u30fc\u30bf\u30b9\u3068\u516c\u958b\u72b6\u614b"],"Page Attributes":["\u30da\u30fc\u30b8\u5c5e\u6027"],Block:["\u30d6\u30ed\u30c3\u30af"],Document:["\u6587\u66f8"],"Featured Image":["\u30a2\u30a4\u30ad\u30e3\u30c3\u30c1\u753b\u50cf"],"Close settings":["\u8a2d\u5b9a\u3092\u9589\u3058\u308b"],"Editor content":["\u30a8\u30c7\u30a3\u30bf\u30fc\u30b3\u30f3\u30c6\u30f3\u30c4"],Tools:["\u30c4\u30fc\u30eb"],Editor:["\u30a8\u30c7\u30a3\u30bf\u30fc"],"Code Editor":["\u30b3\u30fc\u30c9\u30a8\u30c7\u30a3\u30bf\u30fc"],"Visual Editor":["\u30d3\u30b8\u30e5\u30a2\u30eb\u30a8\u30c7\u30a3\u30bf\u30fc"],"Editor top bar":["\u30a8\u30c7\u30a3\u30bf\u30fc\u30c8\u30c3\u30d7\u30d0\u30fc"],Settings:["\u8a2d\u5b9a"],Reset:["\u30ea\u30bb\u30c3\u30c8"],"Dismiss this notice":["\u901a\u77e5\u3092\u7121\u8996"],"Item removed.":["\u9805\u76ee\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002"],"Item added.":["\u9805\u76ee\u3092\u8ffd\u52a0\u3057\u307e\u3057\u305f\u3002"],"Drop files to upload":["\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u3092\u30c9\u30ed\u30c3\u30d7"],PM:["\u5348\u5f8c"],AM:["\u5348\u524d"],"An unknown error occurred.":["\u4e0d\u660e\u306a\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"],"No results.":["\u7d50\u679c\u306f\u3042\u308a\u307e\u305b\u3093\u3002"],"%d result found, use up and down arrow keys to navigate.":["%d\u4ef6\u306e\u7d50\u679c\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002\u4e0a\u4e0b\u306e\u77e2\u5370\u30ad\u30fc\u3092\u4f7f\u3063\u3066\u64cd\u4f5c\u3067\u304d\u307e\u3059\u3002"],"(no title)":["(\u30bf\u30a4\u30c8\u30eb\u306a\u3057)"],URL:["URL"],Submit:["\u9001\u4fe1"],Close:["\u9589\u3058\u308b"],"Insert link":["\u30ea\u30f3\u30af\u3092\u633f\u5165"],"Edit link":["\u30ea\u30f3\u30af\u3092\u7de8\u96c6"],Link:["\u30ea\u30f3\u30af"],Strikethrough:["\u53d6\u308a\u6d88\u3057\u7dda"],Italic:["\u30a4\u30bf\u30ea\u30c3\u30af"],Bold:["\u592a\u5b57"],"Remove link":["\u30ea\u30f3\u30af\u306e\u524a\u9664"],"Number of items":["\u9805\u76ee\u6570"],All:["\u3059\u3079\u3066"],Category:["\u30ab\u30c6\u30b4\u30ea\u30fc"],"Z \u2192 A":["\u30bf\u30a4\u30c8\u30eb"],"A \u2192 Z":["\u30bf\u30a4\u30c8\u30eb (\u9006\u9806)"],"Oldest to Newest":["\u6295\u7a3f\u65e5\u6642 (\u53e4\u3044\u8a18\u4e8b\u3092\u512a\u5148)"],"Newest to Oldest":["\u6295\u7a3f\u65e5\u6642 (\u65b0\u3057\u3044\u8a18\u4e8b\u3092\u512a\u5148)"],"Order by":["\u4e26\u3073\u9806"],Select:["\u9078\u629e"],"Select or Upload Media":["\u30e1\u30c7\u30a3\u30a2\u306e\u9078\u629e\u307e\u305f\u306f\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9"],Video:["\u52d5\u753b"],"Edit video":["\u52d5\u753b\u306e\u7de8\u96c6"],"Write\u2026":["\u5165\u529b..."],poetry:["\u8a69"],Verse:["\u8a69"],"New Column":["\u65b0\u898f\u30ab\u30e9\u30e0"],"Delete Column":["\u5217\u306e\u524a\u9664"],"Add Column After":["\u53f3\u306b\u5217\u3092\u8ffd\u52a0"],"Add Column Before":["\u5de6\u306b\u5217\u3092\u8ffd\u52a0"],"Delete Row":["\u884c\u306e\u524a\u9664"],"Add Row After":["\u4e0b\u306b\u884c\u3092\u8ffd\u52a0"],"Add Row Before":["\u4e0a\u306b\u884c\u3092\u8ffd\u52a0"],"Edit table":["\u30c6\u30fc\u30d6\u30eb\u306e\u7de8\u96c6"],Table:["\u30c6\u30fc\u30d6\u30eb"],"Write subheading\u2026":["\u5c0f\u898b\u51fa\u3057\u3092\u5165\u529b\u2026"],"Write shortcode here\u2026":["\u30b7\u30e7\u30fc\u30c8\u30b3\u30fc\u30c9\u3092\u3053\u3053\u306b\u5165\u529b\u2026"],Shortcode:["\u30b7\u30e7\u30fc\u30c8\u30b3\u30fc\u30c9"],divider:["\u533a\u5207\u308a\u7dda"],"horizontal-line":["\u6c34\u5e73\u7dda"],Separator:["\u533a\u5207\u308a"],Quote:["\u5f15\u7528"],"Write citation\u2026":["\u5f15\u7528\u5143\u3092\u5165\u529b..."],"Write quote\u2026":["\u5f15\u7528\u3092\u5165\u529b..."],Pullquote:["\u30d7\u30eb\u30af\u30aa\u30fc\u30c8"],"Write preformatted text\u2026":["\u6574\u5f62\u6e08\u307f\u30c6\u30ad\u30b9\u30c8\u3092\u5165\u529b..."],Preformatted:["\u6574\u5f62\u6e08\u307f\u30c6\u30ad\u30b9\u30c8"],text:["\u30c6\u30ad\u30b9\u30c8"],Paragraph:["\u6bb5\u843d"],"Font Size":["\u6587\u5b57\u30b5\u30a4\u30ba"],"Drop Cap":["\u30c9\u30ed\u30c3\u30d7\u30ad\u30e3\u30c3\u30d7"],"Text Settings":["\u30c6\u30ad\u30b9\u30c8\u8a2d\u5b9a"],"Read more":["\u7d9a\u304d\u3092\u8aad\u3080"],"Write list\u2026":["\u30ea\u30b9\u30c8\u3092\u5165\u529b..."],"numbered list":["\u756a\u53f7\u4ed8\u304d\u30ea\u30b9\u30c8"],"ordered list":["\u756a\u53f7\u4ed8\u304d\u30ea\u30b9\u30c8"],"bullet list":["\u7b87\u6761\u66f8\u304d\u30ea\u30b9\u30c8"],"Indent list item":["\u30ea\u30b9\u30c8\u9805\u76ee\u3092\u30a4\u30f3\u30c7\u30f3\u30c8"],"Outdent list item":["\u30ea\u30b9\u30c8\u9805\u76ee\u306e\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u623b\u3059"],"Convert to ordered list":["\u756a\u53f7\u4ed8\u304d\u30ea\u30b9\u30c8\u306b\u5909\u63db"],"Convert to unordered list":["\u7b87\u6761\u66f8\u304d\u30ea\u30b9\u30c8\u306b\u5909\u63db"],List:["\u30ea\u30b9\u30c8"],"recent posts":["\u6700\u8fd1\u306e\u6295\u7a3f"],"No posts found.":["\u6295\u7a3f\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002"],"Latest Posts":["\u6700\u65b0\u306e\u8a18\u4e8b"],"Display post date":["\u6295\u7a3f\u65e5\u3092\u8868\u793a"],"Grid view":["\u30b0\u30ea\u30c3\u30c9\u8868\u793a"],"List view":["\u30ea\u30b9\u30c8\u8868\u793a"],photo:["\u5199\u771f"],"Image Settings":["\u753b\u50cf\u8a2d\u5b9a"],Image:["\u753b\u50cf"],Preview:["\u30d7\u30ec\u30d3\u30e5\u30fc"],embed:["\u57cb\u3081\u8fbc\u307f"],"Custom HTML":["\u30ab\u30b9\u30bf\u30e0 HTML"],subtitle:["\u30b5\u30d6\u30bf\u30a4\u30c8\u30eb"],title:["\u30bf\u30a4\u30c8\u30eb"],Heading:["\u898b\u51fa\u3057"],"Write heading\u2026":["\u898b\u51fa\u3057\u3092\u5165\u529b..."],"Heading %d":["\u898b\u51fa\u3057%d"],Level:["\u30ec\u30d9\u30eb"],"Heading Settings":["\u898b\u51fa\u3057\u8a2d\u5b9a"],photos:["\u5199\u771f"],images:["\u753b\u50cf"],"Remove Image":["\u753b\u50cf\u306e\u524a\u9664"],None:["\u306a\u3057"],"Media File":["\u30e1\u30c7\u30a3\u30a2\u30d5\u30a1\u30a4\u30eb"],"Attachment Page":["\u6dfb\u4ed8\u30da\u30fc\u30b8"],"Crop Images":["\u753b\u50cf\u306e\u5207\u308a\u629c\u304d"],"Gallery Settings":["\u30ae\u30e3\u30e9\u30ea\u30fc\u8a2d\u5b9a"],Gallery:["\u30ae\u30e3\u30e9\u30ea\u30fc"],Classic:["\u30af\u30e9\u30b7\u30c3\u30af"],video:["\u52d5\u753b"],audio:["\u97f3\u58f0"],music:["\u97f3\u697d"],image:["\u753b\u50cf"],blog:["\u30d6\u30ed\u30b0"],post:["\u6295\u7a3f"],"Embedded content from %s":["%s \u304b\u3089\u306e\u57cb\u3081\u8fbc\u307f\u30b3\u30f3\u30c6\u30f3\u30c4"],"Enter URL to embed here\u2026":["\u57cb\u3081\u8fbc\u3080 URL \u3092\u3053\u3053\u306b\u5165\u529b..."],"%s URL":["%s URL"],"Embedding\u2026":["\u57cb\u3081\u8fbc\u307f\u4e2d..."],"Write title\u2026":["\u30bf\u30a4\u30c8\u30eb\u3092\u5165\u529b..."],"Fixed Background":["\u56fa\u5b9a\u80cc\u666f"],"Edit image":["\u753b\u50cf\u3092\u7de8\u96c6"],Columns:["\u30ab\u30e9\u30e0"],Experiments:["\u5b9f\u9a13\u4e2d"],Code:["\u30b3\u30fc\u30c9"],"Write code\u2026":["\u30b3\u30fc\u30c9\u3092\u5165\u529b..."],Categories:["\u30ab\u30c6\u30b4\u30ea\u30fc"],"Show Hierarchy":["\u968e\u5c64\u3092\u8868\u793a"],"Show post counts":["\u6295\u7a3f\u6570\u3092\u8868\u793a"],"Categories Settings":["\u30ab\u30c6\u30b4\u30ea\u30fc\u8a2d\u5b9a"],"Add text\u2026":["\u30c6\u30ad\u30b9\u30c8\u3092\u8ffd\u52a0\u2026"],Button:["\u30dc\u30bf\u30f3"],Apply:["\u9069\u7528"],"Text Color":["\u30c6\u30ad\u30b9\u30c8\u8272"],"Background Color":["\u80cc\u666f\u8272"],"Block has been deleted or is unavailable.":["\u30d6\u30ed\u30c3\u30af\u306f\u524a\u9664\u3055\u308c\u305f\u304b\u3001\u5229\u7528\u3067\u304d\u307e\u305b\u3093\u3002"],"Reusable Blocks":["\u518d\u5229\u7528\u30d6\u30ed\u30c3\u30af"],Cancel:["\u30ad\u30e3\u30f3\u30bb\u30eb"],Edit:["\u7de8\u96c6"],"Edit audio":["\u97f3\u58f0\u306e\u7de8\u96c6"],"Write caption\u2026":["\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u3092\u5165\u529b..."],"Use URL":["URL \u3092\u4f7f\u7528"],Audio:["\u97f3\u58f0"],Upload:["\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9"],"Additional CSS Class(es)":["\u8ffd\u52a0 CSS \u30af\u30e9\u30b9"],"HTML Anchor":["HTML \u30a2\u30f3\u30ab\u30fc"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u3053\u306e\u8272\u306e\u7d44\u307f\u5408\u308f\u305b\u306f\u8aad\u307f\u306b\u304f\u3044\u305f\u3081\u3001\u3088\u308a\u660e\u308b\u3044\u80cc\u666f\u8272\u3001\u3088\u308a\u6697\u3044\u6587\u5b57\u8272\u3092\u8a66\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u3053\u306e\u8272\u306e\u7d44\u307f\u5408\u308f\u305b\u306f\u8aad\u307f\u306b\u304f\u3044\u305f\u3081\u3001\u3088\u308a\u6697\u3044\u80cc\u666f\u8272\u3001\u3088\u308a\u660e\u308b\u3044\u6587\u5b57\u8272\u3092\u8a66\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],Clear:["\u30af\u30ea\u30a2"],"Custom color picker":["\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc\u30d4\u30c3\u30ab\u30fc"],"Color: %s":["\u8272: %s"],"Full Width":["\u5168\u5e45"],"Wide Width":["\u5e45\u5e83"],Widgets:["\u30a6\u30a3\u30b8\u30a7\u30c3\u30c8"],Formatting:["\u30d5\u30a9\u30fc\u30de\u30c3\u30c8"],"Common Blocks":["\u4e00\u822c\u30d6\u30ed\u30c3\u30af"],"Align Right":["\u53f3\u5bc4\u305b"],"Align Center":["\u4e2d\u592e\u5bc4\u305b"],"Align Left":["\u5de6\u5bc4\u305b"],"Printing since 1440. This is the development plugin for the new block editor in core.":["\u5370\u5237\u6280\u8853\u306f\u30011440\u5e74\u306b\u8a95\u751f\u3002\u30b3\u30a2\u306b\u63a1\u7528\u3055\u308c\u308b\u65b0\u3057\u3044\u30d6\u30ed\u30c3\u30af\u30a8\u30c7\u30a3\u30bf\u30fc\u306e\u958b\u767a\u30d7\u30e9\u30b0\u30a4\u30f3\u3002"],"Add title":["\u30bf\u30a4\u30c8\u30eb\u3092\u8ffd\u52a0"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg \u958b\u767a\u30e2\u30fc\u30c9\u306f\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u30d3\u30eb\u30c9\u304c\u5fc5\u8981\u3067\u3059\u3002npm install \u3092\u5b9f\u884c\u3057\u3066\u4f9d\u5b58\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u5f8c\u3001npm run build \u3067\u30d5\u30a1\u30a4\u30eb\u3092\u30d3\u30eb\u30c9\u3059\u308b\u304b\u3001\u307e\u305f\u306f npm run dev \u3067\u30d5\u30a1\u30a4\u30eb\u3092\u30d3\u30eb\u30c9\u3057\u3066\u5dee\u5206\u3092\u76e3\u8996\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u8a73\u3057\u304f\u306f contributing \u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],Author:["\u6295\u7a3f\u8005"],Slug:["\u30b9\u30e9\u30c3\u30b0 "],Discussion:["\u30c7\u30a3\u30b9\u30ab\u30c3\u30b7\u30e7\u30f3"],"Custom Fields":["\u30ab\u30b9\u30bf\u30e0\u30d5\u30a3\u30fc\u30eb\u30c9 "],Excerpt:["\u629c\u7c8b"],Publish:["\u516c\u958b"],Metadata:["\u30e1\u30bf\u30c7\u30fc\u30bf"],Save:["\u4fdd\u5b58"],Documentation:["\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8"],"Select Category":["\u30ab\u30c6\u30b4\u30ea\u30fc\u3092\u9078\u629e"],"(Untitled)":["(\u7121\u984c)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg \u304c\u6b63\u3057\u304f\u52d5\u4f5c\u3059\u308b\u306b\u306f WordPress %s\u4ee5\u964d\u304c\u5fc5\u8981\u3067\u3059\u3002Gutenberg \u3092\u6709\u52b9\u5316\u3059\u308b\u524d\u306b WordPress \u3092\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Gutenberg Team":["Gutenberg \u30c1\u30fc\u30e0"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["\u30c7\u30e2"],"%s ago":["%s\u524d"],"Block style name must be a string.":["\u30d6\u30ed\u30c3\u30af\u30b9\u30bf\u30a4\u30eb\u540d\u306f\u6587\u5b57\u5217\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002"]}},851,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":["\u10e1\u10d8\u10e2\u10e7\u10d5\u10d4\u10d1\u10d8"],"content placeholder\x04Content\u2026":["\u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u2026"],"button label\x04Convert to link":["\u10d1\u10db\u10e3\u10da\u10d0\u10d3 \u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0"],"button label\x04Try again":["\u10ea\u10d0\u10d3\u10d4\u10d7 \u10d9\u10d8\u10d3\u10d4\u10d5"],"Editor tips":["\u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8\u10e1 \u10e2\u10d8\u10de\u10d4\u10d1\u10d8"],"Block (selected)":["\u10d1\u10da\u10dd\u10d9\u10d8 (\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8)"],"Document (selected)":["\u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8 (\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8)"],"%d word":["%d \u10e1\u10d8\u10e2\u10e7\u10d5\u10d0"],"Top Toolbar":["\u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d7\u10d0 \u10d6\u10d4\u10d3\u10d0 \u10d6\u10dd\u10da\u10d8"],"Link Rel":["\u10e3\u10e0\u10d7\u10d8\u10d4\u10e0\u10d7\u10db\u10d3\u10d2\u10dd\u10db\u10d0\u10e0\u10d4\u10dd\u10d1\u10d0"],"Link CSS Class":["\u10d1\u10db\u10e3\u10da\u10d8\u10e1 CSS-\u10d9\u10da\u10d0\u10e1\u10d8"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u10e8\u10d4\u10e5\u10db\u10d4\u10dc\u10d8\u10d7 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8 \u10d3\u10d0 \u10e8\u10d4\u10d8\u10dc\u10d0\u10ee\u10d4\u10d7 \u10d8\u10e1 \u10d7\u10e5\u10d5\u10d4\u10dc\u10d7\u10d5\u10d8\u10e1 \u10d3\u10d0 \u10e1\u10ee\u10d5\u10d0 \u10d0\u10d5\u10e2\u10dd\u10e0\u10d4\u10d1\u10d8\u10e1\u10d0\u10e2\u10d5\u10d8\u10e1 \u10ee\u10d4\u10da\u10db\u10d4\u10dd\u10e0\u10d4\u10d3 \u10d2\u10d0\u10db\u10dd\u10e1\u10d0\u10e7\u10d4\u10dc\u10d4\u10d1\u10da\u10d0\u10d3. \u10d2\u10d0\u10dc\u10d0\u10d0\u10ee\u10da\u10d4\u10d7 \u10d1\u10da\u10dd\u10d9\u10d8 \u10d3\u10d0 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d0 \u10db\u10dd\u10ee\u10d3\u10d4\u10d1\u10d0 \u10e7\u10d5\u10d4\u10da\u10d2\u10d0\u10dc, \u10e1\u10d0\u10d3\u10d0\u10ea \u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10e3\u10da\u10d8\u10d0."],"To edit the featured image, you need permission to upload media.":["\u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1 \u10d7\u10e5\u10d5\u10d4\u10dc \u10d2\u10ed\u10d8\u10e0\u10d3\u10d4\u10d1\u10d0\u10d7 \u10d0\u10db \u10db\u10d4\u10d3\u10d8\u10d0\u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10e9\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d8\u10e1 \u10dc\u10d4\u10d1\u10d0\u10e0\u10d7\u10d5\u10d0."],"To edit this block, you need permission to upload media.":["\u10d0\u10db \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d8\u10e1\u10d0\u10e1 \u10d7\u10e5\u10d5\u10d4\u10dc \u10d2\u10d4\u10e1\u10d0\u10ed\u10d8\u10e0\u10dd\u10d4\u10d1\u10d0\u10d7 \u10dc\u10d4\u10d1\u10d0\u10e0\u10d7\u10d5\u10d0 \u10db\u10d4\u10d3\u10d8\u10d0\u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0\u10d6\u10d4."],"(selected block)":["(\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8)"],"Block tools":["\u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10e1 \u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d4\u10d1\u10d8"],Permalink:["\u10db\u10e3\u10d3\u10db\u10d8\u10d5\u10d8 \u10d1\u10db\u10e3\u10da\u10d8"],"This image has an empty alt attribute":["\u10d0\u10db \u10e1\u10e3\u10e0\u10d0\u10d7\u10e1 \u10d0\u10e5\u10d5\u10e1 \u10ea\u10d0\u10e0\u10d8\u10d4\u10da\u10d8 alt \u10d0\u10e2\u10e0\u10d8\u10d1\u10e3\u10e2\u10d8"],"This image has an empty alt attribute; its file name is %s":["\u10d0\u10db \u10e1\u10e3\u10e0\u10d0\u10d7\u10e1 \u10d0\u10e5\u10d5\u10e1 \u10ea\u10d0\u10e0\u10d8\u10d4\u10da\u10d8 alt \u10d0\u10e2\u10e0\u10d8\u10d1\u10e3\u10e2\u10d8; \u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8: %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":["\u10d0\u10ee\u10da\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["\u10e7\u10e3\u10e0\u10d0\u10d3\u10e6\u10d4\u10d1\u10d0: \u10d1\u10db\u10e3\u10da\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10e3\u10da\u10d8\u10d0, \u10db\u10d0\u10d2\u10e0\u10d0\u10db \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10dd\u10d0 \u10e8\u10d4\u10d8\u10ea\u10d0\u10d5\u10d3\u10d4\u10e1 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d4\u10d1\u10e1. \u10d2\u10d7\u10ee\u10dd\u10d5\u10d7 \u10d2\u10d0\u10d3\u10d0\u10d0\u10db\u10dd\u10ec\u10db\u10dd\u10d7."],"%s block selected.":["%s \u10d1\u10da\u10dd\u10d9\u10d8 \u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8\u10d0."],Thumbnail:["\u10d4\u10e1\u10d9\u10d8\u10d6\u10d8"],"Full Size":["\u10e1\u10e0\u10e3\u10da\u10d8 \u10d6\u10dd\u10db\u10d0"],"Link selected.":[],"Start writing with text or HTML":["\u10d3\u10d0\u10ec\u10e7\u10d4\u10d7 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1, \u10d0\u10dc HTML-\u10d9\u10dd\u10d3\u10d8\u10e1 \u10ec\u10d4\u10e0\u10d0"],"Type text or HTML":["\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1, \u10d0\u10dc HTML-\u10d9\u10dd\u10d3\u10d8\u10e1 \u10ec\u10d4\u10e0\u10d0"],"Block icon":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10ee\u10d0\u10e2\u10e3\u10da\u10d0"],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":["\u10d3\u10d0\u10d8\u10ec\u10e7\u10d4\u10d7 \u10ec\u10d4\u10e0\u10d0, \u10d0\u10dc \u10d3\u10d0\u10d0\u10ed\u10d8\u10e0\u10d4\u10d7 \u10d9\u10da\u10d0\u10d5\u10d8\u10e8\u10d6\u10d4 (/) \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d0\u10e1\u10d0\u10e0\u10e9\u10d4\u10d5\u10d0\u10d3"],"Empty block; start writing or type forward slash to choose a block":["\u10ea\u10d0\u10e0\u10d8\u10d4\u10da\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8; \u10d3\u10d0\u10d8\u10ec\u10e7\u10d4\u10d7 \u10ec\u10d4\u10e0\u10d0, \u10d0\u10dc \u10d3\u10d0\u10d0\u10ed\u10d8\u10e0\u10d4\u10d7 \u10d9\u10da\u10d0\u10d5\u10d8\u10e8\u10d6\u10d4 (/) \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d0\u10e0\u10e9\u10d4\u10d5\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1"],"Paragraph block":["\u10de\u10d0\u10e0\u10d0\u10d2\u10e0\u10d0\u10e4\u10d8\u10e1 \u10d1\u10da\u10dd\u10d9\u10d8"],"Page Break":["\u10d2\u10d5\u10d4\u10e0\u10d3\u10d8\u10e1 \u10d2\u10d0\u10ec\u10e7\u10d5\u10d4\u10e2\u10d0"],"Stack on mobile":["\u10d3\u10d0\u10ef\u10d2\u10e3\u10e4\u10d4\u10d1\u10d0 \u10db\u10dd\u10d1\u10d8\u10da\u10e3\u10e0 \u10e0\u10d4\u10df\u10d8\u10db\u10e8\u10d8"],Annotation:["\u10d0\u10dc\u10dd\u10e2\u10d0\u10ea\u10d8\u10d0"],"Drag images, upload new ones or select files from your library.":["\u10d2\u10d0\u10d3\u10d0\u10d0\u10d7\u10e0\u10d8\u10d4\u10d7 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8, \u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d4\u10d7 \u10d0\u10ee\u10d0\u10da\u10d8, \u10d0\u10dc \u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10e1\u10d0\u10e1\u10e3\u10e0\u10d5\u10d4\u10da\u10d8 \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d8\u10d3\u10d0\u10dc."],"blocks\x04Most Used":["\u10ee\u10e8\u10d8\u10e0\u10d0\u10d3 \u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10e3\u10da\u10d8"],"imperative verb\x04Resolve":["\u10d2\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],"font size name\x04Huge":["\u10e3\u10d6\u10d0\u10e0\u10db\u10d0\u10d6\u10d0\u10e0\u10d8"],"font size name\x04Large":["\u10d3\u10d8\u10d3\u10d8"],"font size name\x04Medium":["\u10e1\u10d0\u10e8\u10e3\u10d0\u10da\u10dd"],"font size name\x04Small":["\u10de\u10d0\u10e2\u10d0\u10e0\u10d0"],"font size name\x04Normal":["\u10e9\u10d5\u10d4\u10e3\u10da\u10d4\u10d1\u10e0\u10d8\u10d5\u10d8"],"keyboard button\x04Enter":["\u10e8\u10d4\u10e2\u10d0\u10dc\u10d0"],"button label\x04Import":["\u10d8\u10db\u10de\u10dd\u10e0\u10e2\u10d8"],"button label\x04Download":["\u10e9\u10d0\u10db\u10dd\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0"],"button label\x04Embed":["\u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10e3\u10da\u10d8"],"block title\x04Embed":["\u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10e3\u10da\u10d8"],"block title\x04Classic":["\u10d9\u10da\u10d0\u10e1\u10d8\u10d9\u10e3\u10e0\u10d8"],"block style\x04Large":["\u10d3\u10d8\u10d3\u10d8"],"%s (opens in a new tab)":["%s (\u10d2\u10d0\u10d8\u10ee\u10e1\u10dc\u10d4\u10d1\u10d0 \u10d0\u10ee\u10d0\u10da \u10e9\u10d0\u10dc\u10d0\u10e0\u10d7\u10e8\u10d8)"],"Link edited.":["\u10d1\u10db\u10e3\u10da\u10d8 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10e3\u10da\u10d8\u10d0."],"Link removed.":["\u10d1\u10db\u10e3\u10da\u10d8 \u10ec\u10d0\u10e8\u10d8\u10da\u10d8\u10d0."],media:["\u10db\u10d4\u10d3\u10d8\u10d0"],"Double-check your settings before publishing.":["\u10dd\u10e0\u10ef\u10d4\u10e0 \u10d2\u10d0\u10d3\u10d0\u10d0\u10db\u10dd\u10ec\u10db\u10d4\u10d7 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8, \u10e1\u10d0\u10dc\u10d0\u10db \u10d2\u10d0\u10db\u10dd\u10d0\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d7."],"Generating preview\u2026":["\u10d2\u10d0\u10d3\u10d0\u10ee\u10d4\u10d3\u10d5\u10d8\u10e1 \u10d2\u10d4\u10dc\u10d4\u10e0\u10d8\u10e0\u10d4\u10d1\u10d0\u2026"],"Edit or update the image":["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10d2\u10d0\u10dc\u10d0\u10ee\u10da\u10d4\u10d1\u10d0, \u10d0\u10dc \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],Media:["\u10db\u10d4\u10d3\u10d8\u10d0"],"Navigate to the nearest toolbar.":["\u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 \u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d7\u10d0 \u10e3\u10d0\u10ee\u10da\u10dd\u10d4\u10e1 \u10de\u10d0\u10dc\u10d4\u10da\u10d6\u10d4."],"Document tools":["\u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d4\u10d1\u10d8"],"Document and block tools":["\u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10d3\u10d0 \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d8\u10dc\u10e1\u10e2\u10e0\u10e3\u10db\u10d4\u10dc\u10e2\u10d4\u10d1\u10d8"],"Embed a video from your media library or upload a new one.":["\u10e9\u10d0\u10e1\u10d5\u10d8\u10d7 \u10d5\u10d8\u10d3\u10d4\u10dd \u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10db\u10d4\u10d3\u10d8\u10d0-\u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d8\u10d3\u10d0\u10dc, \u10d0\u10dc \u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d4\u10d7 \u10d0\u10ee\u10d0\u10da\u10d8."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u10da\u10d4\u10e5\u10e1\u10d8\u10e1 \u10e1\u10e2\u10e0\u10dd\u10e4\u10d4\u10d1\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0. \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10d8\u10dc\u10e2\u10d4\u10e0\u10d5\u10d0\u10da\u10d4\u10d1\u10d8\u10e1 \u10e1\u10de\u10d4\u10ea\u10d8\u10d0\u10da\u10e3\u10e0\u10d8 \u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0, \u10d0\u10dc\u10d3\u10d0 \u10e1\u10d8\u10db\u10e6\u10d4\u10e0\u10d8\u10e1 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10ea\u10d8\u10e2\u10d8\u10e0\u10d4\u10d1\u10d0."],"Add white space between blocks and customize its height.":["\u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10d4\u10d7 \u10d3\u10d0\u10e8\u10dd\u10e0\u10d4\u10d1\u10d0 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10e1 \u10e8\u10dd\u10e0\u10d8\u10e1 \u10d3\u10d0 \u10db\u10dd\u10d0\u10e0\u10d2\u10d4\u10d7 \u10db\u10d8\u10e1\u10d8 \u10e1\u10d8\u10db\u10d0\u10e6\u10da\u10d4."],"Insert additional custom elements with a WordPress shortcode.":["\u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7\u10d8 \u10e1\u10d0\u10db\u10dd\u10db\u10ee\u10db\u10d0\u10e0\u10d4\u10d1\u10da\u10dd \u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d4\u10d1\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0 \u10db\u10d0\u10da\u10e1\u10d0\u10ee\u10db\u10dd\u10d1\u10d8\u10e1 \u10e1\u10d0\u10e8\u10e3\u10d0\u10da\u10d4\u10d1\u10d8\u10d7."],"Create a break between ideas or sections with a horizontal separator.":["\u10e8\u10d4\u10e5\u10db\u10d4\u10dc\u10d8\u10d7 \u10e8\u10e3\u10d0\u10da\u10d4\u10d3\u10d8 \u10d8\u10d3\u10d4\u10d4\u10d1\u10e1\u10d0 \u10d3\u10d0 \u10e1\u10d4\u10e5\u10ea\u10d8\u10d4\u10d1\u10e1 \u10e8\u10dd\u10e0\u10d8\u10e1 \u10f0\u10dd\u10e0\u10d8\u10d6\u10dd\u10dc\u10e2\u10d0\u10da\u10e3\u10e0\u10d8 \u10d2\u10d0\u10db\u10e7\u10dd\u10e4\u10d8\u10e1 \u10db\u10d4\u10e8\u10d5\u10d4\u10dd\u10d1\u10d8\u10d7."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u10d2\u10d0\u10db\u10dd\u10e7\u10d0\u10d5\u10d8\u10d7 \u10d5\u10d8\u10d6\u10e3\u10d0\u10da\u10e3\u10e0\u10d0\u10d3 \u10ea\u10d8\u10e2\u10d0\u10e2\u10d0. \u201e\u10e1\u10ee\u10d5\u10d8\u10e1\u10d8 \u10ea\u10d8\u10e2\u10d8\u10e0\u10d4\u10d1\u10d8\u10d7, \u10e9\u10d5\u10d4\u10dc \u10e1\u10d0\u10d9\u10e3\u10d7\u10d0\u10e0 \u10d7\u10d0\u10d5\u10e1 \u10d5\u10ea\u10d8\u10e2\u10d8\u10e0\u10d4\u10d1\u10d7.\u201c \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["\u10d2\u10d0\u10db\u10dd\u10e7\u10d0\u10d5\u10d8\u10d7 \u10d5\u10d8\u10d6\u10e3\u10d0\u10da\u10e3\u10e0\u10d0\u10d3 \u10ea\u10d8\u10e2\u10d0\u10e2\u10d0 \u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10d3\u10d0\u10dc."],"Start with the building block of all narrative.":["\u10d3\u10d0\u10d8\u10ec\u10e7\u10d4\u10d7 \u10d7\u10ee\u10e0\u10dd\u10d1\u10d8\u10d7\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10e8\u10d4\u10e5\u10db\u10dc\u10d8\u10d7."],"Separate your content into a multi-page experience.":["\u10d3\u10d0\u10e7\u10d0\u10d5\u10d8\u10d7 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8 \u10e0\u10d0\u10db\u10d3\u10d4\u10dc\u10d8\u10db\u10d4 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d0\u10d7."],"Set media and words side-by-side for a richer layout.":["\u10d3\u10d0\u10d0\u10e7\u10d4\u10dc\u10d4\u10d7 \u10db\u10e3\u10da\u10e2\u10d8\u10db\u10d4\u10d3\u10d8\u10d0 \u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d8 \u10d3\u10d0 \u10e8\u10d4\u10db\u10dd\u10e1\u10d0\u10d6\u10e6\u10d5\u10e0\u10d4\u10d7 \u10d8\u10e1 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10d7 \u10da\u10d0\u10db\u10d0\u10d6\u10d8 \u10db\u10d0\u10d9\u10d4\u10e2\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1."],"Media & Text Settings":["\u10db\u10d4\u10d3\u10d8\u10d8\u10e1\u10d0 \u10d3\u10d0 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"Create a bulleted or numbered list.":["\u10d1\u10e3\u10e0\u10d7\u10e3\u10da\u10d4\u10d1\u10d8\u10d0\u10dc\u10d8, \u10d0\u10dc \u10d3\u10d0\u10db\u10dd\u10dc\u10e0\u10d8\u10da\u10d8 \u10e1\u10d8\u10d8\u10e1 \u10e8\u10d4\u10e5\u10db\u10dc\u10d0."],"Display a list of your most recent comments.":["\u10e1\u10d0\u10d8\u10e2\u10d8\u10e1 \u10d1\u10dd\u10da\u10dd \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d4\u10d1\u10d8."],"Insert an image to make a visual statement.":["\u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10d4\u10d7 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8 \u10d5\u10d8\u10d6\u10e3\u10d0\u10da\u10e3\u10e0\u10d8 \u10d2\u10d0\u10dc\u10d0\u10ea\u10ee\u10d0\u10d3\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1."],"Add custom HTML code and preview it as you edit.":["\u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10d4\u10d7 \u10db\u10dd\u10e0\u10d2\u10d4\u10d1\u10e3\u10da\u10d8 HTML \u10d9\u10dd\u10d3\u10d8 \u10d3\u10d0 \u10dc\u10d0\u10ee\u10d4\u10d7 \u10e8\u10d4\u10d3\u10d4\u10d2\u10d8 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d8\u10e1 \u10de\u10e0\u10dd\u10ea\u10d4\u10e1\u10e8\u10d8."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u10d2\u10d0\u10db\u10dd\u10d0\u10ea\u10ee\u10d0\u10d3\u10d4\u10d7 \u10d0\u10ee\u10d0\u10da\u10d8 \u10e1\u10d4\u10e5\u10ea\u10d8\u10d4\u10d1\u10d8 \u10d3\u10d0 \u10db\u10dd\u10d0\u10e0\u10d2\u10d4\u10d7 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8 \u10db\u10dd\u10db\u10ee\u10db\u10d0\u10d4\u10e0\u10d4\u10d1\u10d4\u10da\u10d7\u10d0 \u10d3\u10d0\u10e1\u10d0\u10ee\u10db\u10d0\u10e0\u10d4\u10d1\u10da\u10d0\u10d3 (\u10d0\u10d2\u10e0\u10d4\u10d7\u10d5\u10d4, \u10e1\u10d0\u10eb\u10d8\u10d4\u10d1\u10dd \u10e1\u10d8\u10e1\u10e2\u10d4\u10db\u10d4\u10d1\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1) \u10d2\u10d0\u10d8\u10d2\u10dd\u10dc \u10db\u10d8\u10e1\u10d8 \u10e1\u10e2\u10e0\u10e3\u10e5\u10e2\u10e3\u10e0\u10d0."],"Display multiple images in a rich gallery.":["\u10e0\u10d0\u10db\u10dd\u10d3\u10d4\u10dc\u10d8\u10db\u10d4 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10d2\u10d0\u10d4\u10e0\u10d7\u10d8\u10d0\u10dc\u10d4\u10d1\u10d0 \u10d2\u10d0\u10da\u10d0\u10d4\u10e0\u10d4\u10d0\u10e8\u10d8."],"Add a link to a downloadable file.":["\u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0 \u10e9\u10d0\u10db\u10dd\u10e1\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7 \u10e4\u10d0\u10d8\u10da\u10d6\u10d4."],"Embed videos, images, tweets, audio, and other content from external sources.":["\u10d5\u10d8\u10d3\u10d4\u10dd\u10e1, \u10e1\u10e3\u10e0\u10d0\u10d7\u10d4\u10d1\u10d8\u10e1, \u10e2\u10d5\u10d8\u10e2\u10d4\u10d1\u10d8\u10e1, \u10d0\u10e3\u10d3\u10d8\u10dd\u10e1 \u10d3\u10d0 \u10e1\u10ee\u10d5\u10d0 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0 \u10d2\u10d0\u10e0\u10d4 \u10ec\u10e7\u10d0\u10e0\u10dd\u10d4\u10d1\u10d8\u10d3\u10d0\u10dc."],"Resize for smaller devices":["\u10d6\u10dd\u10db\u10d8\u10e1 \u10e8\u10d4\u10ea\u10d5\u10da\u10d0 \u10de\u10d0\u10e2\u10d0\u10e0\u10d0 \u10db\u10dd\u10ec\u10e7\u10dd\u10d1\u10d8\u10da\u10dd\u10d1\u10d4\u10d1\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u10d0\u10db \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10e3\u10da\u10db\u10d0 \u10dd\u10d1\u10d8\u10d4\u10e5\u10e2\u10db\u10d0 \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10dd\u10d0 \u10d5\u10d4\u10e0 \u10e8\u10d4\u10d8\u10dc\u10d0\u10e0\u10e9\u10e3\u10dc\u10dd\u10e1 \u10db\u10ee\u10d0\u10e0\u10d4\u10d7\u10d0 \u10d7\u10d0\u10dc\u10d0\u10e4\u10d0\u10e0\u10d3\u10dd\u10d1\u10d0 \u10d1\u10e0\u10d0\u10e3\u10d6\u10d4\u10e0\u10d8\u10e1 \u10e4\u10d0\u10dc\u10ef\u10e0\u10d8\u10e1 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d8\u10e1\u10d0\u10e1."],"This embed will preserve its aspect ratio when the browser is resized.":["\u10d4\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10e3\u10da\u10d8 \u10dd\u10d1\u10d8\u10d4\u10e5\u10e2\u10d8 \u10e8\u10d4\u10d8\u10dc\u10d0\u10e0\u10e9\u10e3\u10dc\u10d4\u10d1\u10e1 \u10db\u10ee\u10d0\u10e0\u10d4\u10d7\u10d0 \u10d7\u10d0\u10dc\u10d0\u10e4\u10d0\u10e0\u10d3\u10dd\u10d1\u10d0\u10e1 \u10d1\u10e0\u10d0\u10e3\u10d6\u10d4\u10e0\u10d8\u10e1 \u10e4\u10d0\u10dc\u10ef\u10e0\u10d8\u10e1 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d8\u10e1\u10d0\u10e1."],"Embed an Animoto video.":["Animoto \u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a Vimeo video.":["Vimeo \u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Flickr content.":["Flickr \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Spotify content.":["Spotify \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed SoundCloud content.":["SoundCloud \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a WordPress post.":["WordPress-\u10d8\u10e1 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0."],"Embed an Instagram post.":["Instagram \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a Facebook post.":["Facebook \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a WordPress.tv video.":["WordPress.tv \u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a VideoPress video.":["VideoPress \u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a Tumblr post.":["Tumblr \u10e1\u10e2\u10d0\u10e2\u10d8\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a TED video.":["TED \u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Speaker Deck content.":["Speaker Deck \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a YouTube video.":["YouTube \u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed SmugMug content.":["SmugMug \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Slideshare content.":["Slideshare \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Scribd content.":["Scribd \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Screencast content.":["Screencast \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed ReverbNation content.":["ReverbNation \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a Reddit thread.":["Reddit \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Polldaddy content.":["Polldaddy \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Mixcloud content.":["Mixcloud \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a tweet.":["\u10e2\u10d5\u10d8\u10e2\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Meetup.com content.":["Meetup.com \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Kickstarter content.":["Kickstarter \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Issuu content.":["Issuu \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Imgur content.":["Imgur \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Hulu content.":["Hulu \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a Dailymotion video.":["Dailymotion \u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed CollegeHumor content.":["CollegeHumor \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed Cloudup content.":["Cloudup \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"Add an image or video with a text overlay \u2014 great for headers.":["\u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10d4\u10d7 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8 \u10d0\u10dc \u10d5\u10d8\u10d3\u10d4\u10dd \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10d2\u10d0\u10d3\u10d0\u10e4\u10d0\u10e0\u10d5\u10d8\u10d7 \u2014 \u10d0\u10e0\u10d0\u10e9\u10d5\u10d4\u10e3\u10da\u10d4\u10d1\u10e0\u10d8\u10d5\u10d8\u10d0 \u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d4\u10d1\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1."],"Display code snippets that respect your spacing and tabs.":["\u10d0\u10e9\u10d5\u10d4\u10dc\u10d4\u10d7 \u10d9\u10dd\u10d3\u10d8\u10e1 \u10e4\u10e0\u10d0\u10d2\u10db\u10d4\u10dc\u10e2\u10d8 \u10d3\u10d0\u10e8\u10dd\u10e0\u10d4\u10d1\u10d4\u10d1\u10d8\u10d7 \u10d3\u10d0 \u10e2\u10d0\u10d1\u10e3\u10da\u10d0\u10ea\u10d8\u10d8\u10d7."],"Use the classic WordPress editor.":["WordPress-\u10d8\u10e1 \u10d9\u10da\u10d0\u10e1\u10d8\u10d9\u10e3\u10e0\u10d8 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0."],"Display a list of all categories.":["\u10e7\u10d5\u10d4\u10da\u10d0 \u10d9\u10d0\u10e2\u10d4\u10d2\u10dd\u10e0\u10d8\u10d8\u10e1 \u10e1\u10d8\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0."],"Embed a simple audio player.":["\u10db\u10d0\u10e0\u10e2\u10d8\u10d5\u10d8 \u10d0\u10e3\u10d3\u10d8\u10dd \u10d3\u10d0\u10db\u10d9\u10d5\u10e0\u10d4\u10da\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0."],"noun\x04View":["\u10ee\u10d4\u10d3\u10d8"],"editor button\x04Left to right":["\u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d3\u10d0\u10dc \u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d5"],"Save as Pending":["\u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0 \u10d3\u10d0\u10e1\u10d0\u10db\u10e2\u10d9\u10d8\u10ea\u10d4\u10d1\u10da\u10d0\u10d3"],"%s address":["%s \u10db\u10d8\u10e1\u10d0\u10db\u10d0\u10e0\u10d7\u10d8"],"Paste or type URL":["\u10e9\u10d0\u10e1\u10d5\u10d8\u10d7, \u10d0\u10dc \u10e8\u10d4\u10d8\u10e2\u10d0\u10dc\u10d4\u10d7 URL"],"Insert from URL":["\u10e1\u10d0\u10d8\u10e2\u10d8\u10d3\u10d0\u10dc \u10e9\u10d0\u10e1\u10db\u10d0"],"Block Navigator":[],Styles:["\u10e1\u10e2\u10d8\u10da\u10d4\u10d1\u10d8"],"Advanced Panels":["\u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7\u10d8 \u10de\u10d0\u10dc\u10d4\u10da\u10d4\u10d1\u10d8"],"Document Panels":["\u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10de\u10d0\u10dc\u10d4\u10da\u10d8"],General:["\u10e1\u10d0\u10d4\u10e0\u10d7\u10dd"],"Open the block navigation menu.":["\u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10e8\u10d8 \u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d8\u10e1 \u10db\u10d4\u10dc\u10d8\u10e3\u10e1 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0."],"Work without distraction":["\u10db\u10e3\u10e8\u10d0\u10dd\u10d1\u10d0 \u10e7\u10e3\u10e0\u10d0\u10d3\u10e6\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10e4\u10d0\u10dc\u10e2\u10d5\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4"],"Focus on one block at a time":["\u10e7\u10e3\u10e0\u10d0\u10d3\u1ca6\u1c94\u1c91\u1c90 \u10d4\u10e0\u10d7 \u10d9\u10dd\u10dc\u10d9\u10e0\u10d4\u10e2\u10e3\u10da \u10d1\u10da\u10dd\u10d9\u10d6\u10d4"],"Access all block and document tools in a single place":["\u10ec\u10d5\u10d3\u10dd\u10db\u10d0 \u10e7\u10d5\u10d4\u10da\u10d0 \u10d1\u10da\u10dd\u10d9\u10d6\u10d4 \u10d3\u10d0 \u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d6\u10d4 \u10d4\u10e0\u10d7 \u10d0\u10d3\u10d2\u10d8\u10da\u10d0\u10e1"],Options:["\u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"(opens in a new tab)":["(\u10ee\u10e1\u10dc\u10d8\u10e1 \u10d0\u10ee\u10d0\u10da\u10d8 \u10e9\u10d0\u10dc\u10d0\u10e0\u10d7\u10e8\u10d8)"],Minutes:["\u10ec\u10e3\u10d7\u10d8"],Hours:["\u10e1\u10d0\u10d0\u10d7\u10d8"],Time:["\u10d3\u10e0\u10dd"],Year:["\u10ec\u10d4\u10da\u10d8"],Day:["\u10d3\u10e6\u10d4"],December:["\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10d8"],November:["\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10d8"],October:["\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10d8"],September:["\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10d8"],August:["\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10dd"],July:["\u10d8\u10d5\u10da\u10d8\u10e1\u10d8"],June:["\u10d8\u10d5\u10dc\u10d8\u10e1\u10d8"],May:["\u10db\u10d0\u10d8"],April:["\u10d0\u10de\u10e0"],March:["\u10db\u10d0\u10e0\u10e2\u10d8"],February:["\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10d8"],January:["\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10d8"],Month:["\u10d7\u10d5\u10d4"],Date:["\u10d7\u10d0\u10e0\u10d8\u10e6\u10d8"],"Go to the first (home) or last (end) day of a week.":["\u10d2\u10d0\u10d3\u10d0\u10d3\u10d8\u10d7 \u10d9\u10d5\u10d8\u10e0\u10d8\u10e1 \u10de\u10d8\u10e0\u10d5\u10d4\u10da (home), \u10d0\u10dc \u10d1\u10dd\u10da\u10dd (end) \u10d3\u10e6\u10d4\u10d6\u10d4."],"Home/End":["Home/End"],"Home and End":["Home \u10d3\u10d0 End"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u10e3\u10d9\u10d0\u10dc (PgUp), \u10d0\u10dc \u10ec\u10d8\u10dc (PgDn) \u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 \u10d4\u10e0\u10d7\u10d8 \u10d7\u10d5\u10d8\u10d7."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up \u10d3\u10d0 Page Down"],"Move backward (up) or forward (down) by one week.":["\u10e3\u10d9\u10d0\u10dc (PgUp), \u10d0\u10dc \u10ec\u10d8\u10dc (PgDn) \u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 \u10d4\u10e0\u10d7\u10d8 \u10d9\u10d5\u10d8\u10e0\u10d8\u10d7."],"Up and Down Arrows":["\u10d8\u10e1\u10e0\u10d4\u10d1\u10d8 \u10d6\u10d4\u10db\u10dd\u10d7 \u10d3\u10d0 \u10e5\u10d5\u10d4\u10db\u10dd\u10d7"],"Move backward (left) or forward (right) by one day.":["\u10e3\u10d9\u10d0\u10dc (PgUp), \u10d0\u10dc \u10ec\u10d8\u10dc (PgDn) \u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 \u10d4\u10e0\u10d7\u10d8 \u10d3\u10e6\u10d8\u10d7."],"Left and Right Arrows":["\u10d8\u10e1\u10e0\u10d4\u10d1\u10d8 \u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d5 \u10d3\u10d0 \u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d5"],"Select the date in focus.":["\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10d7\u10d0\u10e0\u10d8\u10e6\u10d8."],"Navigating with a keyboard":["\u10d2\u10d0\u10d3\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10d4\u10d1\u10d0 \u10d9\u10da\u10d0\u10d5\u10d8\u10d0\u10e2\u10e3\u10e0\u10d8\u10d7"],"Click the desired day to select it.":["\u10d3\u10d0\u10d0\u10ec\u10d9\u10d0\u10de\u10e3\u10dc\u10d4\u10d7 \u10e1\u10d0\u10ed\u10d8\u10e0\u10dd \u10d3\u10e0\u10d4\u10d6\u10d4 \u10db\u10d8\u10e1 \u10db\u10dd\u10e1\u10d0\u10dc\u10d8\u10e8\u10dc\u10d0\u10d3."],"Click the right or left arrows to select other months in the past or the future.":["\u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d7 \u10db\u10d0\u10e0\u10ea\u10ee\u10d4\u10dc\u10d0, \u10d0\u10dc \u10db\u10d0\u10e0\u10ef\u10d5\u10d4\u10dc\u10d0 \u10d8\u10e1\u10d0\u10e0\u10d8 \u10e1\u10ee\u10d5\u10d0 \u10d7\u10d5\u10d4\u10d4\u10d1\u10d8\u10e1 \u10db\u10dd\u10e1\u10d0\u10dc\u10d8\u10e8\u10dc\u10d0\u10d3 \u10ec\u10d0\u10e0\u10e1\u10e3\u10da\u10e8\u10d8, \u10d0\u10dc \u10db\u10dd\u10db\u10d0\u10d5\u10d0\u10da\u10e8\u10d8."],"Click to Select":["\u10d3\u10d0\u10d0\u10ec\u10d9\u10d0\u10de\u10e3\u10dc\u10d4\u10d7 \u10db\u10dd\u10e1\u10d0\u10dc\u10d8\u10e8\u10dc\u10d0\u10d3"],"Calendar Help":["\u10d9\u10d0\u10da\u10d4\u10dc\u10d3\u10e0\u10d8\u10e1 \u10d3\u10d0\u10ee\u10db\u10d0\u10e0\u10d4\u10d1\u10d0"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10e8\u10d4\u10e4\u10d4\u10e0\u10d8\u10da\u10dd\u10d1\u10d0"],"Change color format":["\u10e4\u10d4\u10e0\u10d8\u10e1 \u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8\u10e1 \u10e8\u10d4\u10ea\u10d5\u10da\u10d0"],"Color value in HSL":["\u10e4\u10d4\u10e0\u10d8\u10e1 \u10db\u10dc\u10d8\u10e8\u10d5\u10dc\u10d4\u10da\u10dd\u10d1\u10d0 HSL-\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10e8\u10d8"],"Color value in RGB":["\u10e4\u10d4\u10e0\u10d8\u10e1 \u10db\u10dc\u10d8\u10e8\u10d5\u10dc\u10d4\u10da\u10dd\u10d1\u10d0 RGB-\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10e8\u10d8"],"Color value in hexadecimal":["\u10e4\u10d4\u10e0\u10d8\u10e1 \u10db\u10dc\u10d8\u10e8\u10d5\u10dc\u10d4\u10da\u10dd\u10d1\u10d0 HEX-\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10e8\u10d8"],"RGB mode active":["RGB \u10e0\u10d4\u10df\u10d8\u10db\u10d8 \u10d0\u10e5\u10e2\u10d8\u10e3\u10e0\u10d8\u10d0"],"Hex color mode active":["Hex \u10e0\u10d4\u10df\u10d8\u10db\u10d8 \u10d0\u10e5\u10e2\u10d8\u10e3\u10e0\u10d8\u10d0"],"Hue/saturation/lightness mode active":["HSL \u10e0\u10d4\u10df\u10d8\u10db\u10d8 \u10d0\u10e5\u10e2\u10d8\u10e3\u10e0\u10d8\u10d0"],"Move the arrow left or right to change hue.":["\u10d2\u10d0\u10d3\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10d4\u10d7 \u10d8\u10e1\u10d0\u10e0\u10d8 \u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d5, \u10d0\u10dc \u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d5 \u10e8\u10d4\u10e4\u10d4\u10e0\u10d8\u10da\u10dd\u10d1\u10d8\u10e1 \u10e8\u10d4\u10e1\u10d0\u10ea\u10d5\u10da\u10d4\u10da\u10d0\u10d3."],"Hue value in degrees, from 0 to 359.":["\u10e8\u10d4\u10e4\u10d4\u10e0\u10d8\u10da\u10dd\u10d1\u10d8\u10e1 \u10db\u10dc\u10d8\u10e8\u10d5\u10dc\u10d4\u10da\u10dd\u10d1\u10d0 \u10d2\u10e0\u10d0\u10d3\u10e3\u10e1\u10d4\u10d1\u10e8\u10d8, 0-\u10d3\u10d0\u10dc 359-\u10db\u10d3\u10d4."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["\u10d0\u10da\u10e4\u10d0\u10e1 \u10db\u10dc\u10d8\u10e8\u10d5\u10dc\u10d4\u10da\u10dd\u10d1\u10d0, 0-\u10d3\u10d0\u10dc (\u10d2\u10d0\u10db\u10ed\u10d5\u10d8\u10e0\u10d5\u10d0\u10da\u10d4) 1-\u10db\u10d3\u10d4 (\u10d2\u10d0\u10e3\u10db\u10ed\u10d5\u10d8\u10e0\u10d5\u10d0\u10da\u10d4)."],Stripes:["\u10d6\u10dd\u10da\u10d4\u10d1\u10d8"],"Your site doesn\u2019t include support for this block.":["\u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10e1\u10d0\u10d8\u10e2\u10d8 \u10db\u10ee\u10d0\u10e0\u10e1 \u10d0\u10e0 \u10e3\u10ed\u10d4\u10e0\u10e1 \u10d0\u10db \u10d1\u10da\u10dd\u10d9\u10e1."],"Unrecognized Block":["\u10d2\u10d0\u10db\u10dd\u10e3\u10ea\u10dc\u10dd\u10d1\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10e1\u10d0\u10d8\u10e2\u10d8 \u10db\u10ee\u10d0\u10e0\u10e1 \u10d0\u10e0 \u10e3\u10ed\u10d4\u10e0\u10e1 \"%s\" \u10d1\u10da\u10dd\u10d9\u10e1. \u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10ee\u10d4\u10da\u10e3\u10ee\u10da\u10d4\u10d1\u10da\u10d0\u10d3 \u10d3\u10d0\u10e2\u10dd\u10d5\u10dd\u10d7 \u10d4\u10e1 \u10d1\u10da\u10dd\u10d9\u10d8, \u10d0\u10dc \u10ec\u10d0\u10e8\u10d0\u10da\u10dd\u10d7."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10e1\u10d0\u10d8\u10e2\u10d8 \u10db\u10ee\u10d0\u10e0\u10e1 \u10d0\u10e0 \u10e3\u10ed\u10d4\u10e0\u10e1 \u201c%s\u201d \u10d1\u10da\u10dd\u10d9\u10e1. \u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10ee\u10d4\u10da\u10e3\u10ee\u10da\u10d4\u10d1\u10da\u10d0\u10d3 \u10d3\u10d0\u10e2\u10dd\u10d5\u10dd\u10d7 \u10d4\u10e1 \u10d1\u10da\u10dd\u10d9\u10d8, \u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0\u10d7 HTML-\u10d9\u10dd\u10d3\u10d0\u10d3, \u10d0\u10dc \u10ec\u10d0\u10e8\u10d0\u10da\u10dd\u10d7."],"Media area":["\u10db\u10e3\u10da\u10e2\u10d8\u10db\u10d4\u10d3\u10d8\u10d0\u10e1 \u10d0\u10e0\u10d4"],"Media & Text":["\u10db\u10d4\u10d3\u10d8\u10d0 \u10d3\u10d0 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8"],"Show media on right":["\u10db\u10d4\u10d3\u10d8\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0 \u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d5"],"Show media on left":["\u10db\u10d4\u10d3\u10d8\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0 \u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d5"],"Open in New Tab":["\u10d0\u10ee\u10d0\u10da \u10e9\u10d0\u10dc\u10d0\u10e0\u10d7\u10e8\u10d8 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0"],Cover:["\u10d2\u10d0\u10e0\u10d4\u10d9\u10d0\u10dc\u10d8"],"Border Settings":[],"Edit media":["\u10db\u10d4\u10d3\u10d8\u10d8\u10e1 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],Medium:["\u10e1\u10d0\u10e8\u10e3\u10d0\u10da\u10dd"],"Paste URL or type to search":["\u10e9\u10d0\u10e1\u10d5\u10d8\u10d7 \u10db\u10d8\u10e1\u10d0\u10db\u10d0\u10e0\u10d7\u10d8, \u10d0\u10dc \u10d0\u10d9\u10e0\u10d8\u10e4\u10d4\u10d7 \u10eb\u10d4\u10d1\u10dc\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1"],Terms:["\u10de\u10d8\u10e0\u10dd\u10d1\u10d4\u10d1\u10d8"],"Your work will be published at the specified date and time.":["\u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10e8\u10e0\u10dd\u10db\u10d0 \u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d3\u10d4\u10d1\u10d0 \u10db\u10d8\u10d7\u10d8\u10d7\u10d4\u10d1\u10e3\u10da \u10d7\u10d0\u10e0\u10d8\u10e6\u10e1\u10d0 \u10d3\u10d0 \u10d3\u10e0\u10dd\u10e1."],"Are you ready to schedule?":["\u10db\u10d6\u10d0\u10d3 \u10ee\u10d0\u10e0\u10d7 \u10d3\u10d0\u10d2\u10d4\u10d2\u10db\u10dd\u10d7 \u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d0?"],"Always show pre-publish checks.":["\u10e7\u10dd\u10d5\u10d4\u10da\u10d7\u10d5\u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e9\u10dc\u10d3\u10d4\u10e1 \u10e8\u10d4\u10db\u10dd\u10ec\u10db\u10d4\u10d1\u10d0 \u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d0\u10db\u10d3\u10d4."],"Take Over":["\u10d9\u10dd\u10dc\u10e2\u10e0\u10dd\u10da\u10d8\u10e1 \u10d0\u10e6\u10d4\u10d1\u10d0"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u10e1\u10ee\u10d5\u10d0 \u10db\u10dd\u10db\u10ee\u10db\u10d0\u10e0\u10d4\u10d1\u10d4\u10da\u10d8 \u10e3\u10d9\u10d5\u10d4 \u10db\u10e3\u10e8\u10d0\u10dd\u10d1\u10e1 \u10d0\u10db \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d6\u10d4, \u10e0\u10d0\u10ea \u10dc\u10d8\u10e8\u10dc\u10d0\u10d5\u10e1, \u10e0\u10dd\u10db \u10d5\u10d4\u10e0 \u10e8\u10d4\u10d8\u10e2\u10d0\u10dc\u10d7 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d4\u10d1\u10e1, \u10e1\u10d0\u10dc\u10d0\u10db \u10d9\u10dd\u10dc\u10e2\u10e0\u10dd\u10da\u10e1 \u10d0\u10e0 \u10d0\u10d8\u10e6\u10d4\u10d1\u10d7."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s \u10d0\u10db\u10df\u10d0\u10db\u10d0\u10d3 \u10db\u10e3\u10e8\u10d0\u10dd\u10d1\u10e1 \u10d0\u10db \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d6\u10d4, \u10e0\u10d0\u10ea \u10d8\u10db\u10d0\u10e1 \u10dc\u10d8\u10e8\u10dc\u10d0\u10d5\u10e1, \u10e0\u10dd\u10db \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10e2\u10d0\u10dc\u10d0 \u10d5\u10d4\u10e0 \u10ee\u10d4\u10e0\u10ee\u10d3\u10d4\u10d1\u10d0, \u10d7\u10e3 \u10d9\u10dd\u10dc\u10e2\u10e0\u10dd\u10da\u10d8\u10e1 \u10d0\u10e0 \u10d0\u10d8\u10e6\u10d4\u10d1\u10d7."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u10e1\u10ee\u10d5\u10d0 \u10db\u10dd\u10db\u10ee\u10db\u10d0\u10e0\u10d4\u10d1\u10d4\u10da\u10d8 \u10d0\u10db\u10df\u10d0\u10db\u10d0\u10d3 \u10db\u10e3\u10e8\u10d0\u10dd\u10d1\u10e1 \u10d0\u10db \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d6\u10d4. \u10d0\u10e0 \u10d8\u10d3\u10d0\u10e0\u10d3\u10dd\u10d7, \u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d4\u10d1\u10d8 \u10d0\u10db \u10d4\u10e2\u10d0\u10de\u10d6\u10d4 \u10e8\u10d4\u10dc\u10d0\u10ee\u10e3\u10da\u10d8\u10d0."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s \u10d0\u10db\u10df\u10d0\u10db\u10d0\u10d3 \u10db\u10e3\u10e8\u10d0\u10dd\u10d1\u10e1 \u10d0\u10db \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d6\u10d4. \u10d0\u10e0 \u10d8\u10d3\u10d0\u10e0\u10d3\u10dd\u10d7, \u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d4\u10d1\u10d8 \u10d0\u10db \u10d4\u10e2\u10d0\u10de\u10d6\u10d4 \u10e8\u10d4\u10dc\u10d0\u10ee\u10e3\u10da\u10d8\u10d0."],Avatar:["\u10d0\u10d5\u10d0\u10e2\u10d0\u10e0\u10d8"],"This post is already being edited.":["\u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8 \u10e3\u10d9\u10d5\u10d4 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10d8\u10e0\u10d3\u10d4\u10d1\u10d0."],"Someone else has taken over this post.":["\u10d5\u10d8\u10e6\u10d0\u10ea\u10d0\u10db \u10d9\u10dd\u10dc\u10e2\u10e0\u10dd\u10da\u10d8 \u10d0\u10d8\u10e6\u10dd \u10d0\u10db \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d6\u10d4."],"This block contains unexpected or invalid content.":["\u10d1\u10da\u10dd\u10d9\u10d8 \u10e8\u10d4\u10d8\u10ea\u10d0\u10d5\u10e1 \u10db\u10dd\u10e3\u10da\u10dd\u10d3\u10dc\u10d4\u10da, \u10d0\u10dc \u10d0\u10e0\u10d0\u10e1\u10ec\u10dd\u10e0 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10e1."],"Resolve Block":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d2\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],"Convert to HTML":["HTML-\u10d0\u10d3 \u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0"],"This block can only be used once.":["\u10d0\u10db \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10d4\u10e0\u10d7\u10ee\u10d4\u10da \u10e8\u10d4\u10d8\u10eb\u10da\u10d4\u10d1\u10d0."],"Exit Code Editor":["\u10d9\u10dd\u10d3\u10d8\u10e1 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8\u10d3\u10d0\u10dc \u10d2\u10d0\u10db\u10dd\u10e1\u10d5\u10da\u10d0"],"Editing Code":["\u10d9\u10dd\u10d3\u10d8\u10e1 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8"],"Solid Color":["\u10d4\u10e0\u10d7\u10e4\u10d4\u10e0\u10dd\u10d5\u10d0\u10dc\u10d8"],"Main Color":["\u10db\u10d7\u10d0\u10d5\u10d0\u10e0\u10d8 \u10e4\u10d4\u10e0\u10d8"],HTML:["HTML"],"Write HTML\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7 HTML\u2026"],"Media Settings":["\u10db\u10d4\u10d3\u10d8\u10d0 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"Overlay Color":["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10d3\u10d0\u10e4\u10d0\u10e0\u10d5\u10d0"],Overlay:["\u10d2\u10d0\u10d3\u10d0\u10e4\u10d0\u10e0\u10d5\u10d0"],"Insert Media":["\u10db\u10d4\u10d3\u10d8\u10d0\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0"],"Reusable block imported successfully!":["\u10d9\u10d5\u10da\u10d0\u10d5\u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0\u10d3\u10d8 \u10ec\u10d0\u10e0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7 \u10d3\u10d0\u10d8\u10db\u10de\u10dd\u10e0\u10e2\u10d3\u10d0!"],"Invalid Reusable Block JSON file":["\u10d0\u10e0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d8 JSON \u10e4\u10d0\u10d8\u10da\u10d8 \u10d9\u10d5\u10da\u10d0\u10d5\u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0\u10d3\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1"],"Invalid JSON file":["\u10d0\u10e0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d8 JSON \u10e4\u10d0\u10d8\u10da\u10d8"],"Import from JSON":["\u10d8\u10db\u10de\u10dd\u10e0\u10e2\u10d8 JSON \u10e4\u10d0\u10d8\u10da\u10d8\u10d3\u10d0\u10dc"],Backtick:["\u10d1\u10e0\u10ed\u10e7\u10d0\u10da\u10d8"],Period:["\u10ec\u10d4\u10e0\u10e2\u10d8\u10da\u10d8"],Comma:["\u10db\u10eb\u10d8\u10db\u10d4"],"Change type of %d block":["%d \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10e2\u10d8\u10de\u10d8\u10e1 \u10e8\u10d4\u10ea\u10d5\u10da\u10d0"],Current:["\u10db\u10d8\u10db\u10d3\u10d8\u10dc\u10d0\u10e0\u10d4"],"After Conversion":["\u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d8\u10e1 \u10e8\u10d4\u10db\u10d3\u10d4\u10d2"],"Change alignment":[],"Change text alignment":[],"%d block":["%d \u10d1\u10da\u10dd\u10d9\u10d8"],Escape:["\u10d2\u10d0\u10db\u10dd\u10e1\u10d5\u10da\u10d0"],"Forward-slash":["\u10e3\u10d9\u10e3 \u10d3\u10d0\u10ee\u10e0\u10d8\u10da\u10d8 \u10ee\u10d0\u10d6\u10d8"],"No archives to show.":["\u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1 \u10d0\u10e0\u10e5\u10d8\u10d5\u10d8, \u10e0\u10dd\u10db \u10d2\u10d0\u10e9\u10d5\u10d4\u10dc\u10dd\u10d7."],"This file is empty.":["\u10e4\u10d0\u10d8\u10da\u10d8 \u10ea\u10d0\u10e0\u10d8\u10d4\u10da\u10d8\u10d0."],"Sorry, this file type is not supported here.":["\u10e3\u10d9\u10d0\u10ea\u10e0\u10d0\u10d5\u10d0\u10d3, \u10d0\u10db \u10e2\u10d8\u10de\u10d8\u10e1 \u10e4\u10d0\u10d8\u10da\u10d8 \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1 \u10db\u10ee\u10d0\u10e0\u10d3\u10d0\u10ed\u10d4\u10e0\u10d8\u10da\u10d8."],"Manage All Reusable Blocks":["\u10d9\u10d5\u10da\u10d0\u10d5\u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0\u10d3\u10d8 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10e1 \u10db\u10d0\u10e0\u10d7\u10d5\u10d0"],Title:["\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8"],"Fullscreen Mode":["\u10e1\u10e0\u10e3\u10da\u10d8 \u10d4\u10d9\u10e0\u10d0\u10dc\u10d8\u10e1 \u10e0\u10d4\u10df\u10d8\u10db\u10d8"],"Beautiful landscape":["\u10e8\u10d4\u10e1\u10d0\u10dc\u10d8\u10e8\u10dc\u10d0\u10d5\u10d8 \u10de\u10d4\u10d8\u10d6\u10d0\u10df\u10d8"],"Close panel":["\u10de\u10d0\u10dc\u10d4\u10da\u10d8\u10e1 \u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0"],"Convert to Classic Block":["\u10d9\u10da\u10d0\u10e1\u10d8\u10d9\u10e3\u10e0 \u10d1\u10da\u10dd\u10d9\u10d0\u10d3 \u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0"],"Remove Poster Image":["\u10db\u10d8\u10dc\u10d8\u10d0\u10e2\u10e3\u10e0\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0"],"Select Poster Image":["\u10d0\u10e4\u10d8\u10e8\u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e1\u10d0\u10ee\u10e3\u10da\u10d4\u10d1\u10d8\u10e1 \u10d0\u10e0\u10e9\u10d4\u10d5\u10d0"],"Poster Image":["\u10de\u10dd\u10e1\u10e2\u10d4\u10e0\u10d8\u10e1 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8"],"This block is deprecated. Please use the Columns block instead.":["\u10d4\u10e1 \u10d1\u10da\u10dd\u10d9\u10d8 \u10db\u10dd\u10eb\u10d5\u10d4\u10da\u10d3\u10d0. \u10db\u10d8\u10e1 \u10dc\u10d0\u10ea\u10d5\u10da\u10d0\u10d3 \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d7 \u10d1\u10da\u10dd\u10d9\u10d8 \u201e\u10e1\u10d5\u10d4\u10e2\u10d4\u10d1\u10d8\u201c."],"Text Columns (deprecated)":["\u10e2\u10d4\u10e5\u10e1\u10e2\u10e3\u10e0\u10d8 \u10e1\u10d5\u10d4\u10e2\u10d4\u10d1\u10d8 (\u10db\u10dd\u10eb\u10d5\u10d4\u10da\u10d4\u10d1\u10e3\u10da\u10d8)"],"Row Count":["\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d4\u10d1\u10d8\u10e1 \u10e0\u10d0\u10dd\u10d3\u10d4\u10dc\u10dd\u10d1\u10d0"],"Column Count":["\u10e1\u10d5\u10d4\u10e2\u10d4\u10d1\u10d8\u10e1 \u10e0\u10d0\u10dd\u10d3\u10d4\u10dc\u10dd\u10d1\u10d0"],"This block is deprecated. Please use the Paragraph block instead.":["\u10d4\u10e1 \u10d1\u10da\u10dd\u10d9\u10d8 \u10db\u10dd\u10eb\u10d5\u10d4\u10da\u10d3\u10d0. \u10db\u10d8\u10e1 \u10dc\u10d0\u10ea\u10d5\u10da\u10d0\u10d3 \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d7 \u10d1\u10da\u10dd\u10d9\u10d8 \u201e\u10d0\u10d1\u10d6\u10d0\u10ea\u10d8\u201c."],"Subheading (deprecated)":["\u10e5\u10d5\u10d4\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 (\u10db\u10dd\u10eb\u10d5\u10d4\u10da\u10d4\u10d1\u10e3\u10da\u10d8)"],blockquote:["\u10ea\u10d8\u10e2\u10d0\u10e2\u10d0"],"Change the block type after adding a new paragraph.":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10e2\u10d8\u10de\u10d8\u10e1 \u10e8\u10d4\u10ea\u10d5\u10da\u10d0 \u10d0\u10ee\u10d0\u10da\u10d8 \u10d0\u10d1\u10d6\u10d0\u10ea\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10db\u10d3\u10d4\u10d2."],"Spotlight Mode":["\u10d2\u10d0\u10db\u10dd\u10e0\u10e9\u10d4\u10d5\u10d8\u10e1 \u10e0\u10d4\u10df\u10d8\u10db\u10d8"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u10ed\u10d3\u10d4\u10d4\u10d1\u10d8 \u10db\u10dd\u10db\u10ee\u10db\u10d0\u10e0\u10d4\u10d1\u10d4\u10da\u10e1\u10d0 \u10d3\u10d0 \u10e1\u10d0\u10eb\u10d8\u10d4\u10d1\u10dd \u10e1\u10d8\u10e1\u10e2\u10d4\u10db\u10d0\u10e1 \u10d4\u10ee\u10db\u10d0\u10e0\u10d4\u10d1\u10d0 \u10d2\u10d0\u10d3\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10d3\u10dc\u10d4\u10dc \u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10e1\u10d0\u10d8\u10e2\u10d6\u10d4 \u10d3\u10d0 \u10db\u10dd\u10d8\u10eb\u10d8\u10dd\u10dc \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8. \u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10d4\u10d7 \u10e0\u10d0\u10db\u10d3\u10d4\u10dc\u10d8\u10db\u10d4 \u10e1\u10d0\u10d9\u10d5\u10d0\u10dc\u10eb\u10dd \u10e1\u10d8\u10e2\u10e7\u10d5\u10d0 \u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10e1."],"Add tags":["\u10ed\u10d3\u10d4\u10d4\u10d1\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Apply the \"%1$s\" format.":["\"%1$s\" \u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8\u10e1 \u10db\u10d8\u10e1\u10d0\u10d3\u10d0\u10d2\u10d4\u10d1\u10d0."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10d7\u10d4\u10db\u10d0\u10e8\u10d8 \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8, \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e1\u10ee\u10d5\u10d0\u10d3\u10d0\u10e1\u10ee\u10d5\u10d0 \u10e2\u10d8\u10de\u10d8\u10e1 \u10e1\u10d0\u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10da\u10d0\u10d3. \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d7 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8, \u10d0\u10db \u10d2\u10d0\u10dc\u10e1\u10d0\u10d9\u10e3\u10d7\u10e0\u10d4\u10d1\u10e3\u10da\u10d8 \u10e1\u10e2\u10d8\u10da\u10d8\u10e1 \u10e1\u10d0\u10dc\u10d0\u10ee\u10d0\u10d5\u10d0\u10d3."],"Use a post format":["\u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0"],"Insert After":["\u10e9\u10d0\u10e1\u10db\u10d0 \u10e5\u10d5\u10d4\u10db\u10dd\u10d7"],"Insert Before":["\u10e9\u10d0\u10e1\u10db\u10d0 \u10d6\u10d4\u10db\u10dd\u10d7"],"Move %1$d block from position %2$d down by one place":["%1$d \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d2\u10d0\u10d3\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10d4\u10d1\u10d0 %2$d \u10de\u10dd\u10d6\u10d8\u10ea\u10d8\u10d8\u10d3\u10d0\u10dc \u10e5\u10d5\u10d4\u10d5\u10d8\u10d7 \u10d4\u10e0\u10d7\u10d8 \u10de\u10dd\u10d6\u10d8\u10ea\u10d8\u10d8\u10d7"],"Move %1$d block from position %2$d up by one place":["%1$d \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d2\u10d0\u10d3\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10d4\u10d1\u10d0 %2$d \u10de\u10dd\u10d6\u10d8\u10ea\u10d8\u10d8\u10d3\u10d0\u10dc \u10d6\u10d4\u10d5\u10d8\u10d7 \u10d4\u10e0\u10d7\u10d8 \u10de\u10dd\u10d6\u10d8\u10ea\u10d8\u10d8\u10d7"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["\u10e4\u10d8\u10da\u10db\u10d8"],"Insert a new block before the selected block(s).":["\u10d0\u10ee\u10d0\u10da\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0 \u10db\u10dd\u10dc\u10d8\u10e8\u10dc\u10e3\u10da \u10d1\u10da\u10dd\u10d9(\u10d4\u10d1)\u10d0\u10db\u10d3\u10d4."],"Remove the selected block(s).":["\u10db\u10dd\u10dc\u10d8\u10e8\u10dc\u10e3\u10da\u10d8 \u10d1\u10da\u10dd\u10d9(\u10d4\u10d1)\u10d8\u10e1 \u10d0\u10db\u10dd\u10e6\u10d4\u10d1\u10d0."],"Duplicate the selected block(s).":["\u10db\u10dd\u10dc\u10d8\u10e8\u10dc\u10e3\u10da\u10d8 \u10d1\u10da\u10dd\u10d9(\u10d4\u10d1)\u10d8\u10e1 \u10d3\u10e3\u10d1\u10da\u10d8\u10e0\u10d4\u10d1\u10d0."],"Block shortcuts":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10db\u10d0\u10da\u10e1\u10d0\u10ee\u10db\u10dd\u10d1\u10d8 \u10d9\u10da\u10d0\u10d5\u10d8\u10e8\u10d4\u10d1\u10d8"],"Clear selection.":["\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8\u10e1 \u10d2\u10d0\u10e1\u10e3\u10e4\u10d7\u10d0\u10d5\u10d4\u10d1\u10d0."],"Select all text when typing. Press again to select all blocks.":["\u10e7\u10d5\u10d4\u10da\u10d0\u10e4\u10e0\u10d8\u10e1 \u10db\u10dd\u10dc\u10d8\u10e8\u10d5\u10dc\u10d0. \u10d3\u10d0\u10d0\u10ed\u10d8\u10e0\u10d4\u10d7 \u10d9\u10d8\u10d3\u10d4\u10d5 \u10d4\u10e0\u10d7\u10ee\u10d4\u10da, \u10e7\u10d5\u10d4\u10da\u10d0 \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10db\u10dd\u10dc\u10d8\u10e8\u10d5\u10dc\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1."],"Selection shortcuts":["\u10d0\u10e0\u10e9\u10d4\u10d5\u10d8\u10e1 \u10db\u10d0\u10da\u10e1\u10d0\u10ee\u10db\u10dd\u10d1\u10d8 \u10d9\u10da\u10d0\u10d5\u10e8\u10d4\u10d1\u10d8"],"Switch between Visual Editor and Code Editor.":["\u10d5\u10d8\u10d6\u10e3\u10d0\u10da\u10e3\u10e0 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10e1\u10d0 \u10d3\u10d0 \u10d9\u10dd\u10d3\u10d8\u10e1 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10e1 \u10e8\u10dd\u10e0\u10d8\u10e1 \u10d2\u10d0\u10d3\u10d0\u10e0\u10d7\u10d5\u10d0."],"Navigate to the previous part of the editor (alternative).":["\u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8\u10e1 \u10ec\u10d8\u10dc\u10d0 \u10e1\u10d4\u10e5\u10ea\u10d8\u10d0\u10e8\u10d8 (\u10d0\u10da\u10e2\u10d4\u10e0\u10dc\u10d0\u10e2\u10d8\u10d5\u10d0)."],"Navigate to the next part of the editor (alternative).":["\u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8\u10e1 \u10e8\u10d4\u10db\u10d3\u10d4\u10d2 \u10e1\u10d4\u10e5\u10ea\u10d8\u10d0\u10e8\u10d8 (\u10d0\u10da\u10e2\u10d4\u10e0\u10dc\u10d0\u10e2\u10d8\u10d5\u10d0)."],"Navigate to the previous part of the editor.":["\u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8\u10e1 \u10ec\u10d8\u10dc\u10d0 \u10e1\u10d4\u10e5\u10ea\u10d8\u10d0\u10e8\u10d8."],"Navigate to the next part of the editor.":["\u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8\u10e1 \u10e8\u10d4\u10db\u10d3\u10d4\u10d2 \u10e1\u10d4\u10e5\u10ea\u10d8\u10d0\u10e8\u10d8."],"Show or hide the settings sidebar.":["\u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d8\u10d7\u10d0 \u10d6\u10dd\u10da\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0, \u10d0\u10dc \u10d3\u10d0\u10db\u10d0\u10da\u10d5\u10d0."],"Redo your last undo.":["\u10d1\u10dd\u10da\u10dd \u10d2\u10d0\u10e3\u10e5\u10db\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10db\u10d4\u10dd\u10e0\u10d4\u10d1\u10d0."],"Undo your last changes.":["\u10d1\u10dd\u10da\u10dd \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10e3\u10e5\u10db\u10d4\u10d1\u10d0."],"Save your changes.":["\u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0."],"Global shortcuts":["\u10d2\u10da\u10dd\u10d1\u10d0\u10da\u10e3\u10e0\u10d8 \u10db\u10d0\u10da\u10e1\u10d0\u10ee\u10db\u10dd\u10d1\u10d4\u10d1\u10d8"],"Remove a link.":["\u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10d0\u10db\u10dd\u10e6\u10d4\u10d1\u10d0."],"Convert the selected text into a link.":["\u10db\u10dd\u10dc\u10d8\u10e8\u10dc\u10e3\u10da\u10d8 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10d1\u10db\u10e3\u10da\u10d0\u10d3 \u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0."],"Underline the selected text.":["\u10db\u10dd\u10dc\u10d8\u10e8\u10dc\u10e3\u10da\u10d8 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10ee\u10d0\u10d6\u10d2\u10d0\u10e1\u10db\u10d0."],"Make the selected text italic.":["\u10db\u10dd\u10dc\u10d8\u10e8\u10dc\u10e3\u10da\u10d8 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10d3\u10d0\u10ee\u10e0\u10d0."],"Make the selected text bold.":["\u10db\u10dd\u10dc\u10d8\u10e8\u10dc\u10e3\u10da\u10d8 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10d2\u10d0\u10db\u10e3\u10e5\u10d4\u10d1\u10d0."],"Text formatting":["\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10d3\u10d0\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Insert a new block after the selected block(s).":["\u10d0\u10ee\u10d0\u10da\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0 \u10db\u10dd\u10dc\u10d8\u10e8\u10dc\u10e3\u10da\u10d8 \u10d1\u10da\u10dd\u10d9(\u10d4\u10d1)\u10d8\u10e1 \u10e8\u10d4\u10db\u10d3\u10d4\u10d2."],"Keyboard Shortcuts":["\u10d9\u10da\u10d0\u10d5\u10d8\u10d0\u10e2\u10e3\u10e0\u10d8\u10e1 \u10db\u10d0\u10da\u10e1\u10d0\u10ee\u10db\u10dd\u10d1\u10d4\u10d1\u10d8"],"Thanks for testing Gutenberg!":["\u10d2\u10db\u10d0\u10d3\u10da\u10dd\u10d1\u10d7, \u10e0\u10dd\u10db \u10d2\u10d0\u10db\u10dd\u10e1\u10ea\u10d0\u10d3\u10d4\u10d7 Gutenberg!"],"Help build Gutenberg":["\u10d3\u10d0\u10d2\u10d5\u10d4\u10ee\u10db\u10d0\u10e0\u10d4\u10d7 \u10e8\u10d4\u10d5\u10e5\u10db\u10dc\u10d0\u10d7 Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["\u10d7\u10e3 \u10d2\u10e1\u10e3\u10e0\u10d7 \u10d2\u10d0\u10d8\u10d2\u10dd\u10d7 \u10db\u10d4\u10e2\u10d8, \u10d7\u10e3 \u10e0\u10dd\u10d2\u10dd\u10e0 \u10e8\u10d4\u10e5\u10db\u10dc\u10d0\u10d7 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7\u10d8 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8, \u10d0\u10dc \u10d7\u10e3 \u10d2\u10e1\u10e3\u10e0\u10d7 \u10d3\u10d0\u10d4\u10ee\u10db\u10d0\u10e0\u10dd\u10d7 \u10de\u10e0\u10dd\u10d4\u10e5\u10e2\u10e1, \u10d2\u10d0\u10d3\u10d0\u10d3\u10d8\u10d7 GitHub \u10e0\u10d4\u10de\u10dd\u10e8\u10d8."],"The WordPress community":["WordPress-\u10d8\u10e1 \u10d2\u10e3\u10dc\u10d3\u10d8"],"Code is Poetry":["\u10d9\u10dd\u10d3\u10d8 \u10de\u10dd\u10d4\u10d6\u10d8\u10d0\u10d0"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["\u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10e8\u10d4\u10e5\u10db\u10dc\u10d0\u10d7 \u10dc\u10d4\u10d1\u10d8\u10e1\u10db\u10d8\u10d4\u10e0\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8, \u10e1\u10e2\u10d0\u10e2\u10d8\u10d9\u10e3\u10e0\u10d8, \u10d0\u10dc \u10d3\u10d8\u10dc\u10d0\u10db\u10d8\u10e3\u10e0\u10d8, \u10d3\u10d4\u10d9\u10dd\u10e0\u10d0\u10e2\u10d8\u10e3\u10da\u10d8, \u10d0\u10dc \u10e3\u10d1\u10e0\u10d0\u10da\u10dd. \u10d0\u10d8 \u10ea\u10d8\u10e2\u10d8\u10e0\u10d4\u10d1\u10d8\u10e1 \u10d1\u10da\u10dd\u10d9\u10d8:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["\u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10dc\u10d4\u10d1\u10d8\u10e1\u10db\u10d8\u10d4\u10e0\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d2\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0. \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10e3\u10da\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8 \u10d0\u10e1\u10d4\u10d5\u10d4 \u10e1\u10ec\u10dd\u10e0\u10d3\u10d4\u10d1\u10d0 \u10d3\u10d0 \u10dc\u10d0\u10d2\u10e3\u10da\u10d8\u10e1\u10ee\u10db\u10d4\u10d5\u10d0\u10d3 \u10d0\u10d3\u10d0\u10de\u10e2\u10d8\u10e3\u10e0\u10d8\u10d0:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["\u10d6\u10d4\u10db\u10dd\u10d7 \u10db\u10dd\u10ea\u10d4\u10db\u10e3\u10da\u10d8\u10d0 \u10d2\u10d0\u10da\u10d4\u10e0\u10d4\u10d0 \u10dd\u10e0\u10d8 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10d7. \u10d4\u10e1 \u10ee\u10d4\u10e0\u10ee\u10d8 \u10e3\u10e4\u10e0\u10dd \u10db\u10d0\u10e0\u10e2\u10d8\u10d5\u10d8\u10d0 \u10d5\u10d8\u10d6\u10e3\u10d0\u10da\u10e3\u10e0\u10d0\u10d3 \u10e1\u10d0\u10e1\u10d8\u10d0\u10db\u10dd\u10d5\u10dc\u10dd \u10db\u10d0\u10d9\u10d4\u10e2\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10e1\u10d0\u10e5\u10db\u10dc\u10d4\u10da\u10d0\u10d3. \u10d7\u10e5\u10d5\u10d4\u10dc \u10d0\u10e1\u10d4\u10d5\u10d4 \u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10d0\u10d3\u10d5\u10d8\u10da\u10d0\u10d3 \u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0\u10d7 \u10d2\u10d0\u10da\u10d4\u10e0\u10d4\u10d0 \u10ea\u10d0\u10da\u10d9\u10d4\u10e3\u10da \u10e1\u10e3\u10e0\u10d0\u10d7\u10d0\u10d3, \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d2\u10d0\u10d3\u10d0\u10db\u10e0\u10d7\u10d5\u10d4\u10da\u10d8\u10e1 \u10e1\u10d0\u10e8\u10e3\u10d0\u10da\u10d4\u10d1\u10d8\u10d7."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["\u10e0\u10d0\u10e1\u10d0\u10d9\u10d5\u10d8\u10e0\u10d5\u10d4\u10da\u10d8\u10d0, \u10e1\u10e0\u10e3\u10da\u10db\u10d0\u10e8\u10e2\u10d0\u10d1\u10d8\u10d0\u10dc\u10d8 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8 \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10dd\u10d0 \u10e1\u10d0\u10d9\u10db\u10d0\u10dd\u10d3 \u10d3\u10d8\u10d3\u10d8 \u10d8\u10e7\u10dd\u10e1. \u10db\u10d0\u10d2\u10e0\u10d0\u10db \u10ee\u10d0\u10dc\u10d3\u10d0\u10ee\u10d0\u10dc \u10d4\u10e1 \u10d0\u10db\u10d0\u10d7 \u10e6\u10d8\u10e0\u10e1."],"Accessibility is important — don’t forget image alt attribute":["\u10ee\u10d4\u10da\u10db\u10d8\u10e1\u10d0\u10ec\u10d5\u10d3\u10dd\u10db\u10dd\u10d1\u10d0 \u10db\u10dc\u10d8\u10e8\u10d5\u10dc\u10d4\u10da\u10dd\u10d5\u10d0\u10dc\u10d8\u10d0 — \u10d0\u10e0 \u10d3\u10d0\u10d2\u10d0\u10d5\u10d8\u10ec\u10e7\u10d3\u10d4\u10d7 \u10d0\u10e2\u10e0\u10d8\u10d1\u10e3\u10e2\u10d8 alt"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["\u10d7\u10e3 \u10d2\u10d0\u10d0\u10d4\u10e0\u10d7\u10d8\u10d0\u10dc\u10d4\u10d1\u10d7 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1\u10d8 \u10db\u10d8\u10ee\u10d4\u10d3\u10d5\u10d8\u10d7 \u10d3\u10d0 \u10e1\u10e0\u10e3\u10da\u10d8 \u10e1\u10d8\u10d2\u10d0\u10dc\u10d8\u10e1 \u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d4\u10d1\u10e1 \u10d2\u10d0\u10da\u10d4\u10e0\u10d4\u10d4\u10d1\u10d7\u10d0\u10dc, \u10d7\u10e5\u10d5\u10d4\u10dc \u10e8\u10d4\u10eb\u10da\u10d4\u10d1\u10d7 \u10e4\u10e0\u10d8\u10d0\u10d3 \u10db\u10d3\u10d8\u10d3\u10d0\u10e0\u10d8 \u10db\u10d4\u10d3\u10d8\u10d0-\u10db\u10d0\u10d9\u10d4\u10e2\u10d8\u10e1 \u10e8\u10d4\u10e5\u10db\u10dc\u10d0\u10e1:"],"Media Rich":["\u10db\u10d4\u10d3\u10d8\u10d0"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["\u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10e8\u10d4\u10ea\u10d5\u10d0\u10da\u10dd\u10d7 \u10e1\u10d5\u10d4\u10e2\u10d4\u10d1\u10d8\u10e1 \u10e0\u10d0\u10dd\u10d3\u10d4\u10dc\u10dd\u10d1\u10d0 \u10d2\u10d0\u10da\u10d4\u10e0\u10d4\u10d4\u10d1\u10e8\u10d8, \u10d2\u10d5\u10d4\u10e0\u10d3\u10d8\u10d7\u10d0 \u10d6\u10dd\u10da\u10e8\u10d8 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10e1 \u10d8\u10dc\u10e1\u10de\u10d4\u10e5\u10e2\u10dd\u10e0\u10e8\u10d8 \u10ea\u10dd\u10ea\u10d8\u10d0\u10e1 \u10d2\u10d0\u10d3\u10d0\u10ea\u10dd\u10ea\u10d4\u10d1\u10d8\u10d7."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["\u10d1\u10da\u10dd\u10d9\u10d8 \u10e8\u10d4\u10d8\u10eb\u10da\u10d4\u10d1\u10d0 \u10d8\u10e7\u10dd\u10e1 \u10dc\u10d4\u10d1\u10d8\u10e1\u10db\u10d8\u10d4\u10e0\u10d8. \u10db\u10d0\u10d2\u10d0\u10da\u10d8\u10d7\u10d0\u10d3, \u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10dd\u10d7 \u10ea\u10d8\u10e2\u10d0\u10e2\u10d0, \u10e0\u10dd\u10d2\u10dd\u10e0\u10ea \u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10d9\u10dd\u10db\u10de\u10dd\u10d6\u10d8\u10ea\u10d8\u10d8\u10e1 \u10dc\u10d0\u10ec\u10d8\u10da\u10d8, \u10d0\u10dc \u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10d0\u10e9\u10d5\u10d4\u10dc\u10dd\u10d7 \u10d2\u10d8\u10d2\u10d0\u10dc\u10e2\u10e3\u10e0\u10d8 \u10e1\u10e2\u10d8\u10da\u10d8\u10d6\u10d4\u10d1\u10e3\u10da\u10d8 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8. \u10d4\u10e1 \u10e7\u10d5\u10d4\u10da\u10d0\u10e4\u10d4\u10e0\u10d8 \u10ee\u10d4\u10da\u10db\u10d8\u10e1\u10d0\u10ec\u10d5\u10d3\u10dd\u10db\u10d8\u10d0 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10e8\u10d8."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["\u10d8\u10dc\u10e4\u10dd\u10e0\u10db\u10d0\u10ea\u10d8\u10d0 \u10ea\u10d8\u10e2\u10d0\u10e2\u10d8\u10e1 \u10ec\u10e7\u10d0\u10e0\u10dd\u10e1 \u10e8\u10d4\u10e1\u10d0\u10ee\u10d4\u10d1 \u10ec\u10d0\u10e0\u10db\u10dd\u10d0\u10d3\u10d2\u10d4\u10dc\u10e1 \u10ea\u10d0\u10da\u10d9\u10d4\u10e3\u10da \u10e2\u10d4\u10e5\u10e1\u10e2\u10e3\u10e0 \u10d5\u10d4\u10da\u10e1, \u10e0\u10dd\u10db\u10d4\u10da\u10d8\u10ea \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10ec\u10d0\u10e0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10db\u10e1\u10d2\u10d0\u10d5\u10e1\u10d8\u10d0. \u10d0\u10db\u10d8\u10e2\u10dd\u10db \u10ea\u10d8\u10e2\u10d0\u10e2\u10d8\u10e1 \u10e1\u10e2\u10e0\u10e3\u10e5\u10e2\u10e3\u10e0\u10d0 \u10e3\u10ea\u10d5\u10da\u10d4\u10da\u10d8\u10d0, \u10db\u10d0\u10e8\u10d8\u10dc\u10d0\u10ea \u10d9\u10d8, \u10e0\u10dd\u10d3\u10d4\u10e1\u10d0\u10ea \u10d8\u10e0\u10e9\u10d4\u10d5\u10d7, \u10ea\u10d5\u10da\u10d8\u10d7, \u10d0\u10dc \u10e8\u10da\u10d8\u10d7 \u10ec\u10e7\u10d0\u10e0\u10dd\u10e1. \u10ec\u10e7\u10d0\u10e0\u10dd\u10e1 \u10ee\u10d4\u10da\u10d0\u10ee\u10da\u10d0 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0 \u10dc\u10d4\u10d1\u10d8\u10e1\u10db\u10d8\u10d4\u10e0 \u10d3\u10e0\u10dd\u10e1 \u10e8\u10d4\u10d8\u10eb\u10da\u10d4\u10d1\u10d0."],"Matt Mullenweg, 2017":["\u10db\u10d4\u10d7 \u10db\u10e3\u10da\u10d4\u10dc\u10d5\u10d4\u10d2\u10d8, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["\u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8 \u10ea\u10d3\u10d8\u10da\u10dd\u10d1\u10e1 \u10d2\u10d0\u10d2\u10d0\u10ea\u10dc\u10dd\u10d7 \u10e1\u10e2\u10d0\u10e2\u10d8\u10d4\u10d1\u10d8\u10e1\u10d0 \u10d3\u10d0 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10e5\u10db\u10dc\u10d8\u10e1 \u10d0\u10ee\u10d0\u10da\u10d8 \u10d2\u10d0\u10db\u10dd\u10ea\u10d3\u10d8\u10da\u10d4\u10d1\u10d0, \u10e0\u10d0\u10ea \u10e1\u10d0\u10e8\u10e3\u10d0\u10da\u10d4\u10d1\u10d0\u10e1 \u10db\u10dd\u10d2\u10ea\u10d4\u10db\u10d7 \u10e8\u10d4\u10e5\u10db\u10dc\u10d0\u10d7 \u10db\u10d3\u10d8\u10d3\u10d0\u10e0\u10d8 \u10e1\u10e2\u10d0\u10e2\u10d8\u10d4\u10d1\u10d8 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10e1 \u10e1\u10d0\u10e8\u10e3\u10d0\u10da\u10d4\u10d1\u10d8\u10d7 \u2014 \u10d0\u10ee\u10da\u10d0\u10dc\u10d3\u10d4\u10da\u10d8 \u10db\u10d0\u10da\u10e1\u10d0\u10ee\u10db\u10dd\u10d1\u10d4\u10d1\u10d8\u10e1, html, \u10d0\u10dc \u10d9\u10dd\u10d3\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d8\u10e1 \u10e1\u10ee\u10d5\u10d0\u10d3\u10d0\u10e1\u10ee\u10d5\u10d0\u10dc\u10d0\u10d8\u10e0\u10d8 \u10db\u10d0\u10e5\u10d8\u10dc\u10d0\u10ea\u10d8\u10d4\u10d1\u10d8\u10e1 \u10db\u10d0\u10d2\u10d8\u10d5\u10e0\u10d0\u10d3."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["\u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10e1 \u10e3\u10d3\u10d8\u10d3\u10d4\u10e1\u10d8 \u10e3\u10de\u10d8\u10e0\u10d0\u10e2\u10d4\u10e1\u10dd\u10d1\u10d0 \u10d8\u10db\u10d0\u10e8\u10d8 \u10db\u10d3\u10d2\u10dd\u10db\u10d0\u10e0\u10d4\u10dd\u10d1\u10e1, \u10e0\u10dd\u10db \u10d7\u10e5\u10d5\u10d4\u10dc \u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10d4\u10e0\u10d7\u10d3\u10dd\u10e3\u10da\u10d0\u10d3 \u10e9\u10d0\u10d0\u10e1\u10ec\u10dd\u10e0\u10dd\u10d7 \u10d8\u10e1\u10d8\u10dc\u10d8 \u10d3\u10d0 \u10d0\u10db\u10d0\u10d5\u10d3\u10e0\u10dd\u10e3\u10da\u10d0\u10d3 \u10db\u10d0\u10e0\u10d7\u10dd\u10d7 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8. \u10d8\u10db\u10d8\u10e1 \u10dc\u10d0\u10ea\u10d5\u10da\u10d0\u10d3, \u10e0\u10dd\u10db \u10e8\u10d4\u10ea\u10d5\u10d0\u10da\u10dd\u10d7 \u10ea\u10d8\u10e2\u10d0\u10e2\u10d4\u10d1\u10d8\u10e1 \u10ec\u10e7\u10d0\u10e0\u10dd\u10d4\u10d1\u10d8\u10e1, \u10d0\u10dc \u10e6\u10d8\u10da\u10d0\u10d9\u10d8\u10e1 \u10ec\u10d0\u10e0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10d5\u10d4\u10da\u10d4\u10d1\u10d8, \u10d7\u10e5\u10d5\u10d4\u10dc \u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10de\u10d8\u10e0\u10d3\u10d0\u10de\u10d8\u10e0 \u10e8\u10d4\u10ea\u10d5\u10d0\u10da\u10dd\u10d7 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8. \u10e1\u10ea\u10d0\u10d3\u10d4\u10d7 \u10e9\u10d0\u10d0\u10e1\u10ec\u10dd\u10e0\u10dd\u10d7 \u10e8\u10d4\u10db\u10d3\u10d4\u10d2\u10d8 \u10ea\u10d8\u10e2\u10d0\u10e2\u10d0:"],"Visual Editing":["\u10d5\u10d8\u10d6\u10e3\u10d0\u10da\u10e3\u10e0\u10d8 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],"And Lists like this one of course :)":["\u10d3\u10d0 \u10e1\u10d8\u10d4\u10d1\u10d8, \u10e0\u10dd\u10d2\u10dd\u10e0\u10ea \u10d4\u10e1\u10d4\u10dc\u10d8, \u10e0\u10d0\u10e1\u10d0\u10d9\u10d5\u10d8\u10e0\u10d5\u10d4\u10da\u10d8\u10d0 :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["\u10e8\u10d0\u10d1\u10da\u10dd\u10dc\u10d8\u10e1, \u10e6\u10d8\u10da\u10d0\u10d9\u10d4\u10d1\u10d8\u10e1, \u10e1\u10e3\u10e0\u10d0\u10d7\u10d4\u10d1\u10d8\u10e1, \u10d2\u10d0\u10db\u10e7\u10dd\u10e4\u10d4\u10d1\u10d8\u10e1 \u10d3\u10d0 \u10d0.\u10e8. \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["YouTube-\u10d8\u10e1 \u10d5\u10d8\u10d3\u10d4\u10dd\u10d4\u10d1\u10d8, \u10e2\u10d5\u10d8\u10e2\u10d4\u10d1\u10d8, \u10d0\u10dc WordPress \u10e1\u10e2\u10d0\u10e2\u10d8\u10d4\u10d1\u10d8\u10e1 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d4\u10d1\u10d8."],Galleries:["\u10d2\u10d0\u10da\u10d4\u10e0\u10d4\u10d0"],"Images & Videos":["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d4\u10d1\u10d8 \u10d3\u10d0 \u10d5\u10d8\u10d3\u10d4\u10dd"],"Text & Headings":["\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8 \u10d3\u10d0 \u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d4\u10d1\u10d8"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["\u10e1\u10ea\u10d0\u10d3\u10d4\u10d7, WordPress-\u10e1 \u10e3\u10d9\u10d5\u10d4 \u10e8\u10d4\u10e3\u10eb\u10da\u10d8\u10d0 \u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10dd\u10d7 \u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d4\u10d1\u10e8\u10d8 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8, \u10e0\u10dd\u10db\u10da\u10d4\u10d1\u10d8\u10ea \u10d7\u10e5\u10d5\u10d4\u10dc \u10d0\u10e0 \u10d8\u10ea\u10dd\u10d3\u10d8\u10d7. \u10d0\u10d8 \u10db\u10dd\u10d9\u10da\u10d4 \u10e1\u10d8\u10d0 \u10d8\u10db\u10d8\u10e1\u10d0, \u10d7\u10e3 \u10e0\u10d8\u10e1\u10d8 \u10dc\u10d0\u10ee\u10d5\u10d0 \u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10d0\u10db\u10df\u10d0\u10db\u10d0\u10d3:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["\u10ec\u10d0\u10e0\u10db\u10dd\u10d8\u10d3\u10d2\u10d8\u10dc\u10d4\u10d7, \u10e0\u10dd\u10db \u10e7\u10d5\u10d4\u10da\u10d0\u10e4\u10d4\u10e0\u10d8, \u10e0\u10d8\u10e1\u10d8 \u10d2\u10d0\u10d9\u10d4\u10d7\u10d4\u10d1\u10d0\u10ea \u10e8\u10d4\u10e3\u10eb\u10da\u10d8\u10d0 WordPress-\u10e1, \u10ee\u10d4\u10da\u10db\u10d8\u10e1\u10d0\u10ec\u10d5\u10d3\u10dd\u10db\u10d8\u10d0 \u10e1\u10ec\u10e0\u10d0\u10e4\u10d0\u10d3 \u10d3\u10d0 \u10d4\u10e0\u10d7\u10d8\u10d0\u10dc\u10d8 \u10d0\u10d3\u10d2\u10d8\u10da\u10d8\u10d3\u10d0\u10dc. \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1 \u10d0\u10e3\u10ea\u10d8\u10da\u10d4\u10d1\u10d4\u10da\u10d8 HTML-\u10e2\u10d4\u10d2\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10ec\u10d4\u10e0\u10d0, \u10d0\u10dc \u10db\u10d0\u10da\u10e1\u10d0\u10ee\u10db\u10dd\u10d1\u10d4\u10d1\u10d8\u10e1 \u10e0\u10d7\u10e3\u10da\u10d8 \u10e1\u10d8\u10dc\u10e2\u10d0\u10e5\u10e1\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10ee\u10e1\u10dd\u10d5\u10e0\u10d4\u10d1\u10d0, \u10e0\u10dd\u10db\u10da\u10d4\u10d1\u10e1\u10d0\u10ea \u10d3\u10d0\u10d8\u10dc\u10d0\u10ee\u10d0\u10d5\u10d7 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8\u10e1 \u10e1\u10d0\u10e0\u10d9\u10db\u10d4\u10da\u10e8\u10d8. \u10e6\u10d8\u10da\u10d0\u10d9\u10d8 (+), \u10e0\u10dd\u10db\u10d4\u10da\u10e1\u10d0\u10ea \u10d3\u10d0\u10d8\u10dc\u10d0\u10ee\u10d0\u10d5\u10d7 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10e8\u10d8, \u10e1\u10d0\u10e8\u10e3\u10d0\u10da\u10d4\u10d1\u10d0\u10e1 \u10db\u10dd\u10d2\u10ea\u10d4\u10db\u10d7 \u10dc\u10d0\u10ee\u10dd\u10d7 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10ee\u10d4\u10da\u10db\u10d8\u10e1\u10d0\u10ec\u10d5\u10d3\u10dd\u10db\u10d8 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8 \u10d3\u10d0 \u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10dd\u10d7 \u10d8\u10e1\u10d8\u10dc\u10d8 \u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10e1\u10e2\u10d0\u10e2\u10d8\u10d0\u10e8\u10d8. \u10de\u10da\u10d0\u10d2\u10d8\u10dc\u10d4\u10d1\u10e1 \u10d3\u10d0 \u10d7\u10d4\u10db\u10d4\u10d1\u10e1 \u10e8\u10d4\u10e3\u10eb\u10da\u10d8\u10d0\u10d7 \u10d3\u10d0\u10d0\u10e0\u10d4\u10d2\u10d8\u10e1\u10e2\u10e0\u10d8\u10e0\u10dd\u10dc \u10e1\u10d0\u10d9\u10e3\u10d7\u10d0\u10e0\u10d8 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8."],"The Inserter Tool":["\u10e9\u10d0\u10e1\u10db\u10d8\u10e1 \u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["\u10e8\u10d4\u10d4\u10ea\u10d0\u10d3\u10d4\u10d7 \u10d0\u10d8\u10e0\u10e9\u10d8\u10dd\u10d7, \u10ec\u10d0\u10e8\u10d0\u10da\u10dd\u10d7, \u10d0\u10dc \u10e9\u10d0\u10d0\u10e1\u10ec\u10dd\u10e0\u10dd\u10d7 \u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8. \u10d0\u10ee\u10da\u10d0 \u10d0\u10e6\u10d0\u10e0 \u10db\u10dd\u10d2\u10d8\u10ec\u10d4\u10d5\u10d7 \u10e1\u10d8\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d4 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1, \u10d0\u10dc \u10e1\u10ee\u10d5\u10d0 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10d0\u10e0\u10e9\u10d4\u10d5\u10d8\u10e1\u10d0\u10e1, \u10e0\u10d0\u10d7\u10d0 \u10d0\u10e0 \u10d3\u10d0\u10e3\u10e8\u10d5\u10d0\u10d7 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["\u10d7\u10e3 \u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10d7\u10d4\u10db\u10d0 \u10db\u10ee\u10d0\u10e0\u10e1 \u10e3\u10ed\u10d4\u10e0\u10e1 \u201e\u10e1\u10e0\u10e3\u10da \u10d4\u10d9\u10e0\u10d0\u10dc\u10d6\u10d4\u201c \u10e0\u10d4\u10df\u10d8\u10db\u10e1, \u10d7\u10e5\u10d5\u10d4\u10dc \u10d3\u10d0\u10d8\u10dc\u10d0\u10ee\u10d0\u10d5\u10d7 \u10e6\u10d8\u10da\u10d0\u10d9\u10e1 \u201e\u10e1\u10e0\u10e3\u10da \u10d4\u10d9\u10e0\u10d0\u10dc\u10d6\u10d4\u201c \u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d7\u10d0 \u10d6\u10dd\u10da\u10d6\u10d4. \u10e1\u10ea\u10d0\u10d3\u10d4\u10d7."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["\u10eb\u10d8\u10e0\u10d8\u10d7\u10d0\u10d3\u10d8 \u10e7\u10e3\u10e0\u10d0\u10d3\u10e6\u10d4\u10d1\u10d0 \u10d0\u10ee\u10d0\u10da \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10e8\u10d8 \u10d3\u10d0\u10d7\u10db\u10dd\u10d1\u10d8\u10da\u10d8 \u10d0\u10e5\u10d5\u10e1 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d4\u10d1\u10d8\u10e1 \u10d3\u10d0 \u10db\u10e3\u10da\u10e2\u10d8\u10db\u10d4\u10d3\u10d8\u10d0\u10e1 \u10d3\u10d0\u10db\u10e3\u10e8\u10d0\u10d5\u10d4\u10d1\u10d0\u10e1, \u10db\u10d0\u10e5\u10e1\u10d8\u10db\u10d0\u10da\u10e3\u10e0\u10d8 \u10e1\u10d8\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d8\u10d7. \u10d8\u10db\u10d4\u10d3\u10e1 \u10d5\u10d8\u10e2\u10dd\u10d5\u10d4\u10d1\u10d7, \u10e0\u10dd\u10db \u10d2\u10d0\u10db\u10dd\u10dc\u10d0\u10ee\u10d0\u10d5\u10d7 \u10d3\u10e0\u10dd\u10e1 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d6\u10d4 \u10ec\u10d0\u10e0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10d2\u10d0\u10e1\u10d0\u10d9\u10d4\u10d7\u10d4\u10d1\u10da\u10d0\u10d3, \u10d0\u10dc \u10e1\u10e0\u10e3\u10da \u10d4\u10d9\u10e0\u10d0\u10dc\u10d6\u10d4 \u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0\u10d6\u10d4."],"A Picture is Worth a Thousand Words":["\u10d4\u10e0\u10d7\u10d8 \u10e1\u10e3\u10e0\u10d0\u10d7\u10d8 \u10d0\u10d7\u10d0\u10e1\u10d8 \u10e1\u10d8\u10e2\u10e7\u10d5\u10d8\u10e1 \u10dc\u10d0\u10ea\u10d5\u10da\u10d0\u10d3"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d4\u10d1\u10d8 \u10d0\u10e1\u10d4\u10d5\u10d4 \u10ea\u10d0\u10da\u10d9\u10d4 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10d0, \u10e0\u10d0\u10ea \u10d2\u10d4\u10ee\u10db\u10d0\u10e0\u10d4\u10d1\u10d0\u10d7 \u10e1\u10e2\u10d0\u10e2\u10d8\u10d8\u10e1 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10db\u10dd\u10ec\u10d4\u10e1\u10e0\u10d8\u10d2\u10d4\u10d1\u10d0\u10e8\u10d8."],"... like this one, which is right aligned.":["... \u10d8\u10e1\u10d8\u10d5\u10d4 \u10e0\u10dd\u10d2\u10dd\u10e0\u10ea \u10d4\u10e1, \u10e0\u10dd\u10db\u10d4\u10da\u10d8\u10ea \u10d2\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10e3\u10da\u10d8\u10d0 \u10db\u10d0\u10e0\u10ef\u10d5\u10d4\u10dc\u10d0 \u10d9\u10d8\u10d3\u10d4\u10d6\u10d4."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["\u10d8\u10e1, \u10e0\u10d0\u10e1\u10d0\u10ea \u10d0\u10ee\u10da\u10d0 \u10d9\u10d8\u10d7\u10ee\u10e3\u10da\u10dd\u10d1\u10d7, \u10ec\u10d0\u10e0\u10db\u10dd\u10d0\u10d3\u10d2\u10d4\u10dc\u10e1 \u10d0\u10d1\u10d6\u10d0\u10ea\u10e1. \u10d8\u10e1 \u10e7\u10d5\u10d4\u10da\u10d0\u10d6\u10d4 \u10db\u10d7\u10d0\u10d5\u10d0\u10e0\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8\u10d0. \u10d0\u10d1\u10d6\u10d0\u10ea\u10e1 \u10d0\u10e5\u10d5\u10e1 \u10db\u10d0\u10e0\u10d7\u10d5\u10d8\u10e1 \u10e1\u10d0\u10d9\u10e3\u10d7\u10d0\u10e0\u10d8 \u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d4\u10d1\u10d8, \u10e0\u10dd\u10db\u10d4\u10da\u10d7\u10d0 \u10d2\u10d0\u10d3\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10d4\u10d1\u10d0 \u10d7\u10d0\u10d5\u10d8\u10e1\u10e3\u10e4\u10da\u10d0\u10d3 \u10e8\u10d4\u10d8\u10eb\u10da\u10d4\u10d1\u10d0\u2026"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["\u10d0\u10ee\u10d0\u10da\u10d8 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8\u10e1 \u10db\u10d8\u10d6\u10d0\u10dc\u10d8\u10d0 \u2014 \u10d2\u10d0\u10ee\u10d0\u10d3\u10dd\u10e1 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0 WordPress-\u10e8\u10d8 \u10db\u10d0\u10e0\u10e2\u10d8\u10d5\u10d8 \u10d3\u10d0 \u10e1\u10d0\u10e1\u10d8\u10d0\u10db\u10dd\u10d5\u10dc\u10dd. \u10d4\u10e1 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8 \u10e8\u10d4\u10d3\u10d2\u10d4\u10d1\u10d0 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e4\u10e0\u10d0\u10d2\u10db\u10d4\u10dc\u10e2\u10d4\u10d1\u10d8\u10e1\u10d2\u10d0\u10dc, \u10e0\u10d0\u10ea \u10eb\u10d0\u10da\u10d8\u10d0\u10dc \u10f0\u10d2\u10d0\u10d5\u10e1 LEGO-\u10e1 \u10d0\u10d2\u10e3\u10e0\u10d4\u10d1\u10e1, \u10e0\u10dd\u10db\u10da\u10d4\u10d1\u10d8\u10ea \u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10e0\u10d0\u10d2\u10d8\u10dc\u10d3\u10d0\u10e0\u10d0\u10d3 \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10dd\u10d7. \u10d2\u10d0\u10d3\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10d4\u10d7 \u10db\u10d0\u10e3\u10e1\u10d8\u10e1 \u10db\u10d8\u10db\u10d7\u10d8\u10d7\u10d4\u10d1\u10d4\u10da\u10d8 \u10d3\u10d0 \u10d7\u10e5\u10d5\u10d4\u10dc \u10e8\u10d4\u10d0\u10db\u10e9\u10dc\u10d4\u10d5\u10d7, \u10e0\u10dd\u10db \u10e1\u10ee\u10d5\u10d0\u10d3\u10d0\u10e1\u10ee\u10d5\u10d0 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8 \u10d0\u10d8\u10dc\u10d7\u10d4\u10d1\u10d0 \u10d9\u10dd\u10dc\u10e2\u10e3\u10e0\u10d4\u10d1\u10d8\u10d7 \u10d3\u10d0 \u10d8\u10e1\u10e0\u10d4\u10d1\u10d8\u10d7. \u10d3\u10d0\u10d0\u10ed\u10d8\u10e0\u10d4\u10d7 \u10d8\u10e1\u10e0\u10d4\u10d1\u10d6\u10d4, \u10e0\u10d0\u10d7\u10d0 \u10e1\u10ec\u10e0\u10d0\u10e4\u10d0\u10d3 \u10d2\u10d0\u10d3\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10dd\u10d7 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8 \u10d3\u10d0 \u10dc\u10e3 \u10d8\u10e4\u10d8\u10e5\u10e0\u10d4\u10d1\u10d7 \u10d8\u10db\u10d0\u10d6\u10d4, \u10e0\u10dd\u10db \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10dd\u10d0 \u10d3\u10d0\u10d9\u10d0\u10e0\u10d2\u10dd\u10d7 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8 \u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d8\u10e1\u10d0 \u10d3\u10d0 \u10e9\u10d0\u10e1\u10db\u10d8\u10e1 \u10de\u10e0\u10dd\u10ea\u10d4\u10e1\u10e8\u10d8."],"Of Mountains & Printing Presses":["\u10db\u10d7\u10d8\u10e1\u10d0 \u10d3\u10d0 \u10d6\u10e6\u10d5\u10d8\u10e1 \u10ec\u10d8\u10d2\u10dc\u10d8"],"Welcome to the Gutenberg Editor":["\u10db\u10dd\u10d2\u10d4\u10e1\u10d0\u10da\u10db\u10d4\u10d1\u10d8\u10d7 Gutenberg-\u10d8\u10e1 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10e8\u10d8"],"block name\x04More":["\u10db\u10d4\u10e2\u10d8"],"button to expand options\x04More":["\u10db\u10d4\u10e2\u10d8"],"Are you sure you want to unschedule this post?":["\u10d3\u10d0\u10e0\u10ec\u10db\u10e3\u10dc\u10d4\u10d1\u10e3\u10da\u10d8 \u10ee\u10d0\u10e0\u10d7, \u10e0\u10dd\u10db \u10d2\u10e1\u10e3\u10e0\u10d7 \u10d0\u10db \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10dc\u10e0\u10d8\u10d2\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0?"],"Alt Text (Alternative Text)":["Alt (\u10d0\u10da\u10e2\u10d4\u10e0\u10dc\u10d0\u10e2\u10d8\u10e3\u10da\u10d8 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8)"],"Reusable Block":["\u10d9\u10d5\u10da\u10d0\u10d5\u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0\u10d3\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8"],"Unique identifier for the object.":["\u10dd\u10d1\u10d8\u10d4\u10e5\u10e2\u10d8\u10e1 \u10e3\u10dc\u10d8\u10d9\u10d0\u10da\u10e3\u10e0\u10d8 \u10d8\u10d3\u10d4\u10dc\u10e2\u10d8\u10e4\u10d8\u10d9\u10d0\u10e2\u10dd\u10e0\u10d8."],"Untitled Reusable Block":["\u10d1\u10da\u10dd\u10d9\u10d8 \u10d3\u10d0\u10e1\u10d0\u10ee\u10d4\u10da\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4"],Small:[],"(%s: %s)":["(%s: %s)"],Reusable:["\u10d9\u10d5\u10da\u10d0\u10d5\u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0\u10d3\u10d8"],"(current %s: %s)":["(\u10db\u10d8\u10db\u10d3\u10d8\u10dc\u10d0\u10e0\u10d4 %s: %s)"],"Remove from Reusable Blocks":["\u10d9\u10d5\u10da\u10d0\u10d5\u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0\u10d3\u10d8 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10e1 \u10d0\u10db\u10dd\u10e6\u10d4\u10d1\u10d0"],"Add to Reusable Blocks":["\u10d9\u10d5\u10da\u10d0\u10d5\u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0\u10d3 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10e1 \u10e1\u10d8\u10d0\u10e8\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Keep as HTML":["HTML \u10d9\u10dd\u10d3\u10d8\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0"],"Edit URL":["URL-\u10e1 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],"Color Settings":["\u10e4\u10d4\u10e0\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"The response is not a valid JSON response.":["\u10de\u10d0\u10e1\u10e3\u10ee\u10d8 \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1 \u10d3\u10d0\u10e1\u10d0\u10e8\u10d5\u10d4\u10d1\u10d8 JSON \u10d2\u10d0\u10db\u10dd\u10ee\u10db\u10d0\u10e3\u10e0\u10d4\u10d1\u10d0."],"Editor publish":["\u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d8\u10e1 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8"],Muted:["\u10d3\u10d0\u10d3\u10e3\u10db\u10d4\u10d1\u10e3\u10da\u10d8"],"Video Settings":["\u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"recent comments":["\u10d1\u10dd\u10da\u10dd \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d4\u10d1\u10d8"],"Latest Comments":["\u10d1\u10dd\u10da\u10dd \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d4\u10d1\u10d8"],"Display Excerpt":["\u10dc\u10d0\u10ec\u10e7\u10d5\u10d4\u10e2\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0"],"Display Date":["\u10d7\u10d0\u10e0\u10d8\u10e6\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0"],"Display Avatar":["\u10d0\u10d5\u10d0\u10e2\u10d0\u10e0\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0"],"Latest Comments Settings":["\u10e3\u10d0\u10ee\u10da\u10d4\u10e1\u10d8 \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d4\u10d1\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"Number of Comments":["\u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d4\u10d1\u10d8\u10e1 \u10e0\u10d0\u10dd\u10d3\u10d4\u10dc\u10dd\u10d1\u10d0"],"Background Opacity":["\u10e4\u10dd\u10dc\u10d8\u10e1 \u10d2\u10d0\u10e3\u10db\u10ed\u10d5\u10d8\u10e0\u10d5\u10d0\u10da\u10dd\u10d1\u10d0"],Auto:["\u10d0\u10d5\u10e2\u10dd"],Preload:["\u10ec\u10d8\u10dc\u10d0\u10e1\u10ec\u10d0\u10e0\u10d8 \u10e9\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0"],"Audio Settings":["\u10d0\u10e3\u10d3\u10d8\u10dd\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"Display a monthly archive of your posts.":["\u10e1\u10d0\u10d8\u10e2\u10d8\u10e1 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d4\u10d1\u10d8\u10e1 \u10e7\u10dd\u10d5\u10d4\u10da\u10d7\u10d5\u10d8\u10e3\u10e0\u10d8 \u10d0\u10e0\u10e5\u10d8\u10d5\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0."],"Display as Dropdown":["\u10e9\u10d0\u10db\u10dd\u10e1\u10d0\u10e8\u10da\u10d4\u10da\u10d8 \u10e1\u10d8\u10d8\u10e1 \u10e1\u10d0\u10ee\u10d8\u10d7 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0"],"Show Post Counts":["\u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d4\u10d1\u10d8\u10e1 \u10e0\u10d0\u10dd\u10d3\u10d4\u10dc\u10dd\u10d1\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0"],"Archives Settings":["\u10d0\u10e0\u10e5\u10d8\u10d5\u10d4\u10d1\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u10db\u10ee\u10d0\u10e0\u10d3\u10d0\u10ed\u10d4\u10e0\u10d0"],"No comments to show.":["\u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1 \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d8, \u10e0\u10dd\u10db \u10d2\u10d0\u10e9\u10d5\u10d4\u10dc\u10dd\u10d7."],"%1$s on %2$s":["%1$s \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d8 %2$s \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d6\u10d4"],"Select Post":["\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8"],"Select Week":["\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10d9\u10d5\u10d8\u10e0\u10d0"],"Select Day":["\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10d3\u10e6\u10d4"],"Select Month":["\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10d7\u10d5\u10d4"],"Select Year":["\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10ec\u10d4\u10da\u10d8"],Archives:["\u10d0\u10e0\u10e5\u10d8\u10d5\u10d4\u10d1\u10d8"],"Very dark gray":["\u10eb\u10d0\u10da\u10d8\u10d0\u10dc \u10db\u10e3\u10e5\u10d8 \u10dc\u10d0\u10ea\u10e0\u10d8\u10e1\u10e4\u10d4\u10e0\u10d8"],"Cyan bluish gray":["\u10db\u10dd\u10ea\u10d8\u10e4\u10e0\u10dd-\u10dc\u10d0\u10ea\u10e0\u10d8\u10e1\u10e4\u10d4\u10e0\u10d8"],"Very light gray":["\u10e6\u10d8\u10d0 \u10dc\u10d0\u10ea\u10e0\u10d8\u10e1\u10e4\u10d4\u10e0\u10d8"],"Vivid cyan blue":["\u10d9\u10d0\u10e8\u10d9\u10d0\u10e8\u10d0 \u10da\u10e3\u10e0\u10ef\u10d8"],"Pale cyan blue":["\u10e4\u10d4\u10e0\u10d9\u10db\u10d7\u10d0\u10da\u10d8 \u10da\u10e3\u10e0\u10ef\u10d8"],"Vivid green cyan":["\u10d9\u10d0\u10e8\u10d9\u10d0\u10e8\u10d0 \u10db\u10ec\u10d5\u10d0\u10dc\u10d4"],"Light green cyan":["\u10e6\u10d8\u10d0 \u10db\u10ec\u10d5\u10d0\u10dc\u10d4"],"Luminous vivid amber":["\u10e5\u10d0\u10e0\u10d5\u10d8\u10e1\u10e4\u10d4\u10e0\u10d8"],"Luminous vivid orange":["\u10e4\u10dd\u10e0\u10d7\u10dd\u10ee\u10da\u10d8\u10e1\u10e4\u10d4\u10e0\u10d8"],"Vivid red":["\u10d9\u10d0\u10e8\u10d9\u10d0\u10e8\u10d0 \u10ec\u10d8\u10d7\u10d4\u10da\u10d8"],"Pale pink":["\u10e4\u10d4\u10e0\u10d9\u10db\u10d7\u10d0\u10da\u10d8 \u10d5\u10d0\u10e0\u10d3\u10d8\u10e1\u10e4\u10d4\u10e0\u10d8"],"Inline image":[],"Available block types":["\u10ee\u10d4\u10da\u10db\u10d8\u10e1\u10d0\u10ec\u10d5\u10d3\u10dd\u10db\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10e2\u10d8\u10de\u10d4\u10d1\u10d8"],"Transform To:":["\u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0:"],"Remove Block":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d0\u10db\u10dd\u10e6\u10d4\u10d1\u10d0"],"Open publish panel":["\u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d8\u10e1 \u10de\u10d0\u10dc\u10d4\u10da\u10d8\u10e1 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0"],Dots:["\u10ec\u10d4\u10e0\u10e2\u10d8\u10da\u10d4\u10d1\u10d8"],"Wide Line":["\u10e4\u10d0\u10e0\u10d7\u10dd \u10ee\u10d0\u10d6\u10d8"],Large:["\u10d3\u10d8\u10d3\u10d8"],"Show download button":[],"Download button settings":[],"Link To":["\u10d1\u10db\u10e3\u10da\u10d8"],"Text link settings":[],pdf:["pdf"],document:["\u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8"],"Copy URL":["URL-\u10e1 \u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0"],"Write file name\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7 \u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8\u2026"],"Edit file":["\u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],File:["\u10e4\u10d0\u10d8\u10da\u10d8"],"A single column within a columns block.":["\u10d4\u10e0\u10d7\u10d8 \u10e1\u10d5\u10d4\u10e2\u10d8 \u10e1\u10d5\u10d4\u10e2\u10d4\u10d1\u10d8\u10e1 \u10d1\u10da\u10dd\u10d9\u10e8\u10d8."],Column:["\u10e1\u10d5\u10d4\u10e2\u10d8"],Outline:["\u10d9\u10dd\u10dc\u10e2\u10e3\u10e0\u10d8"],Loop:["\u10d2\u10d0\u10db\u10d4\u10dd\u10e0\u10d4\u10d1\u10d0"],Autoplay:["\u10d0\u10d5\u10e2\u10dd-\u10d3\u10d0\u10d9\u10d5\u10e0\u10d0"],"Playback Controls":["\u10d3\u10d0\u10d9\u10d5\u10e0\u10d8\u10e1 \u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d4\u10d1\u10d8"],"Close dialog":["\u10d3\u10d8\u10d0\u10da\u10dd\u10d2\u10e3\u10e0\u10d8 \u10e1\u10d0\u10e0\u10d9\u10db\u10d4\u10da\u10d8\u10e1 \u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0"],"Sorry, this file type is not permitted for security reasons.":["\u10e3\u10d9\u10d0\u10ea\u10e0\u10d0\u10d5\u10d0\u10d3, \u10d0\u10db \u10e2\u10d8\u10de\u10d8\u10e1 \u10e4\u10d0\u10d8\u10da\u10d8 \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1 \u10dc\u10d4\u10d1\u10d0\u10d3\u10d0\u10e0\u10d7\u10e3\u10da\u10d8 \u10e3\u10e1\u10d0\u10e4\u10e0\u10d7\u10ee\u10dd\u10d4\u10d1\u10d8\u10e1 \u10db\u10d8\u10d6\u10dc\u10d8\u10d7."],"Disable tips":["\u10e0\u10e9\u10d4\u10d5\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e0\u10d7\u10d5\u10d0"],"Got it":["\u10d2\u10d0\u10e1\u10d0\u10d2\u10d4\u10d1\u10d8\u10d0"],"See next tip":["\u10e8\u10d4\u10db\u10d3\u10d4\u10d2\u10d8 \u10e0\u10e9\u10d4\u10d5\u10d0"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u10e0\u10dd\u10d3\u10d4\u10e1\u10d0\u10ea \u10db\u10d6\u10d0\u10d3 \u10d8\u10e5\u10dc\u10d4\u10d1\u10d8\u10d7, \u10e3\u10d1\u10e0\u10d0\u10da\u10dd\u10d3 \u10d2\u10d0\u10d3\u10d0\u10d0\u10d2\u10d6\u10d0\u10d5\u10dc\u10d4\u10d7 \u10e1\u10d0\u10db\u10e3\u10e8\u10d0\u10dd \u10d3\u10d0\u10e1\u10d0\u10db\u10e2\u10d9\u10d8\u10ea\u10d4\u10d1\u10da\u10d0\u10d3 \u10d3\u10d0 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8 \u10e8\u10d4\u10eb\u10da\u10d4\u10d1\u10e1 \u10db\u10d8\u10e1 \u10db\u10dd\u10ec\u10dd\u10dc\u10d4\u10d1\u10d0\u10e1."],"Are you ready to submit for review?":["\u10db\u10d6\u10d0\u10d3 \u10ee\u10d0\u10e0\u10d7 \u10d2\u10d0\u10d3\u10d0\u10d0\u10d2\u10d6\u10d0\u10d5\u10dc\u10dd\u10d7 \u10d3\u10d0\u10e1\u10d0\u10db\u10e2\u10d9\u10d8\u10ea\u10d4\u10d1\u10da\u10d0\u10d3?"],"Replace image":["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10e9\u10d0\u10dc\u10d0\u10ea\u10d5\u10da\u10d4\u10d1\u10d0"],"Remove image":["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10d0\u10db\u10dd\u10e6\u10d4\u10d1\u10d0"],"Error while uploading file %s to the media library.":["\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 \u10e4\u10d0\u10d8\u10da\u10d8\u10e1 %s \u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d8\u10e1\u10d0\u10e1 \u10db\u10d4\u10d3\u10d8\u10d0 \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0\u10e8\u10d8."],"This file exceeds the maximum upload size for this site.":["\u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10d6\u10dd\u10db\u10d0 \u10d0\u10e6\u10d4\u10db\u10d0\u10e2\u10d4\u10d1\u10d0 \u10d0\u10db \u10e1\u10d0\u10d8\u10e2\u10d6\u10d4 \u10db\u10d0\u10e5\u10e1\u10d8\u10db\u10d0\u10da\u10e3\u10e0\u10d0\u10d3 \u10d3\u10d0\u10e8\u10d5\u10d4\u10d1\u10e3\u10da \u10d6\u10dd\u10db\u10d0\u10e1."],"View the autosave":["\u10d0\u10d5\u10e2\u10dd\u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d8\u10e1 \u10dc\u10d0\u10ee\u10d5\u10d0"],"There is an autosave of this post that is more recent than the version below.":["\u10d0\u10db \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1 \u10d0\u10e0\u10e1\u10d4\u10d1\u10dd\u10d1\u10e1 \u10e3\u10e4\u10e0\u10dd \u10d2\u10d5\u10d8\u10d0\u10dc\u10d3\u10d4\u10da\u10d8 \u10d5\u10d4\u10e0\u10e1\u10d8\u10d0, \u10d5\u10d8\u10d3\u10e0\u10d4 \u10e5\u10d5\u10d4\u10db\u10dd\u10d7 \u10db\u10dd\u10ea\u10d4\u10db\u10e3\u10da\u10d8."],Autosaving:["\u10d0\u10d5\u10e2\u10dd\u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0"],"Enter URL here\u2026":[],"Pin to toolbar":["\u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d7\u10d0 \u10d6\u10dd\u10da\u10d6\u10d4 \u10db\u10d8\u10db\u10d0\u10d2\u10e0\u10d4\u10d1\u10d0"],"Unpin from toolbar":["\u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d7\u10d0 \u10d6\u10dd\u10da\u10d8\u10d3\u10d0\u10dc \u10db\u10dd\u10ee\u10e1\u10dc\u10d0"],"Insert a table \u2014 perfect for sharing charts and data.":["\u10ea\u10ee\u10e0\u10d8\u10da\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0 \u2014 \u10d8\u10d3\u10d4\u10d0\u10da\u10e3\u10e0\u10d8\u10d0 \u10d2\u10e0\u10d0\u10e4\u10d8\u10d9\u10d4\u10d1\u10d8\u10e1\u10d0 \u10d3\u10d0 \u10db\u10dd\u10dc\u10d0\u10ea\u10d4\u10db\u10d4\u10d1\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1."],"Fixed width table cells":["\u10ea\u10ee\u10e0\u10d8\u10da\u10d8\u10e1 \u10e3\u10ef\u10e0\u10d4\u10d3\u10d4\u10d1\u10d8 \u10e4\u10d8\u10e5\u10e1\u10d8\u10e0\u10d4\u10d1\u10e3\u10da\u10d8 \u10e1\u10d8\u10d2\u10d0\u10dc\u10d8\u10d7"],"Table Settings":["\u10ea\u10ee\u10e0\u10d8\u10da\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"Add text that respects your spacing and tabs, and also allows styling.":["\u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10d4\u10d7 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8, \u10e0\u10dd\u10db\u10d4\u10da\u10d8\u10ea \u10e8\u10d4\u10d4\u10e1\u10d0\u10d1\u10d0\u10db\u10d4\u10d1\u10d0 \u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10d3\u10d0\u10e8\u10dd\u10e0\u10d4\u10d1\u10d0\u10e1\u10d0 \u10d3\u10d0 \u10e9\u10d0\u10dc\u10d0\u10e0\u10d7\u10d4\u10d1\u10e1, \u10d0\u10e1\u10d4\u10d5\u10d4 \u10d0\u10dc\u10d8\u10ed\u10d4\u10d1\u10e1 \u10e1\u10e2\u10d8\u10da\u10e1."],"Display a list of your most recent posts.":["\u10e1\u10d0\u10d8\u10e2\u10d8\u10e1 \u10d1\u10dd\u10da\u10dd \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d4\u10d1\u10d8."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0, \u10e0\u10dd\u10db\u10d4\u10da\u10d8\u10ea \u10d0\u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10e1 \u10e1\u10ee\u10d5\u10d0 \u10e1\u10d0\u10d8\u10e2\u10d4\u10d1\u10e1, \u10e0\u10dd\u10d2\u10dd\u10e0\u10d8\u10ea\u10d0\u10d0 Twitter, Instagram \u10d0\u10dc YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10d4\u10d7 \u10d1\u10da\u10dd\u10d9\u10d8, \u10e0\u10dd\u10db\u10d4\u10da\u10d8\u10ea \u10d0\u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10e1 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10e1 \u10e0\u10d0\u10db\u10dd\u10d3\u10d4\u10dc\u10d8\u10db\u10d4 \u10e1\u10d5\u10d4\u10e2\u10e8\u10d8, \u10ee\u10dd\u10da\u10dd \u10e8\u10d4\u10db\u10d3\u10d4\u10d2 \u10d0\u10db \u10d1\u10da\u10dd\u10d9\u10e8\u10d8 \u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10d4\u10d7 \u10e1\u10ee\u10d5\u10d0 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10d7, \u10e0\u10dd\u10db\u10da\u10d4\u10d1\u10d8\u10ea \u10d7\u10e5\u10d5\u10d4\u10dc \u10d2\u10e1\u10e3\u10e0\u10d7."],"Error loading block: %s":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10e9\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d8\u10e1 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0: %s"],"Unknown error":["\u10e3\u10ea\u10dc\u10dd\u10d1\u10d8 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0"],"Embed Handler":["\u10d3\u10d0\u10db\u10db\u10e3\u10e8\u10d0\u10d5\u10d4\u10d1\u10d4\u10da\u10d8 \u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0"],"term\x04Remove %s":["\u10d0\u10db\u10dd\u10e6\u10d4\u10d1\u10d0: %s"],"Copy the permalink":["\u10db\u10e3\u10d3\u10db\u10d8\u10d5\u10d8 \u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0"],"Permalink copied":["\u10db\u10e3\u10d3\u10db\u10d8\u10d5\u10d8 \u10d1\u10db\u10e3\u10da\u10d8 \u10d3\u10d0\u10d9\u10dd\u10de\u10d8\u10e0\u10d3\u10d0"],"Height in pixels":["\u10e1\u10d8\u10db\u10d0\u10e6\u10da\u10d4 \u10de\u10d8\u10e5\u10e1\u10d4\u10da\u10d4\u10d1\u10e8\u10d8"],"Spacer Settings":["\u10d3\u10d0\u10e8\u10dd\u10e0\u10d4\u10d1\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],Spacer:["\u10d3\u10d0\u10e8\u10dd\u10e0\u10d4\u10d1\u10d0"],"Toggle to show a large initial letter.":["\u10d2\u10d0\u10ee\u10d0\u10d3\u10d4\u10d7 \u10e1\u10d0\u10ec\u10e7\u10d8\u10e1\u10d8 \u10d0\u10e1\u10dd-\u10dc\u10d8\u10e8\u10d0\u10dc\u10d8 \u10d3\u10d8\u10d3\u10d8."],"Showing large initial letter.":["\u10e1\u10d0\u10ec\u10e7\u10d8\u10e1\u10d8 \u10d3\u10d8\u10d3\u10d8 \u10d0\u10e1\u10dd-\u10dc\u10d8\u10e8\u10d0\u10dc\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0."],"Name:":["\u10e1\u10d0\u10ee\u10d4\u10da\u10d8:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s \u2014 %3$s)"],"Remove item":["\u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0"],"Color code: %s":["\u10e4\u10d4\u10e0\u10d8\u10e1 \u10d9\u10dd\u10d3\u10d8: %s"],"Skip to the selected block":["\u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 \u10d0\u10e0\u10e9\u10d4\u10e3\u10da \u10d1\u10da\u10dd\u10d9\u10d6\u10d4"],"Publish\u2026":["\u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d0\u2026"],"Schedule\u2026":["\u10d3\u10d0\u10d2\u10d4\u10d2\u10db\u10d8\u10da\u10d8\u2026"],"Edit post permalink":["\u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10db\u10e3\u10d3\u10db\u10d8\u10d5\u10d8 \u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],"Show Block Settings":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0"],"Hide Block Settings":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10da\u10d5\u10d0"],"Block settings closed":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8 \u10d3\u10d0\u10ee\u10e3\u10e0\u10e3\u10da\u10d8\u10d0"],"Close plugin":["\u10de\u10da\u10d0\u10d2\u10d8\u10dc\u10d8\u10e1 \u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0"],"Link settings":[],Unlink:["\u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10d2\u10d0\u10e3\u10e5\u10db\u10d4\u10d1\u10d0"],"Page break":["\u10d2\u10d5\u10d4\u10e0\u10d3\u10d8\u10e1 \u10d2\u10d0\u10e7\u10dd\u10e4\u10d0"],pagination:["\u10d2\u10d5\u10d4\u10e0\u10d3\u10d4\u10d1\u10d0\u10d3 \u10d3\u10d0\u10dc\u10dd\u10db\u10d5\u10e0\u10d0"],"next page":["\u10e8\u10d4\u10db\u10d3\u10d4\u10d2\u10d8 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d8"],"Image Size":["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10d6\u10dd\u10db\u10d0"],Height:["\u10e1\u10d8\u10db\u10d0\u10e6\u10da\u10d4"],Width:["\u10e1\u10d8\u10d2\u10d0\u10dc\u10d4"],"Image Dimensions":["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10d6\u10dd\u10db\u10d4\u10d1\u10d8"],"Thumbnails are not cropped.":["\u10d4\u10e1\u10d9\u10d8\u10d6\u10d4\u10d1\u10d8 \u10d0\u10e0 \u10db\u10dd\u10d8\u10ed\u10e0\u10d4\u10d1\u10d0."],"Thumbnails are cropped to align.":["\u10d4\u10e1\u10d9\u10d8\u10d6\u10d4\u10d1\u10d8 \u10db\u10dd\u10d8\u10ed\u10e0\u10d4\u10d1\u10d0 \u10d2\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1."],"Media Library":["\u10db\u10d4\u10d3\u10d8\u10d0 \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0"],Advanced:["\u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7"],"Add item":["\u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Reset the template":["\u10e8\u10d0\u10d1\u10da\u10dd\u10dc\u10d8\u10e1 \u10e9\u10d0\u10db\u10dd\u10e7\u10e0\u10d0"],"Keep it as is":["\u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4 \u10d3\u10d0\u10e2\u10dd\u10d5\u10d4\u10d1\u10d0"],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8 \u10d0\u10e0 \u10e8\u10d4\u10d4\u10e1\u10d0\u10d1\u10d0\u10db\u10d4\u10d1\u10d0 \u10e8\u10d0\u10d1\u10da\u10dd\u10dc\u10e1, \u10e0\u10dd\u10db\u10d4\u10da\u10d8\u10ea \u10db\u10d8\u10dc\u10d8\u10ed\u10d4\u10d1\u10e3\u10da\u10d8 \u10d0\u10e5\u10d5\u10e1 \u10d0\u10db \u10e2\u10d8\u10de\u10d8\u10e1 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10e1."],"Resetting the template may result in loss of content, do you want to continue?":["\u10e8\u10d0\u10d1\u10da\u10dd\u10dc\u10d8\u10e1 \u10e9\u10d0\u10db\u10dd\u10e7\u10e0\u10d0\u10db \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10dd\u10d0 \u10d2\u10d0\u10db\u10dd\u10d8\u10ec\u10d5\u10d8\u10dd\u10e1 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10d3\u10d0\u10d9\u10d0\u10e0\u10d2\u10d5\u10d0, \u10d2\u10d0\u10dc\u10d5\u10d0\u10d2\u10e0\u10eb\u10dd\u10d7?"],"Document Statistics":["\u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10e1\u10e2\u10d0\u10e2\u10d8\u10e1\u10e2\u10d8\u10d9\u10d0"],"is now scheduled. It will go live on":["\u10d3\u10d0\u10d2\u10d4\u10d2\u10db\u10d8\u10da\u10d8\u10d0 \u10d3\u10d0 \u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d3\u10d4\u10d1\u10d0"],Scheduled:["\u10d3\u10d0\u10d2\u10d4\u10d2\u10db\u10d8\u10da\u10d8"],"Scheduling\u2026":["\u10d3\u10d0\u10d2\u10d4\u10d2\u10db\u10d5\u10d0\u2026"],"Code editor selected":["\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8\u10d0 \u10d9\u10dd\u10d3\u10d8\u10e1 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8"],"Visual editor selected":["\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8\u10d0 \u10d5\u10d8\u10d6\u10e3\u10d0\u10da\u10e3\u10e0\u10d8 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8"],Plugins:["\u10d3\u10d0\u10dc\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8"],"Custom Size":["\u10e1\u10e2\u10d0\u10dc\u10d3\u10d0\u10e0\u10e2\u10e3\u10da\u10d8 \u10d6\u10dd\u10db\u10d0"],"Layout Elements":["\u10d3\u10d0\u10d9\u10d0\u10d1\u10d0\u10d3\u10dd\u10dc\u10d4\u10d1\u10d8\u10e1 \u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d4\u10d1\u10d8"],"term\x04%s removed":["%s \u10d0\u10db\u10dd\u10e6\u10d4\u10d1\u10e3\u10da\u10d8\u10d0"],"term\x04%s added":["%s \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10e3\u10da\u10d8\u10d0"],"imperative verb\x04Preview":["\u10d2\u10d0\u10d3\u10d0\u10ee\u10d4\u10d3\u10d5\u10d0"],"Block deleted.":["\u10d1\u10da\u10dd\u10d9\u10d8 \u10ec\u10d0\u10e8\u10da\u10d8\u10da\u10d8\u10d0."],"Block updated.":["\u10d1\u10da\u10dd\u10d9\u10d8 \u10d2\u10d0\u10dc\u10d0\u10ee\u10da\u10d3\u10d0."],"Block created.":["\u10d1\u10da\u10dd\u10d9\u10d8 \u10e8\u10d4\u10d8\u10e5\u10db\u10dc\u10d0."],"Trashing failed":["\u10e1\u10d0\u10dc\u10d0\u10d2\u10d5\u10d4\u10e8\u10d8 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0 \u10e9\u10d0\u10d8\u10e8\u10d0\u10da\u10d0"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["\u10d7\u10e5\u10d5\u10d4\u10dc \u10d2\u10d0\u10e5\u10d5\u10d7 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d4\u10d1\u10d8, \u10e0\u10dd\u10db\u10da\u10d4\u10d1\u10d8\u10ea \u10ef\u10d4\u10e0 \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10e3\u10da\u10d8. \u10d7\u10e3 \u10d2\u10d0\u10dc\u10d0\u10d2\u10e0\u10eb\u10dd\u10d1\u10d7, \u10d8\u10e1\u10d8\u10dc\u10d8 \u10d3\u10d0\u10d8\u10d9\u10d0\u10e0\u10d2\u10d4\u10d1\u10d0."],"Document Outline":["\u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10e1\u10e2\u10e0\u10e3\u10e5\u10e3\u10e0\u10d0"],Paragraphs:["\u10d0\u10d1\u10d6\u10d0\u10ea\u10d4\u10d1\u10d8"],Headings:["\u10d7\u10d0\u10d5\u10e1\u10d0\u10e0\u10d7\u10d4\u10d1\u10d8"],Words:["\u10e1\u10d8\u10e2\u10e7\u10d5\u10d0"],"Content structure":["\u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e1\u10e2\u10e0\u10e3\u10e5\u10e2\u10e3\u10e0\u10d0"],Public:["\u10e1\u10d0\u10ef\u10d0\u10e0\u10dd"],"Protected with a password you choose. Only those with the password can view this post.":["\u1c93\u1c90\u1caa\u1ca3\u1c9a\u1c98\u1c90 \u1c9e\u1c90\u1ca0\u1c9d\u1c9a\u1c98\u1c97, \u1ca0\u1c9d\u1c9b\u1c94\u1c9a\u1ca1\u1c90\u1caa \u1c97\u1ca5\u1c95\u1c94\u1c9c \u1c90\u1c98\u1ca0\u1ca9\u1c94\u1c95\u1c97. \u1ca9\u1c90\u1c9c\u1c90\u1cac\u1c94\u1ca0\u1c98\u1ca1 \u1c9c\u1c90\u1cae\u1c95\u1c90 \u1c9b\u1cae\u1c9d\u1c9a\u1c9d\u1c93 \u1c9b\u1c90\u1c97 \u1ca8\u1c94\u1ca3\u1cab\u1c9a\u1c98\u1c90\u1c97, \u1c95\u1c98\u1ca1\u1c90\u1caa \u1c90\u1ca5\u1c95\u10e1 \u10de\u10d0\u10e0\u10dd\u10da\u10d8."],"Password Protected":["\u10de\u10d0\u10e0\u10dd\u10da\u10d8\u10d7 \u10d3\u10d0\u10ea\u10e3\u10da\u10d8"],"Only visible to site admins and editors.":["\u10e9\u10d0\u10dc\u10e1 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10e1\u10d0\u10e2\u10d8\u10e1 \u10d0\u10d3\u10db\u10d8\u10dc\u10d8\u10e1\u10e2\u10e0\u10d0\u10e2\u10dd\u10e0\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1 \u10d3\u10d0 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1."],Private:["\u10de\u10d8\u10e0\u10d0\u10d3\u10d8"],"Visible to everyone.":["\u10e9\u10d0\u10dc\u10e1 \u10e7\u10d5\u10d4\u10da\u10d0\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1."],"Post Visibility":["\u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10ee\u10d8\u10da\u10d5\u10d0\u10d3\u10dd\u10d1\u10d0"],"Would you like to privately publish this post now?":["\u10d2\u10e1\u10e3\u10e0\u10d7 \u10d0\u10db \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10de\u10d8\u10e0\u10d0\u10d3\u10d0\u10d3 \u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d0?"],"Use a secure password":["\u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d7 \u10e1\u10d0\u10d8\u10db\u10d4\u10d3\u10dd \u10de\u10d0\u10e0\u10dd\u10da\u10d8"],"Create password":["\u10de\u10d0\u10e0\u10dd\u10da\u10d8\u10e1 \u10e8\u10d4\u10e5\u10db\u10dc\u10d0"],"Move to Trash":[],"Parent Term":["\u10db\u10e8\u10dd\u10d1\u10d4\u10da\u10d8 \u10e2\u10d4\u10e0\u10db\u10d8\u10dc\u10d8"],"Parent Category":["\u10db\u10e8\u10dd\u10d1\u10d4\u10da\u10d8 \u10d9\u10d0\u10e2\u10d4\u10d2\u10dd\u10e0\u10d8\u10d0"],"Add new term":["\u10d0\u10ee\u10d0\u10da\u10d8 \u10e2\u10d4\u10e0\u10db\u10d8\u10dc\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Add new category":["\u10d0\u10ee\u10d0\u10da\u10d8 \u10d9\u10d0\u10e2\u10d4\u10d2\u10dd\u10e0\u10d8\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],Term:["\u10e2\u10d4\u10e0\u10db\u10d8\u10dc\u10d8"],Tag:["\u10e2\u10d4\u10d2\u10d8"],"Add New Term":["\u10d0\u10ee\u10d0\u10da\u10d8 \u10e2\u10d4\u10e0\u10db\u10d8\u10dc\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Add New Tag":["\u10d0\u10ee\u10d0\u10da\u10d8 \u10ed\u10d3\u10d4\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Switch to Draft":["\u10db\u10dd\u10dc\u10d0\u10ee\u10d0\u10d6\u10d6\u10d4 \u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0"],"Are you sure you want to unpublish this post?":["\u10d3\u10d0\u10e0\u10ec\u10db\u10e3\u10dc\u10d4\u10d1\u10e3\u10da\u10d8 \u10ee\u10d0\u10e0\u10d7, \u10e0\u10dd\u10db \u10d2\u10e1\u10e3\u10e0\u10d7 \u10d0\u10db \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10e3\u10e5\u10db\u10d4\u10d1\u10d0?"],Immediately:["\u10d3\u10d0\u10e3\u10e7\u10dd\u10d5\u10dc\u10d4\u10d1\u10da\u10d8\u10d5"],"Save Draft":["\u10d4\u10e1\u10d9\u10d8\u10d6\u10d8\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0"],Saving:["\u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0"],"Publish:":["\u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10e3\u10da\u10d8\u10d0:"],"Visibility:":["\u10ee\u10d8\u10da\u10d5\u10d0\u10d3\u10dd\u10d1\u10d0:"],"Are you ready to publish?":["\u10db\u10d6\u10d0\u10d3 \u10ee\u10d0\u10e0\u10d7 \u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1?"],"Copy Link":["\u10d1\u10db\u10e3\u10da\u10d8\u10e1 \u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0"],"What\u2019s next?":["\u10e8\u10d4\u10db\u10d3\u10d4\u10d2 \u10e0\u10d0 \u10ee\u10d3\u10d4\u10d1\u10d0?"],"is now live.":["\u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10e3\u10da\u10d8\u10d0."],Published:["\u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10e3\u10da\u10d8"],Schedule:["\u10d2\u10d0\u10dc\u10e0\u10d8\u10d2\u10e8\u10d8"],Update:["\u10d2\u10d0\u10dc\u10d0\u10ee\u10da\u10d4\u10d1\u10d0"],"Submit for Review":["\u10d3\u10d0\u10e1\u10d0\u10db\u10e2\u10d9\u10d8\u10ea\u10d4\u10d1\u10da\u10d0\u10d3 \u10d2\u10d0\u10d2\u10d6\u10d0\u10d5\u10dc\u10d0"],"Updating\u2026":["\u10d2\u10d0\u10dc\u10d0\u10ee\u10da\u10d4\u10d1\u10d0\u2026"],"Publishing\u2026":["\u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d0\u2026"],"Allow Pingbacks & Trackbacks":["\u10e8\u10d4\u10e2\u10e7\u10dd\u10d1\u10d8\u10dc\u10d4\u10d1\u10d4\u10d1\u10d8\u10e1\u10d0 \u10d3\u10d0 \u10e3\u10d9\u10e3\u10d1\u10db\u10e3\u10da\u10d4\u10d1\u10d8\u10e1 \u10dc\u10d4\u10d1\u10d8\u10e1 \u10d3\u10d0\u10e0\u10d7\u10d5\u10d0"],"Permalink:":["\u10db\u10e3\u10d3\u10db\u10d8\u10d5\u10d8 \u10d1\u10db\u10e3\u10da\u10d8:"],"Pending Review":["\u10d3\u10d0\u10e1\u10d0\u10db\u10e2\u10d9\u10d8\u10ea\u10d4\u10d1\u10d4\u10da\u10d8\u10d0"],"%d Revision":["%d \u10e0\u10d4\u10d5\u10d8\u10d6\u10d8\u10d0"],"Suggestion:":["\u10e8\u10d4\u10db\u10dd\u10d7\u10d0\u10d5\u10d0\u10d6\u10d4\u10d1\u10d4\u10d1\u10d8:"],"Post Format":["\u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8"],Chat:["\u10e9\u10d4\u10e2\u10d8"],Status:["\u10e1\u10e2\u10d0\u10e2\u10e3\u10e1\u10d8"],Standard:["\u10e1\u10e2\u10d0\u10dc\u10d3\u10d0\u10e0\u10e2\u10e3\u10da\u10d8"],Aside:["\u10e8\u10d4\u10dc\u10d8\u10e8\u10d5\u10dc\u10d0"],"Set Featured Image":[],"Learn more about manual excerpts":["\u10d2\u10d0\u10d8\u10d2\u10d4\u10d7 \u10db\u10d4\u10e2\u10d8 \u10dc\u10d0\u10ec\u10e7\u10d5\u10d4\u10e2\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10e1\u10d0\u10ee\u10d4\u10d1"],"Write an excerpt (optional)":["\u10dc\u10d0\u10ec\u10e7\u10d5\u10d4\u10e2\u10d8\u10e1 \u10d3\u10d0\u10ec\u10d4\u10e0\u10d0 (\u10d0\u10e0\u10d0\u10e1\u10d0\u10d5\u10d0\u10da\u10d3\u10d4\u10d1\u10e3\u10da\u10dd)"],"Allow Comments":["\u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d4\u10d1\u10d8 \u10e9\u10d0\u10e0\u10d7\u10e3\u10da\u10d8\u10d0"],"Template:":["\u10e8\u10d0\u10d1\u10da\u10dd\u10dc\u10d8:"],"no parent":["\u10db\u10e8\u10dd\u10d1\u10da\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4"],"no title":["\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4"],Order:["\u10d3\u10d0\u10da\u10d0\u10d2\u10d4\u10d1\u10d0"],"No blocks found.":["\u10d1\u10da\u10dd\u10d9\u10d8 \u10d5\u10d4\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0."],"%d result found.":["%d \u10e8\u10d4\u10d3\u10d4\u10d2\u10d8\u10d0 \u10dc\u10d0\u10de\u10dd\u10d5\u10dc\u10d8."],Saved:["\u10e8\u10d4\u10dc\u10d0\u10ee\u10e3\u10da\u10d8\u10d0"],Embeds:["\u10e9\u10d0\u10d3\u10d2\u10db\u10d4\u10d1\u10d8"],Blocks:["\u10d1\u10da\u10dd\u10d9\u10d8"],"Search for a block":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10eb\u10d4\u10d1\u10dc\u10d0"],"Add block":["\u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Add %s":["\u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0 %s"],"Copy Error":["\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d8\u10e1 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0"],"Copy Post Text":["\u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0"],"Attempt Recovery":["\u10d0\u10e6\u10d3\u10d2\u10d4\u10dc\u10d8\u10e1 \u10db\u10ea\u10d3\u10d4\u10da\u10dd\u10d1\u10d0"],"The editor has encountered an unexpected error.":["\u10db\u10dd\u10ee\u10d3\u10d0 \u10db\u10dd\u10e3\u10da\u10dd\u10d3\u10dc\u10d4\u10da\u10d8 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0."],Undo:["\u10d2\u10d0\u10e3\u10e5\u10db\u10d4\u10d1\u10d0"],Redo:["\u10d0\u10e6\u10d3\u10d2\u10d4\u10dc\u10d0"],"(Multiple H1 headings are not recommended)":["(\u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1 \u10e0\u10d4\u10d9\u10dd\u10db\u10d4\u10d3\u10d4\u10d1\u10e3\u10da\u10d8 \u10d4\u10e0\u10d7\u10d6\u10d4 \u10db\u10d4\u10e2\u10d8 H1 \u10e2\u10d4\u10d2\u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0)"],"(Your theme may already use a H1 for the post title)":["(\u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10d7\u10d4\u10db\u10d0\u10e1 \u10e3\u10d9\u10d5\u10d4 \u10e8\u10d4\u10e3\u10eb\u10da\u10d8\u10d0 H1 \u10e2\u10d4\u10d2\u10d8\u10e1 \u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1)"],"(Incorrect heading level)":["(\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8\u10e1 \u10d0\u10e0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d8 \u10d3\u10dd\u10dc\u10d4)"],"(Empty heading)":["(\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4)"],"Block Styles":["\u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10e1 \u10e1\u10e2\u10d8\u10da\u10d4\u10d1\u10d8"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\u10d3\u10d0\u10e0\u10ec\u10db\u10e3\u10dc\u10d4\u10d1\u10e3\u10da\u10d8 \u10ee\u10d0\u10e0\u10d7, \u10e0\u10dd\u10db \u10d2\u10e1\u10e3\u10e0\u10d7 \u10d9\u10d5\u10da\u10d0\u10d5\u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0\u10d3\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0?\n\n\u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10e5\u10db\u10d4\u10d3\u10d4\u10d1\u10d0 \u10d2\u10d0\u10db\u10dd\u10d8\u10ec\u10d5\u10d4\u10d5\u10e1 \u10db\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0\u10e1 \u10e7\u10d5\u10d4\u10da\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10d3\u10d0\u10dc."],"Convert to Regular Block":["\u10e9\u10d5\u10d4\u10e3\u10da\u10d4\u10d1\u10e0\u10d8\u10d5 \u10d1\u10da\u10dd\u10d9\u10d0\u10d3 \u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0"],"More options":["\u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7\u10d8 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"Edit visually":["\u10d5\u10d8\u10d6\u10e3\u10d0\u10da\u10d0\u10e3\u10e0\u10d0\u10d3 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],Duplicate:["\u10d3\u10e3\u10d1\u10da\u10d8\u10e0\u10d4\u10d1\u10d0"],"Blocks cannot be moved down as they are already at the bottom":["\u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8 \u10d5\u10d4\u10e0 \u10d2\u10d0\u10d3\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10d3\u10d4\u10d1\u10d0 \u10e5\u10d5\u10d4\u10db\u10dd\u10d7, \u10d5\u10d8\u10dc\u10d0\u10d8\u10d3\u10d0\u10dc \u10d8\u10e1\u10d8\u10dc\u10d8 \u10e3\u10d9\u10d5\u10d4 \u10e1\u10e3\u10da \u10d1\u10dd\u10da\u10dd\u10e8\u10d8\u10d0"],"Blocks cannot be moved up as they are already at the top":["\u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8 \u10d5\u10d4\u10e0 \u10d2\u10d0\u10d3\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10d3\u10d4\u10d1\u10d0 \u10d6\u10d4\u10db\u10dd\u10d7, \u10d5\u10d8\u10dc\u10d0\u10d8\u10d3\u10d0\u10dc \u10d8\u10e1\u10d8\u10dc\u10d8 \u10e3\u10d9\u10d5\u10d4 \u10e1\u10e3\u10da \u10d7\u10d0\u10d5\u10e8\u10d8\u10d0"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["%s \u10d1\u10da\u10dd\u10d9\u10d8 \u10d4\u10e0\u10d7\u10d0\u10d3\u10d4\u10e0\u10d7\u10d8 \u10d1\u10da\u10dd\u10d9\u10d8\u10d0, \u10e8\u10d4\u10e1\u10d0\u10d1\u10d0\u10db\u10d8\u10e1\u10d0\u10d3 \u10d8\u10e1 \u10d5\u10d4\u10e0 \u10d2\u10d0\u10d3\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10d3\u10d4\u10d1\u10d0"],"Edit as HTML":["HTML-\u10e8\u10d8 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],"Convert to Blocks":["\u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d0\u10d3 \u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0"],"Block: %s":["\u10d1\u10da\u10dd\u10d9\u10d8: %s"],"This block has encountered an error and cannot be previewed.":["\u10d4\u10e1 \u10d1\u10da\u10dd\u10d9\u10d8 \u10e8\u10d4\u10d8\u10ea\u10d0\u10d5\u10e1 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0\u10e1 \u10d3\u10d0 \u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10db\u10d8\u10e1\u10d8 \u10dc\u10d0\u10ee\u10d5\u10d0."],"No block selected.":["\u10d1\u10da\u10dd\u10d9\u10d8 \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1 \u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8."],"Transform into:":["\u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0:"],Remove:["\u10ec\u10d0\u10e8\u10da\u10d0"],"Find original":["\u10e1\u10d0\u10ec\u10e7\u10d8\u10e1\u10d8\u10e1 \u10db\u10dd\u10eb\u10d4\u10d1\u10dc\u10d0"],"Copy All Content":["\u10db\u10d7\u10da\u10d8\u10d0\u10dc\u10d8 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0"],"Copied!":["\u10d3\u10d0\u10d9\u10dd\u10de\u10d8\u10e0\u10d3\u10d0!"],"Additional settings are now available in the Editor block settings sidebar":["\u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7\u10d8 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8 \u10ee\u10d4\u10da\u10db\u10d8\u10e1\u10d0\u10ec\u10d5\u10d3\u10dd\u10db\u10d8\u10d0 \u10de\u10d0\u10e0\u10d0\u10db\u10e2\u10d4\u10e0\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d8\u10d7\u10d0 \u10d6\u10dd\u10da\u10e8\u10d8"],Visibility:["\u10ee\u10d8\u10da\u10d5\u10d0\u10d3\u10dd\u10d1\u10d0"],"Status & Visibility":["\u10e1\u10e2\u10d0\u10e2\u10e3\u10e1\u10d8 \u10d3\u10d0 \u10ee\u10d8\u10da\u10d5\u10d0\u10d3\u10dd\u10d1\u10d0"],"Page Attributes":["\u10d2\u10d5\u10d4\u10e0\u10d3\u10d8\u10e1 \u10d0\u10e2\u10e0\u10d8\u10d1\u10e3\u10e2\u10d4\u10d1\u10d8"],Block:["\u10d1\u10da\u10dd\u10d9\u10d8"],Document:["\u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d8"],"Featured Image":["\u10db\u10d8\u10dc\u10d8\u10d0\u10e2\u10e3\u10e0\u10d0"],"Close settings":["\u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8\u10e1 \u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0"],"Editor content":["\u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8\u10e1 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8"],Tools:["\u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d4\u10d1\u10d8"],Editor:["\u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8"],"Code Editor":["\u10d9\u10dd\u10d3\u10d8\u10e1 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8"],"Visual Editor":["\u10d5\u10d8\u10d6\u10e3\u10d0\u10da\u10e3\u10e0\u10d8 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8"],"Editor top bar":["\u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d7\u10d0 \u10d6\u10dd\u10da\u10d8"],Settings:["\u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],Reset:["\u10e9\u10d0\u10db\u10dd\u10e7\u10e0\u10d0"],"Dismiss this notice":["\u10d2\u10d0\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10e5\u10e0\u10dd\u10d1\u10d0"],"Item removed.":["\u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d8 \u10ec\u10d0\u10e8\u10da\u10d8\u10da\u10d8\u10d0."],"Item added.":["\u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d8 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10e3\u10da\u10d8\u10d0."],"Drop files to upload":["\u10d2\u10d0\u10d3\u10d0\u10d0\u10d7\u10e0\u10d8\u10d4\u10d7 \u10e4\u10d0\u10d8\u10da\u10d4\u10d1\u10d8 \u10d0\u10e5"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["\u10db\u10dd\u10ee\u10d3\u10d0 \u10e3\u10ea\u10dc\u10dd\u10d1\u10d8 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0."],"No results.":["\u10e8\u10d4\u10d3\u10d4\u10d2\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4."],"%d result found, use up and down arrow keys to navigate.":["\u10dc\u10d0\u10de\u10dd\u10d5\u10dc\u10d8\u10d0 %d \u10e8\u10d4\u10d3\u10d4\u10d2\u10d8. \u10d2\u10d0\u10d3\u10d0\u10e1\u10d0\u10d0\u10d3\u10d2\u10d8\u10da\u10d4\u10d1\u10da\u10d0\u10d3 \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d7 \u10d8\u10e1\u10d0\u10e0\u10d8 \u10d6\u10d4\u10db\u10dd\u10d7, \u10d0\u10dc \u10e5\u10d5\u10d4\u10db\u10dd\u10d7."],"(no title)":["(\u10e3\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10dd)"],URL:["URL-\u10db\u10d8\u10e1\u10d0\u10db\u10d0\u10e0\u10d7\u10d8"],Submit:["\u10d2\u10d0\u10d2\u10d6\u10d0\u10d5\u10dc\u10d0"],Close:["\u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0"],"Insert link":[],"Edit link":[],Link:["\u10d1\u10db\u10e3\u10da\u10d8"],Strikethrough:["\u10ee\u10d0\u10d6\u10d2\u10d0\u10d3\u10d0\u10e1\u10db\u10e3\u10da\u10d8"],Italic:["\u10d3\u10d0\u10ee\u10e0\u10d8\u10da\u10d8"],Bold:["\u10db\u10e3\u10e5\u10d8"],"Remove link":[],"Number of items":["\u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d4\u10d1\u10d8\u10e1 \u10e0\u10d0\u10dd\u10d3\u10d4\u10dc\u10dd\u10d1\u10d0"],All:["\u10e7\u10d5\u10d4\u10da\u10d0"],Category:["\u10d9\u10d0\u10e2\u10d4\u10d2\u10dd\u10e0\u10d8\u10d0"],"Z \u2192 A":["\u10f0 \t \u10d0"],"A \u2192 Z":["\u10d0 \t \u10f0"],"Oldest to Newest":["\u10e3\u10e4\u10e0\u10dd \u10eb\u10d5\u10d4\u10da\u10d8\u10d3\u10d0\u10dc \u10d0\u10ee\u10da\u10d8\u10e1\u10d9\u10d4\u10dc"],"Newest to Oldest":["\u10e3\u10e4\u10e0\u10dd \u10d0\u10ee\u10da\u10d8\u10d3\u10d0\u10dc \u10eb\u10d5\u10d4\u10da\u10d8\u10e1\u10d9\u10d4\u10dc"],"Order by":["\u10d3\u10d0\u10ee\u10d0\u10e0\u10d8\u10e1\u10ee\u10d4\u10d1\u10d0"],Select:["\u10db\u10dd\u10dc\u10d8\u10e8\u10d5\u10dc\u10d0"],"Select or Upload Media":["\u10db\u10d4\u10d3\u10d8\u10d8\u10e1 \u10d0\u10e0\u10e9\u10d4\u10d5\u10d0, \u10d0\u10dc \u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0"],Video:["\u10d5\u10d8\u10d3\u10d4\u10dd"],"Edit video":["\u10d5\u10d8\u10d3\u10d4\u10dd\u10e1 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],"Write\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7\u2026"],poetry:["\u10de\u10dd\u10d4\u10d6\u10d8\u10d0"],Verse:["\u10da\u10d4\u10e5\u10e1\u10d8"],"New Column":["\u10d0\u10ee\u10d0\u10da\u10d8 \u10e1\u10d5\u10d4\u10e2\u10d8"],"Delete Column":["\u10e1\u10d5\u10d4\u10e2\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0"],"Add Column After":["\u10e1\u10d5\u10d4\u10e2\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0 \u10db\u10d0\u10e0\u10ef\u10d5\u10dc\u10d8\u10d5"],"Add Column Before":["\u10e1\u10d5\u10d4\u10e2\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0 \u10db\u10d0\u10e0\u10ea\u10ee\u10dc\u10d8\u10d5"],"Delete Row":["\u10e1\u10e2\u10e0\u10e5\u10dd\u10dc\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0"],"Add Row After":["\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0 \u10e5\u10d5\u10d4\u10db\u10dd\u10d7"],"Add Row Before":["\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0 \u10d6\u10d4\u10db\u10dd\u10d7"],"Edit table":[],Table:["\u10ea\u10ee\u10e0\u10d8\u10da\u10d8"],"Write subheading\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7 \u10e5\u10d5\u10d4\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8\u2026"],"Write shortcode here\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7 \u10db\u10d0\u10da\u10e1\u10d0\u10ee\u10db\u10dd\u10d1\u10d8 \u10d0\u10e5\u2026"],Shortcode:["\u10db\u10d0\u10da\u10e1\u10d0\u10ee\u10db\u10dd\u10d1\u10d8"],divider:["\u10d2\u10d0\u10db\u10e7\u10dd\u10e4\u10d8"],"horizontal-line":["\u10f0\u10dd\u10e0\u10d8\u10d6\u10dd\u10dc\u10e2\u10d0\u10da\u10e3\u10e0\u10d8-\u10ee\u10d0\u10d6\u10d8"],Separator:["\u10d2\u10d0\u10db\u10e7\u10dd\u10e4\u10d8"],Quote:["\u10ea\u10d8\u10e2\u10d0\u10e2\u10d0"],"Write citation\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7 \u10ea\u10d8\u10e2\u10d0\u10e2\u10d0\u2026"],"Write quote\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7 \u10ea\u10d8\u10e2\u10d0\u10e2\u10d0\u2026"],Pullquote:["\u10d0\u10db\u10dd\u10dc\u10d0\u10e0\u10d8\u10d3\u10d8"],"Write preformatted text\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7 \u10d3\u10d0\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d4\u10d1\u10e3\u10da\u10d8 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u2026"],Preformatted:["\u10d3\u10d0\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d4\u10d1\u10e3\u10da\u10d8"],text:["\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8"],Paragraph:["\u10de\u10d0\u10e0\u10d0\u10d2\u10e0\u10d0\u10e4\u10d8"],"Font Size":["\u10e8\u10e0\u10d8\u10e4\u10e2\u10d8\u10e1 \u10d6\u10dd\u10db\u10d0"],"Drop Cap":["\u10e1\u10d0\u10d6\u10d4\u10d3\u10d0\u10dd \u10d0\u10e1\u10dd-\u10dc\u10d8\u10e8\u10d0\u10dc\u10d8"],"Text Settings":["\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"Read more":["\u10d3\u10d0\u10ec\u10d5\u10e0\u10d8\u10da\u10d4\u10d1\u10d8\u10d7"],"Write list\u2026":["\u10e1\u10d8\u10d8\u10e1 \u10e8\u10d4\u10d3\u10d2\u10d4\u10dc\u10d0\u2026"],"numbered list":["\u10d3\u10d0\u10dc\u10dd\u10db\u10e0\u10d8\u10da\u10d8 \u10e1\u10d8\u10d0"],"ordered list":["\u10d3\u10d0\u10dc\u10dd\u10db\u10e0\u10d8\u10da\u10d8 \u10e1\u10d8\u10d0"],"bullet list":["\u10d1\u10e3\u10e0\u10d7\u10e3\u10da\u10d4\u10d1\u10d8\u10d0\u10dc\u10d8 \u10e1\u10d8\u10d0"],"Indent list item":["\u10e1\u10d8\u10d8\u10e1 \u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d4\u10d1\u10d6\u10d4 \u10d3\u10d0\u10e8\u10dd\u10e0\u10d4\u10d1\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Outdent list item":["\u10e1\u10d8\u10d8\u10e1 \u10d4\u10da\u10d4\u10db\u10d4\u10dc\u10e2\u10d4\u10d1\u10d6\u10d4 \u10e3\u10d9\u10e3\u10e1\u10d0\u10d0\u10d1\u10d6\u10d0\u10ea\u10dd \u10e8\u10d4\u10ec\u10d4\u10d5\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Convert to ordered list":["\u10d3\u10d0\u10dc\u10dd\u10db\u10e0\u10d8\u10da \u10e1\u10d8\u10d0\u10d3 \u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0"],"Convert to unordered list":["\u10d1\u10e3\u10e0\u10d7\u10e3\u10da\u10d4\u10d1\u10d8\u10d0\u10dc \u10e1\u10d8\u10d0\u10d3 \u10d2\u10d0\u10e0\u10d3\u10d0\u10e5\u10db\u10dc\u10d0"],List:["\u10e1\u10d8\u10d0"],"recent posts":["\u10d1\u10dd\u10da\u10dd \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d4\u10d1\u10d8"],"No posts found.":["\u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d4\u10d1\u10d8 \u10d5\u10d4\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0."],"Latest Posts":["\u10e3\u10d0\u10ee\u10da\u10d4\u10e1\u10d8 \u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d4\u10d1\u10d8"],"Display post date":["\u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1 \u10d7\u10d0\u10e0\u10d8\u10e6\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0"],"Grid view":[],"List view":[],photo:["\u10e4\u10dd\u10e2\u10dd"],"Image Settings":["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],Image:["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8"],Preview:["\u10d2\u10d0\u10d3\u10d0\u10ee\u10d4\u10d3\u10d5\u10d0"],embed:["\u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10e3\u10da\u10d8"],"Custom HTML":["\u10db\u10dd\u10e0\u10d2\u10d4\u10d1\u10e3\u10da\u10d8 HTML"],subtitle:["\u10e5\u10d5\u10d4\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8"],title:["\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8"],Heading:["\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8"],"Write heading\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7 \u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8\u2026"],"Heading %d":["\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8 %d"],Level:["\u10d3\u10dd\u10dc\u10d4"],"Heading Settings":["\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],photos:["\u10e4\u10dd\u10e2\u10dd\u10d4\u10d1\u10d8"],images:["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d4\u10d1\u10d8"],"Remove Image":["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10d0\u10db\u10dd\u10e6\u10d4\u10d1\u10d0"],None:["\u10d0\u10e0\u10ea \u10d4\u10e0\u10d7\u10d8"],"Media File":["\u10db\u10d4\u10d3\u10d8\u10d0-\u10e4\u10d0\u10d8\u10da\u10d8"],"Attachment Page":["\u10d3\u10d0\u10dc\u10d0\u10e0\u10d7\u10d8\u10e1 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d8"],"Crop Images":["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10db\u10dd\u10ed\u10e0\u10d0"],"Gallery Settings":["\u10d2\u10d0\u10da\u10d4\u10e0\u10d4\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],Gallery:["\u10d2\u10d0\u10da\u10d4\u10e0\u10d4\u10d0"],Classic:["\u10d9\u10da\u10d0\u10e1\u10d8\u10d9\u10e3\u10e0\u10d8"],video:["\u10d5\u10d8\u10d3\u10d4\u10dd"],audio:["\u10d0\u10e3\u10d3\u10d8\u10dd"],music:["\u10db\u10e3\u10e1\u10d8\u10d9\u10d0"],image:["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8"],blog:["\u10d1\u10da\u10dd\u10d2\u10d8"],post:["\u10e9\u10d0\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8"],"Embedded content from %s":["\u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10e3\u10da\u10d8 \u10e8\u10d8\u10d2\u10d7\u10d0\u10d5\u10e1\u10d8, \u10ec\u10e7\u10d0\u10e0\u10dd: %s"],"Enter URL to embed here\u2026":["\u10db\u10d8\u10e3\u10d7\u10d8\u10d7\u10d4\u10d7 URL \u10e9\u10d0\u10e1\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10da\u10d0\u10d3\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["\u10e9\u10d0\u10e8\u10d4\u10dc\u10d4\u10d1\u10d0\u2026"],"Write title\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7 \u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8\u2026"],"Fixed Background":["\u10e4\u10d8\u10e5\u10e1\u10d8\u10e0\u10d4\u10d1\u10e3\u10da\u10d8 \u10e4\u10dd\u10dc\u10d8"],"Edit image":["\u10e1\u10e3\u10e0\u10d0\u10d7\u10d8\u10e1 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],Columns:["\u10e1\u10d5\u10d4\u10e2\u10d4\u10d1\u10d8"],Experiments:[],Code:["\u10d9\u10dd\u10d3\u10d8"],"Write code\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7 \u10d9\u10dd\u10d3\u10d8\u2026"],Categories:["\u10d9\u10d0\u10e2\u10d4\u10d2\u10dd\u10e0\u10d8\u10d4\u10d1\u10d8"],"Show Hierarchy":["\u10d8\u10d4\u10e0\u10d0\u10e0\u10e5\u10d8\u10d8\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0"],"Show post counts":[],"Categories Settings":["\u10d9\u10d0\u10e2\u10d4\u10d2\u10dd\u10e0\u10d8\u10d4\u10d1\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8"],"Add text\u2026":["\u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10d4 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u2026"],Button:["\u10e6\u10d8\u10da\u10d0\u10d9\u10d8"],Apply:["\u10db\u10d8\u10e1\u10d0\u10d3\u10d0\u10d2\u10d4\u10d1\u10d0"],"Text Color":["\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e4\u10d4\u10e0\u10d8"],"Background Color":["\u10e4\u10dd\u10dc\u10d8\u10e1 \u10e4\u10d4\u10e0\u10d8"],"Block has been deleted or is unavailable.":["\u10d1\u10da\u10dd\u10d9\u10d8 \u10ec\u10d0\u10e8\u10da\u10d8\u10da\u10d8\u10d0, \u10d0\u10dc \u10db\u10d8\u10e3\u10ec\u10d5\u10d3\u10dd\u10db\u10d4\u10da\u10d8\u10d0."],"Reusable Blocks":["\u10d9\u10d5\u10da\u10d0\u10d5\u10d2\u10d0\u10db\u10dd\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0\u10d3\u10d8 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8"],Cancel:[],Edit:["\u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10d8\u10e0\u10d4\u10d1\u10d0"],"Edit audio":["\u10d0\u10e3\u10d3\u10d8\u10dd\u10e1 \u10e9\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d1\u10d0"],"Write caption\u2026":["\u10d3\u10d0\u10ec\u10d4\u10e0\u10d4\u10d7 \u10db\u10d8\u10dc\u10d0\u10ec\u10d4\u10e0\u10d8\u2026"],"Use URL":[],Audio:["\u10d0\u10e3\u10d3\u10d8\u10dd"],Upload:["\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML \u10e6\u10e3\u10d6\u10d0"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u10d0\u10db \u10e4\u10d4\u10e0\u10d7\u10d0 \u10e8\u10d4\u10ee\u10d0\u10db\u10d4\u10d1\u10d0\u10db \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10dd\u10d0 \u10eb\u10dc\u10d4\u10da\u10d0\u10d3 \u10ec\u10d0\u10e1\u10d0\u10d9\u10d8\u10d7\u10ee\u10d8 \u10d2\u10d0\u10ee\u10d0\u10d3\u10dd\u10e1 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8. \u10e1\u10ea\u10d0\u10d3\u10d4\u10d7 \u10e3\u10e4\u10e0\u10dd \u10d9\u10d0\u10e8\u10d9\u10d0\u10e8\u10d0 \u10e4\u10d4\u10e0\u10d8 \u10e4\u10dd\u10dc\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1 \u10d0\u10dc/\u10d3\u10d0 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e3\u10e4\u10e0\u10dd \u10db\u10e3\u10e5\u10d8 \u10e4\u10d4\u10e0\u10d8."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u10d0\u10db \u10e4\u10d4\u10e0\u10d7\u10d0 \u10e8\u10d4\u10ee\u10d0\u10db\u10d4\u10d1\u10d0\u10db \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10dd\u10d0 \u10eb\u10dc\u10d4\u10da\u10d0\u10d3 \u10ec\u10d0\u10e1\u10d0\u10d9\u10d8\u10d7\u10ee\u10d8 \u10d2\u10d0\u10ee\u10d0\u10d3\u10dd\u10e1 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8. \u10e1\u10ea\u10d0\u10d3\u10d4\u10d7 \u10e3\u10e4\u10e0\u10dd \u10d9\u10d0\u10e8\u10d9\u10d0\u10e8\u10d0 \u10e4\u10d4\u10e0\u10d8 \u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1\u10d0\u10d7\u10d5\u10d8\u10e1 \u10d0\u10dc/\u10d3\u10d0 \u10e4\u10dd\u10dc\u10d8\u10e1 \u10e3\u10e4\u10e0\u10dd \u10db\u10e3\u10e5\u10d8 \u10e4\u10d4\u10e0\u10d8."],Clear:["\u10d2\u10d0\u10e1\u10e3\u10e4\u10d7\u10d0\u10d5\u10d4\u10d1\u10d0"],"Custom color picker":["\u10db\u10dd\u10e0\u10d2\u10d4\u10d1\u10e3\u10da\u10d8 \u10e4\u10d4\u10e0\u10d8\u10e1 \u10d0\u10e0\u10e9\u10d4\u10d5\u10d0"],"Color: %s":["\u10e4\u10d4\u10e0\u10d8: %s"],"Full Width":[],"Wide Width":[],Widgets:["\u10d5\u10d8\u10ef\u10d4\u10e2\u10d4\u10d1\u10d8"],Formatting:["\u10d3\u10d0\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Common Blocks":["\u10eb\u10d8\u10e0\u10d7\u10d0\u10d3\u10d8 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["\u10d5\u10d1\u10d4\u10ed\u10d3\u10d0\u10d5\u10d7 1440 \u10ec\u10da\u10d8\u10d3\u10d0\u10dc. \u10d4\u10e1 \u10d0\u10e0\u10d8\u10e1 \u10d1\u10d8\u10e0\u10d7\u10d5\u10e8\u10d8 \u10d1\u10da\u10dd\u10d9\u10d4\u10d1\u10d8\u10e1 \u10e0\u10d4\u10d3\u10d0\u10e5\u10e2\u10dd\u10e0\u10d8\u10e1 \u10de\u10da\u10d0\u10d2\u10d8\u10dc\u10d8\u10e1 \u10e8\u10d4\u10e5\u10db\u10dc\u10d8\u10e1 \u10de\u10e0\u10dd\u10ea\u10d4\u10e1\u10d8."],"Add title":["\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["\u10d0\u10d5\u10e2\u10dd\u10e0\u10d8"],Slug:["\u10d8\u10d0\u10e0\u10da\u10d8\u10e7\u10d8"],Discussion:["\u10d3\u10d8\u10e1\u10d9\u10e3\u10e1\u10d8\u10d0"],"Custom Fields":["\u10db\u10dd\u10e0\u10d2\u10d4\u10d1\u10e3\u10da\u10d8 \u10d5\u10d4\u10da\u10d4\u10d1\u10d8"],Excerpt:["\u10ea\u10d8\u10e2\u10d0\u10e2\u10d0"],Publish:["\u10d2\u10d0\u10db\u10dd\u10e5\u10d5\u10d4\u10e7\u10dc\u10d4\u10d1\u10d0"],Metadata:["\u10db\u10d4\u10e2\u10d0-\u10db\u10dd\u10dc\u10d0\u10ea\u10d4\u10db\u10d4\u10d1\u10d8"],Save:["\u10d3\u10d0\u10db\u10d0\u10ee\u10e1\u10dd\u10d5\u10e0\u10d4\u10d1\u10d0"],Documentation:["\u10d3\u10dd\u10d9\u10e3\u10db\u10d4\u10dc\u10e2\u10d0\u10ea\u10d8\u10d0"],"Select Category":["\u10d9\u10d0\u10e2\u10d4\u10d2\u10dd\u10e0\u10d8\u10d8\u10e1 \u10d0\u10e0\u10e9\u10d4\u10d5\u10d0"],"(Untitled)":["(\u10e3\u10e1\u10d0\u10d7\u10d0\u10e3\u10e0\u10dd)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["\u10d3\u10d4\u10db\u10dd"],"%s ago":["%s-\u10d8\u10e1 \u10ec\u10d8\u10dc"],"Block style name must be a string.":[]}},852,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top Toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],Permalink:[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":[],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],Thumbnail:[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],Annotation:[],"Drag images, upload new ones or select files from your library.":[],"blocks\x04Most Used":[],"imperative verb\x04Resolve":[],"font size name\x04Huge":[],"font size name\x04Large":[],"font size name\x04Medium":[],"font size name\x04Small":[],"font size name\x04Normal":[],"keyboard button\x04Enter":[],"button label\x04Import":[],"button label\x04Download":[],"button label\x04Embed":[],"block title\x04Embed":[],"block title\x04Classic":["\ud074\ub798\uc2dd"],"block style\x04Large":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],media:[],"Double-check your settings before publishing.":[],"Generating preview\u2026":[],"Edit or update the image":[],Media:[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text Settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay \u2014 great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\x04View":[],"editor button\x04Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],Styles:[],"Advanced Panels":[],"Document Panels":[],General:[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],Options:[],"(opens in a new tab)":[],Minutes:[],Hours:[],Time:[],Year:[],Day:[],December:[],November:[],October:[],September:[],August:[],July:[],June:[],May:[],April:[],March:[],February:[],January:[],Month:[],Date:[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],Stripes:[],"Your site doesn\u2019t include support for this block.":[],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:[],"Border Settings":[],"Edit media":[],Medium:[],"Paste URL or type to search":[],Terms:[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],Avatar:[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],HTML:[],"Write HTML\u2026":[],"Media Settings":[],"Overlay Color":[],Overlay:[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":[],Backtick:[],Period:[],Comma:[],"Change type of %d block":[],Current:[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],Escape:[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage All Reusable Blocks":[],Title:[],"Fullscreen Mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],blockquote:[],"Change the block type after adding a new paragraph.":[],"Spotlight Mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual Editor and Code Editor.":[],"Navigate to the previous part of the editor (alternative).":[],"Navigate to the next part of the editor (alternative).":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard Shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\x04More":[],"button to expand options\x04More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":[],Small:[],"(%s: %s)":[],Reusable:[],"(current %s: %s)":[],"Remove from Reusable Blocks":[],"Add to Reusable Blocks":[],"Keep as HTML":[],"Edit URL":[],"Color Settings":[],"The response is not a valid JSON response.":["\uc751\ub2f5\uc774 \uc720\ud6a8\ud55c JSON \uc751\ub2f5\uc774 \uc544\ub2d9\ub2c8\ub2e4."],"Editor publish":["\ud3b8\uc9d1\uae30 \uacf5\uac1c"],Muted:["\uc74c\uc18c\uac70"],"Video Settings":["\ube44\ub514\uc624 \uc124\uc815"],"recent comments":["\ucd5c\uadfc \ub313\uae00"],"Latest Comments":["\ucd5c\uc2e0 \ub313\uae00"],"Display Excerpt":[],"Display Date":[],"Display Avatar":[],"Latest Comments Settings":["\ucd5c\uc2e0 \ub313\uae00 \uc124\uc815"],"Number of Comments":[],"Background Opacity":["\ubc30\uacbd \ud22c\uba85\ub3c4"],Auto:["\uc790\ub3d9"],Preload:["\ubbf8\ub9ac \uc62c\ub9bc"],"Audio Settings":["\uc624\ub514\uc624 \uc124\uc815"],"Display a monthly archive of your posts.":[],"Display as Dropdown":["\ub4dc\ub78d\ub2e4\uc6b4 \ubc29\uc2dd\uc73c\ub85c \ubcf4\uc5ec\uc8fc\uae30"],"Show Post Counts":["\uae00 \uc218 \ubcf4\uc774\uae30"],"Archives Settings":["\uae00\ubcf4\uad00\ud568 \uc124\uc815"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\uc9c0\uc6d0"],"No comments to show.":["\ubcf4\uc5ec\uc904 \ub313\uae00 \uc5c6\uc74c."],"%1$s on %2$s":["%1$s - %2$s"],"Select Post":["\uae00 \uc120\ud0dd"],"Select Week":["\uc8fc \uc120\ud0dd"],"Select Day":["\uc694\uc77c \uc120\ud0dd"],"Select Month":["\uc6d4 \uc120\ud0dd"],"Select Year":["\ub144\ub3c4 \uc120\ud0dd"],Archives:["\uae00 \ubcf4\uad00\ud568"],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":["\uac00\ub2a5\ud55c \ube14\ub85d \ud0c0\uc785"],"Transform To:":["\ub2e4\uc74c\uc73c\ub85c \ubcc0\ud615\ud558\uae30:"],"Remove Block":["\ube14\ub85d \uc81c\uac70"],"Open publish panel":["\uacf5\uac1c\ud558\uae30 \ud328\ub110 \uc5f4\uae30"],Dots:["\uc810"],"Wide Line":["\ub113\uc740 \ub77c\uc778"],Large:["\ud06c\uac8c"],"Show download button":[],"Download button settings":[],"Link To":["\ub9c1\ud06c"],"Text link settings":[],pdf:["pdf"],document:["\ubb38\uc11c"],"Copy URL":["URL \ubcf5\uc0ac"],"Write file name\u2026":["\ud30c\uc77c \uc774\ub984 \uc4f0\uae30..."],"Edit file":["\ud30c\uc77c \ud3b8\uc9d1"],File:["\ud30c\uc77c"],"A single column within a columns block.":["\uceec\ub7fc \ube14\ub85d \uc548\uc5d0 \ub2e8\uc77c \uceec\ub7fc."],Column:["\uceec\ub7fc"],Outline:["Outline"],Loop:["\uc5f0\uc18d\uc7ac\uc0dd"],Autoplay:["\uc790\ub3d9 \uc2e4\ud589"],"Playback Controls":["\uc2e4\ud589 \uc81c\uc5b4"],"Close dialog":["\ub300\ud654\uc0c1\uc790 \ub2eb\uae30"],"Sorry, this file type is not permitted for security reasons.":["\uc8c4\uc1a1\ud569\ub2c8\ub2e4. \uc774 \ud30c\uc77c \ud0c0\uc785\uc740 \ubcf4\uc548\uc744 \uc774\uc720\ub85c \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."],"Disable tips":["\ud301 \ube44\ud65c\uc131\ud654"],"Got it":["\uc54c\uc558\uc2b5\ub2c8\ub2e4"],"See next tip":["\ub2e4\uc74c \ud301 \ubcf4\uae30"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":["\ub9ac\ubdf0\ub97c \uc704\ud55c \uc81c\ucd9c\uc774 \uc900\ube44\uac00 \ub410\ub098\uc694?"],"Replace image":["\uc774\ubbf8\uc9c0 \uad50\uccb4"],"Remove image":["\uc774\ubbf8\uc9c0 \uc81c\uac70"],"Error while uploading file %s to the media library.":["\ud30c\uc77c %s\ub97c \ubbf8\ub514\uc5b4 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \uc5c5\ub85c\ub4dc \uc911 \uc5d0\ub7ec."],"This file exceeds the maximum upload size for this site.":[],"View the autosave":["\uc790\ub3d9\uc800\uc7a5 \ubcf4\uae30"],"There is an autosave of this post that is more recent than the version below.":["\uc774 \uae00\uc740 \uc544\ub798 \ubc84\uc804\ubcf4\ub2e4 \ucd5c\uc2e0\uc758 \uc790\ub3d9\uc800\uc7a5 \ubc84\uc804\uc774 \uc788\uc2b5\ub2c8\ub2e4."],Autosaving:["\uc790\ub3d9\uc800\uc7a5\uc911"],"Enter URL here\u2026":["\uc5ec\uae30\uc5d0 URL\uc744 \uc785\ub825\ud558\uc138\uc694..."],"Pin to toolbar":["\ud234\ubc14\uc5d0 \uace0\uc815"],"Unpin from toolbar":["\ud234\ubc14\uc5d0\uc11c \uc81c\uac70"],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":["\uace0\uc815 \ud3ed \ud14c\uc774\ube14 \uc140"],"Table Settings":["\ud14c\uc774\ube14 \uc124\uc815"],"Add text that respects your spacing and tabs, and also allows styling.":["\uc5ec\ubc31\uacfc \ud0ed\uc744 \uc874\uc911\ud558\ub294 \ud14d\uc2a4\ud2b8\ub97c \ucd94\uac00\ud558\uc138\uc694. \uc2a4\ud0c0\uc77c\ub3c4 \ud5c8\uc6a9\ub429\ub2c8\ub2e4."],"Display a list of your most recent posts.":["\uc790\uc2e0\uc758 \ucd5c\uc2e0 \uae00 \ubaa9\ub85d \ud45c\uc2dc."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\ud2b8\uc704\ud130, \uc778\uc2a4\ud0c0\uadf8\ub7a8, \uc720\ud22c\ube0c\uc640 \uac19\uc740 \ub2e4\uc740 \uc0ac\uc774\ud2b8\uc5d0\uc11c \uac00\uc838\uc628 \ucf58\ud150\uce20\ub97c \ud45c\uc2dc\ud560 \uc218 \uc788\ub294 \ube14\ub85d\uc744 \ucd94\uac00\ud558\uc138\uc694."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":[],"Error loading block: %s":["\ube14\ub85d \ub85c\ub529\uc911 \uc5d0\ub7ec: %s"],"Unknown error":[],"Embed Handler":["\uc784\ubca0\ub4dc \ud578\ub4e4\ub7ec"],"term\x04Remove %s":["%s \uc81c\uac70"],"Copy the permalink":["\uace0\uc720\uc8fc\uc18c \ubcf5\uc0ac"],"Permalink copied":["\uace0\uc720\uc8fc\uc18c \ubcf5\uc0ac\ub428"],"Height in pixels":["\ub192\uc774 - \ud53d\uc140"],"Spacer Settings":["\uc5ec\ubc31 \uc124\uc815"],Spacer:["\uc5ec\ubc31 \uc124\uc815"],"Toggle to show a large initial letter.":["\ud070 \uccab\uae00\uc790 \ubcf4\uc774\uae30 \ud1a0\uae00."],"Showing large initial letter.":["\uccab\ubc88\uc9f8 \uae00\uc790\uac00 \ud06c\uac8c \ubcf4\uc785\ub2c8\ub2e4."],"Name:":["\uc774\ub984:"],"%1$s (%2$s of %3$s)":["%1$s (%3$s \uc911 %2$s)"],"Remove item":["\uc544\uc774\ud15c \uc81c\uac70"],"Color code: %s":["\uc0c9\uc0c1 \ucf54\ub4dc: %s"],"Skip to the selected block":["\uc120\ud0dd\ub41c \ube14\ub85d\uc73c\ub85c \uac74\ub108\ub6f0\uae30"],"Publish\u2026":["\uacf5\uac1c..."],"Schedule\u2026":["\uc608\uc57d..."],"Edit post permalink":["\uae00 \uace0\uc720\uc8fc\uc18c \ud3b8\uc9d1"],"Show Block Settings":["\ube14\ub85d \uc124\uc815 \ubcf4\uc774\uae30"],"Hide Block Settings":["\ube14\ub85d \uc124\uc815 \uac10\ucd94\uae30"],"Block settings closed":["\ube14\ub85d \uc124\uc815 \ub2eb\ud798"],"Close plugin":["\ud50c\ub7ec\uadf8\uc778 \ub2eb\uae30"],"Link settings":[],Unlink:["\ub9c1\ud06c \uc81c\uac70"],"Page break":["\ud398\uc774\uc9c0 \ube0c\ub808\uc774\ud06c"],pagination:["\ud398\uc774\uc9c0 \ucc98\ub9ac"],"next page":["\ub2e4\uc74c \ud398\uc774\uc9c0"],"Image Size":["\uc774\ubbf8\uc9c0 \ud06c\uae30"],Height:["\ub192\uc774"],Width:["\ub113\uc774"],"Image Dimensions":["\uc774\ubbf8\uc9c0 \ud06c\uae30"],"Thumbnails are not cropped.":["\uc378\ub124\uc77c\uc774 \uc798\ub77c\uc9c0\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."],"Thumbnails are cropped to align.":["\uc378\ub124\uc77c\uc774 \uc815\ub82c\uc744 \uc704\ud574 \uc798\ub77c\uc84c\uc2b5\ub2c8\ub2e4."],"Media Library":["\ubbf8\ub514\uc5b4 \ub77c\uc774\ube0c\ub7ec\ub9ac"],Advanced:["\uace0\uae09"],"Add item":[],"Reset the template":["\ud15c\ud50c\ub9bf \ucd08\uae30\ud654"],"Keep it as is":["\ud604\uc7ac \uc0c1\ud0dc \uc720\uc9c0"],"The content of your post doesn\u2019t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":["\ud15c\ud50c\ub9bf\uc744 \ucd08\uae30\ud654\ud558\uba74 \ucf58\ud150\uce20\uc758 \uc190\uc2e4\uc744 \uac00\uc838\uc62c \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uacc4\uc18d\ud558\uae38 \uc6d0\ud558\uc2dc\ub098\uc694?"],"Document Statistics":["\ubb38\uc11c \ud1b5\uacc4"],"is now scheduled. It will go live on":["\uc9c0\uae08 \uc608\uc57d\ub410\uc73c\uba70 \uc900\ube44\ub420 \uac83\uc785\ub2c8\ub2e4."],Scheduled:["\uc608\uc57d\ub428"],"Scheduling\u2026":["\uc608\uc57d\uc911..."],"Code editor selected":["\ucf54\ub4dc \ud3b8\uc9d1\uae30 \uc120\ud0dd\ub428"],"Visual editor selected":["\ube44\uc8fc\uc5bc \ud3b8\uc9d1\uae30 \uc120\ud0dd\ub428"],Plugins:["\ud50c\ub7ec\uadf8\uc778"],"Custom Size":["\uc0ac\uc774\uc988 \uc9c0\uc815"],"Layout Elements":["\ub808\uc774\uc544\uc6c3 \uc694\uc18c"],"term\x04%s removed":["%s \uc81c\uac70\ub428"],"term\x04%s added":["%s \ucd94\uac00\ub428"],"imperative verb\x04Preview":["\ubbf8\ub9ac\ubcf4\uae30"],"Block deleted.":["\ube14\ub85d \uc0ad\uc81c\ub428."],"Block updated.":["\ube14\ub85d \uc5c5\ub370\uc774\ud2b8 \ub428."],"Block created.":["\ube14\ub85d \uc0dd\uc131\ub428."],"Trashing failed":["\ud734\uc9c0\ud1b5 \ucc98\ub9ac \uc2e4\ud328"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["\uc800\uc7a5\ub418\uc9c0 \uc54a\uc740 \ubcc0\uacbd\uc0ac\ud56d\uc774 \uc788\uc2b5\ub2c8\ub2e4. \uacc4\uc18d\ud558\uba74 \uc5c6\uc5b4\uc9d1\ub2c8\ub2e4."],"Document Outline":["\ubb38\uc11c \uc544\uc6c3\ub77c\uc778"],Paragraphs:["\ubb38\ub2e8"],Headings:["\ud5e4\ub529"],Words:["\ub2e8\uc5b4"],"Content structure":[],Public:["\uacf5\uac1c"],"Protected with a password you choose. Only those with the password can view this post.":["\uc120\ud0dd\ud55c \ube44\ubc00\ubc88\ud638\ub85c \ubcf4\ud638\ub428. \ube44\ubc00\ubc88\ud638\uac00 \uc788\ub294 \uc0ac\ub78c\ub9cc \uc774 \uae00\uc744 \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4."],"Password Protected":["\ube44\ubc00\ubc88\ud638\ub85c \ubcf4\ud638\ub428"],"Only visible to site admins and editors.":["\uc0ac\uc774\ud2b8 \uad00\ub9ac\uc790\uc640 \ud3b8\uc9d1\uc790\ub9cc \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4."],Private:["\ube44\uacf5\uac1c"],"Visible to everyone.":["\ubaa8\ub4e0 \uc0ac\ub78c \ubcf4\uae30 \uac00\ub2a5."],"Post Visibility":["\uae00 \uac00\uc2dc\uc131"],"Would you like to privately publish this post now?":["\uc9c0\uae08 \uc774 \uae00\uc744 \ube44\uacf5\uac1c\ub85c \ubc1c\ud589\ud558\uc2dc\uaca0\uc2b5\ub2c8\ub07c?"],"Use a secure password":["\ubcf4\uc548 \ube44\uc77c\ubc88\ud638 \uc0ac\uc6a9"],"Create password":["\ube44\ubc00\ubc88\ud638 \uc0dd\uc131"],"Move to Trash":[],"Parent Term":["\ubd80\ubaa8 \ud140"],"Parent Category":["\ubd80\ubaa8 \uce74\ud14c\uace0\ub9ac"],"Add new term":["\uc0c8 \ud140 \ucd94\uac00"],"Add new category":["\uc0c8 \uce74\ud14c\uace0\ub9ac \ucd94\uac00"],Term:["\ud140"],Tag:["\ud0dc\uadf8"],"Add New Term":["\uc0c8 \ud140 \ucd94\uac00"],"Add New Tag":["\uc0c8 \ud0dc\uadf8 \ucd94\uac00"],"Switch to Draft":["\uc784\uc2dc\uae00\ub85c \uc804\ud658"],"Are you sure you want to unpublish this post?":["\uc815\ub9d0\ub85c \uc774\uae00\uc744 \ubc1c\ud589 \ucde8\uc18c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?"],Immediately:["\uc989\uc2dc"],"Save Draft":["\uc784\uc2dc \uae00\ub85c \uc800\uc7a5\ud558\uae30"],Saving:["\uc800\uc7a5\uc911"],"Publish:":["\uacf5\uac1c\ud558\uae30:"],"Visibility:":["\uac00\uc2dc\uc131:"],"Are you ready to publish?":["\uacf5\uac1c\ud560 \uc900\ube44\uac00 \ub410\ub098\uc694?"],"Copy Link":["\ub9c1\ud06c \ubcf5\uc0ac\ud558\uae30"],"What\u2019s next?":[],"is now live.":["\ud604\uc7ac \ub77c\uc774\ube0c \uc0c1\ud0dc\uc785\ub2c8\ub2e4."],Published:["\uacf5\uac1c\ub428"],Schedule:["\uc608\uc57d"],Update:["\uc5c5\ub370\uc774\ud2b8"],"Submit for Review":["\ub9ac\ubdf0\ub97c \uc704\ud55c \uc81c\ucd9c"],"Updating\u2026":["\uc5c5\ub370\uc774\ud2b8 \uc911..."],"Publishing\u2026":["\uacf5\uac1c\uc911..."],"Allow Pingbacks & Trackbacks":["\ud551\ubc31 \ubc0f \ud2b8\ub799\ubc31 \ud5c8\uc6a9"],"Permalink:":["\uace0\uc720\uc8fc\uc18c:"],"Pending Review":["\ub300\uae30\uc911\uc778 \ub9ac\ubdf0"],"%d Revision":["%d \ub9ac\ube44\uc804"],"Suggestion:":["\uc81c\uc548:"],"Post Format":["\uae00 \ud3ec\ub9f7"],Chat:["\ucc44\ud305"],Status:["\uc0c1\ud0dc"],Standard:["\ud45c\uc900"],Aside:["\ucd94\uac00 \uc815\ubcf4"],"Set Featured Image":[],"Learn more about manual excerpts":["\uc218\ub3d9 \uc694\uc57d\uc5d0 \ub300\ud574 \ub354 \uc54c\uc544\ubcf4\uae30"],"Write an excerpt (optional)":["\uc694\uc57d \uc4f0\uae30 (\uc120\ud0dd\uc801)"],"Allow Comments":["\ub313\uae00 \ud5c8\uc6a9"],"Template:":["\ud15c\ud50c\ub9bf:"],"no parent":["\ubd80\ubaa8 \uc5c6\uc74c"],"no title":["\uc81c\ubaa9 \uc5c6\uc74c"],Order:["\uc21c\uc11c"],"No blocks found.":["\ube14\ub85d\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."],"%d result found.":[],Saved:["\uc800\uc7a5\ub428"],Embeds:["\uc784\ubca0\ub4dc"],Blocks:["\ube14\ub85d"],"Search for a block":["\ube14\ub85d \uac80\uc0c9"],"Add block":["\ube14\ub7ed \ucd94\uac00"],"Add %s":["%s \ucd94\uac00"],"Copy Error":["\ubcf5\uc0ac \uc5d0\ub7ec"],"Copy Post Text":["\uae00 \ud14d\uc2a4\ud2b8 \ubcf5\uc0ac"],"Attempt Recovery":["\ubcf5\uad6c \uc2dc\ub3c4"],"The editor has encountered an unexpected error.":["\ud3b8\uc9d1\uae30\uac00 \uc608\uc0c1\uce58 \ubabb\ud55c \uc5d0\ub7ec\ub97c \ubc1c\uacac\ud588\uc2b5\ub2c8\ub2e4."],Undo:["\ub418\ub3cc\ub9ac\uae30"],Redo:["\ub2e4\uc2dc\ud558\uae30"],"(Multiple H1 headings are not recommended)":["(\ub2e4\uc911 H1 \ud5e4\ub529\uc740 \ucd94\ucc9c\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4)"],"(Your theme may already use a H1 for the post title)":["(\uc0ac\uc6a9\uc911\uc778 \ud14c\ub9c8\uac00 \uc774\ubbf8 \uae00 \uc81c\ubaa9\uc73c\ub85c H1\uc744 \uc0ac\uc6a9\ud558\uace0 \uc788\uc744 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4)"],"(Incorrect heading level)":["(\uc62c\ubc14\ub974\uc9c0 \uc54a\uc740 \ud5e4\ub529 \ub808\ubca8)"],"(Empty heading)":["(\ube48 \ud5e4\ub529)"],"Block Styles":["\ube14\ub7ed \uc2a4\ud0c0\uc77c"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":["\uc77c\ubc18 \ube14\ub85d\uc73c\ub85c \uc804\ud658"],"More options":[],"Edit visually":["\ube44\uc8fc\uc5bc\ub85c \ud3b8\uc9d1"],Duplicate:["\ubcf5\uc81c"],"Blocks cannot be moved down as they are already at the bottom":["\ube14\ub85d\uc740 \uc774\ubbf8 \ud558\ub2e8\uc5d0 \uc788\uc73c\ubbc0\ub85c \uc544\ub798\ub85c \uc774\ub3d9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4"],"Blocks cannot be moved up as they are already at the top":["\ube14\ub85d\uc740 \uc774\ubbf8 \uc0c1\ub2e8\uc5d0 \uc788\uc73c\ubbc0\ub85c \uc704\ub85c \uc774\ub3d9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["\ube14\ub85d %s\uc740(\ub294) \ube14\ub85d\uc77c\ubfd0\uc774\ubbc0\ub85c \uc774\ub3d9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4"],"Edit as HTML":["HTML\ub85c \ud3b8\uc9d1"],"Convert to Blocks":["\ube14\ub85d\uc73c\ub85c \ubcc0\ud658"],"Block: %s":["\ube14\ub85d: %s"],"This block has encountered an error and cannot be previewed.":["\uc774 \ube14\ub85d\uc740 \uc5d0\ub7ec\uac00 \uc788\uc73c\uba70 \ubbf8\ub9ac\ubcf4\uae30 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."],"No block selected.":["\ube14\ub7ed\uc774 \uc120\ud0dd\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."],"Transform into:":["\ub2e4\uc74c\uc73c\ub85c \ubcc0\ud615\ud558\uae30:"],Remove:["\uc81c\uac70"],"Find original":["\uc6d0\ubcf8 \ucc3e\uae30"],"Copy All Content":["\ubaa8\ub4e0 \ucf58\ud150\uce20 \ubcf5\uc0ac"],"Copied!":["\ubcf5\uc0ac\ub428!"],"Additional settings are now available in the Editor block settings sidebar":["\ucd94\uac00\uc801\uc778 \uc124\uc815\uc740 \ud3b8\uc9d1\uae30 \ube14\ub85d \uc124\uc815 \uc0ac\uc774\ub4dc\ubc14\uc5d0\uc11c \uac00\ub2a5\ud569\ub2c8\ub2e4."],Visibility:["\uac00\uc2dc\uc131"],"Status & Visibility":["\uc0c1\ud0dc \ubc0f \uac00\uc2dc\uc131"],"Page Attributes":["\ud398\uc774\uc9c0 \uc18d\uc131"],Block:["\ube14\ub7ed"],Document:["\ubb38\uc11c"],"Featured Image":["\ud2b9\uc131 \uc774\ubbf8\uc9c0"],"Close settings":["\ub2eb\uae30 \uc124\uc815"],"Editor content":["\ud3b8\uc9d1\uae30 \ucf58\ud150\uce20"],Tools:["\ub3c4\uad6c"],Editor:["\ud3b8\uc9d1\uae30"],"Code Editor":["\ucf54\ub4dc \ud3b8\uc9d1\uae30"],"Visual Editor":["\ube44\uc8fc\uc5bc \ud3b8\uc9d1\uae30"],"Editor top bar":["\ud3b8\uc9d1\uae30 \ud0d1\ubc14"],Settings:["\uc124\uc815"],Reset:["\ucd08\uae30\ud654"],"Dismiss this notice":["\uc774 \uc54c\ub9bc \ubb34\uc2dc"],"Item removed.":["\uc544\uc774\ud15c \uc81c\uac70\ub428."],"Item added.":["\uc544\uc774\ud15c \ucd94\uac00\ub428."],"Drop files to upload":["\uc5c5\ub85c\ub4dc \ud558\ub824\uba74 \ud30c\uc77c\uc744 \ub193\uc73c\uc138\uc694"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["\uc54c \uc218 \uc5c6\ub294 \uc5d0\ub7ec \ubc1c\uc0dd\ud568"],"No results.":["\uacb0\uacfc\uac00 \uc5c6\uc2b5\ub2c8\ub2e4."],"%d result found, use up and down arrow keys to navigate.":["%d \uacb0\uacfc \ucc3e\uc74c. \uc704 \uc544\ub798\ub85c \uc774\ub3d9\ud558\ub824\uba74 \ud654\uc0b4\ud45c \ud0a4\ub97c \uc0ac\uc6a9\ud558\uc138\uc694."],"(no title)":["(\uc81c\ubaa9 \uc5c6\uc74c)"],URL:["URL"],Submit:["\uc81c\ucd9c\ud558\uae30"],Close:["\ub2eb\uae30"],"Insert link":[],"Edit link":[],Link:["\ub9c1\ud06c"],Strikethrough:["\ucde8\uc18c\uc120"],Italic:["\uc774\ud0e4\ub9ad"],Bold:["\uad75\uac8c"],"Remove link":[],"Number of items":["\uc544\uc774\ud15c \uc218"],All:["\ubaa8\ub450"],Category:["\uce74\ud14c\uace0\ub9ac"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["\uc624\ub798\ub41c\uc21c"],"Newest to Oldest":["\uc0c8\ub85c\uc6b4 \uc21c"],"Order by":["\uc815\ub82c\uae30\uc900"],Select:["\uc120\ud0dd"],"Select or Upload Media":["\uc120\ud0dd \ub610\ub294 \ubbf8\ub514\uc5b4 \uc5c5\ub85c\ub4dc"],Video:["\ube44\ub514\uc624"],"Edit video":["\ube44\ub514\uc624 \ud3b8\uc9d1"],"Write\u2026":["\uc4f0\uae30..."],poetry:["\u8a69"],Verse:["\uc0b0\ubb38"],"New Column":["\uc0c8 \uc5f4"],"Delete Column":["\uceec\ub7fc \uc0ad\uc81c"],"Add Column After":["\ub2e4\uc74c\uc5d0 \uceec\ub7fc \ucd94\uac00"],"Add Column Before":["\uc774\uc804\uc5d0 \uceec\ub7fc \ucd94\uac00"],"Delete Row":["\ud589 \uc0ad\uc81c"],"Add Row After":["\ub2e4\uc74c\uc5d0 \ud589 \ucd94\uac00"],"Add Row Before":["\uc774\uc804\uc5d0 \ud589 \ucd94\uac00"],"Edit table":[],Table:["\ud14c\uc774\ube14"],"Write subheading\u2026":["\ubd80\uc81c\ubaa9 \uc4f0\uae30..."],"Write shortcode here\u2026":["\uc20f\ucf54\ub4dc\ub97c \uc5ec\uae30\uc11c \uc4f0\uae30..."],Shortcode:["\uc20f\ucf54\ub4dc"],divider:["\ub098\ub214\uc790"],"horizontal-line":["\uac00\ub85c\uc904"],Separator:["\ubd84\ub9ac\uc790"],Quote:["\uc778\uc6a9"],"Write citation\u2026":["\uc778\uc6a9 \uc4f0\uae30..."],"Write quote\u2026":["\uc778\uc6a9 \ud14d\uc2a4\ud2b8 \uc4f0\uae30..."],Pullquote:["\uc694\uc57d\uae00"],"Write preformatted text\u2026":["\uc11c\uc2dd\uc774 \uc124\uc815\ub41c \ud14d\uc2a4\ud2b8 \uc4f0\uae30..."],Preformatted:["\ubbf8\ub9ac \ud3ec\ub9f7\ub428"],text:["\ud14d\uc2a4\ud2b8"],Paragraph:["\ubb38\ub2e8"],"Font Size":["\ud3f0\ud2b8 \uc0ac\uc774\uc988"],"Drop Cap":["\ub4dc\ub86d \ucea1"],"Text Settings":["\ud14d\uc2a4\ud2b8 \uc124\uc815"],"Read more":["\ub354 \uc77d\uae30"],"Write list\u2026":["\ubaa9\ub85d \uc4f0\uae30..."],"numbered list":["\uc21c\uc11c\uc788\ub294 \ubaa9\ub85d"],"ordered list":["\uc21c\uc11c\uc788\ub294 \ubaa9\ub85d"],"bullet list":["\uc21c\uc11c\uc5c6\ub294 \ubaa9\ub85d"],"Indent list item":["\ubaa9\ub85d \uc544\uc774\ud15c \ub4e4\uc5ec\uc4f0\uae30"],"Outdent list item":["\ubaa9\ub85d \uc544\uc774\ud15c \ub0b4\uc5b4\uc4f0\uae30"],"Convert to ordered list":["\uc21c\uc11c\uc788\ub294 \ubaa9\ub85d\uc73c\ub85c \ubcc0\ud658"],"Convert to unordered list":["\uc21c\uc11c\uc5c6\ub294 \ubaa9\ub85d\uc73c\ub85c \ubcc0\uacbd"],List:["\ubaa9\ub85d"],"recent posts":["\ucd5c\uadfc \uae00"],"No posts found.":["\uae00\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."],"Latest Posts":["\ucd5c\uadfc \uae00"],"Display post date":["\ubc1c\ud589\uc77c \ud45c\uc2dc"],"Grid view":[],"List view":[],photo:["\uc0ac\uc9c4"],"Image Settings":["\uc774\ubbf8\uc9c0 \uc124\uc815"],Image:["\uc774\ubbf8\uc9c0"],Preview:["\ubbf8\ub9ac\ubcf4\uae30"],embed:["\uc784\ubca0\ub4dc"],"Custom HTML":["\uc0ac\uc6a9\uc790 \uc815\uc758 HTML"],subtitle:["\ubd80\uc81c\ubaa9"],title:["\uc81c\ubaa9"],Heading:["\ud5e4\ub529\uc694\uc18c"],"Write heading\u2026":["\uc81c\ubaa9 \uc4f0\uae30..."],"Heading %d":["\ud5e4\ub529 %d"],Level:["\ub808\ubca8"],"Heading Settings":["\ud5e4\ub529 \uc124\uc815"],photos:["\uc0ac\uc9c4"],images:["\uc774\ubbf8\uc9c0"],"Remove Image":["\uc774\ubbf8\uc9c0 \uc81c\uac70"],None:["\uc5c6\uc74c"],"Media File":["\ubbf8\ub514\uc5b4 \ud30c\uc77c"],"Attachment Page":["\ucca8\ubd80 \ud398\uc774\uc9c0"],"Crop Images":["\uc774\ubbf8\uc9c0 \uc790\ub974\uae30"],"Gallery Settings":["\uac24\ub7ec\ub9ac \uc124\uc815"],Gallery:["\uac24\ub7ec\ub9ac"],Classic:["\ud074\ub798\uc2dd"],video:["\ube44\ub514\uc624"],audio:["\uc624\ub514\uc624"],music:["\uc74c\uc545"],image:["\uc774\ubbf8\uc9c0"],blog:["\ube14\ub85c\uadf8"],post:["\uae00"],"Embedded content from %s":["%s\ub85c\ubd80\ud130 \uc784\ubca0\ub4dc \ub41c \ucf58\ud150\uce20"],"Enter URL to embed here\u2026":["\uc5ec\uae30\uc5d0 \uc784\ubca0\ub4dc \ud558\ub824\uba74 URL\uc744 \uc785\ub825\ud558\uc138\uc694..."],"%s URL":["%s URL"],"Embedding\u2026":["\uc784\ubca0\ub4dc\uc911..."],"Write title\u2026":["\uc81c\ubaa9 \uc4f0\uae30..."],"Fixed Background":["\uace0\uc815 \ubc30\uacbd"],"Edit image":["\uc774\ubbf8\uc9c0 \ud3b8\uc9d1"],Columns:["\uceec\ub7fc"],Experiments:[],Code:["\ucf54\ub4dc"],"Write code\u2026":["\ucf54\ub4dc \uc4f0\uae30..."],Categories:["\uce74\ud14c\uace0\ub9ac"],"Show Hierarchy":[],"Show post counts":["\ubcf4\uc5ec\uc904 \uae00 \uc218"],"Categories Settings":["\uce74\ud14c\uace0\ub9ac \uc124\uc815"],"Add text\u2026":["\ud14d\uc2a4\ud2b8 \ucd94\uac00..."],Button:["\ubc84\ud2bc"],Apply:["\uc801\uc6a9"],"Text Color":["\ud14d\uc2a4\ud2b8 \uc0c9\uc0c1"],"Background Color":["\ubc30\uacbd\uc0c9\uc0c1"],"Block has been deleted or is unavailable.":["\ube14\ub85d\uc774 \uc0ad\uc81c\ub410\uac70\ub098 \uac00\ub2a5\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."],"Reusable Blocks":[],Cancel:["\ucde8\uc18c"],Edit:["\ud3b8\uc9d1"],"Edit audio":["\uc624\ub514\uc624 \ud3b8\uc9d1"],"Write caption\u2026":["\ucea1\uc158 \uc4f0\uae30..."],"Use URL":["URL \uc0ac\uc6a9"],Audio:["\uc624\ub514\uc624"],Upload:["\uc5c5\ub85c\ub4dc"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML \ub9c1\ud06c"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\uc774 \uc0c9\uc0c1\uc870\ud569\uc740 \uc0ac\ub78c\ub4e4\uc774 \uc77d\uae30 \uc5b4\ub824\uc6b8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub354 \ubc1d\uc740 \ubc30\uacbd \uc0c9\uc0c1 \uadf8\ub9ac\uace0/\ub610\ub294 \uc5b4\ub450\uc6b4 \uae00\uc790 \uc0c9\uc0c1\uc744 \uc0ac\uc6a9\ud574\ubcf4\uc138\uc694."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\uc774 \uc0c9\uc0c1\uc870\ud569\uc740 \uc0ac\ub78c\ub4e4\uc774 \uc77d\uae30 \uc5b4\ub824\uc6b8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub354 \uc5b4\ub450\uc6b4 \ubc30\uacbd \uc0c9\uc0c1 \uadf8\ub9ac\uace0/\ub610\ub294 \ubc1d\uc740 \uae00\uc790 \uc0c9\uc0c1\uc744 \uc0ac\uc6a9\ud574\ubcf4\uc138\uc694."],Clear:["\ud074\ub9ac\uc5b4"],"Custom color picker":["\uc0ac\uc6a9\uc790 \uc815\uc758 \uc0c9\uc0c1 \ud53c\ucee4"],"Color: %s":["\uc0c9\uc0c1: %s"],"Full Width":[],"Wide Width":[],Widgets:["\uc704\uc82f"],Formatting:["\ud3ec\ub9f7"],"Common Blocks":["\uacf5\ud1b5 \ube14\ub85d"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["1440\ubd80\ud130 \uc778\uc1c4. \uc774\uac83\uc740 \ucf54\uc5b4\uc758 \uc0c8\ub85c\uc6b4 \ube14\ub85d \ud3b8\uc9d1\uae30\ub97c \uc704\ud55c \uac1c\ubc1c \ud50c\ub7ec\uadf8\uc778\uc785\ub2c8\ub2e4."],"Add title":["\uc81c\ubaa9 \ucd94\uac00"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["\uae00\uc4f4\uc774"],Slug:["\uc2ac\ub7ec\uadf8"],Discussion:["\ud1a0\ub860"],"Custom Fields":["\uc0ac\uc6a9\uc790 \uc815\uc758 \ud544\ub4dc"],Excerpt:["\uc694\uc57d\uae00"],Publish:["\uacf5\uac1c\ud558\uae30"],Metadata:["\uba54\ud0c0\ub370\uc774\ud130"],Save:["\uc800\uc7a5\ud558\uae30"],Documentation:["\ubb38\uc11c"],"Select Category":["\uce74\ud14c\uace0\ub9ac \uc120\ud0dd"],"(Untitled)":["(\uc81c\ubaa9 \uc5c6\uc74c)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["\uad6c\ud150\ubca0\ub974\ud06c \ud300"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["\uad6c\ud150\ubca0\ub974\uadf8"],Demo:["\ub370\ubaa8"],"%s ago":["%s \uc804"],"Block style name must be a string.":[]}},853,[]); +__d(function(e,t,r,n,i,o,l){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":["Du er trolig frakoblet nettet."],"Justify items right":["Just\xe9r elementer mot h\xf8yre"],"Justify items center":["Just\xe9r elementer mot midten"],"Justify items left":["Just\xe9r elementer mot venstre"],"Change items justification":["Endre justering av elementer"],"The media file has been replaced":["Mediefilen er erstattet"],Replace:["Erstatt"],"Choose pattern":["Velg m\xf8nster"],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:["Neste"],Previous:["Forrige"],Finish:["Fullf\xf8r"],"Page %1$d of %2$d":["Side %1$d av %2$d"],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":["Sidemaler"],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":["Kom i gang"],inserter:[],"Post Title":["Innleggstittel"],"Add nofollow to link":["Legg ikke f\xf8lg p\xe5 lenken"],"Link Settings":["Lenkeinnstillinger"],"Add Submenu":["Legg til undermeny"],"Add link\u2026":["Legg til lenke..."],Dark:["M\xf8rk"],Light:["Lys"],recording:["opptak"],podcast:["podkast"],sound:["lyd"],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":["Legg til"],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:["Navigasjon"],"Loading Navigation\u2026":["Laster navigasjon..."],"Navigation Structure":["Navigasjonsstruktur"],"Create empty":["Opprett tom"],"Create from all top pages":["Opprett fra alle toppniv\xe5-sider"],"Create a Navigation from all existing pages, or create an empty one.":["Lag en navigasjonslokk fra alle eksisterende sider eller lag en tom."],"Navigation Link":["Navigasjonslenke"],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":["Bruk den samme %s p\xe5 alle skjermst\xf8rrelser"],"Large screens":["Store skjermer"],"Medium screens":["Middelsstore skjermer"],"Small screens":["Sm\xe5 skjermer"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:["Endre"],"Currently selected":["N\xe5 valgt"],"Search or type url":["S\xf8k eller skriv url"],"Press ENTER to add this link":["Trykk ENTER for \xe5 legge til denne lenken"],"Currently selected link settings":["Innstillinger for n\xe5v\xe6rende valgte lenke"],"Generic label for block inserter button\x04Add block":["Legg til blokk"],"directly add the only allowed block\x04Add %s":["Legg til %s"],"%s block added":["%s-blokk lagt til"],"Move %s":["Flytt %s"],"Extra Large":["Ekstra stor"],"Block breadcrumb":["Blokk-br\xf8dsmuler"],"Site Title":["Nettstedstittel"],"Open Colors Selector":["\xc5pne fargevelger"],"Overlay Gradient":["Gradient for dekke"],"Templates list":["Maloversikt"],"Templates list navigation":["Navigering i maloversikt"],"Filter templates list":["Filtrer maloversikt"],"Uploaded to this template":["Lastet opp til denne malen"],"Insert into template":["Sett inn i malen"],"Template archives":["Malarkiver"],"No templates found in Trash.":["Ingen maler funnet i papirkurven."],"No templates found.":["Ingen maler funnet."],"Parent Template:":["Forelder-mal:"],"Search Templates":["S\xf8k maler"],"All Templates":["Alle maler"],"View Template":["Vis mal"],"Edit Template":["Rediger mal"],"New Template":["Ny mal"],"Add New Template":["Legg til ny mal"],"Template\x04Add New":["Legg til ny"],"Admin Menu text\x04Templates":["Maler"],Template:["Mal"],"No matching template found":["Ingen passende maler funnet"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradientkode: %s"],"All content copied.":["Alt innhold kopiert."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Medieopplasting mislyktes. Om dette er en fotografi elelr stort bilde, vennligst skaler det ned og fors\xf8k igjen."],Gradient:["Gradient"],"Gradient Presets":["Forh\xe5ndsinnstillinger for gradienter"],"No Preview Available.":["Ingen forh\xe5ndsvisning tilgjengelig."],Midnight:["Midnatt"],"Electric grass":["Elektrisk gress"],"Pale ocean":["Blekt hav"],"Luminous dusk":["Lysende skumring"],"Blush bordeaux":["R\xf8dlig bordeaux"],"Blush light purple":["R\xf8dlig lyselilla"],"Cool to warm spectrum":["Kaldt til varmt spektrum"],"Very light gray to cyan bluish gray":["Veldig lysegr\xe5 til bl\xe5lig cyan-gr\xe5"],"Luminous vivid orange to vivid red":["Lysende, levende oransje til levende r\xf8d"],"Luminous vivid amber to luminous vivid orange":["Lysende, levende rav til lysende, levende oransje"],"Light green cyan to vivid green cyan":["Lysegr\xf8nn cyan til levende gr\xf8nn cyan"],"Vivid cyan blue to vivid purple":["Levende cyan bl\xe5 til levende lilla"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6. desember 2018"],"February 21, 2019":["21. februar 2019"],"May 7, 2019":["7. mai 2019"],"Release Date":["Utgivelsesdato"],"Jazz Musician":["Jazzmusiker"],Version:["Versjon"],"Six.":["Seks."],"Five.":["Fem."],"Four.":["Fire."],"Three.":["Tre."],"Two.":["To."],"One.":["\xc9n."],"One of the hardest things to do in technology is disrupt yourself.":["Noe av det vanskeligste \xe5 gj\xf8re i teknologi er \xe5 forstyrre deg selv."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["Rundt dette er en nesten helt svart skjerm. N\xe5r kameraet beveger seg sakte mot vinduet som n\xe6rmest er et frimerke i rammen, vises andre former;"],"Window, very small in the distance, illuminated.":["Vindu, veldig liten avstand, opplyst."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["Gjerdesmetten
Tjener til livet
Lydl\xf8st."],"Welcome to the wonderful world of blocks\u2026":["Velkommen til blokkenes vidunderlige verden..."],"Snow Patrol":["Sn\xf8patrulje"],Dimensions:["Dimensjoner"],"Minimum height in pixels":["Minimum h\xf8yde i piksler"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Handlingsdriver"],"In quoting others, we cite ourselves.":["Ved \xe5 sitere andre, refererer vi til oss selv."],cite:["sitat"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc dukker opp\u2014rolig, sn\xf8rik og fredelig."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["I en landsby La Mancha, hvis navn jeg ikke har lyst til \xe5 huske, bodde det for ikke lenge siden en av disse herrene som holder en lanse i lansestativ, et gammelt skjold, en mager hakke og en greyhound i oppl\xe6ring."],"Block navigation":["Blokknavigering"],"Enable Full Site Editing":["Aktiver redigering av hele nettstedet"],"Full Site Editing":["Redigering av hele nettstedet"],"Templates to include in your theme.":["Maler \xe5 inkludere i ditt tema."],Templates:["Maler"],"Inserter Help Panel":["Hjelpepanel for innsetting"],"Pre-publish Checks":["Kontroll f\xf8r publisering"],"Please contact your site administrator to install new blocks.":["Vennligst kontakt din nettstedsadministrator for \xe5 installere nye blokker."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Ingen blokker funnet i ditt bibliotek. Vennligst kontakt din nettstedsadministrator for \xe5 installere nye blokker."],"No blocks found in your library.":["Ingen blokker funnet i ditt bibliotek."],"No blocks found in your library. These blocks can be downloaded and installed:":["Ingen blokker funnet i ditt bibliotek. Disse blokkene kan lastes ned og installeres:"],"No blocks found in your library. We did find %d block available for download.":["Ingen blokker funnet i ditt bibliotek. Vi fant %d blokk tilgjengelig for nedlasting.","Ingen blokker funnet i ditt bibliotek. Vi fant %d blokker tilgjengelig for nedlasting."],"Block previews can\u2019t load.":["Forh\xe5ndsvisning av blokk laster ikke."],Retry:["Pr\xf8v igjen"],"Block previews can't install.":["Forh\xe5ndsvisning av blokk kan ikke installeres."],"Updated %s":["Oppdaterte %s"],"%d active installation":["%d aktiv installasjon","%d aktive installasjoner"],"This author has %d block, with an average rating of %d.":["Denne forfatteren har %d blokk, men gjennomsnitlig vurdering %d.","Denne forfatteren har %d blokker, men gjennomsnitlig vurdering %d."],"Authored by %s":["Forfattet av %s"],Add:["Legg til"],"%d total rating":["%d totalvurderig","%d totalvurderinger"],"%s out of 5 stars":["%s av 5 stjerner"],"Enter Address":["Oppgi adresse"],"Pill Shape":["Pill Shape"],"Logos Only":["Kun logoer"],"Create a block of links to your social media or external sites":["Lag en blokk med lenker til sosiale medier eller eksterne nettsteder"],"Social links":["Sosiale lenker"],"Open block navigator":["\xc5pne blokknavigator"],"Attachment page":["Vedleggsside"],Fill:["Fyll"],"Link rel":["Lenke-rel"],"Border Radius":["Kantradius"],"Write gallery caption\u2026":["Skriv en galleri-bildetekst..."],"Content Blocks":["Innholdsblokker"],"Restore the backup":["Gjenopprett sikkerhetskopien"],"The backup of this post in your browser is different from the version below.":["Sikkerhetskopien av dette innlegget i din nettleser er forskjellig fra versjonen nedenfor."],"Enable Block Directory search":["Aktiver s\xf8k blokk-katalogen"],"Block Directory":["Blokk-katalog"],"Unable to connect to the filesystem. Please confirm your credentials.":["Kunne ikke koble til filsystemet. Vennligst bekreft din p\xe5logging."],"Sorry, you are not allowed to install blocks.":["Beklager, du har ikke tillatelse til \xe5 installere blokker."],"%1$d block is disabled.":["%1$d blokk deaktivert.","%1$d blokker deaktivert."],"Reverse List Numbering":["Baklengs listenummerering"],"Start Value":["Startverdi"],"Ordered List Settings":["Innstillinger for ordnet liste"],"Clear Media":["Fjern media"],"block style\x04Circle Mask":["Sirkelmaske"],"Default Style":["Standardstil"],"Not set":["Ikke bestemt"],"While writing, you can press / to quickly insert new blocks.":["N\xe5r du skriver kan du trykke / for raskt \xe5 sette inn nye blokker."],"Browse through the library to learn more about what each block does.":["Bla gjennom biblioteket for \xe5 l\xe6re mer om hva hver blokk gj\xf8r."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Det er blokker tilgjengelig for all slags innhold: Sett inn tekst, overskrift, bilder, lister, videoer, tabeller og mye mer."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Velkommen til blokkenes vidunderlige verden! Blokker er grunnlaget for alt innhold i redigeringsverkt\xf8yet."],"Version of the content block format used by the object.":["Versjonen av innholdsblokkformatet brukt av objektet. "],"HTML content for the object, transformed for display.":["HTML-innhold for objektet, transformert for visning."],"Content for the object, as it exists in the database.":["Innhold av objektet, slik det eksisterer i databasen."],"The content for the object.":["Innholdet for objektet."],"Change column alignment":["Endre kolonnejustering"],"Align Column Right":["H\xf8yrejuster kolonne"],"Align Column Center":["Midtstill kolonne"],"Align Column Left":["Venstrejuster kolonne"],Color:["Farge"],"Vivid purple":["Levende lilla"],"Disable & Reload":["Deaktiver og last p\xe5 nytt"],"Enable & Reload":["Aktiver og last p\xe5 nytt"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Oppfriskning av siden er n\xf8dvendig for denne endringen. S\xf8rg for at ditt innhold er lagret for du oppfrisker."],"Display these keyboard shortcuts.":["Vis disse tastatursnarveiene."],"Experiments Settings":["Innstillinger for eksperimenter"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg har noen eksperimentelle funksjoner som du kan skru p\xe5. Velg bare de du kan tenke deg \xe5 bruke. Disse funksjonene vil trolig endres s\xe5 det er ikke anbefalt \xe5 bruke dem i produksjon,"],"Enable Widgets Screen and Legacy Widget Block":["Aktiver skjerm for widgeter og klassisk widget-blokk"],"Experiment settings":["Innstillinger for eksperimenter"],"Block name name must be a string.":["Navn p\xe5 blokknavn m\xe5 v\xe6re en streng."],Custom:["Tilpasset"],Draft:["Kladd"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blokk \"%1$s\" inneholder ikke en stil med navn \"%2$s.\"."],"Learn more about anchors":["L\xe6r mer om ankere"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Oppgi et ord eller to \u2014\xa0uten mellomrom \u2014\xa0for \xe5 lage en unik nettadresse bare for denne overskriften, kalt et \u201canker.\u201d S\xe5 kan du lenke direkte til denne seksjonen p\xe5 siden."],"Widget Blocks (Experimental)":["Widget-blokker (eksperimentell)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Las opp en video, velg en fra ditt mediebibliotek eller legg til en via en URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Last opp et bilde, velg en fra ditt mediebibliotek eller legg til et via en URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Last opp en lydfil, velg en fra ditt mediebibliotek eller legg til en via en URL."],"Upload a media file or pick one from your media library.":["Last opp en mediefil eller velg en fra ditt mediebibliotek."],Skip:["Hopp over"],"Select a pattern to start with.":["Velg et m\xf8nster \xe5 starte med."],"Add a page, link, or other item to your navigation.":["Legg en sidelenke eller annet element til din navigasjon."],"What's this?":["Hva er dette?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Ikke la s\xf8kemotorer f\xf8lge denne lenken."],"Provide more context about where the link goes.":["Oppgi mer kontekst om hvor lenken g\xe5r."],"Title Attribute":["Tittel-attributt"],"SEO Settings":["SEO-innstillinger"],Description:["Beskrivelse"],"Open in new tab":["\xc5pne i ny fane"],links:["lenker"],navigation:["navigasjon"],menu:["meny"],"Add a navigation block to your site.":["Legg til en navigasjonsblokk p\xe5 ditt nettsted."],"Upload a file or pick one from your media library.":["Last opp en fil eller velg en fra ditt mediebibliotek."],"Learn more about embeds":["L\xe6r mer om innbygginger"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Lim inn en lenke til innholdet du vil vise p\xe5 ditt nettsted."],"Upload an image or video file, or pick one from your media library.":["Last opp et bilde eller en videofil, eller velg en fra ditt mediebibliotek."],"Three columns; wide center column":["Tre kolonner; bred midtkolonne"],"Three columns; equal split":["Tre kolonner; fordelt likt"],"Two columns; two-thirds, one-third split":["To kolonner; fordelt to tredeler, en tredel"],"Two columns; one-third, two-thirds split":["To kolonner; fordelt \xe9n tredel, to tredeler"],"Two columns; equal split":["To kolonner; fordelt likt"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Ditt nettsted har ingen %s, s\xe5 det er ingen ting \xe5 vise akkurat n\xe5."],"More tools & options":["Flere verkt\xf8y og alternativer"],"Create Table":["Lag tabell"],"Insert a table for sharing data.":["Sett inn en tabell for \xe5 dele data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Avgrupp\xe9r"],"verb\x04Group":["Gruppe"],"Separate with commas or the Enter key.":["Adskill med komma eller Enter"],"Separate with commas, spaces, or the Enter key.":["Adskill med komma, mellomrom eller Enter."],"Separate multiple classes with spaces.":["Adskill flere klasser med mellomrom."],"Move image forward":["Flytt bilde forover"],"Move image backward":["Flytt bilde bakover"],"Sorry, you are not allowed to edit sidebars.":["Beklager, du har ikke tillatelse til \xe5 endre sidekolonner."],"Sorry, you are not allowed to read sidebars.":["Beklager, du har ikke tillatelse til \xe5 se sidekolonner."],"The sidebar\u2019s ID.":["Sidekolonnens ID."],"Displays a set of blocks":["Viser en samling blokker"],"Blocks Area":["Blokkomr\xe5de"],"Block rendered as empty.":["Blokken er gjengitt som tom."],"Inline Code":["Inline-kode"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Merk: Automatisk avspilling kan skape problemer med brukervennligheten for enkelt bes\xf8kende."],"Footer section":["Sidebunnseksjon"],"Header section":["Sidehodeseksjon"],"Sorting and Filtering":["Sortering og filtrering"],"Post Meta Settings":["Innstillinger for innleggsmeta"],"Post Content":["Innhold av innlegg"],"Post Content Settings":["Innstillinger for innhold av innlegg"],"Percentage width":["Relativ bredde"],"Column Settings":["Kolonneinnstillinger"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Merk: Automatisk avspilling kan skape problemer med brukervennlighet for enkelte bes\xf8kende."],"Block area updated.":["Blokkomr\xe5de oppdatert."],"Block area scheduled.":["Blokkomr\xe5de planlagt."],"Block area published.":["Blokkomr\xe5de publisert."],"Block areas list":["Oversikt over blokkomr\xe5der"],"Block areas list navigation":["Navigering i oversikt over blokkomr\xe5der"],"Filter block areas list":["Filter oversikten over blokkomr\xe5der"],"No block area found.":["Ingen blokker funnet."],"Search Block Areas":["S\xf8k blokkomr\xe5der"],"All Block Areas":["Alle blokkomr\xe5der"],"View Block Area":["Vis blokkomr\xe5de"],"Edit Block Area":["Rediger blokkomr\xe5de"],"New Block Area":["Nytt blokkomr\xe5de"],"Add New Block Area":["Legg til nyt blokkomr\xe5de"],"admin menu\x04Block Areas":["Blokkomr\xe5der"],"post type singular name\x04Block Area (Experimental)":["Blokkomr\xe5de (eksperimentelt)"],"post type general name\x04Block Area (Experimental)":["Blokkomr\xe5de (eksperimentelt)"],"Experimental custom post type that will store block areas referenced by themes.":["Eksperimentell tilpasset innholdstype som vil lagre blokkomr\xe5der som brukes av temaer."],"Widgets screen content":["Innhold p\xe5 widgets-skjermen"],"Widgets advanced settings":["Avanserte innstillinger for widgeter"],"(experimental)":["(eksperimentell)"],"Block Areas":["Blokkomr\xe5der"],"Widgets screen top bar":["Topprad p\xe5 widgets-skjermen"],"This color combination may be hard for people to read.":["Denne fargekombinasjonen kan v\xe6re vanskelig \xe5 lese for folk."],"There is no poster image currently selected":["Det er for tiden ikke noe plakatbilde valgt"],"The current poster image url is %s":["Den n\xe5v\xe6rende plakatbilde-URL er %s"],section:["seksjon"],row:["rad"],wrapper:["innpakning"],container:["beholder"],"A block that groups other blocks.":["En blokk som grupperer andre blokker."],Group:["Gruppe"],"Crop image to fill entire column":["Beskj\xe6r bildet til \xe5 fylle hele kolonnen"],"Play inline":["Spill inline"],"Leave empty if the image is purely decorative.":["La st\xe5 tomt om bildet kun er til dekorasjon."],"Describe the purpose of the image":["Beskriv hensikten med bildet"],"Add a block":["Legg til en blokk"],"Block vertical alignment setting label\x04Change vertical alignment":["Endre vertikal jjustering"],"Block vertical alignment setting\x04Vertically Align Bottom":["Vertikaljuster til bunn"],"Block vertical alignment setting\x04Vertically Align Middle":["Vertikaljuster til midten"],"Replace Image":["Erstatt bilde"],"Block vertical alignment setting\x04Vertically Align Top":["Vertikaljuster til topp"],"Display a legacy widget.":["Vis en arvet widget"],"Legacy Widget (Experimental)":["Arvet widget (eksperimentell)"],"Change widget":["Endre widget"],"Legacy Widget":["Arvet widget"],"You don't have permissions to use widgets on this site.":["Du har ikke tillatelse til \xe5 bruke widgeter p\xe5 dette nettstedet."],"Select a legacy widget to display:":["Velg en arvet widget \xe5 vise:"],"There are no widgets available.":["Det er ingen widgeter tilgjengelig."],"Change block type or style":["Endre blokk-type eller stil"],"keyboard key\x04Space":["Mellomrom"],"keyboard key\x04Backspace":["Slettetast"],"More rich text controls":["Flere kontroller for rik tekst"],"Search Terms":["S\xf8keord"],"Exit the Editor":["G\xe5 ut av redigeringsverkt\xf8yet"],"Block Manager":["Behandle blokker"],"Class name of the widget.":["Klassenavnet til widgeten"],"Sorry, you are not allowed to access widgets on this site.":["Beklager, du har ikke tilgang til widgeter p\xe5 dette nettstedet."],"Widgets (beta)":["Widgeter (beta)"],link:["lenke"],"Embedded content from %s can't be previewed in the editor.":["Innebygget innhold fra %s kan ikke forh\xe5ndsvises i redieringsverkt\xf8yet."],"Custom Color":["Tilpasset farge"],"Prompt visitors to take action with a button-style link.":["Be bes\xf8kende gj\xf8re en handling via en lenke med knappestil."],"Stick to the top of the blog":["Fest til toppen av innleggssiden"],"Read about permalinks":["Les mer om permalenker"],"The last part of the URL.":["Den siste delen av URL-en."],"URL Slug":["URL-permalenke"],"A cloud of your most used tags.":["En sky med dine mest brukte stikkord."],"Tag Cloud":["Stikkordsky"],Taxonomy:["Taksonomi"],"Tag Cloud Settings":["Innstillinger for stikkordsky"],"- Select -":["- Velg -"],Default:["Standard"],find:["finn"],"Help visitors find your content.":["Hjelp bes\xf8kende finne ditt innhold."],Search:["S\xf8k"],"Add button text\u2026":["Legg til knappetekst..."],"Button text":["Knappetekst"],"Optional placeholder\u2026":["Valgfri plassholder..."],"Optional placeholder text":["Tekst for valgfri plassholder..."],"Add label\u2026":["Legg til etikett"],"Label text":["Tekst p\xe5 etikett"],"image %1$d of %2$d in gallery":["bilde %1$d av %2$d i galleri"],archive:["arkiv"],posts:["innlegg"],"A calendar of your site\u2019s posts.":["En kalender med innlegg fra ditt nettsted."],Calendar:["Kalender"],by:["av"],"An error has occurred, which probably means the feed is down. Try again later.":["En feil har oppst\xe5tt, noe som trolig betyr at innmatingen er nede. Pr\xf8v igjen senere."],"RSS Error:":["RSS-feil:"],"block style\x04Default":["Standard"],"Fullscreen mode deactivated":["Fullskjermmodus deaktivert"],"Fullscreen mode activated":["Fullskjermmodus aktivert"],"Spotlight mode deactivated":["S\xf8kelysmodus deaktivert"],"Spotlight mode activated":["S\xf8kelysmodus aktivert"],"Top toolbar deactivated":["Topp-verkt\xf8ylinje deaktivert"],"Top toolbar activated":["Topp-verkt\xf8ylinje aktivert"],Back:["Tilbake"],"Feature activated":["Funksjon aktivert"],"Feature deactivated":["Funksjon deaktivert"],"Vertical Pos.":["Vertikal pos."],"Horizontal Pos.":["Horisontal pos."],feed:["str\xf8m"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Vis oppf\xf8ringer fra enhver RSS- eller Atom-str\xf8m."],RSS:["RSS"],"Max number of words in excerpt":["Maksimalt antall ord i utdrag"],"Display excerpt":["Vis utdrag"],"Display date":["Vis dato"],"Display author":["Vis forfatter"],"RSS Settings":["RSS-innstillinger"],"Edit RSS URL":["Rediger RSS-URL"],"Content before this block will be shown in the excerpt on your archives page.":["Innhold foran denne blokken vil bli vist som utdrag p\xe5 dine arkivsider."],"Hide the excerpt on the full content page":["Skjul utdrag p\xe5 siden med fullt innhold"],"The excerpt is visible.":["Utdraget er synlig."],"The excerpt is hidden.":["Utdraget er skjult."],"Sorry, this content could not be embedded.":["Beklager, dette innholdet kunne ikke bygges inn."],"Embed Amazon Kindle content.":["Bygg inn innhold fra Amazon Kundle"],ebook:["ebok"],"Embed Crowdsignal (formerly Polldaddy) content.":["Bygg inn innhold fra Crowdsignal (tidligere Polldaddy)"],"Focal Point Picker":["Velger for fokuspunkt"],Underline:["Understrek"],"Attempt Block Recovery":["Fors\xf8k gjenoppretting av blokk"],"Word count type. Do not translate!\x04words":["ord"],"content placeholder\x04Content\u2026":["Innhold..."],"button label\x04Convert to link":["Konverter til lenke"],"button label\x04Try again":["Pr\xf8v igjen"],"Editor tips":["Tips for redigering"],"Block (selected)":["Blokk (valgt)"],"Document (selected)":["Dokument (valgt)"],"%d word":["%d ord","%d ord"],"Top Toolbar":["Verkt\xf8ylinje i toppen"],"Link Rel":["Lenke-relasjon"],"Link CSS Class":["CSS-klasse for lenke"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Lag innhold og lagre det for deg og andre bidragsytere for gjenbruk p\xe5 hele nettstedet. Oppdater blokken og endringene f\xe5r effekt overalt den er brukt."],"To edit the featured image, you need permission to upload media.":["For \xe5 redigere fremhevet bilde trenger du tillatelse til \xe5 laste opp media."],"To edit this block, you need permission to upload media.":["For \xe5 redigere denne blokken trenger du tillatelse til \xe5 laste opp media."],"(selected block)":["(valgt blokk)"],"Block tools":["Verkt\xf8y for blokk"],Permalink:["Permalenke"],"This image has an empty alt attribute":["Dette bildet har en tom alt-tekst"],"This image has an empty alt attribute; its file name is %s":["Dette bildet har en tom alt-tekst; dets filnavn er %s"],"Block area reverted to draft.":["Blokkomr\xe5de satt tilbake til kladd."],"Block area published privately.":["Blokkomr\xe5de privat publisert."],"No block areas found in Trash.":["Ingen blokkomr\xe5der funnet i papirkurven."],"Block\x04Add New":["Legg til"],"add new on admin bar\x04Block Area":["Blokkomr\xe5de"],"Link inserted.":["Lenke satt inn."],"Warning: the link has been inserted but may have errors. Please test it.":["Advarsel: Lenken er satt inn, men kan ha feil. Vennligst test den."],"%s block selected.":["%s blokk valgt.","%s blokker valgt."],Thumbnail:["Miniatyrbilde"],"Full Size":["Full st\xf8rrelse"],"Link selected.":["Lenke valgt."],"Start writing with text or HTML":["Start skrive tekst eller HTML"],"Type text or HTML":["Skriv tekst eller HTML"],"Block icon":["Ikon for blokk"],"Align Text Right":["H\xf8yrejuster tekst"],"Align Text Center":["Midtstill tekst"],"Align Text Left":["Venstrejuster tekst"],"Start writing or type / to choose a block":["Start \xe5 skrive eller tast / for \xe5 velge blokktype"],"Empty block; start writing or type forward slash to choose a block":["Tom blokk; start \xe5 skrive eller tast forlengs skr\xe5strek for \xe5 velge type blokk"],"Paragraph block":["Avsnittsblokk"],"Page Break":["Sideskift"],"Stack on mobile":["Stable p\xe5 mobil"],Annotation:["Merknad"],"Drag images, upload new ones or select files from your library.":["Dra bilder, last opp nye eller velg filer fra ditt bibliotek."],"blocks\x04Most Used":["Mest brukte"],"imperative verb\x04Resolve":["L\xf8s"],"font size name\x04Huge":["Diger"],"font size name\x04Large":["Stor"],"font size name\x04Medium":["Middels"],"font size name\x04Small":["Liten"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Import"],"button label\x04Download":["Last ned"],"button label\x04Embed":["Bygg inn"],"block title\x04Embed":["Innbygging"],"block title\x04Classic":["Klassisk"],"block style\x04Large":["Stor"],"%s (opens in a new tab)":["%s (\xe5pnes i ny fane)"],"Link edited.":["Lenke redigert."],"Link removed.":["Lenke fjernet."],media:["media"],"Double-check your settings before publishing.":["Dobbelstsjekk dine innstillinger f\xf8r publisering."],"Generating preview\u2026":["Genererer forh\xe5ndsvisning..."],"Edit or update the image":["Rediger eller oppdater bildet"],Media:["Media"],"Navigate to the nearest toolbar.":["Naviger til n\xe6rmeste verkt\xf8ylinje."],"Document tools":["Verkt\xf8y for dokument"],"Document and block tools":["Verkt\xf8y for dokument og blokk"],"Embed a video from your media library or upload a new one.":["Bygg inn en video fra ditt mediebibliotek eller last opp en ny."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Sett inn posesi. Bruk et spesielt format for avstand. Eller sit\xe9r en sangtekst."],"Add white space between blocks and customize its height.":["Legg til mellomrom mellom blokker og tilpass dens h\xf8yde."],"Insert additional custom elements with a WordPress shortcode.":["Sett inn tilpassede elementer i tillegg med en WordPress kortkode."],"Create a break between ideas or sections with a horizontal separator.":["Lag et opphold mellom ideer eller seksjoner med et horisontalt skille."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Gi sitert tekst visuell utheving. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Gi spesiell visuell utheving til et sitat fra din tekst."],"Start with the building block of all narrative.":["Start med fortellingen om byggesteinene for alt."],"Separate your content into a multi-page experience.":["Fordel ditt innhold til en flerside-opplevelse."],"Set media and words side-by-side for a richer layout.":["Plasser media og ord side om side for en rikere utforming."],"Media & Text Settings":["Innstillinger for media og tekst"],"Create a bulleted or numbered list.":["Lag punktlister eller nummererte lister."],"Display a list of your most recent comments.":["Vis en liste over de siste kommentarene."],"Insert an image to make a visual statement.":["Sett inn et bilde for \xe5 skape et visuelt uttrykk."],"Add custom HTML code and preview it as you edit.":["Leg til tilpasset HTML-kode og forh\xe5ndsvis mens du redigerer."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduser nye seksjoner og organiser innhold for \xe5 hjelpe bes\xf8kende (og s\xf8kemotorer) forst\xe5 strukturen i ditt innhold."],"Display multiple images in a rich gallery.":["Vis flere bilder i et rikt galleri."],"Add a link to a downloadable file.":["Legg til en lenke til en nedlastbar fil."],"Embed videos, images, tweets, audio, and other content from external sources.":["Bygg inn videoer, bilder, tvitringer, lyd og annet innhold fra eksterne kilder."],"Resize for smaller devices":["Endre st\xf8rrelse for mindre enheter"],"This embed may not preserve its aspect ratio when the browser is resized.":["Denne innbyggingen beholder kanskje ikke sitt st\xf8rrelsesforhold n\xe5r st\xf8rrelsen p\xe5 nettleservinduet endres."],"This embed will preserve its aspect ratio when the browser is resized.":["Denne beholder sitt st\xf8rrelsesforhold n\xe5r st\xf8rrelsen p\xe5 nettleservinduet endres."],"Embed an Animoto video.":["Bygg inn innhold fra Animoto."],"Embed a Vimeo video.":["Bygg inn en video fra Vimeo."],"Embed Flickr content.":["Bygg inn innhold fra Flickr."],"Embed Spotify content.":["Bygg inn innhold fra Spotify."],"Embed SoundCloud content.":["Bygg inn innhold fra SoundCloud."],"Embed a WordPress post.":["Bygg inn et innlegg fra WordPress."],"Embed an Instagram post.":["Bygg inn et innlegg fra Instagram."],"Embed a Facebook post.":["Bygg inn et innlegg fra Facebook."],"Embed a WordPress.tv video.":["Bygg inn en video fra WordPress.tv."],"Embed a VideoPress video.":["Bygg inn en video fra VideoPress."],"Embed a Tumblr post.":["Bygg inn innlegg fra Tumblr."],"Embed a TED video.":["Bygg inn en video fra TED."],"Embed Speaker Deck content.":["Bygg inn innhold fra Speaker Deck."],"Embed a YouTube video.":["Bygg inn en video fra YouTube."],"Embed SmugMug content.":["Bygg inn innhold fra SmugMug."],"Embed Slideshare content.":["Bygg inn innhold fra Slideshare."],"Embed Scribd content.":["Bygg inn innhold fra Scribd."],"Embed Screencast content.":["Bygg inn innhold fra Screencast."],"Embed ReverbNation content.":["Bygg inn innhold fra ReverbNation."],"Embed a Reddit thread.":["Bygg inn en tr\xe5d fra Reddit."],"Embed Polldaddy content.":["Bygg inn innhold fra Polldaddy."],"Embed Mixcloud content.":["Bygg inn innhold fra Mixcloud."],"Embed a tweet.":["Bygg inn en tweet."],"Embed Meetup.com content.":["Bygg inn innhold fra Meetup.com."],"Embed Kickstarter content.":["Bygg inn innhold fra Kickstarter."],"Embed Issuu content.":["Bygg inn innhold fra Issuu."],"Embed Imgur content.":["Bygg inn innhold fra Imgur."],"Embed Hulu content.":["Bygg inn innhold fra Hulu."],"Embed a Dailymotion video.":["Bygg inn en video fra Dailymotion."],"Embed CollegeHumor content.":["Bygg inn innhold fra CollegeHumor."],"Embed Cloudup content.":["Bygg inn innhold fra Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Legg til et bilde eller en video med tekst-overlegg \u2014 flott for overskrifter."],"Display code snippets that respect your spacing and tabs.":["Vis kodesnutter med respekt for dine mellomrom og tabuleringer."],"Use the classic WordPress editor.":["Bruk det klassiske redigeringsverkt\xf8yet i WordPress."],"Display a list of all categories.":["Vis en liste over alle kategorier."],"Embed a simple audio player.":["Bygg inn en enkel lydavspiller."],"noun\x04View":["Visning"],"editor button\x04Left to right":["Venstre mot h\xf8yre"],"Save as Pending":["Lagre som ventende"],"%s address":["adresse til %s"],"Paste or type URL":["Lim inn eller skriv URL"],"Insert from URL":["Sett inn fra URL"],"Block Navigator":["Blokknavigator"],Styles:["Stiler"],"Advanced Panels":["Avanserte paneler"],"Document Panels":["Dokument-paneler"],General:["Generelt"],"Open the block navigation menu.":["\xc5pne menyen for navigering i blokker."],"Work without distraction":["Arbeide uten distraksjoner"],"Focus on one block at a time":["Fokuser p\xe5 \xe9n blokk om gangen"],"Access all block and document tools in a single place":["Ha tilgang til alle blokk- og dokument-verkt\xf8y p\xe5 \xe9tt og samme sted"],Options:["Alternativer"],"(opens in a new tab)":["(\xe5pnes i en ny fane)"],Minutes:["Minutter"],Hours:["Timer"],Time:["Tid"],Year:["\xc5r"],Day:["Dag"],December:["Desember"],November:["November"],October:["Oktober"],September:["September"],August:["August"],July:["Juli"],June:["Juni"],May:["Mai"],April:["April"],March:["Mars"],February:["Februar"],January:["Januar"],Month:["M\xe5ned"],Date:["Dato"],"Go to the first (home) or last (end) day of a week.":["G\xe5 til f\xf8rste (home) eller siste (end) dag i uken."],"Home/End":["Home/End"],"Home and End":["Home og End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Flytt bakover (PgUp) eller forover (PgDn) \xe9n m\xe5ned av gangen."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up og Page Down"],"Move backward (up) or forward (down) by one week.":["Fytt bakover (pil-opp) eller forover (pil-ned) \xe9n uke av gangen,"],"Up and Down Arrows":["Opp- og nedpiler"],"Move backward (left) or forward (right) by one day.":["Flytt bakover (pil-venstre) eller forover (pil-h\xf8yre) \xe9n dag av gangen."],"Left and Right Arrows":["Venstre- og h\xf8yrepiler"],"Select the date in focus.":["Velg datoen i fokus."],"Navigating with a keyboard":["Navigering med tastatur"],"Click the desired day to select it.":["Klikk \xf8nsket dag for \xe5 velge den."],"Click the right or left arrows to select other months in the past or the future.":["Klikk h\xf8yre- eller venstrepiler for \xe5 velge andre m\xe5neder i fortiden eller fremtiden."],"Click to Select":["Klikk for \xe5 velge"],"Calendar Help":["Hjelp til kalender"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Bruk dine piltaster for \xe5 endre basisfargen. Flytt opp for lysere farge, ned for m\xf8rkere, venstre for \xe5 senke metningen og h\xf8yre for \xe5 \xf8ke metningen."],"Choose a shade":["Velg en skygge"],"Change color format":["Endre fargeformat"],"Color value in HSL":["Fargeverdi i HSL"],"Color value in RGB":["Fargeverdi i RGB"],"Color value in hexadecimal":["Fargeverdi heksadesimalt"],"RGB mode active":["RGB-modus aktiv"],"Hex color mode active":["Heksedesimal-modus aktiv"],"Hue/saturation/lightness mode active":["Tone/metning/lysstyrke-modus er aktiv"],"Move the arrow left or right to change hue.":["Flytt pilen vestre eller h\xf8yre for \xe5 endre fargetonen."],"Hue value in degrees, from 0 to 359.":["Fargetone i grader, fra 0 til 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alfaverdi, fra 0 (gjennomsiktig) til 1 (helt ugjennomsiktig)."],Stripes:["Striper"],"Your site doesn\u2019t include support for this block.":["Ditt nettsted inkluderer ikke st\xf8tte for denne blokken."],"Unrecognized Block":["Blokk ikke gjenkjent"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Ditt nettsted har ikke st\xf8tte for blokken \"%s\". Du kan la denne blokken v\xe6re intakt eller fjerne den helt."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Ditt nettsted har ikke st\xf8tte for blokken \"%s\". Du kan la denne blokken v\xe6re intakt, konvertere dens innhold til en tilpasset HTML-blokk eller fjerne den helt."],"Media area":["Omr\xe5de for media"],"Media & Text":["Media og tekst"],"Show media on right":["Vis media til h\xf8yre"],"Show media on left":["Vis media til venstre"],"Open in New Tab":["\xc5pne i ny fane"],Cover:["Omslag"],"Border Settings":["Innstillinger for kant"],"Edit media":["Rediger media"],Medium:["Middels"],"Paste URL or type to search":["Lim inn URL \xe5 s\xf8ke etter"],Terms:["Termer"],"Your work will be published at the specified date and time.":["Ditt arbeid vil bli publisert p\xe5 den angitte dato og tid."],"Are you ready to schedule?":["Er du klar til \xe5 planlegge?"],"Always show pre-publish checks.":["Vis alltid kontroll for publisering."],"Take Over":["Ta over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["En annen bruker arbeider for tiden med dette innlegget, noe som betyr at du ikke kan gj\xf8re endringer, med mindre tar over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s arbeider for tiden med dette inlegget, noe som betyr at du ikke kan gj\xf8re endringer, med mindre du tar over."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["En annen bruker redigerer n\xe5 dette innlegget. Ikke bekymre deg, dine endringer frem til da, er lagret."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s redigerer n\xe5 dette innlegget. Ikke bekymre deg, dine endringer frem til da, er lagret."],Avatar:["Avatar"],"This post is already being edited.":["Dette innlegget redigeres allerede."],"Someone else has taken over this post.":["Noen andre har tatt over dette innlegget."],"This block contains unexpected or invalid content.":["Denne blokken inneholder uventet eller ugyldig innhold."],"Resolve Block":["L\xf8s opp blokk"],"Convert to HTML":["Konverter til HTML"],"This block can only be used once.":["Denne blokken kan bare brukes \xe9n gang."],"Exit Code Editor":["G\xe5 ut av kode-redigeringen"],"Editing Code":["Redigerer kode"],"Solid Color":["Heldekkende farge"],"Main Color":["Hovedfarge"],HTML:["HTML"],"Write HTML\u2026":["Skriv HTML..."],"Media Settings":["Innstillinger for media"],"Overlay Color":["Farge p\xe5 overlegg"],Overlay:["Overlegg"],"Insert Media":["Sett inn media"],"Reusable block imported successfully!":["Gjenbrukbar blokk velykket importert!"],"Invalid Reusable Block JSON file":["Ugyldig fil for gjenbrukbar blokk"],"Invalid JSON file":["Ugyldig JSON-fil"],"Import from JSON":["Import fra JSON"],Backtick:["Baklengs apostrof"],Period:["Punktum"],Comma:["Komma"],"Change type of %d block":["Endre type for %d blokk","Endre type for %d blokker"],Current:["N\xe5v\xe5rende"],"After Conversion":["Etter konvertering"],"Change alignment":["Endre justering"],"Change text alignment":["Endre tekstjustering"],"%d block":["%d blokk","%d blokker"],Escape:["Esc"],"Forward-slash":["Skr\xe5strek"],"No archives to show.":["Ingen arkiver \xe5 vise."],"This file is empty.":["Filen er tom."],"Sorry, this file type is not supported here.":["Beklager, denne filtypen er st\xf8ttet her."],"Manage All Reusable Blocks":["Behandle alle gjenbrukbare blokker"],Title:["Tittel"],"Fullscreen Mode":["Modus for fullskjerm"],"Beautiful landscape":["Vakkert landskap"],"Close panel":["Lukk panel"],"Convert to Classic Block":["Konverter til Klassisk Block"],"Remove Poster Image":["Fjern plakatbilde"],"Select Poster Image":["Velg plakatbilde"],"Poster Image":["Plakatbilde"],"This block is deprecated. Please use the Columns block instead.":["Denne blokken er foreldet. Vennligst bruk blokken Kolonner i stedet."],"Text Columns (deprecated)":["Tekst-kolonner (foreldet)"],"Row Count":["Antall rader"],"Column Count":["Antall kolonner"],"This block is deprecated. Please use the Paragraph block instead.":["Denne blokken er foreldet. Vennligst bruk blokken Tekstavsnitt i stedet."],"Subheading (deprecated)":["Undertittel (foreldet)"],blockquote:["blokksitat"],"Change the block type after adding a new paragraph.":["Endre typen blokk etter \xe5 ha lagt til nytt avsnitt."],"Spotlight Mode":["Modus for rampelys"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Stikkord hjelper brukere og s\xf8kemotorer \xe5 navigere p\xe5 ditt nettsted og finne ditt innhold. Legg til et par stikkord som beskriver ditt innlegg."],"Add tags":["Legg til stikkord"],"Apply the \"%1$s\" format.":["Bruk formatet til \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Ditt tema bruker innleggsformat til \xe5 fremheve forskjellig type innhold, som bilder eller videoer. Bruk et innleggsformat for \xe5 se denne spesielle stylingen."],"Use a post format":["Bruk et innleggsformat"],"Insert After":["Legg til etter"],"Insert Before":["Legg til foran"],"Move %1$d block from position %2$d down by one place":["Flytt %1$d blokk fra posisjon %2$d ned \xe9n plass","Flytt %1$d blokker fra posisjon %2$d ned \xe9n plass"],"Move %1$d block from position %2$d up by one place":["Flytt %1$d blokk fra posisjon %2$d opp \xe9n plass","Flytt %1$d blokker fra posisjon %2$d opp \xe9n plass"],"Move %1$s block from position %2$d %3$s to position %4$d":["Flytt %1$s blokk fra posisjon %2$d %3$s til posisjon %4$d"],movie:["film"],"Insert a new block before the selected block(s).":["Sett inn en ny blokk foran de valgte blokk(ene)."],"Remove the selected block(s).":["Fjern de(n) valgte blokken(e)."],"Duplicate the selected block(s).":["Kopier de(n) valgte blokken(e)."],"Block shortcuts":["Snarveier til blokker"],"Clear selection.":["Opphev valgte."],"Select all text when typing. Press again to select all blocks.":["Merk all tekst n\xe5r du skriver. Trykk igjen for \xe5 velge alle blokker."],"Selection shortcuts":["Snarveier til utvalg"],"Switch between Visual Editor and Code Editor.":["Bytt mellom visuell redigering og kode/tekst-redigering."],"Navigate to the previous part of the editor (alternative).":["Naviger til den forrige delen av redigeringsverkt\xf8yet (alternativ)."],"Navigate to the next part of the editor (alternative).":["Naviger til neste del av redigeringsverkt\xf8yet (alternativ)."],"Navigate to the previous part of the editor.":["Naviger til forrige del av redigeringsverkt\xf8yet."],"Navigate to the next part of the editor.":["Naviger til neste del av redigeringsverkt\xf8yet."],"Show or hide the settings sidebar.":["Vis eller skjul sidestolpen for innstillinger."],"Redo your last undo.":["Gj\xf8r p\xe5 nytt det du sist angret bort."],"Undo your last changes.":["Angre dine siste endringer."],"Save your changes.":["Lagre dine endringer."],"Global shortcuts":["Globale snarveier"],"Remove a link.":["Fjern en lenke."],"Convert the selected text into a link.":["Gj\xf8r den merkede teksten til en lenke."],"Underline the selected text.":["Understrek den merkede teksten"],"Make the selected text italic.":["Gj\xf8r den merlede teksten uthevet med skr\xe5stilt skrift."],"Make the selected text bold.":["Gj\xf8r den merkede teksten uthevet med fet skrift."],"Text formatting":["Formatering av tekst"],"Insert a new block after the selected block(s).":["Sett inn en ny blokk etter de(n) merkede blokken(e)."],"Keyboard Shortcuts":["Snarveier fra tastaturet"],"Thanks for testing Gutenberg!":["Takk for at du tester Gutenberg!"],"Help build Gutenberg":["Hjelp til med \xe5 utvikle Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Hvis du vil l\xe6re mer om hvordan man bygger ekstra blokker, eller hvis du vil hjelpe til med prosjektet, ta en tur innom GitHub."],"The WordPress community":["WordPress-samfunnet"],"Code is Poetry":["Kode er poesi"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Du kan bygge enhver type blokk, statisk eller dynamisk, dekorativ eller flat. Her er en egensitat-blokk:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Enhver blokk kan eventuelt ha disse justeringene. Innbyggingsblokken har dem ogs\xe5 og er responsiv rett ut av boksen."],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Over ser du et galleri med bare to bilder. Det er en enklere m\xe5te \xe5 lage visuelt sl\xe5ende layouter p\xe5, uten \xe5 trenge \xe5 bry seg om floats. Du kan ogs\xe5 enkelt konvertere galleriet tilbake til individuelle bilder igjen, ved \xe5 bruke blokk-bytteren."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Klart, fullst\xf8rrelse-bilder kan v\xe6re temmelig store. Men noen ganger er bildet verdt det."],"Accessibility is important — don’t forget image alt attribute":["Tilgjengelighet er viktig — ikke glem en alternativ tekst"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Hvis du kombinerer de nye bred og full-bred justeringene med gallerier, kan du skape et layout rikt p\xe5 medier sv\xe6rt enkelt:"],"Media Rich":["Rik p\xe5 media"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Du kan endre antall kolonner i ditt galleri ved \xe5 dra p\xe5 en skyvebryter i blokk-inspisienten i sidestolpen."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blokker kan kan v\xe6re enhver ting du trenger. For eksempel kan du vile legge til dempede sitater som en del av oppbyggingen av din tekst eller du kan foretrekke \xe5 vise an diger stilisert sak. Alle disse alternativene er tilgjengelige ved innsetting."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Informasjonen som tilsvarer kilden til sitatet er et separat tekstfelt, i likhet med bildetekster for bilder, s\xe5 strukturen til sitatet bevares selv om du velger, endrer eller fjerner kilden. Det er alltid enkelt \xe5 legge den til igjen."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["Redigeringsverkt\xf8yet fors\xf8ker \xe5 skape en ny skapelsesopplevelse for sider og innlegg som gj\xf8r det problemfritt \xe5 skrive innlegg med rikt innhold. Verkt\xf8yet bruker \"blokker\", for \xe5 gj\xf8re det enklere \xe5 bruke det som idag ville trengt kortkoder, egendefinert HTML, eller automatisk innbygging du ikke vet innholdet i."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["En stor fordel med blokker er at du kan redigere dem der de er plassert, og manipulere innholdet direkte. I stedet for \xe5 ha felter for \xe5 redigere ting som kilden til et sitat, eller teksten p\xe5 en knapp, kan du endre innholdet direkte. Pr\xf8v \xe5 redigere f\xf8lgende sitat:"],"Visual Editing":["Visuell redigering"],"And Lists like this one of course :)":["Og lister som denne, selvf\xf8lgelig :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blokker for utforming, som knapper, heltebilder, skille-elementer osv."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Innbygginger, som YouTube, tvitringer eller andre WordPress-innlegg."],Galleries:["Gallerier"],"Images & Videos":["Bilder og videoer"],"Text & Headings":["Tekst og overskrifter"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Pr\xf8v det ut. Du kan oppdage nye ting som WordPress kan sette inn i dine innlegg, ting du ikke visste om. Her er en kort oversikt over hva du for tiden kan finne der:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Forestill deg at alt WordPress kan gj\xf8re er lett tilgjengelig, p\xe5 samme sted i brukergrensesnittet. Det er ikke behov for \xe5 styre med HTML-elementer og klasser, eller \xe5 memorere komplisert kortkode-syntaks. Dette er tanken bak innsettingsverkt\xf8yet\u2014(+)-knappen du ser rundt omkring i redigeringsvinduet\u2014som lar deg bla gjennom alle tilgjengelige innholdsblokker og legge dem til i innlegget ditt. Utvidelser og temaer kan registrere sine egne, noe som \xe5pner all slags muligheter for rik redigering og publisering."],"The Inserter Tool":["Innsettings-verkt\xf8yet"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Pr\xf8v \xe5 velge og s\xe5 fjerne eller redigere bildeteksten. N\xe5 trenger du ikke v\xe6re forsiktig med \xe5 velge bildet eller ogs\xe5 tekst, ved en feiltakelse, og \xf8delegge presentasjonen."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Hvis ditt tema st\xf8tter det vil du se knappen for \"bred\" p\xe5 verkt\xf8ylinjen for bildet. Pr\xf8v det ut."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Behandling av bilder og media med den ytterste varsomhet er et prim\xe6rt fokus for det nye redigeringsverkt\xf8yet. Forh\xe5pentligvis vil du finne sider ved det \xe5 legge til bildetekst til, eller gj\xf8re full bredde av, dine bilder mye enklere og robust enn f\xf8r."],"A Picture is Worth a Thousand Words":["Et bilde et verdt tusen ord"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Overskrifter er ogs\xe5 separate blokker, som hjelper med omrisset og organiseringen av innholdet ditt."],"... like this one, which is right aligned.":["... som denne, som er h\xf8yrejustert."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Det du leser n\xe5 er en tekstblokk, den mest grunnleggende blokken av alle. Tekstblokken har sine egne kontroll for \xe5 kunne flyttes fritt rundt i innlegget."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["M\xe5let med det nye redigeringsverkt\xf8yet er \xe5 gj\xf8re det \xe5 legge til rikt innhold i WordPress enkelt og hyggelig. Hele dette innlegget er satt sammen av brikker av innhold -- noe liknende Legoklosser -- som du kan flytte rundt og samhandle med. Flytt din mark\xf8r rundt og du vil legge merke til at de ulike blokkene utheves med omriss og piler. Trykk pilene for \xe5 flytte blokken hurtig uten \xe5 frykte \xe5 miste ting i en prosess med klipp og lim."],"Of Mountains & Printing Presses":["Fra fjell og trykkpresser"],"Welcome to the Gutenberg Editor":["Velkommen til redigeringsverkt\xf8yet Gutenberg"],"block name\x04More":["Mer"],"button to expand options\x04More":["Mer"],"Are you sure you want to unschedule this post?":["Er du sikker p\xe5 at du vil fjerne dette innlegget fra planlegging?"],"Alt Text (Alternative Text)":["Alt-tekst (Alternativ tekst)"],"Reusable Block":["Gjenbrukbar blokk"],"Unique identifier for the object.":["Unik identifikator for objektet."],"Untitled Reusable Block":["Gjenbrukbar blokk uten tittel"],Small:["Liten"],"(%s: %s)":["(%s: %s)"],Reusable:["Gjenbrukbar"],"(current %s: %s)":["(n\xe5v\xe6rende %s: %s)"],"Remove from Reusable Blocks":["Fjern fra Gjenbrukbare blokker"],"Add to Reusable Blocks":["Legg til som gjenbrukbar blokk"],"Keep as HTML":["Behold som HTML"],"Edit URL":["Rediger URL"],"Color Settings":["Fargeinnstillinger"],"The response is not a valid JSON response.":["Responsen var ikke en gyldig JSON-respons."],"Editor publish":["Publisering fra redigering"],Muted:["Dempet"],"Video Settings":["Videoinnstillinger"],"recent comments":["nylige kommentarer"],"Latest Comments":["Siste kommentarer"],"Display Excerpt":["Vis utdrag"],"Display Date":["Vis dato"],"Display Avatar":["Vis avatar"],"Latest Comments Settings":["Innstillinger for siste kommentarer"],"Number of Comments":["Antall kommentarer"],"Background Opacity":["Gjennomsiktighet for bakgrunnen"],Auto:["Auto"],Preload:["Last inn p\xe5 forh\xe5nd"],"Audio Settings":["Innstillinger for lyd"],"Display a monthly archive of your posts.":["Vis et m\xe5nedsarkiv for dine innlegg."],"Display as Dropdown":["Vis som nedtrekkliste"],"Show Post Counts":["Vis antall innlegg"],"Archives Settings":["Innstillinger for arkiv"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Brukerst\xf8tte"],"No comments to show.":["Ingen kommentarer \xe5 vise."],"%1$s on %2$s":["%1$s til %2$s"],"Select Post":["Velg innlegg"],"Select Week":["Velg uke"],"Select Day":["Velg dag"],"Select Month":["Velg m\xe5ned"],"Select Year":["Velg \xe5r"],Archives:["Arkiv"],"Very dark gray":["Meget m\xf8rk gr\xe5"],"Cyan bluish gray":["Cyan-bl\xe5aktig gr\xe5"],"Very light gray":["Meget lys gr\xe5"],"Vivid cyan blue":["Levende cyan-bl\xe5"],"Pale cyan blue":["Blek cyanbl\xe5"],"Vivid green cyan":["Levende cyan-gr\xf8nn"],"Light green cyan":["Lys cyan-gr\xf8nn"],"Luminous vivid amber":["Lysende levaktig rav"],"Luminous vivid orange":["Lysende livaktig oransje"],"Vivid red":["Livaktig r\xf8d"],"Pale pink":["Blek rosa"],"Inline image":["Inline-bilde"],"Available block types":["Tilgjengelige blokktyper"],"Transform To:":["Forvandle til:"],"Remove Block":["Fjern blokk"],"Open publish panel":["\xc5pne publiseringspanelet"],Dots:["Prikker"],"Wide Line":["Bred linje"],Large:["Stor"],"Show download button":["Vis nedlastingsknapp"],"Download button settings":["Innstillinger for nedlastingsknapp"],"Link To":["Lenke til"],"Text link settings":["Innstillinger for lenker i tekst"],pdf:["pdf"],document:["dokument"],"Copy URL":["Kopier URL"],"Write file name\u2026":["Skriv filnavn..."],"Edit file":["Rediger fil"],File:["Fil"],"A single column within a columns block.":["En enkelt kolonne innenfor en kolonneblokk."],Column:["Kolonne"],Outline:["Omriss"],Loop:["L\xf8kke"],Autoplay:["Automatisk avspilling"],"Playback Controls":["Kontrollknapper for avspilling"],"Close dialog":["Lukk dialog"],"Sorry, this file type is not permitted for security reasons.":["Beklager, men denne filtypen er ikke tillatt av sikkerhetshensyn."],"Disable tips":["Deaktiver tips"],"Got it":["Oppfattet"],"See next tip":["Se neste tips"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["N\xe5r du er klar, send inn ditt arbeid til gjennomgang og en redakt\xf8r vil kunne godkjenne det for deg."],"Are you ready to submit for review?":["Er du klar til \xe5 sende inn til gjennomgang?"],"Replace image":["Erstatt bilde"],"Remove image":["Fjern bilde"],"Error while uploading file %s to the media library.":["Feil ved opplasting av fil %s til mediebiblioteket."],"This file exceeds the maximum upload size for this site.":["Denne filen overskrider maksimal st\xf8rrelse for opplasting p\xe5 dette nettstedet."],"View the autosave":["Vis autolagringen"],"There is an autosave of this post that is more recent than the version below.":["Det er en automatisk lagret versjon av dette innlegget som er nyere enn versjonen nedenfor."],Autosaving:["Autolagrer"],"Enter URL here\u2026":["Skriv inn URL her..."],"Pin to toolbar":["Fest til verkt\xf8ylinjen"],"Unpin from toolbar":["Fjern fra verkt\xf8ylinjen"],"Insert a table \u2014 perfect for sharing charts and data.":["Sett inn en tabell -- perfekt for \xe5 dele diagrammer og data."],"Fixed width table cells":["Tabell-celler med fast bredde"],"Table Settings":["Innstillinger for tabell"],"Add text that respects your spacing and tabs, and also allows styling.":["Legg til tekst som respekterer dine avstander og tabuleringer, og dessuten tillater styling."],"Display a list of your most recent posts.":["Vis en liste med dine siste innlegg."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Legg til en blokk som viser innhold fra andre nettsteder, som Twitter, Instagram eller YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Legg til en blokk som viser innholdet i flere kolonner. Legg s\xe5 til en hvilken som helst innholds-blokk."],"Error loading block: %s":["Feil vedl lasting av blokk: %s"],"Unknown error":["Ukjent feil"],"Embed Handler":["H\xe5ndterer for innbygging"],"term\x04Remove %s":["Fjern %s"],"Copy the permalink":["Kopier permalenken"],"Permalink copied":["Permalenke kopiert"],"Height in pixels":["H\xf8yde i piksler"],"Spacer Settings":["Innstillinger for skille-element"],Spacer:["Skille-element"],"Toggle to show a large initial letter.":["Veksle for \xe5 vise en stor f\xf8rstebokstav."],"Showing large initial letter.":["Viser stor f\xf8rstebokstav."],"Name:":["Navn:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s av %3$s)"],"Remove item":["Fjern element"],"Color code: %s":["Fargekode: %s"],"Skip to the selected block":["Hopp til valgte blokk"],"Publish\u2026":["Publiser..."],"Schedule\u2026":["Planlegg..."],"Edit post permalink":["Rediger innleggets permalanke"],"Show Block Settings":["Vis innstillinger for blokk"],"Hide Block Settings":["Skjul innstillinger for blokk"],"Block settings closed":["Innstillinger for blokk lukket"],"Close plugin":["Lukk utvidelse"],"Link settings":["Innstillinger for lenker"],Unlink:["Fjern lenke"],"Page break":["SIdeskift"],pagination:["sideinndeling"],"next page":["neste side"],"Image Size":["Bildest\xf8rrelse"],Height:["H\xf8yde"],Width:["Bredde"],"Image Dimensions":["Dimensjoner for bilde"],"Thumbnails are not cropped.":["Miniatyrbilder er ikke besk\xe5ret."],"Thumbnails are cropped to align.":["Miniatyrbilder er besk\xe5ret for \xe5 passe inn."],"Media Library":["Mediebilbliotek"],Advanced:["Avansert"],"Add item":["Legg til element."],"Reset the template":["Tilbakestill malen"],"Keep it as is":["Behold den som den er"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Innholdet i innlegget ditt passer ikke med malen for innleggstypen."],"Resetting the template may result in loss of content, do you want to continue?":["Tilbakestilling av malen kan f\xf8re til at du mister innhold. Vil du fortsette?"],"Document Statistics":["Dokumentstatistikk"],"is now scheduled. It will go live on":["er n\xe5 planlagt. Det publiseres "],Scheduled:["Planlagt"],"Scheduling\u2026":["Planlegger..."],"Code editor selected":["Kode-redigering valgt"],"Visual editor selected":["Visuell redigerinf valgt"],Plugins:["Utvidelser"],"Custom Size":["Egendefinert st\xf8rrelse"],"Layout Elements":["Oppsettelementer"],"term\x04%s removed":["%s fjernet"],"term\x04%s added":["%s lagt til"],"imperative verb\x04Preview":["Forh\xe5ndsvisning"],"Block deleted.":["Blokk slettet."],"Block updated.":["Blokk oppdatert."],"Block created.":["Blokk opprettet."],"Trashing failed":["Kasting feilet"],"Updating failed.":["Oppdatering mislyktes."],"Scheduling failed.":["Planlegging mislyktes."],"Publishing failed.":["Publisering mislyktes."],"View Post":["Se innlegg"],"You have unsaved changes. If you proceed, they will be lost.":["Du har endringer som ikke er lagret. De vil forsvinne dersom du fortsetter."],"Document Outline":["Dokumentomriss"],Paragraphs:["Avsnitt"],Headings:["Overskrifter"],Words:["Ord"],"Content structure":["Struktur for innholdet"],Public:["Offentlig"],"Protected with a password you choose. Only those with the password can view this post.":["Beskyttet med et passord du velger. Bare dem som har passordet kan se denne posten."],"Password Protected":["Passordbeskyttet"],"Only visible to site admins and editors.":["Bare synlig for administratorer og redakt\xf8rer."],Private:["Privat"],"Visible to everyone.":["Synlig for alle."],"Post Visibility":["Postens synlighet"],"Would you like to privately publish this post now?":["Vil du publisere denne posten privat n\xe5?"],"Use a secure password":["Bruk et sikkert passord"],"Create password":["Opprett passord"],"Move to Trash":["Flytt til papirkurven"],"Parent Term":["Foreldrebegrep"],"Parent Category":["Foreldrekategori"],"Add new term":["Legg til et begrep"],"Add new category":["Legg til en kategori"],Term:["Begrep"],Tag:["Stikkord"],"Add New Term":["Legg til begrep"],"Add New Tag":["Legg til stikkord"],"Switch to Draft":["Bytt til kladd"],"Are you sure you want to unpublish this post?":["Er du sikker p\xe5 at du vil avpublisere denne posten?"],Immediately:["Umiddelbart"],"Save Draft":["Lagre kladd"],Saving:["Lagrer"],"Publish:":["Publisher:"],"Visibility:":["Synlighet:"],"Are you ready to publish?":["Er du klar til \xe5 publisere?"],"Copy Link":["Kopier lenke"],"What\u2019s next?":["Hva n\xe5?"],"is now live.":["er n\xe5 lagt ut."],Published:["Publisert"],Schedule:["Planlegg"],Update:["Oppdater"],"Submit for Review":["Send til godkjenning"],"Updating\u2026":["Oppdaterer..."],"Publishing\u2026":["Publiserer..."],"Allow Pingbacks & Trackbacks":["Tillat tilbakeping og tilbakesporinger"],"Permalink:":["Permalenke:"],"Pending Review":["Venter p\xe5 godkjenning"],"%d Revision":["%d revisjon","%d revisjoner"],"Suggestion:":["Forslag:"],"Post Format":["Innleggsformat"],Chat:["Chat"],Status:["Status"],Standard:["Standard"],Aside:["Sidefelt"],"Set Featured Image":["Velg fremhevet bilde"],"Learn more about manual excerpts":["L\xe6r mer om manuelle utdrag"],"Write an excerpt (optional)":["Skriv et utdrag (valgfritt)"],"Allow Comments":["Tillat kommentarer"],"Template:":["Mal:"],"no parent":["ingen forelder"],"no title":["ingen tittel"],Order:["Rekkef\xf8lge"],"No blocks found.":["Ingen blokker funnet."],"%d result found.":["%d resultat funnet.","%d resultater funnet."],Saved:["Lagret"],Embeds:["Innbygningselementer"],Blocks:["Blokker"],"Search for a block":["S\xf8k etter en blokk"],"Add block":["Legg til blokk"],"Add %s":["Legg til %s"],"Copy Error":["Feil ved kopiering"],"Copy Post Text":["Kopier innleggstekst"],"Attempt Recovery":["Fors\xf8k gjenoppretting"],"The editor has encountered an unexpected error.":["Det har oppst\xe5tt en uventet feil med teksteditoren."],Undo:["Angre"],Redo:["Gj\xf8r igjen"],"(Multiple H1 headings are not recommended)":["(Flere H1-overskrifter er ikke anbefalt)"],"(Your theme may already use a H1 for the post title)":["(Det er mulig at temaet ditt allerede bruker H1 p\xe5 posttittelen)"],"(Incorrect heading level)":["(Feil tittelniv\xe5)"],"(Empty heading)":["(Tom tittel)"],"Block Styles":["Blokktyper"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Er du sikker p\xe5 at du vil slette denne gjenbrukbare blokken?\n\nDen vil slettes permanent fra alle poster og sider som bruker den."],"Convert to Regular Block":["Konverter til gjenbrukbar boks"],"More options":["Flere alternativer"],"Edit visually":["Rediger visuelt"],Duplicate:["Dupliser"],"Blocks cannot be moved down as they are already at the bottom":["Blokkene kan ikke flyttes ned, de er allerede p\xe5 bunnen"],"Blocks cannot be moved up as they are already at the top":["Blokkene kan ikke flyttes opp, de er allerede p\xe5 toppen"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Blokken %1$s er p\xe5 starten av innholdet og kan ikke flyttes %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Blokken %1$s er p\xe5 slutten av innholdet og kan ikke flyttes %2$s"],"Block %s is the only block, and cannot be moved":["Blokk \"%s\" er den eneste blokken og kan ikke flyttes"],"Edit as HTML":["Rediger som HTML"],"Convert to Blocks":["Konverter til blokker"],"Block: %s":["Blokk: %s"],"This block has encountered an error and cannot be previewed.":["Noe gikk galt med denne blokken, s\xe5 den kan ikke forh\xe5ndsvises."],"No block selected.":["Ingen blokk valgt."],"Transform into:":["Transformer til:"],Remove:["Fjern"],"Find original":["Finn original"],"Copy All Content":["Kopier alt innhold"],"Copied!":["Kopiert!"],"Additional settings are now available in the Editor block settings sidebar":["Flere innstillinger er n\xe5 tilgjengelige i teksteditorens avanserte innstillinger"],Visibility:["Synlighet"],"Status & Visibility":["Status og synlighet"],"Page Attributes":["Sideegenskaper"],Block:["Blokk","%d blokker"],Document:["Dokument"],"Featured Image":["Fremhevet bilde"],"Close settings":["Lukk innstillinger"],"Editor content":["Innhold til redigering"],Tools:["Verkt\xf8y"],Editor:["Redigering"],"Code Editor":["Kode-redigering"],"Visual Editor":["Visuell redigering"],"Editor top bar":["Topplinje for redigering"],Settings:["Innstillinger"],Reset:["Tilbakestill"],"Dismiss this notice":["Fjern denne beskjeden"],"Item removed.":["Fjernet."],"Item added.":["Element lagt til."],"Drop files to upload":["Slipp filer for \xe5 laste opp"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["En ukjent feil har oppst\xe5tt."],"No results.":["Ingen treff."],"%d result found, use up and down arrow keys to navigate.":["%d resultat funnet. Bruk piltastene for \xe5 navigere.","%d resultater funnet. Bruk piltastene for \xe5 navigere."],"(no title)":["(ingen overskrift)"],URL:["URL"],Submit:["Send inn"],Close:["Lukk"],"Insert link":["Sett inn lenke"],"Edit link":["Rediger lenke"],Link:["Lenke"],Strikethrough:["Gjennomstreking"],Italic:["Kursiv"],Bold:["Uthevet"],"Remove link":["Fjern lenke"],"Number of items":["Antall elementer"],All:["Alle"],Category:["Kategori"],"Z \u2192 A":["\xc5 \t A"],"A \u2192 Z":["A \t \xc5"],"Oldest to Newest":["Eldste til nyeste"],"Newest to Oldest":["Nyeste til eldste"],"Order by":["Sorter etter"],Select:["Velg"],"Select or Upload Media":["Velg eller last opp media"],Video:["Video"],"Edit video":["Rediger video"],"Write\u2026":["Skriv..."],poetry:["poesi"],Verse:["Vers"],"New Column":["Ny kolonne"],"Delete Column":["Slett kolonne"],"Add Column After":["Legg til kolonne etter"],"Add Column Before":["Legg til kolonne f\xf8r"],"Delete Row":["Slett rad"],"Add Row After":["Legg til rad etter"],"Add Row Before":["Legg til rad f\xf8r"],"Edit table":["Rediger tabell"],Table:["Tabell"],"Write subheading\u2026":["Skriv underoverskrift..."],"Write shortcode here\u2026":["Skriv kortkode her..."],Shortcode:["Kortkode"],divider:["skille"],"horizontal-line":["horisontallinje"],Separator:["Skille"],Quote:["Sitat"],"Write citation\u2026":["Skriv sitat..."],"Write quote\u2026":["Skriv sitat..."],Pullquote:["Uttrekksitat"],"Write preformatted text\u2026":["Skriv forh\xe5ndsformatert tekst..."],Preformatted:["Forh\xe5ndsformatert"],text:["tekst"],Paragraph:["Avsnitt"],"Font Size":["Skriftst\xf8rrelse"],"Drop Cap":["Kapit\xe9ler"],"Text Settings":["Tekstinnstillinger"],"Read more":["Les mer"],"Write list\u2026":["Skriv liste..."],"numbered list":["nummerert liste"],"ordered list":["ordnet liste"],"bullet list":["punktliste"],"Indent list item":["Element i innrykksliste"],"Outdent list item":["Element i utrykksliste"],"Convert to ordered list":["Konverter til ordnet liste"],"Convert to unordered list":["Konverter til uordnet liste"],List:["Liste"],"recent posts":["nylige innlegg"],"No posts found.":["Ingen innlegg funnet."],"Latest Posts":["Siste innlegg"],"Display post date":["Vis innleggsdato"],"Grid view":["Rutenettvisning"],"List view":["Listevisning"],photo:["foto"],"Image Settings":["Bildeinnstillinger"],Image:["Bilde"],Preview:["Forh\xe5ndsvisning"],embed:["bygg inn"],"Custom HTML":["Tilpasset HTML"],subtitle:["undertittel"],title:["tittel"],Heading:["Overskrift"],"Write heading\u2026":["Skriv overskrift..."],"Heading %d":["Overskrift %s"],Level:["Niv\xe5"],"Heading Settings":["Overskriftinnstillinger"],photos:["fotografier"],images:["bilder"],"Remove Image":["Fjern bilde"],None:["Ingen"],"Media File":["Mediefil"],"Attachment Page":["Vedleggside"],"Crop Images":["Beskj\xe6r bilder"],"Gallery Settings":["Galleri-innstillinger"],Gallery:["Galleri"],Classic:["Klassisk"],video:["video"],audio:["audio"],music:["musikk"],image:["bilde"],blog:["blogg"],post:["innlegg"],"Embedded content from %s":["Innbygget innhold fra %s"],"Enter URL to embed here\u2026":["Skriv URL-en du vil bygge inn her..."],"%s URL":["%s URL"],"Embedding\u2026":["Bygger inn..."],"Write title\u2026":["Skriv tittel..."],"Fixed Background":["Fast bakgrunn"],"Edit image":["Rediger bilde"],Columns:["Kolonner"],Experiments:["Eksperimenter"],Code:["Kode"],"Write code\u2026":["Skriv kode..."],Categories:["Kategorier"],"Show Hierarchy":["Vis hierarki"],"Show post counts":["Vi antall innlegg"],"Categories Settings":["Kategoriinnstillinger"],"Add text\u2026":["Legg til tekst..."],Button:["Knapp"],Apply:["Bruk"],"Text Color":["Tekstfarge"],"Background Color":["Bakgrunnsfarge"],"Block has been deleted or is unavailable.":["Blokken har blitt slettet eller er utilgjengelig."],"Reusable Blocks":["Gjenbrukbar blokk"],Cancel:["Avbryt"],Edit:["Rediger"],"Edit audio":["Rediger audio"],"Write caption\u2026":["Skriv bildetekst..."],"Use URL":["Bruk URL"],Audio:["Audio"],Upload:["Last opp"],"Additional CSS Class(es)":["Ekstra CSS-klasse(r)"],"HTML Anchor":["HTML-anker"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Denne fargekombinasjonen kan v\xe6re vanskelig for folk \xe5 lese. Bruk en lysere bakgrunnsfarge og/eller en m\xf8rkere tekstfarge."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Denne fargekombinasjonen kan v\xe6re vanskelig for folk \xe5 lese. Bruk en m\xf8rkere bakgrunnsfarge og/eller en lysere tekstfarge."],Clear:["Rensk"],"Custom color picker":["Fargevelger"],"Color: %s":["Farge: %s"],"Full Width":["Full bredde"],"Wide Width":["Bred bredde"],Widgets:["Widgeter"],Formatting:["Formatering"],"Common Blocks":["Vanlige blokker"],"Align Right":["H\xf8yrejuster"],"Align Center":["Midtjuster"],"Align Left":["Venstrejuster"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Trykket siden 1440. Dette er utviklingsutvidelsen for den nye blokkeditoren i kjernen."],"Add title":["Legg til tittel"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg utviklermodus krever at noen filer blir bygger. Kj\xf8r npm install for \xe5 installere avhengigheter, npm run build for \xe5 bygge filene eller npm run dev for \xe5 bygge filene og f\xf8lge med p\xe5 endringer. Les filen om \xe5 bidra for \xe5 f\xe5 mer informasjon."],Author:["Forfatter"],Slug:["Permalenke"],Discussion:["Diskusjon"],"Custom Fields":["Egendefinerte felter"],Excerpt:["Utdrag"],Publish:["Publiser"],Metadata:["Metadata"],Save:["Lagre"],Documentation:["Dokumentasjon"],"Select Category":["Velg kategori"],"(Untitled)":["(Uten tittel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg krever WordPress %s eller senere for \xe5 fungere ordentlig. Vennligst oppgrader WordPress f\xf8r du aktiverer Gutenberg."],"Gutenberg Team":["Gutenberg-teamet"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s siden"],"Block style name must be a string.":["Navn p\xe5 blokkstil m\xe5 v\xe6re en tekststreng."]}},854,[]); +__d(function(e,t,n,o,i,a,r){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// Een \"blok\" is een abstracte term dat wordt gebruikt om\n// markup eenheden te beschrijven die allemaal samen\n// de inhoud of de indeling van een pagina vormen.\nregisterBlockType( name, settings );"],"You are probably offline.":["Je bent waarschijnlijk offline."],"Justify items right":["Elementen rechts uitlijnen"],"Justify items center":["Elementen centreren"],"Justify items left":["Elementen links uitlijnen"],"Change items justification":["Verander uitlijning elementen"],"The media file has been replaced":["Het mediabestand is vervangen"],Replace:["Vervang"],"Choose pattern":["Kies patroon"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Je bevindt je momenteel in de bewerken-modus. Druk op Escape om terug te gaan naar navigatie-modus."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Je bevindt je momenteel in de navigatie-modus. Navigeer door de blokken met Tab. Druk op Enter om navigatie-modus te verlaten en het geselecteerde blok te bewerken."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Gebruik sw linker- of rechter pijltjestoetsen of sleep met de muis om de verlooppositie te wijzigen. Druk op de knop om de kleur te wijzigen of het controlepunt te verwijderen."],"Gradient control point at position %1$s with color code %2$s.":["Verloop controlepunt op positie %1$s met kleurcode %2$s."],"Preset Size":["Preset grootte"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Gereedschappen bieden verschillende interacties voor blok selectie en bewerking. Om te selecteren, druk op Escape, om terug te gaan naar bewerken, druk op Enter."],"Open Media Library":["Open mediabibliotheek"],Next:["Volgende"],Previous:["Vorige"],Finish:["Afronden"],"Page %1$d of %2$d":["Pagina %1$d van %2$d"],"Guide controls":["Gidsbediening"],"Remove Control Point":["Verwijder controlepunt"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Ieder blok heeft zijn eigen set bedieningselementen voor het wijzigen van zaken als kleur, breedte, en uitlijning. Deze verschijnen en verdwijnen automatisch wanneer je een blok hebt geselecteerd."],"Make each block your own":["Maak elk blok van jezelf"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["In de WordPress-editor wordt elke paragraaf, afbeelding, of video gepresenteerd als een apart \"inhoudsblok\"."],"ADD MEDIA":["TOEVOEGEN MEDIA"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":["Alle beschikbare blokken bevinden zich in de Blok bibliotheek. Je vindt deze overal waar je het icon ziet."],"Get to know the Block Library":["De Blok bibliotheek leren kennen"],"Welcome Guide":["Welkomstgids"],"Enable Page Templates":["Pagina templates inschakelen"],"Page Templates":["Pagina templates"],"Enable Full Site Editing Demo Templates":["Demo-templates voor bewerken van de volledige site inschakelen"],"Full Site Editing Demo Templates":["Templates voor bewerken van de volledige site"],"Welcome to the Block Editor":["Welkom bij de blok editor"],"Get started":["Aan de slag"],inserter:["inserter"],"Post Title":["Berichttitel"],"Add nofollow to link":["Nofollow aan link toevoegen"],"Link Settings":["Linkinstellingen"],"Add Submenu":["Submenu toevoegen"],"Add link\u2026":["Link toevoegen..."],Dark:["Donker"],Light:["Licht "],recording:["opnemen"],podcast:["podcast"],sound:["geluid"],"Array of instance changes":["Matrix van instantie veranderingen"],"Current widget instance":["Huidige widget instantie"],"Template parts to include in your templates.":["Template onderdelen om in je templates op te nemen."],"Template parts list":["Template-onderdelen lijst"],"Template parts list navigation":["Template-onderdelen lijst navigatie"],"Filter template parts list":["Template-onderdelen lijst filteren"],"Uploaded to this template part":["Ge\xfcpload naar dit template-onderdeel"],"Insert into template part":["Invoegen in template-onderdeel"],"Template part archives":["Template-onderdeel archieven"],"No template parts found in Trash.":["Geen template-onderdelen gevonden in prullenbak."],"No template parts found.":["Geen template-onderdelen gevonden."],"Parent Template Part:":["Hoofd template-onderdeel:"],"Search Template Parts":["Zoek template-onderdelen"],"All Template Parts":["Alle template-onderdelen"],"View Template Part":["Bekijk template-onderdeel"],"Edit Template Part":["Bewerk template-onderdeel"],"New Template Part":["Nieuw template-onderdeel"],"Add New Template Part":["Nieuw template-onderdeel toevoegen"],"Template Part\x04Add New":["Nieuw toevoegen"],"Admin Menu text\x04Template Parts":["Template-onderdelen"],"Template Part":["Template-onderdeel"],"Template Parts":["Template-onderdelen"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river."],Navigation:["Navigatie"],"Loading Navigation\u2026":["Navigatie laden..."],"Navigation Structure":["Navigatiestructuur"],"Create empty":["Maak lege"],"Create from all top pages":["Maak van alle bovenliggende pagina's"],"Create a Navigation from all existing pages, or create an empty one.":["Maak een navigatie van alle bestaande pagina's, of maak een lege."],"Navigation Link":["Navigatielink"],"(Note: many devices and browsers do not display this text.)":["(Opmerking: veel apparaten en browsers geven deze tekst niet weer.)"],"Describe the role of this image on the page.":["Beschrijf de rol van deze afbeelding op de pagina."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Schakel tussen het gebruik van dezelfde waarde voor alle schermformaten of het gebruik van een unieke waarde per schermgrootte."],"Use the same %s on all screensizes.":["Gebruik dezelfde %s voor alle schermformaten."],"Large screens":["Grote schermen"],"Medium screens":["Gemiddelde schermen"],"Small screens":["Kleine schermen"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["Bepaalt eigenschap %1$s voor %2$s viewports."],Change:["Wijzig"],"Currently selected":["Huidig geselecteerd"],"Search or type url":["Zoek of typ URL"],"Press ENTER to add this link":["Druk op ENTER om deze link toe te voegen"],"Currently selected link settings":["Huidige geselecteerde linkinstellingen"],"Generic label for block inserter button\x04Add block":["Blok toevoegen"],"directly add the only allowed block\x04Add %s":["Voeg %s toe"],"%s block added":["%s blok toegevoegd"],"Move %s":["Verplaats %s"],"Extra Large":["Extra groot"],"Block breadcrumb":["Blok broodkruimel"],"Site Title":["Sitetitel"],"Open Colors Selector":["Open kleurenselector"],"Overlay Gradient":["Overlay verloop"],"Templates list":["Templates lijst"],"Templates list navigation":["Templates lijst navigatie"],"Filter templates list":["Templates lijst filteren"],"Uploaded to this template":["Ge\xfcpload naar deze template"],"Insert into template":["Invoegen in template"],"Template archives":["Template archieven"],"No templates found in Trash.":["Geen templates gevonden in prullenbak."],"No templates found.":["Geen templates gevonden."],"Parent Template:":["Hoofd template:"],"Search Templates":["Zoek templates"],"All Templates":["Alle templates"],"View Template":["Bekijk template"],"Edit Template":["Bewerk template"],"New Template":["Nieuwe template"],"Add New Template":["Nieuwe template toevoegen"],"Template\x04Add New":["Nieuwe toevoegen"],"Admin Menu text\x04Templates":["Templates"],Template:["Template"],"No matching template found":["Geen overeenkomende template gevonden"],"Gradient: %s":["Verloop: %s"],"Gradient code: %s":["Verloopcode: %s"],"All content copied.":["Alle inhoud gekopieerd."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media-upload mislukt. Gaat het om een foto of een grote afbeelding, verklein deze dan en probeer het opnieuw."],Gradient:["Verloop"],"Gradient Presets":["Verloop voorinstellingen"],"No Preview Available.":["Geen voorbeeld beschikbaar."],Midnight:["Middernacht"],"Electric grass":["Electrisch gras"],"Pale ocean":["Bleek oceaan"],"Luminous dusk":["Lichtgevende dageraad"],"Blush bordeaux":["Blozend bordeaux"],"Blush light purple":["Blozend lichtpaars"],"Cool to warm spectrum":["Koel naar warm spectrum"],"Very light gray to cyan bluish gray":["Zeer lichtgrijs tot cyaan blauwachtig grijs"],"Luminous vivid orange to vivid red":["Lichtgevend levendig oranje tot levendig rood"],"Luminous vivid amber to luminous vivid orange":["Lichtgevend levendig amber tot lichtgevend levendig oranje"],"Light green cyan to vivid green cyan":["Licht groen cyaan tot levendig groen cyaan"],"Vivid cyan blue to vivid purple":["Levendig cyaan blauw tot levendig paars"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 december 2018"],"February 21, 2019":["21 februari 2019"],"May 7, 2019":["7 mei 2019"],"Release Date":["Release datum"],"Jazz Musician":["Jazz muzikant"],Version:["Versie"],"Six.":["Zes."],"Five.":["Vijf."],"Four.":["Vier."],"Three.":["Drie."],"Two.":["Twee."],"One.":["E\xe9n."],"One of the hardest things to do in technology is disrupt yourself.":["Een van de moeilijkste zaken om te doen in technologie is jezelf verstoren."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["Om dit alles heen is een bijna volledig zwart scherm. Terwijl de camera langzaam naar het venster beweegt, dat bijna een postzegel in het frame is, verschijnen andere vormen;"],"Window, very small in the distance, illuminated.":["Venster, heel klein in de verte, verlicht."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["BUITENKANT XANADU - ZWAKKE DAGERAAD - 1940 (MINIATUUR)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["Het winterkoninkje
Verdient zijn brood
Lawaaiig."],"Welcome to the wonderful world of blocks\u2026":["Welkom in de wondere wereld van blokken..."],"Snow Patrol":["Snow Patrol"],Dimensions:["Afmetingen"],"Minimum height in pixels":["Minimum hoogte in pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to Action"],"In quoting others, we cite ourselves.":["Wanneer we anderen quoten, citeren we onszelf."],cite:["citaat"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc verschijnt\u2014stil, besneeuwd, en sereen."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In een dorp La Mancha, waarvan ik me de naam niet wil herinneren, woonde niet lang geleden \xe9\xe9n van die heren die een lans in het lansrek houden, een oud schild, een slank houweel, en een windhond om mee te jagen."],"Block navigation":["Bloknavigatie"],"Enable Full Site Editing":["Full Site Editing aanzetten"],"Full Site Editing":["Full Site Editing"],"Templates to include in your theme.":["Templates die toegevoegd moeten worden aan je thema."],Templates:["Templates"],"Inserter Help Panel":["Inserter help paneel"],"Pre-publish Checks":["Controles voor publicatie"],"Please contact your site administrator to install new blocks.":["Neem contact op met je sitebeheerder om nieuwe blokken te installeren."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Geen blokken gevonden in je bibliotheek. Neem contact op met je sitebeheerder om nieuwe blokken te installeren"],"No blocks found in your library.":["Geen blokken gevonden in je bibliotheek."],"No blocks found in your library. These blocks can be downloaded and installed:":["Geen blokken gevonden in je bibliotheek. Deze blokken kunnen worden gedownload en ge\xefnstalleerd:"],"No blocks found in your library. We did find %d block available for download.":["Geen blokken gevonden in je bibliotheek. We vonden %d blok beschikbaar voor download.","Geen blokken gevonden in je bibliotheek. We vonden %d blokken beschikbaar voor download."],"Block previews can\u2019t load.":["Blok voorbeelden kunnen niet geladen worden."],Retry:["Probeer opnieuw"],"Block previews can't install.":["Blok voorbeelden kunnen niet ge\xefnstalleerd worden."],"Updated %s":["Bijgewerkt %s"],"%d active installation":["%d actieve installatie","%d actieve installaties"],"This author has %d block, with an average rating of %d.":["Deze auteur heeft %d blok met een gemiddelde waardering van %d.","Deze auteur heeft %d blokken met een gemiddelde waardering van %d."],"Authored by %s":["Geschreven door %s"],Add:["Toevoegen"],"%d total rating":["%d waardering","%d waarderingen"],"%s out of 5 stars":["%s van 5 sterren"],"Enter Address":["Vul adres in"],"Pill Shape":["Pilvorm"],"Logos Only":["Alleen logo's"],"Create a block of links to your social media or external sites":["Maak een blok met links naar je social media of externe sites"],"Social links":["Sociale links"],"Open block navigator":["Open bloknavigator"],"Attachment page":["Bijlagepagina"],Fill:["Vulling"],"Link rel":["Linkrelatie"],"Border Radius":["Hoekafronding"],"Write gallery caption\u2026":["Schrijf een galerij onderschrift..."],"Content Blocks":["Inhoud blokken"],"Restore the backup":["Zet de backup terug"],"The backup of this post in your browser is different from the version below.":["De backup van dit bericht in je browser verschilt van de versie hieronder."],"Enable Block Directory search":["Zoeken in de Blok-directory inschakelen"],"Block Directory":["Blok-directory"],"Unable to connect to the filesystem. Please confirm your credentials.":["Niet mogelijk om verbinding te maken met het bestandssysteem. Bevestig je inloggegevens."],"Sorry, you are not allowed to install blocks.":["Sorry, je hebt geen toestemming om blokken te installeren."],"%1$d block is disabled.":["%1$d blok is uitgeschakeld.","%1$d blokken zijn uitgeschakeld."],"Reverse List Numbering":["Omgekeerde lijstnummering"],"Start Value":["Startwaarde"],"Ordered List Settings":["Geordende lijst instellingen"],"Clear Media":["Wis media"],"block style\x04Circle Mask":["Cirkel masker"],"Default Style":["Standaard stijl"],"Not set":["Niet ingesteld"],"While writing, you can press / to quickly insert new blocks.":["Je kunt / intoetsen tijdens het schrijven om snel nieuwe blokken in te voegen."],"Browse through the library to learn more about what each block does.":["Blader door de bibliotheek voor meer informatie over wat elk blok doet."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Er zijn blokken beschikbaar voor alle soorten inhoud: tekst invoegen, koppen, afbeeldingen, lijsten, video's, tabellen en nog veel meer."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Welkom in de wondere wereld van blokken! Blokken zijn de basis van alle inhoud in de editor."],"Version of the content block format used by the object.":["Versie van de inhoudsblokindeling die door het object wordt gebruikt."],"HTML content for the object, transformed for display.":["HTML-inhoud van het object, aangepast voor weergave."],"Content for the object, as it exists in the database.":["Inhoud voor het object, zoals het bestaat in de database."],"The content for the object.":["De inhoud voor het object."],"Change column alignment":["Wijzig uitlijning kolom"],"Align Column Right":["Kolom rechts uitlijnen"],"Align Column Center":["Kolom centreren"],"Align Column Left":["Kolom links uitlijnen"],Color:["Kleur"],"Vivid purple":["Helder paars"],"Disable & Reload":["Uitschakelen & herladen"],"Enable & Reload":["Inschakelen & herladen"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Het herladen van de pagina is vereist voor deze wijziging. Zorg ervoor dat je inhoud is opgeslagen voor herladen."],"Display these keyboard shortcuts.":["Toon deze toetsencombinaties."],"Experiments Settings":["Experimentele instellingen"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg bevat enkele experimentele functies die je kunt inschakelen. Selecteer welke je wilt gebruiken. Deze functies worden gewijzigd, het wordt niet aangeraden om deze in productie te gebruiken."],"Enable Widgets Screen and Legacy Widget Block":["Widgets scherm en verouderd widget blok inschakelen"],"Experiment settings":["Experimentele instellingen"],"Block name name must be a string.":["Bloknaam moet een string zijn."],Custom:["Aangepast"],Draft:["Concept"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blok \"%1$s\" bevat geen stijl genaamd \"%2$s.\"."],"Learn more about anchors":["Meer informatie over ankers"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Vul \xe9\xe9n of twee woorden in \u2014\xa0zonder spaties \u2014\xa0om een uniek web-adres te maken voor deze kop, genaamd een \u201canker.\u201d Dan kan je direct naar deze sectie van je pagina linken."],"Widget Blocks (Experimental)":["Widget blokken (experimenteel)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Upload een videobestand, selecteer er \xe9\xe9n vanuit je mediabibliotheek of voeg er \xe9\xe9n toe met een URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Upload een afbeelding, selecteer er \xe9\xe9n vanuit je mediabibliotheek of voeg er \xe9\xe9n toe met een URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Upload een audiobestand, selecteer er \xe9\xe9n vanuit je mediabibliotheek of voeg er \xe9\xe9n toe met een URL."],"Upload a media file or pick one from your media library.":["Upload een mediabestand of selecteer er \xe9\xe9n vanuit je mediabibliotheek."],Skip:["Overslaan"],"Select a pattern to start with.":["Selecteer een patroon om mee te beginnen."],"Add a page, link, or other item to your navigation.":["Voeg een pagina, link, of ander element toe aan je navigatie."],"What's this?":["Wat is dit?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Laat zoekmachines deze link niet volgen."],"Provide more context about where the link goes.":["Geef meer context over waar de link naartoe gaat."],"Title Attribute":["Titelattribuut"],"SEO Settings":["SEO instellingen"],Description:["Beschrijving"],"Open in new tab":["Open in nieuw tabblad"],links:["links"],navigation:["navigatie"],menu:["menu"],"Add a navigation block to your site.":["Voeg een navigatieblok toe aan je site."],"Upload a file or pick one from your media library.":["Upload een bestand of selecteer er \xe9\xe9n vanuit je mediabibliotheek."],"Learn more about embeds":["Meer informatie over insluitingen"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Plak een link naar de inhoud die je wilt laten zien op je site."],"Upload an image or video file, or pick one from your media library.":["Upload een afbeelding of videobestand of selecteer er \xe9\xe9n vanuit je mediabibliotheek."],"Three columns; wide center column":["Drie kolommen, brede midden kolom"],"Three columns; equal split":["Drie kolommen; gelijkmatig verdeeld"],"Two columns; two-thirds, one-third split":["Twee kolommen; twee derde, \xe9\xe9n derde verdeling"],"Two columns; one-third, two-thirds split":["Twee kolommen; \xe9\xe9n derde, twee derde verdeling"],"Two columns; equal split":["Twee kolommen; gelijkmatig verdeeld"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Je site heeft geen enkele %s, er is op dit moment dus niets hier te tonen."],"More tools & options":["Meer gereedschap & opties"],"Create Table":["Maak tabel"],"Insert a table for sharing data.":["Voeg een tabel in voor het delen van gegevens."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Loskoppelen"],"verb\x04Group":["Groeperen"],"Separate with commas or the Enter key.":["Scheid met komma's of de Enter-toets."],"Separate with commas, spaces, or the Enter key.":["Scheid met komma's, spaties of de Enter-toets."],"Separate multiple classes with spaces.":["Scheid meerdere classes met spaties."],"Move image forward":["Verplaats afbeelding naar voren"],"Move image backward":["Verplaats afbeelding naar achteren"],"Sorry, you are not allowed to edit sidebars.":["Sorry, je geen toestemming om zijbalken te bewerken."],"Sorry, you are not allowed to read sidebars.":["Sorry, je hebt geen toestemming om zijbalken te lezen."],"The sidebar\u2019s ID.":["De ID van de zijbalk."],"Displays a set of blocks":["Geeft een groep blokken weer"],"Blocks Area":["Blokkengebied"],"Block rendered as empty.":["Blok weergegeven als leeg."],"Inline Code":["Inline code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Opmerking: video's die automatisch worden afgespeeld, kunnen voor sommige bezoekers gebruiksproblemen veroorzaken."],"Footer section":["Footer sectie"],"Header section":["Header sectie"],"Sorting and Filtering":["Sorteren en filteren"],"Post Meta Settings":["Bericht meta instellingen"],"Post Content":["Bericht inhoud"],"Post Content Settings":["Bericht inhoud instellingen"],"Percentage width":["Percentage breedte"],"Column Settings":["Kolominstellingen"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Opmerking: audiobestanden die automatisch worden afgespeeld, kunnen voor sommige bezoekers gebruiksproblemen veroorzaken."],"Block area updated.":["Blokgebied bijgewerkt."],"Block area scheduled.":["Blokgebied ingepland."],"Block area published.":["Blokgebied gepubliceerd."],"Block areas list":["Blokgebieden lijst"],"Block areas list navigation":["Blokgebieden lijstnavigatie"],"Filter block areas list":["Filter blokgebieden lijst"],"No block area found.":["Geen blokgebied gevonden."],"Search Block Areas":["Zoek blokgebieden"],"All Block Areas":["Alle blokgebieden"],"View Block Area":["Bekijk blokgebied"],"Edit Block Area":["Bewerk blokgebied"],"New Block Area":["Nieuw blokgebied"],"Add New Block Area":["Voeg nieuw blokgebied toe"],"admin menu\x04Block Areas":["Blokgebieden"],"post type singular name\x04Block Area (Experimental)":["Blokgebied (experimenteel)"],"post type general name\x04Block Area (Experimental)":["Blokgebied (experimenteel)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimenteel aangepast berichttype dat blokgebieden bevat waarnaar wordt verwezen door thema's."],"Widgets screen content":["Widgets-scherm inhoud"],"Widgets advanced settings":["Widgets geavanceerde instellingen"],"(experimental)":["(experimenteel)"],"Block Areas":["Blokgebieden"],"Widgets screen top bar":["Widgets-scherm topbar"],"This color combination may be hard for people to read.":["Deze kleurencombinatie kan moeilijk te lezen zijn voor mensen."],"There is no poster image currently selected":["Er is momenteel geen posterafbeelding geselecteerd"],"The current poster image url is %s":["De URL van de huidige posterafbeelding is %s"],section:["sectie"],row:["rij"],wrapper:["wrapper"],container:["container"],"A block that groups other blocks.":["Een blok wat andere blokken groepeert."],Group:["Groep"],"Crop image to fill entire column":["Snij afbeelding bij om de gehele kolom te vullen"],"Play inline":["Inline afspelen"],"Leave empty if the image is purely decorative.":["Laat leeg als de afbeelding alleen decoratief is."],"Describe the purpose of the image":["Beschrijf het doel van de afbeelding"],"Add a block":["Een blok toevoegen"],"Block vertical alignment setting label\x04Change vertical alignment":["Wijzig verticale uitlijning"],"Block vertical alignment setting\x04Vertically Align Bottom":["Verticaal uitlijnen onderkant"],"Block vertical alignment setting\x04Vertically Align Middle":["Verticaal uitlijnen midden"],"Replace Image":["Vervang afbeelding"],"Block vertical alignment setting\x04Vertically Align Top":["Verticaal uitlijnen bovenkant"],"Display a legacy widget.":["Toon een verouderde widget."],"Legacy Widget (Experimental)":["Verouderde widget (experimenteel)"],"Change widget":["Wijzig widget"],"Legacy Widget":["Verouderde widget"],"You don't have permissions to use widgets on this site.":["Je hebt geen rechten om widgets op deze site te gebruiken."],"Select a legacy widget to display:":["Selecteer een te tonen verouderde widget:"],"There are no widgets available.":["Er zijn geen widgets beschikbaar."],"Change block type or style":["Wijzig bloktype of stijl"],"keyboard key\x04Space":["Spatie"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["Meer mooiere tekst regelaars"],"Search Terms":["Zoektermen"],"Exit the Editor":["Sluit de editor"],"Block Manager":["Blokbeheerder"],"Class name of the widget.":["Classnaam van de widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, je hebt geen toestemming om widgets op deze site te benaderen."],"Widgets (beta)":["Widgets (beta)"],link:["link"],"Embedded content from %s can't be previewed in the editor.":["Ingesloten inhoud van %s kan niet worden bekeken in de editor."],"Custom Color":["Aangepaste kleur"],"Prompt visitors to take action with a button-style link.":["Moedig bezoekers aan om actie te ondernemen met een link die eruit ziet als knop."],"Stick to the top of the blog":["Plak aan de bovenkant van de blog"],"Read about permalinks":["Lees over permalinks"],"The last part of the URL.":["Het laatste gedeelte van de URL."],"URL Slug":["URL slug"],"A cloud of your most used tags.":["Een wolk van je meest gebruikte tags."],"Tag Cloud":["Tagwolk"],Taxonomy:["Taxonomie"],"Tag Cloud Settings":["Tagwolk instellingen"],"- Select -":["- Selecteer -"],Default:["Standaard"],find:["vind"],"Help visitors find your content.":["Help bezoekers je inhoud te vinden."],Search:["Zoek"],"Add button text\u2026":["Voeg knoptekst toe..."],"Button text":["Knoptekst"],"Optional placeholder\u2026":["Optionele plaatshouder..."],"Optional placeholder text":["Optionele plaatshoudertekst"],"Add label\u2026":["Voeg label toe..."],"Label text":["Labeltekst"],"image %1$d of %2$d in gallery":["afbeelding %1$d van %2$d in galerij"],archive:["archief"],posts:["berichten"],"A calendar of your site\u2019s posts.":["Een kalender van de berichten op je site."],Calendar:["Kalender"],by:["door"],"An error has occurred, which probably means the feed is down. Try again later.":["Er is een fout opgetreden, wat waarschijnlijk betekent dat de feed niet werkt. Probeer het later opnieuw."],"RSS Error:":["RSS fout:"],"block style\x04Default":["Standaard"],"Fullscreen mode deactivated":["Schermvullende weergave gedeactiveerd"],"Fullscreen mode activated":["Schermvullende weergave geactiveerd"],"Spotlight mode deactivated":["Spotlight-modus gedeactiveerd"],"Spotlight mode activated":["Spotlight-modus geactiveerd"],"Top toolbar deactivated":["Bovenste toolbar gedeactiveerd"],"Top toolbar activated":["Bovenste toolbar geactiveerd"],Back:["Terug"],"Feature activated":["Mogelijkheid geactiveerd"],"Feature deactivated":["Mogelijkheid gedeactiveerd"],"Vertical Pos.":["Verticale Pos."],"Horizontal Pos.":["Horizontale Pos."],feed:["feed"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Toon berichten van een RSS of Atom feed."],RSS:["RSS"],"Max number of words in excerpt":["Maximum aantal woorden in samenvatting"],"Display excerpt":["Toon samenvatting"],"Display date":["Toon datum"],"Display author":["Toon auteur"],"RSS Settings":["RSS instellingen"],"Edit RSS URL":["Bewerk RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Inhoud voor dit blok wordt getoond in de samenvatting van je archiefpagina."],"Hide the excerpt on the full content page":["Verberg de samenvatting op de volledige inhoudspagina"],"The excerpt is visible.":["De samenvatting is zichtbaar."],"The excerpt is hidden.":["De samenvatting is verborgen."],"Sorry, this content could not be embedded.":["Het spijt me, deze inhoud kon niet worden ingesloten."],"Embed Amazon Kindle content.":["Sluit Amazon Kindle inhoud in."],ebook:["e-boek"],"Embed Crowdsignal (formerly Polldaddy) content.":["Sluit Crowdsignal (voorheen Polldaddy) inhoud in."],"Focal Point Picker":["Focuspunt picker"],Underline:["Onderstreep"],"Attempt Block Recovery":["Probeer blokherstel"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Inhoud..."],"button label\x04Convert to link":["Omzetten naar link"],"button label\x04Try again":["Probeer nogmaals"],"Editor tips":["Editor tips"],"Block (selected)":["Blok (geselecteerd)"],"Document (selected)":["Document (geselecteerd)"],"%d word":["%d woord","%d woorden"],"Top Toolbar":["Top Toolbar"],"Link Rel":["Linkrelatie"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Cre\xeber content en sla het op voor jezelf en andere gebruikers op je site. Wanneer je het blok aanpast worden je wijzigingen overal doorgevoerd."],"To edit the featured image, you need permission to upload media.":["Om de uitgelichte afbeelding te kunnen bewerken heb je toestemming nodig om media te uploaden."],"To edit this block, you need permission to upload media.":["Om dit blok te kunnen bewerken, heb je toestemming nodig om media te uploaden."],"(selected block)":["(geselecteerd blok)"],"Block tools":["Blok-gereedschappen"],Permalink:["Permalink"],"This image has an empty alt attribute":["Deze afbeelding heeft een leeg alt-atribuut"],"This image has an empty alt attribute; its file name is %s":["Deze afbeelding heeft een leeg alt-atribuut; de bestandsnaam is %s"],"Block area reverted to draft.":["Blokgebied teruggezet naar concept."],"Block area published privately.":["Blokgebied priv\xe9 gepubliceerd."],"No block areas found in Trash.":["Geen blokgebieden gevonden in prullenbak."],"Block\x04Add New":["Voeg nieuwe toe"],"add new on admin bar\x04Block Area":["Blokgebied"],"Link inserted.":["Link ingevoegd."],"Warning: the link has been inserted but may have errors. Please test it.":["Waarschuwing: de link is toegevoegd, maar kan fouten bevatten. Graag goed testen."],"%s block selected.":["%s blok geselecteerd.","%s blokken geselecteerd."],Thumbnail:["Thumbnail"],"Full Size":["Volledige grootte"],"Link selected.":["Link geselecteerd."],"Start writing with text or HTML":["Begin met tekst of HTML schrijven "],"Type text or HTML":["Typ tekst of HTML"],"Block icon":["Blok-icoon"],"Align Text Right":["Tekst rechts uitlijnen"],"Align Text Center":["Tekst centreren"],"Align Text Left":["Tekst links uitlijnen"],"Start writing or type / to choose a block":["Begin met schrijven of typ / om een blok te kiezen"],"Empty block; start writing or type forward slash to choose a block":["Leeg blok; begin met schrijven of typ een schuine streep om een blok te kiezen"],"Paragraph block":["Paragraafblok"],"Page Break":["Pagina-einde"],"Stack on mobile":["Stapel op mobiel"],Annotation:["Aantekening"],"Drag images, upload new ones or select files from your library.":["Sleep afbeeldingen, upload nieuwe of selecteer bestanden in je bibliotheek."],"blocks\x04Most Used":["Meest gebruikt"],"imperative verb\x04Resolve":["Oplossen"],"font size name\x04Huge":["Zeer groot"],"font size name\x04Large":["Groot"],"font size name\x04Medium":["Gemiddeld"],"font size name\x04Small":["Klein"],"font size name\x04Normal":["Normaal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Importeer"],"button label\x04Download":["Download"],"button label\x04Embed":["Insluiten"],"block title\x04Embed":["Insluiten"],"block title\x04Classic":["Klassiek"],"block style\x04Large":["Groot"],"%s (opens in a new tab)":["%s (opent in een nieuwe tab)"],"Link edited.":["Link bewerkt."],"Link removed.":["Link verwijderd."],media:["media"],"Double-check your settings before publishing.":["Controleer je instellingen goed alvorens te publiceren."],"Generating preview\u2026":["Voorbeeld genereren..."],"Edit or update the image":["Bewerk of update de afbeelding"],Media:["Media"],"Navigate to the nearest toolbar.":["Navigeer naar de dichtstbijzijnde toolbar."],"Document tools":["Document gereedschap"],"Document and block tools":["Document en blok gereedschap"],"Embed a video from your media library or upload a new one.":["Een video uit je mediabibliotheek insluiten of upload een nieuwe."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Voeg po\xebzie toe. Gebruik speciale ruimte-indelingen. Of citeer muziekteksten."],"Add white space between blocks and customize its height.":["Voeg ruimte toe tussen blokken en pas de hoogte aan."],"Insert additional custom elements with a WordPress shortcode.":["Voeg extra aangepaste elementen in met een WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Geef de lezer rust tussen idee\xebn of secties met een horizontale scheidingslijn."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Geef geciteerde tekst visuele nadruk. \"Door anderen te citeren, citeren we onszelf.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Geef speciale visuele nadruk aan een citaat uit je eigen tekst."],"Start with the building block of all narrative.":["Begin met de bouwsteen van alle verhalen."],"Separate your content into a multi-page experience.":["Laat je inhoud ervaren over meerdere pagina's."],"Set media and words side-by-side for a richer layout.":["Zet media en woorden naast elkaar in voor een mooiere lay-out."],"Media & Text Settings":["Media- en tekst instellingen"],"Create a bulleted or numbered list.":["Maak lijst met opsommingstekens of nummers."],"Display a list of your most recent comments.":["Toon een lijst van je meest recente reacties."],"Insert an image to make a visual statement.":["Voeg een afbeelding in om een visuele uitspraak te maken."],"Add custom HTML code and preview it as you edit.":["Voeg aangepaste HTML-code toe en bekijk een voorbeeld tijdens het bewerken."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduceer nieuwe secties en organiseer je inhoud zo dat bezoekers (en zoekmachines) de structuur van je inhoud begrijpen."],"Display multiple images in a rich gallery.":["Toon meerdere afbeeldingen in een grandiose galerij."],"Add a link to a downloadable file.":["Voeg een link naar een downloadbaar bestand toe."],"Embed videos, images, tweets, audio, and other content from external sources.":["Video, afbeeldingen, tweets, audio en andere inhoud van externe bronnen insluiten."],"Resize for smaller devices":["Verander formaat voor kleinere apparaten"],"This embed may not preserve its aspect ratio when the browser is resized.":["Deze insluiting behoudt mogelijk niet haar beeldverhouding wanneer de browsergrootte wordt gewijzigd."],"This embed will preserve its aspect ratio when the browser is resized.":["Deze insluiting behoudt haar beeldverhouding wanneer de browsergrootte wordt gewijzigd."],"Embed an Animoto video.":["Een Animoto video insluiten."],"Embed a Vimeo video.":["Een Vimeo video insluiten."],"Embed Flickr content.":["Flickr inhoud insluiten."],"Embed Spotify content.":["Spotify inhoud insluiten."],"Embed SoundCloud content.":["SoundCloud inhoud insluiten."],"Embed a WordPress post.":["Een WordPress bericht insluiten."],"Embed an Instagram post.":["Een Instagram bericht insluiten."],"Embed a Facebook post.":["Een Facebook bericht insluiten."],"Embed a WordPress.tv video.":["Een WordPress.tv video insluiten."],"Embed a VideoPress video.":["Een VideoPress video insluiten."],"Embed a Tumblr post.":["Een Tumblr bericht insluiten."],"Embed a TED video.":["Een TED video insluiten."],"Embed Speaker Deck content.":["Speaker Deck inhoud insluiten."],"Embed a YouTube video.":["Een YouTube video insluiten."],"Embed SmugMug content.":["SmugMug inhoud insluiten."],"Embed Slideshare content.":["Slideshare inhoud insluiten."],"Embed Scribd content.":["Scribd inhoud insluiten."],"Embed Screencast content.":["Screencast inhoud insluiten."],"Embed ReverbNation content.":["ReverbNation inhoud insluiten."],"Embed a Reddit thread.":["Een Reddit discussie insluiten."],"Embed Polldaddy content.":["Polldaddy inhoud insluiten."],"Embed Mixcloud content.":["Mixcloud inhoud insluiten."],"Embed a tweet.":["Een tweet insluiten."],"Embed Meetup.com content.":["Meetup.com inhoud insluiten."],"Embed Kickstarter content.":["Kickstarter inhoud insluiten."],"Embed Issuu content.":["Issuu inhoud insluiten."],"Embed Imgur content.":["Imgur inhoud insluiten."],"Embed Hulu content.":["Hulu inhoud insluiten."],"Embed a Dailymotion video.":["Een Dailymotion video insluiten."],"Embed CollegeHumor content.":["CollegeHumor inhoud insluiten."],"Embed Cloudup content.":["Cloudup inhoud insluiten."],"Add an image or video with a text overlay \u2014 great for headers.":["Voeg een afbeelding of video toe met tekst eroverheen \u2014 geweldig voor headers."],"Display code snippets that respect your spacing and tabs.":["Toon stukjes code die je spati\xebring en tabs respecteren."],"Use the classic WordPress editor.":["Gebruik de klassieke WordPress editor."],"Display a list of all categories.":["Toon een lijst van alle categorie\xebn."],"Embed a simple audio player.":["Een simpele audiospeler insluiten."],"noun\x04View":["Bekijken"],"editor button\x04Left to right":["Links naar rechts"],"Save as Pending":["Opslaan als wachtend"],"%s address":["%s adres"],"Paste or type URL":["Plak of typ URL"],"Insert from URL":["Invoegen vanuit URL"],"Block Navigator":["Bloknavigatie"],Styles:["Stijlen"],"Advanced Panels":["Geavanceerde panelen"],"Document Panels":["Documentpanelen"],General:["Algemeen"],"Open the block navigation menu.":["Open het bloknavigatiemenu."],"Work without distraction":["Werk zonder afleiding"],"Focus on one block at a time":["Richt je op \xe9\xe9n blok tegelijk"],"Access all block and document tools in a single place":["Toegang tot alle blok- en documentgereedschappen op \xe9\xe9n plek"],Options:["Opties"],"(opens in a new tab)":["(opent in een nieuwe tab)"],Minutes:["Minuten"],Hours:["Uren"],Time:["Tijd"],Year:["Jaar"],Day:["Dag"],December:["December"],November:["November"],October:["Oktober"],September:["September"],August:["Augustus"],July:["Juli"],June:["Juni"],May:["Mei"],April:["April"],March:["Maart"],February:["Februari"],January:["Januari"],Month:["Maand"],Date:["Datum"],"Go to the first (home) or last (end) day of a week.":["Ga naar de eerste (begin) of laatste (einde) dag van de week."],"Home/End":["Begin/Einde"],"Home and End":["Begin en einde"],"Move backward (PgUp) or forward (PgDn) by one month.":["Ga \xe9\xe9n maand achteruit (PgUp) of vooruit (PgDn)."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Pagina omhoog en pagina omlaag"],"Move backward (up) or forward (down) by one week.":["Ga \xe9\xe9n week achteruit (omhoog) of vooruit (omlaag)."],"Up and Down Arrows":["Omhoog en omlaag pijlen"],"Move backward (left) or forward (right) by one day.":["Ga \xe9\xe9n dag achteruit (links) of vooruit (rechts)."],"Left and Right Arrows":["Links en rechts pijlen"],"Select the date in focus.":["Selecteer de geselecteerde datum."],"Navigating with a keyboard":["Navigeren met een toetsenbord"],"Click the desired day to select it.":["Klik op de gewenste dag om deze te selecteren."],"Click the right or left arrows to select other months in the past or the future.":["Klik op de linker- of rechterpijlen om andere maanden - in het verleden of de toekomst - te selecteren."],"Click to Select":["Klik om te selecteren"],"Calendar Help":["Kalenderhulp"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Gebruik je pijltjestoetsen om de basiskleur te wijzigen. Ga omhoog om de kleur lichter te maken, omlaag om deze donkerder te maken, naar links om de verzadiging te verhogen en naar rechts om de verzadiging te verlagen."],"Choose a shade":["Kies een schaduw"],"Change color format":["Wijzig kleurformaat"],"Color value in HSL":["Kleurwaarde in HSL"],"Color value in RGB":["Kleurwaarde in RGB"],"Color value in hexadecimal":["Kleurwaarde in hexadecimaal"],"RGB mode active":["RGB modus actief"],"Hex color mode active":["Hex-kleur modus actief"],"Hue/saturation/lightness mode active":["Tint/verzadiging/lichtheidsmodus actief"],"Move the arrow left or right to change hue.":["Beweeg de pijl naar links of rechts om de tint te wijzigen."],"Hue value in degrees, from 0 to 359.":["Tintwaarde in graden, van 0 tot 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alfa-waarde, van 0 (transparant) tot 1 (volledig ondoorzichtig)."],Stripes:["Strepen"],"Your site doesn\u2019t include support for this block.":["Je site ondersteunt dit blok niet."],"Unrecognized Block":["Niet herkend blok"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Je site ondersteunt het \"%s\" blok niet. Je kunt dit blok zo laten staan, of het helemaal verwijderen."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Je site ondersteunt het \"%s\" blok niet. Je kunt dit blok zo laten staan, de inhoud omzetten naar een Aangepast HTML blok, of het helemaal verwijderen."],"Media area":["Mediagebied"],"Media & Text":["Media & tekst"],"Show media on right":["Toon media rechts"],"Show media on left":["Toon media links"],"Open in New Tab":["Openen in nieuwe tab"],Cover:["Cover"],"Border Settings":["Rand-instellingen"],"Edit media":["Bewerk media"],Medium:["Gemiddeld"],"Paste URL or type to search":["Plak URL of typ om te zoeken"],Terms:["Termen"],"Your work will be published at the specified date and time.":["Je werk wordt gepubliceerd op de opgegeven datum en tijd."],"Are you ready to schedule?":["Ben je klaar om in te plannen?"],"Always show pre-publish checks.":["Altijd pre-publicatie-controles tonen."],"Take Over":["Neem over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Een andere gebruiker werkt momenteel aan dit bericht, wat betekent dat je geen veranderingen kan maken, behalve als je het bericht overneemt."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s werkt momenteel aan dit bericht, wat betekent dat je geen veranderingen kan maken, behalve als je het bericht overneemt."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Een andere gebruiker heeft het bewerken van dit bericht overgenomen. Geen zorgen, je aanpassingen tot op dit moment zijn opgeslagen."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s heeft het bewerken van dit bericht overgenomen. Geen zorgen, je aanpassingen tot op dit moment zijn opgeslagen."],Avatar:["Avatar"],"This post is already being edited.":["Dit bericht wordt al bewerkt."],"Someone else has taken over this post.":["Iemand anders heeft dit bericht overgenomen."],"This block contains unexpected or invalid content.":["Dit blok bevat onverwachte of ongeldige inhoud."],"Resolve Block":["Oplossen blok"],"Convert to HTML":["Converteer naar HTML"],"This block can only be used once.":["Dit blok kan maar \xe9\xe9nmaal gebruikt worden."],"Exit Code Editor":["Verlaat code editor"],"Editing Code":["Bewerken code"],"Solid Color":["Effen kleur"],"Main Color":["Hoofdkleur"],HTML:["HTML"],"Write HTML\u2026":["Schrijf HTML..."],"Media Settings":["Media-instellingen"],"Overlay Color":["Bedekkingskleur"],Overlay:["Bedekking"],"Insert Media":["Media invoegen"],"Reusable block imported successfully!":["Herbruikbaar blok succesvol ge\xefmporteerd!"],"Invalid Reusable Block JSON file":["Ongeldig herbruikbare blok JSON-bestand"],"Invalid JSON file":["Ongeldig JSON-bestand"],"Import from JSON":["Importeer vanuit JSON"],Backtick:["Accent grave"],Period:["Punt"],Comma:["Komma"],"Change type of %d block":["Wijzig type van %d blok","Wijzig type van %d blokken"],Current:["Huidig"],"After Conversion":["Na conversie"],"Change alignment":["Wijzig uitlijning"],"Change text alignment":["Wijzig tekstuitlijning"],"%d block":["%d blok","%d blokken"],Escape:["Escape"],"Forward-slash":["Schuine streep"],"No archives to show.":["Geen archieven om te tonen."],"This file is empty.":["Dit bestand is leeg."],"Sorry, this file type is not supported here.":["Sorry, dit bestandstype wordt hier niet ondersteund."],"Manage All Reusable Blocks":["Beheer alle herbruikbare blokken"],Title:["Titel"],"Fullscreen Mode":["Schermvullende weergave"],"Beautiful landscape":["Prachtig landschap"],"Close panel":["Sluit paneel"],"Convert to Classic Block":["Omzetten naar klassiek blok"],"Remove Poster Image":["Verwijder posterafbeelding"],"Select Poster Image":["Selecteer posterafbeelding"],"Poster Image":["Posterafbeelding"],"This block is deprecated. Please use the Columns block instead.":["Dit blok is verouderd. Gebruik in plaats hiervan het kolommenblok."],"Text Columns (deprecated)":["Tekstkolommen (verouderd)"],"Row Count":["Aantal rijen"],"Column Count":["Aantal kolommen"],"This block is deprecated. Please use the Paragraph block instead.":["Dit blok is verouderd. Gebruik in plaats hiervan het paragraafblok."],"Subheading (deprecated)":["Subkop (verouderd)"],blockquote:["blockquote"],"Change the block type after adding a new paragraph.":["Verander het bloktype na het toevoegen van een nieuwe paragraaf."],"Spotlight Mode":["Spotlight-modus"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags helpen gebruikers en zoekmachines je site te navigeren en je inhoud te vinden. Voeg een aantal trefwoorden toe om je bericht te beschrijven."],"Add tags":["Voeg tags toe"],"Apply the \"%1$s\" format.":["Pas het \"%1$s\" format toe."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Je thema gebruikt berichtformats om verschillende typen inhoud te markeren, zoals afbeeldingen of video's. Pas een berichtformat toe om de speciale vormgeving te zien."],"Use a post format":["Gebruik een berichtformat"],"Insert After":["Invoegen na"],"Insert Before":["Invoegen voor"],"Move %1$d block from position %2$d down by one place":["Verplaats %1$d blok van positie %2$d \xe9\xe9n plaats omlaag","Verplaats %1$d blokken van positie %2$d \xe9\xe9n plaats omlaag"],"Move %1$d block from position %2$d up by one place":["Verplaats %1$d blok van positie %2$d \xe9\xe9n plaats omhoog","Verplaats %1$d blokken van positie %2$d \xe9\xe9n plaats omhoog"],"Move %1$s block from position %2$d %3$s to position %4$d":["Verplaats %1$s blok van positie %2$d %3$s naar positie %4$d"],movie:["film"],"Insert a new block before the selected block(s).":["Voeg een nieuw blok in voor de geselecteerde blok(ken)."],"Remove the selected block(s).":["Verwijder de geselecteerde blok(ken)."],"Duplicate the selected block(s).":["Kopieer de geselecteerde blok(ken)."],"Block shortcuts":["Blok sneltoetsen"],"Clear selection.":["Wis selectie."],"Select all text when typing. Press again to select all blocks.":["Selecteer alle tekst tijdens het typen. Druk nogmaals om alle blokken te selecteren."],"Selection shortcuts":["Selectie sneltoetsen"],"Switch between Visual Editor and Code Editor.":["Schakel tussen de visuele editor en de code editor."],"Navigate to the previous part of the editor (alternative).":["Navigeer naar het vorige deel van de editor (alternatief)."],"Navigate to the next part of the editor (alternative).":["Navigeer naar het volgende deel van de editor (alternatief)."],"Navigate to the previous part of the editor.":["Navigeer naar het vorige deel van de editor."],"Navigate to the next part of the editor.":["Navigeer naar het volgende deel van de editor."],"Show or hide the settings sidebar.":["Toon of verberg de instellingen-zijbalk."],"Redo your last undo.":["Herhaal je laatste ongedaan maken."],"Undo your last changes.":["Maak je laatste aanpassingen ongedaan."],"Save your changes.":["Sla je aanpassingen op."],"Global shortcuts":["Globale sneltoetsen"],"Remove a link.":["Verwijder een link."],"Convert the selected text into a link.":["Zet de geselecteerde tekst om naar een link."],"Underline the selected text.":["Onderstreep de geselecteerde tekst."],"Make the selected text italic.":["Maak de geselecteerde tekst cursief."],"Make the selected text bold.":["Maak de geselecteerde tekst vetgedrukt."],"Text formatting":["Tekstformattering"],"Insert a new block after the selected block(s).":["Voeg een nieuw blok in na geselecteerde blok(ken)."],"Keyboard Shortcuts":["Toetsenbord sneltoetsen"],"Thanks for testing Gutenberg!":["Bedankt voor het testen van Gutenberg!"],"Help build Gutenberg":["Help Gutenburg bouwen"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Wil je meer weten over het bouwen van extra blokken, of ben je ge\xefnteresseerd om te helpen met het project, ga dan naar de GitHub repository."],"The WordPress community":["De WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Je kunt elk blok maken dat je wilt, statisch of dynamisch, decoratief of gewoontjes. Dit is bijvoorbeeld een pull-quote blok:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Elk blok kan gebruik maken van deze uitlijningen. Het insluitingsblok heeft deze ook en is standaard al responsive:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Hierboven staat een galerij met maar twee afbeeldingen. Het is een eenvoudiger manier om visueel aantrekkelijke indelingen te maken, zonder met floats te hoeven werken. Je kunt de galerij ook eenvoudig omzetten naar de individuele afbeeldingen met de blokomzetter."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Zeker, de afbeelding over de gehele breedte kan nogal groot worden. Maar soms is de afbeelding het waard."],"Accessibility is important — don’t forget image alt attribute":["Toegankelijkheid is belangrijk — vergeet het alt-attribuut van de afbeelding niet"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Door de nieuwe brede en volledige breedte uitlijningen met galerijen te combineren, kun je heel snel een media-rijke indeling maken."],"Media Rich":["Media-rijk"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Je kunt het aantal kolommen in je galerijen veranderen door een schuif in de blokinspecteur in de zijbalk te bewegen."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blokken kunnen alles zijn wat je wilt. Zo kun je bijvoorbeeld een subtiel citaat toevoegen in de opbouw van je tekst, of misschien wil je wel een groot opgemaakt citaat laten zien. Al deze mogelijkheden zijn beschikbaar in de inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["De informatie die overeenkomt met de bron van het citaat is een apart tekstveld, zoals bijschriften onder afbeeldingen, zodat de structuur van het citaat is beschermd, zelfs wanneer je de bron selecteert, aanpast of verwijdert. Je kunt het altijd weer eenvoudig terugzetten."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["De editor biedt een nieuwe bouwervaring voor pagina's en berichten, die het maken van berichten met opmaak eenvoudig maakt, en gebruikt \"blokken\" om zonder problemen te maken waar tot nog toe shortcodes, aangepaste HTML, of \"mystery meat\" insluitingen voor nodig zijn."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Een groot voordeel van blokken is, dat je ze op hun plaats kunt bewerken en de inhoud direct kunt manipuleren. In plaats van velden te hebben voor het bewerken van dingen zoals de bron van een citaat of de tekst van een knop, kun je de inhoud direct wijzigen. Probeer het volgende citaat eens te bewerken:"],"Visual Editing":["Visueel bewerken"],"And Lists like this one of course :)":["En lijsten zoals deze, uiteraard :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Indelingsblokken zoals knoppen, schermbrede afbeeldingen, afscheidingen, enz."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Insluitingen, zoals YouTube, tweets of andere WordPress berichten."],Galleries:["Galerijen"],"Images & Videos":["Afbeeldingen & videos"],"Text & Headings":["Tekst & koppen"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Probeer het eens uit. Je zal erachter komen dat WordPress al dingen in je berichten kan zetten die je niet eens wist. Hierbij een korte lijst van wat je daar op dit moment kunt vinden:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Stel je voor dat alles wat WordPress kan doen snel en op dezelfde plaats in de interface beschikbaar is. Je hoeft geen HTML-tags of classes uit te zoeken, of ingewikkelde shortcode-regels te onthouden. Dat is het idee achter de inserter: de knop (+) die rond de editor wordt weergegeven, waarmee je door alle beschikbare inhoudsblokken kunt bladeren en ze aan je bericht kunt toevoegen. Plugins en thema's kunnen hun eigen blokken registreren, waardoor allerlei mogelijkheden beschikbaar komen voor bewerken en publiceren."],"The Inserter Tool":["Het Inserter gereedschap"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Probeer het citaat te selecteren en te verwijderen of te bewerken, je hoeft niet bang te zijn dat je per ongeluk de afbeelding of andere tekst selecteert en de presentatie ru\xefneert."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Wanneer je thema het ondersteunt, zie je de \"breed\" knop op je afbeeldingstoolbar. Probeer het maar."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Het zorgvuldig omgaan met afbeeldingen en media is een belangrijk punt van de nieuwe editor. Hopelijk vind je aspecten als het toevoegen van bijschriften of het over de volle breedte laten zien van je foto's veel eenvoudiger en robuuster dan voorheen."],"A Picture is Worth a Thousand Words":["Een foto is duizend woorden waard"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Koppen zijn ook afzonderlijke blokken, wat helpt bij de opzet en organisatie van je inhoud."],"... like this one, which is right aligned.":["... zoals deze, die rechts is uitgelijnd."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Wat je nu leest is een tekstblok, het eenvoudigste blok van allemaal. Het tekstblok heeft haar eigen besturing zodat je het overal in het bericht kunt zetten..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Het doel van deze nieuwe editor is het eenvoudig en plezierig maken om rijke inhoud aan WordPress toe te voegen. Dit hele bericht bestaat uit stukjes inhoud - het lijkt wat op LEGO-stenen - die je kunt bewegen en waarmee je kunt werken. Beweeg je cursor rond en je ziet dat de verschillende blokken oplichten met contouren en pijlen. Druk op de pijlen om blokken snel te verplaatsen zonder bang te hoeven zijn dingen te verliezen tijdens kopieer- en plakwerk."],"Of Mountains & Printing Presses":["Over bergen & drukpersen"],"Welcome to the Gutenberg Editor":["Welkom bij de Gutenberg editor"],"block name\x04More":["Meer"],"button to expand options\x04More":["Meer"],"Are you sure you want to unschedule this post?":["Weet je zeker dat je de planning van dit bericht wilt intrekken?"],"Alt Text (Alternative Text)":["Alt tekst (alternatieve tekst)"],"Reusable Block":["Herbruikbaar blok"],"Unique identifier for the object.":["Unieke identificator voor het object."],"Untitled Reusable Block":["Naamloos herbruikbaar blok"],Small:["Klein"],"(%s: %s)":["(%s: %s)"],Reusable:["Herbruikbaar"],"(current %s: %s)":["(huidig %s: %s)"],"Remove from Reusable Blocks":["Verwijder uit herbruikbare blokken"],"Add to Reusable Blocks":["Voeg toe aan herbruikbare blokken"],"Keep as HTML":["Houd als HTML"],"Edit URL":["Bewerk URL"],"Color Settings":["Kleurinstellingen"],"The response is not a valid JSON response.":["De reactie is geen geldige JSON reactie."],"Editor publish":["Editor publiceren"],Muted:["Gedempt"],"Video Settings":["Video-instellingen"],"recent comments":["recente reacties"],"Latest Comments":["Nieuwste reacties"],"Display Excerpt":["Toon samenvatting"],"Display Date":["Toon datum"],"Display Avatar":["Toon avatar"],"Latest Comments Settings":["Nieuwste reacties-instellingen"],"Number of Comments":["Aantal reacties"],"Background Opacity":["Achtergronddekking"],Auto:["Automatisch"],Preload:["Voorladen"],"Audio Settings":["Audio-instellingen"],"Display a monthly archive of your posts.":["Toon een maandelijks archief van je berichten."],"Display as Dropdown":["Toon als dropdown"],"Show Post Counts":["Toon aantal berichten"],"Archives Settings":["Archief-instellingen"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Ondersteuning"],"No comments to show.":["Geen reacties om te tonen."],"%1$s on %2$s":["%1$s op %2$s"],"Select Post":["Selecteer bericht"],"Select Week":["Selecteer week"],"Select Day":["Selecteer dag"],"Select Month":["Selecteer maand"],"Select Year":["Selecteer jaar"],Archives:["Archieven"],"Very dark gray":["Heel donkergrijs"],"Cyan bluish gray":["Cyaan blauwachtig grijs"],"Very light gray":["Heel lichtgrijs"],"Vivid cyan blue":["Levendig cyaan blauw"],"Pale cyan blue":["Bleek cyaan blauw"],"Vivid green cyan":["Levendig groen cyaan"],"Light green cyan":["Licht groen cyaan"],"Luminous vivid amber":["Lichtgevend levendig amber"],"Luminous vivid orange":["Lichtgevend levendig oranje"],"Vivid red":["Levendig rood"],"Pale pink":["Bleek roze"],"Inline image":["Inline afbeelding"],"Available block types":["Beschikbare bloktypes"],"Transform To:":["Veranderen naar:"],"Remove Block":["Verwijder blok","Verwijder blokken"],"Open publish panel":["Open publiceren paneel"],Dots:["Stippen"],"Wide Line":["Brede lijn"],Large:["Groot"],"Show download button":["Toon downloadknop"],"Download button settings":["Downloadknop instellingen"],"Link To":["Link naar"],"Text link settings":["Tekstlink instellingen"],pdf:["pdf"],document:["document"],"Copy URL":["Kopieer URL"],"Write file name\u2026":["Schrijf bestandsnaam..."],"Edit file":["Bewerk bestand"],File:["Bestand"],"A single column within a columns block.":["Een enkele kolom in een kolommenblok."],Column:["Kolom"],Outline:["Omtrek"],Loop:["Lus"],Autoplay:["Automatisch spelen"],"Playback Controls":["Afspeelknoppen"],"Close dialog":["Sluit dialoog"],"Sorry, this file type is not permitted for security reasons.":["Sorry, dit bestandstype is om veiligheidsredenen niet toegestaan."],"Disable tips":["Schakel tips uit"],"Got it":["Ik snap het"],"See next tip":["Bekijk volgende tip"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Ben je klaar, lever dan je werk in ter beoordeling. Een redacteur kan je werk dan goedkeuren voor je."],"Are you ready to submit for review?":["Ben je klaar om je werk in te leveren voor beoordeling?"],"Replace image":["Vervang afbeelding"],"Remove image":["Verwijder afbeelding"],"Error while uploading file %s to the media library.":["Fout tijdens het uploaden van bestand %s naar de mediabibliotheek."],"This file exceeds the maximum upload size for this site.":["Dit bestand overschreidt de maximale uploadgrootte voor deze site."],"View the autosave":["Bekijk de autosave"],"There is an autosave of this post that is more recent than the version below.":["Er is een autosave van dit bericht dat recenter is dan onderstaande versie."],Autosaving:["Automatisch opslaan"],"Enter URL here\u2026":["Vul URL in..."],"Pin to toolbar":["Maak vast aan toolbar"],"Unpin from toolbar":["Maak los van toolbar"],"Insert a table \u2014 perfect for sharing charts and data.":["Voeg een tabel in \u2014 perfect voor het delen van grafieken en gegevens."],"Fixed width table cells":["Tabelcellen met een vaste breedte"],"Table Settings":["Tabel instellingen"],"Add text that respects your spacing and tabs, and also allows styling.":["Voeg tekst toe dat jouw tussenruimte en tabs behoudt, en ook styling toestaat."],"Display a list of your most recent posts.":["Toon een lijst van je meest recente berichten."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Voeg een blok toe dat inhoud van andere sites laat zien, zoals Twitter, Instagram, of YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Voeg een blok toe dat inhoud toont in meerdere kolommen, voeg dan de inhoudsblokken toe die je wilt."],"Error loading block: %s":["Fout bij laden blok: %s"],"Unknown error":["Onbekende fout"],"Embed Handler":["Insluiten Handler"],"term\x04Remove %s":["Verwijder %s"],"Copy the permalink":["Kopieer de permalink"],"Permalink copied":["Permalink gekopieerd"],"Height in pixels":["Hoogte in pixels"],"Spacer Settings":["Vulelement instellingen"],Spacer:["Vulelement"],"Toggle to show a large initial letter.":["Klik om een grote eerste letter te tonen."],"Showing large initial letter.":["Toont grote eerste letter."],"Name:":["Naam:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s van %3$s)"],"Remove item":["Verwijder element"],"Color code: %s":["Kleurcode: %s"],"Skip to the selected block":["Spring naar het geselecteerde blok"],"Publish\u2026":["Publiceer..."],"Schedule\u2026":["Inplannen..."],"Edit post permalink":["Bewerk permalink van bericht"],"Show Block Settings":["Toon blok-instellingen"],"Hide Block Settings":["Verberg blok-instellingen"],"Block settings closed":["Blok-instellingen gesloten"],"Close plugin":["Sluit plugin"],"Link settings":["Link instellingen"],Unlink:["Link verwijderen"],"Page break":["Pagina-einde"],pagination:["paginering"],"next page":["volgende pagina"],"Image Size":["Afbeeldingsgrootte"],Height:["Hoogte"],Width:["Breedte"],"Image Dimensions":["Grootte afbeelding"],"Thumbnails are not cropped.":["Thumbnails zijn niet bijgesneden."],"Thumbnails are cropped to align.":["Thumbnails zijn passend bijgesneden."],"Media Library":["Mediabibliotheek"],Advanced:["Geavanceerd"],"Add item":["Voeg element toe"],"Reset the template":["Herstel de template"],"Keep it as is":["Laat zoals het is"],"The content of your post doesn\u2019t match the template assigned to your post type.":["De inhoud van je bericht komt niet overeen met de aan je berichttype toegewezen template."],"Resetting the template may result in loss of content, do you want to continue?":["Herstel van de template kan resulteren in verlies van inhoud, wil je doorgaan?"],"Document Statistics":["Document-statistieken"],"is now scheduled. It will go live on":["is nu gepland. Het gaat live op"],Scheduled:["Ingepland"],"Scheduling\u2026":["Inplannen..."],"Code editor selected":["Code editor geselecteerd"],"Visual editor selected":["Visuele editor geselecteerd"],Plugins:["Plugins"],"Custom Size":["Aangepast formaat"],"Layout Elements":["Layout elementen"],"term\x04%s removed":["%s verwijderd"],"term\x04%s added":["%s toegevoegd"],"imperative verb\x04Preview":["Voorbeeld"],"Block deleted.":["Blok verwijderd."],"Block updated.":["Blok bijgewerkt."],"Block created.":["Blok gemaakt."],"Trashing failed":["Verwijderen mislukt"],"Updating failed.":["Bijwerken mislukt."],"Scheduling failed.":["Plannen mislukt."],"Publishing failed.":["Publiceren mislukt."],"View Post":["Bekijk bericht"],"You have unsaved changes. If you proceed, they will be lost.":["Er zijn wijzigingen die je nog niet hebt opgeslagen. Als je doorgaat, gaan deze verloren. "],"Document Outline":["Document schets"],Paragraphs:["Paragrafen"],Headings:["Koppen"],Words:["Woorden"],"Content structure":["Inhoudstructuur"],Public:["Openbaar"],"Protected with a password you choose. Only those with the password can view this post.":["Beschermd met een zelfgekozen wachtwoord. Alleen degenen met het wachtwoord kunnen dit bericht zien."],"Password Protected":["Beschermd met een wachtwoord"],"Only visible to site admins and editors.":["Alleen zichtbaar voor administrators en editors."],Private:["Priv\xe9"],"Visible to everyone.":["Zichtbaar voor iedereen."],"Post Visibility":["Zichtbaarheid van het bericht"],"Would you like to privately publish this post now?":["Wil je dit bericht nu priv\xe9 publiceren?"],"Use a secure password":["Gebruik een veilig wachtwoord"],"Create password":["Maak een wachtwoord aan"],"Move to Trash":["Verplaats naar prullenbak"],"Parent Term":["Hoofdterm"],"Parent Category":["Hoofdcategorie"],"Add new term":["Voeg nieuwe term toe"],"Add new category":["Voeg nieuwe categorie toe"],Term:["Term"],Tag:["Tag"],"Add New Term":["Voeg nieuwe term toe"],"Add New Tag":["Voeg nieuwe tag toe"],"Switch to Draft":["Zet om naar concept"],"Are you sure you want to unpublish this post?":["Weet je zeker dat je dit bericht wilt de-publiceren?"],Immediately:["Onmiddellijk"],"Save Draft":["Bewaar concept"],Saving:["Opslaan"],"Publish:":["Publiceer:"],"Visibility:":["Zichtbaarheid:"],"Are you ready to publish?":["Ben je klaar om te publiceren?"],"Copy Link":["Kopieer link"],"What\u2019s next?":["Wat is het volgende?"],"is now live.":["is nu live."],Published:["Gepubliceerd"],Schedule:["Inplannen"],Update:["Bijwerken"],"Submit for Review":["Indienen ter beoordeling"],"Updating\u2026":["Bijwerken\u2026"],"Publishing\u2026":["Publiceren..."],"Allow Pingbacks & Trackbacks":["Sta pingbacks & trackbacks toe"],"Permalink:":["Permalink:"],"Pending Review":["Wachten op beoordeling"],"%d Revision":["%d revisie","%d revisies"],"Suggestion:":["Suggestie:"],"Post Format":["Berichtformaat"],Chat:["Chat"],Status:["Status"],Standard:["Standaard"],Aside:["Terzijde"],"Set Featured Image":["Stel uitgelichte afbeelding in"],"Learn more about manual excerpts":["Ontdek meer over handmatige samenvattingen"],"Write an excerpt (optional)":["Schrijf een samenvatting (optioneel)"],"Allow Comments":["Sta reacties toe"],"Template:":["Template:"],"no parent":["geen hoofd"],"no title":["geen titel"],Order:["Volgorde"],"No blocks found.":["Geen blokken gevonden."],"%d result found.":["%d resultaat gevonden.","%d resultaten gevonden."],Saved:["Opgeslagen"],Embeds:["Insluitingen"],Blocks:["Blokken"],"Search for a block":["Zoek naar een blok"],"Add block":["Voeg blok toe"],"Add %s":["Voeg %s toe"],"Copy Error":["Kopieerfout"],"Copy Post Text":["Kopieer berichttekst"],"Attempt Recovery":["Probeer te herstellen"],"The editor has encountered an unexpected error.":["De editor is op een onverwacht probleem gestuit."],Undo:["Ongedaan maken"],Redo:["Opnieuw"],"(Multiple H1 headings are not recommended)":["(Meedere H1 koppen worden niet aangeraden)"],"(Your theme may already use a H1 for the post title)":["(Je thema gebruikt misschien al een H1 voor de berichttitel)"],"(Incorrect heading level)":["(Verkeerd niveau kop)"],"(Empty heading)":["(Lege kop)"],"Block Styles":["Blokstijlen"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Weet je zeker dat je dit gedeelde blok wilt verwijderen?\n\nHet blok wordt permanent verwijderd van alle berichten en pagina's die het gebruiken."],"Convert to Regular Block":["Verander naar normaal blok"],"More options":["Meer opties"],"Edit visually":["Visueel bewerken"],Duplicate:["Dupliceer"],"Blocks cannot be moved down as they are already at the bottom":["Blokken kunnen niet naar beneden verplaatst worden omdat ze al onderaan staan."],"Blocks cannot be moved up as they are already at the top":["Blokken kunnen niet omhoog worden verplaatst omdat ze al bovenaan staan"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Blok %1$s staat aan het begin van de inhoud en kan niet %2$s verplaatst worden"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Blok %1$s staat aan het eind van de inhoud en kan niet %2$s verplaatst worden"],"Block %s is the only block, and cannot be moved":["Blok %s is het enige blok en kan niet verplaatst worden"],"Edit as HTML":["Bewerk als HTML"],"Convert to Blocks":["Omzetten naar blokken"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Dit blok is een fout tegengekomen en kan geen voorbeeld tonen."],"No block selected.":["Geen blok geselecteerd."],"Transform into:":["Zet om naar:"],Remove:["Verwijder"],"Find original":["Vind origineel"],"Copy All Content":["Kopieer alle inhoud"],"Copied!":["Gekopieerd!"],"Additional settings are now available in the Editor block settings sidebar":["Meer instellingen zijn beschikbaar in de Editor blok instellingen zijbalk"],Visibility:["Zichtbaarheid"],"Status & Visibility":["Status & zichtbaarheid"],"Page Attributes":["Pagina-attributen"],Block:["Blok","%d blokken"],Document:["Document"],"Featured Image":["Uitgelichte afbeelding"],"Close settings":["Sluit instellingen"],"Editor content":["Editor inhoud"],Tools:["Gereedschappen"],Editor:["Editor"],"Code Editor":["Code editor"],"Visual Editor":["Visuele editor"],"Editor top bar":["Editor top balk"],Settings:["Instellingen"],Reset:["Herstel"],"Dismiss this notice":["Negeer dit bericht"],"Item removed.":["Element verwijderd."],"Item added.":["Element toegevoegd."],"Drop files to upload":["Sleep bestanden hier naartoe om te uploaden"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Er is een onbekende fout opgetreden. "],"No results.":["Geen resultaten."],"%d result found, use up and down arrow keys to navigate.":["%d resultaat gevonden, gebruik de omhoog en omlaag toetsen om te navigeren.","%d resultaten gevonden, gebruik de omhoog en omlaag toetsen om te navigeren."],"(no title)":["(geen titel)"],URL:["URL"],Submit:["Verstuur"],Close:["Sluiten"],"Insert link":["Link invoegen"],"Edit link":["Bewerk link"],Link:["Link"],Strikethrough:["Doorhalen"],Italic:["Cursief"],Bold:["Vet"],"Remove link":["Verwijder link"],"Number of items":["Aantal elementen"],All:["Alle"],Category:["Categorie"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Oudste naar nieuwste"],"Newest to Oldest":["Nieuwste naar oudste"],"Order by":["Volgorde op"],Select:["Selecteer"],"Select or Upload Media":["Media selecteren of uploaden"],Video:["Video"],"Edit video":["Bewerk video"],"Write\u2026":["Schrijf..."],poetry:["po\xebzie"],Verse:["Vers"],"New Column":["Nieuwe kolom"],"Delete Column":["Verwijder kolom"],"Add Column After":["Voeg kolom toe na"],"Add Column Before":["Voeg kolom toe voor"],"Delete Row":["Verwijder rij"],"Add Row After":["Voeg rij toe na"],"Add Row Before":["Voeg rij toe voor"],"Edit table":["Bewerk tabel"],Table:["Tabel"],"Write subheading\u2026":["Schrijf subtitel..."],"Write shortcode here\u2026":["Schrijf hier een shortcode..."],Shortcode:["Shortcode"],divider:["scheidslijn"],"horizontal-line":["horizontale lijn"],Separator:["Scheidingslijn"],Quote:["Citaat"],"Write citation\u2026":["Schrijf citaat..."],"Write quote\u2026":["Schrijf citaat..."],Pullquote:["Pull-quote"],"Write preformatted text\u2026":["Schrijf voorgeformatteerde tekst..."],Preformatted:["Voorgeformatteerd"],text:["tekst"],Paragraph:["Paragraaf"],"Font Size":["Grootte lettertype"],"Drop Cap":["Initiaal"],"Text Settings":["Tekst instellingen"],"Read more":["Verder lezen"],"Write list\u2026":["Maak lijst..."],"numbered list":["genummerde lijst"],"ordered list":["geordende lijst"],"bullet list":["ongeordende lijst"],"Indent list item":["Verhoog inspringen lijstelement"],"Outdent list item":["Verlaag inspringen lijstelement"],"Convert to ordered list":["Omzetten naar geordende lijst"],"Convert to unordered list":["Omzetten naar ongeordende lijst"],List:["Lijst"],"recent posts":["recente berichten"],"No posts found.":["Geen berichten gevonden."],"Latest Posts":["Nieuwste berichten"],"Display post date":["Toon datum bericht"],"Grid view":["Rasterweergave"],"List view":["Lijstweergave"],photo:["foto"],"Image Settings":["Afbeeldingsinstellingen"],Image:["Afbeelding"],Preview:["Voorbeeld"],embed:["insluiten"],"Custom HTML":["Aangepaste HTML"],subtitle:["subtitel"],title:["titel"],Heading:["Kop"],"Write heading\u2026":["Schrijf kop..."],"Heading %d":["Kop %s"],Level:["Niveau"],"Heading Settings":["Kopinstellingen"],photos:["foto's"],images:["afbeeldingen"],"Remove Image":["Verwijder afbeelding"],None:["Geen"],"Media File":["Mediabestand"],"Attachment Page":["Bijlagepagina"],"Crop Images":["Afbeeldingen bijsnijden"],"Gallery Settings":["Galerij instellingen"],Gallery:["Galerij"],Classic:["Klassiek"],video:["video"],audio:["audio"],music:["muziek"],image:["afbeelding"],blog:["blog"],post:["bericht"],"Embedded content from %s":["Ingesloten inhoud van %s"],"Enter URL to embed here\u2026":["Vul in te sluiten URL hier in..."],"%s URL":["%s URL"],"Embedding\u2026":["Insluiten..."],"Write title\u2026":["Schrijf titel..."],"Fixed Background":["Vaste achtergrond"],"Edit image":["Bewerk afbeelding"],Columns:["Kolommen"],Experiments:["Experimenteel"],Code:["Code"],"Write code\u2026":["Schrijf code\u2026"],Categories:["Categorie\xebn"],"Show Hierarchy":["Toon hi\xebrarchie"],"Show post counts":["Toon aantal berichten"],"Categories Settings":["Categorie-instellingen"],"Add text\u2026":["Voeg tekst toe..."],Button:["Knop"],Apply:["Toepassen"],"Text Color":["Tekstkleur"],"Background Color":["Achtergrondkleur"],"Block has been deleted or is unavailable.":["Blok is verwijderd of is niet beschikbaar."],"Reusable Blocks":["Herbruikbare blokken"],Cancel:["Annuleer"],Edit:["Bewerk"],"Edit audio":["Bewerk audio"],"Write caption\u2026":["Schrijf onderschrift..."],"Use URL":["Gebruik URL"],Audio:["Audio"],Upload:["Upload"],"Additional CSS Class(es)":["Extra CSS-class(en)"],"HTML Anchor":["HTML Anker"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Deze kleurencombinatie kan moeilijk leesbaar zijn voor mensen. Probeer een helderder achtergrondkleur en/of een donkerder tekstkleur te gebruiken."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Deze kleurencombinatie kan moeilijk leesbaar zijn voor mensen. Probeer een donkerder achtergrondkleur en/of een helderder tekstkleur te gebruiken."],Clear:["Wis"],"Custom color picker":["Aangepaste kleurenkiezer"],"Color: %s":["Kleur: %s"],"Full Width":["Volledige breedte"],"Wide Width":["Wijde breedte"],Widgets:["Widgets"],Formatting:["Opmaak"],"Common Blocks":["Algemene blokken"],"Align Right":["Rechts uitlijnen"],"Align Center":["Centreren"],"Align Left":["Links uitlijnen"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Drukwerk sinds 1440. Dit is de ontwikkelingsplugin voor de nieuwe blok editor in de core."],"Add title":["Voeg titel toe"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg ontwikkelmodus vereist dat bestanden worden gegenereerd. Voer npm install uit om afhankelijkheden te installeren, npm run build om de bestanden te genereren of npm run dev om de bestanden te genereren en te monitoren. Lees het bijdragen bestand voor meer informatie."],Author:["Auteur"],Slug:["Slug"],Discussion:["Discussie"],"Custom Fields":["Aangepaste velden"],Excerpt:["Samenvatting"],Publish:["Publiceer"],Metadata:["Metadata"],Save:["Bewaar"],Documentation:["Documentatie"],"Select Category":["Selecteer categorie"],"(Untitled)":["(Zonder titel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg vereist WordPress %s of nieuwer om juist te werken. Upgrade WordPress alvorens Gutenberg te activeren."],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s geleden"],"Block style name must be a string.":["Blokstijl naam moeten een string zijn."]}},855,[]); +__d(function(e,t,o,n,a,i,r){a.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top Toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],Permalink:[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":[],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],Thumbnail:[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],Annotation:[],"Drag images, upload new ones or select files from your library.":[],"blocks\x04Most Used":[],"imperative verb\x04Resolve":[],"font size name\x04Huge":[],"font size name\x04Large":[],"font size name\x04Medium":[],"font size name\x04Small":[],"font size name\x04Normal":[],"keyboard button\x04Enter":[],"button label\x04Import":[],"button label\x04Download":[],"button label\x04Embed":[],"block title\x04Embed":[],"block title\x04Classic":[],"block style\x04Large":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],media:[],"Double-check your settings before publishing.":[],"Generating preview\u2026":[],"Edit or update the image":[],Media:[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text Settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay \u2014 great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\x04View":["Bekijken"],"editor button\x04Left to right":["Links naar rechts"],"Save as Pending":["Opslaan als in afwachting"],"%s address":["%s adres"],"Paste or type URL":["Plak of typ URL"],"Insert from URL":["Invoegen vanaf URL"],"Block Navigator":[],Styles:["Stijlen"],"Advanced Panels":["Geavanceerde panelen"],"Document Panels":["Document panelen"],General:["Algemeen"],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],Options:["Opties"],"(opens in a new tab)":["(opent in nieuwe tab)"],Minutes:["Minuten"],Hours:["Uren"],Time:["Tijd"],Year:["Jaar"],Day:["Dag"],December:["December"],November:["November"],October:["Oktober"],September:["September"],August:["Augustus"],July:["Juli"],June:["Juni"],May:["Mei"],April:["April"],March:["Maart"],February:["Februari"],January:["Januari"],Month:["Maand"],Date:["Datum"],"Go to the first (home) or last (end) day of a week.":["Ga naar de eerste (home) of laatste (end) dag van de week."],"Home/End":["Start/einde"],"Home and End":["Start en einde"],"Move backward (PgUp) or forward (PgDn) by one month.":["Verplaats \xe9\xe9n maand achteruit (PgUp) of vooruit (PgDn)."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":["Klik om te selecteren"],"Calendar Help":["Kalender help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],Stripes:[],"Your site doesn\u2019t include support for this block.":[],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":["Media gebied"],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:[],"Border Settings":[],"Edit media":["Bewerk media"],Medium:[],"Paste URL or type to search":[],Terms:[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],Avatar:[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],HTML:[],"Write HTML\u2026":[],"Media Settings":[],"Overlay Color":[],Overlay:[],"Insert Media":[],"Reusable block imported successfully!":["Herbruikbaar blok succesvol ge\xefmporteerd!"],"Invalid Reusable Block JSON file":["Ongeldig herbruikbare blok JSON-bestand"],"Invalid JSON file":["Ongeldig JSON-bestand"],"Import from JSON":["Importeer vanuit JSON"],Backtick:["Accent grave"],Period:["Punt"],Comma:["Komma"],"Change type of %d block":["Wijzig type van %d blok","Wijzig type van %d blokken"],Current:["Huidig"],"After Conversion":["Na conversie"],"Change alignment":[],"Change text alignment":[],"%d block":[],Escape:["Escape"],"Forward-slash":["Schuine streep"],"No archives to show.":["Geen archieven om te tonen."],"This file is empty.":["Dit bestand is leeg."],"Sorry, this file type is not supported here.":["Sorry, dit bestandstype wordt hier niet ondersteund."],"Manage All Reusable Blocks":["Beheer alle herbruikbare blokken"],Title:["Titel"],"Fullscreen Mode":["Schermvullende weergave"],"Beautiful landscape":["Prachtig landschap"],"Close panel":["Sluit paneel"],"Convert to Classic Block":["Omzetten naar klassiek blok"],"Remove Poster Image":["Verwijder posterafbeelding"],"Select Poster Image":["Selecteer posterafbeelding"],"Poster Image":["Posterafbeelding"],"This block is deprecated. Please use the Columns block instead.":["Dit blok is verouderd. Gebruik in plaats hiervan het kolommenblok."],"Text Columns (deprecated)":["Tekstkolommen (verouderd)"],"Row Count":["Aantal rijen"],"Column Count":["Aantal kolommen"],"This block is deprecated. Please use the Paragraph block instead.":["Dit blok is verouderd. Gebruik in plaats hiervan het paragraafblok."],"Subheading (deprecated)":["Subkop (verouderd)"],blockquote:["blockquote"],"Change the block type after adding a new paragraph.":["Verander het bloktype na het toevoegen van een nieuwe paragraaf."],"Spotlight Mode":["Spotlight-modus"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags helpen gebruikers en zoekmachines je site te navigeren en je inhoud te vinden. Voeg een aantal trefwoorden toe om je bericht te beschrijven."],"Add tags":["Voeg tags toe"],"Apply the \"%1$s\" format.":["Pas het \"%1$s\" format toe."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Je thema gebruikt berichtformats om verschillende typen inhoud te markeren, zoals afbeeldingen of video's. Pas een berichtformat toe om de speciale vormgeving te zien."],"Use a post format":["Gebruik een berichtformat"],"Insert After":["Invoegen na"],"Insert Before":["Invoegen voor"],"Move %1$d block from position %2$d down by one place":["Verplaats %1$d blok van positie %2$d \xe9\xe9n plaats omlaag","Verplaats %1$d blokken van positie %2$d \xe9\xe9n plaats omlaag"],"Move %1$d block from position %2$d up by one place":["Verplaats %1$d blok van positie %2$d \xe9\xe9n plaats omhoog","Verplaats %1$d blokken van positie %2$d \xe9\xe9n plaats omhoog"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["film"],"Insert a new block before the selected block(s).":["Voeg een nieuw blok in voor de geselecteerde blok(ken)."],"Remove the selected block(s).":["Verwijder de geselecteerde blok(ken)."],"Duplicate the selected block(s).":["Kopieer de geselecteerde blok(ken)."],"Block shortcuts":["Blok sneltoetsen"],"Clear selection.":["Wis selectie."],"Select all text when typing. Press again to select all blocks.":["Selecteer alle tekst tijdens het typen. Druk nogmaals om alle blokken te selecteren."],"Selection shortcuts":["Selectie sneltoetsen"],"Switch between Visual Editor and Code Editor.":["Schakel tussen de visuele editor en de code editor."],"Navigate to the previous part of the editor (alternative).":["Navigeer naar het vorige deel van de editor (alternatief)."],"Navigate to the next part of the editor (alternative).":["Navigeer naar het volgende deel van de editor (alternatief)."],"Navigate to the previous part of the editor.":["Navigeer naar het vorige deel van de editor."],"Navigate to the next part of the editor.":["Navigeer naar het volgende deel van de editor."],"Show or hide the settings sidebar.":["Toon of verberg de instellingen-zijbalk."],"Redo your last undo.":["Herhaal je laatste ongedaan maken."],"Undo your last changes.":["Maak je laatste aanpassingen ongedaan."],"Save your changes.":["Sla je aanpassingen op."],"Global shortcuts":["Globale sneltoetsen"],"Remove a link.":["Verwijder een link."],"Convert the selected text into a link.":["Zet de geselecteerde tekst om naar een link."],"Underline the selected text.":["Onderstreep de geselecteerde tekst."],"Make the selected text italic.":["Maak de geselecteerde tekst cursief."],"Make the selected text bold.":["Maak de geselecteerde tekst vetgedrukt."],"Text formatting":["Tekstformattering"],"Insert a new block after the selected block(s).":["Voeg een nieuw blok in na geselecteerde blok(ken)."],"Keyboard Shortcuts":["Toetsenbord sneltoetsen"],"Thanks for testing Gutenberg!":["Bedankt voor het testen van Gutenberg!"],"Help build Gutenberg":["Help Gutenburg bouwen"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Wil je meer weten over het bouwen van extra blokken, of ben je ge\xefnteresseerd om te helpen met het project, ga dan naar de GitHub repository."],"The WordPress community":["De WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Je kunt elk blok maken dat je wilt, statisch of dynamisch, decoratief of gewoontjes. Dit is bijvoorbeeld een pull-quote blok:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Elk blok kan gebruik maken van deze uitlijningen. Het insluitingsblok heeft deze ook en is standaard al responsive:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Hierboven staat een galerij met maar twee afbeeldingen. Het is een eenvoudiger manier om visueel aantrekkelijke indelingen te maken, zonder met floats te hoeven werken. Je kunt de galerij ook eenvoudig omzetten naar de individuele afbeeldingen met de blokomzetter."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Zeker, de afbeelding over de gehele breedte kan nogal groot worden. Maar soms is de afbeelding het waard."],"Accessibility is important — don’t forget image alt attribute":["Toegankelijkheid is belangrijk — vergeet het alt-attribuut van de afbeelding niet"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Door de nieuwe brede en volledige breedte uitlijningen met galerijen te combineren, kun je heel snel een media-rijke indeling maken."],"Media Rich":["Media-rijk"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Je kunt het aantal kolommen in je galerijen veranderen door een schuif in de blokinspecteur in de zijbalk te bewegen."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blokken kunnen alles zijn wat je wilt. Zo kun je bijvoorbeeld een subtiel citaat toevoegen in de opbouw van je tekst, of misschien wil je wel een groot opgemaakt citaat laten zien. Al deze mogelijkheden zijn beschikbaar in de invoeger."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["De informatie die overeenkomt met de bron van het citaat is een apart tekstveld, zoals bijschriften onder afbeeldingen, zodat de structuur van het citaat is beschermd, zelfs wanneer je de bron selecteert, aanpast of verwijdert. Je kunt het altijd weer eenvoudig terugzetten."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["De editor biedt een nieuwe bouwervaring voor pagina's en berichten, die het maken van berichten met opmaak eenvoudig maakt, en gebruikt \"blokken\" om zonder problemen te maken waar tot nog toe shortcodes, aangepaste HTML, of \"mystery meat\" insluitingen voor nodig zijn."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Een groot voordeel van blokken is, dat je ze op hun plaats kunt bewerken en de inhoud direct kunt manipuleren. In plaats van velden te hebben voor het bewerken van dingen zoals de bron van een citaat of de tekst van een knop, kun je de inhoud direct wijzigen. Probeer het volgende citaat eens te bewerken:"],"Visual Editing":["Visueel bewerken"],"And Lists like this one of course :)":["En lijsten zoals deze, uiteraard :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Indelingsblokken zoals knoppen, schermbrede afbeeldingen, afscheidingen, enz."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Insluitingen, zoals YouTube, tweets of andere WordPress berichten."],Galleries:["Galerijen"],"Images & Videos":["Afbeeldingen & videos"],"Text & Headings":["Tekst & koppen"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Probeer het eens uit. Je zal erachter komen dat WordPress al dingen in je berichten kan zetten die je niet eens wist. Hierbij een korte lijst van wat je daar op dit moment kunt vinden:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Stel je voor dat alles wat WordPress kan doen snel en op dezelfde plaats in de interface beschikbaar is. Je hoeft geen HTML-tags of classes uit te zoeken, of ingewikkelde shortcode-regels te onthouden. Dat is het idee achter de invoeger: de knop (+) die rond de editor wordt weergegeven, waarmee je door alle beschikbare inhoudsblokken kunt bladeren en ze aan je bericht kunt toevoegen. Plugins en thema's kunnen hun eigen blokken registreren, waardoor allerlei mogelijkheden beschikbaar komen voor bewerken en publiceren."],"The Inserter Tool":["Het Invoeger gereedschap"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Probeer het citaat te selecteren en te verwijderen of te bewerken, je hoeft niet bang te zijn dat je per ongeluk de afbeelding of andere tekst selecteert en de presentatie ru\xefneert."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Wanneer je thema het ondersteunt, zie je de \"breed\" knop op je afbeeldingstoolbar. Probeer het maar."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Het zorgvuldig omgaan met afbeeldingen en media is een belangrijk punt van de nieuwe editor. Hopelijk vind je aspecten als het toevoegen van bijschriften of het over de volle breedte laten zien van je foto's veel eenvoudiger en robuuster dan voorheen."],"A Picture is Worth a Thousand Words":["Een foto is duizend woorden waard"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Koppen zijn ook afzonderlijke blokken, wat helpt bij de opzet en organisatie van je inhoud."],"... like this one, which is right aligned.":["... zoals deze, die rechts is uitgelijnd."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Wat je nu leest is een tekstblok, het eenvoudigste blok van allemaal. Het tekstblok heeft haar eigen besturing zodat je het overal in het bericht kunt zetten..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Het doel van deze nieuwe editor is het eenvoudig en plezierig maken om diverse inhoud aan WordPress toe te voegen. Dit hele bericht bestaat uit stukjes inhoud - het lijkt wat op LEGO-stenen - die je kunt bewegen en waarmee je kunt werken. Beweeg je cursor rond en je ziet dat de verschillende blokken oplichten met contouren en pijlen. Druk op de pijlen om blokken snel te verplaatsen zonder bang te hoeven zijn dingen te verliezen tijdens kopieer- en plakwerk."],"Of Mountains & Printing Presses":["Over bergen & drukpersen"],"Welcome to the Gutenberg Editor":["Welkom bij de Gutenberg editor"],"block name\x04More":["Meer"],"button to expand options\x04More":["Meer"],"Are you sure you want to unschedule this post?":["Weet je zeker dat je de planning van dit bericht wilt intrekken?"],"Alt Text (Alternative Text)":["Alt tekst (alternatieve tekst)"],"Reusable Block":["Herbruikbaar blok"],"Unique identifier for the object.":["Unieke identificator voor het object."],"Untitled Reusable Block":["Naamloos herbruikbaar blok"],Small:["Klein"],"(%s: %s)":["(%s: %s)"],Reusable:["Herbruikbaar"],"(current %s: %s)":["(huidig %s: %s)"],"Remove from Reusable Blocks":["Verwijder uit herbruikbare blokken"],"Add to Reusable Blocks":["Voeg toe aan herbruikbare blokken"],"Keep as HTML":["Houd als HTML"],"Edit URL":["Bewerk URL"],"Color Settings":["Kleurinstellingen"],"The response is not a valid JSON response.":["De reactie is geen geldige JSON reactie."],"Editor publish":["Editor publiceren"],Muted:["Gedempt"],"Video Settings":["Video-instellingen"],"recent comments":["recente reacties"],"Latest Comments":["Nieuwste reacties"],"Display Excerpt":["Toon samenvatting"],"Display Date":["Toon datum"],"Display Avatar":["Toon avatar"],"Latest Comments Settings":["Nieuwste reacties-instellingen"],"Number of Comments":["Aantal reacties"],"Background Opacity":["Achtergronddekking"],Auto:["Automatisch"],Preload:["Voorladen"],"Audio Settings":["Audio-instellingen"],"Display a monthly archive of your posts.":[],"Display as Dropdown":["Toon als dropdown"],"Show Post Counts":["Toon aantal berichten"],"Archives Settings":["Archief-instellingen"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Ondersteuning"],"No comments to show.":["Geen reacties om te tonen."],"%1$s on %2$s":["%1$s op %2$s"],"Select Post":["Selecteer bericht"],"Select Week":["Selecteer week"],"Select Day":["Selecteer dag"],"Select Month":["Selecteer maand"],"Select Year":["Selecteer jaar"],Archives:["Archieven"],"Very dark gray":["Zeer donkergrijs"],"Cyan bluish gray":["Cyaan blauwachtig grijs"],"Very light gray":["Zeer lichtgrijs"],"Vivid cyan blue":["Levendig cyaan blauw"],"Pale cyan blue":["Bleek cyaan blauw"],"Vivid green cyan":["Levendig groen cyaan"],"Light green cyan":["Licht groen cyaan"],"Luminous vivid amber":["Lichtgevend levendig amber"],"Luminous vivid orange":["Lichtgevend levendig oranje"],"Vivid red":["Levendig rood"],"Pale pink":["Bleek roze"],"Inline image":[],"Available block types":["Beschikbare bloktypes"],"Transform To:":["Veranderen naar:"],"Remove Block":["Verwijder blok"],"Open publish panel":["Open publiceren paneel"],Dots:["Stippen"],"Wide Line":["Brede lijn"],Large:["Groot"],"Show download button":[],"Download button settings":[],"Link To":["Link naar"],"Text link settings":[],pdf:["pdf"],document:["document"],"Copy URL":["Kopieer URL"],"Write file name\u2026":["Schrijf bestandsnaam..."],"Edit file":["Bewerk bestand"],File:["Bestand"],"A single column within a columns block.":["Een enkele kolom in een kolommenblok."],Column:["Kolom"],Outline:["Omtrek"],Loop:["Lus"],Autoplay:["Automatisch spelen"],"Playback Controls":["Afspeelknoppen"],"Close dialog":["Sluit dialoog"],"Sorry, this file type is not permitted for security reasons.":["Sorry, dit bestandstype is om veiligheidsredenen niet toegestaan."],"Disable tips":["Schakel tips uit"],"Got it":["Ik snap het"],"See next tip":["Bekijk volgende tip"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Ben je klaar, lever dan je werk in ter beoordeling. Een redacteur kan je werk dan goedkeuren voor je."],"Are you ready to submit for review?":["Ben je klaar om je werk in te leveren voor beoordeling?"],"Replace image":["Vervang afbeelding"],"Remove image":["Verwijder afbeelding"],"Error while uploading file %s to the media library.":["Fout tijdens het uploaden van bestand %s naar de mediabibliotheek."],"This file exceeds the maximum upload size for this site.":["Dit bestand overschreidt de maximale uploadgrootte voor deze site."],"View the autosave":["Bekijk de autosave"],"There is an autosave of this post that is more recent than the version below.":["Er is een autosave van dit bericht dat recenter is dan onderstaande versie."],Autosaving:["Automatisch opslaan"],"Enter URL here\u2026":["Vul URL hier in..."],"Pin to toolbar":["Maak vast aan toolbar"],"Unpin from toolbar":["Maak los van toolbar"],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":["Tabelcellen met een vaste breedte"],"Table Settings":["Tabel instellingen"],"Add text that respects your spacing and tabs, and also allows styling.":["Voeg tekst toe dat jouw tussenruimte en tabs behoudt, en ook styling toestaat."],"Display a list of your most recent posts.":["Toon een lijst van je meest recente berichten."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Voeg een blok toe dat inhoud van andere sites laat zien, zoals Twitter, Instagram, of YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Voeg een blok toe dat inhoud toont in meerdere kolommen, voeg dan de inhoudsblokken toe die je wilt."],"Error loading block: %s":["Fout bij laden blok: %s"],"Unknown error":["Onbekende fout"],"Embed Handler":["Insluiten handler"],"term\x04Remove %s":["Verwijder %s"],"Copy the permalink":["Kopieer de permalink"],"Permalink copied":["Permalink gekopieerd"],"Height in pixels":["Hoogte in pixels"],"Spacer Settings":["Vulelement instellingen"],Spacer:["Vul-element"],"Toggle to show a large initial letter.":["Klik om een grote eerste letter te tonen."],"Showing large initial letter.":["Toont grote eerste letter."],"Name:":["Naam:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s van %3$s)"],"Remove item":["Verwijder item"],"Color code: %s":["Kleurcode: %s"],"Skip to the selected block":["Spring naar het geselecteerde blok"],"Publish\u2026":["Publiceer..."],"Schedule\u2026":["Inplannen..."],"Edit post permalink":["Bewerk permalink van bericht"],"Show Block Settings":["Toon blok-instellingen"],"Hide Block Settings":["Verberg blok-instellingen"],"Block settings closed":["Blok-instellingen gesloten"],"Close plugin":["Sluit plugin"],"Link settings":[],Unlink:["Link verwijderen"],"Page break":["Pagina-einde"],pagination:["paginering"],"next page":["volgende pagina"],"Image Size":["Afbeeldingsgrootte"],Height:["Hoogte"],Width:["Breedte"],"Image Dimensions":["Grootte afbeelding"],"Thumbnails are not cropped.":["Thumbnails zijn niet bijgesneden."],"Thumbnails are cropped to align.":["Thumbnails zijn passend bijgesneden."],"Media Library":["Mediabibliotheek"],Advanced:["Geavanceerd"],"Add item":["Item toevoegen"],"Reset the template":["Herstel de template"],"Keep it as is":["Laat het zoals het is"],"The content of your post doesn\u2019t match the template assigned to your post type.":["De inhoud van je bericht komt niet overeen met de aan je berichttype toegewezen template."],"Resetting the template may result in loss of content, do you want to continue?":["Herstel van de template kan resulteren in verlies van inhoud, wil je doorgaan?"],"Document Statistics":["Document-statistieken"],"is now scheduled. It will go live on":["is nu gepland. Het gaat live op"],Scheduled:["Ingepland"],"Scheduling\u2026":["Inplannen..."],"Code editor selected":["Code editor geselecteerd"],"Visual editor selected":["Visuele editor geselecteerd"],Plugins:["Plugins"],"Custom Size":["Aangepast formaat"],"Layout Elements":["Layout elementen"],"term\x04%s removed":["%s verwijderd"],"term\x04%s added":["%s toegevoegd"],"imperative verb\x04Preview":["Voorbeeld"],"Block deleted.":["Blok verwijderd."],"Block updated.":["Blok bijgewerkt."],"Block created.":["Blok gemaakt."],"Trashing failed":["Verwijderen mislukt"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["Er zijn wijzigingen die je nog niet hebt opgeslagen. Als je doorgaat, gaan deze verloren. "],"Document Outline":["Document schets"],Paragraphs:["Paragrafen"],Headings:["Koppen"],Words:["Woorden"],"Content structure":["Inhoudstructuur"],Public:["Openbaar"],"Protected with a password you choose. Only those with the password can view this post.":["Beschermd met een zelfgekozen wachtwoord. Alleen degenen met het wachtwoord kunnen dit bericht zien."],"Password Protected":["Beschermd met een wachtwoord"],"Only visible to site admins and editors.":["Alleen zichtbaar voor administrators en editors."],Private:["Priv\xe9"],"Visible to everyone.":["Zichtbaar voor iedereen."],"Post Visibility":["Zichtbaarheid van het bericht"],"Would you like to privately publish this post now?":["Wil je dit bericht priv\xe9 publiceren?"],"Use a secure password":["Gebruik een veilig wachtwoord"],"Create password":["Maak een wachtwoord aan"],"Move to Trash":[],"Parent Term":["Hoofdterm"],"Parent Category":["Hoofdcategorie"],"Add new term":["Voeg nieuwe term toe"],"Add new category":["Voeg nieuwe categorie toe"],Term:["Term"],Tag:["Tag"],"Add New Term":["Voeg nieuwe term toe"],"Add New Tag":["Voeg nieuwe tag toe"],"Switch to Draft":["Zet om naar concept"],"Are you sure you want to unpublish this post?":["Weet je zeker dat je dit bericht wilt de-publiceren?"],Immediately:["Onmiddellijk"],"Save Draft":["Bewaar concept"],Saving:["Opslaan"],"Publish:":["Publiceer:"],"Visibility:":["Zichtbaarheid:"],"Are you ready to publish?":["Ben je klaar om te publiceren?"],"Copy Link":["Kopieer link"],"What\u2019s next?":["Wat is het volgende?"],"is now live.":["is nu live."],Published:["Gepubliceerd"],Schedule:["Inplannen"],Update:["Bijwerken"],"Submit for Review":["Indienen ter beoordeling"],"Updating\u2026":["Bijwerken\u2026"],"Publishing\u2026":["Publiceren..."],"Allow Pingbacks & Trackbacks":["Sta pingbacks & trackbacks toe"],"Permalink:":["Permalink:"],"Pending Review":["Wachten op beoordeling"],"%d Revision":["%d revisie","%d revisies"],"Suggestion:":["Suggestie:"],"Post Format":["Berichtformaat"],Chat:["Chat"],Status:["Status"],Standard:["Standaard"],Aside:["Terzijde"],"Set Featured Image":[],"Learn more about manual excerpts":["Ontdek meer over handmatige samenvattingen"],"Write an excerpt (optional)":["Schrijf een samenvatting (optioneel)"],"Allow Comments":["Sta reacties toe"],"Template:":["Template:"],"no parent":["geen hoofd"],"no title":["geen titel"],Order:["Volgorde"],"No blocks found.":["Geen blokken gevonden."],"%d result found.":[],Saved:["Opgeslagen"],Embeds:["Insluitingen"],Blocks:["Blokken"],"Search for a block":["Zoek naar een blok"],"Add block":["Voeg blok toe"],"Add %s":["Voeg %s toe"],"Copy Error":["Kopieerfout"],"Copy Post Text":["Kopieer berichttekst"],"Attempt Recovery":["Probeer te herstellen"],"The editor has encountered an unexpected error.":["De editor is op een onverwacht probleem gestuit."],Undo:["Ongedaan maken"],Redo:["Opnieuw"],"(Multiple H1 headings are not recommended)":["(Meedere H1 koppen worden niet aangeraden)"],"(Your theme may already use a H1 for the post title)":["(Je thema gebruikt misschien al een H1 voor de berichttitel)"],"(Incorrect heading level)":["(Verkeerd niveau kop)"],"(Empty heading)":["(Lege kop)"],"Block Styles":["Blokstijlen"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Weet je zeker dat je dit gedeelde blok wilt verwijderen?\n\nHet blok wordt permanent verwijderd van alle berichten en pagina's die het gebruiken."],"Convert to Regular Block":["Verander naar normaal blok"],"More options":["Meer opties"],"Edit visually":["Visueel bewerken"],Duplicate:["Dupliceer"],"Blocks cannot be moved down as they are already at the bottom":["Blokken kunnen niet naar beneden verplaatst worden omdat ze al onderaan staan."],"Blocks cannot be moved up as they are already at the top":["Blokken kunnen niet omhoog worden verplaatst omdat ze al bovenaan staan"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["Blok %s is het enige blok en kan niet verplaatst worden"],"Edit as HTML":["Bewerk als HTML"],"Convert to Blocks":["Omzetten naar blokken"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Dit blok is een fout tegengekomen en kan geen voorbeeld tonen."],"No block selected.":["Geen blok geselecteerd."],"Transform into:":["Zet om naar:"],Remove:["Verwijder"],"Find original":["Vind origineel"],"Copy All Content":["Kopieer alle inhoud"],"Copied!":["Gekopieerd!"],"Additional settings are now available in the Editor block settings sidebar":["Meer instellingen zijn beschikbaar in de Editor blok instellingen zijbalk"],Visibility:["Zichtbaarheid"],"Status & Visibility":["Status & zichtbaarheid"],"Page Attributes":["Pagina-attributen"],Block:["Blok"],Document:["Document"],"Featured Image":["Uitgelichte afbeelding"],"Close settings":["Sluit instellingen"],"Editor content":["Editor inhoud"],Tools:["Gereedschappen"],Editor:["Editor"],"Code Editor":["Code editor"],"Visual Editor":["Visuele editor"],"Editor top bar":["Editor top balk"],Settings:["Instellingen"],Reset:["Herstel"],"Dismiss this notice":["Negeer dit bericht"],"Item removed.":["Item verwijderd."],"Item added.":["Item toegevoegd."],"Drop files to upload":["Sleep bestanden hier naartoe om te uploaden"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Er is een onbekende fout opgetreden. "],"No results.":["Geen resultaten."],"%d result found, use up and down arrow keys to navigate.":["%d resultaat gevonden, gebruik de omhoog en omlaag toetsen om te navigeren.","%d resultaten gevonden, gebruik de omhoog en omlaag toetsen om te navigeren."],"(no title)":["(geen titel)"],URL:["URL"],Submit:["Verstuur"],Close:["Sluiten"],"Insert link":[],"Edit link":[],Link:["Link"],Strikethrough:["Doorhalen"],Italic:["Cursief"],Bold:["Vet"],"Remove link":[],"Number of items":["Aantal items"],All:["Alle"],Category:["Categorie"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \u27f6 Z"],"Oldest to Newest":["Oudste naar nieuwste"],"Newest to Oldest":["Nieuwste naar oudste"],"Order by":["Volgorde op"],Select:["Selecteer"],"Select or Upload Media":["Media selecteren of uploaden"],Video:["Video"],"Edit video":["Bewerk video"],"Write\u2026":["Schrijf..."],poetry:["po\xebzie"],Verse:["Vers"],"New Column":["Nieuwe kolom"],"Delete Column":["Verwijder kolom"],"Add Column After":["Voeg kolom toe na"],"Add Column Before":["Voeg kolom toe voor"],"Delete Row":["Verwijder rij"],"Add Row After":["Voeg rij toe na"],"Add Row Before":["Voeg rij toe voor"],"Edit table":[],Table:["Tabel"],"Write subheading\u2026":["Schrijf subtitel..."],"Write shortcode here\u2026":["Schrijf hier een shortcode..."],Shortcode:["Shortcode"],divider:["scheidslijn"],"horizontal-line":["horizontale lijn"],Separator:["Scheidingslijn"],Quote:["Citaat"],"Write citation\u2026":["Schrijf citaat..."],"Write quote\u2026":["Schrijf citaat..."],Pullquote:["Pull-quote"],"Write preformatted text\u2026":["Schrijf voorgeformatteerde tekst..."],Preformatted:["Voorgeformatteerd"],text:["tekst"],Paragraph:["Paragraaf"],"Font Size":["Grootte lettertype"],"Drop Cap":["Initiaal"],"Text Settings":["Tekst instellingen"],"Read more":["Verder lezen"],"Write list\u2026":["Maak lijst..."],"numbered list":["genummerde lijst"],"ordered list":["geordende lijst"],"bullet list":["ongeordende lijst"],"Indent list item":["Verhoog inspringen lijst item"],"Outdent list item":["Verlaag inspringen lijst item"],"Convert to ordered list":["Omzetten naar geordende lijst"],"Convert to unordered list":["Omzetten naar ongeordende lijst"],List:["Lijst"],"recent posts":["recente berichten"],"No posts found.":["Geen berichten gevonden."],"Latest Posts":["Nieuwste berichten"],"Display post date":["Toon datum bericht"],"Grid view":[],"List view":[],photo:["foto"],"Image Settings":["Afbeeldingsinstellingen"],Image:["Afbeelding"],Preview:["Voorbeeld"],embed:["insluiten"],"Custom HTML":["Aangepaste HTML"],subtitle:["subtitel"],title:["titel"],Heading:["Kop"],"Write heading\u2026":["Schrijf kop..."],"Heading %d":["Kop %d"],Level:["Niveau"],"Heading Settings":["Kopinstellingen"],photos:["foto's"],images:["afbeeldingen"],"Remove Image":["Verwijder afbeelding"],None:["Geen"],"Media File":["Mediabestand"],"Attachment Page":["Bijlagepagina"],"Crop Images":["Afbeeldingen bijsnijden"],"Gallery Settings":["Galerij instellingen"],Gallery:["Galerij"],Classic:["Klassiek"],video:["video"],audio:["audio"],music:["muziek"],image:["afbeelding"],blog:["blog"],post:["bericht"],"Embedded content from %s":["Ingesloten inhoud van %s"],"Enter URL to embed here\u2026":["Vul in te sluiten URL hier in..."],"%s URL":["%s URL"],"Embedding\u2026":["Insluiten..."],"Write title\u2026":["Schrijf titel..."],"Fixed Background":["Vaste achtergrond"],"Edit image":["Bewerk afbeelding"],Columns:["Kolommen"],Experiments:[],Code:["Code"],"Write code\u2026":["Schrijf code\u2026"],Categories:["Categorie\xebn"],"Show Hierarchy":["Toon hi\xebrarchie"],"Show post counts":["Toon aantal berichten"],"Categories Settings":["Categorie-instellingen"],"Add text\u2026":["Voeg tekst toe..."],Button:["Knop"],Apply:["Toepassen"],"Text Color":["Tekstkleur"],"Background Color":["Achtergrondkleur"],"Block has been deleted or is unavailable.":["Blok is verwijderd of is niet beschikbaar."],"Reusable Blocks":["Herbruikbare blokken"],Cancel:["Annuleer"],Edit:["Bewerk"],"Edit audio":["Bewerk audio"],"Write caption\u2026":["Schrijf onderschrift..."],"Use URL":["Gebruik URL"],Audio:["Audio"],Upload:["Upload"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML Anker"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Deze kleurencombinatie kan moeilijk leesbaar zijn voor mensen. Probeer een helderder achtergrondkleur en/of een donkerder tekstkleur te gebruiken."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Deze kleurencombinatie kan moeilijk leesbaar zijn voor mensen. Probeer een donkerder achtergrondkleur en/of een helderder tekstkleur te gebruiken."],Clear:["Wis"],"Custom color picker":["Aangepaste kleurenkiezer"],"Color: %s":["Kleur: %s"],"Full Width":[],"Wide Width":[],Widgets:["Widgets"],Formatting:["Opmaak"],"Common Blocks":["Algemene blokken"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Drukwerk sinds 1440. Dit is de ontwikkelingsplugin voor de nieuwe blok editor in de core."],"Add title":["Voeg titel toe"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["Auteur"],Slug:["Slug"],Discussion:["Discussie"],"Custom Fields":["Aangepaste velden"],Excerpt:["Samenvatting"],Publish:["Publiceer"],Metadata:["Metadata"],Save:["Bewaar"],Documentation:["Documentatie"],"Select Category":["Selecteer categorie"],"(Untitled)":["(Zonder titel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s geleden"],"Block style name must be a string.":[]}},856,[]); +__d(function(e,o,t,a,i,n,r){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top Toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],Permalink:[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":[],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],Thumbnail:[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],Annotation:[],"Drag images, upload new ones or select files from your library.":[],"blocks\x04Most Used":[],"imperative verb\x04Resolve":[],"font size name\x04Huge":[],"font size name\x04Large":[],"font size name\x04Medium":[],"font size name\x04Small":[],"font size name\x04Normal":[],"keyboard button\x04Enter":[],"button label\x04Import":[],"button label\x04Download":[],"button label\x04Embed":[],"block title\x04Embed":[],"block title\x04Classic":[],"block style\x04Large":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],media:[],"Double-check your settings before publishing.":[],"Generating preview\u2026":[],"Edit or update the image":[],Media:[],"Navigate to the nearest toolbar.":[],"Document tools":["Narz\u0119dzia dokumentu"],"Document and block tools":["Narz\u0119dzia dokumentu i bloku"],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text Settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay \u2014 great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\x04View":[],"editor button\x04Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],Styles:[],"Advanced Panels":[],"Document Panels":["Panele dokumentu"],General:["Og\xf3lne"],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],Options:["Opcje"],"(opens in a new tab)":["(otworzy si\u0119 w nowej zak\u0142adce)"],Minutes:["Minuta"],Hours:["Godzina"],Time:["Czas"],Year:["Rok"],Day:["Dzie\u0144"],December:["Grudzie\u0144"],November:["Listopad"],October:["Pa\u017adziernik"],September:["Wrzesie\u0144"],August:["Sierpie\u0144"],July:["Lipiec"],June:["Czerwiec"],May:["Maj"],April:["Kwiecie\u0144"],March:["Marzec"],February:["Luty"],January:["Stycze\u0144"],Month:["Miesi\u0105c"],Date:["Data"],"Go to the first (home) or last (end) day of a week.":["Przenie\u015b zaznaczenie do pierwszego (home) lub ostatniego (end) dnia tygodnia."],"Home/End":["Home/End"],"Home and End":["Klawisze Home i End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Przenie\u015b zaznaczenie do poprzedniego (PgUp) lub nast\u0119pnego (PgDn) miesi\u0105ca."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Klawisze Page Up i Page Down"],"Move backward (up) or forward (down) by one week.":["Przenie\u015b zaznaczenie do poprzedniego (strza\u0142ka w g\xf3r\u0119) lub nast\u0119pnego (strza\u0142ka w d\xf3\u0142) tygodnia."],"Up and Down Arrows":["Strza\u0142ki w g\xf3r\u0119 i w d\xf3\u0142"],"Move backward (left) or forward (right) by one day.":["Przenie\u015b zaznaczenie do poprzedniego (strza\u0142ka w lewo) lub nast\u0119pnego (strza\u0142ka w prawo) dnia."],"Left and Right Arrows":["Strza\u0142ki w lewo i w prawo"],"Select the date in focus.":["Wybierz zaznaczon\u0105 dat\u0119."],"Navigating with a keyboard":["Nawigacja z u\u017cyciem klawiatury"],"Click the desired day to select it.":["Naci\u015bnij po\u017c\u0105dany dzie\u0144, \u017ceby go wybra\u0107."],"Click the right or left arrows to select other months in the past or the future.":["Naci\u015bnij strza\u0142k\u0119 w lewo lub w prawo, \u017ceby wybra\u0107 inny miesi\u0105c z przesz\u0142o\u015bci lub przysz\u0142o\u015bci."],"Click to Select":["Naci\u015bnij \u017ceby wybra\u0107"],"Calendar Help":["Pomoc kalendarza"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["Wybierz odcie\u0144"],"Change color format":["Zmie\u0144 model definicji koloru"],"Color value in HSL":["Kolor w modelu HSL"],"Color value in RGB":["Kolor w modelu RGB"],"Color value in hexadecimal":["Kolor w zapisie szesnastkowym"],"RGB mode active":["Tryb RGB aktywny"],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],Stripes:[],"Your site doesn\u2019t include support for this block.":[],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:[],"Border Settings":[],"Edit media":[],Medium:["\u015aredni"],"Paste URL or type to search":[],Terms:[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":["Przejmij"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Inny u\u017cytkownik ju\u017c edytuje ten wpis, co oznacza \u017ce nie mo\u017cesz dokona\u0107 w nim zmian dop\xf3ki go nie przejmiesz. "],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s ju\u017c edytuje ten wpis, co oznacza \u017ce nie mo\u017cesz dokona\u0107 w nim zmian dop\xf3ki go nie przejmiesz."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],Avatar:["Awatar"],"This post is already being edited.":["Ten wpis jest ju\u017c edytowany."],"Someone else has taken over this post.":["Kto\u015b inny przej\u0105\u0142 ten wpis."],"This block contains unexpected or invalid content.":["Ten blok zawiera nieoczekiwan\u0105 lub niepoprawn\u0105 tre\u015b\u0107."],"Resolve Block":["Rozwi\u0105\u017c problemy z blokiem"],"Convert to HTML":["Przekszta\u0142\u0107 na kod HTML"],"This block can only be used once.":["Ten blok mo\u017ce zosta\u0107 u\u017cyty tylko raz."],"Exit Code Editor":["Opu\u015b\u0107 edytor tekstowy"],"Editing Code":["Edytor tekstowy"],"Solid Color":["Z t\u0142em"],"Main Color":["G\u0142\xf3wny kolor"],HTML:["HTML"],"Write HTML\u2026":[],"Media Settings":["Ustawienia medi\xf3w"],"Overlay Color":[],Overlay:[],"Insert Media":["Wstaw media"],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":["Niepoprawny plik JSON"],"Import from JSON":["Zaimportuj z pliku JSON"],Backtick:["Odwr\xf3cony apostrof"],Period:["Kropka"],Comma:["Przecinek"],"Change type of %d block":["Zmie\u0144 rodzaj %d bloku","Zmie\u0144 rodzaj %d blok\xf3w","Zmie\u0144 rodzaj %d blok\xf3w"],Current:["Aktualny"],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],Escape:["Klawisz Escape"],"Forward-slash":["Uko\u015bnik"],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage All Reusable Blocks":[],Title:[],"Fullscreen Mode":["Tryb pe\u0142noekranowy"],"Beautiful landscape":[],"Close panel":["Zamknij panel"],"Convert to Classic Block":["Przekszta\u0142\u0107 na Klasyczny edytor"],"Remove Poster Image":["Usu\u0144 ok\u0142adk\u0119"],"Select Poster Image":["Wybierz ok\u0142adk\u0119"],"Poster Image":["Ok\u0142adka "],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],blockquote:[],"Change the block type after adding a new paragraph.":["Zmie\u0144 rodzaj bloku po dodaniu nowego akapitu."],"Spotlight Mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tagi pomagaj\u0105 u\u017cytkownikom i wyszukiwarkom nawigowa\u0107 po stronie oraz odnajdywa\u0107 tre\u015bci. Dodaj kilka s\u0142\xf3w kluczowych opisuj\u0105cych wpis."],"Add tags":["Dodaj tagi"],"Apply the \"%1$s\" format.":["U\u017cyj formatu \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Aktualny motyw posiada formaty wpis\xf3w s\u0142u\u017c\u0105ce do wyr\xf3\u017cniania r\xf3\u017cnych typ\xf3w tre\u015bci, takich jak zdj\u0119cia i filmy. U\u017cyj formatu wpisu aby nada\u0107 odpowiedni wygl\u0105d."],"Use a post format":["Wykorzystaj format wpisu"],"Insert After":["Wstaw blok poni\u017cej"],"Insert Before":["Wstaw blok powy\u017cej"],"Move %1$d block from position %2$d down by one place":["Przenie\u015b %1$d blok o jedno miejsce w d\xf3\u0142 z pozycji %2$d","Przenie\u015b %1$d bloki o jedno miejsce w d\xf3\u0142 z pozycji %2$d","Przenie\u015b %1$d blok\xf3w o jedno miejsce w d\xf3\u0142 z pozycji %2$d"],"Move %1$d block from position %2$d up by one place":["Przenie\u015b %1$d blok o jedno miejsce w g\xf3r\u0119 z pozycji %2$d","Przenie\u015b %1$d bloki o jedno miejsce w g\xf3r\u0119 z pozycji %2$d","Przenie\u015b %1$d blok\xf3w o jedno miejsce w g\xf3r\u0119 z pozycji %2$d"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["film"],"Insert a new block before the selected block(s).":["Wstaw nowy blok powy\u017cej zaznaczonego bloku lub blok\xf3w."],"Remove the selected block(s).":["Usu\u0144 zaznaczony blok lub bloki."],"Duplicate the selected block(s).":["Powiel zaznaczony blok lub bloki."],"Block shortcuts":["Skr\xf3ty blok\xf3w"],"Clear selection.":["Wyczy\u015b\u0107 zaznaczenie."],"Select all text when typing. Press again to select all blocks.":["Zaznacz ca\u0142y tekst podczas pisania. Naci\u015bnij ponownie aby zaznaczy\u0107 wszystkie bloki."],"Selection shortcuts":["Skr\xf3ty zaznaczania"],"Switch between Visual Editor and Code Editor.":["Prze\u0142\u0105cz mi\u0119dzy wizualnym a tekstowym edytorem."],"Navigate to the previous part of the editor (alternative).":["Nawiguj do poprzedniej cz\u0119\u015bci edytora (alternatywny)."],"Navigate to the next part of the editor (alternative).":[],"Navigate to the previous part of the editor.":["Nawiguj do poprzedniej cz\u0119\u015bci edytora."],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":["Poka\u017c lub ukryj panel boczny z ustawieniami."],"Redo your last undo.":["Przywr\xf3\u0107 cofni\u0119te zmiany."],"Undo your last changes.":["Cofnij ostatnie zmiany."],"Save your changes.":["Zapisz zmiany."],"Global shortcuts":["Globalne skr\xf3ty"],"Remove a link.":["Usu\u0144 odno\u015bnik."],"Convert the selected text into a link.":["Przekszta\u0142\u0107 zaznaczony tekst w odno\u015bnik."],"Underline the selected text.":["Podkre\u015bl zaznaczony tekst."],"Make the selected text italic.":["Dodaj kursyw\u0119 dla zaznaczonego tekstu."],"Make the selected text bold.":["Pogrub zaznaczony tekst."],"Text formatting":["Formatowanie tekstu"],"Insert a new block after the selected block(s).":["Wstaw nowy blok poni\u017cej zaznaczonego bloku lub blok\xf3w."],"Keyboard Shortcuts":["Skr\xf3ty klawiszowe"],"Thanks for testing Gutenberg!":["Dzi\u0119kujemy za testowanie Gutenberga!"],"Help build Gutenberg":["Pom\xf3\u017c w rozwoju Gutenberga"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Je\u015bli chcesz dowiedzie\u0107 si\u0119 wi\u0119cej na temat tworzenia dodatkowych blok\xf3w lub chcesz pom\xf3c przy rozwoju projektu, przejd\u017a do repozytorium na GitHubie."],"The WordPress community":["Spo\u0142eczno\u015b\u0107 WordPressa"],"Code is Poetry":["Kod to poezja"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Liczb\u0119 kolumn w galeriach mo\u017cna zmienia\u0107 przeci\u0105gaj\u0105c suwak znajduj\u0105cy si\u0119 w panelu bocznym w ustawieniach bloku."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:["Galerie"],"Images & Videos":["Obrazki i filmy"],"Text & Headings":["Tekst i nag\u0142\xf3wki"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Witamy w edytorze Gutenberg"],"block name\x04More":["Czytaj dalej"],"button to expand options\x04More":["Wi\u0119cej"],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":["Alternatywny tekst"],"Reusable Block":["Zapisany blok"],"Unique identifier for the object.":["Unikalny identyfikator obiektu."],"Untitled Reusable Block":["Blok bez tytu\u0142u"],Small:["Ma\u0142y"],"(%s: %s)":["(%s: %s)"],Reusable:["Zapisane"],"(current %s: %s)":["(aktualny %s: %s)"],"Remove from Reusable Blocks":["Usu\u0144 z zapisanych blok\xf3w"],"Add to Reusable Blocks":["Dodaj do zapisanych blok\xf3w"],"Keep as HTML":["Zachowaj jako HTML"],"Edit URL":["Edytuj adres URL"],"Color Settings":["Ustawienia kolor\xf3w"],"The response is not a valid JSON response.":["Odpowied\u017a nie jest prawid\u0142ow\u0105 odpowiedzi\u0105 JSON."],"Editor publish":["Ekran publikacji w edytorze"],Muted:["Wyciszony"],"Video Settings":["Ustawienia wideo"],"recent comments":["najnowsze komentarze"],"Latest Comments":["Ostatnie komentarze"],"Display Excerpt":[],"Display Date":[],"Display Avatar":[],"Latest Comments Settings":["Ustawienia ostatnich komentarzy"],"Number of Comments":[],"Background Opacity":["Przezroczysto\u015b\u0107 t\u0142a"],Auto:["Ca\u0142y plik"],Preload:["Wst\u0119pne \u0142adowanie"],"Audio Settings":["Ustawienia pliku d\u017awi\u0119kowego"],"Display a monthly archive of your posts.":[],"Display as Dropdown":["Wy\u015bwietl jako list\u0119 rozwijan\u0105"],"Show Post Counts":["Poka\u017c liczb\u0119 wpis\xf3w"],"Archives Settings":["Ustawienia archiwum"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Pomoc techniczna"],"No comments to show.":["Brak komentarzy do wy\u015bwietlenia."],"%1$s on %2$s":["%1$s o %2$s"],"Select Post":["Wybierz wpis"],"Select Week":["Wybierz tydzie\u0144"],"Select Day":["Wybierz dzie\u0144"],"Select Month":["Wybierz miesi\u0105c"],"Select Year":["Wybierz rok"],Archives:["Archiwa"],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":["Dost\u0119pne rodzaje blok\xf3w"],"Transform To:":["Przekszta\u0142\u0107 w"],"Remove Block":["Usu\u0144 blok"],"Open publish panel":["Otw\xf3rz panel publikacji"],Dots:["Kropki"],"Wide Line":["D\u0142uga linia"],Large:["Du\u017cy"],"Show download button":[],"Download button settings":[],"Link To":["Odno\u015bnik do"],"Text link settings":[],pdf:["pdf"],document:["dokument"],"Copy URL":["Skopiuj adres URL"],"Write file name\u2026":["Wpisz nazw\u0119 pliku..."],"Edit file":["Edytuj plik"],File:["Plik"],"A single column within a columns block.":["Pojedyncza kolumna wewn\u0105trz bloku z kolumnami."],Column:["Kolumna"],Outline:["Tylko kontur"],Loop:["Odtwarzanie w p\u0119tli"],Autoplay:["Autoodtwarzanie"],"Playback Controls":["Kontrolki sterowania"],"Close dialog":["Zamknij okno dialogowe"],"Sorry, this file type is not permitted for security reasons.":["Niestety ten format pliku nie jest dopuszczalny ze wzgl\u0119d\xf3w bezpiecze\u0144stwa."],"Disable tips":["Wy\u0142\u0105cz wskaz\xf3wki"],"Got it":["Ok"],"See next tip":["Zobacz nast\u0119pn\u0105 wskaz\xf3wk\u0119"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":["Zast\u0105p obrazek"],"Remove image":["Usu\u0144 obrazek"],"Error while uploading file %s to the media library.":["B\u0142\u0105d podczas wysy\u0142ania pliku %s do biblioteki medi\xf3w."],"This file exceeds the maximum upload size for this site.":[],"View the autosave":["Zobacz automatycznie zapisan\u0105 wersj\u0119"],"There is an autosave of this post that is more recent than the version below.":[],Autosaving:["Automatyczne zapisywanie"],"Enter URL here\u2026":["Wpisz tutaj adres URL..."],"Pin to toolbar":["Przypnij do paska narz\u0119dzi"],"Unpin from toolbar":["Odepnij od paska narz\u0119dzi"],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":["Jednakowa szeroko\u015b\u0107 kom\xf3rek"],"Table Settings":["Ustawienia tabeli"],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":[],"Error loading block: %s":["B\u0142\u0105d \u0142adowania bloku: %s"],"Unknown error":[],"Embed Handler":[],"term\x04Remove %s":["Usu\u0144 %s"],"Copy the permalink":["Skopiuj bezpo\u015bredni odno\u015bnik"],"Permalink copied":["Skopiowano odno\u015bnik"],"Height in pixels":["Wysoko\u015b\u0107 w pikselach"],"Spacer Settings":["Ustawienia odst\u0119pu"],Spacer:["Odst\u0119p"],"Toggle to show a large initial letter.":["Prze\u0142\u0105cz, aby pierwsza litera by\u0142a wi\u0119ksza."],"Showing large initial letter.":["Pierwsza litera jest powi\u0119kszona."],"Name:":["Nazwa:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s z %3$s)"],"Remove item":["Usu\u0144 element"],"Color code: %s":["Kod koloru: %s"],"Skip to the selected block":["Przejd\u017a do wybranego bloku"],"Publish\u2026":["Opublikuj..."],"Schedule\u2026":["Zaplanuj..."],"Edit post permalink":["Edytuj bezpo\u015bredni odno\u015bnik wpisu"],"Show Block Settings":["Poka\u017c ustawienia bloku"],"Hide Block Settings":["Ukryj ustawienia bloku"],"Block settings closed":["Zamkni\u0119to ustawienia bloku"],"Close plugin":["Zamknij wtyczk\u0119"],"Link settings":[],Unlink:["Usu\u0144 odno\u015bnik"],"Page break":[],pagination:["paginacja"],"next page":["nast\u0119pna strona"],"Image Size":["Rozmiar obrazka"],Height:["Wysoko\u015b\u0107"],Width:["Szeroko\u015b\u0107"],"Image Dimensions":["Wymiary obrazka"],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":["Biblioteka medi\xf3w"],Advanced:["Zaawansowane"],"Add item":[],"Reset the template":["Zresetuj szablon"],"Keep it as is":["Zachowaj bez zmian"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Tre\u015b\u0107 wpisu nie pasuje do szablonu typu tre\u015bci."],"Resetting the template may result in loss of content, do you want to continue?":["Zresetowanie szablonu mo\u017ce spowodowa\u0107 utrat\u0119 dotychczasowej tre\u015bci, chcesz kontynuowa\u0107?"],"Document Statistics":["Statystyki dokumentu"],"is now scheduled. It will go live on":["zosta\u0142 zaplanowany. Publikacja nast\u0105pi w dniu"],Scheduled:["Zaplanowany"],"Scheduling\u2026":["Planowanie..."],"Code editor selected":[],"Visual editor selected":[],Plugins:["Wtyczki"],"Custom Size":["W\u0142asny rozmiar"],"Layout Elements":["Uk\u0142ad strony"],"term\x04%s removed":["usuni\u0119to %s"],"term\x04%s added":["dodano %s"],"imperative verb\x04Preview":["Podejrzyj"],"Block deleted.":["Usuni\u0119to blok."],"Block updated.":["Zaktualizowano blok."],"Block created.":["Stworzono nowy blok."],"Trashing failed":["Przenoszenie do kosza nie powiod\u0142o si\u0119"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["Zmiany nie zosta\u0142y zapisane. W przypadku kontynuowania, zostan\u0105 utracone."],"Document Outline":["Zarys dokumentu"],Paragraphs:["Akapity"],Headings:["Nag\u0142\xf3wki"],Words:["S\u0142owa"],"Content structure":[],Public:["Publiczne"],"Protected with a password you choose. Only those with the password can view this post.":["Zawarto\u015b\u0107 zabezpieczona wybranym przez ciebie has\u0142em. Tylko u\u017cytkownicy posiadaj\u0105cy has\u0142o mog\u0105 zobaczy\u0107 ten wpis."],"Password Protected":["Zabezpieczone has\u0142em"],"Only visible to site admins and editors.":["Widoczne tylko dla administrator\xf3w i redaktor\xf3w witryny."],Private:["Prywatne"],"Visible to everyone.":["Widoczne dla wszystkich."],"Post Visibility":["Dost\u0119pno\u015b\u0107 wpisu"],"Would you like to privately publish this post now?":[],"Use a secure password":["Wprowad\u017a bezpieczne has\u0142o"],"Create password":["Stw\xf3rz has\u0142o"],"Move to Trash":[],"Parent Term":["Nadrz\u0119dna taksonomia"],"Parent Category":["Nadrz\u0119dna kategoria"],"Add new term":["Dodaj now\u0105 taksonomi\u0119 "],"Add new category":["Dodaj now\u0105 kategori\u0119"],Term:["Taksonomia"],Tag:["Tag"],"Add New Term":["Dodaj now\u0105 taksonomi\u0119 "],"Add New Tag":["Dodaj nowy tag"],"Switch to Draft":["Zmie\u0144 na szkic"],"Are you sure you want to unpublish this post?":["Na pewno chcesz cofn\u0105\u0107 publikacj\u0119 wpisu?"],Immediately:["Natychmiast"],"Save Draft":["Zapisz szkic"],Saving:["Zapisywanie"],"Publish:":["Opublikuj:"],"Visibility:":["Dost\u0119pno\u015b\u0107:"],"Are you ready to publish?":[],"Copy Link":["Kopiuj odno\u015bnik"],"What\u2019s next?":["Co dalej?"],"is now live.":["zosta\u0142 opublikowany."],Published:["Opublikowany"],Schedule:["Zaplanuj"],Update:["Zaktualizuj"],"Submit for Review":["Zapisz do przegl\u0105du"],"Updating\u2026":["Aktualizowanie..."],"Publishing\u2026":["Publikowanie..."],"Allow Pingbacks & Trackbacks":["Zezwalaj na trackbacki i pingbacki"],"Permalink:":["Bezpo\u015bredni odno\u015bnik:"],"Pending Review":["Oczekuje na przegl\u0105d"],"%d Revision":["%d wersja","%d wersje","%d wersji"],"Suggestion:":["Sugestia:"],"Post Format":["Format wpisu"],Chat:["Czat"],Status:["Status"],Standard:["Zwyk\u0142y wpis"],Aside:["Notatka na marginesie"],"Set Featured Image":[],"Learn more about manual excerpts":["Dowiedz si\u0119 wi\u0119cej o r\u0119cznym tworzeniu zajawek."],"Write an excerpt (optional)":["Napisz zajawk\u0119 (opcjonalne)"],"Allow Comments":["Zezw\xf3l na komentowanie"],"Template:":["Szablon:"],"no parent":["brak elementu nadrz\u0119dnego"],"no title":["bez tytu\u0142u"],Order:["Kolejno\u015b\u0107"],"No blocks found.":["Nie znaleziono blok\xf3w."],"%d result found.":[],Saved:["Zapisano"],Embeds:["Osadzone tre\u015bci"],Blocks:["Bloki"],"Search for a block":["Szukaj bloku"],"Add block":["Dodaj blok"],"Add %s":["Dodaj %s"],"Copy Error":["Skopiuj komunikat b\u0142\u0119du"],"Copy Post Text":["Skopiuj tre\u015b\u0107 wpisu"],"Attempt Recovery":["Spr\xf3buj odzyska\u0107"],"The editor has encountered an unexpected error.":["Edytor natrafi\u0142 na nieoczekiwany b\u0142\u0105d."],Undo:["Cofnij"],Redo:["Pon\xf3w"],"(Multiple H1 headings are not recommended)":["(Nie zaleca si\u0119 u\u017cywania wielu nag\u0142\xf3wk\xf3w H1)"],"(Your theme may already use a H1 for the post title)":["(Nag\u0142\xf3wek H1 mo\u017ce by\u0107 ju\u017c u\u017cywany przez aktualny motyw jako tytu\u0142u wpisu)"],"(Incorrect heading level)":["(Niepoprawny poziom nag\u0142\xf3wka)"],"(Empty heading)":["(Pusty nag\u0142\xf3wek)"],"Block Styles":["Style bloku"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Czy na pewno chcesz usun\u0105\u0107 zapisany blok? \n\nZostanie on trwale usuni\u0119ty ze wszystkich wpis\xf3w i stron, kt\xf3re z niego korzystaj\u0105."],"Convert to Regular Block":["Przekszta\u0142\u0107 na zwyk\u0142y blok"],"More options":["Wi\u0119cej opcji"],"Edit visually":["Edytuj wizualnie"],Duplicate:["Powiel"],"Blocks cannot be moved down as they are already at the bottom":["Nie mo\u017cna przenie\u015b\u0107 blok\xf3w ni\u017cej, poniewa\u017c s\u0105 ju\u017c na samym dole"],"Blocks cannot be moved up as they are already at the top":["Nie mo\u017cna przenie\u015b\u0107 blok\xf3w wy\u017cej, poniewa\u017c s\u0105 ju\u017c na samej g\xf3rze"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["Blok %s jest jedynym blokiem i nie mo\u017ce zosta\u0107 przesuni\u0119ty"],"Edit as HTML":["Edytuj w HTML"],"Convert to Blocks":["Przekszta\u0142\u0107 na bloki"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Nie mo\u017cna wy\u015bwietli\u0107 podgl\u0105du bloku z powodu wyst\u0105pienia b\u0142\u0119du."],"No block selected.":["Nie wybrano \u017cadnego bloku."],"Transform into:":["Przekszta\u0142\u0107 w"],Remove:["Usu\u0144"],"Find original":[],"Copy All Content":["Skopiuj ca\u0142\u0105 tre\u015b\u0107"],"Copied!":["Skopiowano!"],"Additional settings are now available in the Editor block settings sidebar":["Dodatkowe ustawienia znajduj\u0105 si\u0119 w ustawieniach bloku w panelu bocznym edytora."],Visibility:["Dost\u0119pno\u015b\u0107"],"Status & Visibility":["Status i dost\u0119pno\u015b\u0107"],"Page Attributes":["Atrybuty strony"],Block:["Blok","%d bloki","%d blok\xf3w"],Document:["Dokument"],"Featured Image":["Obrazek wyr\xf3\u017cniaj\u0105cy"],"Close settings":["Zamknij ustawienia"],"Editor content":["Tre\u015b\u0107 edytora"],Tools:["Narz\u0119dzia"],Editor:["Edytor"],"Code Editor":["Tekstowy edytor"],"Visual Editor":["Wizualny edytor"],"Editor top bar":["G\xf3rny pasek edytora"],Settings:["Ustawienia"],Reset:["Resetuj"],"Dismiss this notice":["Ukryj to powiadomienie"],"Item removed.":["Element zosta\u0142 usuni\u0119ty."],"Item added.":["Element zosta\u0142 dodany."],"Drop files to upload":["Upu\u015b\u0107 tutaj pliki, aby je doda\u0107"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Wyst\u0105pi\u0142 nieoczekiwany b\u0142\u0105d."],"No results.":["Brak wynik\xf3w."],"%d result found, use up and down arrow keys to navigate.":["Znaleziono %d wynik, u\u017cyj strza\u0142ek do g\xf3ry i do do\u0142u aby nawigowa\u0107.","Znaleziono %d wyniki, u\u017cyj strza\u0142ek do g\xf3ry i do do\u0142u aby nawigowa\u0107.","Znaleziono %d wynik\xf3w, u\u017cyj strza\u0142ek do g\xf3ry i do do\u0142u aby nawigowa\u0107."],"(no title)":["(bez tytu\u0142u)"],URL:["Adres URL"],Submit:["Wy\u015blij"],Close:["Zamknij"],"Insert link":[],"Edit link":[],Link:["Odno\u015bnik"],Strikethrough:["Przekre\u015blenie"],Italic:["Kursywa"],Bold:["Pogrubienie"],"Remove link":[],"Number of items":["Ilo\u015b\u0107 wy\u015bwietlanych element\xf3w"],All:["Wszystkie"],Category:["Kategoria"],"Z \u2192 A":["Od Z do A"],"A \u2192 Z":["Od A do Z"],"Oldest to Newest":["Od najstarszych do najnowszych"],"Newest to Oldest":["Od najnowszych do najstarszych"],"Order by":["Sortuj"],Select:["Wybierz"],"Select or Upload Media":["Wybierz lub prze\u015blij media"],Video:["Wideo"],"Edit video":["Edytuj wideo"],"Write\u2026":[],poetry:["poezja"],Verse:["Werset"],"New Column":["Nowa kolumna"],"Delete Column":["Usu\u0144 kolumn\u0119"],"Add Column After":["Dodaj kolumn\u0119 z prawej"],"Add Column Before":["Dodaj kolumn\u0119 z lewej"],"Delete Row":["Usu\u0144 wiersz"],"Add Row After":["Dodaj wiersz poni\u017cej"],"Add Row Before":["Dodaj wiersz powy\u017cej"],"Edit table":[],Table:["Tabela"],"Write subheading\u2026":[],"Write shortcode here\u2026":[],Shortcode:[],divider:["rozdzielacz"],"horizontal-line":["pozioma linia"],Separator:["Separator"],Quote:["Cytat"],"Write citation\u2026":[],"Write quote\u2026":[],Pullquote:["Wyr\xf3\u017cniony cytat"],"Write preformatted text\u2026":[],Preformatted:["Preformatowany tekst"],text:["tekst"],Paragraph:["Akapit"],"Font Size":["Rozmiar czcionki"],"Drop Cap":["Inicja\u0142"],"Text Settings":["Ustawienia akapitu"],"Read more":["Czytaj dalej"],"Write list\u2026":[],"numbered list":["numerowana lista"],"ordered list":["uporz\u0105dkowana lista"],"bullet list":["punktowana lista"],"Indent list item":["Zwi\u0119ksz wci\u0119cie"],"Outdent list item":["Zmniejsz wci\u0119cie"],"Convert to ordered list":["Zmie\u0144 na numerowan\u0105 list\u0119"],"Convert to unordered list":["Zmie\u0144 na punktowan\u0105 list\u0119"],List:["Lista"],"recent posts":["najnowsze wpisy"],"No posts found.":["Nie znaleziono wpis\xf3w."],"Latest Posts":["Ostatnie wpisy"],"Display post date":["Pokazuj dat\u0119 wpisu"],"Grid view":[],"List view":[],photo:["zdj\u0119cie"],"Image Settings":["Ustawienia obrazka"],Image:["Obrazek"],Preview:["Podgl\u0105d"],embed:["osadzanie"],"Custom HTML":["W\u0142asny HTML"],subtitle:["podtytu\u0142"],title:["tytu\u0142"],Heading:["Nag\u0142\xf3wek"],"Write heading\u2026":[],"Heading %d":["Nag\u0142\xf3wek %d. poziomu"],Level:["Poziom"],"Heading Settings":["Ustawienia nag\u0142\xf3wka"],photos:["zdj\u0119cia"],images:["obrazki"],"Remove Image":["Usu\u0144 obrazek"],None:["-"],"Media File":["Plik multimedialny"],"Attachment Page":["Strona za\u0142\u0105cznika"],"Crop Images":["Przycinaj obrazki"],"Gallery Settings":["Ustawienia galerii"],Gallery:["Galeria"],Classic:[],video:["film"],audio:["plik d\u017awi\u0119kowy"],music:["muzyka"],image:["obrazek"],blog:["blog"],post:["wpis"],"Embedded content from %s":[],"Enter URL to embed here\u2026":["Wprowad\u017a adres URL elementu do osadzenia..."],"%s URL":[],"Embedding\u2026":["Trwa osadzanie..."],"Write title\u2026":[],"Fixed Background":["Nieruchome t\u0142o"],"Edit image":["Edytuj obrazek"],Columns:["Kolumny"],Experiments:[],Code:["Blok kodu"],"Write code\u2026":[],Categories:["Kategorie"],"Show Hierarchy":[],"Show post counts":["Pokazuj liczb\u0119 wpis\xf3w"],"Categories Settings":["Ustawienia kategorii"],"Add text\u2026":["Dodaj tekst..."],Button:["Przycisk"],Apply:["Zastosuj"],"Text Color":["Kolor tekstu"],"Background Color":["Kolor t\u0142a"],"Block has been deleted or is unavailable.":["Blok zosta\u0142 usuni\u0119ty lub jest niedost\u0119pny."],"Reusable Blocks":["Zapisane bloki"],Cancel:["Anuluj"],Edit:["Edytuj"],"Edit audio":["Edytuj plik d\u017awi\u0119kowy"],"Write caption\u2026":[],"Use URL":["U\u017cyj adresu URL"],Audio:["Plik d\u017awi\u0119kowy"],Upload:["Wy\u015blij na serwer"],"Additional CSS Class(es)":[],"HTML Anchor":["Kotwica HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Ta kombinacja kolor\xf3w mo\u017ce zmniejszy\u0107 czytelno\u015b\u0107. Spr\xf3buj u\u017cy\u0107 ja\u015bniejszego koloru t\u0142a i/lub ciemniejszego koloru tekstu. "],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Ta kombinacja kolor\xf3w mo\u017ce zmniejszy\u0107 czytelno\u015b\u0107. Spr\xf3buj u\u017cy\u0107 ciemniejszego koloru t\u0142a i/lub ja\u015bniejszego koloru tekstu."],Clear:["Wyczy\u015b\u0107"],"Custom color picker":["Pr\xf3bnik kolor\xf3w"],"Color: %s":["Kolor: %s"],"Full Width":[],"Wide Width":[],Widgets:["Widgety"],Formatting:["Formatowanie"],"Common Blocks":["Podstawowe bloki"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["Dodaj tytu\u0142"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["Autor"],Slug:["Uproszczona nazwa"],Discussion:["Dyskusja"],"Custom Fields":["W\u0142asne pola"],Excerpt:["Zajawka"],Publish:["Opublikuj"],Metadata:["Tylko metadane"],Save:["Zapisz"],Documentation:["Dokumentacja"],"Select Category":["Wybierz kategori\u0119"],"(Untitled)":["(Brak tytu\u0142u)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Zesp\xf3\u0142 Gutenberga"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s temu"],"Block style name must be a string.":[]}},857,[]); +__d(function(e,o,a,t,r,i,s){r.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":["Nenhum bloco encontrado na sua biblioteca."],"No blocks found in your library. These blocks can be downloaded and installed:":["Nenhum bloco encontrado na sua biblioteca. Podem ser descarregados e instalados os seguintes blocos:"],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:["Tentar de novo"],"Block previews can't install.":[],"Updated %s":["%s actualizado"],"%d active installation":["%d instala\xe7\xe3o activa","%d instala\xe7\xf5es activas"],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:["Adicionar"],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":["Insira o endere\xe7o"],"Pill Shape":[],"Logos Only":["Apenas log\xf3tipos"],"Create a block of links to your social media or external sites":["Criar um bloco de liga\xe7\xf5es para redes sociais ou sites externos"],"Social links":["Redes sociais"],"Open block navigator":["Abrir navegador de blocos"],"Attachment page":["P\xe1gina de anexo"],Fill:["Preencher"],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":["Repor a c\xf3pia de seguran\xe7a"],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":["Activar a pesquisa no direct\xf3rio de blocos"],"Block Directory":["Direct\xf3rio de blocos"],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":["N\xe3o tem permiss\xe3o para instalar blocos."],"%1$d block is disabled.":["%1$d bloco est\xe1 desactivado.","%1$d blocos est\xe3o desactivados."],"Reverse List Numbering":[],"Start Value":["Valor inicial"],"Ordered List Settings":[],"Clear Media":["Limpar conte\xfado multim\xe9dia"],"block style\x04Circle Mask":["M\xe1scara circular"],"Default Style":["Estilo por omiss\xe3o"],"Not set":["N\xe3o definido"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:["Cor"],"Vivid purple":[],"Disable & Reload":["Desactivar e recarregar"],"Enable & Reload":["Activar e recarregar"],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":["Mostrar estes atalhos de teclado."],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:["Personalizado"],Draft:["Rascunho"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":["Saiba mais sobre \xe2ncoras."],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":["Blocos de widget (experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Carregue um ficheiro de v\xeddeo, seleccione um da sua biblioteca multim\xe9dia ou adicione um atrav\xe9s de um URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Carregue um ficheiro de imagem, seleccione um da sua biblioteca multim\xe9dia ou adicione um atrav\xe9s de um URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Carregue um ficheiro de \xe1udio, seleccione um da sua biblioteca multim\xe9dia ou adicione um atrav\xe9s de um URL."],"Upload a media file or pick one from your media library.":["Carregue um ficheiro multim\xe9dia ou seleccione um da sua biblioteca."],Skip:["Saltar"],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":["O que \xe9 isto?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["N\xe3o permitir que motores de pesquisa sigam esta liga\xe7\xe3o."],"Provide more context about where the link goes.":[],"Title Attribute":["T\xedtulo HTML (title)"],"SEO Settings":["Defini\xe7\xf5es de SEO"],Description:["Descri\xe7\xe3o"],"Open in new tab":["Abrir num novo separador"],links:["liga\xe7\xf5es"],navigation:["navega\xe7\xe3o"],menu:["menu"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["Carregue um ficheiro ou seleccione um da sua biblioteca multim\xe9dia."],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":["Carregue um ficheiro de imagem ou v\xeddeo, ou seleccione um da sua biblioteca multim\xe9dia."],"Three columns; wide center column":["Tr\xeas colunas; coluna central larga"],"Three columns; equal split":["Tr\xeas colunas; divis\xe3o igual"],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":["Duas colunas; divis\xe3o igual"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":["Mais ferramentas e op\xe7\xf5es"],"Create Table":["Criar tabela"],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Desagrupar"],"verb\x04Group":["Agrupar"],"Separate with commas or the Enter key.":["Separe com v\xedrgulas ou a tecla enter."],"Separate with commas, spaces, or the Enter key.":["Separe com v\xedrgulas, espa\xe7os ou a tecla enter."],"Separate multiple classes with spaces.":["Separe m\xfaltiplas classes com espa\xe7os."],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":["N\xe3o tem permiss\xe3o para editar barras laterais."],"Sorry, you are not allowed to read sidebars.":["N\xe3o tem permiss\xe3o para ver barras laterais."],"The sidebar\u2019s ID.":["ID da barra lateral."],"Displays a set of blocks":["Mostra um conjunto de blocos"],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":["C\xf3digo em linha"],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":["Sec\xe7\xe3o de rodap\xe9"],"Header section":["Sec\xe7\xe3o de cabe\xe7alho"],"Sorting and Filtering":["Ordem e filtros"],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":["Defini\xe7\xf5es de conte\xfado do artigo"],"Percentage width":["Percentagem de largura"],"Column Settings":["Defini\xe7\xf5es da coluna"],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":["\xc1rea de blocos actualizada."],"Block area scheduled.":["\xc1rea de blocos agendada."],"Block area published.":["\xc1rea de blocos publicada."],"Block areas list":["Lista de \xe1reas de blocos"],"Block areas list navigation":["Navega\xe7\xe3o da lista de \xe1reas de blocos"],"Filter block areas list":["Filtrar lista de \xe1reas de blocos"],"No block area found.":["Nenhuma \xe1rea de blocos encontrada."],"Search Block Areas":["Pesquisar \xe1reas de blocos"],"All Block Areas":["Todas as \xe1reas de blocos"],"View Block Area":["Ver \xe1rea de blocos"],"Edit Block Area":["Editar \xe1rea de blocos"],"New Block Area":["Nova \xe1rea de blocos"],"Add New Block Area":["Adicionar nova \xe1rea de blocos"],"admin menu\x04Block Areas":["\xc1reas de blocos"],"post type singular name\x04Block Area (Experimental)":["\xc1rea de blocos (experimental)"],"post type general name\x04Block Area (Experimental)":["\xc1rea de blocos (experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Tipo de conte\xfado personalizado experimental que armazena \xe1reas de blocos referenciadas por temas."],"Widgets screen content":[],"Widgets advanced settings":["Defini\xe7\xf5es avan\xe7adas de widgets"],"(experimental)":["(experimental)"],"Block Areas":["\xc1reas de blocos"],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":["A imagem de capa actual \xe9 %s"],section:["sec\xe7\xe3o"],row:["linha"],wrapper:[],container:[],"A block that groups other blocks.":["Bloco que agrupa outros blocos."],Group:["Grupo"],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":["Descreva o prop\xf3sito da imagem"],"Add a block":["Adicionar um bloco"],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":["Substituir imagem"],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":["Mostra um widget antigo."],"Legacy Widget (Experimental)":["Widget antigo (experimental)"],"Change widget":["Alterar widget"],"Legacy Widget":["Widget antigo"],"You don't have permissions to use widgets on this site.":["N\xe3o tem permiss\xf5es para utilizar widgets neste site."],"Select a legacy widget to display:":["Seleccione um widget antigo a mostrar:"],"There are no widgets available.":["Nenhum widget dispon\xedvel."],"Change block type or style":["Alterar o tipo ou estilo do bloco"],"keyboard key\x04Space":["Espa\xe7o"],"keyboard key\x04Backspace":["Tecla apagar"],"More rich text controls":[],"Search Terms":["Pesquisar termos"],"Exit the Editor":["Sair do editor"],"Block Manager":["Gestor de blocos"],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":["Widgets (beta)"],link:["liga\xe7\xe3o"],"Embedded content from %s can't be previewed in the editor.":["O conte\xfado incorporado de %s n\xe3o pode ser visualizado no editor."],"Custom Color":["Cor personalizada"],"Prompt visitors to take action with a button-style link.":["Incentive os visitantes a tomar uma ac\xe7\xe3o com um bot\xe3o personalizado."],"Stick to the top of the blog":["Fixar no topo do blog"],"Read about permalinks":["Leia sobre liga\xe7\xf5es permanentes"],"The last part of the URL.":[],"URL Slug":["Slug do URL"],"A cloud of your most used tags.":["Uma nuvem das etiquetas mais usadas."],"Tag Cloud":["Nuvem de etiquetas"],Taxonomy:["Taxonomia"],"Tag Cloud Settings":["Op\xe7\xf5es da nuvem de etiquetas"],"- Select -":["- Seleccionar -"],Default:["Por omiss\xe3o"],find:["pesquisar"],"Help visitors find your content.":["Ajude os visitantes a encontrar o seu conte\xfado."],Search:["Pesquisar"],"Add button text\u2026":["Adicionar texto do bot\xe3o..."],"Button text":["Texto do bot\xe3o"],"Optional placeholder\u2026":["Placeholder opcional..."],"Optional placeholder text":["Texto de placeholder opcional"],"Add label\u2026":["Adicionar legenda..."],"Label text":["Texto da legenda"],"image %1$d of %2$d in gallery":["imagem %1$d de %2$d na galeria"],archive:["arquivo"],posts:["artigos"],"A calendar of your site\u2019s posts.":["Um calend\xe1rio dos artigos do seu site."],Calendar:["Calend\xe1rio"],by:["por"],"An error has occurred, which probably means the feed is down. Try again later.":["Ocorreu um erro. A causa prov\xe1vel \xe9 o feed estar offline. Tente mais tarde. "],"RSS Error:":["Erro RSS:"],"block style\x04Default":["Por omiss\xe3o"],"Fullscreen mode deactivated":["Modo de ecr\xe3 inteiro desactivado"],"Fullscreen mode activated":["Modo de ecr\xe3 inteiro activado"],"Spotlight mode deactivated":["Modo de foco desactivado"],"Spotlight mode activated":["Modo de foco activado"],"Top toolbar deactivated":["Barra de ferramentas superior desactivada"],"Top toolbar activated":["Barra de ferramentas superior activada"],Back:["Voltar"],"Feature activated":["Funcionalidade activada"],"Feature deactivated":["Funcionalidade desactivada"],"Vertical Pos.":["Posi\xe7\xe3o vertical"],"Horizontal Pos.":["Posi\xe7\xe3o horizontal"],feed:["feed"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Mostre entradas de qualquer feed RSS ou atom."],RSS:["RSS"],"Max number of words in excerpt":["N\xfamero m\xe1ximo de palavras do excerto"],"Display excerpt":["Mostrar excerto"],"Display date":["Mostrar data"],"Display author":["Mostrar autor"],"RSS Settings":["Op\xe7\xf5es de RSS"],"Edit RSS URL":["Editar URL do RSS"],"Content before this block will be shown in the excerpt on your archives page.":["O conte\xfado antes deste bloco ser\xe1 apresentado no excerto da p\xe1gina de arquivo."],"Hide the excerpt on the full content page":["Esconder excerto na p\xe1gina de conte\xfado completo"],"The excerpt is visible.":["O excerto est\xe1 vis\xedvel."],"The excerpt is hidden.":["O excerto est\xe1 escondido."],"Sorry, this content could not be embedded.":["N\xe3o foi poss\xedvel incorporar este conte\xfado."],"Embed Amazon Kindle content.":["Incorporar conte\xfado do Amazon Kindle."],ebook:["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Incorporar conte\xfados do Crowdsignal (antigo Polldaddy)."],"Focal Point Picker":["Ponto de foco"],Underline:["Sublinhado"],"Attempt Block Recovery":["Tentar recuperar o bloco"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Conte\xfado\u2026"],"button label\x04Convert to link":["Converter para liga\xe7\xe3o"],"button label\x04Try again":["Tentar de novo"],"Editor tips":["Dicas do editor"],"Block (selected)":["Bloco (seleccionado)"],"Document (selected)":["Documento (seleccionado)"],"%d word":["%d palavra","%d palavras"],"Top Toolbar":["Barra de ferramentas superior"],"Link Rel":["Link Rel"],"Link CSS Class":["Classe CSS da liga\xe7\xe3o"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Crie conte\xfado e guarde-o para ser reutilizado por qualquer utilizador do seu site. As altera\xe7\xf5es ao bloco ser\xe3o reflectidas em todos os locais onde for utilizado."],"To edit the featured image, you need permission to upload media.":["Para editar a imagem de destaque, precisa de permiss\xe3o para carregar multim\xe9dia."],"To edit this block, you need permission to upload media.":["Para editar este bloco, precisa de permiss\xe3o para carregar multim\xe9dia."],"(selected block)":["(bloco seleccionado)"],"Block tools":["Ferramentas de blocos"],Permalink:["Liga\xe7\xe3o permanente"],"This image has an empty alt attribute":["Esta imagem tem um texto alternativo em branco"],"This image has an empty alt attribute; its file name is %s":["Esta imagem tem um texto alternativo em branco, o nome da imagem \xe9 %s"],"Block area reverted to draft.":["\xc1rea de blocos revertida para rascunho."],"Block area published privately.":["\xc1rea de blocos publicada em privado."],"No block areas found in Trash.":["Nenhuma \xe1rea de blocos encontrada no lixo."],"Block\x04Add New":["Adicionar novo"],"add new on admin bar\x04Block Area":["\xc1rea de blocos"],"Link inserted.":["Liga\xe7\xe3o inserida."],"Warning: the link has been inserted but may have errors. Please test it.":["Aten\xe7\xe3o: a liga\xe7\xe3o foi inserida mas pode conter erros. Por favor verifique."],"%s block selected.":["%s bloco seleccionado.","%s blocos seleccionados."],Thumbnail:["Miniatura"],"Full Size":["Tamanho original"],"Link selected.":["Liga\xe7\xe3o seleccionada."],"Start writing with text or HTML":["Comece a escrever com texto ou HTML"],"Type text or HTML":["Digite texto ou HTML"],"Block icon":["\xcdcone do bloco"],"Align Text Right":["Alinhar texto \xe0 direita"],"Align Text Center":["Alinhar texto ao centro"],"Align Text Left":["Alinhar texto \xe0 esquerda"],"Start writing or type / to choose a block":["Comece a escrever ou clique em / para escolher um bloco"],"Empty block; start writing or type forward slash to choose a block":["Bloco vazio; comece a escrever ou insira uma barra para a direita para escolher um bloco"],"Paragraph block":["Bloco de par\xe1grafo"],"Page Break":["Quebra de p\xe1gina"],"Stack on mobile":["Empilhar em mobile"],Annotation:["Anota\xe7\xe3o"],"Drag images, upload new ones or select files from your library.":["Arraste imagens, carregue novas ou seleccione ficheiros da sua biblioteca."],"blocks\x04Most Used":["Mais usados"],"imperative verb\x04Resolve":["Corrigir"],"font size name\x04Huge":["Muito grande"],"font size name\x04Large":["Grande"],"font size name\x04Medium":["M\xe9dio"],"font size name\x04Small":["Pequeno"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Importar"],"button label\x04Download":["Descarregar"],"button label\x04Embed":["Incorporar"],"block title\x04Embed":["Incorpora\xe7\xe3o"],"block title\x04Classic":["Cl\xe1ssico"],"block style\x04Large":["Grande"],"%s (opens in a new tab)":["%s (abre num novo separador)"],"Link edited.":["Liga\xe7\xe3o editada."],"Link removed.":["Liga\xe7\xe3o removida."],media:["multim\xe9dia"],"Double-check your settings before publishing.":["Verifique as suas op\xe7\xf5es antes de publicar."],"Generating preview\u2026":["A gerar a pr\xe9-visualiza\xe7\xe3o..."],"Edit or update the image":["Editar ou actualizar a imagem"],Media:["Multim\xe9dia"],"Navigate to the nearest toolbar.":["Navegar para a barra de ferramentas mais pr\xf3xima."],"Document tools":["Ferramentas do documento"],"Document and block tools":["Ferramentas de blocos e documentos"],"Embed a video from your media library or upload a new one.":["Incorpore um v\xeddeo da sua biblioteca multim\xe9dia ou carregue um novo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insira poesia ou cite letras de m\xfasicas. Utilize formatos especiais de espa\xe7amento."],"Add white space between blocks and customize its height.":["Adicione espa\xe7o em branco entre os blocos e personalize a sua altura."],"Insert additional custom elements with a WordPress shortcode.":["Insira elementos personalizados adicionais atrav\xe9s de um shortcode do WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crie uma quebra entre ideias ou sec\xe7\xf5es com um separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Destaque as suas cita\xe7\xf5es. \"Ao citar outros, citamos-nos a n\xf3s mesmos.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["D\xea um destaque especial a uma cita\xe7\xe3o do seu texto."],"Start with the building block of all narrative.":["Comece pelo bloco de base de qualquer narrativa."],"Separate your content into a multi-page experience.":["Separa o conte\xfado para uma experi\xeancia multip\xe1gina."],"Set media and words side-by-side for a richer layout.":["Coloca conte\xfado multim\xe9dia e texto lado a lado para um layout mais rico."],"Media & Text Settings":["Defini\xe7\xf5es de multim\xe9dia e texto"],"Create a bulleted or numbered list.":["Crie uma lista numerada ou de marcadores."],"Display a list of your most recent comments.":["Mostre uma lista dos seus coment\xe1rios mais recentes."],"Insert an image to make a visual statement.":["Insere uma imagem para fazer uma declara\xe7\xe3o visual."],"Add custom HTML code and preview it as you edit.":["Adicione c\xf3digo HTML personalizado e pr\xe9-visualize durante a edi\xe7\xe3o."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduza novas sec\xe7\xf5es e organize o seu conte\xfado para ajudar os seus visitantes (e motores de pesquisa) a compreender a sua estrutura."],"Display multiple images in a rich gallery.":["Apresente m\xfaltiplas imagens em forma de galeria."],"Add a link to a downloadable file.":["Adicionar uma liga\xe7\xe3o para um ficheiro descarreg\xe1vel."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incorporar v\xeddeos, imagens, tweets, \xe1udio e outros conte\xfados a partir de fontes externas."],"Resize for smaller devices":["Redimensionar para dispositivos mais pequenos"],"This embed may not preserve its aspect ratio when the browser is resized.":["Esta incorpora\xe7\xe3o poder\xe1 n\xe3o preservar o r\xe1cio largura:altura ao redimensionar o navegador."],"This embed will preserve its aspect ratio when the browser is resized.":["Esta incorpora\xe7\xe3o ir\xe1 preservar o r\xe1cio largura:altura ao redimensionar o navegador."],"Embed an Animoto video.":["Incorporar um v\xeddeo do Animoto."],"Embed a Vimeo video.":["Incorporar um v\xeddeo do Vimeo."],"Embed Flickr content.":["Incorporar um conte\xfado do Flickr."],"Embed Spotify content.":["Incorporar um conte\xfado do Spotify."],"Embed SoundCloud content.":["Incorporar um conte\xfado do SoundCloud."],"Embed a WordPress post.":["Incorporar um artigo do WordPress."],"Embed an Instagram post.":["Incorporar uma publica\xe7\xe3o do Instagram."],"Embed a Facebook post.":["Incorporar uma publica\xe7\xe3o do Facebook."],"Embed a WordPress.tv video.":["Incorporar um v\xeddeo da WordPress.tv"],"Embed a VideoPress video.":["Incorporar um v\xeddeo e VideoPress."],"Embed a Tumblr post.":["Incorporar um artigo do Tumblr."],"Embed a TED video.":["Incorporar um v\xeddeo de TED."],"Embed Speaker Deck content.":["Incorporar um conte\xfado de Speaker Deck."],"Embed a YouTube video.":["Incorporar um v\xeddeo do YouTube."],"Embed SmugMug content.":["Incorporar um conte\xfado de SmugMug."],"Embed Slideshare content.":["Incorporar um conte\xfado do Slideshare."],"Embed Scribd content.":["Incorporar um conte\xfado do Scribd."],"Embed Screencast content.":["Incorporar um conte\xfado do Screencast."],"Embed ReverbNation content.":["Incorporar um conte\xfado de ReverbNation."],"Embed a Reddit thread.":["Incorporar um t\xf3pico do Reddit."],"Embed Polldaddy content.":["Incorporar um conte\xfado do Polldaddy."],"Embed Mixcloud content.":["Incorporar um conte\xfado do Mixcloud."],"Embed a tweet.":["Incorporar um tweet."],"Embed Meetup.com content.":["Incorporar um conte\xfado do Meetup.com"],"Embed Kickstarter content.":["Incorporar um conte\xfado do Kickstarter."],"Embed Issuu content.":["Incorporar um conte\xfado do Issuu."],"Embed Imgur content.":["Incorporar um conte\xfado do Imgur."],"Embed Hulu content.":["Incorporar um conte\xfado do Hulu."],"Embed a Dailymotion video.":["Incorporar um v\xeddeo do Dailymotion."],"Embed CollegeHumor content.":["Incorporar um conte\xfado do CollegeHumor."],"Embed Cloudup content.":["Incorporar um conte\xfado de Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Adicione uma imagem ou v\xeddeo com um texto sobreposto \u2014 \xf3ptimo para cabe\xe7alhos."],"Display code snippets that respect your spacing and tabs.":["Mostre fragmentos de c\xf3digo que respeitem o seu espa\xe7amento e separadores."],"Use the classic WordPress editor.":["Utilizar o editor cl\xe1ssico do WordPress."],"Display a list of all categories.":["Mostre uma lista de todas as categorias."],"Embed a simple audio player.":["Incorporar um reprodutor simples de \xe1udio."],"noun\x04View":["Visualiza\xe7\xe3o"],"editor button\x04Left to right":["Esquerda para a direita"],"Save as Pending":["Guardar como pendente"],"%s address":["Endere\xe7o de %s"],"Paste or type URL":["Colar ou escrever o URL"],"Insert from URL":["Inserir de um URL"],"Block Navigator":["Navega\xe7\xe3o de blocos"],Styles:["Estilos"],"Advanced Panels":["Pain\xe9is avan\xe7ados"],"Document Panels":["Pain\xe9is do documento"],General:["Geral"],"Open the block navigation menu.":["Abrir o menu do bloco de navega\xe7\xe3o."],"Work without distraction":["Trabalhe sem distrac\xe7\xf5es"],"Focus on one block at a time":["Foque-se num bloco de cada vez."],"Access all block and document tools in a single place":["Aceda a todas as ferramentas de blocos e documentos num \xfanico local"],Options:["Op\xe7\xf5es"],"(opens in a new tab)":["(abre num novo separador)"],Minutes:["Minutos"],Hours:["Horas"],Time:["Hora"],Year:["Ano"],Day:["Dia"],December:["Dezembro"],November:["Novembro"],October:["Outubro"],September:["Setembro"],August:["Agosto"],July:["Julho"],June:["Junho"],May:["Maio"],April:["Abril"],March:["Mar\xe7o"],February:["Fevereiro"],January:["Janeiro"],Month:["M\xeas"],Date:["Data"],"Go to the first (home) or last (end) day of a week.":["Ir para o primeiro (in\xedcio) ou \xfaltimo (fim) dia da semana."],"Home/End":["In\xedcio/fim"],"Home and End":["In\xedcio e fim"],"Move backward (PgUp) or forward (PgDn) by one month.":["Recuar (PgUp) ou avan\xe7ar (PgDn) um m\xeas."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up e Page Down"],"Move backward (up) or forward (down) by one week.":["Recuar (cima) ou avan\xe7ar (baixo) uma semana."],"Up and Down Arrows":["Setas cima e baixo"],"Move backward (left) or forward (right) by one day.":["Recuar (cima) ou avan\xe7ar (direita) um dia."],"Left and Right Arrows":["Setas esquerda e direita"],"Select the date in focus.":["Escolher a data em foco."],"Navigating with a keyboard":["Navegar com o teclado"],"Click the desired day to select it.":["Clique no dia desejado para o seleccionar."],"Click the right or left arrows to select other months in the past or the future.":["Clique nas setas esquerda ou direita para seleccionar outros meses do passado ou futuro."],"Click to Select":["Clique para seleccionar"],"Calendar Help":["Ajuda do calend\xe1rio"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Utilize as setas para alterar a cor base. Para cima para mais claro, para baixo mais escuro, para a esquerda para aumentar a satura\xe7\xe3o, para a direita para diminuir a satura\xe7\xe3o."],"Choose a shade":["Escolher uma tonalidade"],"Change color format":["Alterar formato de cor"],"Color value in HSL":["Valor da cor em HSL"],"Color value in RGB":["Valor da cor em RGB"],"Color value in hexadecimal":["Valor da cor em hexadecimal"],"RGB mode active":["Modo de cores RGB activado"],"Hex color mode active":["Modo de cores Hex activado"],"Hue/saturation/lightness mode active":["Mode de cores HSL activado"],"Move the arrow left or right to change hue.":["Mover a seta para a esquerda ou para a direita para alterar a tonalidade."],"Hue value in degrees, from 0 to 359.":["Tonalidade em graus, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor alfa, de 0 (transparente) a 1 (opaco)."],Stripes:["Listas"],"Your site doesn\u2019t include support for this block.":["O seu site n\xe3o est\xe1 preparado para este bloco."],"Unrecognized Block":["Bloco n\xe3o reconhecido"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["O seu site n\xe3o est\xe1 preparado para o bloco \"%s\". Pode deixar este bloco intacto ou remov\xea-lo."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["O seu site n\xe3o est\xe1 preparado para o bloco \"%s\". Pode deixar este bloco intacto, converter o conte\xfado para um bloco de HTML personalizado ou remov\xea-lo."],"Media area":["\xc1rea de multim\xe9dia"],"Media & Text":["Multim\xe9dia e texto"],"Show media on right":["Mostrar multim\xe9dia \xe0 direita"],"Show media on left":["Mostrar multim\xe9dia \xe0 esquerda"],"Open in New Tab":["Abrir num novo separador"],Cover:["Capa"],"Border Settings":["Defini\xe7\xf5es da borda"],"Edit media":["Editar multim\xe9dia"],Medium:["M\xe9dio"],"Paste URL or type to search":["Cole um URL ou escreva para pesquisar"],Terms:["Termos"],"Your work will be published at the specified date and time.":["O seu trabalho ser\xe1 publicado no dia e hora especificados."],"Are you ready to schedule?":["Est\xe1 pronto para agendar?"],"Always show pre-publish checks.":["Mostrar sempre verifica\xe7\xf5es pr\xe9-publica\xe7\xe3o."],"Take Over":["Assumir controlo"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["De momento est\xe1 outro utilizador a trabalhar neste conte\xfado, o que significa que s\xf3 poder\xe1 fazer altera\xe7\xf5es se assumir o controlo."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s est\xe1 de momento a editar este conte\xfado, o que significa que n\xe3o pode fazer altera\xe7\xf5es, a n\xe3o ser que assuma o controlo."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Outro utilizador assumiu o controlo de edi\xe7\xe3o deste conte\xfado. N\xe3o se preocupe, foram guardadas todas as suas altera\xe7\xf5es at\xe9 este momento."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s assumiu o controlo de edi\xe7\xe3o deste conte\xfado. N\xe3o se preocupe, as suas altera\xe7\xf5es at\xe9 este momento foram guardadas."],Avatar:["Avatar"],"This post is already being edited.":["Este conte\xfado j\xe1 est\xe1 a ser editado."],"Someone else has taken over this post.":["Algu\xe9m assumiu o controlo deste conte\xfado."],"This block contains unexpected or invalid content.":["Este bloco tem conte\xfado inesperado ou inv\xe1lido."],"Resolve Block":["Corrigir bloco"],"Convert to HTML":["Converter para HTML"],"This block can only be used once.":["Este bloco apenas pode ser usado uma vez."],"Exit Code Editor":["Sair do editor de c\xf3digo"],"Editing Code":["A editar c\xf3digo"],"Solid Color":["Cor s\xf3lida"],"Main Color":["Cor principal"],HTML:["HTML"],"Write HTML\u2026":["Escreva HTML\u2026"],"Media Settings":["Op\xe7\xf5es de multim\xe9dia"],"Overlay Color":["Cor de sobreposi\xe7\xe3o"],Overlay:["Sobreposi\xe7\xe3o"],"Insert Media":["Inserir multim\xe9dia"],"Reusable block imported successfully!":["Bloco reutiliz\xe1vel importado com sucesso!"],"Invalid Reusable Block JSON file":["O ficheiro JSON de bloco reutiliz\xe1vel \xe9 inv\xe1lido"],"Invalid JSON file":["Ficheiro JSON inv\xe1lido"],"Import from JSON":["Importar de JSON"],Backtick:["Ap\xf3strofo"],Period:["Ponto"],Comma:["V\xedrgula"],"Change type of %d block":["Alterar tipo de %d bloco","Alterar tipo de %d blocos"],Current:["Actual"],"After Conversion":["Ap\xf3s a convers\xe3o"],"Change alignment":["Alterar alinhamento"],"Change text alignment":["Alterar alinhamento do texto"],"%d block":["%d bloco","%d blocos"],Escape:["Escape"],"Forward-slash":["Barra para a direita"],"No archives to show.":["Nenhum arquivo para mostrar."],"This file is empty.":["Ficheiro vazio."],"Sorry, this file type is not supported here.":["Desculpe, este tipo de ficheiro n\xe3o \xe9 suportado."],"Manage All Reusable Blocks":["Gerir todos os blocos reutiliz\xe1veis"],Title:["T\xedtulo"],"Fullscreen Mode":["Modo de ecr\xe3 inteiro"],"Beautiful landscape":["Paisagem bonita"],"Close panel":["Fechar painel"],"Convert to Classic Block":["Converter para bloco cl\xe1ssico"],"Remove Poster Image":["Remover imagem de capa"],"Select Poster Image":["Seleccionar imagem de capa"],"Poster Image":["Imagem de capa"],"This block is deprecated. Please use the Columns block instead.":["Este bloco est\xe1 obsoleto. Utilize o bloco de colunas em alternativa."],"Text Columns (deprecated)":["Colunas de texto (obsoletas)"],"Row Count":["N\xfamero de linhas"],"Column Count":["N\xfamero de colunas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloco est\xe1 obsoleto. Utilize o bloco de par\xe1grafo em alternativa."],"Subheading (deprecated)":["Subt\xedtulo (obsoleto)"],blockquote:["cita\xe7\xe3o"],"Change the block type after adding a new paragraph.":["Altera o tipo de bloco depois de adicionar um novo par\xe1grafo."],"Spotlight Mode":["Modo de foco"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["As etiquetas ajudam os utilizadores e motores de pesquisa a navegar no seu site e a encontrar o seu conte\xfado. Adicione algumas palavras-chave que descrevam o seu conte\xfado."],"Add tags":["Adicionar etiquetas"],"Apply the \"%1$s\" format.":["Aplicar o formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["O seu tema utiliza formatos de artigo para destacar diferentes tipos de conte\xfados, como imagens ou v\xeddeos. Aplique formatos de artigo para ver estes estilos especiais."],"Use a post format":["Utilizar um formato de artigo"],"Insert After":["Inserir depois"],"Insert Before":["Inserir antes"],"Move %1$d block from position %2$d down by one place":["Mover %1$d bloco da posi\xe7\xe3o %2$d para uma posi\xe7\xe3o abaixo","Mover %1$d blocos da posi\xe7\xe3o %2$d para uma posi\xe7\xe3o abaixo"],"Move %1$d block from position %2$d up by one place":["Mover %1$d bloco da posi\xe7\xe3o %2$d para uma posi\xe7\xe3o acima","Mover %1$d blocos da posi\xe7\xe3o %2$d para uma posi\xe7\xe3o acima"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["filme"],"Insert a new block before the selected block(s).":["Insere um novo bloco antes do(s) bloco(s) seleccionado(s)."],"Remove the selected block(s).":["Remove o(s) bloco(s) seleccionado(s)."],"Duplicate the selected block(s).":["Duplica o(s) bloco(s) seleccionado(s)."],"Block shortcuts":["Atalhos de blocos"],"Clear selection.":["Limpa a selec\xe7\xe3o."],"Select all text when typing. Press again to select all blocks.":["Selecciona todo o texto ao digitar. Ao premir de novo selecciona todos os blocos."],"Selection shortcuts":["Atalhos de selec\xe7\xe3o"],"Switch between Visual Editor and Code Editor.":["Alterna entre o editor visual e o editor de c\xf3digo."],"Navigate to the previous part of the editor (alternative).":["Navega para a parte anterior do editor (alternativa)."],"Navigate to the next part of the editor (alternative).":["Navega para a parte seguinte do editor (alternativa)."],"Navigate to the previous part of the editor.":["Navega para a parte anterior do editor."],"Navigate to the next part of the editor.":["Navega para a parte seguinte do editor."],"Show or hide the settings sidebar.":["Mostra ou esconde a barra lateral das defini\xe7\xf5es."],"Redo your last undo.":["Refaz o que anulou anteriormente."],"Undo your last changes.":["Anula as suas \xfaltimas altera\xe7\xf5es."],"Save your changes.":["Guarda as suas altera\xe7\xf5es."],"Global shortcuts":["Atalhos globais"],"Remove a link.":["Remove uma liga\xe7\xe3o."],"Convert the selected text into a link.":["Converte o texto seleccionado numa liga\xe7\xe3o."],"Underline the selected text.":["Sublinha o texto seleccionado."],"Make the selected text italic.":["Torna it\xe1lico o texto seleccionado."],"Make the selected text bold.":["Torna negrito o texto seleccionado."],"Text formatting":["Formata\xe7\xe3o de texto"],"Insert a new block after the selected block(s).":["Insere um novo bloco depois do(s) bloco(s) seleccionado(s)."],"Keyboard Shortcuts":["Atalhos de teclado"],"Thanks for testing Gutenberg!":["Obrigado por testar o Gutenberg!"],"Help build Gutenberg":["Ajude a criar o Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":["A comunidade WordPress"],"Code is Poetry":["C\xf3digo \xe9 poesia"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":["A acessibilidade \xe9 importante — n\xe3o se esque\xe7a do atributo de texto alternativo da imagem"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["Edi\xe7\xe3o visual"],"And Lists like this one of course :)":["E listas como esta :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blocos de layout, como bot\xf5es, imagens hero, separadores, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incorpora\xe7\xf5es, como YouTube, tweets ou outros conte\xfados de WordPress."],Galleries:["Galerias"],"Images & Videos":["Imagens e v\xeddeos"],"Text & Headings":["Texto e t\xedtulos"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["Uma imagem vale mais do que mil palavras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":["... como este, que est\xe1 alinhado \xe0 direita."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["O que est\xe1 a ler \xe9 um bloco de texto, o mais b\xe1sico de todos. O bloco de texto tem os seus pr\xf3prios controlos para ser movido livremente ao longo de todo o conte\xfado..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Bem-vindo ao editor Gutenberg"],"block name\x04More":["Mais"],"button to expand options\x04More":["Mais"],"Are you sure you want to unschedule this post?":["De certeza que quer cancelar o agendamento deste conte\xfado?"],"Alt Text (Alternative Text)":["Texto alternativo"],"Reusable Block":["Bloco reutiliz\xe1vel"],"Unique identifier for the object.":["Identificador \xfanico para o objecto."],"Untitled Reusable Block":["Bloco reutiliz\xe1vel sem t\xedtulo"],Small:["Pequeno"],"(%s: %s)":["(%s: %s)"],Reusable:["Reutiliz\xe1veis"],"(current %s: %s)":["(actual %s: %s)"],"Remove from Reusable Blocks":["Remover dos blocos reutiliz\xe1veis"],"Add to Reusable Blocks":["Adicionar aos blocos reutiliz\xe1veis"],"Keep as HTML":["Manter como HTML"],"Edit URL":["Editar URL"],"Color Settings":["Defini\xe7\xf5es da cor"],"The response is not a valid JSON response.":["A resposta n\xe3o \xe9 uma resposta JSON v\xe1lida."],"Editor publish":["\xc1rea de publica\xe7\xe3o do editor"],Muted:["Silenciado"],"Video Settings":["Defini\xe7\xf5es do v\xeddeo"],"recent comments":["coment\xe1rios recentes"],"Latest Comments":["Coment\xe1rios mais recentes"],"Display Excerpt":["Mostrar excerto"],"Display Date":["Mostrar data"],"Display Avatar":["Mostrar avatar"],"Latest Comments Settings":["Defini\xe7\xf5es dos coment\xe1rios mais recentes"],"Number of Comments":["N\xfamero de coment\xe1rios"],"Background Opacity":["Opacidade do fundo"],Auto:["Autom\xe1tico"],Preload:["Pr\xe9-carregar"],"Audio Settings":["Defini\xe7\xf5es do \xe1udio"],"Display a monthly archive of your posts.":["Mostre um arquivo mensal dos seus artigos."],"Display as Dropdown":["Mostrar como selector"],"Show Post Counts":["Mostrar n\xfamero de artigos"],"Archives Settings":["Defini\xe7\xf5es do arquivo"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Suporte"],"No comments to show.":["Nenhum coment\xe1rio para mostrar."],"%1$s on %2$s":["%1$s em %2$s"],"Select Post":["Seleccionar artigo"],"Select Week":["Seleccionar semana"],"Select Day":["Seleccionar dia"],"Select Month":["Seleccionar m\xeas"],"Select Year":["Seleccionar ano"],Archives:["Arquivo"],"Very dark gray":["Cinzento muito escuro"],"Cyan bluish gray":["Cinzento azulado ciano"],"Very light gray":["Cinzento muito claro"],"Vivid cyan blue":["Azul ciano vivo"],"Pale cyan blue":["Azul ciano p\xe1lido"],"Vivid green cyan":["Ciano verde vivo"],"Light green cyan":["Ciano verde claro"],"Luminous vivid amber":["\xc2mbar vivo luminoso"],"Luminous vivid orange":["Laranja vivo luminoso"],"Vivid red":["Vermelho vivo"],"Pale pink":["Rosa p\xe1lido"],"Inline image":["Imagem em linha"],"Available block types":["Tipos de blocos dispon\xedveis"],"Transform To:":["Transformar em:"],"Remove Block":["Remover bloco"],"Open publish panel":["Abrir painel de publica\xe7\xe3o"],Dots:["Pontos"],"Wide Line":["Linha grande"],Large:["Grande"],"Show download button":["Mostrar bot\xe3o de descarregar"],"Download button settings":["Defini\xe7\xf5es do bot\xe3o de descarregar"],"Link To":["Ligar a"],"Text link settings":["Defini\xe7\xf5es do texto da liga\xe7\xe3o"],pdf:["pdf"],document:["documento"],"Copy URL":["Copiar URL"],"Write file name\u2026":["Escreva o nome de um ficheiro\u2026"],"Edit file":["Editar ficheiro"],File:["Ficheiro"],"A single column within a columns block.":["Uma \xfanica coluna dentro de um bloco de colunas."],Column:["Coluna"],Outline:["Contorno"],Loop:["Loop"],Autoplay:["Reprodu\xe7\xe3o autom\xe1tica"],"Playback Controls":["Controlos de reprodu\xe7\xe3o"],"Close dialog":["Fechar janela"],"Sorry, this file type is not permitted for security reasons.":["Desculpe, este tipo de ficheiro n\xe3o \xe9 permitido por raz\xf5es de seguran\xe7a."],"Disable tips":["Desactivar dicas"],"Got it":["Compreendi"],"See next tip":["Ver dica seguinte"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Quando estiver pronto, submeta o seu trabalho para revis\xe3o, para que um editor o possa aprovar."],"Are you ready to submit for review?":["Est\xe1 pronto para submeter para revis\xe3o?"],"Replace image":["Substituir imagem"],"Remove image":["Remover imagem"],"Error while uploading file %s to the media library.":["Erro ao carregar o ficheiro %s para a biblioteca multim\xe9dia."],"This file exceeds the maximum upload size for this site.":["Este ficheiro excede o tamanho m\xe1ximo de carregamentos para este site."],"View the autosave":["Ver c\xf3pia autom\xe1tica"],"There is an autosave of this post that is more recent than the version below.":["Existe uma c\xf3pia autom\xe1tica deste artigo que \xe9 mais recente do que a vers\xe3o abaixo."],Autosaving:["A guardar c\xf3pia autom\xe1tica"],"Enter URL here\u2026":["Digite um URL aqui\u2026"],"Pin to toolbar":["Fixar na barra de ferramentas"],"Unpin from toolbar":["Desafixar da barra de ferramentas"],"Insert a table \u2014 perfect for sharing charts and data.":["Insira uma tabela - perfeito para partilhar gr\xe1ficos e dados."],"Fixed width table cells":["C\xe9lulas de tabela com largura fixa"],"Table Settings":["Defini\xe7\xf5es da tabela"],"Add text that respects your spacing and tabs, and also allows styling.":["Adicione texto que respeita o seu espa\xe7amento e separadores, e que tamb\xe9m permite estilos."],"Display a list of your most recent posts.":["Mostre uma lista dos seus artigos mais recentes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Adicione um bloco que mostra conte\xfado obtido de outros sites, como o Twitter, Instagram ou YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Adicione um bloco que mostra conte\xfado em m\xfaltiplas colunas, onde pode inserir qualquer tipo de bloco de conte\xfado."],"Error loading block: %s":["Erro ao carregar bloco: %s"],"Unknown error":["Erro desconhecido"],"Embed Handler":["Gestor de incorpora\xe7\xf5es"],"term\x04Remove %s":["Remover termo %s"],"Copy the permalink":["Copiar a liga\xe7\xe3o permanente"],"Permalink copied":["Liga\xe7\xe3o permanente copiada"],"Height in pixels":["Altura em p\xedxeis"],"Spacer Settings":["Defini\xe7\xf5es do espa\xe7ador"],Spacer:["Espa\xe7ador"],"Toggle to show a large initial letter.":["Active para aumentar o tamanho da letra inicial."],"Showing large initial letter.":["Letra inicial aumentada."],"Name:":["Nome:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Remover item"],"Color code: %s":["C\xf3digo de cor: %s"],"Skip to the selected block":["Ir para o bloco seleccionado"],"Publish\u2026":["Publicar\u2026"],"Schedule\u2026":["Agendar\u2026"],"Edit post permalink":["Editar liga\xe7\xe3o permanente do conte\xfado"],"Show Block Settings":["Mostrar defini\xe7\xf5es do bloco"],"Hide Block Settings":["Esconder defini\xe7\xf5es do bloco"],"Block settings closed":["Defini\xe7\xf5es do bloco fechadas"],"Close plugin":["Fechar plugin"],"Link settings":["Defini\xe7\xf5es da liga\xe7\xe3o"],Unlink:["Desfazer liga\xe7\xe3o"],"Page break":["Quebra de p\xe1gina"],pagination:["pagina\xe7\xe3o"],"next page":["p\xe1gina seguinte"],"Image Size":["Tamanho da imagem"],Height:["Altura"],Width:["Largura"],"Image Dimensions":["Dimens\xf5es da imagem"],"Thumbnails are not cropped.":["As miniaturas n\xe3o s\xe3o cortadas."],"Thumbnails are cropped to align.":["As miniaturas s\xe3o cortadas para ficarem alinhadas."],"Media Library":["Biblioteca multim\xe9dia"],Advanced:["Avan\xe7adas"],"Add item":["Adicionar item"],"Reset the template":["Repor o modelo"],"Keep it as is":["Manter como est\xe1"],"The content of your post doesn\u2019t match the template assigned to your post type.":["O conte\xfado n\xe3o corresponde ao modelo atribu\xeddo para o seu tipo de conte\xfado."],"Resetting the template may result in loss of content, do you want to continue?":["Ao repor o modelo poder\xe1 perder conte\xfados, quer continuar?"],"Document Statistics":["Estat\xedsticas do documento"],"is now scheduled. It will go live on":["foi agora agendado. Ser\xe1 publicado em"],Scheduled:["Agendado"],"Scheduling\u2026":["A agendar\u2026"],"Code editor selected":["Editor de c\xf3digo seleccionado"],"Visual editor selected":["Editor visual seleccionado"],Plugins:["Plugins"],"Custom Size":["Tamanho personalizado"],"Layout Elements":["Elementos de layout"],"term\x04%s removed":["Termo %s removido"],"term\x04%s added":["Termo %s adicionado"],"imperative verb\x04Preview":["Pr\xe9-visualizar"],"Block deleted.":["Bloco eliminado."],"Block updated.":["Bloco actualizado."],"Block created.":["Bloco criado."],"Trashing failed":["Falhou ao mover para o lixo"],"Updating failed.":["Falhou ao actualizar."],"Scheduling failed.":["Falhou ao agendar."],"Publishing failed.":["Falhou ao publicar."],"View Post":["Ver conte\xfado"],"You have unsaved changes. If you proceed, they will be lost.":["Tem altera\xe7\xf5es por guardar. Se continuar, ser\xe3o perdidas."],"Document Outline":["Estrutura do documento"],Paragraphs:["Par\xe1grafos"],Headings:["T\xedtulos"],Words:["Palavras"],"Content structure":["Estrutura do conte\xfado"],Public:["P\xfablico"],"Protected with a password you choose. Only those with the password can view this post.":["Protegido por uma senha escolhida por si. Apenas quem tiver a senha pode ver este conte\xfado."],"Password Protected":["Protegido por senha"],"Only visible to site admins and editors.":["Vis\xedvel apenas para administradores e editores do site."],Private:["Privado"],"Visible to everyone.":["Vis\xedvel para todos."],"Post Visibility":["Visibilidade do conte\xfado"],"Would you like to privately publish this post now?":["Gostaria de partilhar agora este conte\xfado em privado?"],"Use a secure password":["Usar uma senha segura"],"Create password":["Criar senha"],"Move to Trash":["Mover para o lixo"],"Parent Term":["Termo superior"],"Parent Category":["Categoria superior"],"Add new term":["Adicionar novo termo"],"Add new category":["Adicionar nova categoria"],Term:["Termo"],Tag:["Etiqueta"],"Add New Term":["Adicionar novo termo"],"Add New Tag":["Adicionar nova etiqueta"],"Switch to Draft":["Mudar para rascunho"],"Are you sure you want to unpublish this post?":["De certeza de que quer cancelar a publica\xe7\xe3o deste conte\xfado?"],Immediately:["Imediatamente"],"Save Draft":["Guardar rascunho"],Saving:["A guardar"],"Publish:":["Publicar:"],"Visibility:":["Visibilidade:"],"Are you ready to publish?":["Est\xe1 pronto para publicar?"],"Copy Link":["Copiar liga\xe7\xe3o"],"What\u2019s next?":["E agora?"],"is now live.":["foi agora publicado."],Published:["Publicado"],Schedule:["Agendar"],Update:["Actualizar"],"Submit for Review":["Submeter para revis\xe3o"],"Updating\u2026":["A actualizar\u2026"],"Publishing\u2026":["A publicar\u2026"],"Allow Pingbacks & Trackbacks":["Permitir pingbacks e trackbacks"],"Permalink:":["Liga\xe7\xe3o permanente:"],"Pending Review":["Pendente de revis\xe3o"],"%d Revision":["%d revis\xe3o","%d revis\xf5es"],"Suggestion:":["Sugest\xe3o:"],"Post Format":["Formato de artigo"],Chat:["Conversa"],Status:["Estado"],Standard:["Padr\xe3o"],Aside:["Aparte"],"Set Featured Image":["Definir imagem de destaque"],"Learn more about manual excerpts":["Saiba mais sobre excertos personalizados."],"Write an excerpt (optional)":["Escrever um excerto (opcional)"],"Allow Comments":["Permitir coment\xe1rios"],"Template:":["Modelo:"],"no parent":["sem superior"],"no title":["sem t\xedtulo"],Order:["Ordem"],"No blocks found.":["Nenhum bloco encontrado."],"%d result found.":["%d resultado encontrado.","%d resultados encontrados."],Saved:["Guardado"],Embeds:["Conte\xfados incorporados"],Blocks:["Blocos"],"Search for a block":["Pesquisar um bloco"],"Add block":["Adicionar bloco"],"Add %s":["Adicionar %s"],"Copy Error":["Erro ao copiar"],"Copy Post Text":["Copiar texto do conte\xfado"],"Attempt Recovery":["Tentar recupera\xe7\xe3o"],"The editor has encountered an unexpected error.":["O editor encontrou um erro inesperado."],Undo:["Anular"],Redo:["Refazer"],"(Multiple H1 headings are not recommended)":["(N\xe3o \xe9 recomendado utilizar m\xfaltiplos t\xedtulos H1)"],"(Your theme may already use a H1 for the post title)":["(O seu tema poder\xe1 j\xe1 estar a usar um H1 no t\xedtulo do conte\xfado)"],"(Incorrect heading level)":["(n\xedvel de t\xedtulo incorrecto)"],"(Empty heading)":["(t\xedtulo vazio)"],"Block Styles":["Estilos de bloco"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["De certeza que quer remover este bloco reutiliz\xe1vel?\n\nSer\xe1 removido de todos os artigos ou p\xe1ginas onde est\xe1 a ser utilizado."],"Convert to Regular Block":["Converter para bloco normal"],"More options":["Mais op\xe7\xf5es"],"Edit visually":["Editar visualmente"],Duplicate:["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Os blocos n\xe3o podem ser movidos para baixo porque j\xe1 est\xe3o no limite inferior"],"Blocks cannot be moved up as they are already at the top":["Os blocos n\xe3o podem ser movidos para cima porque j\xe1 est\xe3o no limite superior"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["O bloco %s \xe9 o \xfanico bloco existente, n\xe3o pode ser movido"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Converter para blocos"],"Block: %s":["Bloco: %s"],"This block has encountered an error and cannot be previewed.":["Este bloco encontrou um erro e n\xe3o pode ser pr\xe9-visualizado."],"No block selected.":["Nenhum bloco seleccionado."],"Transform into:":["Transformar em:"],Remove:["Remover"],"Find original":["Encontrar original"],"Copy All Content":["Copiar todo o conte\xfado"],"Copied!":["Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Est\xe3o agora dispon\xedveis op\xe7\xf5es adicionais na barra lateral de op\xe7\xf5es do editor de blocos"],Visibility:["Visibilidade"],"Status & Visibility":["Estado e visibilidade"],"Page Attributes":["Atributos da p\xe1gina"],Block:["Bloco"],Document:["Documento"],"Featured Image":["Imagem de destaque"],"Close settings":["Fechar defini\xe7\xf5es"],"Editor content":["Conte\xfado do editor"],Tools:["Ferramentas"],Editor:["Editor"],"Code Editor":["Editor de c\xf3digo"],"Visual Editor":["Editor visual"],"Editor top bar":["Barra superior do editor"],Settings:["Op\xe7\xf5es"],Reset:["Repor"],"Dismiss this notice":["Ignorar este aviso"],"Item removed.":["Item removido."],"Item added.":["Item adicionado."],"Drop files to upload":["Largue os ficheiros a carregar"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Ocorreu um erro desconhecido."],"No results.":["Sem resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontardo, use as teclas de seta para cima e para baixo para navegar.","%d resultados encontardos, use as teclas de seta para cima e para baixo para navegar."],"(no title)":["(sem t\xedtulo)"],URL:["URL"],Submit:["Submeter"],Close:["Fechar"],"Insert link":["Inserir liga\xe7\xe3o"],"Edit link":["Editar liga\xe7\xe3o"],Link:["Liga\xe7\xe3o"],Strikethrough:["Rasurado"],Italic:["It\xe1lico"],Bold:["Negrito"],"Remove link":["Remover liga\xe7\xe3o"],"Number of items":["N\xfamero de itens"],All:["Tudo"],Category:["Categoria"],"Z \u2192 A":["Z \u27f6 A"],"A \u2192 Z":["A \u27f6 Z"],"Oldest to Newest":["Do mais antigo para o mais recente"],"Newest to Oldest":["Do mais recente para o mais antigo"],"Order by":["Ordernar por"],Select:["Seleccionar"],"Select or Upload Media":["Seleccionar ou carregar multim\xe9dia"],Video:["V\xeddeo"],"Edit video":["Editar v\xeddeo"],"Write\u2026":["Escreva\u2026"],poetry:["poesia"],Verse:["Verso"],"New Column":["Nova coluna"],"Delete Column":["Eliminar coluna"],"Add Column After":["Adicionar coluna depois"],"Add Column Before":["Adicionar coluna antes"],"Delete Row":["Eliminar linha"],"Add Row After":["Adicionar linha depois"],"Add Row Before":["Adicionar linha antes"],"Edit table":["Editar tabela"],Table:["Tabela"],"Write subheading\u2026":["Escreva um subt\xedtulo\u2026"],"Write shortcode here\u2026":["Escreva aqui um shorcode\u2026"],Shortcode:["Shortcode"],divider:["divis\xf3ria"],"horizontal-line":["linha-horizontal"],Separator:["Separador"],Quote:["Cita\xe7\xe3o"],"Write citation\u2026":["Escreva uma cita\xe7\xe3o\u2026"],"Write quote\u2026":["Escreva uma cita\xe7\xe3o\u2026"],Pullquote:["Cita\xe7\xe3o"],"Write preformatted text\u2026":["Escreva um texto pr\xe9-formatado\u2026"],Preformatted:["Pr\xe9-formatado"],text:["texto"],Paragraph:["Par\xe1grafo"],"Font Size":["Tamanho da fonte"],"Drop Cap":["Letra capitular"],"Text Settings":["Defini\xe7\xf5es do texto"],"Read more":["Ler mais"],"Write list\u2026":["Escreva uma lista\u2026"],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista de marcadores"],"Indent list item":["Aumentar indenta\xe7\xe3o do elemento da lista"],"Outdent list item":["Reduzir indenta\xe7\xe3o do elemento da lista "],"Convert to ordered list":["Converter para lista ordenada"],"Convert to unordered list":["Converter para lista n\xe3o ordenada"],List:["Lista"],"recent posts":["artigos recentes"],"No posts found.":["N\xe3o foram encontrados artigos."],"Latest Posts":["Artigos mais recentes"],"Display post date":["Mostrar data do artigo"],"Grid view":["Vista de grelha"],"List view":["Vista de lista"],photo:["fotografia"],"Image Settings":["Defini\xe7\xf5es da imagem"],Image:["Imagem"],Preview:["Pr\xe9-visualizar"],embed:["incorporar"],"Custom HTML":["HTML personalizado"],subtitle:["subt\xedtulo"],title:["t\xedtulo"],Heading:["T\xedtulo"],"Write heading\u2026":["Escreva um t\xedtulo\u2026"],"Heading %d":["T\xedtulo %d"],Level:["N\xedvel"],"Heading Settings":["Defini\xe7\xf5es do t\xedtulo"],photos:["fotografias"],images:["imagens"],"Remove Image":["Remover imagem"],None:["Nenhum"],"Media File":["Ficheiro multim\xe9dia"],"Attachment Page":["P\xe1gina de anexo"],"Crop Images":["Cortar imagens"],"Gallery Settings":["Op\xe7\xf5es da galeria"],Gallery:["Galeria"],Classic:["Cl\xe1ssico"],video:["v\xeddeo"],audio:["\xe1udio"],music:["m\xfasica"],image:["imagem"],blog:["blog"],post:["artigo"],"Embedded content from %s":["Incorporar conte\xfado de %s"],"Enter URL to embed here\u2026":["Insira aqui o URL a incorporar\u2026"],"%s URL":["URL de %s"],"Embedding\u2026":["A incorporar\u2026"],"Write title\u2026":["Escreva um t\xedtulo\u2026"],"Fixed Background":["Fundo fixo"],"Edit image":["Editar imagem"],Columns:["Colunas"],Experiments:[],Code:["C\xf3digo"],"Write code\u2026":["Escreva algum c\xf3digo\u2026"],Categories:["Categorias"],"Show Hierarchy":["Mostrar hierarquia"],"Show post counts":["Mostrar n\xfamero de artigos"],"Categories Settings":["Defini\xe7\xf5es das categorias"],"Add text\u2026":["Adicionar texto\u2026"],Button:["Bot\xe3o"],Apply:["Aplicar"],"Text Color":["Cor do texto"],"Background Color":["Cor de fundo"],"Block has been deleted or is unavailable.":["O bloco foi eliminado ou est\xe1 indispon\xedvel."],"Reusable Blocks":["Blocos reutiliz\xe1veis"],Cancel:["Cancelar"],Edit:["Editar"],"Edit audio":["Editar \xe1udio"],"Write caption\u2026":["Escreva uma legenda\u2026"],"Use URL":["Usar URL"],Audio:["\xc1udio"],Upload:["Carregar"],"Additional CSS Class(es)":["Classes adicionais de CSS"],"HTML Anchor":["\xc2ncora HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combina\xe7\xe3o de cores poder\xe1 ser de dif\xedcil leitura. Tente usar uma cor de fundo mais clara e uma cor de texto mais escura."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combina\xe7\xe3o de cores poder\xe1 ser de dif\xedcil leitura. Tente usar uma cor de fundo mais escura e uma cor de texto mais clara."],Clear:["Limpar"],"Custom color picker":["Selector de cor personalizada"],"Color: %s":["Cor: %s"],"Full Width":["Toda a largura"],"Wide Width":[],Widgets:["Widgets"],Formatting:["Formata\xe7\xe3o"],"Common Blocks":["Blocos comuns"],"Align Right":["Alinhar \xe0 direita"],"Align Center":["Alinhar ao centro"],"Align Left":["Alinhar \xe0 esquerda"],"Printing since 1440. This is the development plugin for the new block editor in core.":["A publicar desde 1440. Este \xe9 o plugin do desenvolvimento do novo editor de blocos do core."],"Add title":["Adicionar t\xedtulo"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["O modo de desenvolvimento do Gutenberg requer a cria\xe7\xe3o de ficheiros. Execute npm install para instalar depend\xeancias, npm run build para criar os ficheiros, ou npm run dev para criar os ficheiros e acompanhar altera\xe7\xf5es. Leia o ficheiro contributing para mais informa\xe7\xf5es."],Author:["Autor"],Slug:["Slug"],Discussion:["Discuss\xe3o"],"Custom Fields":["Campos personalizados"],Excerpt:["Excerto"],Publish:["Publicar"],Metadata:["Metadados"],Save:["Guardar"],Documentation:["Documenta\xe7\xe3o"],"Select Category":["Seleccionar categoria"],"(Untitled)":["(Sem t\xedtulo)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["O Gutenberg requer o WordPress %s ou superior para funcionar correctamente. Por favor actualize o WordPress antes de activar o Gutenberg."],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demonstra\xe7\xe3o"],"%s ago":["H\xe1 %s"],"Block style name must be a string.":["O nome do estilo do bloco tem de ser uma string."]}},858,[]); +__d(function(e,o,a,t,r,i,s){r.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":["%1$d bloco est\xe1 desativado.","%1$d blocos est\xe3o desativados."],"Reverse List Numbering":[],"Start Value":["Valor de in\xedcio"],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":["M\xe1scara circular"],"Default Style":["Estilo padr\xe3o"],"Not set":["N\xe3o definido"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["Navegue pela biblioteca para saber mais sobre o que cada bloco faz."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Existem blocos dispon\xedveis para todos os tipos de conte\xfado: texto, t\xedtulos, imagens, listas, v\xeddeos, tabelas e muito mais."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":["Vers\xe3o do formato de bloco de conte\xfado usado pelo objeto."],"HTML content for the object, transformed for display.":["Conte\xfado HTML do objeto, transformado para exibi\xe7\xe3o."],"Content for the object, as it exists in the database.":["Conte\xfado para o objeto, como ele existe no banco de dados."],"The content for the object.":["O conte\xfado para o objeto."],"Change column alignment":["Mudar alinhamento da coluna"],"Align Column Right":["Alinhar coluna \xe0 direita"],"Align Column Center":["Alinhar coluna ao centro"],"Align Column Left":["Alinhar coluna \xe0 esquerda"],Color:["Cor"],"Vivid purple":["Roxo intenso"],"Disable & Reload":["Desativar e recarregar"],"Enable & Reload":["Ativar e recarregar"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Para realizar esta mudan\xe7a \xe9 preciso recarregar a p\xe1gina. Tenha certeza de que salvou seu conte\xfado antes de recarregar."],"Display these keyboard shortcuts.":["Exibir estes atalhos de teclado."],"Experiments Settings":["Configura\xe7\xf5es experimentais"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["O Gutenberg tem alguns recursos experimentais que voc\xea pode ativar. Simplesmente selecione quais voc\xea gostaria de usar. Estes recursos podem mudar, portanto seu uso em produ\xe7\xe3o n\xe3o \xe9 recomendado."],"Enable Widgets Screen and Legacy Widget Block":["Ativar tela de widgets e bloco de widget legado"],"Experiment settings":["Configura\xe7\xf5es experimental"],"Block name name must be a string.":["O nome do bloco deve ser uma string."],Custom:["Personalizado"],Draft:["Rascunho"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["O bloco \"%1$s\" n\xe3o cont\xe9m um estilo chamado \"%2$s\"."],"Learn more about anchors":["Saiba mais sobre \xe2ncoras"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Digite uma ou duas palavras, sem espa\xe7os, para criar um endere\xe7o \xfanico para este t\xedtulo, chamado \"\xe2ncora\". Ent\xe3o, voc\xea poder\xe1 apontar diretamente para esta se\xe7\xe3o da sua p\xe1gina."],"Widget Blocks (Experimental)":["Blocos de widget (experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Envie um arquivo de v\xeddeo, escolha um da sua biblioteca de m\xeddia ou adicione um URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Envie uma imagem, escolha uma da sua biblioteca de m\xeddia ou adicione um URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Envie um arquivo de \xe1udio, escolha um da sua biblioteca de m\xeddia ou adicione um URL."],"Upload a media file or pick one from your media library.":["Envie um arquivo de m\xeddia ou escolha um da sua biblioteca de m\xeddia."],Skip:["Pular"],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":["O que \xe9 isso?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["N\xe3o permita que mecanismos de pesquisa sigam este link."],"Provide more context about where the link goes.":["Adicione mais contexto sobre o endere\xe7o do link."],"Title Attribute":["Atributo do t\xedtulo"],"SEO Settings":["Configura\xe7\xf5es de SEO"],Description:["Descri\xe7\xe3o"],"Open in new tab":["Abrir em uma nova aba"],links:["links"],navigation:["navega\xe7\xe3o"],menu:["menu"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["Envie um arquivo ou escolha um da sua biblioteca de m\xeddia."],"Learn more about embeds":["Saiba mais sobre c\xf3digos incorporados"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Cole um link para o conte\xfado que voc\xea deseja exibir no seu site."],"Upload an image or video file, or pick one from your media library.":["Envie uma imagem, um arquivo de v\xeddeo ou escolha um da sua biblioteca de m\xeddia."],"Three columns; wide center column":["Tr\xeas colunas com a do meio maior"],"Three columns; equal split":["Tr\xeas colunas iguais"],"Two columns; two-thirds, one-third split":["Duas colunas divididas em dois ter\xe7os e um ter\xe7o"],"Two columns; one-third, two-thirds split":["Duas colunas divididas em um ter\xe7o e dois ter\xe7os"],"Two columns; equal split":["Duas colunas iguais"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Seu site ainda n\xe3o tem nenhum termo para %s, portanto n\xe3o h\xe1 o que exibir aqui por enquanto."],"More tools & options":["Mais ferramentas e op\xe7\xf5es"],"Create Table":["Criar tabela"],"Insert a table for sharing data.":["Insira uma tabela para compartilhar dados."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Desagrupar"],"verb\x04Group":["Agrupar"],"Separate with commas or the Enter key.":["Separe com v\xedrgulas ou com a tecla Enter."],"Separate with commas, spaces, or the Enter key.":["Separe com v\xedrgulas, espa\xe7os, ou a tecla Enter."],"Separate multiple classes with spaces.":["Separe v\xe1rias classes com espa\xe7os."],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":["Sem permiss\xe3o para editar barras laterais."],"Sorry, you are not allowed to read sidebars.":["Sem permiss\xe3o para ver barras laterais."],"The sidebar\u2019s ID.":["O ID da barra lateral."],"Displays a set of blocks":["Exibe um conjunto de blocos"],"Blocks Area":["\xc1rea de blocos"],"Block rendered as empty.":["Bloco exibido como vazio."],"Inline Code":["C\xf3digo em linha"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Aten\xe7\xe3o: A reprodu\xe7\xe3o autom\xe1tica de v\xeddeos pode causar problemas de usabilidade para alguns visitantes."],"Footer section":["Se\xe7\xe3o do rodap\xe9"],"Header section":["Se\xe7\xe3o do cabe\xe7alho"],"Sorting and Filtering":["Ordem e filtros"],"Post Meta Settings":["Configura\xe7\xf5es de metadados do post"],"Post Content":["Conte\xfado do post"],"Post Content Settings":["Configura\xe7\xf5es do conte\xfado do post"],"Percentage width":["Porcentagem da largura"],"Column Settings":["Configura\xe7\xf5es da coluna"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Aten\xe7\xe3o: A reprodu\xe7\xe3o autom\xe1tica de arquivos de \xe1udio pode causar problemas de usabilidade para alguns visitantes."],"Block area updated.":["\xc1rea de blocos atualizada."],"Block area scheduled.":["\xc1rea de blocos agendada."],"Block area published.":["\xc1rea de blocos publicada."],"Block areas list":["Lista de \xe1reas de blocos"],"Block areas list navigation":["Navega\xe7\xe3o da lista de \xe1reas de blocos"],"Filter block areas list":["Filtrar lista de \xe1reas de blocos"],"No block area found.":["Nenhuma \xe1rea de blocos encontrada."],"Search Block Areas":["Pesquisar \xe1reas de blocos"],"All Block Areas":["Todas as \xe1reas de blocos"],"View Block Area":["Ver \xe1rea de blocos"],"Edit Block Area":["Editar \xe1rea de blocos"],"New Block Area":["Nova \xe1rea de blocos"],"Add New Block Area":["Adicionar nova \xe1rea de blocos"],"admin menu\x04Block Areas":["\xc1reas de blocos"],"post type singular name\x04Block Area (Experimental)":["\xc1rea de blocos (Experimental)"],"post type general name\x04Block Area (Experimental)":["\xc1rea de blocos (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Tipo de post personalizado e experimental que armazena \xe1reas de blocos definidas pelos temas."],"Widgets screen content":["Conte\xfado da tela de widgets"],"Widgets advanced settings":["Configura\xe7\xf5es avan\xe7adas dos widgets"],"(experimental)":["(experimental)"],"Block Areas":["\xc1reas de blocos"],"Widgets screen top bar":["Barra superior da tela de widgets"],"This color combination may be hard for people to read.":["Esta combina\xe7\xe3o de cores pode dificultar a leitura."],"There is no poster image currently selected":["Nenhuma imagem do poster selecionada no momento"],"The current poster image url is %s":["O URL da imagem do poster \xe9 %s"],section:["se\xe7\xe3o"],row:["linha"],wrapper:["inv\xf3lucro"],container:["cont\xeainer"],"A block that groups other blocks.":["Um bloco que agrupa outros blocos."],Group:["Grupo"],"Crop image to fill entire column":["Recortar a imagem para preencher toda a coluna"],"Play inline":["Reproduzir sem abrir em tela cheia"],"Leave empty if the image is purely decorative.":["Deixe vazio se a imagem for apenas decorativa."],"Describe the purpose of the image":["Descreva o prop\xf3sito da imagem"],"Add a block":["Adicionar um bloco"],"Block vertical alignment setting label\x04Change vertical alignment":["Mudar alinhamento vertical"],"Block vertical alignment setting\x04Vertically Align Bottom":["Alinhar verticalmente embaixo"],"Block vertical alignment setting\x04Vertically Align Middle":["Alinhar verticalmente no meio"],"Replace Image":["Substituir imagem"],"Block vertical alignment setting\x04Vertically Align Top":["Alinhar verticalmente em cima"],"Display a legacy widget.":["Exibir um widget legado."],"Legacy Widget (Experimental)":["Widget legado (Experimental)"],"Change widget":["Mudar widget"],"Legacy Widget":["Widget legado"],"You don't have permissions to use widgets on this site.":["Sem permiss\xe3o para usar widgets neste site."],"Select a legacy widget to display:":["Selecione um widget legado para exibir:"],"There are no widgets available.":["N\xe3o h\xe1 widgets dispon\xedveis."],"Change block type or style":["Mude o tipo ou o estilo do bloco"],"keyboard key\x04Space":["Espa\xe7o"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":[],"Search Terms":["Pesquisar termos"],"Exit the Editor":["Sair do editor"],"Block Manager":["Gerenciador de blocos"],"Class name of the widget.":["Nome da classe do widget."],"Sorry, you are not allowed to access widgets on this site.":["Sem permiss\xe3o para acessar widgets neste site."],"Widgets (beta)":["Widgets (beta)"],link:["link"],"Embedded content from %s can't be previewed in the editor.":["O conte\xfado incorporado de %s n\xe3o pode ser pr\xe9-visualizado no editor."],"Custom Color":["Cor personalizada"],"Prompt visitors to take action with a button-style link.":["Solicite que os visitantes executem uma a\xe7\xe3o com um link no estilo de bot\xe3o."],"Stick to the top of the blog":["Fixar no topo do blog"],"Read about permalinks":["Leia mais sobre links permanentes"],"The last part of the URL.":[],"URL Slug":["Slug do URL"],"A cloud of your most used tags.":["Uma nuvem com as tags mais usadas."],"Tag Cloud":["Nuvem de tags"],Taxonomy:["Taxonomia"],"Tag Cloud Settings":["Configura\xe7\xf5es da nuvem de tags"],"- Select -":["- Selecionar -"],Default:["Padr\xe3o"],find:["busca"],"Help visitors find your content.":["Ajude os visitantes a encontrar seu conte\xfado."],Search:["Pesquisar"],"Add button text\u2026":["Adicione o texto do bot\xe3o..."],"Button text":["Texto do bot\xe3o"],"Optional placeholder\u2026":["Texto de marca\xe7\xe3o opcional\u2026"],"Optional placeholder text":["Texto de marca\xe7\xe3o opcional"],"Add label\u2026":["Adicionar etiqueta\u2026"],"Label text":["Texto da etiqueta"],"image %1$d of %2$d in gallery":["imagem %1$d de %2$d na galeria"],archive:["arquivo"],posts:["posts"],"A calendar of your site\u2019s posts.":["Um calend\xe1rio com os posts do seu site."],Calendar:["Calend\xe1rio"],by:["por"],"An error has occurred, which probably means the feed is down. Try again later.":["Ocorreu um erro, provavelmente porque o feed n\xe3o est\xe1 dispon\xedvel no momento. Tente mais tarde."],"RSS Error:":["Erro de RSS:"],"block style\x04Default":["Padr\xe3o"],"Fullscreen mode deactivated":["Modo de tela cheia desativado"],"Fullscreen mode activated":["Modo de tela cheia ativado"],"Spotlight mode deactivated":["Modo sem distra\xe7\xf5es desativado"],"Spotlight mode activated":["Modo sem distra\xe7\xf5es ativado"],"Top toolbar deactivated":["Barra de ferramentas superior desativada"],"Top toolbar activated":["Barra de ferramentas superior ativada"],Back:["Voltar"],"Feature activated":["Recurso ativado"],"Feature deactivated":["Recurso desativado"],"Vertical Pos.":["Pos. vertical"],"Horizontal Pos.":["Pos. horizontal"],feed:["feed"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Exibir posts a partir de qualquer feed RSS ou Atom."],RSS:["RSS"],"Max number of words in excerpt":["N\xfamero m\xe1ximo de palavras no resumo"],"Display excerpt":["Exibir resumo"],"Display date":["Exibir data"],"Display author":["Exibir autor"],"RSS Settings":["Configura\xe7\xf5es de RSS"],"Edit RSS URL":["Editar URL do RSS"],"Content before this block will be shown in the excerpt on your archives page.":["O conte\xfado antes deste bloco ser\xe1 usado como resumo nas suas p\xe1ginas de arquivo."],"Hide the excerpt on the full content page":["Ocultar o resumo na p\xe1gina completa do conte\xfado"],"The excerpt is visible.":["O resumo est\xe1 vis\xedvel."],"The excerpt is hidden.":["O resumo est\xe1 oculto."],"Sorry, this content could not be embedded.":["N\xe3o foi poss\xedvel incorporar o conte\xfado."],"Embed Amazon Kindle content.":["Incorpore conte\xfado do Amazon Kindle."],ebook:["e-book"],"Embed Crowdsignal (formerly Polldaddy) content.":["Incorpore conte\xfado do Crowdsignal (anteriormente conhecido como Polldaddy)."],"Focal Point Picker":["Seletor de ponto focal"],Underline:["Sublinhado"],"Attempt Block Recovery":["Tentar restaurar o bloco"],"Word count type. Do not translate!\x04words":["palavras"],"content placeholder\x04Content\u2026":["Conte\xfado..."],"button label\x04Convert to link":["Converter para link"],"button label\x04Try again":["Tente novamente"],"Editor tips":["Dicas de edi\xe7\xe3o"],"Block (selected)":["Bloco (selecionado)"],"Document (selected)":["Documento (selecione)"],"%d word":["%d Palavra","%d Palavras"],"Top Toolbar":["Barra de ferramentas superior "],"Link Rel":["Link rel"],"Link CSS Class":["Classe CSS do link"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Crie conte\xfado e salve-o para voc\xea e outros colaboradores o reutilizarem em seu site. Atualize o bloco e as altera\xe7\xf5es ser\xe3o aplicadas em todos os lugares em que ele \xe9 usado."],"To edit the featured image, you need permission to upload media.":["Para editar a imagem em destaque, voc\xea precisa de permiss\xe3o para enviar m\xeddia."],"To edit this block, you need permission to upload media.":["Para editar este bloco, voc\xea precisa de permiss\xe3o para enviar m\xeddia."],"(selected block)":["(bloco selecionado)"],"Block tools":["Ferramentas de bloco"],Permalink:["Link permanente"],"This image has an empty alt attribute":["Esta imagem possu\xed um atributo alt vazio"],"This image has an empty alt attribute; its file name is %s":["Esta imagem possu\xed um atributo alt vazio; O nome do arquivo \xe9 %s"],"Block area reverted to draft.":["\xc1rea de bloco revertida para rascunho."],"Block area published privately.":["Bloco publicado em modo privado."],"No block areas found in Trash.":["Nenhum bloco encontrado na lixeira."],"Block\x04Add New":["Adicionar novo"],"add new on admin bar\x04Block Area":["\xc1rea de bloco"],"Link inserted.":["Link inserido."],"Warning: the link has been inserted but may have errors. Please test it.":["Aten\xe7\xe3o: o link foi inserido mas pode conter erros. Fa\xe7a um teste."],"%s block selected.":["%s bloco selecionado.","%s blocos selecionados."],Thumbnail:["Miniatura"],"Full Size":["Tamanho completo"],"Link selected.":["Link selecionado."],"Start writing with text or HTML":["Iniciar escrevendo como texto ou HTML"],"Type text or HTML":["Digite texto ou HTML"],"Block icon":["\xcdcone de bloco"],"Align Text Right":["Alinhar texto \xe0 direita"],"Align Text Center":["Alinhar texto ao centro"],"Align Text Left":["Alinhar texto \xe0 esquerda"],"Start writing or type / to choose a block":["Comece a escrever ou digite / para escolher um bloco"],"Empty block; start writing or type forward slash to choose a block":["Bloco vazio; comece a escrever ou digite / para escolher um bloco."],"Paragraph block":["Bloco de par\xe1grafo"],"Page Break":["Quebra de p\xe1gina"],"Stack on mobile":["Empilhar nos dispositivos m\xf3veis"],Annotation:["Anota\xe7\xe3o"],"Drag images, upload new ones or select files from your library.":["Arraste imagens, envie novas ou selecione arquivos da sua biblioteca."],"blocks\x04Most Used":["Mais usados"],"imperative verb\x04Resolve":["Resolver"],"font size name\x04Huge":["Enorme"],"font size name\x04Large":["Grande"],"font size name\x04Medium":["M\xe9dio"],"font size name\x04Small":["Pequeno"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Importar"],"button label\x04Download":["Baixar"],"button label\x04Embed":["Incorporar"],"block title\x04Embed":["Incorporar"],"block title\x04Classic":["Cl\xe1ssico"],"block style\x04Large":["Grande"],"%s (opens in a new tab)":["%s (abre em uma nova aba)"],"Link edited.":["Link editado."],"Link removed.":["Link removido."],media:["m\xeddia"],"Double-check your settings before publishing.":["Confira suas configura\xe7\xf5es antes the publicar."],"Generating preview\u2026":["Gerando pr\xe9-visualiza\xe7\xe3o..."],"Edit or update the image":["Editar ou atualizar a imagem"],Media:["M\xeddia"],"Navigate to the nearest toolbar.":["Navegue para a caixa de ferramentas mais pr\xf3xima."],"Document tools":["Ferramentas do documento"],"Document and block tools":["Ferramentas do documento e bloco"],"Embed a video from your media library or upload a new one.":["Incorpore um video da sua biblioteca de m\xeddias ou envie um novo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Escreva poesia. Use um formato de espa\xe7amento especial. Ou cite letras de m\xfasicas."],"Add white space between blocks and customize its height.":["Adicionar espa\xe7o em branco entre blocos e personalizar sua altura."],"Insert additional custom elements with a WordPress shortcode.":["Adicione elementos personalizados com um shortcode do WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crie quebras entre ideias ou se\xe7\xf5es com um separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["D\xea \xeanfase visual ao texto de cita\xe7\xe3o. \"Ao citarmos outros, n\xf3s nos mencionamos.\" - Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["D\xea uma \xeanfase visual especial a uma cita\xe7\xe3o do seu texto."],"Start with the building block of all narrative.":["Comece com o bloco fundamental de toda a narrativa."],"Separate your content into a multi-page experience.":["Separe seu conte\xfado em uma experi\xeancia multip\xe1gina."],"Set media and words side-by-side for a richer layout.":["Coloque m\xeddia e texto lado a lado para um visual mais rico."],"Media & Text Settings":["Configura\xe7\xf5es m\xeddia & texto"],"Create a bulleted or numbered list.":["Crie uma lista com marcadores ou numerada."],"Display a list of your most recent comments.":["Exibe uma lista dos seus coment\xe1rios mais recentes."],"Insert an image to make a visual statement.":["Insira uma imagem para ilustrar suas ideias."],"Add custom HTML code and preview it as you edit.":["Adicione um c\xf3digo HTML personalizado e visualize-o \xe0 medida que voc\xea edita."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduza novas se\xe7\xf5es e organize seu conte\xfado para ajudar os visitantes (e mecanismos de pesquisa) a entenderem a estrutura do seu conte\xfado."],"Display multiple images in a rich gallery.":["Exiba m\xfaltiplas imagens em formato de galeria."],"Add a link to a downloadable file.":["Adicione um link para baixar um arquivo."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incorporar v\xeddeos, imagens, tweets, \xe1udio, e outros conte\xfados de links externos"],"Resize for smaller devices":["Redimensionar para dispositivos menores"],"This embed may not preserve its aspect ratio when the browser is resized.":["Essa incorpora\xe7\xe3o n\xe3o preservar\xe1 sua propor\xe7\xe3o quando o navegador for redimensionado."],"This embed will preserve its aspect ratio when the browser is resized.":["Essa incorpora\xe7\xe3o preservar\xe1 sua propor\xe7\xe3o quando o navegador for redimensionado."],"Embed an Animoto video.":["Incorporar um v\xeddeo do Animoto."],"Embed a Vimeo video.":["Incorporar um v\xeddeo do Vimeo."],"Embed Flickr content.":["Incorporar um conte\xfado do Flickr."],"Embed Spotify content.":["Incorporar conte\xfado do Spotify."],"Embed SoundCloud content.":["Incorporar conte\xfado do SoundCloud."],"Embed a WordPress post.":["Incorporar um post do WordPress."],"Embed an Instagram post.":["Incorporar um post do Instagram."],"Embed a Facebook post.":["Incorporar um post do Facebook."],"Embed a WordPress.tv video.":["Incorporar um v\xeddeo do WordPress.tv."],"Embed a VideoPress video.":["Incorporar um v\xeddeo do VideoPress."],"Embed a Tumblr post.":["Incorporar um post do Tumblr."],"Embed a TED video.":["Incorporar um v\xeddeo TED."],"Embed Speaker Deck content.":["Incorporar conte\xfado Speaker Deck."],"Embed a YouTube video.":["Incorporar um v\xeddeo do YouTube."],"Embed SmugMug content.":["Incorporar conte\xfado SmugMug."],"Embed Slideshare content.":["Incorporar conte\xfado Slideshare."],"Embed Scribd content.":["Incorporar conte\xfado Scribd."],"Embed Screencast content.":["Incorporar conte\xfado Screencast."],"Embed ReverbNation content.":["Incorporar conte\xfado ReverbNation."],"Embed a Reddit thread.":["Incorpore uma discuss\xe3o do Reddit."],"Embed Polldaddy content.":["Incorporar conte\xfado Polldaddy."],"Embed Mixcloud content.":["Incorporar conte\xfado Mixcloud."],"Embed a tweet.":["Incorporar um tweet."],"Embed Meetup.com content.":["Incorporar conte\xfado Meetup.com."],"Embed Kickstarter content.":["Incorpore conte\xfado do Kickstarter."],"Embed Issuu content.":["Incorporar conte\xfado do Issuu."],"Embed Imgur content.":["Incorporar conte\xfado do Imgur."],"Embed Hulu content.":["Incorporar conte\xfado do Hulu."],"Embed a Dailymotion video.":["Incorporar um v\xeddeo do Dailymotion."],"Embed CollegeHumor content.":["Incorpore conte\xfado do CollegeHumor."],"Embed Cloudup content.":["Incorporar conte\xfado do Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Adicionar uma imagem ou v\xeddeo com um texto sobreposto \u2014 \xf3timo para cabe\xe7alhos."],"Display code snippets that respect your spacing and tabs.":["Exiba trechos de c\xf3digo respeitando seu espa\xe7amento e tabula\xe7\xe3o."],"Use the classic WordPress editor.":["Use o editor cl\xe1ssico do WordPress."],"Display a list of all categories.":["Exibe uma lista de todas as categorias."],"Embed a simple audio player.":["Incorporar o reprodutor de \xe1udio simples."],"noun\x04View":["Visualiza\xe7\xe3o"],"editor button\x04Left to right":["Esquerda para a direita"],"Save as Pending":["Salvar como pendente"],"%s address":["%s endere\xe7o"],"Paste or type URL":["Colar ou digitar URL"],"Insert from URL":["Inserir a partir de um URL"],"Block Navigator":[],Styles:["Estilos"],"Advanced Panels":["Pain\xe9is avan\xe7ados"],"Document Panels":["Pain\xe9is do documento"],General:["Geral"],"Open the block navigation menu.":["Abre o menu de navega\xe7\xe3o entre blocos."],"Work without distraction":["Trabalhe sem distra\xe7\xe3o"],"Focus on one block at a time":["Concentre-se em um bloco de cada vez"],"Access all block and document tools in a single place":["Acesse todas as ferramentas de blocos e documento em um s\xf3 lugar."],Options:["Op\xe7\xf5es"],"(opens in a new tab)":["(abrir em uma nova aba)"],Minutes:["Minutos"],Hours:["Horas"],Time:["Tempo"],Year:["Ano"],Day:["Dia"],December:["Dezembro"],November:["Novembro"],October:["Outubro"],September:["Setembro"],August:["Agosto"],July:["Julho"],June:["Junho"],May:["maio"],April:["Abril"],March:["Mar\xe7o"],February:["Fevereiro"],January:["Janeiro"],Month:["M\xeas"],Date:["Data"],"Go to the first (home) or last (end) day of a week.":["V\xe1 para o primeiro [Home] ou \xfaltimo [End] dia de uma semana."],"Home/End":["In\xedcio/fim"],"Home and End":["In\xedcio e fim"],"Move backward (PgUp) or forward (PgDn) by one month.":["Navegue para o m\xeas anterior [PageUp] ou o m\xeas seguinte [PageDown]."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["[PageUp] e [PageDown]"],"Move backward (up) or forward (down) by one week.":["Navegue para a semana anterior (cima) ou para a seguinte (baixo)."],"Up and Down Arrows":["Setas para cima e para baixo [↑] [↓]"],"Move backward (left) or forward (right) by one day.":["Navegue para o dia anterior (esquerda) ou posterior (direita)."],"Left and Right Arrows":["Setas para a esquerda [←] e para a direita [→]"],"Select the date in focus.":["Seleciona a data em foco."],"Navigating with a keyboard":["Navegando com o teclado"],"Click the desired day to select it.":["Clique no dia desejado para selecion\xe1-lo."],"Click the right or left arrows to select other months in the past or the future.":["Use as setas para a esquerda ou para a direita para selecionar outros meses no passado ou no futuro."],"Click to Select":["Clique para selecionar"],"Calendar Help":["Ajuda do calend\xe1rio"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use as setas para mudar a cor base. Seta para cima clareia a cor e para baixo, escurece; para a esquerda diminui a satura\xe7\xe3o e para direita, aumenta."],"Choose a shade":["Escolha uma sombra"],"Change color format":["Alterar o formato da cor"],"Color value in HSL":["Cor em HSL"],"Color value in RGB":["Cor em RGB"],"Color value in hexadecimal":["Cor em hexadecimal"],"RGB mode active":["Modo RGB ativo"],"Hex color mode active":["Modo de cor em hexadecimal ativo"],"Hue/saturation/lightness mode active":["Modo Matiz/Satura\xe7\xe3o/Brilho (HSL) ativado"],"Move the arrow left or right to change hue.":["Clique nas setas para esquerda ou para a direita para alterar o matiz."],"Hue value in degrees, from 0 to 359.":["Valor do matiz em graus, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor do canal alfa, de 0 (transparente) para 1 (totalmente opaco)."],Stripes:["Listras"],"Your site doesn\u2019t include support for this block.":["Seu site n\xe3o inclui suporte para este bloco."],"Unrecognized Block":["Bloco n\xe3o-reconhecido"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Seu site n\xe3o inclui o suporte para o bloco \"%s\". Voc\xea pode deixar esse bloco como est\xe1 ou remov\xea-lo totalmente."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Seu site n\xe3o inclui o suporte para o bloco \"%s\". Voc\xea pode deixar esse bloco como est\xe1, pode convert\xea-o para um bloco de HTML personalizado ou remov\xea-lo totalmente."],"Media area":["\xc1rea de m\xeddia"],"Media & Text":["M\xeddia e texto"],"Show media on right":["Mostrar m\xeddia \xe0 direita"],"Show media on left":["Mostrar m\xeddia \xe0 esquerda"],"Open in New Tab":["Abrir em uma nova aba"],Cover:["Cobertura"],"Border Settings":[],"Edit media":["Editar m\xeddia"],Medium:["M\xe9dio"],"Paste URL or type to search":["Cole URL ou digite para pesquisar"],Terms:["Termos"],"Your work will be published at the specified date and time.":["Seu conte\xfado ser\xe1 publicado na data e hora especificadas."],"Are you ready to schedule?":["Voc\xea est\xe1 pronto para agendar?"],"Always show pre-publish checks.":["Sempre mostrar as verifica\xe7\xf5es da pr\xe9-publica\xe7\xe3o."],"Take Over":["Assumir o controle"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Outro usu\xe1rio est\xe1 trabalhando neste post, o que significa que voc\xea n\xe3o pode fazer altera\xe7\xf5es, a menos que voc\xea assuma o controle."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s est\xe1 atualmente trabalhando neste post, o que significa que voc\xea n\xe3o pode fazer altera\xe7\xf5es, a menos que voc\xea assuma o controle."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Outro usu\xe1rio agora tem o controle de edi\xe7\xe3o desse post. N\xe3o se preocupe, suas altera\xe7\xf5es at\xe9 o momento foram salvas."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s agora tem o controle de edi\xe7\xe3o deste post. N\xe3o se preocupe, suas altera\xe7\xf5es at\xe9 o momento foram salvas."],Avatar:["Avatar"],"This post is already being edited.":["Este post j\xe1 est\xe1 sendo editado."],"Someone else has taken over this post.":["Algu\xe9m assumiu este post."],"This block contains unexpected or invalid content.":["Este bloco cont\xe9m conte\xfado inesperado ou inv\xe1lido."],"Resolve Block":["Resolver bloco"],"Convert to HTML":["Converter para HTML"],"This block can only be used once.":["Este bloco s\xf3 pode ser usado uma vez."],"Exit Code Editor":["Sair do editor de c\xf3digo"],"Editing Code":["Editando o c\xf3digo"],"Solid Color":["Cor s\xf3lida"],"Main Color":["Cor principal"],HTML:["HTML"],"Write HTML\u2026":["Escreva HTML\u2026"],"Media Settings":["Configura\xe7\xf5es de m\xeddia"],"Overlay Color":["Cor de sobreposi\xe7\xe3o"],Overlay:["Sobreposi\xe7\xe3o"],"Insert Media":["Inserir m\xeddia"],"Reusable block imported successfully!":["Bloco reutiliz\xe1vel importado!"],"Invalid Reusable Block JSON file":["Arquivo JSON de bloco reutiliz\xe1vel inv\xe1lido"],"Invalid JSON file":["Arquivo JSON inv\xe1lido"],"Import from JSON":["Importar de JSON"],Backtick:["Acento grave"],Period:["Ponto"],Comma:["V\xedrgula"],"Change type of %d block":["Mudar tipo de %d bloco","Mudar tipo de %d blocos"],Current:["Atual"],"After Conversion":["Depois da convers\xe3o"],"Change alignment":["Mudar alinhamento"],"Change text alignment":["Mudar alinhamento do texto"],"%d block":["%d bloco","%d blocos"],Escape:["Esc"],"Forward-slash":["Barra"],"No archives to show.":["N\xe3o h\xe1 arquivos para mostrar."],"This file is empty.":["O arquivo est\xe1 vazio."],"Sorry, this file type is not supported here.":["N\xe3o h\xe1 suporte aqui para este tipo de arquivo."],"Manage All Reusable Blocks":["Gerenciar todos os blocos reutiliz\xe1veis"],Title:["T\xedtulo"],"Fullscreen Mode":["Modo tela cheia"],"Beautiful landscape":["Linda paisagem"],"Close panel":["Fechar o painel"],"Convert to Classic Block":["Converter para o bloco Cl\xe1ssico"],"Remove Poster Image":["Remover imagem de capa"],"Select Poster Image":["Selecionar imagem de capa"],"Poster Image":["Imagem de capa"],"This block is deprecated. Please use the Columns block instead.":["Esse bloco est\xe1 obsoleto. Use o bloco Colunas no lugar dele."],"Text Columns (deprecated)":["Colunas de texto (obsoleto)"],"Row Count":["Quantidade de linhas"],"Column Count":["Quantidade de colunas"],"This block is deprecated. Please use the Paragraph block instead.":["Esse bloco est\xe1 obsoleto. Use o bloco Par\xe1grafo no lugar dele."],"Subheading (deprecated)":["Subt\xedtulo (obsoleto)"],blockquote:["cita\xe7\xe3o"],"Change the block type after adding a new paragraph.":["Mude o tipo de bloco ap\xf3s adicionar um novo par\xe1grafo."],"Spotlight Mode":["Modo sem distra\xe7\xf5es"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["As tags ajudam os usu\xe1rios e os mecanismos de pesquisa a navegar no seu site e encontrar o seu conte\xfado. Adicione algumas palavras-chave para descrever seu post."],"Add tags":["Adicionar tags"],"Apply the \"%1$s\" format.":["Aplicar o formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Seu tema usa formatos de postagem para destacar diferentes tipos de conte\xfado, como imagens ou v\xeddeos. Aplique um formato de post para ver este estilo especial."],"Use a post format":["Use um formato de post"],"Insert After":["Inserir depois"],"Insert Before":["Inserir antes"],"Move %1$d block from position %2$d down by one place":["Mover %1$d bloco da posi\xe7\xe3o %2$d para baixo uma posi\xe7\xe3o","Mover %1$d blocos da posi\xe7\xe3o %2$d para baixo uma posi\xe7\xe3o"],"Move %1$d block from position %2$d up by one place":["Mover %1$d bloco da posi\xe7\xe3o %2$d para cima uma posi\xe7\xe3o","Mover %1$d blocos da posi\xe7\xe3o %2$d para cima uma posi\xe7\xe3o"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["filme"],"Insert a new block before the selected block(s).":["Inserir um novo bloco antes do(s) bloco(s) selecionado(s)."],"Remove the selected block(s).":["Remover o(s) bloco(s) selecionado(s)."],"Duplicate the selected block(s).":["Duplicar o(s) bloco(s) selecionado(s)."],"Block shortcuts":["Atalhos de teclado dos blocos"],"Clear selection.":["Limpar sele\xe7\xe3o."],"Select all text when typing. Press again to select all blocks.":["Selecionar todo o texto durante a digita\xe7\xe3o. Pressionar novamente para selecionar todos blocos."],"Selection shortcuts":["Atalhos para sele\xe7\xe3o"],"Switch between Visual Editor and Code Editor.":["Alternar entre editor visual e de c\xf3digo."],"Navigate to the previous part of the editor (alternative).":["Navegar para a parte anterior do editor (alternativa)."],"Navigate to the next part of the editor (alternative).":["Navegar para a pr\xf3xima parte do editor (alternativa)."],"Navigate to the previous part of the editor.":["Navegar para a parte anterior do editor."],"Navigate to the next part of the editor.":["Navegar para a pr\xf3xima parte do editor."],"Show or hide the settings sidebar.":["Mostrar ou ocultar a barra lateral de configura\xe7\xf5es."],"Redo your last undo.":["Refaz seu \xfaltimo desfazer."],"Undo your last changes.":["Desfaz as \xfaltimas altera\xe7\xf5es."],"Save your changes.":["Salvar suas altera\xe7\xf5es."],"Global shortcuts":["Atalhos globais"],"Remove a link.":["Remover um link."],"Convert the selected text into a link.":["Converter o texto selecionado em um link."],"Underline the selected text.":["Sublinhar o texto selecionado."],"Make the selected text italic.":["Tornar it\xe1lico o texto selecionado."],"Make the selected text bold.":["Tornar negrito o texto selecionado."],"Text formatting":["Formata\xe7\xe3o de texto"],"Insert a new block after the selected block(s).":["Inserir um novo bloco ap\xf3s o(s) bloco(s) selecionado(s)."],"Keyboard Shortcuts":["Atalhos do teclado"],"Thanks for testing Gutenberg!":["Obrigado por testar o Gutenberg!"],"Help build Gutenberg":["Ajude a construir o Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Se voc\xea quiser saber mais sobre como criar blocos adicionais ou se estiver interessado em ajudar no projeto, acesse o reposit\xf3rio do GitHub."],"The WordPress community":["A comunidade WordPress"],"Code is Poetry":["C\xf3digo \xe9 poesia"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Voc\xea consegue montar o bloco que quiser, est\xe1tico ou din\xe2mico, decorativo ou simples. Aqui vai um bloco com cita\xe7\xe3o em destaque:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Qualquer bloco pode usar estes alinhamentos, at\xe9 o bloco de m\xeddias incorporadas, que j\xe1 \xe9 responsivo por padr\xe3o:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["A galeria acima tem somente duas imagens. \xc9 uma maneira mais f\xe1cil de ter um visual atraente, sem ter que lidar com floats, um c\xf3digo CSS que pode ser bem complicado. Voc\xea tamb\xe9m pode facilmente converter a galeria de volta a imagens individuais, usando o bot\xe3o de transforma\xe7\xe3o de blocos."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["\xc9 claro que uma imagem ocupando a largura total pode ficar muito grande. Mas \xe0s vezes a imagem vale a pena."],"Accessibility is important — don’t forget image alt attribute":["A acessibilidade \xe9 importante — n\xe3o se esque\xe7a dos atributos alt de imagem"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Se voc\xea combinar os novos alinhamentos largura ampla e largura total com galerias, voc\xea pode criar uma boa apresenta\xe7\xe3o visual muito rapidamente:"],"Media Rich":["Rico em m\xeddia"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Voc\xea pode mudar a quantidade de colunas em suas galerias mexendo no controle deslizante do inspetor de bloco da barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Os blocos podem ser qualquer coisa que voc\xea precisar. Por exemplo, voc\xea pode querer adicionar uma cita\xe7\xe3o t\xedmida como parte da composi\xe7\xe3o do texto, ou talvez prefira exibir uma em estilo gigante. Todas essas op\xe7\xf5es est\xe3o dispon\xedveis no adicionador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["A informa\xe7\xe3o que corresponde \xe0 origem da cita\xe7\xe3o \xe9 um campo separado, similar \xe0s legendas sob as imagens, de forma que a estrutura da cita\xe7\xe3o esteja sempre certa, mesmo que voc\xea selecione, modifique ou remova essa origem. Tamb\xe9m fica f\xe1cil adicion\xe1-la de volta."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["O editor se prop\xf5e a criar uma nova experi\xeancia de constru\xe7\xe3o de posts e p\xe1ginas, facilitando a cria\xe7\xe3o conte\xfados mais elaborados. Ele tem \"blocos\" para facilitar aquilo que atualmente envolveria shortcodes, HTML personalizados ou uma confus\xe3o de elementos incorporados."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Uma enorme vantagem dos blocos \xe9 que voc\xea consegue edit\xe1-los no lugar e manipular o conte\xfado deles diretamente. Em vez de ter campos para editar, por exemplo, o c\xf3digo de uma cita\xe7\xe3o ou o texto de um bot\xe3o, voc\xea pode alterar o conte\xfado diretamente. Experimente editar a seguinte cita\xe7\xe3o:"],"Visual Editing":["Edi\xe7\xe3o visual"],"And Lists like this one of course :)":["E listas como esta aqui, \xe9 claro :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blocos de layout, bot\xf5es de curtir, imagens em destaque, separadores etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incorporados, como YouTube, Tweets ou outros posts do WordPress."],Galleries:["Galerias"],"Images & Videos":["Imagens & v\xeddeos"],"Text & Headings":["Textos & t\xedtulos"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Experimente, voc\xea pode descobrir coisas que o WordPress j\xe1 \xe9 capaz de adicionar nos seus posts e que voc\xea nem sabia. Aqui vai uma lista do que voc\xea j\xe1 pode encontrar:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine tudo o que o WordPress pode fazer, est\xe1 dispon\xedvel para voc\xea rapidamente e no mesmo lugar na interface. Sem necessidade de lembrar sobre tags de HTML, classes ou lembrar da sintaxe complicada de shortcodes. Esse \xe9 o esp\xedrito por tr\xe1s do adicionador, o bot\xe3o (+) que voc\xea ver\xe1 pelo editor, que permite navegar em todos os blocos de conte\xfado dispon\xedveis e adicion\xe1-los ao seu post. Plugins e temas s\xe3o capazes de registrar os seus pr\xf3prios, abrindo todo o tipo de possibilidades para edi\xe7\xe3o e publica\xe7\xe3o."],"The Inserter Tool":["A ferramenta de adi\xe7\xe3o"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Tente selecionar e remover ou editar a legenda. Agora voc\xea n\xe3o precisa se preocupar com selecionar por engano a imagem ou outro texto e com isso estragar a apresenta\xe7\xe3o."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Se o seu tema permitir, voc\xea ver\xe1 um bot\xe3o \"largo\" na barra de ferramentas da imagem. Experimente."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Lidar com imagens e m\xeddias com todo o cuidado \xe9 um dos focos b\xe1sicos do novo editor. Esperamos que voc\xea ache bem mais f\xe1cil do que antes a maneira de adicionar legendas ou exibir as imagens em tela cheia."],"A Picture is Worth a Thousand Words":["Uma imagem vale por mil palavras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Os t\xedtulos tamb\xe9m s\xe3o blocos separados, o que ajuda no esbo\xe7o e organiza\xe7\xe3o do seu conte\xfado."],"... like this one, which is right aligned.":["...como este aqui, que \xe9 alinhado \xe0 direita."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["O que voc\xea est\xe1 lendo agora \xe9 um bloco de texto, o bloco mais b\xe1sico de todos. O bloco de texto tem seus pr\xf3prios controles para que seja movimentado livremente pelo post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["O objetivo deste novo editor \xe9 tornar a inclus\xe3o de conte\xfado rico no WordPress simples e agrad\xe1vel. Este post \xe9 todo composto de peda\xe7os de conte\xfado \u2014 algo parecido com os blocos LEGO \u2014 que voc\xea pode movimentar e com eles, interagir. Movimente o cursor pela tela e voc\xea vai notar que os v\xe1rios blocos s\xe3o ressaltados por linhas e setas. Clique nas setas para reposicionar os blocos rapidamente, sem o medo de perder alguma coisa no processo de copiar e colar."],"Of Mountains & Printing Presses":["Sobre montanhas e primeiras impress\xf5es"],"Welcome to the Gutenberg Editor":["Bem-vindo ao editor Gutenberg"],"block name\x04More":["Leia mais"],"button to expand options\x04More":["Mais"],"Are you sure you want to unschedule this post?":["Tem certeza de que deseja desagendar este post?"],"Alt Text (Alternative Text)":["Texto alt (texto alternativo)"],"Reusable Block":["Bloco reutiliz\xe1vel"],"Unique identifier for the object.":["Identificador \xfanico para o objeto."],"Untitled Reusable Block":["Bloco reutiliz\xe1vel sem t\xedtulo"],Small:["Pequeno"],"(%s: %s)":["(%s: %s)"],Reusable:["Reutiliz\xe1vel"],"(current %s: %s)":["(atual %s: %s)"],"Remove from Reusable Blocks":["Remover dos blocos reutiliz\xe1veis"],"Add to Reusable Blocks":["Adicionar aos blocos reutiliz\xe1veis"],"Keep as HTML":["Manter como HTML"],"Edit URL":["Editar URL"],"Color Settings":["Configura\xe7\xf5es de cor"],"The response is not a valid JSON response.":["A resposta n\xe3o \xe9 um JSON v\xe1lido."],"Editor publish":["Publica\xe7\xe3o do editor"],Muted:["Mudo"],"Video Settings":["Configura\xe7\xf5es de v\xeddeo"],"recent comments":["coment\xe1rios recentes"],"Latest Comments":["Coment\xe1rios mais recentes"],"Display Excerpt":["Exibir resumo"],"Display Date":["Exibir data"],"Display Avatar":["Mostrar avatar"],"Latest Comments Settings":["Configura\xe7\xf5es dos coment\xe1rios mais recentes"],"Number of Comments":["N\xfamero de coment\xe1rios"],"Background Opacity":["Opacidade do fundo"],Auto:["Auto"],Preload:["Pr\xe9-carregar"],"Audio Settings":["Configura\xe7\xf5es de \xe1udio"],"Display a monthly archive of your posts.":["Exibir um arquivo mensal de seus posts."],"Display as Dropdown":["Exibir como menu suspenso"],"Show Post Counts":["Mostrar contagens de post"],"Archives Settings":["Configura\xe7\xf5es dos arquivos"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Suporte"],"No comments to show.":["Nenhum coment\xe1rio para mostrar."],"%1$s on %2$s":["%1$s em %2$s"],"Select Post":["Selecionar post"],"Select Week":["Selecionar semana"],"Select Day":["Selecione o dia"],"Select Month":["Selecione o m\xeas"],"Select Year":["Selecione o ano"],Archives:["Arquivos"],"Very dark gray":["Cinza muito escuro"],"Cyan bluish gray":["Cinza ciano azulado"],"Very light gray":["Cinza muito claro"],"Vivid cyan blue":["Azul ciano v\xedvido"],"Pale cyan blue":["Azul ciano p\xe1lido"],"Vivid green cyan":["Verde ciano v\xedvido"],"Light green cyan":["Verde ciano claro"],"Luminous vivid amber":["\xc2mbar luminoso v\xedvido"],"Luminous vivid orange":["Laranja v\xedvido luminoso"],"Vivid red":["Vermelho v\xedvido"],"Pale pink":["Rosa p\xe1lido"],"Inline image":[],"Available block types":["Tipos de bloco dispon\xedveis"],"Transform To:":["Transformar para:"],"Remove Block":["Remover bloco"],"Open publish panel":["Abrir o painel de publica\xe7\xe3o"],Dots:["Pontos"],"Wide Line":["Linha Larga"],Large:["Grande"],"Show download button":[],"Download button settings":[],"Link To":["Apontar para"],"Text link settings":[],pdf:["pdf"],document:["documento"],"Copy URL":["Copiar URL"],"Write file name\u2026":["Escreva o nome do arquivo..."],"Edit file":["Editar arquivo"],File:["Arquivo"],"A single column within a columns block.":["Uma \xfanica coluna dentro de um bloco de colunas."],Column:["Coluna"],Outline:["Contorno"],Loop:["Loop"],Autoplay:["Reprodu\xe7\xe3o autom\xe1tica"],"Playback Controls":["Controles de reprodu\xe7\xe3o"],"Close dialog":["Fechar janela"],"Sorry, this file type is not permitted for security reasons.":["Este tipo de arquivo n\xe3o \xe9 permitido por raz\xf5es de seguran\xe7a."],"Disable tips":["Desativar dicas"],"Got it":["Entendi"],"See next tip":["Ver pr\xf3xima dica"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Quando estiver pronto, envie a publica\xe7\xe3o para revis\xe3o para que um editor possa aprov\xe1-la."],"Are you ready to submit for review?":["Voc\xea est\xe1 pronto para enviar para revis\xe3o?"],"Replace image":["Substituir imagem"],"Remove image":["Remover a imagem"],"Error while uploading file %s to the media library.":["Ocorreu um erro ao enviar o arquivo %s para a biblioteca de m\xeddia."],"This file exceeds the maximum upload size for this site.":["O arquivo excedeu o tamanho m\xe1ximo de envio para esse site."],"View the autosave":["Ver o salvamento autom\xe1tico"],"There is an autosave of this post that is more recent than the version below.":["Existe uma vers\xe3o salva automaticamente desta publica\xe7\xe3o que \xe9 mais recente do que a vers\xe3o abaixo."],Autosaving:["Salvando automaticamente"],"Enter URL here\u2026":["Digite URL aqui..."],"Pin to toolbar":["Fixar na barra de ferramentas"],"Unpin from toolbar":["Desafixar da barra de ferramentas"],"Insert a table \u2014 perfect for sharing charts and data.":["Insira uma tabela. Perfeito para compartilhar gr\xe1ficos e dados."],"Fixed width table cells":["C\xe9lulas da tabela de largura fixa"],"Table Settings":["Configura\xe7\xf5es da tabela"],"Add text that respects your spacing and tabs, and also allows styling.":["Adicione um texto que respeite o espa\xe7amento e as abas, e que tamb\xe9m permita estiliza\xe7\xe3o."],"Display a list of your most recent posts.":["Exiba uma lista das publica\xe7\xf5es mais recentes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Insira um bloco que exibe conte\xfado carregado atrav\xe9s de outros sites, como Twitter, Instagram ou YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Adicione um bloco para exibir o conte\xfado em colunas, ent\xe3o adicione quantos blocos de conte\xfado quiser."],"Error loading block: %s":["Erro ao carregar o bloco: %s"],"Unknown error":["Erro desconhecido"],"Embed Handler":["Incorporar manipulador"],"term\x04Remove %s":["Remover %s"],"Copy the permalink":["Copiar o link permanente"],"Permalink copied":["Link permanente copiado"],"Height in pixels":["Altura em pixels"],"Spacer Settings":["Configura\xe7\xf5es de espa\xe7ador"],Spacer:["Espa\xe7ador"],"Toggle to show a large initial letter.":["Alternar para mostrar uma letra inicial grande."],"Showing large initial letter.":["Mostrando letra inicial grande."],"Name:":["Nome:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Remover item"],"Color code: %s":["C\xf3digo de cor: %s"],"Skip to the selected block":["Pule para o bloco selecionado"],"Publish\u2026":["Publicar..."],"Schedule\u2026":["Agendar..."],"Edit post permalink":["Editar link permanente do post"],"Show Block Settings":["Mostrar configura\xe7\xf5es do bloco"],"Hide Block Settings":["Esconder configura\xe7\xf5es do bloco"],"Block settings closed":["Configura\xe7\xf5es do bloco fechadas"],"Close plugin":["Fechar plugin"],"Link settings":[],Unlink:["Desvincular"],"Page break":["Quebra de p\xe1gina"],pagination:["pagina\xe7\xe3o"],"next page":["pr\xf3xima p\xe1gina"],"Image Size":["Tamanho da imagem"],Height:["Altura"],Width:["Largura"],"Image Dimensions":["Dimens\xf5es da imagem"],"Thumbnails are not cropped.":["Miniaturas n\xe3o s\xe3o cortadas."],"Thumbnails are cropped to align.":["Miniaturas s\xe3o cortadas para alinhar."],"Media Library":["Biblioteca de m\xeddia"],Advanced:["Avan\xe7ado"],"Add item":["Adicionar item"],"Reset the template":["Redefinir o modelo"],"Keep it as is":["Mantenha como est\xe1"],"The content of your post doesn\u2019t match the template assigned to your post type.":["O conte\xfado do seu post n\xe3o corresponde ao modelo atribu\xeddo ao seu tipo de post."],"Resetting the template may result in loss of content, do you want to continue?":["A redefini\xe7\xe3o do modelo pode resultar em perda de conte\xfado, deseja continuar?"],"Document Statistics":["Estat\xedsticas do documento"],"is now scheduled. It will go live on":["est\xe1 agendado. Ser\xe1 publicado em"],Scheduled:["Agendado"],"Scheduling\u2026":["Agendando..."],"Code editor selected":["Editor de c\xf3digo selecionado"],"Visual editor selected":["Editor visual selecionado"],Plugins:["Plugins"],"Custom Size":["Tamanho personalizado"],"Layout Elements":["Elementos de layout"],"term\x04%s removed":["%s exclu\xeddo"],"term\x04%s added":["%s adicionado"],"imperative verb\x04Preview":["Visualizar"],"Block deleted.":["Bloco exclu\xeddo."],"Block updated.":["Bloco atualizado."],"Block created.":["Bloco criado."],"Trashing failed":["Falha ao mover para lixeira"],"Updating failed.":["Falha ao atualizar."],"Scheduling failed.":["Falha ao agendar."],"Publishing failed.":["Falha ao publicar."],"View Post":["Ver post"],"You have unsaved changes. If you proceed, they will be lost.":["Voc\xea tem altera\xe7\xf5es que n\xe3o foram salvas. Se voc\xea continuar, elas ser\xe3o perdidas."],"Document Outline":["Vis\xe3o geral do documento"],Paragraphs:["Par\xe1grafos"],Headings:["T\xedtulos"],Words:["Palavras"],"Content structure":["Estrutura do conte\xfado"],Public:["P\xfablico"],"Protected with a password you choose. Only those with the password can view this post.":["Protegido com uma senha definida por voc\xea. Apenas aqueles com a senha podem visualizar esse post."],"Password Protected":["Protegido por senha"],"Only visible to site admins and editors.":["Vis\xedvel apenas para administradores e editores."],Private:["Privado"],"Visible to everyone.":["Vis\xedvel para todos."],"Post Visibility":["Visibilidade do post"],"Would you like to privately publish this post now?":["Gostaria de publicar de forma privada este post agora?"],"Use a secure password":["Use uma senha segura"],"Create password":["Criar senha"],"Move to Trash":["Mover para a lixeira"],"Parent Term":["Termo ascendente"],"Parent Category":["Categoria ascendente"],"Add new term":["Adicionar novo termo"],"Add new category":["Adicionar nova categoria"],Term:["Termo"],Tag:["Tag"],"Add New Term":["Adicionar novo termo"],"Add New Tag":["Adicionar nova tag"],"Switch to Draft":["Mudar para rascunho"],"Are you sure you want to unpublish this post?":["Tem certeza de que deseja cancelar a publica\xe7\xe3o deste post?"],Immediately:["Imediatamente"],"Save Draft":["Salvar rascunho"],Saving:["Salvando"],"Publish:":["Publicar: "],"Visibility:":["Visibilidade:"],"Are you ready to publish?":["Pronto para publicar?"],"Copy Link":["Copiar link"],"What\u2019s next?":["O que mais?"],"is now live.":["agora est\xe1 no ar."],Published:["Publicado"],Schedule:["Agendar"],Update:["Atualizar"],"Submit for Review":["Enviar para revis\xe3o"],"Updating\u2026":["Atualizando..."],"Publishing\u2026":["Publicando\u2026"],"Allow Pingbacks & Trackbacks":["Permitir pingbacks e trackbacks"],"Permalink:":["Link permanente:"],"Pending Review":["Revis\xe3o pendente"],"%d Revision":["%d revis\xe3o","%d revis\xf5es"],"Suggestion:":["Sugest\xe3o:"],"Post Format":["Formato do post"],Chat:["Bate-papo"],Status:["Status"],Standard:["Padr\xe3o"],Aside:["Nota"],"Set Featured Image":["Definir imagem destacada"],"Learn more about manual excerpts":["Saiba mais sobre os resumos"],"Write an excerpt (optional)":["Escreva um resumo (opcional)"],"Allow Comments":["Permitir coment\xe1rios"],"Template:":["Modelo:"],"no parent":["sem ascendente"],"no title":["sem t\xedtulo"],Order:["Ordem"],"No blocks found.":["Nenhum bloco encontrado."],"%d result found.":["%d resultado encontrado.","%d resultados encontrados."],Saved:["Salvo"],Embeds:["C\xf3digos incorporados"],Blocks:["Blocos"],"Search for a block":["Procurar um bloco"],"Add block":["Adicionar bloco"],"Add %s":["Adicionar %s"],"Copy Error":["Copiar o erro"],"Copy Post Text":["Copiar o texto do post"],"Attempt Recovery":["Tentativa de recupera\xe7\xe3o"],"The editor has encountered an unexpected error.":["O editor encontrou um erro inesperado."],Undo:["Desfazer"],Redo:["Refazer"],"(Multiple H1 headings are not recommended)":["(M\xfaltiplos t\xedtulos H1 n\xe3o s\xe3o recomendados)"],"(Your theme may already use a H1 for the post title)":["(Seu tema pode j\xe1 usar um t\xedtulo H1 para o t\xedtulo do post)"],"(Incorrect heading level)":["(N\xedvel de t\xedtulo incorreto)"],"(Empty heading)":["(T\xedtulo vazio)"],"Block Styles":["Estilos de bloco"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Tem certeza de que deseja excluir esse bloco compartilhado?\n\nIsso ir\xe1 remov\xea-lo permanentemente de todos os posts e p\xe1ginas que o usam."],"Convert to Regular Block":["Converter para bloco normal"],"More options":["Mais op\xe7\xf5es"],"Edit visually":["Editar visualmente"],Duplicate:["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Os blocos n\xe3o podem ser movidos para baixo pois eles j\xe1 est\xe3o na parte inferior"],"Blocks cannot be moved up as they are already at the top":["Os blocos n\xe3o podem ser movidos para cima pois eles j\xe1 est\xe3o na parte superior"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["O bloco %s \xe9 o \xfanico bloco e n\xe3o pode ser movido"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Converter para blocos"],"Block: %s":["Bloco: %s"],"This block has encountered an error and cannot be previewed.":["Este bloco encontrou um erro e n\xe3o pode ser visualizado."],"No block selected.":["Nenhum bloco selecionado."],"Transform into:":["Transformar em:"],Remove:["Remover"],"Find original":["Encontre o original"],"Copy All Content":["Copiar todo o conte\xfado"],"Copied!":["Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Configura\xe7\xf5es adicionais est\xe3o agora dispon\xedveis nas configura\xe7\xf5es da barra lateral do Editor de bloco."],Visibility:["Visibilidade"],"Status & Visibility":["Status e visibilidade"],"Page Attributes":["Atributos da p\xe1gina"],Block:["Bloco","%d Blocos"],Document:["Documento"],"Featured Image":["Imagem destacada"],"Close settings":["Fechar configura\xe7\xf5es"],"Editor content":["Editor de conte\xfado"],Tools:["Ferramentas"],Editor:["Editor"],"Code Editor":["Editor de c\xf3digo"],"Visual Editor":["Editor visual"],"Editor top bar":["Barra superior do editor"],Settings:["Configura\xe7\xf5es"],Reset:["Redefinir"],"Dismiss this notice":["Dispensar essa notifica\xe7\xe3o"],"Item removed.":["Item removido."],"Item added.":["Item adicionado."],"Drop files to upload":["Solte arquivos aqui para enviar"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Ocorreu um erro desconhecido."],"No results.":["Nenhum resultado."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontrado, use as setas para cima e para baixo para navegar.","%d resultados encontrados, use as setas para cima e para baixo para navegar"],"(no title)":["(sem t\xedtulo)"],URL:["URL"],Submit:["Enviar"],Close:["Fechar"],"Insert link":[],"Edit link":[],Link:["Link"],Strikethrough:["Riscado"],Italic:["It\xe1lico"],Bold:["Negrito"],"Remove link":[],"Number of items":["N\xfamero de itens"],All:["Tudo"],Category:["Categoria"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Do mais antigo para o mais recente"],"Newest to Oldest":["Do mais recente para o mais antigo"],"Order by":["Ordernar por"],Select:["Selecionar"],"Select or Upload Media":["Selecione ou envie a m\xeddia"],Video:["V\xeddeo"],"Edit video":["Editar v\xeddeo"],"Write\u2026":["Escreva..."],poetry:["poesia"],Verse:["Verso"],"New Column":["Nova coluna"],"Delete Column":["Excluir coluna"],"Add Column After":["Adicionar coluna depois"],"Add Column Before":["Adicionar coluna antes"],"Delete Row":["Excluir linha"],"Add Row After":["Adicionar linha depois"],"Add Row Before":["Adicionar linha antes"],"Edit table":["Editar tabela"],Table:["Tabela"],"Write subheading\u2026":["Escreva o subt\xedtulo..."],"Write shortcode here\u2026":["Digite um shortcode aqui..."],Shortcode:["Shortcode"],divider:["divisor"],"horizontal-line":["linha horizontal"],Separator:["Separador"],Quote:["Cita\xe7\xe3o"],"Write citation\u2026":["Escrever cita\xe7\xe3o..."],"Write quote\u2026":["Escreva uma cita\xe7\xe3o..."],Pullquote:["Cita\xe7\xe3o"],"Write preformatted text\u2026":["Escreva um texto pr\xe9-formatado..."],Preformatted:["Pr\xe9-formatado"],text:["texto"],Paragraph:["Par\xe1grafo"],"Font Size":["Tamanho da fonte"],"Drop Cap":["Letra capitular"],"Text Settings":["Configura\xe7\xf5es do texto"],"Read more":["Leia mais"],"Write list\u2026":["Escrever lista..."],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista com marcadores"],"Indent list item":["Avan\xe7ar item da lista"],"Outdent list item":["Recuar item da lista"],"Convert to ordered list":["Converter para lista ordenada"],"Convert to unordered list":["Converter para lista n\xe3o ordenada"],List:["Lista"],"recent posts":["posts recentes"],"No posts found.":["Nenhum post encontrado."],"Latest Posts":["Posts mais recentes"],"Display post date":["Exibir a data do post"],"Grid view":[],"List view":[],photo:["foto"],"Image Settings":["Configura\xe7\xf5es da imagem"],Image:["Imagem"],Preview:["Visualizar"],embed:["M\xeddia incorporada"],"Custom HTML":["HTML personalizado"],subtitle:["subt\xedtulo"],title:["t\xedtulo"],Heading:["T\xedtulo"],"Write heading\u2026":["Escreva o t\xedtulo\u2026"],"Heading %d":["T\xedtulo %d"],Level:["N\xedvel"],"Heading Settings":["Configura\xe7\xf5es do cabe\xe7alho"],photos:["fotos"],images:["imagens"],"Remove Image":["Remover imagem"],None:["Nenhum"],"Media File":["Arquivo de m\xeddia"],"Attachment Page":["P\xe1gina de anexo"],"Crop Images":["Recortar imagens"],"Gallery Settings":["Configura\xe7\xf5es da galeria"],Gallery:["Galeria"],Classic:["Editor Cl\xe1ssico"],video:["v\xeddeo"],audio:["\xe1udio"],music:["m\xfasica"],image:["imagem"],blog:["blog"],post:["post"],"Embedded content from %s":["Conte\xfado incorporado de %s"],"Enter URL to embed here\u2026":["Digite aqui o URL da m\xeddia a ser incorporada\u2026"],"%s URL":["URL do %s"],"Embedding\u2026":["Incorporando..."],"Write title\u2026":["Escreva o t\xedtulo..."],"Fixed Background":["Fundo fixo"],"Edit image":["Editar imagem"],Columns:["Colunas"],Experiments:["Experimental"],Code:["C\xf3digo"],"Write code\u2026":["Escreva o c\xf3digo\u2026"],Categories:["Categorias"],"Show Hierarchy":["Mostrar hierarquia"],"Show post counts":["Mostrar n\xfamero de posts"],"Categories Settings":["Configura\xe7\xf5es das categorias"],"Add text\u2026":["Adicionar texto..."],Button:["Bot\xe3o"],Apply:["Aplicar"],"Text Color":["Cor do texto"],"Background Color":["Cor de fundo"],"Block has been deleted or is unavailable.":["O bloco foi exclu\xeddo ou est\xe1 indispon\xedvel."],"Reusable Blocks":["Blocos reutiliz\xe1veis"],Cancel:["Cancelar"],Edit:["Editar"],"Edit audio":["Editar \xe1udio"],"Write caption\u2026":["Escrever legenda..."],"Use URL":["Usar URL"],Audio:["\xc1udio"],Upload:["Enviar"],"Additional CSS Class(es)":["Classes CSS adicionais"],"HTML Anchor":["\xc2ncora de HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Essa combina\xe7\xe3o de cores pode ser dif\xedcil para as pessoas lerem. Tente usar uma cor de fundo mais clara e/ou uma cor de texto mais escura."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Essa combina\xe7\xe3o de cores pode ser dif\xedcil para as pessoas lerem. Tente usar uma cor de fundo mais escura e/ou uma cor de texto mais clara."],Clear:["Limpar"],"Custom color picker":["Seletor de cor personalizado"],"Color: %s":["Cor: %s"],"Full Width":["Largura total"],"Wide Width":["Largura ampla"],Widgets:["Widgets"],Formatting:["Formata\xe7\xe3o"],"Common Blocks":["Blocos comuns"],"Align Right":["Alinhar \xe0 direita"],"Align Center":["Alinhar ao centro"],"Align Left":["Alinhar \xe0 esquerda"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimindo desde 1440. Este \xe9 o plugin de desenvolvimento do novo editor de blocos do WordPress."],"Add title":["Adicionar t\xedtulo"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["O modo de desenvolvimento do Gutenberg requer que os arquivos sejam criados. Execute npm install para instalar as depend\xeancias, npm run build para criar os arquivos ou npm run dev para criar os arquivos e observar mudan\xe7as. Leia o arquivo de contribui\xe7\xe3o para obter mais informa\xe7\xf5es."],Author:["Autor"],Slug:["Slug"],Discussion:["Discuss\xe3o"],"Custom Fields":["Campos personalizados"],Excerpt:["Resumo"],Publish:["Publicar"],Metadata:["Metadados"],Save:["Salvar"],Documentation:["Documenta\xe7\xe3o"],"Select Category":["Selecionar categoria"],"(Untitled)":["(sem t\xedtulo)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["O Gutenberg requer o WordPress %s ou posterior para funcionar corretamente. Atualize o WordPress antes de ativar o Gutenberg."],"Gutenberg Team":["Equipe Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s atr\xe1s"],"Block style name must be a string.":["Nomes de estilo de blocos precisam ser strings."]}},859,[]); +__d(function(e,t,a,i,o,r,n){o.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":["Niciun bloc g\u0103sit \xeen bibliotec\u0103."],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:["Re\xeencearc\u0103"],"Block previews can't install.":[],"Updated %s":["%s actualizat"],"%d active installation":["O instalare activ\u0103","%d instal\u0103ri active","%d de instal\u0103ri active"],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:["Adaug\u0103"],"%d total rating":[],"%s out of 5 stars":["%s din 5 stele"],"Enter Address":["Introdu adresa"],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":["Leg\u0103turi sociale"],"Open block navigator":[],"Attachment page":["Pagin\u0103 ata\u0219ament"],Fill:["Completeaz\u0103"],"Link rel":[],"Border Radius":["Raz\u0103 chenar"],"Write gallery caption\u2026":[],"Content Blocks":["Blocuri de con\u021binut"],"Restore the backup":["Restaureaz\u0103 copia de siguran\u021b\u0103"],"The backup of this post in your browser is different from the version below.":["Copia de siguran\u021b\u0103 a acestui articol din navigatorul t\u0103u este diferit\u0103 de versiunea de mai jos."],"Enable Block Directory search":["Activeaz\u0103 c\u0103utarea \xeen directorul de blocuri"],"Block Directory":["Director de blocuri"],"Unable to connect to the filesystem. Please confirm your credentials.":["Nu m\u0103 pot conecta la sistemul de fi\u0219iere. Te rog confirm\u0103-\u021bi datele de conectare."],"Sorry, you are not allowed to install blocks.":["Regret, nu ai voie s\u0103 instalezi blocuri."],"%1$d block is disabled.":["%1$d bloc este dezactivat.","%1$d blocuri sunt dezactivate.","%1$d de blocuri sunt dezactivate."],"Reverse List Numbering":[],"Start Value":["Valoare de pornire"],"Ordered List Settings":["Set\u0103ri list\u0103 ordonat\u0103"],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":["Stil implicit"],"Not set":["Nesetat"],"While writing, you can press / to quickly insert new blocks.":["\xcen timp ce scrii, po\u021bi ap\u0103sa / pentru a introduce rapid blocuri noi."],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":["Versiune a formatului pentru blocul de con\u021binut folosit de obiect."],"HTML content for the object, transformed for display.":["Con\u021binut HTML pentru obiect, transformat pentru afi\u0219are."],"Content for the object, as it exists in the database.":["Con\u021binut pentru obiect, a\u0219a cum exist\u0103 \xeen baza de date."],"The content for the object.":["Con\u021binutul pentru obiect."],"Change column alignment":["Modific\u0103 alinierea coloanei"],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:["Culoare"],"Vivid purple":[],"Disable & Reload":["Dezactiveaz\u0103 \u0219i re\xeencarc\u0103"],"Enable & Reload":["Activeaz\u0103 \u0219i re\xeencarc\u0103"],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":["Set\u0103ri experimente"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg are c\xe2teva func\u021bionalit\u0103\u021bi experimentale pe care le po\u021bi activa. Doar selecteaz\u0103-le pe cele care vrei s\u0103 le folose\u0219ti. Este posibil ca aceste func\u021bionalit\u0103\u021bi s\u0103 se modifice, deci nu este recomandat s\u0103 le folose\u0219ti \xeen produc\u021bie."],"Enable Widgets Screen and Legacy Widget Block":["Activeaz\u0103 ecranul Piese \u0219i blocul Pies\u0103 tradi\u021bional\u0103"],"Experiment settings":["Set\u0103ri experiment"],"Block name name must be a string.":["Numele blocului trebuie s\u0103 fie un \u0219ir de caractere."],Custom:["Personalizat"],Draft:["Ciorn\u0103"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blocul \u201e%1$s\u201d nu con\u021bine un stil cu numele \u201e%2$s\u201d."],"Learn more about anchors":["Afl\u0103 mai mult despre ancore"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":["Blocuri piese (experimentale)"],"Upload a video file, pick one from your media library, or add one with a URL.":["\xcencarc\u0103 un fi\u0219ier video, alege unul din biblioteca ta media sau adaug\u0103 unul cu un URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["\xcencarc\u0103 un fi\u0219ier imagine, alege unul din biblioteca ta media sau adaug\u0103 unul cu un URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["\xcencarc\u0103 un fi\u0219ier audio, alege unul din biblioteca ta media sau adaug\u0103 unul cu un URL."],"Upload a media file or pick one from your media library.":["\xcencarc\u0103 un fi\u0219ier \xeen media sau alege unul din biblioteca media."],Skip:["Sari"],"Select a pattern to start with.":["Selecteaz\u0103 un model cu care s\u0103 \xeencepi."],"Add a page, link, or other item to your navigation.":["Adaug\u0103 o pagin\u0103, o leg\u0103tur\u0103 sau un alt element \xeen navigare."],"What's this?":["Ce-i asta?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Nu l\u0103sa motoarele de c\u0103utare s\u0103 urm\u0103reasc\u0103 aceast\u0103 leg\u0103tur\u0103."],"Provide more context about where the link goes.":[],"Title Attribute":["Atribut titlu"],"SEO Settings":["Set\u0103ri SEO"],Description:["Descriere"],"Open in new tab":["Deschide \xeentr-o fil\u0103 nou\u0103"],links:["leg\u0103turi"],navigation:["navigare"],menu:["meniu"],"Add a navigation block to your site.":["Adaug\u0103 un bloc de navigare pe situl t\u0103u."],"Upload a file or pick one from your media library.":["\xcencarc\u0103 un fi\u0219ier sau alege unul din biblioteca media."],"Learn more about embeds":["Afl\u0103 mai multe despre \xeenglob\u0103ri"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":["\xcencarc\u0103 un fi\u0219ier imagine sau video sau alege unul din biblioteca media."],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":["Mai multe unelte \u0219i op\u021biuni"],"Create Table":["Creeaz\u0103 tabelul "],"Insert a table for sharing data.":["Insereaz\u0103 un tabel pentru partajarea datelor."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Anuleaz\u0103 gruparea"],"verb\x04Group":["Grupeaz\u0103"],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":["Separ\u0103 clasele multiple cu spa\u021bii."],"Move image forward":["Mut\u0103 imaginea \xeenainte"],"Move image backward":["Mut\u0103 imaginea \xeenapoi"],"Sorry, you are not allowed to edit sidebars.":["Regret, nu ai voie s\u0103 editezi barele laterale."],"Sorry, you are not allowed to read sidebars.":["Regret, nu ai voie s\u0103 parcurgi barele laterale."],"The sidebar\u2019s ID.":["ID-ul barei laterale"],"Displays a set of blocks":["Afi\u0219eaz\u0103 un set de blocuri"],"Blocks Area":["Zon\u0103 blocuri"],"Block rendered as empty.":[],"Inline Code":["Cod \xeen-linie"],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":["Sec\u021biune subsol"],"Header section":["Sec\u021biune antet"],"Sorting and Filtering":["Sortare \u0219i filtrare"],"Post Meta Settings":["Set\u0103ri metadate articol"],"Post Content":["Con\u021binut articol"],"Post Content Settings":["Set\u0103ri con\u021binut articol"],"Percentage width":[],"Column Settings":["Set\u0103ri coloan\u0103"],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":["Zona blocurilor a fost actualizat\u0103."],"Block area scheduled.":["Zona blocurilor a fost programat\u0103."],"Block area published.":["Zona blocurilor a fost publicat\u0103."],"Block areas list":["List\u0103 zone de blocuri"],"Block areas list navigation":["Navigare \xeen lista cu zone de blocuri"],"Filter block areas list":["Filtreaz\u0103 lista cu zone de blocuri"],"No block area found.":["Nicio zon\u0103 de blocuri g\u0103sit\u0103."],"Search Block Areas":["Caut\u0103 zone de blocuri"],"All Block Areas":["Toate zonele de blocuri"],"View Block Area":["Vezi zona de blocuri"],"Edit Block Area":["Editeaz\u0103 zona de blocuri"],"New Block Area":["Zon\u0103 de blocuri nou\u0103"],"Add New Block Area":["Adaug\u0103 zon\u0103 de blocuri nou\u0103"],"admin menu\x04Block Areas":["Zone de blocuri"],"post type singular name\x04Block Area (Experimental)":["Zon\u0103 blocuri (experimental\u0103)"],"post type general name\x04Block Area (Experimental)":["Zon\u0103 blocuri (experimental\u0103)"],"Experimental custom post type that will store block areas referenced by themes.":["Tip de articol personalizat, experimental, care va stoca zonele de blocuri din cadrul temelor."],"Widgets screen content":["Con\u021binut ecran Piese"],"Widgets advanced settings":["Set\u0103ri avansate piese"],"(experimental)":["(experimental)"],"Block Areas":["Zone de blocuri"],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:["sec\u021biune"],row:["r\xe2nd"],wrapper:[],container:["container"],"A block that groups other blocks.":["Un bloc care grupeaz\u0103 alte blocuri."],Group:["Grup"],"Crop image to fill entire column":["Decupeaz\u0103 imaginea pentru a umple \xeentreaga coloan\u0103"],"Play inline":[],"Leave empty if the image is purely decorative.":["Las\u0103 gol dac\u0103 imaginea este doar decorativ\u0103."],"Describe the purpose of the image":["Descrie scopul imaginii"],"Add a block":["Adaug\u0103 un bloc"],"Block vertical alignment setting label\x04Change vertical alignment":["Modific\u0103 alinierea pe vertical\u0103"],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":["\xcenlocuie\u0219te imaginea"],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":["Afi\u0219eaz\u0103 o pies\u0103 tradi\u021bional\u0103."],"Legacy Widget (Experimental)":["Pies\u0103 tradi\u021bional\u0103 (experimental\u0103)"],"Change widget":["Schimb\u0103 piesa"],"Legacy Widget":["Pies\u0103 tradi\u021bional\u0103"],"You don't have permissions to use widgets on this site.":["Nu ai permisiunea de a folosi piese pe acest sit."],"Select a legacy widget to display:":["Selecteaz\u0103 o pies\u0103 tradi\u021bional\u0103 pentru afi\u0219are:"],"There are no widgets available.":["Nu este disponibil\u0103 nicio pies\u0103."],"Change block type or style":["Modific\u0103 tipul sau stilul de bloc"],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":["Termeni de c\u0103utare"],"Exit the Editor":["Ie\u0219i din editor"],"Block Manager":["Manager de blocuri"],"Class name of the widget.":["Numele clasei piesei."],"Sorry, you are not allowed to access widgets on this site.":["Regret, nu ai voie s\u0103 accesezi piese pe acest sit."],"Widgets (beta)":["Piese (beta)"],link:["leg\u0103tur\u0103"],"Embedded content from %s can't be previewed in the editor.":["Con\u021binutul \xeenglobat de pe %s nu poate fi previzualizat \xeen editor."],"Custom Color":["Culoare personalizat\u0103"],"Prompt visitors to take action with a button-style link.":["\xcendeamn\u0103 vizitatorii s\u0103 ac\u021bioneze cu o leg\u0103tur\u0103 de tipul buton."],"Stick to the top of the blog":["Eviden\u021biaz\u0103 \xeen partea de sus a blogului"],"Read about permalinks":["Cite\u0219te despre leg\u0103turile permanente"],"The last part of the URL.":["Ultima parte a URL-ului."],"URL Slug":["Descriptor URL"],"A cloud of your most used tags.":["Un nor cu cele mai folosite etichete."],"Tag Cloud":["Nor de etichete"],Taxonomy:["Taxonomie"],"Tag Cloud Settings":["Set\u0103ri nor de etichete"],"- Select -":["- Selecteaz\u0103 -"],Default:[],find:["g\u0103se\u0219te"],"Help visitors find your content.":["Ajut\u0103-\u021bi vizitatorii s\u0103-\u021bi g\u0103seasc\u0103 con\u021binutul."],Search:["Caut\u0103"],"Add button text\u2026":["Adaug\u0103 text buton..."],"Button text":["Text buton"],"Optional placeholder\u2026":["Substituent op\u021bional..."],"Optional placeholder text":["Text substituent op\u021bional"],"Add label\u2026":["Adaug\u0103 etichet\u0103..."],"Label text":["Text etichet\u0103"],"image %1$d of %2$d in gallery":[],archive:["arhiv\u0103"],posts:["articole"],"A calendar of your site\u2019s posts.":["Un calendar al articolelor de pe situl t\u0103u."],Calendar:["Calendar"],by:["de"],"An error has occurred, which probably means the feed is down. Try again later.":["A ap\u0103rut o eroare, care, probabil, \xeenseamn\u0103 c\u0103 fluxul nu func\u021bioneaz\u0103. Re\xeencerc\u0103 mai t\xe2rziu."],"RSS Error:":["Eroare RSS:"],"block style\x04Default":["Implicit"],"Fullscreen mode deactivated":["Mod ecran \xeentreg dezactivat"],"Fullscreen mode activated":["Mod ecran \xeentreg activat"],"Spotlight mode deactivated":["Mod centrat pe bloc dezactivat"],"Spotlight mode activated":["Mod centrat pe bloc activat"],"Top toolbar deactivated":["Bara de unelte de sus dezactivat\u0103"],"Top toolbar activated":["Bara de unelte de sus activat\u0103"],Back:["\xcenapoi"],"Feature activated":["Func\u021bionalitate activat\u0103"],"Feature deactivated":["Func\u021bionalitate dezactivat\u0103"],"Vertical Pos.":[],"Horizontal Pos.":[],feed:["flux"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Afi\u0219eaz\u0103 intr\u0103rile din toate fluxurile RSS sau Atom."],RSS:["RSS"],"Max number of words in excerpt":["Num\u0103r maxim de cuvinte \xeen rezumat"],"Display excerpt":["Afi\u0219eaz\u0103 rezumatul"],"Display date":["Afi\u0219eaz\u0103 data"],"Display author":["Afi\u0219eaz\u0103 autorul"],"RSS Settings":["Set\u0103ri RSS"],"Edit RSS URL":["Editeaz\u0103 URL-ul RSS"],"Content before this block will be shown in the excerpt on your archives page.":["Con\u021binutul g\u0103sit \xeenainte de acest bloc va fi ar\u0103tat \xeen rezumatul din pagina ta arhive."],"Hide the excerpt on the full content page":["Ascunde rezumatul pe pagina cu con\u021binut complet"],"The excerpt is visible.":["Rezumatul este vizibil."],"The excerpt is hidden.":["Rezumatul este ascuns."],"Sorry, this content could not be embedded.":["Regret, acest con\u021binut nu a putut fi \xeenglobat."],"Embed Amazon Kindle content.":["\xcenglobeaz\u0103 con\u021binut Amazon Kindle."],ebook:["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["\xcenglobeaz\u0103 con\u021binut Crowdsignal (fostul Polldaddy)."],"Focal Point Picker":["Selector punct de focalizare"],Underline:["Subliniere"],"Attempt Block Recovery":["\xcencearc\u0103 recuperarea blocului"],"Word count type. Do not translate!\x04words":["cuvinte"],"content placeholder\x04Content\u2026":["Con\u021binut..."],"button label\x04Convert to link":["Converte\u0219te \xeen leg\u0103tur\u0103"],"button label\x04Try again":["\xcencearc\u0103 din nou"],"Editor tips":[],"Block (selected)":["Bloc (selectat)"],"Document (selected)":["Document (selectat)"],"%d word":["%d cuv\xe2nt","%d cuvinte","%d de cuvinte"],"Top Toolbar":["Bara de unelte de sus"],"Link Rel":[],"Link CSS Class":["Clas\u0103 CSS leg\u0103tur\u0103"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Creeaz\u0103 con\u021binut \u0219i salveaz\u0103-l pentru a fi refolosit, de tine \u0219i de ceilal\u021bi contributori, pe tot situl. Actualizeaz\u0103 blocul, iar modific\u0103rile se aplic\u0103 oriunde este folosit."],"To edit the featured image, you need permission to upload media.":["Pentru a edita imaginea reprezentativ\u0103, ai nevoie de permisiunea de a \xeenc\u0103rca elemente media."],"To edit this block, you need permission to upload media.":["Pentru a edita acest bloc, ai nevoie de permisiunea de a \xeenc\u0103rca elemente media."],"(selected block)":["(bloc selectat)"],"Block tools":["Unelte pentru blocuri"],Permalink:["Leg\u0103tur\u0103 permanent\u0103"],"This image has an empty alt attribute":["Aceast\u0103 imagine are atributul alt gol."],"This image has an empty alt attribute; its file name is %s":["Aceast\u0103 imagine are atributul alt gol; numele fi\u0219ierului este %s"],"Block area reverted to draft.":["Zona blocurilor a revenit la ciorn\u0103."],"Block area published privately.":["Zona blocurilor a fost publicat\u0103 privat."],"No block areas found in Trash.":["Nicio zon\u0103 de blocuri g\u0103sit\u0103 la gunoi."],"Block\x04Add New":["Adaug\u0103 bloc nou"],"add new on admin bar\x04Block Area":["Zon\u0103 blocuri"],"Link inserted.":["Leg\u0103tur\u0103 inserat\u0103."],"Warning: the link has been inserted but may have errors. Please test it.":["Avertizare: leg\u0103tura a fost inserat\u0103 dar poate avea erori. Te rog testeaz-o."],"%s block selected.":["%s bloc selectat.","%s blocuri selectate.","%s de blocuri selectate."],Thumbnail:["Miniatur\u0103"],"Full Size":["Dimensiune complet\u0103"],"Link selected.":["Leg\u0103tur\u0103 selectat\u0103."],"Start writing with text or HTML":["\xcencepe s\u0103 scrii text sau HTML"],"Type text or HTML":["Tasteaz\u0103 text sau HTML"],"Block icon":["Icon bloc"],"Align Text Right":["Aliniaz\u0103 textul la dreapta"],"Align Text Center":["Aliniaz\u0103 textul pe centru"],"Align Text Left":["Aliniaz\u0103 textul la st\xe2nga"],"Start writing or type / to choose a block":["\xcencepe s\u0103 scrii sau tasteaz\u0103 \u201e/\u201d pentru a alege un bloc"],"Empty block; start writing or type forward slash to choose a block":["Bloc gol; \xeencepe s\u0103 scrii sau tasteaz\u0103 slash pentru a alege un bloc"],"Paragraph block":["Bloc paragraf"],"Page Break":["Sf\xe2r\u0219it de pagin\u0103"],"Stack on mobile":["Rearanjeaz\u0103 pentru mobil"],Annotation:["Adnotare"],"Drag images, upload new ones or select files from your library.":["Trage imagini, \xeencarc\u0103 unele noi sau selecteaz\u0103 fi\u0219iere din biblioteca ta."],"blocks\x04Most Used":["Cele mai folosite"],"imperative verb\x04Resolve":["Rezolv\u0103"],"font size name\x04Huge":["Foarte mare"],"font size name\x04Large":["Mare"],"font size name\x04Medium":["Mediu"],"font size name\x04Small":["Mic"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Import\u0103"],"button label\x04Download":["Descarc\u0103"],"button label\x04Embed":["\xcenglobeaz\u0103"],"block title\x04Embed":[],"block title\x04Classic":["Clasic"],"block style\x04Large":["Mare"],"%s (opens in a new tab)":["%s (se deschide \xeentr-o fil\u0103 nou\u0103)"],"Link edited.":["Leg\u0103tur\u0103 editat\u0103."],"Link removed.":["Leg\u0103tur\u0103 \xeenl\u0103turat\u0103."],media:[],"Double-check your settings before publishing.":["Verific\u0103-\u021bi de dou\u0103 ori set\u0103rile \xeenainte de publicare."],"Generating preview\u2026":["Generez previzualizarea..."],"Edit or update the image":["Editeaz\u0103 sau actualizeaz\u0103 imaginea"],Media:["Media"],"Navigate to the nearest toolbar.":["Navigheaz\u0103 la cea mai apropiat\u0103 bar\u0103 de unelte."],"Document tools":["Instrumente pentru documente"],"Document and block tools":["Instrumente pentru documente \u0219i blocuri"],"Embed a video from your media library or upload a new one.":["\xcenglobeaz\u0103 un video din biblioteca media sau \xeencarc\u0103 unul nou."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insereaz\u0103 o poezie. Folose\u0219te formatele speciale de spa\u021biere. Sau citeaz\u0103 versurile c\xe2ntecului."],"Add white space between blocks and customize its height.":["Adaug\u0103 spa\u021biu gol \xeentre blocuri \u0219i le personalizeaz\u0103 \xeen\u0103l\u021bimea."],"Insert additional custom elements with a WordPress shortcode.":["Insereaz\u0103 elemente personalizate suplimentare cu un scurtcod WordPress."],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Accentueaz\u0103 vizual textul citat. \u201eCit\xe2nd pe al\u021bii, ne cit\u0103m pe noi \xeen\u0219ine.\u201d \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Accentueaz\u0103 vizual un citat din textul t\u0103u."],"Start with the building block of all narrative.":["\xcencepe cu blocul pentru construirea \xeentregii nara\u021biuni."],"Separate your content into a multi-page experience.":["Separ\u0103-\u021bi con\u021binutul \xeentr-o experien\u021b\u0103 pe mai multe pagini."],"Set media and words side-by-side for a richer layout.":["Seteaz\u0103 media \u0219i cuvintele adiacente media pentru un aranjament mai bogat."],"Media & Text Settings":["Set\u0103ri media \u0219i text"],"Create a bulleted or numbered list.":["Creeaz\u0103 o list\u0103 cu buline sau numerotat\u0103."],"Display a list of your most recent comments.":["Afi\u0219eaz\u0103 o list\u0103 cu cele mai recente comentarii."],"Insert an image to make a visual statement.":["Insereaz\u0103 o imagine pentru a avea o expunere vizual\u0103."],"Add custom HTML code and preview it as you edit.":["Adaug\u0103 cod HTML personalizat \u0219i previzualizeaz\u0103-l pe m\u0103sur\u0103 ce editezi."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introdu sec\u021biuni noi \u0219i organizeaz\u0103 con\u021binutul pentru a ajuta vizitatorii (\u0219i motoarele de c\u0103utare) s\u0103 \xeen\u021beleag\u0103 structura con\u021binutului t\u0103u."],"Display multiple images in a rich gallery.":["Afi\u0219eaz\u0103 mai multe imagini \xeentr-o galerie bogat\u0103."],"Add a link to a downloadable file.":["Adaug\u0103 o leg\u0103tur\u0103 la un fi\u0219ier ce poate fi desc\u0103rcat."],"Embed videos, images, tweets, audio, and other content from external sources.":["\xcenglobeaz\u0103 videouri, imagini, twituri, fi\u0219iere audio \u0219i alt con\u021binut din surse externe."],"Resize for smaller devices":["Redimensioneaz\u0103 pentru dispozitive mai mici"],"This embed may not preserve its aspect ratio when the browser is resized.":["Aceast\u0103 \xeenglobare ar putea s\u0103 nu-\u0219i p\u0103streze raportul de aspect c\xe2nd navigatorul este redimensionat."],"This embed will preserve its aspect ratio when the browser is resized.":["Aceast\u0103 \xeenglobare \xee\u0219i va p\u0103stra raportul de aspect c\xe2nd navigatorul este redimensionat."],"Embed an Animoto video.":["\xcenglobeaz\u0103 un video Animoto."],"Embed a Vimeo video.":["\xcenglobeaz\u0103 un video Vimeo."],"Embed Flickr content.":["\xcenglobeaz\u0103 con\u021binut Flickr."],"Embed Spotify content.":["\xcenglobeaz\u0103 con\u021binut Spotify."],"Embed SoundCloud content.":["\xcenglobeaz\u0103 con\u021binut SoundCloud."],"Embed a WordPress post.":["\xcenglobeaz\u0103 un articol WordPress."],"Embed an Instagram post.":["\xcenglobeaz\u0103 un articol Instagram."],"Embed a Facebook post.":["\xcenglobeaz\u0103 un articol Facebook."],"Embed a WordPress.tv video.":["\xcenglobeaz\u0103 un video WordPress.tv."],"Embed a VideoPress video.":["\xcenglobeaz\u0103 un video VideoPress."],"Embed a Tumblr post.":["\xcenglobeaz\u0103 un articol Tumblr."],"Embed a TED video.":["\xcenglobeaz\u0103 un video TED."],"Embed Speaker Deck content.":["\xcenglobeaz\u0103 con\u021binut Speaker Deck."],"Embed a YouTube video.":["\xcenglobeaz\u0103 un video YouTube."],"Embed SmugMug content.":["\xcenglobeaz\u0103 con\u021binut SmugMug."],"Embed Slideshare content.":["\xcenglobeaz\u0103 con\u021binut Slideshare."],"Embed Scribd content.":["\xcenglobeaz\u0103 con\u021binut Scribd."],"Embed Screencast content.":["\xcenglobeaz\u0103 con\u021binut Screencast."],"Embed ReverbNation content.":["\xcenglobeaz\u0103 con\u021binut ReverbNation."],"Embed a Reddit thread.":["\xcenglobeaz\u0103 un fir Reddit."],"Embed Polldaddy content.":["\xcenglobeaz\u0103 con\u021binut Polldaddy."],"Embed Mixcloud content.":["\xcenglobeaz\u0103 con\u021binut Mixcloud."],"Embed a tweet.":["\xcenglobeaz\u0103 un twit."],"Embed Meetup.com content.":["\xcenglobeaz\u0103 con\u021binut Meetup.com."],"Embed Kickstarter content.":["\xcenglobeaz\u0103 con\u021binut Kickstarter."],"Embed Issuu content.":["\xcenglobeaz\u0103 con\u021binut Issuu."],"Embed Imgur content.":["\xcenglobeaz\u0103 con\u021binut Imgur."],"Embed Hulu content.":["\xcenglobeaz\u0103 con\u021binut Hulu."],"Embed a Dailymotion video.":["\xcenglobeaz\u0103 un video Dailymotion."],"Embed CollegeHumor content.":["\xcenglobeaz\u0103 con\u021binut CollegeHumor."],"Embed Cloudup content.":["\xcenglobeaz\u0103 con\u021binut Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Adaug\u0103 o imagine sau un video cu o suprapunere de text \u2014 excelent\u0103 pentru anteturi."],"Display code snippets that respect your spacing and tabs.":["Afi\u0219eaz\u0103 fragmente de cod care respect\u0103 spa\u021bierea \u0219i filele."],"Use the classic WordPress editor.":["Folose\u0219te editorul clasic WordPress."],"Display a list of all categories.":["Afi\u0219eaz\u0103 o list\u0103 cu toate categoriile."],"Embed a simple audio player.":["\xcenglobeaz\u0103 un player audio simplu."],"noun\x04View":["Vizualizare"],"editor button\x04Left to right":["De la st\xe2nga la dreapta"],"Save as Pending":["Salveaz\u0103 ca \xeen a\u0219teptare"],"%s address":["Adres\u0103 %s"],"Paste or type URL":["Plaseaz\u0103 sau introdu URL-ul"],"Insert from URL":["Insereaz\u0103 din URL"],"Block Navigator":[],Styles:["Stiluri"],"Advanced Panels":["Panouri avansate"],"Document Panels":["Panouri cu documente"],General:["Generale"],"Open the block navigation menu.":["Deschide meniul de navigare \xeen blocuri."],"Work without distraction":["Lucrezi f\u0103r\u0103 distragerea aten\u021biei"],"Focus on one block at a time":["Te concentrezi numai pe un bloc la un moment dat"],"Access all block and document tools in a single place":["Accesezi toate instrumentele pentru blocuri \u0219i documente dintr-un singur loc"],Options:["Op\u021biuni"],"(opens in a new tab)":["(se deschide \xeentr-o fila nou\u0103)"],Minutes:["Minute"],Hours:["Ore"],Time:[],Year:["An"],Day:["Zi"],December:["Decembrie"],November:["Noiembrie"],October:["Octombrie"],September:["Septembrie"],August:["August"],July:["Iulie"],June:["Iunie"],May:["Mai"],April:["Aprilie"],March:["Martie"],February:["Februarie"],January:["Ianuarie"],Month:["Lun\u0103"],Date:["Dat\u0103"],"Go to the first (home) or last (end) day of a week.":["Mergi la prima sau la ultima zi a s\u0103pt\u0103m\xe2nii."],"Home/End":["Prima/ultima"],"Home and End":["Prima \u0219i ultima"],"Move backward (PgUp) or forward (PgDn) by one month.":["Mut\u0103 \xeenapoi (PgUp) sau \xeenainte (PgDn) cu o lun\u0103."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Pagin\u0103 \xeenainte \u0219i pagin\u0103 \xeenapoi"],"Move backward (up) or forward (down) by one week.":["Mut\u0103 \xeenapoi (\xeen sus) \u0219i \xeenainte (\xeen jos) cu o s\u0103pt\u0103m\xe2n\u0103."],"Up and Down Arrows":["S\u0103ge\u021bi sus \u0219i jos"],"Move backward (left) or forward (right) by one day.":["Mut\u0103 \xeenapoi (st\xe2nga) \u0219i \xeenainte (dreapta) cu o zi."],"Left and Right Arrows":["S\u0103ge\u021bi st\xe2nga \u0219i dreapta"],"Select the date in focus.":["Selecteaz\u0103 data dorit\u0103."],"Navigating with a keyboard":["Navigare cu o tastatur\u0103"],"Click the desired day to select it.":["D\u0103 clic pe ziua dorit\u0103 pentru a o selecta."],"Click the right or left arrows to select other months in the past or the future.":["D\u0103 clic pe s\u0103geata dreapta sau st\xe2nga pentru a selecta luni anterioare sau urm\u0103toare."],"Click to Select":["D\u0103 clic pentru a selecta"],"Calendar Help":["Ajutor pentru calendar"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Folose\u0219te tastele s\u0103ge\u021bi pentru a modifica culoarea de baz\u0103. Mut\u0103 \xeen sus pentru culori mai deschise, \xeen jos pentru culori mai \xeenchise, la st\xe2nga pentru a reduce satura\u021bia \u0219i la dreapta pentru a cre\u0219te satura\u021bia."],"Choose a shade":["Alege o umbr\u0103"],"Change color format":["Modific\u0103 formatul de culoare"],"Color value in HSL":["Valori de culoare \xeen HSL"],"Color value in RGB":["Valori de culoare \xeen RGB"],"Color value in hexadecimal":["Valori de culoare \xeen hexazecimal"],"RGB mode active":["Modul RGB este activ"],"Hex color mode active":[],"Hue/saturation/lightness mode active":["Modul nuan\u021b\u0103/satura\u021bie/luminozitate este activ"],"Move the arrow left or right to change hue.":["Mut\u0103 cu s\u0103geata st\xe2nga sau dreapta pentru a modifica nuan\u021ba."],"Hue value in degrees, from 0 to 359.":["Valoarea nuan\u021bei m\u0103surat\u0103 \xeen grade pe cercul de culoare, de la 0 la 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valoarea alfa, de la 0 (transparent) la 1 (complet opac)."],Stripes:["Dungi"],"Your site doesn\u2019t include support for this block.":["Situl t\u0103u nu include suport pentru acest bloc."],"Unrecognized Block":["Bloc nerecunoscut"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Situl t\u0103u nu include suport pentru blocul \u201e%s\u201d. Po\u021bi l\u0103sa acest bloc intact sau \xeel po\u021bi \xeenl\u0103tura complet."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Situl t\u0103u nu include suport pentru blocul \u201e%s\u201d. Po\u021bi l\u0103sa acest bloc intact, \xeei po\u021bi converti con\u021binutul \xeentr-un bloc HTML personalizat sau \xeel po\u021bi \xeenl\u0103tura complet."],"Media area":["Zon\u0103 media"],"Media & Text":["Media \u0219i text"],"Show media on right":["Arat\u0103 media \xeen dreapta"],"Show media on left":["Arat\u0103 media \xeen st\xe2nga"],"Open in New Tab":["Deschide \xeentr-o fil\u0103 nou\u0103"],Cover:["Copert\u0103"],"Border Settings":["Set\u0103ri chenar"],"Edit media":["Editeaz\u0103 media"],Medium:[],"Paste URL or type to search":[],Terms:["Termeni"],"Your work will be published at the specified date and time.":["Lucrarea ta va fi publicat\u0103 la data \u0219i ora specificate."],"Are you ready to schedule?":["E\u0219ti preg\u0103tit ca s\u0103 programezi?"],"Always show pre-publish checks.":["Arat\u0103 \xeentotdeauna verific\u0103rile \xeenainte de publicare."],"Take Over":["Preia controlul"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\xcen prezent, la acest articol lucreaz\u0103 un alt utilizator, asta \xeenseamn\u0103 c\u0103 nu po\u021bi face modific\u0103ri dec\xe2t dac\u0103 preiei controlul."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["\xcen prezent, la acest articol lucreaz\u0103 %s, asta \xeenseamn\u0103 c\u0103 nu po\u021bi face modific\u0103ri dec\xe2t dac\u0103 preiei controlul."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\xcen prezent, un alt utilizator are controlul edit\u0103rii acestui articol. Nu te impacienta, modific\u0103rile pe care le-ai f\u0103cut p\xe2n\u0103 acum au fost salvate."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\xcen prezent, %s are controlul edit\u0103rii acestui articol. Nu te impacienta, modific\u0103rile pe care le-ai f\u0103cut p\xe2n\u0103 acum au fost salvate."],Avatar:["Avatar"],"This post is already being edited.":["Acest articol este editat acum."],"Someone else has taken over this post.":["Altcineva a preluat controlul acestui articol."],"This block contains unexpected or invalid content.":["Acest bloc con\u021bine con\u021binut nea\u0219teptat sau invalid."],"Resolve Block":["Corecteaz\u0103 blocul"],"Convert to HTML":["Converte\u0219te \xeen HTML"],"This block can only be used once.":["Acest bloc poate fi folosit numai o singur\u0103 dat\u0103."],"Exit Code Editor":["Ie\u0219i din editorul de cod"],"Editing Code":["Editez codul"],"Solid Color":["Culoare dens\u0103"],"Main Color":["Culoare principal\u0103"],HTML:["HTML"],"Write HTML\u2026":["Scrie HTML\u2026"],"Media Settings":["Set\u0103ri media"],"Overlay Color":["Suprapune culoarea"],Overlay:["Suprapune"],"Insert Media":["Insereaz\u0103 media"],"Reusable block imported successfully!":["Blocurile reutilizabile au fost importate cu succes!"],"Invalid Reusable Block JSON file":[],"Invalid JSON file":["Fi\u0219ier JSON invalid"],"Import from JSON":["Import\u0103 din JSON"],Backtick:["Apostrof"],Period:["Perioad\u0103"],Comma:["Virgul\u0103"],"Change type of %d block":[],Current:[],"After Conversion":["Dup\u0103 conversie"],"Change alignment":["Modific\u0103 alinierea"],"Change text alignment":["Modific\u0103 alinierea textului"],"%d block":["Un bloc","%d blocuri","%d de blocuri"],Escape:["Tasta Esc"],"Forward-slash":["Bar\u0103 \xeenclinat\u0103 dreapta"],"No archives to show.":["Nicio arhiv\u0103 de ar\u0103tat."],"This file is empty.":["Acest fi\u0219ier este gol."],"Sorry, this file type is not supported here.":["Regret, acest tip de fi\u0219ier nu este acceptat aici."],"Manage All Reusable Blocks":["Administreaz\u0103 toate blocurile reutilizabile"],Title:["Titlu"],"Fullscreen Mode":["Mod ecran \xeentreg"],"Beautiful landscape":["Peisaj frumos"],"Close panel":["\xcenchide panoul"],"Convert to Classic Block":["Converte\u0219te \xeen bloc clasic"],"Remove Poster Image":["\xcenl\u0103tur\u0103 imaginea poster"],"Select Poster Image":["Selecteaz\u0103 imaginea pentru poster"],"Poster Image":["Imagine poster"],"This block is deprecated. Please use the Columns block instead.":["Acest bloc este \xeenvechit. Te rog folose\u0219te \xeen schimb blocul Coloane."],"Text Columns (deprecated)":["Coloane text (\xeenvechit)"],"Row Count":["Num\u0103r de r\xe2nduri"],"Column Count":["Num\u0103r de coloane"],"This block is deprecated. Please use the Paragraph block instead.":["Acest bloc este \xeenvechit. Te rog folose\u0219te \xeen schimb blocul Paragraf."],"Subheading (deprecated)":["Subtitlu (\xeenvechit)"],blockquote:["citat"],"Change the block type after adding a new paragraph.":["Schimb\u0103 tipul de bloc dup\u0103 ad\u0103ugarea unui paragraf nou."],"Spotlight Mode":["Mod centrat pe bloc"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Etichetele ajut\u0103 utilizatorii \u0219i motoarele de c\u0103utare s\u0103 navigheze pe situl t\u0103u \u0219i s\u0103-\u021bi g\u0103seasc\u0103 con\u021binutul. Adaug\u0103 c\xe2teva cuvinte cheie pentru a-\u021bi descrie articolul."],"Add tags":["Adaug\u0103 etichete"],"Apply the \"%1$s\" format.":["Aplic\u0103 formatul \u201e%1$s\u201d."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Tema ta folose\u0219te formate de articol pentru a eviden\u021bia diverse tipuri de con\u021binut, cum ar fi imagini sau videouri. Folose\u0219te un format de articol pentru a vedea care-i stilul s\u0103u special."],"Use a post format":["Folose\u0219te un format de articol"],"Insert After":["Insereaz\u0103 dup\u0103"],"Insert Before":["Insereaz\u0103 \xeenainte"],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:[],"Insert a new block before the selected block(s).":["Insereaz\u0103 un bloc nou \xeenainte de blocul selectat (blocurile selectate)."],"Remove the selected block(s).":["\xcenl\u0103tur\u0103 blocul selectat (blocurile selectate)."],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual Editor and Code Editor.":[],"Navigate to the previous part of the editor (alternative).":[],"Navigate to the next part of the editor (alternative).":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":["\xcenl\u0103tur\u0103 o leg\u0103tur\u0103."],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard Shortcuts":[],"Thanks for testing Gutenberg!":["\xce\u021bi mul\u021bumim pentru testarea Gutenberg!"],"Help build Gutenberg":["Ajut\u0103 la construirea Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Dac\u0103 vrei s\u0103 afli mai multe despre cum s\u0103 construie\u0219ti blocuri suplimentare sau dac\u0103 e\u0219ti interesat s\u0103 aju\u021bi proiectul, mergi la depozitarul GitHub."],"The WordPress community":["Comunitatea WordPress"],"Code is Poetry":["Codul este poezie"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\x04More":[],"button to expand options\x04More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":["Identificator unic pentru obiect."],"Untitled Reusable Block":["Bloc reutilizabil f\u0103r\u0103 titlu"],Small:["Mic"],"(%s: %s)":["(%s: %s)"],Reusable:["Reutilizabil"],"(current %s: %s)":["(curent %s: %s)"],"Remove from Reusable Blocks":["\xcenl\u0103tur\u0103 din blocuri reutilizabile"],"Add to Reusable Blocks":["Adaug\u0103 \xeen blocuri reutilizabile"],"Keep as HTML":[],"Edit URL":["Editeaz\u0103 URL-ul"],"Color Settings":["Set\u0103ri culoare"],"The response is not a valid JSON response.":["R\u0103spunsul nu este un r\u0103spuns valid JSON."],"Editor publish":[],Muted:["F\u0103r\u0103 sunet"],"Video Settings":["Set\u0103ri video"],"recent comments":["comentarii recente"],"Latest Comments":["Ultimele comentarii"],"Display Excerpt":["Afi\u0219eaz\u0103 rezumatul"],"Display Date":["Afi\u0219eaz\u0103 data"],"Display Avatar":["Afi\u0219eaz\u0103 avatar"],"Latest Comments Settings":["Set\u0103ri ultimele comentarii"],"Number of Comments":["Num\u0103r de comentarii"],"Background Opacity":["Opacitate fundal"],Auto:["Automat"],Preload:["Pre-\xeenc\u0103rcare"],"Audio Settings":["Set\u0103ri audio"],"Display a monthly archive of your posts.":["Afi\u0219eaz\u0103 o arhiv\u0103 lunar\u0103 a articolelor tale."],"Display as Dropdown":["Afi\u0219eaz\u0103 ca list\u0103 derulant\u0103"],"Show Post Counts":["Arat\u0103 num\u0103rul de articole"],"Archives Settings":["Set\u0103ri arhive"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Suport"],"No comments to show.":["Niciun comentariu de ar\u0103tat."],"%1$s on %2$s":["%1$s pe %2$s"],"Select Post":["Selecteaz\u0103 articolul"],"Select Week":["Selecteaz\u0103 s\u0103pt\u0103m\xe2na"],"Select Day":["Selecteaz\u0103 ziua"],"Select Month":["Selecteaz\u0103 luna"],"Select Year":["Selecteaz\u0103 anul"],Archives:["Arhive"],"Very dark gray":["Gri foarte \xeenchis"],"Cyan bluish gray":["Gri alb\u0103strui cyan"],"Very light gray":["Gri foarte deschis"],"Vivid cyan blue":["Albastru cyan viu"],"Pale cyan blue":["Albastru cyan pal"],"Vivid green cyan":["Cyan verde viu"],"Light green cyan":["Cyan verde deschis"],"Luminous vivid amber":["Chihlimbar viu luminos"],"Luminous vivid orange":["Portocaliu viu luminos"],"Vivid red":["Ro\u0219u viu"],"Pale pink":["Roz pal"],"Inline image":["Imagine \xeen-linie"],"Available block types":["Tipuri de bloc disponibile"],"Transform To:":["Transform\u0103 \xeen:"],"Remove Block":["\xcenl\u0103tur\u0103 blocul"],"Open publish panel":["Deschide panoul de publicare"],Dots:["Puncte"],"Wide Line":["Linie lat\u0103"],Large:["Mare"],"Show download button":["Arat\u0103 butonul de desc\u0103rcare"],"Download button settings":["Set\u0103ri buton de desc\u0103rcare"],"Link To":["Leg\u0103tur\u0103 la"],"Text link settings":["Set\u0103ri leg\u0103tur\u0103 text"],pdf:["PDF"],document:["document"],"Copy URL":["Copiaz\u0103 URL-ul"],"Write file name\u2026":["Scrie numele fi\u0219ierului..."],"Edit file":["Editeaz\u0103 fi\u0219ierul"],File:["Fi\u0219ier"],"A single column within a columns block.":["O singur\u0103 coloan\u0103 \xeentr-un bloc de coloane."],Column:["Coloan\u0103"],Outline:["Contur"],Loop:["Bucl\u0103"],Autoplay:["Redare automat\u0103"],"Playback Controls":["Comenzi redare"],"Close dialog":["\xcenchide dialogul"],"Sorry, this file type is not permitted for security reasons.":["Regret, acest tip de fi\u0219ier nu este permis din motive de securitate."],"Disable tips":["Dezactiveaz\u0103 sfaturi"],"Got it":["Am \xeen\u021beles"],"See next tip":["Vezi urm\u0103torul sfat"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["C\xe2nd e\u0219ti gata, trimite-\u021bi lucrarea pentru a fi revizuit\u0103 \u0219i un editor o va putea aproba pentru tine."],"Are you ready to submit for review?":["E\u0219ti gata s\u0103 trimi\u021bi spre revizuire?"],"Replace image":["\xcenlocuie\u0219te imaginea"],"Remove image":["\xcenl\u0103tur\u0103 imaginea"],"Error while uploading file %s to the media library.":["Eroare \xeen timpul \xeenc\u0103rc\u0103rii fi\u0219ierului %s \xeen biblioteca media."],"This file exceeds the maximum upload size for this site.":["Fi\u0219ierul dep\u0103\u0219e\u0219te dimensiunea maxim\u0103 de \xeenc\u0103rcare pentru acest sit."],"View the autosave":["Vezi salvarea automat\u0103"],"There is an autosave of this post that is more recent than the version below.":["Exist\u0103 o salvare automat\u0103 a acestui articol care este mai recent\u0103 dec\xe2t versiunea de mai jos."],Autosaving:["Salvare automat\u0103"],"Enter URL here\u2026":["Introdu URL-ul aici..."],"Pin to toolbar":["Fixeaz\u0103 \xeen bara de unelte"],"Unpin from toolbar":["Anuleaz\u0103 fixarea din bara de unelte"],"Insert a table \u2014 perfect for sharing charts and data.":["Insereaz\u0103 un tabel \u2014 perfect pentru partajarea diagramelor \u0219i datelor."],"Fixed width table cells":["Celule de tabel cu l\u0103\u021bime fix\u0103"],"Table Settings":["Set\u0103ri tabel"],"Add text that respects your spacing and tabs, and also allows styling.":["Adaug\u0103 text care respect\u0103 spa\u021bierea \u0219i filele \u0219i permite, de asemenea, designul."],"Display a list of your most recent posts.":["Afi\u0219eaz\u0103 o list\u0103 cu cele mai recente articole."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Adaug\u0103 un bloc care afi\u0219eaz\u0103 con\u021binut extras de pe alte situri, cum ar fi Twitter, Instagram sau YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Adaug\u0103 un bloc care afi\u0219eaz\u0103 con\u021binut pe mai multe coloane, apoi adaug\u0103 blocurile de con\u021binut dorite."],"Error loading block: %s":["Eroare la \xeenc\u0103rcarea blocului: %s"],"Unknown error":["Eroare necunoscut\u0103"],"Embed Handler":[],"term\x04Remove %s":["\xcenl\u0103tur\u0103 %s"],"Copy the permalink":["Copiaz\u0103 leg\u0103tura permanent\u0103"],"Permalink copied":["Leg\u0103tur\u0103 permanent\u0103 copiat\u0103"],"Height in pixels":["\xcen\u0103l\u021bimea \xeen pixeli"],"Spacer Settings":["Set\u0103ri distan\u021bier"],Spacer:["Distan\u021bier"],"Toggle to show a large initial letter.":["Comut\u0103 pentru a ar\u0103ta o liter\u0103 ini\u021bial\u0103 mare."],"Showing large initial letter.":["Arat\u0103 litera ini\u021bial\u0103 mare."],"Name:":["Nume:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s din %3$s)"],"Remove item":["\xcenl\u0103tur\u0103 elementul"],"Color code: %s":["Cod culoare: %s"],"Skip to the selected block":["Sari la blocul selectat"],"Publish\u2026":["Public\u0103..."],"Schedule\u2026":["Programeaz\u0103..."],"Edit post permalink":["Editeaz\u0103 leg\u0103tura permanent\u0103 a articolului"],"Show Block Settings":["Arat\u0103 set\u0103ri bloc"],"Hide Block Settings":["Ascunde set\u0103ri bloc"],"Block settings closed":["Set\u0103ri bloc \xeenchise"],"Close plugin":["\xcenchide modulul"],"Link settings":["Set\u0103ri leg\u0103tur\u0103"],Unlink:["Anuleaz\u0103 leg\u0103tura"],"Page break":["Sf\xe2r\u0219it de pagin\u0103"],pagination:["pagina\u021bie"],"next page":["pagina urm\u0103toare"],"Image Size":["Dimensiune imagine"],Height:["\xcen\u0103l\u021bime"],Width:["L\u0103\u021bime"],"Image Dimensions":["Dimensiuni imagine"],"Thumbnails are not cropped.":["Miniaturile nu sunt decupate."],"Thumbnails are cropped to align.":["Miniaturile sunt decupate pentru aliniere."],"Media Library":["Bibliotec\u0103 Media"],Advanced:["Avansat"],"Add item":["Adaug\u0103 element"],"Reset the template":["Reseteaz\u0103 \u0219ablonul"],"Keep it as is":["P\u0103streaz\u0103-l a\u0219a cum este"],"The content of your post doesn\u2019t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":["Resetarea \u0219ablonului poate duce la pierderea con\u021binutului, vrei s\u0103 continui?"],"Document Statistics":["Statistici document"],"is now scheduled. It will go live on":["este programat acum. Va fi live pe"],Scheduled:["Programat"],"Scheduling\u2026":["Programez..."],"Code editor selected":["Editor de cod selectat"],"Visual editor selected":["Editor vizual selectat"],Plugins:["Module"],"Custom Size":["Dimensiune personalizat\u0103"],"Layout Elements":["Elemente aranjament"],"term\x04%s removed":["%s \xeenl\u0103turat"],"term\x04%s added":["%s ad\u0103ugat"],"imperative verb\x04Preview":["Previzualizeaz\u0103"],"Block deleted.":["Bloc \u0219ters."],"Block updated.":["Bloc actualizat."],"Block created.":["Bloc creat."],"Trashing failed":["Aruncarea la gunoi a e\u0219uat."],"Updating failed.":["Actualizarea a e\u0219uat."],"Scheduling failed.":["Programarea a e\u0219uat."],"Publishing failed.":["Publicarea a e\u0219uat."],"View Post":["Vezi articolul"],"You have unsaved changes. If you proceed, they will be lost.":["Ai modific\u0103ri nesalvate. Dac\u0103 continui, ele se vor pierde."],"Document Outline":[],Paragraphs:["Paragrafe"],Headings:[],Words:["Cuvinte"],"Content structure":["Structur\u0103 con\u021binut"],Public:["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protejat cu o parol\u0103 pe care o alegi. Numai cei care au parola pot vedea acest articol."],"Password Protected":["Protejat cu parol\u0103"],"Only visible to site admins and editors.":["Vizibil numai pentru administratorii \u0219i editori sitului."],Private:["Privat"],"Visible to everyone.":["Vizibil pentru toat\u0103 lumea."],"Post Visibility":["Vizibilitate articol"],"Would you like to privately publish this post now?":[],"Use a secure password":["Folose\u0219te o parol\u0103 sigur\u0103"],"Create password":["Creaz\u0103 parol\u0103"],"Move to Trash":["Arunc\u0103 la gunoi"],"Parent Term":["Termen p\u0103rinte"],"Parent Category":["Categorie p\u0103rinte"],"Add new term":["Adaug\u0103 termen nou"],"Add new category":["Adaug\u0103 categorie nou\u0103"],Term:["Termen"],Tag:["Etichet\u0103"],"Add New Term":["Adaug\u0103 termen nou"],"Add New Tag":["Adaug\u0103 etichet\u0103 nou\u0103"],"Switch to Draft":["Comut\u0103 la ciorn\u0103"],"Are you sure you want to unpublish this post?":["Sigur vrei s\u0103 anulezi publicarea acestui articol?"],Immediately:["Imediat"],"Save Draft":["Salveaz\u0103 ciorna"],Saving:["Salvez"],"Publish:":["Public\u0103:"],"Visibility:":["Vizibilitate:"],"Are you ready to publish?":[],"Copy Link":["Copiaz\u0103 leg\u0103tura"],"What\u2019s next?":["Ce urmeaz\u0103?"],"is now live.":["este live acum."],Published:["Publicat"],Schedule:["Programeaz\u0103"],Update:["Actualizeaz\u0103"],"Submit for Review":[],"Updating\u2026":["Actualizez..."],"Publishing\u2026":["Public..."],"Allow Pingbacks & Trackbacks":["Permite pingback-uri \u0219i trackback-uri"],"Permalink:":[],"Pending Review":[],"%d Revision":[],"Suggestion:":["Sugestie:"],"Post Format":[],Chat:[],Status:["Stare"],Standard:["Standard"],Aside:["Not\u0103"],"Set Featured Image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow Comments":[],"Template:":["\u0218ablon:"],"no parent":["f\u0103r\u0103 p\u0103rinte"],"no title":["f\u0103r\u0103 titlu"],Order:["Ordine"],"No blocks found.":["Niciun bloc g\u0103sit."],"%d result found.":[],Saved:["Salvat"],Embeds:["\xcenglob\u0103ri"],Blocks:["Blocuri"],"Search for a block":["Caut\u0103 un bloc"],"Add block":["Adaug\u0103 bloc"],"Add %s":["Adaug\u0103 %s"],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":["\xcencearc\u0103 recuperarea"],"The editor has encountered an unexpected error.":["Editorul a g\u0103sit o eroare nea\u0219teptat\u0103."],Undo:["Revenire"],Redo:[],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":["Stiluri bloc"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":["Mai multe op\u021biuni"],"Edit visually":["Editeaz\u0103 vizual"],Duplicate:[],"Blocks cannot be moved down as they are already at the bottom":["Blocurile nu pot fi mutate jos deoarece ele sunt deja \xeen partea de jos"],"Blocks cannot be moved up as they are already at the top":["Blocurile nu pot fi mutate sus deoarece sunt deja \xeen partea de sus"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Blocul %1$s este la \xeenceputul con\u021binutului \u0219i nu poate fi mutat %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Blocul %1$s este la sf\xe2r\u0219itul con\u021binutului \u0219i nu poate fi mutat %2$s"],"Block %s is the only block, and cannot be moved":["Blocul %s este singurul bloc \u0219i nu poate fi mutat"],"Edit as HTML":["Editeaz\u0103 ca HTML"],"Convert to Blocks":[],"Block: %s":["Bloc: %s"],"This block has encountered an error and cannot be previewed.":["Acest bloc a g\u0103sit o eroare \u0219i nu poate fi previzualizat."],"No block selected.":["Niciun bloc selectat."],"Transform into:":[],Remove:[],"Find original":[],"Copy All Content":[],"Copied!":[],"Additional settings are now available in the Editor block settings sidebar":[],Visibility:[],"Status & Visibility":["Stare \u0219i vizibilitate"],"Page Attributes":["Atribute pagin\u0103"],Block:["Bloc","%d blocuri","%d de blocuri"],Document:["Document"],"Featured Image":["Imagine reprezentativ\u0103"],"Close settings":["\xcenchide set\u0103rile"],"Editor content":[],Tools:["Unelte"],Editor:["Editor"],"Code Editor":["Editor de cod"],"Visual Editor":["Editor vizual"],"Editor top bar":["Bar\u0103 sus editor"],Settings:["Set\u0103ri"],Reset:["Reseteaz\u0103"],"Dismiss this notice":[],"Item removed.":["Element \xeenl\u0103turat."],"Item added.":["Element ad\u0103ugat."],"Drop files to upload":[],PM:[],AM:[],"An unknown error occurred.":[],"No results.":[],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":[],URL:["URL"],Submit:["Trimite"],Close:["\xcenchide"],"Insert link":[],"Edit link":[],Link:["Leg\u0103tur\u0103"],Strikethrough:["Barare"],Italic:["Cursiv"],Bold:["Aldin"],"Remove link":[],"Number of items":[],All:[],Category:[],"Z \u2192 A":[],"A \u2192 Z":[],"Oldest to Newest":[],"Newest to Oldest":[],"Order by":[],Select:[],"Select or Upload Media":[],Video:[],"Edit video":[],"Write\u2026":[],poetry:[],Verse:[],"New Column":[],"Delete Column":[],"Add Column After":[],"Add Column Before":[],"Delete Row":[],"Add Row After":[],"Add Row Before":[],"Edit table":[],Table:[],"Write subheading\u2026":[],"Write shortcode here\u2026":[],Shortcode:[],divider:[],"horizontal-line":[],Separator:[],Quote:[],"Write citation\u2026":[],"Write quote\u2026":[],Pullquote:[],"Write preformatted text\u2026":[],Preformatted:[],text:[],Paragraph:[],"Font Size":[],"Drop Cap":[],"Text Settings":[],"Read more":[],"Write list\u2026":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],List:[],"recent posts":[],"No posts found.":[],"Latest Posts":[],"Display post date":[],"Grid view":[],"List view":[],photo:[],"Image Settings":[],Image:[],Preview:[],embed:[],"Custom HTML":[],subtitle:[],title:[],Heading:[],"Write heading\u2026":[],"Heading %d":[],Level:[],"Heading Settings":[],photos:[],images:[],"Remove Image":[],None:[],"Media File":[],"Attachment Page":[],"Crop Images":[],"Gallery Settings":[],Gallery:[],Classic:[],video:[],audio:[],music:[],image:[],blog:[],post:[],"Embedded content from %s":[],"Enter URL to embed here\u2026":[],"%s URL":[],"Embedding\u2026":[],"Write title\u2026":[],"Fixed Background":[],"Edit image":[],Columns:[],Experiments:[],Code:[],"Write code\u2026":[],Categories:[],"Show Hierarchy":[],"Show post counts":[],"Categories Settings":[],"Add text\u2026":[],Button:[],Apply:[],"Text Color":[],"Background Color":[],"Block has been deleted or is unavailable.":[],"Reusable Blocks":[],Cancel:[],Edit:[],"Edit audio":[],"Write caption\u2026":[],"Use URL":[],Audio:[],Upload:[],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],Clear:[],"Custom color picker":[],"Color: %s":[],"Full Width":[],"Wide Width":[],Widgets:[],Formatting:[],"Common Blocks":["Blocuri comune"],"Align Right":["Aliniaz\u0103 la dreapta"],"Align Center":["Aliniaz\u0103 la centru"],"Align Left":["Aliniaz\u0103 la st\xe2nga"],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["Adaug\u0103 titlu"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["Autor"],Slug:["Descriptor"],Discussion:["Discu\u021bii"],"Custom Fields":["C\xe2mpuri personalizate"],Excerpt:["Rezumat"],Publish:["Public\u0103"],Metadata:["Metadate"],Save:["Salveaz\u0103"],Documentation:["Documenta\u021bie"],"Select Category":["Selecteaz\u0103 categoria"],"(Untitled)":["(F\u0103r\u0103 titlu)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Pentru a func\u021biona corect, Gutenberg necesit\u0103 WordPress %s sau o versiune ulterioar\u0103. Te rog actualizeaz\u0103 WordPress \xeenainte de a activa Gutenberg."],"Gutenberg Team":["Echipa Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demonstra\u021bie"],"%s ago":["Acum %s"],"Block style name must be a string.":["Numele stilului blocului trebuie s\u0103 fie un \u0219ir de caractere."]}},860,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// \"\u0411\u043b\u043e\u043a\" - \u044d\u0442\u043e \u0430\u0431\u0441\u0442\u0440\u0430\u043a\u0442\u043d\u044b\u0439 \u0442\u0435\u0440\u043c\u0438\u043d, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439\n// \u0434\u043b\u044f \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u0435\u0434\u0438\u043d\u0438\u0446 \u0440\u0430\u0437\u043c\u0435\u0442\u043a\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435\n// \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e, \u0444\u043e\u0440\u043c\u0438\u0440\u0443\u044e\u0442\n// \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0438\u043b\u0438 \u043c\u0430\u043a\u0435\u0442 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b.\nregisterBlockType( name, settings );"],"You are probably offline.":["\u0412\u044b, \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e, \u043d\u0435 \u0432 \u0441\u0435\u0442\u0438."],"Justify items right":["\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0441\u043f\u0440\u0430\u0432\u0430"],"Justify items center":["\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u043f\u043e \u0446\u0435\u043d\u0442\u0440\u0443"],"Justify items left":["\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0441\u043b\u0435\u0432\u0430"],"Change items justification":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432"],"The media file has been replaced":["\u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b \u0431\u044b\u043b \u0437\u0430\u043c\u0435\u043d\u0451\u043d"],Replace:["\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c"],"Choose pattern":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0448\u0430\u0431\u043b\u043e\u043d"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0432\u044b \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0435\u0441\u044c \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f. \u0427\u0442\u043e\u0431\u044b \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u0432 \u0440\u0435\u0436\u0438\u043c \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438, \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u0443 Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["\u0412 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0412\u044b \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0435\u0441\u044c \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438. \u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043f\u043e \u0431\u043b\u043e\u043a\u0430\u043c \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043b\u0430\u0432\u0438\u0448\u0438 Tab. \u0414\u043b\u044f \u0432\u044b\u0445\u043e\u0434\u0430 \u0438\u0437 \u0440\u0435\u0436\u0438\u043c\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438 \u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0433\u043e \u0431\u043b\u043e\u043a\u0430 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u0443 Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u0438 \u0441\u043e \u0441\u0442\u0440\u0435\u043b\u043a\u0430\u043c\u0438 \u0432\u043b\u0435\u0432\u043e \u0438\u043b\u0438 \u0432\u043f\u0440\u0430\u0432\u043e \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043c\u044b\u0448\u0438, \u0447\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0433\u0440\u0430\u0434\u0438\u0435\u043d\u0442\u0430. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443, \u0447\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0446\u0432\u0435\u0442 \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u0443\u044e \u0442\u043e\u0447\u043a\u0443."],"Gradient control point at position %1$s with color code %2$s.":["\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u0430\u044f \u0442\u043e\u0447\u043a\u0430 \u0433\u0440\u0430\u0434\u0438\u0435\u043d\u0442\u0430 \u0432 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 %1$s \u0441 \u043a\u043e\u0434\u043e\u043c \u0446\u0432\u0435\u0442\u0430 %2$s."],"Preset Size":["\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u044e\u0442 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0434\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0431\u043b\u043e\u043a\u043e\u0432. \u0427\u0442\u043e\u0431\u044b \u0432\u044b\u0431\u0440\u0430\u0442\u044c - \u043d\u0430\u0436\u043c\u0438\u0442\u0435 Escape, \u0447\u0442\u043e\u0431\u044b \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043a \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e - \u043d\u0430\u0436\u043c\u0438\u0442\u0435 Enter."],"Open Media Library":["\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443 \u0444\u0430\u0439\u043b\u043e\u0432"],Next:["\u0412\u043f\u0435\u0440\u0451\u0434"],Previous:["\u041d\u0430\u0437\u0430\u0434"],Finish:["\u0413\u043e\u0442\u043e\u0432\u043e"],"Page %1$d of %2$d":["\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 %1$d \u0438\u0437 %2$d"],"Guide controls":["\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0435\u0439"],"Remove Control Point":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u0443\u044e \u0442\u043e\u0447\u043a\u0443"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["\u041a\u0430\u0436\u0434\u044b\u0439 \u0431\u043b\u043e\u043a \u043f\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u043e \u0441\u0432\u043e\u0438\u043c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u043d\u0430\u0431\u043e\u0440\u043e\u043c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f. \u0414\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0430\u043a\u0438\u0445 \u0432\u0435\u0449\u0435\u0439 \u043a\u0430\u043a: \u0446\u0432\u0435\u0442, \u0448\u0438\u0440\u0438\u043d\u0430 \u0438 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435. \u041e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0438 \u0441\u043a\u0440\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u043a\u043e\u0433\u0434\u0430 \u0443 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u0431\u043b\u043e\u043a."],"Make each block your own":["\u0421\u0434\u0435\u043b\u0430\u0439\u0442\u0435 \u043a\u0430\u0436\u0434\u044b\u0439 \u0431\u043b\u043e\u043a \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["\u0412 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0435 WordPress \u043a\u0430\u0436\u0434\u044b\u0439 \u0430\u0431\u0437\u0430\u0446, \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u0438\u0434\u0435\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u044b \u0432 \u0432\u0438\u0434\u0435 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \"\u0431\u043b\u043e\u043a\u0430\" \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e."],"ADD MEDIA":["\u0414\u041e\u0411\u0410\u0412\u0418\u0422\u042c \u041c\u0415\u0414\u0418\u0410"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":["\u0412\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0432\u0430\u043c \u0431\u043b\u043e\u043a\u0438 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435 \u0431\u043b\u043e\u043a\u043e\u0432. \u0412\u044b \u043d\u0430\u0439\u0434\u0435\u0442\u0435 \u0435\u0451 \u0432\u0435\u0437\u0434\u0435, \u0433\u0434\u0435 \u0432\u0438\u0434\u0438\u0442\u0435 \u0438\u043a\u043e\u043d\u043a\u0443."],"Get to know the Block Library":["\u041f\u043e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u043e\u0439 \u0431\u043b\u043e\u043a\u043e\u0432"],"Welcome Guide":["\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f"],"Enable Page Templates":["\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u0432"],"Page Templates":["\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u0432"],"Enable Full Site Editing Demo Templates":["\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u043e\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u0430\u0439\u0442\u0430 \u0434\u0435\u043c\u043e-\u0448\u0430\u0431\u043b\u043e\u043d\u044b"],"Full Site Editing Demo Templates":["\u041f\u043e\u043b\u043d\u043e\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u0430\u0439\u0442\u0430 \u0434\u0435\u043c\u043e-\u0448\u0430\u0431\u043b\u043e\u043d\u044b"],"Welcome to the Block Editor":["\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0432 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0431\u043b\u043e\u043a\u043e\u0432"],"Get started":["\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b"],inserter:["\u0412\u0441\u0442\u0430\u0432\u043a\u0430"],"Post Title":["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0437\u0430\u043f\u0438\u0441\u0438"],"Add nofollow to link":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c nofollow \u0432 \u0441\u0441\u044b\u043b\u043a\u0443"],"Link Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0441\u0441\u044b\u043b\u043e\u043a"],"Add Submenu":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u0434\u043c\u0435\u043d\u044e"],"Add link\u2026":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443..."],Dark:["\u0422\u0451\u043c\u043d\u044b\u0439"],Light:["\u0421\u0432\u0435\u0442\u043b\u044b\u0439"],recording:["\u0437\u0430\u043f\u0438\u0441\u044c"],podcast:["\u043f\u043e\u0434\u043a\u0430\u0441\u0442"],sound:["\u0437\u0432\u0443\u043a"],"Array of instance changes":["\u041c\u0430\u0441\u0441\u0438\u0432 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u0430"],"Current widget instance":["\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440 \u0432\u0438\u0434\u0436\u0435\u0442\u0430"],"Template parts to include in your templates.":["\u0427\u0430\u0441\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d\u0430 \u0434\u043b\u044f \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0432 \u0432\u0430\u0448\u0438 \u0448\u0430\u0431\u043b\u043e\u043d\u044b."],"Template parts list":["\u0421\u043f\u0438\u0441\u043e\u043a \u0447\u0430\u0441\u0442\u0435\u0439 \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"Template parts list navigation":["\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043f\u043e \u0441\u043f\u0438\u0441\u043a\u0443 \u0447\u0430\u0441\u0442\u0435\u0439 \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"Filter template parts list":["\u0424\u0438\u043b\u044c\u0442\u0440 \u0441\u043f\u0438\u0441\u043a\u0430 \u0447\u0430\u0441\u0442\u0435\u0439 \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"Uploaded to this template part":["\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u043e \u0432 \u044d\u0442\u0443 \u0447\u0430\u0441\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"Insert into template part":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432 \u0447\u0430\u0441\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"Template part archives":["\u0410\u0440\u0445\u0438\u0432\u044b \u0447\u0430\u0441\u0442\u0435\u0439 \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"No template parts found in Trash.":["\u0412 \u043a\u043e\u0440\u0437\u0438\u043d\u0435 \u043d\u0435\u0442 \u0447\u0430\u0441\u0442\u0435\u0439 \u0448\u0430\u0431\u043b\u043e\u043d\u0430."],"No template parts found.":["\u0427\u0430\u0441\u0442\u0435\u0439 \u0448\u0430\u0431\u043b\u043e\u043d\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e."],"Parent Template Part:":["\u0420\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0447\u0430\u0441\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d\u0430:"],"Search Template Parts":["\u041f\u043e\u0438\u0441\u043a \u0447\u0430\u0441\u0442\u0435\u0439 \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"All Template Parts":["\u0412\u0441\u0435 \u0447\u0430\u0441\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"View Template Part":["\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0447\u0430\u0441\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"Edit Template Part":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0447\u0430\u0441\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"New Template Part":["\u041d\u043e\u0432\u0430\u044f \u0447\u0430\u0441\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"Add New Template Part":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u0447\u0430\u0441\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"Template Part\x04Add New":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439"],"Admin Menu text\x04Template Parts":["\u0427\u0430\u0441\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"Template Part":["\u0427\u0430\u0441\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"Template Parts":["\u0427\u0430\u0441\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d\u0430"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["\u041d\u0430\u0434 \u0447\u0435\u043c \u0440\u0430\u0437\u0432\u043e\u0437\u0438\u043b\u0441\u044f \u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u0431\u043e\u0433 \u041f\u0430\u043d,\n\u0412\u043d\u0438\u0437\u0443 \u0432 \u043a\u0430\u043c\u044b\u0448\u0430\u0445 \u043d\u0430 \u0440\u0435\u043a\u0435?\n\u041d\u0430\u043d\u043e\u0441\u0438\u0442 \u043f\u043e\u0432\u0441\u044e\u0434\u0443 \u0440\u0430\u0437\u043e\u0440 \u0434\u0430 \u0438\u0437\u044a\u044f\u043d,\n\u041f\u043b\u0435\u0441\u043a\u0430\u044f\u0441\u044c \u0438 \u0431\u0440\u044b\u0437\u0436\u0430 \u043a\u043e\u0437\u043b\u0438\u043d\u043e\u0439 \u043d\u043e\u0433\u043e\u0439,\n\u041a\u0443\u0432\u0448\u0438\u043d\u043a\u0430\u043c \u043f\u043e\u043c\u044f\u043b \u043e\u043d \u0443\u0431\u043e\u0440 \u0437\u043e\u043b\u043e\u0442\u043e\u0439,\n\u0421\u0442\u0440\u0435\u043a\u043e\u0437 \u0440\u0430\u0437\u043e\u0433\u043d\u0430\u043b \u043f\u043e \u0440\u0435\u043a\u0435."],Navigation:["\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f"],"Loading Navigation\u2026":["\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438\u2026"],"Navigation Structure":["\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438"],"Create empty":["\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0443\u0441\u0442\u043e\u0439"],"Create from all top pages":["\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u0437 \u0432\u0441\u0435\u0445 \u0432\u0435\u0440\u0445\u043d\u0438\u0445 \u0441\u0442\u0440\u0430\u043d\u0438\u0446"],"Create a Navigation from all existing pages, or create an empty one.":["\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044e \u0438\u0437 \u0432\u0441\u0435\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u0438\u043b\u0438 \u0441\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u043f\u0443\u0441\u0442\u0443\u044e."],"Navigation Link":["\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438"],"(Note: many devices and browsers do not display this text.)":["(\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435: \u043c\u043d\u043e\u0433\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0438 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u044b \u043d\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u044e\u0442 \u044d\u0442\u043e\u0442 \u0442\u0435\u043a\u0441\u0442.)"],"Describe the role of this image on the page.":["\u041e\u043f\u0438\u0448\u0438\u0442\u0435 \u0440\u043e\u043b\u044c \u044d\u0442\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043e\u0434\u043d\u043e\u0433\u043e \u0438 \u0442\u043e\u0433\u043e \u0436\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0440\u0430\u0437\u043c\u0435\u0440\u043e\u0432 \u044d\u043a\u0440\u0430\u043d\u0430 \u0438\u043b\u0438 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u0440\u0430\u0437\u043c\u0435\u0440\u0430 \u044d\u043a\u0440\u0430\u043d\u0430."],"Use the same %s on all screensizes.":["\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u043e\u0434\u0438\u043d \u0438 \u0442\u043e\u0442 \u0436\u0435 %s \u043d\u0430 \u0432\u0441\u0435\u0445 \u044d\u043a\u0440\u0430\u043d\u0430\u0445."],"Large screens":["\u0411\u043e\u043b\u044c\u0448\u0438\u0435 \u044d\u043a\u0440\u0430\u043d\u044b"],"Medium screens":["\u0421\u0440\u0435\u0434\u043d\u0438\u0435 \u044d\u043a\u0440\u0430\u043d\u044b"],"Small screens":["\u041c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u0435 \u044d\u043a\u0440\u0430\u043d\u044b"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["\u0423\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e\u043c %1$s \u0434\u043b\u044f %2$s \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430."],Change:["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c"],"Currently selected":["\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0432\u044b\u0431\u0440\u0430\u043d\u043e"],"Search or type url":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441 \u0438\u043b\u0438 URL"],"Press ENTER to add this link":["\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 ENTER, \u0447\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u044d\u0442\u0443 \u0441\u0441\u044b\u043b\u043a\u0443"],"Currently selected link settings":["\u0422\u0435\u043a\u0443\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0439 \u0441\u0441\u044b\u043b\u043a\u0438"],"Generic label for block inserter button\x04Add block":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0431\u043b\u043e\u043a"],"directly add the only allowed block\x04Add %s":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c %s"],"%s block added":["%s \u0431\u043b\u043e\u043a \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d"],"Move %s":["\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c %s"],"Extra Large":["\u041e\u0447\u0435\u043d\u044c \u043a\u0440\u0443\u043f\u043d\u044b\u0439"],"Block breadcrumb":["\u0411\u043b\u043e\u043a \u0445\u043b\u0435\u0431\u043d\u044b\u0445 \u043a\u0440\u043e\u0448\u0435\u043a"],"Site Title":["\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0430\u0439\u0442\u0430"],"Open Colors Selector":["\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0432\u044b\u0431\u043e\u0440 \u0446\u0432\u0435\u0442\u0430"],"Overlay Gradient":["\u041d\u0430\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0433\u0440\u0430\u0434\u0438\u0435\u043d\u0442\u0430"],"Templates list":["\u0421\u043f\u0438\u0441\u043e\u043a \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u0432"],"Templates list navigation":["\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043f\u043e \u0441\u043f\u0438\u0441\u043a\u0443 \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u0432"],"Filter templates list":["\u0424\u0438\u043b\u044c\u0442\u0440 \u0441\u043f\u0438\u0441\u043a\u0430 \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u0432"],"Uploaded to this template":["\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u043e \u0432 \u044d\u0442\u043e\u0442 \u0448\u0430\u0431\u043b\u043e\u043d"],"Insert into template":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432 \u0448\u0430\u0431\u043b\u043e\u043d"],"Template archives":["\u0410\u0440\u0445\u0438\u0432\u044b \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u0432"],"No templates found in Trash.":["\u041d\u0435\u0442 \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u0432 \u0432 \u043a\u043e\u0440\u0437\u0438\u043d\u0435."],"No templates found.":["\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b."],"Parent Template:":["\u0420\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0448\u0430\u0431\u043b\u043e\u043d:"],"Search Templates":["\u041f\u043e\u0438\u0441\u043a \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u0432"],"All Templates":["\u0412\u0441\u0435 \u0448\u0430\u0431\u043b\u043e\u043d\u044b"],"View Template":["\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d"],"Edit Template":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d"],"New Template":["\u041d\u043e\u0432\u044b\u0439 \u0448\u0430\u0431\u043b\u043e\u043d"],"Add New Template":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0448\u0430\u0431\u043b\u043e\u043d"],"Template\x04Add New":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439"],"Admin Menu text\x04Templates":["\u0428\u0430\u0431\u043b\u043e\u043d\u044b"],Template:["\u0428\u0430\u0431\u043b\u043e\u043d"],"No matching template found":["\u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0448\u0430\u0431\u043b\u043e\u043d\u044b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b."],"Gradient: %s":["\u0413\u0440\u0430\u0434\u0438\u0435\u043d\u0442: %s"],"Gradient code: %s":["\u041a\u043e\u0434 \u0433\u0440\u0430\u0434\u0438\u0435\u043d\u0442\u0430: %s"],"All content copied.":["\u0412\u0441\u0451 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0431\u044b\u043b\u043e \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u043e."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u0430 \u043d\u0435 \u0443\u0434\u0430\u043b\u0430\u0441\u044c. \u0415\u0441\u043b\u0438 \u044d\u0442\u043e \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f \u0438\u043b\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0431\u043e\u043b\u044c\u0448\u043e\u0433\u043e \u0440\u0430\u0437\u043c\u0435\u0440\u0430, \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u0435 \u0435\u0433\u043e \u0438 \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043d\u043e\u0432\u0430."],Gradient:["\u0413\u0440\u0430\u0434\u0438\u0435\u043d\u0442"],"Gradient Presets":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0433\u0440\u0430\u0434\u0438\u0435\u043d\u0442\u0430"],"No Preview Available.":["\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d."],Midnight:["\u041f\u043e\u043b\u0443\u043d\u043e\u0447\u043d\u044b\u0439"],"Electric grass":["\u042d\u043b\u0435\u043a\u0442\u0440\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0442\u0440\u0430\u0432\u0430"],"Pale ocean":["\u0411\u043b\u0435\u0434\u043d\u044b\u0439 \u043e\u043a\u0435\u0430\u043d"],"Luminous dusk":["\u0421\u0432\u0435\u0442\u044f\u0449\u0438\u0435\u0441\u044f \u0441\u0443\u043c\u0435\u0440\u043a\u0438"],"Blush bordeaux":["\u041f\u0443\u0440\u043f\u0443\u0440\u043d\u043e-\u043a\u0440\u0430\u0441\u043d\u044b\u0439"],"Blush light purple":["\u041f\u0430\u0441\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0441\u0432\u0435\u0442\u043b\u043e-\u0444\u0438\u043e\u043b\u0435\u0442\u043e\u0432\u044b\u0439"],"Cool to warm spectrum":["\u0425\u043e\u043b\u043e\u0434\u043d\u044b\u0439 \u043a \u0442\u0451\u043f\u043b\u043e\u043c\u0443 \u0441\u043f\u0435\u043a\u0442\u0440\u0443"],"Very light gray to cyan bluish gray":["\u0421\u0432\u0435\u0442\u043b\u043e-\u0441\u0435\u0440\u044b\u0439 \u043a \u0433\u043e\u043b\u0443\u0431\u043e\u0432\u0430\u0442\u043e-\u0441\u0435\u0440\u043e\u043c\u0443"],"Luminous vivid orange to vivid red":["\u042f\u0440\u043a\u043e-\u043e\u0440\u0430\u043d\u0436\u0435\u0432\u044b\u0439 \u043a \u044f\u0440\u043a\u043e-\u043a\u0440\u0430\u0441\u043d\u043e\u043c\u0443"],"Luminous vivid amber to luminous vivid orange":["\u042f\u043d\u0442\u0430\u0440\u043d\u044b\u0439 \u043a \u044f\u0440\u043a\u043e-\u043e\u0440\u0430\u043d\u0436\u0435\u0432\u043e\u043c\u0443"],"Light green cyan to vivid green cyan":["\u0421\u0432\u0435\u0442\u043b\u043e-\u0437\u0435\u043b\u0435\u043d\u044b\u0439 \u043a \u044f\u0440\u043a\u043e-\u0437\u0435\u043b\u0451\u043d\u043e\u043c\u0443"],"Vivid cyan blue to vivid purple":["\u042f\u0440\u043a\u043e-\u0441\u0438\u043d\u0438\u0439 \u043a \u044f\u0440\u043a\u043e-\u0444\u0438\u043e\u043b\u0435\u0442\u043e\u0432\u043e\u043c\u0443"],"https://wordpress.org/support/article/excerpt/":["https://ru.wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 \u0434\u0435\u043a\u0430\u0431\u0440\u044f 2018"],"February 21, 2019":["21 \u0444\u0435\u0432\u0440\u0430\u043b\u044f 2019"],"May 7, 2019":["7 \u043c\u0430\u044f 2019"],"Release Date":["\u0414\u0430\u0442\u0430 \u0432\u044b\u0445\u043e\u0434\u0430"],"Jazz Musician":["\u0414\u0436\u0430\u0437\u043e\u0432\u044b\u0439 \u043c\u0443\u0437\u044b\u043a\u0430\u043d\u0442"],Version:["\u0412\u0435\u0440\u0441\u0438\u044f"],"Six.":["\u0428\u0435\u0441\u0442\u044c."],"Five.":["\u041f\u044f\u0442\u044c."],"Four.":["\u0427\u0435\u0442\u044b\u0440\u0435."],"Three.":["\u0422\u0440\u0438."],"Two.":["\u0414\u0432\u0430."],"One.":["\u041e\u0434\u0438\u043d."],"One of the hardest things to do in technology is disrupt yourself.":["One of the hardest things to do in technology is disrupt yourself."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["\u0421\u0432\u0435\u0442 \u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0442 \u0444\u0430\u043a\u0435\u043b\u043e\u0432. \u0412 \u0446\u0435\u043d\u0442\u0440\u0435 \u0437\u0430\u043b\u0430 \u043e\u0433\u0440\u043e\u043c\u043d\u0430\u044f \u0436\u0435\u043b\u0435\u0437\u043d\u0430\u044f \u0434\u0432\u0435\u0440\u044c, \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0432\u0445\u043e\u0434 \u0432 \u0437\u0430\u043c\u043e\u043a. \u0420\u044f\u0434\u043e\u043c \u0441 \u044d\u0442\u043e\u0439 \u0434\u0432\u0435\u0440\u044c\u044e \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u0432\u0435\u0434\u0443\u0449\u0430\u044f \u043d\u0430\u0432\u0435\u0440\u0445 \u043b\u0435\u0441\u0442\u043d\u0438\u0446\u0430. \u0412 \u043b\u0435\u0432\u043e\u0439 \u0447\u0430\u0441\u0442\u0438 \u0441\u0446\u0435\u043d\u044b \u0434\u0432\u0435\u0440\u044c \u0432 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0441\u0435\u0439\u0447\u0430\u0441 \u0437\u0430\u043a\u0440\u044b\u0442\u0430. \u0421\u043f\u0440\u0430\u0432\u0430 \u0441\u0442\u043e\u0438\u0442 \u043e\u0433\u0440\u043e\u043c\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0442 \u0434\u043e\u0441\u043f\u0435\u0445\u043e\u0432, \u0434\u0432\u0430\u0434\u0446\u0430\u0442\u0438 \u0444\u0443\u0442\u043e\u0432 \u0432\u044b\u0441\u043e\u0442\u043e\u0439, \u043e\u043d \u043f\u043e\u0447\u0442\u0438 \u0434\u043e\u0442\u044f\u0433\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0434\u043e \u043f\u043e\u0442\u043e\u043b\u043a\u0430 \u043a\u043e\u043c\u043d\u0430\u0442\u044b. \u0425\u043e\u0442\u044f \u043f\u043e\u043a\u0430 \u043d\u0438\u043a\u043e\u0433\u043e \u043d\u0435 \u0432\u0438\u0434\u043d\u043e, \u0438\u0437-\u0437\u0430 \u0434\u0432\u0435\u0440\u0438 \u0432 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443 \u0434\u043e\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u0436\u0435\u043d\u0441\u043a\u043e\u0435 \u043f\u0435\u043d\u0438\u0435."],"Window, very small in the distance, illuminated.":["\u041f\u043e\u0437\u0434\u043d\u0438\u0439 \u0432\u0435\u0447\u0435\u0440. \u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0432 \u0438\u043d\u0442\u0435\u0440\u044c\u0435\u0440\u0435 \u043f\u0430\u0440\u0430\u0434\u043d\u043e\u0433\u043e \u0445\u043e\u043b\u043b\u0430 \u0437\u0430\u043c\u043a\u0430 \u0432 \u0421\u043a\u0430\u0442 \u0410\u043d\u0443\u0434\u0435, \u0443\u043a\u0440\u0430\u0448\u0435\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u0435\u0432\u043e\u0441\u0445\u043e\u0434\u043d\u043e\u0439 \u043c\u0435\u0431\u0435\u043b\u044c\u044e \u0438 \u0433\u043e\u0431\u0435\u043b\u0435\u043d\u0430\u043c\u0438."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["\u0423\u0416\u0410\u0421 \u0417\u0410\u041c\u041a\u0410 \u041a\u0421\u0418\u0420"],"\u2014 Kobayashi Issa (\u4e00\u8336)":[" \u2014 \u041a\u043e\u0431\u0430\u044f\u0441\u0438 \u0418\u0441\u0441\u0430 (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["\u041a\u043b\u044e\u0432 \u0441\u0432\u043e\u0439 \u0440\u0430\u0441\u043a\u0440\u044b\u0432,
\u0417\u0430\u043f\u0435\u0442\u044c \u043d\u0435 \u0443\u0441\u043f\u0435\u043b \u043a\u0440\u0430\u043f\u0438\u0432\u043d\u0438\u043a.
\u041a\u043e\u043d\u0447\u0438\u043b\u0441\u044f \u0434\u0435\u043d\u044c."],"Welcome to the wonderful world of blocks\u2026":["\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0432 \u0443\u0434\u0438\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043c\u0438\u0440 \u0431\u043b\u043e\u043a\u043e\u0432..."],"Snow Patrol":["\u0421\u043d\u0435\u0436\u043d\u044b\u0439 \u043f\u0430\u0442\u0440\u0443\u043b\u044c"],Dimensions:["\u0420\u0430\u0437\u043c\u0435\u0440\u044b"],"Minimum height in pixels":["\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0432\u044b\u0441\u043e\u0442\u0430 \u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u044f\u0445"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["\u041f\u0440\u0438\u0437\u044b\u0432 \u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044e"],"In quoting others, we cite ourselves.":["\u0426\u0438\u0442\u0438\u0440\u0443\u044f \u0434\u0440\u0443\u0433\u0438\u0445, \u043c\u044b \u0446\u0438\u0442\u0438\u0440\u0443\u0435\u043c \u0441\u0435\u0431\u044f."],cite:["\u0446\u0438\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc appears\u2014still, snowy, and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["\u0412 \u0441\u043a\u0440\u043e\u043c\u043d\u043e\u0439 \u0434\u0435\u0440\u0435\u0432\u0443\u0448\u043a\u0435 \u043f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u0438 \u041b\u0430\u043c\u0430\u043d\u0447\u0438 \u0436\u0438\u043b \u0438\u0434\u0430\u043b\u044c\u0433\u043e, \u043f\u043e \u0438\u043c\u0435\u043d\u0438 \u0414\u043e\u043d \u041a\u0435\u0445\u0430\u043d\u0430. \u041a\u0430\u043a \u0438 \u0432\u0441\u044f\u043a\u0438\u0439 \u0434\u0432\u043e\u0440\u044f\u043d\u0438\u043d, \u043e\u043d \u0433\u043e\u0440\u0434\u0438\u043b\u0441\u044f \u0441\u0432\u043e\u0438\u043c \u0431\u043b\u0430\u0433\u043e\u0440\u043e\u0434\u043d\u044b\u043c \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u0435\u043c, \u0441\u0432\u044f\u0442\u043e \u0445\u0440\u0430\u043d\u0438\u043b \u0434\u0440\u0435\u0432\u043d\u0438\u0439 \u0449\u0438\u0442 \u0438 \u0440\u043e\u0434\u043e\u0432\u043e\u0435 \u043a\u043e\u043f\u044c\u0435 \u0438 \u0434\u0435\u0440\u0436\u0430\u043b \u0443 \u0441\u0435\u0431\u044f \u043d\u0430 \u0434\u0432\u043e\u0440\u0435 \u0442\u043e\u0449\u0443\u044e \u043a\u043b\u044f\u0447\u0443 \u0438 \u0431\u043e\u0440\u0437\u0443\u044e \u0441\u043e\u0431\u0430\u043a\u0443."],"Block navigation":["\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043f\u043e \u0431\u043b\u043e\u043a\u0430\u043c"],"Enable Full Site Editing":["\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u043e\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u0430\u0439\u0442\u0430"],"Full Site Editing":["\u041f\u043e\u043b\u043d\u043e\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u0430\u0439\u0442\u0430"],"Templates to include in your theme.":["\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u0434\u043b\u044f \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0432 \u0432\u0430\u0448\u0443 \u0442\u0435\u043c\u0443."],Templates:["\u0428\u0430\u0431\u043b\u043e\u043d\u044b"],"Inserter Help Panel":["\u041f\u0430\u043d\u0435\u043b\u044c \u043f\u043e\u043c\u043e\u0449\u0438 \u043f\u043e \u0432\u0441\u0442\u0430\u0432\u043a\u0435"],"Pre-publish Checks":["\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043f\u0435\u0440\u0435\u0434 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0435\u0439"],"Please contact your site administrator to install new blocks.":["\u0414\u043b\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u0431\u043b\u043e\u043a\u043e\u0432 \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0443 \u0441\u0430\u0439\u0442\u0430."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["\u0412 \u0432\u0430\u0448\u0435\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435 \u043d\u0435\u0442 \u0431\u043b\u043e\u043a\u043e\u0432. \u0414\u043b\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u0431\u043b\u043e\u043a\u043e\u0432 \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0443 \u0441\u0430\u0439\u0442\u0430."],"No blocks found in your library.":["\u0412 \u0432\u0430\u0448\u0435\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435 \u043d\u0435\u0442 \u0431\u043b\u043e\u043a\u043e\u0432."],"No blocks found in your library. These blocks can be downloaded and installed:":["\u0412 \u0432\u0430\u0448\u0435\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435 \u043d\u0435\u0442 \u0431\u043b\u043e\u043a\u043e\u0432. \u042d\u0442\u0438 \u0431\u043b\u043e\u043a\u0438 \u043c\u043e\u0436\u043d\u043e \u0441\u043a\u0430\u0447\u0430\u0442\u044c \u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c:"],"No blocks found in your library. We did find %d block available for download.":["\u0412 \u0432\u0430\u0448\u0435\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435 \u043d\u0435\u0442 \u0431\u043b\u043e\u043a\u043e\u0432. \u041c\u044b \u043d\u0430\u0448\u043b\u0438 %d \u0431\u043b\u043e\u043a, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0439 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438.","\u0412 \u0432\u0430\u0448\u0435\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435 \u043d\u0435\u0442 \u0431\u043b\u043e\u043a\u043e\u0432. \u041c\u044b \u043d\u0430\u0448\u043b\u0438 %d \u0431\u043b\u043e\u043a\u0430, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438.","\u0412 \u0432\u0430\u0448\u0435\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435 \u043d\u0435\u0442 \u0431\u043b\u043e\u043a\u043e\u0432. \u041c\u044b \u043d\u0430\u0448\u043b\u0438 %d \u0431\u043b\u043e\u043a\u043e\u0432, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438."],"Block previews can\u2019t load.":["\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0431\u043b\u043e\u043a\u0430 \u043d\u0435 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044f."],Retry:["\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c"],"Block previews can't install.":["\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0431\u043b\u043e\u043a\u0430."],"Updated %s":["\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e %s"],"%d active installation":["%d \u0430\u043a\u0442\u0438\u0432\u043d\u0430\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430","%d \u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0445 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438","%d \u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0445 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043e\u043a"],"This author has %d block, with an average rating of %d.":["\u042d\u0442\u043e\u0442 \u0430\u0432\u0442\u043e\u0440 \u0438\u043c\u0435\u0435\u0442 %d \u0431\u043b\u043e\u043a, \u0441\u043e \u0441\u0440\u0435\u0434\u043d\u0438\u043c \u0440\u0435\u0439\u0442\u0438\u043d\u0433\u043e\u043c %d.","\u042d\u0442\u043e\u0442 \u0430\u0432\u0442\u043e\u0440 \u0438\u043c\u0435\u0435\u0442 %d \u0431\u043b\u043e\u043a\u0430, \u0441\u043e \u0441\u0440\u0435\u0434\u043d\u0438\u043c \u0440\u0435\u0439\u0442\u0438\u043d\u0433\u043e\u043c %d.","\u042d\u0442\u043e\u0442 \u0430\u0432\u0442\u043e\u0440 \u0438\u043c\u0435\u0435\u0442 %d \u0431\u043b\u043e\u043a\u043e\u0432, \u0441\u043e \u0441\u0440\u0435\u0434\u043d\u0438\u043c \u0440\u0435\u0439\u0442\u0438\u043d\u0433\u043e\u043c %d."],"Authored by %s":["\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 %s"],Add:["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c"],"%d total rating":["%d \u0432\u0441\u0435\u0433\u043e \u043e\u0446\u0435\u043d\u043a\u0430","%d \u0432\u0441\u0435\u0433\u043e \u043e\u0446\u0435\u043d\u043a\u0438","%d \u0432\u0441\u0435\u0433\u043e \u043e\u0446\u0435\u043d\u043e\u043a"],"%s out of 5 stars":["%s \u0438\u0437 5 \u0437\u0432\u0451\u0437\u0434"],"Enter Address":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0430\u0434\u0440\u0435\u0441"],"Pill Shape":["\u0424\u043e\u0440\u043c\u0430 \u0442\u0430\u0431\u043b\u0435\u0442\u043a\u0438"],"Logos Only":["\u0422\u043e\u043b\u044c\u043a\u043e \u043b\u043e\u0433\u043e\u0442\u0438\u043f\u044b"],"Create a block of links to your social media or external sites":["\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0431\u043b\u043e\u043a \u0441\u0441\u044b\u043b\u043e\u043a \u043d\u0430 \u0432\u0430\u0448\u0438 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0435\u0442\u0438 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0435 \u0441\u0430\u0439\u0442\u044b"],"Social links":["\u0421\u0441\u044b\u043b\u043a\u0438 \u043d\u0430 \u0441\u043e\u0446\u0441\u0435\u0442\u0438"],"Open block navigator":["\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043f\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c \u0431\u043b\u043e\u043a\u0430\u043c"],"Attachment page":["\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u0432\u043b\u043e\u0436\u0435\u043d\u0438\u044f"],Fill:["\u0417\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c"],"Link rel":["rel \u0441\u0441\u044b\u043b\u043a\u0438"],"Border Radius":["\u0417\u0430\u043a\u0440\u0443\u0433\u043b\u0435\u043d\u0438\u0435 \u0443\u0433\u043b\u043e\u0432"],"Write gallery caption\u2026":["\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0433\u0430\u043b\u0435\u0440\u0435\u0438\u2026"],"Content Blocks":["\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0431\u043b\u043e\u043a\u043e\u0432"],"Restore the backup":["\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0438\u0437 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0439 \u043a\u043e\u043f\u0438\u0438"],"The backup of this post in your browser is different from the version below.":["\u0420\u0435\u0437\u0435\u0440\u0432\u043d\u0430\u044f \u043a\u043e\u043f\u0438\u044f \u044d\u0442\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0432\u0430\u0448\u0435\u043c \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 \u043e\u0442\u043b\u0438\u0447\u0430\u0435\u0442\u0441\u044f \u043e\u0442 \u0432\u0435\u0440\u0441\u0438\u0438 \u043d\u0438\u0436\u0435."],"Enable Block Directory search":["\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a \u0432 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0435 \u0431\u043b\u043e\u043a\u043e\u0432"],"Block Directory":["\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u0431\u043b\u043e\u043a\u043e\u0432"],"Unable to connect to the filesystem. Please confirm your credentials.":["\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f \u043a \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u0435. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u0438 \u0443\u0447\u0435\u0442\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435."],"Sorry, you are not allowed to install blocks.":["\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0432\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438."],"%1$d block is disabled.":["%1$d \u0431\u043b\u043e\u043a \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d.","%1$d \u0431\u043b\u043e\u043a\u0430 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e.","%1$d \u0431\u043b\u043e\u043a\u043e\u0432 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e."],"Reverse List Numbering":["\u041e\u0431\u0440\u0430\u0442\u043d\u0430\u044f \u043d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u0430"],"Start Value":["\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435"],"Ordered List Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0435\u043d\u043d\u043e\u0433\u043e \u0441\u043f\u0438\u0441\u043a\u0430"],"Clear Media":["\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430"],"block style\x04Circle Mask":["\u041a\u0440\u0443\u0433\u043e\u0432\u0430\u044f \u043c\u0430\u0441\u043a\u0430"],"Default Style":["\u0421\u0442\u0438\u043b\u044c \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e"],"Not set":["\u041d\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d"],"While writing, you can press / to quickly insert new blocks.":["\u0412\u043e \u0432\u0440\u0435\u043c\u044f \u043d\u0430\u043f\u0438\u0441\u0430\u043d\u0438\u044f, \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u0436\u0430\u0442\u044c /, \u0447\u0442\u043e\u0431\u044b \u0431\u044b\u0441\u0442\u0440\u043e \u0432\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u0431\u043b\u043e\u043a\u0438."],"Browse through the library to learn more about what each block does.":["\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443, \u0447\u0442\u043e\u0431\u044b \u0443\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0434\u0435\u043b\u0430\u0435\u0442 \u043a\u0430\u0436\u0434\u044b\u0439 \u0431\u043b\u043e\u043a."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["\u0415\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0438, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0432\u0438\u0434\u043e\u0432 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430: \u0432\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0442\u0435\u043a\u0441\u0442, \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438, \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0441\u043f\u0438\u0441\u043a\u0438, \u0432\u0438\u0434\u0435\u043e, \u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0438 \u043c\u043d\u043e\u0433\u043e\u0435 \u0434\u0440\u0443\u0433\u043e\u0435."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0432 \u0443\u0434\u0438\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043c\u0438\u0440 \u0431\u043b\u043e\u043a\u043e\u0432! \u0411\u043b\u043e\u043a\u0438 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043e\u0441\u043d\u043e\u0432\u043e\u0439 \u0432\u0441\u0435\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e \u0432 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0435."],"Version of the content block format used by the object.":["\u0412\u0435\u0440\u0441\u0438\u044f \u0444\u043e\u0440\u043c\u0430\u0442\u0430 \u0431\u043b\u043e\u043a\u043e\u0432 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u0430\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u043c."],"HTML content for the object, transformed for display.":["HTML \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0434\u043b\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430, \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u0434\u043b\u044f \u043f\u043e\u043a\u0430\u0437\u0430."],"Content for the object, as it exists in the database.":["\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0434\u043b\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430, \u043a\u0430\u043a \u043e\u043d\u043e \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u0431\u0430\u0437\u0435 \u0434\u0430\u043d\u043d\u044b\u0445."],"The content for the object.":["\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0434\u043b\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430."],"Change column alignment":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0441\u0442\u043e\u043b\u0431\u0446\u0430"],"Align Column Right":["\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043f\u0440\u0430\u0432\u0430"],"Align Column Center":["\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u043f\u043e \u0446\u0435\u043d\u0442\u0440\u0443"],"Align Column Left":["\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043b\u0435\u0432\u0430"],Color:["\u0426\u0432\u0435\u0442"],"Vivid purple":["\u044f\u0440\u043a\u0438\u0439 \u0444\u0438\u043e\u043b\u0435\u0442\u043e\u0432\u044b\u0439"],"Disable & Reload":["\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c"],"Enable & Reload":["\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c"],"A page reload is required for this change. Make sure your content is saved before reloading.":["\u0414\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u0432\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u043f\u0435\u0440\u0435\u0434 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u043e\u0439."],"Display these keyboard shortcuts.":["\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u044d\u0442\u0438 \u0433\u043e\u0440\u044f\u0447\u0438\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u0438"],"Experiments Settings":["\u042d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["\u0412 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0435 \u0431\u043b\u043e\u043a\u043e\u0432 \u0435\u0441\u0442\u044c \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c, \u043f\u0440\u043e\u0441\u0442\u043e \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0442\u0435, \u0447\u0442\u043e \u0432\u0430\u043c \u043d\u0443\u0436\u043d\u044b. \u042d\u0442\u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u044b, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0438\u0445 \u043d\u0430 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0441\u0430\u0439\u0442\u0430\u0445."],"Enable Widgets Screen and Legacy Widget Block":["\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u044d\u043a\u0440\u0430\u043d \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432 \u0438 \u0431\u043b\u043e\u043a \u0441\u0442\u0430\u0440\u044b\u0445 \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432"],"Experiment settings":["\u042d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438"],"Block name name must be a string.":["\u0418\u043c\u044f \u0431\u043b\u043e\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u043e\u0439."],Custom:["\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439"],Draft:["\u0427\u0435\u0440\u043d\u043e\u0432\u0438\u043a"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["\u0411\u043b\u043e\u043a \"%1$s\" \u043d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0441\u0442\u0438\u043b\u044f \u0441 \u0438\u043c\u0435\u043d\u0435\u043c \"%2$s.\"."],"Learn more about anchors":["\u0423\u0437\u043d\u0430\u0439\u0442\u0435 \u0431\u043e\u043b\u044c\u0448\u0435 \u043e\u0431 \u044f\u043a\u043e\u0440\u044f\u0445"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u043b\u043e\u0432\u043e \u0438\u043b\u0438 \u0434\u0432\u0430 - \u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u0435\u043b\u043e\u0432 - \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0432\u0435\u0431-\u0430\u0434\u0440\u0435\u0441 \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043d\u0430\u0437\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u201c\u044f\u043a\u043e\u0440\u044c\u201c. \u0417\u0430\u0442\u0435\u043c \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u0441\u0441\u044b\u043b\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u044d\u0442\u043e\u0442 \u0440\u0430\u0437\u0434\u0435\u043b \u0441\u0432\u043e\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b."],"Widget Blocks (Experimental)":["\u0411\u043b\u043e\u043a\u0438 \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432 (\u042d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435)"],"Upload a video file, pick one from your media library, or add one with a URL.":["\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0435\u0433\u043e \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 \u0438\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u044c\u0442\u0435 URL-\u0430\u0434\u0440\u0435\u0441."],"Upload an image file, pick one from your media library, or add one with a URL.":["\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0444\u0430\u0439\u043b \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 \u0438\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u044c\u0442\u0435 URL-\u0430\u0434\u0440\u0435\u0441."],"Upload an audio file, pick one from your media library, or add one with a URL.":["\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0430\u0443\u0434\u0438\u043e\u0444\u0430\u0439\u043b, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0435\u0433\u043e \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 \u0438\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u044c\u0442\u0435 URL-\u0430\u0434\u0440\u0435\u0441."],"Upload a media file or pick one from your media library.":["\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b \u0438\u043b\u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0435\u0433\u043e \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438."],Skip:["\u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c"],"Select a pattern to start with.":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0448\u0430\u0431\u043b\u043e\u043d \u0434\u043b\u044f \u043d\u0430\u0447\u0430\u043b\u0430."],"Add a page, link, or other item to your navigation.":["\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443, \u0441\u0441\u044b\u043b\u043a\u0443 \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u043e\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0432 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044e."],"What's this?":["\u0427\u0442\u043e \u044d\u0442\u043e?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["\u041d\u0435 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u044b\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u043c \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0438\u0442\u044c \u043f\u043e \u044d\u0442\u043e\u0439 \u0441\u0441\u044b\u043b\u043a\u0435."],"Provide more context about where the link goes.":["\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0431\u043e\u043b\u044c\u0448\u0435 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430 \u043e \u0442\u043e\u043c, \u043a\u0443\u0434\u0430 \u0438\u0434\u0435\u0442 \u0441\u0441\u044b\u043b\u043a\u0430."],"Title Attribute":["\u0410\u0442\u0440\u0438\u0431\u0443\u0442 title"],"SEO Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0421\u0415\u041e"],Description:["\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435"],"Open in new tab":["\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0432 \u043d\u043e\u0432\u043e\u0439 \u0432\u043a\u043b\u0430\u0434\u043a\u0435"],links:["\u0441\u0441\u044b\u043b\u043a\u0438"],navigation:["\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f"],menu:["\u043c\u0435\u043d\u044e"],"Add a navigation block to your site.":["\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0431\u043b\u043e\u043a \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438 \u043d\u0430 \u0441\u0432\u043e\u0439 \u0441\u0430\u0439\u0442."],"Upload a file or pick one from your media library.":["\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0444\u0430\u0439\u043b \u0438\u043b\u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0435\u0433\u043e \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438."],"Learn more about embeds":["\u0423\u0437\u043d\u0430\u0439\u0442\u0435 \u0431\u043e\u043b\u044c\u0448\u0435 \u043e \u0432\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u043d\u0438\u044f\u0445"],"https://wordpress.org/support/article/embeds/":["https://codex.wordpress.org/\u0412\u0441\u0442\u0430\u0432\u043a\u0430_\u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432"],"Paste a link to the content you want to display on your site.":["\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0441\u044b\u043b\u043a\u0443 \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u044c \u043d\u0430 \u0441\u0432\u043e\u0435\u043c \u0441\u0430\u0439\u0442\u0435."],"Upload an image or video file, or pick one from your media library.":["\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b \u0438\u043b\u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0435\u0433\u043e \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438."],"Three columns; wide center column":["\u0422\u0440\u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0438; \u0448\u0438\u0440\u043e\u043a\u0430\u044f \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f \u043a\u043e\u043b\u043e\u043d\u043a\u0430"],"Three columns; equal split":["\u0422\u0440\u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0438; \u0440\u0430\u0432\u043d\u043e\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435"],"Two columns; two-thirds, one-third split":["\u0414\u0432\u0435 \u043a\u043e\u043b\u043e\u043d\u043a\u0438; \u0434\u0432\u0435 \u0442\u0440\u0435\u0442\u0438, \u043e\u0434\u043d\u0430 \u0442\u0440\u0435\u0442\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435"],"Two columns; one-third, two-thirds split":["\u0414\u0432\u0435 \u043a\u043e\u043b\u043e\u043d\u043a\u0438; \u043e\u0434\u043d\u0430 \u0442\u0440\u0435\u0442\u044c, \u0434\u0432\u0435 \u0442\u0440\u0435\u0442\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435"],"Two columns; equal split":["\u0414\u0432\u0435 \u043a\u043e\u043b\u043e\u043d\u043a\u0438; \u0440\u0430\u0432\u043d\u043e\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["\u041d\u0430 \u0432\u0430\u0448\u0435\u043c \u0441\u0430\u0439\u0442\u0435 \u043d\u0435\u0442 %s, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0437\u0434\u0435\u0441\u044c \u043d\u0435\u0447\u0435\u0433\u043e \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c."],"More tools & options":["\u0411\u043e\u043b\u044c\u0448\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439"],"Create Table":["\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443"],"Insert a table for sharing data.":["\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443 \u0434\u043b\u044f \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["\u0420\u0430\u0437\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c"],"verb\x04Group":["\u0413\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c"],"Separate with commas or the Enter key.":["\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u0439\u0442\u0435 \u0437\u0430\u043f\u044f\u0442\u044b\u043c\u0438 \u0438\u043b\u0438 \u043a\u043b\u0430\u0432\u0438\u0448\u0435\u0439 Enter."],"Separate with commas, spaces, or the Enter key.":["\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u0439\u0442\u0435 \u0437\u0430\u043f\u044f\u0442\u044b\u043c\u0438, \u043f\u0440\u043e\u0431\u0435\u043b\u0430\u043c\u0438 \u0438\u043b\u0438 \u043a\u043b\u0430\u0432\u0438\u0448\u0435\u0439 Enter."],"Separate multiple classes with spaces.":["\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043a\u043b\u0430\u0441\u0441\u043e\u0432 \u043f\u0440\u043e\u0431\u0435\u043b\u0430\u043c\u0438."],"Move image forward":["\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0432\u043f\u0435\u0440\u0451\u0434"],"Move image backward":["\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043d\u0430\u0437\u0430\u0434"],"Sorry, you are not allowed to edit sidebars.":["\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0432\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432."],"Sorry, you are not allowed to read sidebars.":["\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0432\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0447\u0438\u0442\u0430\u0442\u044c \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432."],"The sidebar\u2019s ID.":["ID \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432."],"Displays a set of blocks":["\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u043d\u0430\u0431\u043e\u0440 \u0431\u043b\u043e\u043a\u043e\u0432"],"Blocks Area":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432"],"Block rendered as empty.":["\u0411\u043b\u043e\u043a \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442\u0441\u044f \u043a\u0430\u043a \u043f\u0443\u0441\u0442\u043e\u0439."],"Inline Code":["\u0412\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0439 \u043a\u043e\u0434"],"Note: Autoplaying videos may cause usability issues for some visitors.":["\u0417\u0430\u043c\u0435\u0442\u043a\u0430: \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0432\u0438\u0434\u0435\u043e \u043c\u043e\u0436\u0435\u0442 \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0443 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435\u043b\u0435\u0439."],"Footer section":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u043e\u0434\u0432\u0430\u043b\u0430"],"Header section":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430"],"Sorting and Filtering":["\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u0438 \u0444\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u044f"],"Post Meta Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0438"],"Post Content":["\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0437\u0430\u043f\u0438\u0441\u0438"],"Post Content Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e \u0437\u0430\u043f\u0438\u0441\u0438"],"Percentage width":["\u0428\u0438\u0440\u0438\u043d\u0430 \u0432 \u043f\u0440\u043e\u0446\u0435\u043d\u0442\u0430\u0445"],"Column Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0441\u0442\u043e\u043b\u0431\u0446\u043e\u0432"],"Note: Autoplaying audio may cause usability issues for some visitors.":["\u0417\u0430\u043c\u0435\u0442\u043a\u0430: \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0437\u0432\u0443\u043a\u0430 \u043c\u043e\u0436\u0435\u0442 \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0443 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435\u043b\u0435\u0439."],"Block area updated.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430."],"Block area scheduled.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u043a \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438."],"Block area published.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432 \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u0430."],"Block areas list":["\u0421\u043f\u0438\u0441\u043e\u043a \u043e\u0431\u043b\u0430\u0441\u0442\u0435\u0439 \u0431\u043b\u043e\u043a\u043e\u0432"],"Block areas list navigation":["\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043f\u043e \u0441\u043f\u0438\u0441\u043a\u0443 \u043e\u0431\u043b\u0430\u0441\u0442\u0435\u0439 \u0431\u043b\u043e\u043a\u043e\u0432"],"Filter block areas list":["\u041e\u0442\u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a \u043e\u0431\u043b\u0430\u0441\u0442\u0435\u0439 \u0431\u043b\u043e\u043a\u043e\u0432"],"No block area found.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430."],"Search Block Areas":["\u041f\u043e\u0438\u0441\u043a \u043e\u0431\u043b\u0430\u0441\u0442\u0435\u0439 \u0431\u043b\u043e\u043a\u043e\u0432"],"All Block Areas":["\u0412\u0441\u0435 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0431\u043b\u043e\u043a\u043e\u0432"],"View Block Area":["\u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432"],"Edit Block Area":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432"],"New Block Area":["\u041d\u043e\u0432\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432"],"Add New Block Area":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432"],"admin menu\x04Block Areas":["\u041e\u0431\u043b\u0430\u0441\u0442\u0438 \u0431\u043b\u043e\u043a\u043e\u0432"],"post type singular name\x04Block Area (Experimental)":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432 (\u042d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435)"],"post type general name\x04Block Area (Experimental)":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432 (\u042d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435)"],"Experimental custom post type that will store block areas referenced by themes.":["\u042d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0442\u0438\u043f \u0437\u0430\u043f\u0438\u0441\u0438, \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u044e\u0449\u0438\u0439 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0431\u043b\u043e\u043a\u043e\u0432, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0441\u0441\u044b\u043b\u0430\u044e\u0442\u0441\u044f \u0442\u0435\u043c\u044b."],"Widgets screen content":["\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u044d\u043a\u0440\u0430\u043d\u0430 \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432"],"Widgets advanced settings":["\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432"],"(experimental)":["(\u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439)"],"Block Areas":["\u041e\u0431\u043b\u0430\u0441\u0442\u0438 \u0411\u043b\u043e\u043a\u0430"],"Widgets screen top bar":["\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u043f\u0430\u043d\u0435\u043b\u044c \u044d\u043a\u0440\u0430\u043d\u0430 \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432"],"This color combination may be hard for people to read.":["\u042d\u0442\u043e \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0435 \u0446\u0432\u0435\u0442\u043e\u0432 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0442\u0440\u0443\u0434\u043d\u044b\u043c \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f \u043b\u044e\u0434\u044c\u043c\u0438."],"There is no poster image currently selected":["\u0412 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0435\u0440\u0430 \u043d\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u043e"],"The current poster image url is %s":["\u0422\u0435\u043a\u0443\u0449\u0438\u0439 URL \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e\u0441\u0442\u0435\u0440\u0430 %s"],section:["\u0440\u0430\u0437\u0434\u0435\u043b"],row:["\u0441\u0442\u0440\u043e\u043a\u0430"],wrapper:["\u043e\u0431\u0451\u0440\u0442\u043a\u0430"],container:["\u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440"],"A block that groups other blocks.":["\u0411\u043b\u043e\u043a, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u0443\u0435\u0442 \u0434\u0440\u0443\u0433\u0438\u0435 \u0431\u043b\u043e\u043a\u0438."],Group:["\u0413\u0440\u0443\u043f\u043f\u0430"],"Crop image to fill entire column":["\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0432\u0441\u0435\u0433\u043e \u0441\u0442\u043e\u043b\u0431\u0446\u0430"],"Play inline":["\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u043c"],"Leave empty if the image is purely decorative.":["\u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u0443\u0441\u0442\u044b\u043c, \u0435\u0441\u043b\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0447\u0438\u0441\u0442\u043e \u0434\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u043e\u0435."],"Describe the purpose of the image":["\u041e\u043f\u0438\u0448\u0438\u0442\u0435 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f"],"Add a block":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0431\u043b\u043e\u043a"],"Block vertical alignment setting label\x04Change vertical alignment":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435"],"Block vertical alignment setting\x04Vertically Align Bottom":["\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0432\u043d\u0438\u0437"],"Block vertical alignment setting\x04Vertically Align Middle":["\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u043f\u043e \u0446\u0435\u043d\u0442\u0440\u0443"],"Replace Image":["\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435"],"Block vertical alignment setting\x04Vertically Align Top":["\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0432\u0432\u0435\u0440\u0445"],"Display a legacy widget.":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0438\u0439 \u0432\u0438\u0434\u0436\u0435\u0442."],"Legacy Widget (Experimental)":["\u0423\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0438\u0439 \u0432\u0438\u0434\u0436\u0435\u0442 (\u042d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435)"],"Change widget":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0438\u0434\u0436\u0435\u0442"],"Legacy Widget":["\u0423\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0438\u0439 \u0432\u0438\u0434\u0436\u0435\u0442"],"You don't have permissions to use widgets on this site.":["\u0423 \u0432\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432 \u043d\u0430 \u044d\u0442\u043e\u043c \u0441\u0430\u0439\u0442\u0435."],"Select a legacy widget to display:":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0438\u0439 \u0432\u0438\u0434\u0436\u0435\u0442 \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f:"],"There are no widgets available.":["\u041d\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u0432\u0438\u0434\u0436\u0435\u0442\u043e\u0432."],"Change block type or style":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0442\u0438\u043f \u0431\u043b\u043e\u043a\u0430 \u0438\u043b\u0438 \u0441\u0442\u0438\u043b\u044c"],"keyboard key\x04Space":["\u041f\u0440\u043e\u0431\u0435\u043b"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["\u0411\u043e\u043b\u044c\u0448\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f Rich Text"],"Search Terms":["\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u043e\u0438\u0441\u043a\u0430"],"Exit the Editor":["\u0412\u044b\u0445\u043e\u0434 \u0438\u0437 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430"],"Block Manager":["\u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u0431\u043b\u043e\u043a\u043e\u0432"],"Class name of the widget.":["\u0418\u043c\u044f \u043a\u043b\u0430\u0441\u0441\u0430 \u0432\u0438\u0434\u0436\u0435\u0442\u0430."],"Sorry, you are not allowed to access widgets on this site.":["\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0443 \u0432\u0430\u0441 \u043d\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0432\u0438\u0434\u0436\u0435\u0442\u0430\u043c \u043d\u0430 \u044d\u0442\u043e\u043c \u0441\u0430\u0439\u0442\u0435."],"Widgets (beta)":["\u0412\u0438\u0434\u0436\u0435\u0442\u044b (\u0431\u0435\u0442\u0430)"],link:["\u0441\u0441\u044b\u043b\u043a\u0430"],"Embedded content from %s can't be previewed in the editor.":["\u0412\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0438\u0437 %s \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0432 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0435."],"Custom Color":["\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 \u0446\u0432\u0435\u0442"],"Prompt visitors to take action with a button-style link.":["\u041c\u043e\u0442\u0438\u0432\u0438\u0440\u0443\u0439\u0442\u0435 \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435\u043b\u0435\u0439 \u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044e \u0441\u0441\u044b\u043b\u043a\u043e\u0439 \u0432 \u0432\u0438\u0434\u0435 \u043a\u043d\u043e\u043f\u043a\u0438."],"Stick to the top of the blog":["\u041f\u0440\u0438\u043b\u0435\u043f\u0438\u0442\u044c \u043a \u0432\u0435\u0440\u0445\u043d\u0435\u0439 \u0447\u0430\u0441\u0442\u0438 \u0431\u043b\u043e\u0433\u0430"],"Read about permalinks":["\u0427\u0438\u0442\u0430\u0439\u0442\u0435 \u043e \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u044b\u0445 \u0441\u0441\u044b\u043b\u043a\u0430\u0445"],"The last part of the URL.":["\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0447\u0430\u0441\u0442\u044c URL."],"URL Slug":["\u042f\u0440\u043b\u044b\u043a URL"],"A cloud of your most used tags.":["\u041e\u0431\u043b\u0430\u043a\u043e \u0447\u0430\u0441\u0442\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0445 \u043c\u0435\u0442\u043e\u043a."],"Tag Cloud":["\u041e\u0431\u043b\u0430\u043a\u043e \u043c\u0435\u0442\u043e\u043a"],Taxonomy:["\u0422\u0430\u043a\u0441\u043e\u043d\u043e\u043c\u0438\u044f"],"Tag Cloud Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043e\u0431\u043b\u0430\u043a\u0430 \u043c\u0435\u0442\u043e\u043a"],"- Select -":["- \u0412\u044b\u0431\u0440\u0430\u0442\u044c -"],Default:["\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e"],find:["\u041d\u0430\u0439\u0442\u0438"],"Help visitors find your content.":["\u041f\u043e\u043c\u043e\u0433\u0438\u0442\u0435 \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435\u043b\u044f\u043c \u043d\u0430\u0439\u0442\u0438 \u0432\u0430\u0448\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435."],Search:["\u041f\u043e\u0438\u0441\u043a"],"Add button text\u2026":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0435\u043a\u0441\u0442 \u043a\u043d\u043e\u043f\u043a\u0438..."],"Button text":["\u0422\u0435\u043a\u0441\u0442 \u043a\u043d\u043e\u043f\u043a\u0438"],"Optional placeholder\u2026":["\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0437\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u2026"],"Optional placeholder text":["\u0422\u0435\u043a\u0441\u0442 \u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044f"],"Add label\u2026":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043c\u0435\u0442\u043a\u0443..."],"Label text":["\u0422\u0435\u043a\u0441\u0442 \u043b\u0435\u0439\u0431\u043b\u0430"],"image %1$d of %2$d in gallery":["\u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 %1$d \u0438\u0437 %2$d \u0432 \u0433\u0430\u043b\u0435\u0440\u0435\u0435"],archive:["\u0430\u0440\u0445\u0438\u0432"],posts:["\u0437\u0430\u043f\u0438\u0441\u0438"],"A calendar of your site\u2019s posts.":["\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0432\u0430\u0448\u0435\u0433\u043e \u0441\u0430\u0439\u0442\u0430."],Calendar:["\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c"],by:["\u043e\u0442"],"An error has occurred, which probably means the feed is down. Try again later.":["\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u0430\u044f, \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e, \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043e \u043a\u0430\u043d\u0430\u043b \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435."],"RSS Error:":["\u041e\u0448\u0438\u0431\u043a\u0430 RSS:"],"block style\x04Default":["\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e"],"Fullscreen mode deactivated":["\u041f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d"],"Fullscreen mode activated":["\u041f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c \u0432\u043a\u043b\u044e\u0447\u0435\u043d"],"Spotlight mode deactivated":["\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0441\u0432\u0435\u0442\u043a\u0438 \u0434\u0435\u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d"],"Spotlight mode activated":["\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0441\u0432\u0435\u0442\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d"],"Top toolbar deactivated":["\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430"],"Top toolbar activated":["\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430"],Back:["\u041d\u0430\u0437\u0430\u0434"],"Feature activated":["\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0430"],"Feature deactivated":["\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0434\u0435\u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0430"],"Vertical Pos.":["\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u043e\u0437\u0438\u0446\u0438\u044f"],"Horizontal Pos.":["\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u043e\u0437\u0438\u0446\u0438\u044f"],feed:["RSS-\u043b\u0435\u043d\u0442\u0430"],atom:["atom"],"Display entries from any RSS or Atom feed.":["\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438\u0437 \u043b\u044e\u0431\u043e\u0439 RSS-\u043b\u0435\u043d\u0442\u044b \u0438\u043b\u0438 Atom."],RSS:["RSS"],"Max number of words in excerpt":["\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432 \u0432 \u043e\u0442\u0440\u044b\u0432\u043a\u0435"],"Display excerpt":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043e\u0442\u0440\u044b\u0432\u043e\u043a"],"Display date":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0434\u0430\u0442\u0443"],"Display author":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u0440\u0430"],"RSS Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 RSS"],"Edit RSS URL":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u043f\u0435\u0440\u0435\u0434 \u044d\u0442\u0438\u043c \u0431\u043b\u043e\u043a\u043e\u043c \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u0432 \u043e\u0442\u0440\u044b\u0432\u043a\u0435 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 \u0430\u0440\u0445\u0438\u0432\u043e\u0432."],"Hide the excerpt on the full content page":["\u0421\u043a\u0440\u044b\u0442\u044c \u043e\u0442\u0440\u044b\u0432\u043e\u043a \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e"],"The excerpt is visible.":["\u041e\u0442\u0440\u044b\u0432\u043e\u043a \u043f\u043e\u043a\u0430\u0437\u0430\u043d."],"The excerpt is hidden.":["\u041e\u0442\u0440\u044b\u0432\u043e\u043a \u0441\u043a\u0440\u044b\u0442."],"Sorry, this content could not be embedded.":["\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u044d\u0442\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043e."],"Embed Amazon Kindle content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Amazon Kindle."],ebook:["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Crowdsignal (\u0440\u0430\u043d\u0435\u0435 Polldaddy)."],"Focal Point Picker":["\u0412\u044b\u0431\u043e\u0440 \u0442\u043e\u0447\u043a\u0438 \u0444\u043e\u043a\u0443\u0441\u0430"],Underline:["\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435"],"Attempt Block Recovery":["\u041f\u043e\u043f\u044b\u0442\u043a\u0430 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0431\u043b\u043e\u043a\u0430"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435..."],"button label\x04Convert to link":["\u0421\u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u0441\u0441\u044b\u043b\u043a\u0443"],"button label\x04Try again":["\u041f\u043e\u043f\u0440\u043e\u0431\u043e\u0432\u0430\u0442\u044c \u0441\u043d\u043e\u0432\u0430"],"Editor tips":["\u0421\u043e\u0432\u0435\u0442\u044b \u043f\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044e \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430"],"Block (selected)":["\u0411\u043b\u043e\u043a (\u0432\u044b\u0431\u0440\u0430\u043d)"],"Document (selected)":["\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 (\u0432\u044b\u0431\u0440\u0430\u043d)"],"%d word":["%d \u0441\u043b\u043e\u0432\u043e","%d \u0441\u043b\u043e\u0432\u0430","%d \u0441\u043b\u043e\u0432"],"Top Toolbar":["\u0412\u0435\u0440\u0445\u043d\u044f\u044f \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432"],"Link Rel":["Link Rel"],"Link CSS Class":["CSS \u043a\u043b\u0430\u0441\u0441 \u0441\u0441\u044b\u043b\u043a\u0438"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u0435 \u0435\u0433\u043e \u0434\u043b\u044f \u0441\u0435\u0431\u044f \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0435\u0433\u043e \u043d\u0430 \u0441\u0430\u0439\u0442\u0435. \u041e\u0431\u043d\u043e\u0432\u0438\u0442\u0435 \u0431\u043b\u043e\u043a, \u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0438\u0437\u043e\u0439\u0434\u0443\u0442 \u0432\u0435\u0437\u0434\u0435, \u0433\u0434\u0435 \u043e\u043d \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f."],"To edit the featured image, you need permission to upload media.":["\u0414\u043b\u044f \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u0432\u0430\u043c \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u043e\u0432."],"To edit this block, you need permission to upload media.":["\u0414\u043b\u044f \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u044d\u0442\u043e\u0433\u043e \u0431\u043b\u043e\u043a\u0430 \u0432\u0430\u043c \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u043e\u0432."],"(selected block)":["(\u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u0431\u043b\u043e\u043a)"],"Block tools":["\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b \u0431\u043b\u043e\u043a\u043e\u0432"],Permalink:["\u041f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u0430\u044f \u0441\u0441\u044b\u043b\u043a\u0430"],"This image has an empty alt attribute":["\u042d\u0442\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0443\u0441\u0442\u043e\u0439 \u0430\u0442\u0440\u0438\u0431\u0443\u0442 alt"],"This image has an empty alt attribute; its file name is %s":["\u042d\u0442\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0443\u0441\u0442\u043e\u0439 \u0430\u0442\u0440\u0438\u0431\u0443\u0442 alt; \u0435\u0433\u043e \u0438\u043c\u044f \u0444\u0430\u0439\u043b\u0430 - %s"],"Block area reverted to draft.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0430 \u0432 \u0447\u0435\u0440\u043d\u043e\u0432\u0438\u043a\u0438."],"Block area published privately.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432 \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u0430 \u043a\u0430\u043a \u043b\u0438\u0447\u043d\u0430\u044f."],"No block areas found in Trash.":["\u041d\u0435\u0442 \u043e\u0431\u043b\u0430\u0441\u0442\u0435\u0439 \u0431\u043b\u043e\u043a\u043e\u0432 \u0432 \u043a\u043e\u0440\u0437\u0438\u043d\u0435."],"Block\x04Add New":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439"],"add new on admin bar\x04Block Area":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u043e\u0432"],"Link inserted.":["\u0421\u0441\u044b\u043b\u043a\u0430 \u0432\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0430."],"Warning: the link has been inserted but may have errors. Please test it.":["\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435: \u0421\u0441\u044b\u043b\u043a\u0430 \u0432\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0430, \u043d\u043e \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441 \u043e\u0448\u0438\u0431\u043a\u0430\u043c\u0438. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0435\u0451."],"%s block selected.":["\u0412\u044b\u0431\u0440\u0430\u043d %s \u0431\u043b\u043e\u043a.","\u0412\u044b\u0431\u0440\u0430\u043d\u044b %s \u0431\u043b\u043e\u043a\u0430.","\u0412\u044b\u0431\u0440\u0430\u043d\u044b %s \u0431\u043b\u043e\u043a\u043e\u0432."],Thumbnail:["\u041c\u0438\u043d\u0438\u0430\u0442\u044e\u0440\u0430"],"Full Size":["\u041f\u043e\u043b\u043d\u043e\u0440\u0430\u0437\u043c\u0435\u0440\u043d\u044b\u0439"],"Link selected.":["\u0412\u044b\u0431\u0440\u0430\u043d\u0430 \u0441\u0441\u044b\u043b\u043a\u0430."],"Start writing with text or HTML":["\u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u043f\u0438\u0441\u0430\u0442\u044c \u0442\u0435\u043a\u0441\u0442 \u0438\u043b\u0438 HTML-\u043a\u043e\u0434"],"Type text or HTML":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u0442\u0435\u043a\u0441\u0442 \u0438\u043b\u0438 HTML-\u043a\u043e\u0434"],"Block icon":["\u0417\u043d\u0430\u0447\u043e\u043a \u0431\u043b\u043e\u043a\u0430"],"Align Text Right":["\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u0430 \u043f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e"],"Align Text Center":["\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u0430 \u043f\u043e \u0446\u0435\u043d\u0442\u0440\u0443"],"Align Text Left":["\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u0430 \u043f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e"],"Start writing or type / to choose a block":["\u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u043f\u0438\u0441\u0430\u0442\u044c \u0438\u043b\u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 / \u0434\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u0431\u043b\u043e\u043a\u0430"],"Empty block; start writing or type forward slash to choose a block":["\u041f\u0443\u0441\u0442\u043e\u0439 \u0431\u043b\u043e\u043a; \u043d\u0430\u0447\u043d\u0438\u0442\u0435 \u043f\u0438\u0441\u0430\u0442\u044c \u0438\u043b\u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043f\u0440\u044f\u043c\u043e\u0439 \u0441\u043b\u044d\u0448 (/) \u0434\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u0431\u043b\u043e\u043a\u0430"],"Paragraph block":["\u0411\u043b\u043e\u043a \u043f\u0430\u0440\u0430\u0433\u0440\u0430\u0444\u0430"],"Page Break":["\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b"],"Stack on mobile":["\u0413\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0440\u0443\u0433 \u043d\u0430\u0434 \u0434\u0440\u0443\u0433\u043e\u043c \u043d\u0430 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445"],Annotation:["\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435"],"Drag images, upload new ones or select files from your library.":["\u041f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043d\u043e\u0432\u044b\u0435 \u0438\u043b\u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0438\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438."],"blocks\x04Most Used":["\u0427\u0430\u0441\u0442\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0435"],"imperative verb\x04Resolve":["\u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c"],"font size name\x04Huge":["\u041e\u0433\u0440\u043e\u043c\u043d\u044b\u0439"],"font size name\x04Large":["\u0411\u043e\u043b\u044c\u0448\u043e\u0439"],"font size name\x04Medium":["\u0421\u0440\u0435\u0434\u043d\u0438\u0439"],"font size name\x04Small":["\u041c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u0439"],"font size name\x04Normal":["\u041e\u0431\u044b\u0447\u043d\u044b\u0439"],"keyboard button\x04Enter":["\u0412\u0432\u043e\u0434"],"button label\x04Import":["\u0418\u043c\u043f\u043e\u0440\u0442"],"button label\x04Download":["\u0421\u043a\u0430\u0447\u0430\u0442\u044c"],"button label\x04Embed":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c"],"block title\x04Embed":["\u0412\u0441\u0442\u0430\u0432\u043a\u0430"],"block title\x04Classic":["\u041a\u043b\u0430\u0441\u0441\u0438\u0447\u0435\u0441\u043a\u0438\u0439"],"block style\x04Large":["\u0411\u043e\u043b\u044c\u0448\u043e\u0439"],"%s (opens in a new tab)":["%s (\u043e\u0442\u043a\u0440\u043e\u0435\u0442\u0441\u044f \u0432 \u043d\u043e\u0432\u043e\u0439 \u0432\u043a\u043b\u0430\u0434\u043a\u0435)"],"Link edited.":["\u0421\u0441\u044b\u043b\u043a\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0430."],"Link removed.":["\u0421\u0441\u044b\u043b\u043a\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u0430."],media:["\u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b"],"Double-check your settings before publishing.":["\u0414\u0432\u0430\u0436\u0434\u044b \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0432\u0430\u0448\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u0435\u0440\u0435\u0434 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0435\u0439."],"Generating preview\u2026":["\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430..."],"Edit or update the image":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0438\u043b\u0438 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435"],Media:["\u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b"],"Navigate to the nearest toolbar.":["\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043f\u043e \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0439 \u043f\u0430\u043d\u0435\u043b\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432."],"Document tools":["\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430"],"Document and block tools":["\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0438 \u0431\u043b\u043e\u043a\u043e\u0432"],"Embed a video from your media library or upload a new one.":["\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432\u0438\u0434\u0435\u043e \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0438\u043b\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043d\u043e\u0432\u043e\u0435."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u044d\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0442\u0440\u043e\u0444\u044b. \u041c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u043e\u0432 \u0438\u043b\u0438 \u0446\u0438\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u043a\u0441\u0442 \u043f\u0435\u0441\u043d\u0438."],"Add white space between blocks and customize its height.":["\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043c\u0435\u0436\u0434\u0443 \u0431\u043b\u043e\u043a\u0430\u043c\u0438 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u0435\u0433\u043e \u0432\u044b\u0441\u043e\u0442\u0443."],"Insert additional custom elements with a WordPress shortcode.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0448\u043e\u0440\u0442\u043a\u043e\u0434\u0430."],"Create a break between ideas or sections with a horizontal separator.":["\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u043f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u043a \u043c\u0435\u0436\u0434\u0443 \u0438\u0434\u0435\u044f\u043c\u0438 \u0438\u043b\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0430\u043c\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u044f."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e \u0430\u043a\u0446\u0435\u043d\u0442\u0438\u0440\u0443\u0439\u0442\u0435 \u0446\u0438\u0442\u0438\u0440\u0443\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442. \"\u0426\u0438\u0442\u0438\u0440\u0443\u044f \u0434\u0440\u0443\u0433\u0438\u0445, \u043c\u044b \u0446\u0438\u0442\u0438\u0440\u0443\u0435\u043c \u0441\u0435\u0431\u044f.\" - Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["\u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e \u0430\u043a\u0446\u0435\u043d\u0442\u0438\u0440\u0443\u0439\u0442\u0435 \u0446\u0438\u0442\u0430\u0442\u0443 \u0438\u0437 \u0432\u0430\u0448\u0435\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430."],"Start with the building block of all narrative.":["\u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0441 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u043e\u0432\u0435\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0431\u043b\u043e\u043a\u0430."],"Separate your content into a multi-page experience.":["\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u043d\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446."],"Set media and words side-by-side for a richer layout.":["\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0438 \u0442\u0435\u043a\u0441\u0442 \u043f\u043e \u0431\u043e\u043a\u0430\u043c \u043e\u0442 \u043d\u0435\u0433\u043e \u0434\u043b\u044f \u0431\u043e\u0433\u0430\u0442\u0441\u0442\u0432\u0430 \u043c\u0430\u043a\u0435\u0442\u0430."],"Media & Text Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430 \u0438 \u0442\u0435\u043a\u0441\u0442\u0430"],"Create a bulleted or numbered list.":["\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u043c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u044b\u0439 \u0438\u043b\u0438 \u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a."],"Display a list of your most recent comments.":["\u041f\u043e\u043a\u0430\u0436\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u043e\u043a \u0441\u0430\u043c\u044b\u0445 \u0441\u0432\u0435\u0436\u0438\u0445 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432."],"Insert an image to make a visual statement.":["\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f."],"Add custom HTML code and preview it as you edit.":["\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 \u043a\u043e\u0434 HTML \u0438 \u0441\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043d\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u041e\u0431\u044a\u044f\u0432\u0438\u0442\u0435 \u043d\u043e\u0432\u044b\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u044b \u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0443\u0439\u0442\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435\u043b\u0435\u0439 (\u0438 \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u044b\u0445 \u0441\u0438\u0441\u0442\u0435\u043c) \u0432 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438 \u0435\u0433\u043e \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b."],"Display multiple images in a rich gallery.":["\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u0435 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0432 \u0440\u043e\u0441\u043a\u043e\u0448\u043d\u043e\u0439 \u0433\u0430\u043b\u0435\u0440\u0435\u0435."],"Add a link to a downloadable file.":["\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0441\u0441\u044b\u043b\u043a\u0443 \u043d\u0430 \u0441\u043a\u0430\u0447\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0444\u0430\u0439\u043b."],"Embed videos, images, tweets, audio, and other content from external sources.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e, \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0442\u0432\u0438\u0442\u044b, \u0430\u0443\u0434\u0438\u043e \u0438 \u0434\u0440\u0443\u0433\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0438\u0437 \u0432\u043d\u0435\u0448\u043d\u0438\u0445 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u043e\u0432."],"Resize for smaller devices":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440 \u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0441 \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u0438\u043c \u044d\u043a\u0440\u0430\u043d\u043e\u043c"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u042d\u0442\u043e\u0442 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0439 \u043e\u0431\u044a\u0435\u043a\u0442 \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0441\u043e\u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0441\u0442\u043e\u0440\u043e\u043d \u043f\u0440\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0438 \u0440\u0430\u0437\u043c\u0435\u0440\u0430 \u043e\u043a\u043d\u0430 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430."],"This embed will preserve its aspect ratio when the browser is resized.":["\u042d\u0442\u043e\u0442 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0439 \u043e\u0431\u044a\u0435\u043a\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442 \u0441\u043e\u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0441\u0442\u043e\u0440\u043e\u043d \u043f\u0440\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0438 \u0440\u0430\u0437\u043c\u0435\u0440\u0430 \u043e\u043a\u043d\u0430 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430."],"Embed an Animoto video.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e Animoto."],"Embed a Vimeo video.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e Vimeo."],"Embed Flickr content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Flickr."],"Embed Spotify content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Spotify."],"Embed SoundCloud content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 SoundCloud."],"Embed a WordPress post.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c WordPress."],"Embed an Instagram post.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c Instagram."],"Embed a Facebook post.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c Facebook."],"Embed a WordPress.tv video.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e WordPress.tv."],"Embed a VideoPress video.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e VideoPress."],"Embed a Tumblr post.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c Tumblr."],"Embed a TED video.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e TED."],"Embed Speaker Deck content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Speaker Deck."],"Embed a YouTube video.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e YouTube."],"Embed SmugMug content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 SmugMug."],"Embed Slideshare content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Slideshare."],"Embed Scribd content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Scribd."],"Embed Screencast content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Screencast."],"Embed ReverbNation content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 ReverbNation."],"Embed a Reddit thread.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043e\u0431\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u0435 Reddit."],"Embed Polldaddy content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Polldaddy."],"Embed Mixcloud content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Mixcloud."],"Embed a tweet.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0442\u0432\u0438\u0442."],"Embed Meetup.com content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Meetup.com."],"Embed Kickstarter content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Kickstarter."],"Embed Issuu content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Issuu."],"Embed Imgur content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Imgur."],"Embed Hulu content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Hulu."],"Embed a Dailymotion video.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e Dailymotion."],"Embed CollegeHumor content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 CollegeHumor."],"Embed Cloudup content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u0438\u0434\u0435\u043e \u0441 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u043c \u043f\u0435\u0440\u0435\u043a\u0440\u044b\u0442\u0438\u0435\u043c \u2014 \u0437\u0430\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u043e\u0432."],"Display code snippets that respect your spacing and tabs.":["\u041f\u043e\u043a\u0430\u0436\u0438\u0442\u0435 \u0444\u0440\u0430\u0433\u043c\u0435\u043d\u0442\u044b \u043a\u043e\u0434\u0430 \u0441 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430\u043c\u0438 \u0438 \u0442\u0430\u0431\u0443\u043b\u044f\u0446\u0438\u0435\u0439."],"Use the classic WordPress editor.":["\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043a\u043b\u0430\u0441\u0441\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 WordPress."],"Display a list of all categories.":["\u041f\u043e\u043a\u0430\u0437 \u0441\u043f\u0438\u0441\u043a\u0430 \u0432\u0441\u0435\u0445 \u0440\u0443\u0431\u0440\u0438\u043a."],"Embed a simple audio player.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0441\u0442\u043e\u0439 \u0430\u0443\u0434\u0438\u043e\u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044c."],"noun\x04View":["\u0412\u0438\u0434"],"editor button\x04Left to right":["\u0421\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e"],"Save as Pending":["\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0434\u043b\u044f \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f"],"%s address":["%s \u0430\u0434\u0440\u0435\u0441"],"Paste or type URL":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u043b\u0438 \u0432\u0432\u0435\u0441\u0442\u0438 URL-\u0430\u0434\u0440\u0435\u0441"],"Insert from URL":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441 \u0441\u0430\u0439\u0442\u0430"],"Block Navigator":["\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043f\u043e \u0431\u043b\u043e\u043a\u0430\u043c"],Styles:["\u0421\u0442\u0438\u043b\u0438"],"Advanced Panels":["\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435 \u043f\u0430\u043d\u0435\u043b\u0438"],"Document Panels":["\u041f\u0430\u043d\u0435\u043b\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432"],General:["\u041e\u0431\u0449\u0438\u0435"],"Open the block navigation menu.":["\u041e\u0442\u043a\u0440\u043e\u0435\u0442 \u043c\u0435\u043d\u044e \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438 \u043f\u043e \u0431\u043b\u043e\u043a\u0430\u043c."],"Work without distraction":["\u0420\u0430\u0431\u043e\u0442\u0430 \u0431\u0435\u0437 \u043e\u0442\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u044f \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u044f"],"Focus on one block at a time":["\u0421\u043e\u0441\u0440\u0435\u0434\u043e\u0442\u043e\u0447\u044c\u0442\u0435\u0441\u044c \u043d\u0430 \u043e\u0434\u043d\u043e\u043c \u0431\u043b\u043e\u043a\u0435"],"Access all block and document tools in a single place":["\u0414\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0432\u0441\u0435\u043c \u0431\u043b\u043e\u043a\u0430\u043c \u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u043c \u0432 \u043e\u0434\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435"],Options:["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438"],"(opens in a new tab)":["(\u043e\u0442\u043a\u0440\u043e\u0435\u0442\u0441\u044f \u0432 \u043d\u043e\u0432\u043e\u0439 \u0432\u043a\u043b\u0430\u0434\u043a\u0435)"],Minutes:["\u041c\u0438\u043d\u0443\u0442\u044b"],Hours:["\u0427\u0430\u0441\u044b"],Time:["\u0412\u0440\u0435\u043c\u044f"],Year:["\u0413\u043e\u0434"],Day:["\u0414\u0435\u043d\u044c"],December:["\u0414\u0435\u043a\u0430\u0431\u0440\u044c"],November:["\u041d\u043e\u044f\u0431\u0440\u044c"],October:["\u041e\u043a\u0442\u044f\u0431\u0440\u044c"],September:["\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c"],August:["\u0410\u0432\u0433\u0443\u0441\u0442"],July:["\u0418\u044e\u043b\u044c"],June:["\u0418\u044e\u043d\u044c"],May:["\u041c\u0430\u0439"],April:["\u0410\u043f\u0440\u0435\u043b\u044c"],March:["\u041c\u0430\u0440\u0442"],February:["\u0424\u0435\u0432\u0440\u0430\u043b\u044c"],January:["\u042f\u043d\u0432\u0430\u0440\u044c"],Month:["\u041c\u0435\u0441\u044f\u0446"],Date:["\u0414\u0430\u0442\u0430"],"Go to the first (home) or last (end) day of a week.":["\u041f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u0432 \u043f\u0435\u0440\u0432\u044b\u0439 (home) \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 (end) \u0434\u0435\u043d\u044c \u043d\u0435\u0434\u0435\u043b\u0438."],"Home/End":["Home/End"],"Home and End":["Home \u0438 End"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u043d\u0430\u0437\u0430\u0434 (PgUp) \u0438\u043b\u0438 \u0432\u043f\u0435\u0440\u0435\u0434 (PgDn) \u043d\u0430 \u043e\u0434\u0438\u043d \u043c\u0435\u0441\u044f\u0446."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up \u0438 Page Down"],"Move backward (up) or forward (down) by one week.":["\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u043d\u0430\u0437\u0430\u0434 (\u0432\u0432\u0435\u0440\u0445) \u0438\u043b\u0438 \u0432\u043f\u0435\u0440\u0435\u0434 (\u0432\u043d\u0438\u0437) \u043d\u0430 \u043e\u0434\u043d\u0443 \u043d\u0435\u0434\u0435\u043b\u044e."],"Up and Down Arrows":["\u0412\u0432\u0435\u0440\u0445 \u0438 \u0412\u043d\u0438\u0437 \u0441\u0442\u0440\u0435\u043b\u043a\u0438"],"Move backward (left) or forward (right) by one day.":["\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u043d\u0430\u0437\u0430\u0434 (\u0432\u043b\u0435\u0432\u043e) \u0438\u043b\u0438 \u0432\u043f\u0435\u0440\u0435\u0434 (\u0432\u043f\u0440\u0430\u0432\u043e) \u043d\u0430 \u043e\u0434\u0438\u043d \u0434\u0435\u043d\u044c."],"Left and Right Arrows":["\u0412\u043b\u0435\u0432\u043e \u0438 \u0412\u043f\u0440\u0430\u0432\u043e \u0441\u0442\u0440\u0435\u043b\u043a\u0438"],"Select the date in focus.":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0430\u0442\u0443 \u0432 \u0444\u043e\u043a\u0443\u0441\u0435."],"Navigating with a keyboard":["\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u044b"],"Click the desired day to select it.":["\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043d\u0430 \u043d\u0443\u0436\u043d\u044b\u0439 \u0434\u0435\u043d\u044c, \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0431\u0440\u0430\u0442\u044c \u0435\u0433\u043e."],"Click the right or left arrows to select other months in the past or the future.":["\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0441\u0442\u0440\u0435\u043b\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u043e \u0438\u043b\u0438 \u0432\u043b\u0435\u0432\u043e \u0434\u043b\u044f \u0432\u044b\u0431\u043e\u0440\u0430 \u0434\u0440\u0443\u0433\u0438\u0445 \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u0432 \u043f\u0440\u043e\u0448\u043b\u043e\u043c \u0438\u043b\u0438 \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c."],"Click to Select":["\u041d\u0430\u0436\u043c\u0438\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0431\u0440\u0430\u0442\u044c"],"Calendar Help":["\u041f\u043e\u043c\u043e\u0449\u044c \u043f\u043e \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044e"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u0438 \u0441\u043e \u0441\u0442\u0440\u0435\u043b\u043a\u0430\u043c\u0438 \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0446\u0432\u0435\u0442\u0430. \u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u0435 \u0432\u0432\u0435\u0440\u0445 - \u0447\u0442\u043e\u0431\u044b \u043e\u0441\u0432\u0435\u0442\u043b\u0438\u0442\u044c \u0446\u0432\u0435\u0442, \u0432\u043d\u0438\u0437 - \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0442\u0435\u043c\u043d\u0438\u0442\u044c, \u0432\u043b\u0435\u0432\u043e - \u0447\u0442\u043e\u0431\u044b \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043d\u0430\u0441\u044b\u0449\u0435\u043d\u043d\u043e\u0441\u0442\u044c, \u0438 \u0432\u043f\u0440\u0430\u0432\u043e - \u0447\u0442\u043e\u0431\u044b \u0443\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043d\u0430\u0441\u044b\u0449\u0435\u043d\u043d\u043e\u0441\u0442\u044c."],"Choose a shade":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043e\u0442\u0442\u0435\u043d\u043e\u043a"],"Change color format":["\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0446\u0432\u0435\u0442\u043e\u0432\u043e\u0433\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u0430"],"Color value in HSL":["\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0446\u0432\u0435\u0442\u0430 \u0432 HSL"],"Color value in RGB":["\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0446\u0432\u0435\u0442\u0430 \u0432 RGB"],"Color value in hexadecimal":["\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0446\u0432\u0435\u0442\u0430 \u0432 HEX-\u0444\u043e\u0440\u043c\u0430\u0442\u0435"],"RGB mode active":["\u0420\u0435\u0436\u0438\u043c RGB \u0430\u043a\u0442\u0438\u0432\u0435\u043d"],"Hex color mode active":["HEX \u0440\u0435\u0436\u0438\u043c \u0430\u043a\u0442\u0438\u0432\u0435\u043d"],"Hue/saturation/lightness mode active":["HSL \u0440\u0435\u0436\u0438\u043c \u0430\u043a\u0442\u0438\u0432\u0435\u043d"],"Move the arrow left or right to change hue.":["\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u0435 \u0441\u0442\u0440\u0435\u043b\u043a\u0443 \u0432\u043b\u0435\u0432\u043e \u0438\u043b\u0438 \u0432\u043f\u0440\u0430\u0432\u043e, \u0447\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0442\u0435\u043d\u043e\u043a."],"Hue value in degrees, from 0 to 359.":["\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043e\u0442\u0442\u0435\u043d\u043a\u0430 \u0432 \u0433\u0440\u0430\u0434\u0443\u0441\u0430\u0445, \u043e\u0442 0 \u0434\u043e 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0430\u043b\u044c\u0444\u0430, \u043e\u0442 0 (\u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d\u044b\u0439) \u0434\u043e 1 (\u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u043d\u0435\u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d\u044b\u0439)."],Stripes:["\u041f\u043e\u043b\u043e\u0441\u044b"],"Your site doesn\u2019t include support for this block.":["\u0412\u0430\u0448 \u0441\u0430\u0439\u0442 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u044d\u0442\u043e\u0442 \u0431\u043b\u043e\u043a."],"Unrecognized Block":["\u041d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u044b\u0439 \u0431\u043b\u043e\u043a"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\u0412\u0430\u0448 \u0441\u0430\u0439\u0442 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \"%s\" \u0431\u043b\u043e\u043a. \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u0431\u043b\u043e\u043a \u043d\u0435\u0442\u0440\u043e\u043d\u0443\u0442\u044b\u043c \u0438\u043b\u0438 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0435\u0433\u043e."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\u0412\u0430\u0448 \u0441\u0430\u0439\u0442 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \"%s\" \u0431\u043b\u043e\u043a. \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u0431\u043b\u043e\u043a \u043d\u0435\u0442\u0440\u043e\u043d\u0443\u0442\u044b\u043c, \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0435\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0432 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 HTML-\u0431\u043b\u043e\u043a \u0438\u043b\u0438 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0435\u0433\u043e."],"Media area":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430"],"Media & Text":["\u041c\u0435\u0434\u0438\u0430 \u0438 \u0422\u0435\u043a\u0441\u0442"],"Show media on right":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043c\u0435\u0434\u0438\u0430 \u0441\u043f\u0440\u0430\u0432\u0430"],"Show media on left":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043c\u0435\u0434\u0438\u0430 \u0441\u043b\u0435\u0432\u0430"],"Open in New Tab":["\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0432 \u043d\u043e\u0432\u043e\u0439 \u0432\u043a\u043b\u0430\u0434\u043a\u0435"],Cover:["\u041e\u0431\u043b\u043e\u0436\u043a\u0430"],"Border Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0433\u0440\u0430\u043d\u0438\u0446\u044b"],"Edit media":["\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0434\u0438\u0430"],Medium:["\u0421\u0440\u0435\u0434\u043d\u0438\u0439"],"Paste URL or type to search":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 URL \u0438\u043b\u0438 \u0441\u043b\u043e\u0432\u043e \u0434\u043b\u044f \u043f\u043e\u0438\u0441\u043a\u0430"],Terms:["\u0422\u0435\u0440\u043c\u0438\u043d\u044b"],"Your work will be published at the specified date and time.":["\u0412\u0430\u0448 \u0442\u0440\u0443\u0434 \u0431\u0443\u0434\u0435\u0442 \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d \u0432 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u0443\u044e \u0434\u0430\u0442\u0443 \u0438 \u0432\u0440\u0435\u043c\u044f."],"Are you ready to schedule?":["\u0412\u044b \u0433\u043e\u0442\u043e\u0432\u044b \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c?"],"Always show pre-publish checks.":["\u0412\u0441\u0435\u0433\u0434\u0430 \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043f\u0435\u0440\u0435\u0434 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0435\u0439"],"Take Over":["\u041f\u0435\u0440\u0435\u0445\u0432\u0430\u0442\u0438\u0442\u044c"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u0414\u0440\u0443\u0433\u043e\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0443\u0436\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0443\u0435\u0442 \u044d\u0442\u0443 \u0437\u0430\u043f\u0438\u0441\u044c. \u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0435\u0440\u0435\u0445\u0432\u0430\u0442\u0438\u0442\u044c?"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s \u0443\u0436\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0443\u0435\u0442 \u044d\u0442\u0443 \u0437\u0430\u043f\u0438\u0441\u044c. \u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0435\u0440\u0435\u0445\u0432\u0430\u0442\u0438\u0442\u044c?"],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u0412 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0434\u0440\u0443\u0433\u043e\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0443\u0435\u0442 \u044d\u0442\u0443 \u0437\u0430\u043f\u0438\u0441\u044c. \u041d\u0435 \u0431\u0435\u0441\u043f\u043e\u043a\u043e\u0439\u0442\u0435\u0441\u044c, \u0432\u0441\u0435 \u0432\u0430\u0448\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043d\u0430 \u0442\u0435\u043a\u0443\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b"],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0443\u0435\u0442 \u044d\u0442\u0443 \u0437\u0430\u043f\u0438\u0441\u044c. \u041d\u0435 \u0431\u0435\u0441\u043f\u043e\u043a\u043e\u0439\u0442\u0435\u0441\u044c, \u0432\u0441\u0435 \u0432\u0430\u0448\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043d\u0430 \u0442\u0435\u043a\u0443\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b"],Avatar:["\u0410\u0432\u0430\u0442\u0430\u0440"],"This post is already being edited.":["\u0417\u0430\u043f\u0438\u0441\u044c \u0443\u0436\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0443\u0435\u0442\u0441\u044f."],"Someone else has taken over this post.":["\u041a\u0442\u043e-\u0442\u043e \u0435\u0449\u0435 \u043f\u0435\u0440\u0435\u0445\u0432\u0430\u0442\u0438\u043b \u044d\u0442\u0443 \u0437\u0430\u043f\u0438\u0441\u044c."],"This block contains unexpected or invalid content.":["\u042d\u0442\u043e\u0442 \u0431\u043b\u043e\u043a \u0438\u043c\u0435\u0435\u0442 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u043e\u0435 \u0438\u043b\u0438 \u043d\u0435\u0432\u0435\u0440\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435."],"Resolve Block":["\u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0431\u043b\u043e\u043a"],"Convert to HTML":["\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 HTML"],"This block can only be used once.":["\u042d\u0442\u043e\u0442 \u0431\u043b\u043e\u043a \u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0434\u0438\u043d \u0440\u0430\u0437."],"Exit Code Editor":["\u0412\u044b\u0439\u0442\u0438 \u0438\u0437 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 \u043a\u043e\u0434\u0430"],"Editing Code":["\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u043a\u043e\u0434\u0430"],"Solid Color":["\u0421\u043f\u043b\u043e\u0448\u043d\u043e\u0439 \u0446\u0432\u0435\u0442"],"Main Color":["\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0446\u0432\u0435\u0442"],HTML:["HTML"],"Write HTML\u2026":["\u041f\u0438\u0448\u0438\u0442\u0435 HTML..."],"Media Settings":["\u041c\u0435\u0434\u0438\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438"],"Overlay Color":["\u0426\u0432\u0435\u0442 \u043d\u0430\u043b\u043e\u0436\u0435\u043d\u0438\u044f"],Overlay:["\u041d\u0430\u043b\u043e\u0436\u0435\u043d\u0438\u0435"],"Insert Media":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b"],"Reusable block imported successfully!":["\"\u041c\u043e\u0439 \u0431\u043b\u043e\u043a\" \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d \u0443\u0441\u043f\u0435\u0448\u043d\u043e!"],"Invalid Reusable Block JSON file":["\u041d\u0435\u0432\u0430\u043b\u0438\u0434\u043d\u044b\u0439 JSON \u0444\u0430\u0439\u043b \u0434\u043b\u044f \"\u041c\u043e\u0435\u0433\u043e \u0431\u043b\u043e\u043a\u0430\""],"Invalid JSON file":["\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439 JSON-\u0444\u0430\u0439\u043b"],"Import from JSON":["\u0418\u043c\u043f\u043e\u0440\u0442 \u0438\u0437 JSON"],Backtick:["\u041a\u0430\u0432\u044b\u0447\u043a\u0430"],Period:["\u0422\u043e\u0447\u043a\u0430"],Comma:["\u0417\u0430\u043f\u044f\u0442\u0430\u044f"],"Change type of %d block":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0442\u0438\u043f %d \u0431\u043b\u043e\u043a\u0430","\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0442\u0438\u043f %d \u0431\u043b\u043e\u043a\u043e\u0432","\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0442\u0438\u043f %d \u0431\u043b\u043e\u043a\u043e\u0432"],Current:["\u0422\u0435\u043a\u0443\u0449\u0438\u0439"],"After Conversion":["\u041f\u043e\u0441\u043b\u0435 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f"],"Change alignment":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435"],"Change text alignment":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u0430"],"%d block":["%d \u0431\u043b\u043e\u043a","%d \u0431\u043b\u043e\u043a\u0430","%d \u0431\u043b\u043e\u043a\u043e\u0432"],Escape:["\u0412\u044b\u0439\u0442\u0438"],"Forward-slash":["\u041e\u0431\u0440\u0430\u0442\u043d\u044b\u0439 \u0441\u043b\u0435\u0448"],"No archives to show.":["\u041d\u0435\u0442 \u0430\u0440\u0445\u0438\u0432\u043e\u0432 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430."],"This file is empty.":["\u042d\u0442\u043e\u0442 \u0444\u0430\u0439\u043b \u043f\u0443\u0441\u0442."],"Sorry, this file type is not supported here.":["\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u044d\u0442\u043e\u0442 \u0442\u0438\u043f \u0444\u0430\u0439\u043b\u0430 \u0437\u0434\u0435\u0441\u044c \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f."],"Manage All Reusable Blocks":["\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0432\u0441\u0435\u043c\u0438 \"\u041c\u043e\u0438\u043c\u0438 \u0431\u043b\u043e\u043a\u0430\u043c\u0438\""],Title:["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"],"Fullscreen Mode":["\u041f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c"],"Beautiful landscape":["\u041f\u0440\u0435\u043a\u0440\u0430\u0441\u043d\u044b\u0439 \u043f\u0435\u0439\u0437\u0430\u0436"],"Close panel":["\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043d\u0435\u043b\u044c"],"Convert to Classic Block":["\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u043a\u043b\u0430\u0441\u0441\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0431\u043b\u043e\u043a"],"Remove Poster Image":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u043e\u0441\u0442\u0435\u0440"],"Select Poster Image":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u0441\u0442\u0435\u0440"],"Poster Image":["\u041f\u043e\u0441\u0442\u0435\u0440"],"This block is deprecated. Please use the Columns block instead.":["\u042d\u0442\u043e\u0442 \u0431\u043b\u043e\u043a \u0443\u0441\u0442\u0430\u0440\u0435\u043b. \u0412\u043c\u0435\u0441\u0442\u043e \u044d\u0442\u043e\u0433\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0431\u043b\u043e\u043a \xab\u0421\u0442\u043e\u043b\u0431\u0446\u044b\xbb."],"Text Columns (deprecated)":["\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0435 \u0441\u0442\u043e\u043b\u0431\u0446\u044b (\u0443\u0441\u0442\u0430\u0440\u0435\u043b)"],"Row Count":["\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0442\u0440\u043e\u043a"],"Column Count":["\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0442\u043e\u043b\u0431\u0446\u043e\u0432"],"This block is deprecated. Please use the Paragraph block instead.":["\u042d\u0442\u043e\u0442 \u0431\u043b\u043e\u043a \u0443\u0441\u0442\u0430\u0440\u0435\u043b. \u0412\u043c\u0435\u0441\u0442\u043e \u044d\u0442\u043e\u0433\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0431\u043b\u043e\u043a \xab\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444\xbb."],"Subheading (deprecated)":["\u041f\u043e\u0434\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a (\u0443\u0441\u0442\u0430\u0440\u0435\u043b)"],blockquote:["\u0446\u0438\u0442\u0430\u0442\u0430"],"Change the block type after adding a new paragraph.":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0442\u0438\u043f \u0431\u043b\u043e\u043a\u0430 \u043f\u043e\u0441\u043b\u0435 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u043f\u0430\u0440\u0430\u0433\u0440\u0430\u0444\u0430."],"Spotlight Mode":["\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u0441\u0432\u0435\u0442\u043a\u0438"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u041c\u0435\u0442\u043a\u0438 \u043f\u043e\u043c\u043e\u0433\u0430\u044e\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0438 \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u044b\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u043c \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0430\u0442\u044c\u0441\u044f \u043f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0441\u0430\u0439\u0442\u0443 \u0438 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u044c \u0432\u0430\u0448\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435. \u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0445 \u0441\u043b\u043e\u0432 \u0434\u043b\u044f \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u0432\u0430\u0448\u0435\u0439 \u0437\u0430\u043f\u0438\u0441\u0438."],"Add tags":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438"],"Apply the \"%1$s\" format.":["\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442 \xab%1$s\xbb."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u0412 \u0432\u0430\u0448\u0435\u0439 \u0442\u0435\u043c\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u0444\u043e\u0440\u043c\u0430\u0442\u044b \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0434\u0435\u043b\u044f\u0442\u044c \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0435 \u0432\u0438\u0434\u044b \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0438\u043b\u0438 \u0432\u0438\u0434\u0435\u043e. \u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u0435 \u0444\u043e\u0440\u043c\u0430\u0442 \u0437\u0430\u043f\u0438\u0441\u0438, \u0447\u0442\u043e\u0431\u044b \u0443\u0432\u0438\u0434\u0435\u0442\u044c \u044d\u0442\u043e\u0442 \u043e\u0441\u043e\u0431\u044b\u0439 \u0441\u0442\u0438\u043b\u044c."],"Use a post format":["\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442 \u0437\u0430\u043f\u0438\u0441\u0438"],"Insert After":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435"],"Insert Before":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u043e"],"Move %1$d block from position %2$d down by one place":["\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c %1$d \u0431\u043b\u043e\u043a \u0441 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 %2$d \u0432\u043d\u0438\u0437 \u043d\u0430 \u043e\u0434\u043d\u0443 \u043f\u043e\u0437\u0438\u0446\u0438\u044e","\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c %1$d \u0431\u043b\u043e\u043a\u0430 \u0441 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 %2$d \u0432\u043d\u0438\u0437 \u043d\u0430 \u043e\u0434\u043d\u0443 \u043f\u043e\u0437\u0438\u0446\u0438\u044e","\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c %1$d \u0431\u043b\u043e\u043a\u043e\u0432 \u0441 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 %2$d \u0432\u043d\u0438\u0437 \u043d\u0430 \u043e\u0434\u043d\u0443 \u043f\u043e\u0437\u0438\u0446\u0438\u044e"],"Move %1$d block from position %2$d up by one place":["\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c %1$d \u0431\u043b\u043e\u043a \u0441 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 %2$d \u0432\u0432\u0435\u0440\u0445 \u043d\u0430 \u043e\u0434\u043d\u0443 \u043f\u043e\u0437\u0438\u0446\u0438\u044e","\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c %1$d \u0431\u043b\u043e\u043a\u0430 \u0441 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 %2$d \u0432\u0432\u0435\u0440\u0445 \u043d\u0430 \u043e\u0434\u043d\u0443 \u043f\u043e\u0437\u0438\u0446\u0438\u044e","\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c %1$d \u0431\u043b\u043e\u043a\u043e\u0432 \u0441 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 %2$d \u0432\u0432\u0435\u0440\u0445 \u043d\u0430 \u043e\u0434\u043d\u0443 \u043f\u043e\u0437\u0438\u0446\u0438\u044e"],"Move %1$s block from position %2$d %3$s to position %4$d":["\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c %1$s \u0431\u043b\u043e\u043a \u0441 \u043f\u043e\u0437\u0438\u0446\u0438\u0438 %2$d %3$s \u043d\u0430 \u043f\u043e\u0437\u0438\u0446\u0438\u044e %4$d"],movie:["\u0444\u0438\u043b\u044c\u043c"],"Insert a new block before the selected block(s).":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0431\u043b\u043e\u043a \u043f\u0435\u0440\u0435\u0434 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u043c \u0431\u043b\u043e\u043a\u043e\u043c."],"Remove the selected block(s).":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u0431\u043b\u043e\u043a(\u0438)."],"Duplicate the selected block(s).":["\u0414\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u0431\u043b\u043e\u043a(\u0438)."],"Block shortcuts":["\u0411\u043b\u043e\u043a\u0438"],"Clear selection.":["\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0432\u044b\u0431\u043e\u0440."],"Select all text when typing. Press again to select all blocks.":["\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0432\u0441\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437, \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0431\u0440\u0430\u0442\u044c \u0432\u0441\u0435 \u0431\u043b\u043e\u043a\u0438."],"Selection shortcuts":["\u0412\u044b\u0431\u043e\u0440"],"Switch between Visual Editor and Code Editor.":["\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u043c \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u043e\u043c \u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u043e\u043c \u043a\u043e\u0434\u0430."],"Navigate to the previous part of the editor (alternative).":["\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0439 \u0447\u0430\u0441\u0442\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 (\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0430)."],"Navigate to the next part of the editor (alternative).":["\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0439 \u0447\u0430\u0441\u0442\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 (\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0430)."],"Navigate to the previous part of the editor.":["\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0439 \u0447\u0430\u0441\u0442\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430."],"Navigate to the next part of the editor.":["\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0439 \u0447\u0430\u0441\u0442\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430."],"Show or hide the settings sidebar.":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0438\u043b\u0438 \u0441\u043a\u0440\u044b\u0442\u044c \u0431\u043e\u043a\u043e\u0432\u0443\u044e \u043f\u0430\u043d\u0435\u043b\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a."],"Redo your last undo.":["\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u043e\u0442\u043c\u0435\u043d\u0443."],"Undo your last changes.":["\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0432\u043e\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f."],"Save your changes.":["\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f."],"Global shortcuts":["\u041e\u0431\u0449\u0438\u0435"],"Remove a link.":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443."],"Convert the selected text into a link.":["\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442 \u0432 \u0441\u0441\u044b\u043b\u043a\u0443."],"Underline the selected text.":["\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442."],"Make the selected text italic.":["\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442 \u043a\u0443\u0440\u0441\u0438\u0432\u043e\u043c."],"Make the selected text bold.":["\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442 \u0436\u0438\u0440\u043d\u044b\u043c."],"Text formatting":["\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u0430"],"Insert a new block after the selected block(s).":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0431\u043b\u043e\u043a \u043f\u043e\u0441\u043b\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0433\u043e \u0431\u043b\u043e\u043a\u0430."],"Keyboard Shortcuts":["\u0413\u043e\u0440\u044f\u0447\u0438\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u0438"],"Thanks for testing Gutenberg!":["\u0421\u043f\u0430\u0441\u0438\u0431\u043e \u0437\u0430 \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 Gutenberg!"],"Help build Gutenberg":["\u041f\u043e\u043c\u043e\u0433\u0438\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["\u0415\u0441\u043b\u0438 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043e \u0442\u043e\u043c, \u043a\u0430\u043a \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0431\u043b\u043e\u043a\u0438, \u0438\u043b\u0438 \u0435\u0441\u043b\u0438 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u043e\u043c\u043e\u0447\u044c \u0432 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430, \u0437\u0430\u0445\u043e\u0434\u0438\u0442\u0435 \u0432 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 GitHub."],"The WordPress community":["\u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e WordPress"],"Code is Poetry":["\u041a\u043e\u0434 \u2014 \u044d\u0442\u043e \u043f\u043e\u044d\u0437\u0438\u044f."],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043b\u044e\u0431\u043e\u0439 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0443\u044e\u0449\u0438\u0439 \u0432\u0430\u0441 \u0431\u043b\u043e\u043a, \u0441\u0442\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0438\u043b\u0438 \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0439, \u0434\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u0442\u043e\u0439. \u0412\u043e\u0442 \u0431\u043b\u043e\u043a \u0412\u044b\u0434\u0435\u0440\u0436\u043a\u0430:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["\u041b\u044e\u0431\u043e\u0439 \u0431\u043b\u043e\u043a \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0432\u044b\u0440\u043e\u0432\u043d\u0435\u043d. \u0412\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0431\u043b\u043e\u043a \u0438\u043c\u0435\u0435\u0442 \u0438\u0445 \u0442\u0430\u043a\u0436\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0430\u0434\u0430\u043f\u0442\u0438\u0432\u043d\u044b\u043c \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["\u0412\u044b\u0448\u0435 \u0431\u044b\u043b\u0430 \u0433\u0430\u043b\u0435\u0440\u0435\u044f \u0441 \u0434\u0432\u0443\u043c\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u043c\u0438. \u042d\u0442\u043e \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e \u043f\u0440\u0438\u0432\u043b\u0435\u043a\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043c\u0430\u043a\u0435\u0442\u043e\u0432. \u0412\u044b \u0442\u0430\u043a\u0436\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043b\u0435\u0433\u043a\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0433\u0430\u043b\u0435\u0440\u0435\u044e \u043e\u0431\u0440\u0430\u0442\u043d\u043e \u0432 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0431\u043b\u043e\u043a-\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0430\u0442\u0435\u043b\u044c."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["\u041a\u043e\u043d\u0435\u0447\u043d\u043e, \u043f\u043e\u043b\u043d\u043e\u043c\u0430\u0441\u0448\u0442\u0430\u0431\u043d\u043e\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0432\u043e\u043b\u044c\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0438\u043c. \u041d\u043e \u0438\u043d\u043e\u0433\u0434\u0430 \u044d\u0442\u043e \u0441\u0442\u043e\u0438\u0442 \u0442\u043e\u0433\u043e."],"Accessibility is important — don’t forget image alt attribute":["\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c \u0432\u0430\u0436\u043d\u0430 — \u043d\u0435 \u0437\u0430\u0431\u044b\u0432\u0430\u0439\u0442\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442 alt"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["\u0415\u0441\u043b\u0438 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u044f \u043f\u043e \u0448\u0438\u0440\u0438\u043d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e \u0438 \u043d\u0430 \u0432\u0441\u044e \u0448\u0438\u0440\u0438\u043d\u0443 \u0441 \u0433\u0430\u043b\u0435\u0440\u0435\u044f\u043c\u0438, \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043e\u0447\u0435\u043d\u044c \u0431\u043e\u0433\u0430\u0442\u044b\u0439 \u043c\u0435\u0434\u0438\u0430-\u043c\u0430\u043a\u0435\u0442 \u043e\u0447\u0435\u043d\u044c \u0431\u044b\u0441\u0442\u0440\u043e:"],"Media Rich":["\u041c\u0435\u0434\u0438\u0430"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0442\u043e\u043b\u0431\u0446\u043e\u0432 \u0432 \u0441\u0432\u043e\u0438\u0445 \u0433\u0430\u043b\u0435\u0440\u0435\u044f\u0445, \u043f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0432 \u043f\u043e\u043b\u0437\u0443\u043d\u043e\u043a \u0432 \u0438\u043d\u0441\u043f\u0435\u043a\u0442\u043e\u0440\u0435 \u0431\u043b\u043e\u043a\u043e\u0432 \u043d\u0430 \u0431\u043e\u043a\u043e\u0432\u043e\u0439 \u043f\u0430\u043d\u0435\u043b\u0438."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["\u0411\u043b\u043e\u043a\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043b\u044e\u0431\u044b\u043c\u0438. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0446\u0438\u0442\u0430\u0442\u0443 \u043a\u0430\u043a \u0447\u0430\u0441\u0442\u044c \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438 \u0441\u0432\u043e\u0435\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430 \u0438\u043b\u0438 \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0433\u0438\u0433\u0430\u043d\u0442\u0441\u043a\u0438\u0439 \u0441\u0442\u0438\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442. \u0412\u0441\u0435 \u044d\u0442\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0432 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0445."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0435 \u0446\u0438\u0442\u0430\u0442\u044b \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0435 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435, \u0430\u043d\u0430\u043b\u043e\u0433\u0438\u0447\u043d\u043e\u0435 \u043f\u043e\u0434\u043f\u0438\u0441\u0438 \u043f\u043e\u0434 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u043c\u0438. \u041f\u043e\u044d\u0442\u043e\u043c\u0443 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0446\u0438\u0442\u0430\u0442\u044b \u043d\u0435\u0438\u0437\u043c\u0435\u043d\u043d\u0430\u044f, \u0434\u0430\u0436\u0435 \u0435\u0441\u043b\u0438 \u0432\u044b \u0432\u044b\u0431\u0438\u0440\u0430\u0435\u0442\u0435, \u0438\u0437\u043c\u0435\u043d\u044f\u0435\u0442\u0435 \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u044f\u0435\u0442\u0435 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a. \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u043c\u043e\u0436\u043d\u043e \u043b\u0435\u0433\u043a\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f."],"Matt Mullenweg, 2017":["\u041c\u044d\u0442\u0442 \u041c\u0443\u043b\u043b\u0435\u043d\u0432\u0435\u0433, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0441\u044f \u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u043e\u043f\u044b\u0442 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u043e\u0441\u0442\u043e\u0432 \u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442 \u043b\u0435\u0433\u043a\u043e \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u043d\u0430\u0441\u044b\u0449\u0435\u043d\u043d\u044b\u0435 \u043f\u043e\u0441\u0442\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \xab\u0431\u043b\u043e\u043a\u043e\u0432\xbb - \u0432\u043c\u0435\u0441\u0442\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0449\u0438\u0445\u0441\u044f \u0441\u0435\u0439\u0447\u0430\u0441 \u0448\u043e\u0440\u0442\u043a\u043e\u0434\u043e\u0432, \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0445 html \u0438\u043b\u0438 \u0432\u0441\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u0445 \u043c\u0430\u0445\u0438\u043d\u0430\u0446\u0438\u0439 \u0441\u043e \u0432\u0441\u0442\u0430\u0432\u043a\u043e\u0439 \u043a\u043e\u0434\u0430"],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["\u041e\u0433\u0440\u043e\u043c\u043d\u043e\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u043e \u0431\u043b\u043e\u043a\u043e\u0432 \u0437\u0430\u043a\u043b\u044e\u0447\u0430\u0435\u0442\u0441\u044f \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0441\u0440\u0430\u0437\u0443 \u0438\u0445 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438\u043c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c. \u0412\u043c\u0435\u0441\u0442\u043e \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u043e\u043b\u044f \u0434\u043b\u044f \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0442\u0430\u043a\u0438\u0445 \u0432\u0435\u0449\u0435\u0439, \u043a\u0430\u043a \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0446\u0438\u0442\u0430\u0442\u044b, \u0438\u043b\u0438 \u0442\u0435\u043a\u0441\u0442 \u043a\u043d\u043e\u043f\u043a\u0438, \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u043e\u0442\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e \u0446\u0438\u0442\u0430\u0442\u0443:"],"Visual Editing":["\u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435"],"And Lists like this one of course :)":["\u0418 \u0441\u043f\u0438\u0441\u043a\u0438, \u043a\u0430\u043a \u044d\u0442\u0438, \u043a\u043e\u043d\u0435\u0447\u043d\u043e :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["\u0411\u043b\u043e\u043a\u0438 \u043c\u0430\u043a\u0435\u0442\u043e\u0432, \u043a\u043d\u043e\u043f\u043a\u0438, \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u0438 \u0438 \u0442.\u0434."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["\u0412\u0441\u0442\u0430\u0432\u043a\u0438, \u0432\u0438\u0434\u0435\u043e \u0441 YouTube, \u0442\u0432\u0438\u0442\u044b \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 WordPress."],Galleries:["\u0413\u0430\u043b\u0435\u0440\u0435\u0438"],"Images & Videos":["\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0438 \u0432\u0438\u0434\u0435\u043e"],"Text & Headings":["\u0422\u0435\u043a\u0441\u0442 \u0438 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435, WordPress \u0443\u0436\u0435 \u043c\u043e\u0436\u0435\u0442 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0432\u0430\u0448\u0438 \u0437\u0430\u043f\u0438\u0441\u0438, \u0431\u043b\u043e\u043a\u0438 \u043e \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0432\u044b \u043d\u0435 \u0437\u043d\u0430\u043b\u0438. \u0412\u043e\u0442 \u043a\u0440\u0430\u0442\u043a\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0442\u043e\u0433\u043e, \u0447\u0442\u043e \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u0439\u0442\u0438 \u0432 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0441\u0435, \u0447\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0441\u0434\u0435\u043b\u0430\u0442\u044c WordPress, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0432\u0430\u043c \u0431\u044b\u0441\u0442\u0440\u043e \u0438 \u0438\u0437 \u043e\u0434\u043d\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u0430. \u041d\u0435\u0442 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c HTML-\u0442\u0435\u0433\u0438, \u043a\u043b\u0430\u0441\u0441\u044b \u0438\u043b\u0438 \u043f\u043e\u043c\u043d\u0438\u0442\u044c \u0441\u043b\u043e\u0436\u043d\u044b\u0439 \u0441\u0438\u043d\u0442\u0430\u043a\u0441\u0438\u0441 \u0448\u043e\u0440\u0442\u043a\u043e\u0434\u043e\u0432. \u041a\u043d\u043e\u043f\u043a\u0430 (+), \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0443\u0432\u0438\u0434\u0438\u0442\u0435 \u043e\u043a\u043e\u043b\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c \u0432\u0441\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0431\u043b\u043e\u043a\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u0445 \u0432 \u0441\u0432\u043e\u044e \u0437\u0430\u043f\u0438\u0441\u044c. \u041f\u043b\u0430\u0433\u0438\u043d\u044b \u0438 \u0442\u0435\u043c\u044b \u043c\u043e\u0433\u0443\u0442 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u0431\u043b\u043e\u043a\u0438, \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u044f \u0432\u0441\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u0432\u0430\u0448\u0438\u0445 \u0441\u0442\u0430\u0442\u0435\u0439."],"The Inserter Tool":["\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 \u0432\u0441\u0442\u0430\u0432\u043a\u0438"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0432\u044b\u0431\u0440\u0430\u0442\u044c, \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u043b\u0438 \u043e\u0442\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a. \u0422\u0435\u043f\u0435\u0440\u044c \u0432\u0430\u043c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043e\u0441\u0442\u043e\u0440\u043e\u0436\u043d\u044b\u043c \u043f\u0440\u0438 \u0432\u044b\u0431\u043e\u0440\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430, \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u0440\u0430\u0437\u0440\u0443\u0448\u0438\u0442\u044c \u043f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446\u0438\u044e."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["\u0415\u0441\u043b\u0438 \u0432\u0430\u0448\u0430 \u0442\u0435\u043c\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0440\u0435\u0436\u0438\u043c \xab\u043d\u0430 \u0432\u0441\u044e \u0448\u0438\u0440\u0438\u043d\u0443\xbb, \u0432\u044b \u0443\u0432\u0438\u0434\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \xab\u043d\u0430 \u0432\u0441\u044e \u0448\u0438\u0440\u0438\u043d\u0443\xbb \u043d\u0430 \u043f\u0430\u043d\u0435\u043b\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0435 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435 \u0432 \u043d\u043e\u0432\u043e\u043c \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0435 \u0443\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0438 \u043c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430 \u0441 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u0441\u0442\u043e\u0440\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e. \u041d\u0430\u0434\u0435\u0435\u043c\u0441\u044f, \u0432\u044b \u043d\u0430\u0439\u0434\u0435\u0442\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430 \u043d\u0430 \u043f\u043e\u043b\u043d\u0443\u044e \u0448\u0438\u0440\u0438\u043d\u0443 \u043d\u0430\u043c\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0449\u0435 \u0438 \u043d\u0430\u0434\u0435\u0436\u043d\u0435\u0435, \u0447\u0435\u043c \u0440\u0430\u043d\u044c\u0448\u0435."],"A Picture is Worth a Thousand Words":["\u041e\u0434\u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430 \u0441\u0442\u043e\u0438\u0442 \u0442\u044b\u0441\u044f\u0447\u0438 \u0441\u043b\u043e\u0432"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438 \u0442\u0430\u043a\u0436\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u043c\u0438 \u0431\u043b\u043e\u043a\u0430\u043c\u0438, \u0447\u0442\u043e \u043f\u043e\u043c\u043e\u0433\u0430\u0435\u0442 \u0441 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0435\u0439 \u0432\u0430\u0448\u0435\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e \u0441\u0442\u0430\u0442\u044c\u0438."],"... like this one, which is right aligned.":["... \u043a\u0430\u043a \u044d\u0442\u043e\u0442, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u044b\u0440\u043e\u0432\u043d\u0435\u043d \u043f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["\u0422\u043e, \u0447\u0442\u043e \u0432\u044b \u0441\u0435\u0439\u0447\u0430\u0441 \u0447\u0438\u0442\u0430\u0435\u0442\u0435, \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u043f\u0430\u0440\u0430\u0433\u0440\u0430\u0444. \u0421\u0430\u043c\u044b\u0439 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0431\u043b\u043e\u043a \u0438\u0437 \u0432\u0441\u0435\u0445. \u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444 \u0438\u043c\u0435\u0435\u0442 \u0441\u0432\u043e\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u043d\u043e \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0430\u0442\u044c \u043f\u043e \u0437\u0430\u043f\u0438\u0441\u0438..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["\u0426\u0435\u043b\u044c \u043d\u043e\u0432\u043e\u0433\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 - \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0432 WordPress \u043f\u0440\u043e\u0441\u0442\u044b\u043c \u0438 \u043f\u0440\u0438\u044f\u0442\u043d\u044b\u043c. \u0412\u0441\u044f \u044d\u0442\u0430 \u0437\u0430\u043f\u0438\u0441\u044c \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u0444\u0440\u0430\u0433\u043c\u0435\u043d\u0442\u043e\u0432 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0447\u0442\u043e \u043f\u043e\u0445\u043e\u0436\u0435 \u043d\u0430 LEGO-\u043a\u0438\u0440\u043f\u0438\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0430\u0442\u044c \u0438 \u043a\u043e\u043d\u0441\u0442\u0440\u0443\u0438\u0440\u043e\u0432\u0430\u0442\u044c. \u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0430\u0439\u0442\u0435 \u043a\u0443\u0440\u0441\u043e\u0440, \u0438 \u0432\u044b \u0437\u0430\u043c\u0435\u0442\u0438\u0442\u0435, \u0447\u0442\u043e \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0435 \u0431\u043b\u043e\u043a\u0438 \u0437\u0430\u0433\u043e\u0440\u0430\u044e\u0442\u0441\u044f \u043a\u043e\u043d\u0442\u0443\u0440\u0430\u043c\u0438 \u0438 \u0441\u0442\u0440\u0435\u043b\u043a\u0430\u043c\u0438. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0441\u0442\u0440\u0435\u043b\u043a\u0438, \u0447\u0442\u043e\u0431\u044b \u0431\u044b\u0441\u0442\u0440\u043e \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438, \u043d\u0435 \u043e\u043f\u0430\u0441\u0430\u044f\u0441\u044c \u043f\u043e\u0442\u0435\u0440\u044f\u0442\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u0432\u0441\u0442\u0430\u0432\u043a\u0438."],"Of Mountains & Printing Presses":["\u041a\u043d\u0438\u0433\u0430 \u0433\u043e\u0440 \u0438 \u043c\u043e\u0440\u0435\u0439"],"Welcome to the Gutenberg Editor":["\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0432 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 Gutenberg"],"block name\x04More":["\u0422\u0435\u0433 \xab\u0414\u0430\u043b\u0435\u0435\xbb"],"button to expand options\x04More":["\u0411\u043e\u043b\u044c\u0448\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a"],"Are you sure you want to unschedule this post?":["\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b,\u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u044d\u0442\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438?"],"Alt Text (Alternative Text)":["Alt (\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442)"],"Reusable Block":["\u041c\u043e\u0439 \u0431\u043b\u043e\u043a"],"Unique identifier for the object.":["\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043b\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430."],"Untitled Reusable Block":["\u041c\u043e\u0439 \u0431\u043b\u043e\u043a \u0431\u0435\u0437 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f"],Small:["Small"],"(%s: %s)":["(%s: %s)"],Reusable:["\u041c\u043e\u0439 \u0431\u043b\u043e\u043a"],"(current %s: %s)":["(\u0442\u0435\u043a\u0443\u0449\u0438\u0439 %s: %s)"],"Remove from Reusable Blocks":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437 \u043c\u043e\u0438\u0445 \u0431\u043b\u043e\u043a\u043e\u0432"],"Add to Reusable Blocks":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043c\u043e\u0438 \u0431\u043b\u043e\u043a\u0438"],"Keep as HTML":["\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043a\u0430\u043a HTML"],"Edit URL":["\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c URL"],"Color Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0446\u0432\u0435\u0442\u0430"],"The response is not a valid JSON response.":["\u041e\u0442\u0432\u0435\u0442 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u043c \u043e\u0442\u0432\u0435\u0442\u043e\u043c JSON."],"Editor publish":["\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438"],Muted:["\u041f\u0440\u0438\u0433\u043b\u0443\u0448\u0435\u043d\u043d\u044b\u0439"],"Video Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0432\u0438\u0434\u0435\u043e"],"recent comments":["\u043d\u0435\u0434\u0430\u0432\u043d\u0438\u0435 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438"],"Latest Comments":["\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438"],"Display Excerpt":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043e\u0442\u0440\u044b\u0432\u043e\u043a"],"Display Date":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0434\u0430\u0442\u0443"],"Display Avatar":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0430\u0432\u0430\u0442\u0430\u0440"],"Latest Comments Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432"],"Number of Comments":["\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432"],"Background Opacity":["\u041d\u0435\u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d\u043e\u0441\u0442\u044c \u0444\u043e\u043d\u0430"],Auto:["\u0410\u0432\u0442\u043e"],Preload:["\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430"],"Audio Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0430\u0443\u0434\u0438\u043e"],"Display a monthly archive of your posts.":["\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0430\u0440\u0445\u0438\u0432\u044b \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0437\u0430 \u043c\u0435\u0441\u044f\u0446."],"Display as Dropdown":["\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0432\u044b\u043f\u0430\u0434\u0430\u044e\u0449\u0438\u043c \u0441\u043f\u0438\u0441\u043a\u043e\u043c"],"Show Post Counts":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0441\u0447\u0451\u0442\u0447\u0438\u043a \u0437\u0430\u043f\u0438\u0441\u0435\u0439"],"Archives Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0430\u0440\u0445\u0438\u0432\u043e\u0432"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430"],"No comments to show.":["\u041d\u0435\u0442 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430."],"%1$s on %2$s":["%1$s \u043a %2$s"],"Select Post":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u044c"],"Select Week":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u0435\u0434\u0435\u043b\u044e"],"Select Day":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0435\u043d\u044c"],"Select Month":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0435\u0441\u044f\u0446"],"Select Year":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0433\u043e\u0434"],Archives:["\u0410\u0440\u0445\u0438\u0432\u044b"],"Very dark gray":["\u0422\u0451\u043c\u043d\u043e-\u0441\u0435\u0440\u044b\u0439"],"Cyan bluish gray":["\u0413\u043e\u043b\u0443\u0431\u043e\u0432\u0430\u0442\u043e-\u0441\u0435\u0440\u044b\u0439"],"Very light gray":["\u0421\u0432\u0435\u0442\u043b\u043e-\u0441\u0435\u0440\u044b\u0439"],"Vivid cyan blue":["\u042f\u0440\u043a\u043e-\u0441\u0438\u043d\u0438\u0439"],"Pale cyan blue":["\u0411\u043b\u0435\u0434\u043d\u043e-\u0433\u043e\u043b\u0443\u0431\u043e\u0439"],"Vivid green cyan":["\u042f\u0440\u043a\u043e-\u0437\u0435\u043b\u0435\u043d\u044b\u0439"],"Light green cyan":["\u0421\u0432\u0435\u0442\u043b\u043e-\u0437\u0435\u043b\u0435\u043d\u044b\u0439"],"Luminous vivid amber":["\u042f\u043d\u0442\u0430\u0440\u043d\u044b\u0439"],"Luminous vivid orange":["\u042f\u0440\u043a\u043e-\u043e\u0440\u0430\u043d\u0436\u0435\u0432\u044b\u0439"],"Vivid red":["\u042f\u0440\u043a\u043e-\u043a\u0440\u0430\u0441\u043d\u044b\u0439"],"Pale pink":["\u0411\u043b\u0435\u0434\u043d\u043e-\u0440\u043e\u0437\u043e\u0432\u044b\u0439"],"Inline image":["\u0412\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u043e\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435"],"Available block types":["\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \u0431\u043b\u043e\u043a\u043e\u0432"],"Transform To:":["\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432:"],"Remove Block":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a"],"Open publish panel":["\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043d\u0435\u043b\u044c \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438"],Dots:["\u0422\u043e\u0447\u043a\u0438"],"Wide Line":["\u0428\u0438\u0440\u043e\u043a\u0430\u044f \u043b\u0438\u043d\u0438\u044f"],Large:["\u0411\u043e\u043b\u044c\u0448\u043e\u0439"],"Show download button":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043a\u043d\u043e\u043f\u043a\u0443 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438"],"Download button settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043a\u043d\u043e\u043f\u043a\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438"],"Link To":["\u0421\u0441\u044b\u043b\u043a\u0430"],"Text link settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0439 \u0441\u0441\u044b\u043b\u043a\u0438"],pdf:["pdf"],document:["\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442"],"Copy URL":["\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c URL"],"Write file name\u2026":["\u0412\u043f\u0438\u0448\u0438\u0442\u0435 \u0438\u043c\u044f \u0444\u0430\u0439\u043b\u0430 ..."],"Edit file":["\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0430\u0439\u043b"],File:["\u0424\u0430\u0439\u043b"],"A single column within a columns block.":["\u041e\u0434\u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u043a\u0430 \u0432 \u0431\u043b\u043e\u043a\u0435 \u043a\u043e\u043b\u043e\u043d\u043e\u043a."],Column:["\u0421\u0442\u043e\u043b\u0431\u0435\u0446"],Outline:["\u041a\u043e\u043d\u0442\u0443\u0440"],Loop:["\u0417\u0430\u0446\u0438\u043a\u043b\u0438\u0442\u044c"],Autoplay:["\u0410\u0432\u0442\u043e\u0437\u0430\u043f\u0443\u0441\u043a"],"Playback Controls":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f"],"Close dialog":["\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043e\u043a\u043d\u043e"],"Sorry, this file type is not permitted for security reasons.":["\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u044d\u0442\u043e\u0442 \u0442\u0438\u043f \u0444\u0430\u0439\u043b\u0430 \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c \u043f\u043e \u0441\u043e\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f\u043c \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438."],"Disable tips":["\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0441\u043e\u0432\u0435\u0442\u044b"],"Got it":["\u041f\u043e\u043d\u044f\u0442\u043d\u043e"],"See next tip":["\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0441\u043e\u0432\u0435\u0442"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u041a\u043e\u0433\u0434\u0430 \u0432\u044b \u0431\u0443\u0434\u0435\u0442\u0435 \u0433\u043e\u0442\u043e\u0432\u044b, \u043e\u0442\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u0441\u0432\u043e\u044e \u0440\u0430\u0431\u043e\u0442\u0443 \u043d\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443, \u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0441\u043c\u043e\u0436\u0435\u0442 \u0435\u0435 \u043e\u0434\u043e\u0431\u0440\u0438\u0442\u044c."],"Are you ready to submit for review?":["\u0412\u044b \u0433\u043e\u0442\u043e\u0432\u044b \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435?"],"Replace image":["\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435"],"Remove image":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435"],"Error while uploading file %s to the media library.":["\u041e\u0448\u0438\u0431\u043a\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0444\u0430\u0439\u043b\u0430 %s \u0432 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443."],"This file exceeds the maximum upload size for this site.":["\u0420\u0430\u0437\u043c\u0435\u0440 \u0444\u0430\u0439\u043b\u0430 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u044b\u0439 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u0441\u0430\u0439\u0442\u0430."],"View the autosave":["\u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0430\u0432\u0442\u043e\u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435"],"There is an autosave of this post that is more recent than the version below.":["\u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0431\u043e\u043b\u0435\u0435 \u043f\u043e\u0437\u0434\u043d\u044f\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u044d\u0442\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438, \u0447\u0435\u043c \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0438\u0436\u0435."],Autosaving:["\u0410\u0432\u0442\u043e\u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435"],"Enter URL here\u2026":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 URL \u0437\u0434\u0435\u0441\u044c..."],"Pin to toolbar":["\u041f\u0440\u0438\u043a\u0440\u0435\u043f\u0438\u0442\u044c \u043a \u043f\u0430\u043d\u0435\u043b\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432"],"Unpin from toolbar":["\u041e\u0442\u043a\u0440\u0435\u043f\u0438\u0442\u044c \u043e\u0442 \u043f\u0430\u043d\u0435\u043b\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432"],"Insert a table \u2014 perfect for sharing charts and data.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443 \u2014 \u043e\u0442\u043b\u0438\u0447\u043d\u044b\u0439 \u0432\u044b\u0431\u043e\u0440 \u0434\u043b\u044f \u0433\u0440\u0430\u0444\u0438\u043a\u043e\u0432 \u0438 \u0434\u0430\u043d\u043d\u044b\u0445."],"Fixed width table cells":["\u042f\u0447\u0435\u0439\u043a\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0441 \u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0448\u0438\u0440\u0438\u043d\u043e\u0439"],"Table Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044b"],"Add text that respects your spacing and tabs, and also allows styling.":["\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0442\u0435\u043a\u0441\u0442, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0432\u0430\u0448\u0438\u043c \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430\u043c \u0438 \u0432\u043a\u043b\u0430\u0434\u043a\u0430\u043c, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u0441\u0442\u0438\u043b\u0438\u0437\u043e\u0432\u0430\u0442\u044c."],"Display a list of your most recent posts.":["\u0412\u044b\u0432\u043e\u0434\u0438\u0442 \u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0430\u0448\u0438\u0445 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0435\u0442 \u0431\u043b\u043e\u043a, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u044b\u0432\u043e\u0434\u0438\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0441 \u0434\u0440\u0443\u0433\u0438\u0445 \u0441\u0430\u0439\u0442\u043e\u0432, \u0442\u0430\u043a\u0438\u0445 \u043a\u0430\u043a Twitter, Instagram \u0438\u043b\u0438 YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0431\u043b\u043e\u043a, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043a\u043e\u043b\u043e\u043d\u043a\u0430\u0445, \u0430 \u0437\u0430\u0442\u0435\u043c \u0432 \u044d\u0442\u043e\u0442 \u0431\u043b\u043e\u043a \u0434\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u043b\u044e\u0431\u044b\u0435 \u0434\u0440\u0443\u0433\u0438\u0435 \u0431\u043b\u043e\u043a\u0438 \u0441 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435."],"Error loading block: %s":["\u041e\u0448\u0438\u0431\u043a\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0431\u043b\u043e\u043a\u0430: %s"],"Unknown error":["\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430"],"Embed Handler":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a"],"term\x04Remove %s":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c %s"],"Copy the permalink":["\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443"],"Permalink copied":["\u0421\u0441\u044b\u043b\u043a\u0430 \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0430"],"Height in pixels":["\u0412\u044b\u0441\u043e\u0442\u0430 \u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u044f\u0445"],"Spacer Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430"],Spacer:["\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b"],"Toggle to show a large initial letter.":["\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u0443\u044e \u0431\u0443\u043a\u0432\u0443 \u0431\u043e\u043b\u044c\u0448\u043e\u0439."],"Showing large initial letter.":["\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0439 \u0431\u0443\u043a\u0432\u044b."],"Name:":["\u0418\u043c\u044f:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s \u0438\u0437 %3$s)"],"Remove item":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u0443\u043d\u043a\u0442"],"Color code: %s":["\u0426\u0432\u0435\u0442: %s"],"Skip to the selected block":["\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u043c\u0443 \u0431\u043b\u043e\u043a\u0443"],"Publish\u2026":["\u041e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u0442\u044c..."],"Schedule\u2026":["\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c..."],"Edit post permalink":["\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u0443\u044e \u0441\u0441\u044b\u043b\u043a\u0443"],"Show Block Settings":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0431\u043b\u043e\u043a\u0430"],"Hide Block Settings":["\u0421\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0431\u043b\u043e\u043a\u0430"],"Block settings closed":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0431\u043b\u043e\u043a\u0430 \u0437\u0430\u043a\u0440\u044b\u0442\u044b"],"Close plugin":["\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043f\u043b\u0430\u0433\u0438\u043d"],"Link settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0441\u0441\u044b\u043b\u043e\u043a"],Unlink:["\u0423\u0431\u0440\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443"],"Page break":["\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b"],pagination:["\u043f\u0430\u0433\u0438\u043d\u0430\u0446\u0438\u044f"],"next page":["\u0441\u043b\u0435\u0434\u0443\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"],"Image Size":["\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f"],Height:["\u0412\u044b\u0441\u043e\u0442\u0430"],Width:["\u0428\u0438\u0440\u0438\u043d\u0430"],"Image Dimensions":["\u0420\u0430\u0437\u043c\u0435\u0440\u044b \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f"],"Thumbnails are not cropped.":["\u041c\u0438\u043d\u0438\u0430\u0442\u044e\u0440\u044b \u043d\u0435 \u043e\u0431\u0440\u0435\u0437\u0430\u043d\u044b."],"Thumbnails are cropped to align.":["\u041c\u0438\u043d\u0438\u0430\u0442\u044e\u0440\u044b \u043e\u0431\u0440\u0435\u0437\u0430\u044e\u0442\u0441\u044f \u0434\u043b\u044f \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u044f."],"Media Library":["\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0444\u0430\u0439\u043b\u043e\u0432"],Advanced:["\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e"],"Add item":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442"],"Reset the template":["\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d"],"Keep it as is":["\u041e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0431\u0435\u0437 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439"],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u043d\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0448\u0430\u0431\u043b\u043e\u043d\u0443, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u043c\u0443 \u044d\u0442\u043e\u043c\u0443 \u0442\u0438\u043f\u0443 \u0437\u0430\u043f\u0438\u0441\u0438."],"Resetting the template may result in loss of content, do you want to continue?":["\u0421\u0431\u0440\u043e\u0441 \u0448\u0430\u0431\u043b\u043e\u043d\u0430 \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u043f\u043e\u0442\u0435\u0440\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e, \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?"],"Document Statistics":["\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430"],"is now scheduled. It will go live on":["\u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u0438 \u0431\u0443\u0434\u0435\u0442 \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u0430"],Scheduled:["\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d"],"Scheduling\u2026":["\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435..."],"Code editor selected":["\u0412\u044b\u0431\u0440\u0430\u043d \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u043a\u043e\u0434\u0430"],"Visual editor selected":["\u0412\u044b\u0431\u0440\u0430\u043d \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440"],Plugins:["\u041f\u043b\u0430\u0433\u0438\u043d\u044b"],"Custom Size":["\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439"],"Layout Elements":["\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0440\u0430\u0437\u043c\u0435\u0442\u043a\u0438"],"term\x04%s removed":["%s \u0443\u0434\u0430\u043b\u0435\u043d"],"term\x04%s added":["%s \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d"],"imperative verb\x04Preview":["\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440"],"Block deleted.":["\u0411\u043b\u043e\u043a \u0443\u0434\u0430\u043b\u0435\u043d."],"Block updated.":["\u0411\u043b\u043e\u043a \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d."],"Block created.":["\u0411\u043b\u043e\u043a \u0441\u043e\u0437\u0434\u0430\u043d."],"Trashing failed":["\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0432 \u043a\u043e\u0440\u0437\u0438\u043d\u0443 \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c"],"Updating failed.":["\u041e\u0448\u0438\u0431\u043a\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f."],"Scheduling failed.":["\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c."],"Publishing failed.":["\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438."],"View Post":["\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c"],"You have unsaved changes. If you proceed, they will be lost.":["\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. \u0415\u0441\u043b\u0438 \u0432\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u0442\u0435\u0440\u044f\u043d\u044b."],"Document Outline":["\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430"],Paragraphs:["\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444\u044b"],Headings:["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438"],Words:["\u0421\u043b\u043e\u0432\u0430"],"Content structure":["\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0441\u0442\u0430\u0442\u044c\u0438"],Public:["\u041e\u0442\u043a\u0440\u044b\u0442\u043e"],"Protected with a password you choose. Only those with the password can view this post.":["\u0417\u0430\u0449\u0438\u0449\u0435\u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0435\u043c, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u044b \u0443\u043a\u0430\u0436\u0435\u0442\u0435. \u0417\u0430\u043f\u0438\u0441\u044c \u0441\u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0442\u0435, \u0443 \u043a\u043e\u0433\u043e \u0435\u0441\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c."],"Password Protected":["\u0417\u0430\u0449\u0438\u0449\u0435\u043d\u043e \u043f\u0430\u0440\u043e\u043b\u0435\u043c"],"Only visible to site admins and editors.":["\u0412\u0438\u0434\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0430\u043c \u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430\u043c."],Private:["\u041b\u0438\u0447\u043d\u043e\u0435"],"Visible to everyone.":["\u0412\u0438\u0434\u043d\u0430 \u0432\u0441\u0435\u043c."],"Post Visibility":["\u0412\u0438\u0434\u0438\u043c\u043e\u0441\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438"],"Would you like to privately publish this post now?":["\u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c \u043a\u0430\u043a \u043b\u0438\u0447\u043d\u0443\u044e?"],"Use a secure password":["\u0412\u043f\u0438\u0448\u0438\u0442\u0435 \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c"],"Create password":["\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c"],"Move to Trash":["\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432 \u043a\u043e\u0440\u0437\u0438\u043d\u0443"],"Parent Term":["\u0420\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0442\u0435\u0440\u043c\u0438\u043d"],"Parent Category":["\u0420\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u0440\u0443\u0431\u0440\u0438\u043a\u0430"],"Add new term":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0442\u0435\u0440\u043c\u0438\u043d"],"Add new category":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u0440\u0443\u0431\u0440\u0438\u043a\u0443"],Term:["\u0422\u0435\u0440\u043c\u0438\u043d"],Tag:["\u041c\u0435\u0442\u043a\u0430"],"Add New Term":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0442\u0435\u0440\u043c\u0438\u043d"],"Add New Tag":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u043c\u0435\u0442\u043a\u0443"],"Switch to Draft":["\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f \u043d\u0430 \u0447\u0435\u0440\u043d\u043e\u0432\u0438\u043a"],"Are you sure you want to unpublish this post?":["\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u0438?"],Immediately:["\u041d\u0435\u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e"],"Save Draft":["\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c"],Saving:["\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435"],"Publish:":["\u041e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u0430:"],"Visibility:":["\u0412\u0438\u0434\u0438\u043c\u043e\u0441\u0442\u044c:"],"Are you ready to publish?":["\u0412\u044b \u0433\u043e\u0442\u043e\u0432\u044b \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u0442\u044c?"],"Copy Link":["\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443"],"What\u2019s next?":["\u0427\u0442\u043e \u0434\u0430\u043b\u044c\u0448\u0435?"],"is now live.":["\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u0430."],Published:["\u041e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043e"],Schedule:["\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c"],Update:["\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c"],"Submit for Review":["\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435"],"Updating\u2026":["\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435..."],"Publishing\u2026":["\u041f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u044f..."],"Allow Pingbacks & Trackbacks":["\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u0438 \u043e\u0431\u0440\u0430\u0442\u043d\u044b\u0435 \u0441\u0441\u044b\u043b\u043a\u0438"],"Permalink:":["\u041f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u0430\u044f \u0441\u0441\u044b\u043b\u043a\u0430:"],"Pending Review":["\u041d\u0430 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0438"],"%d Revision":["%d \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u044f","%d \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438","%d \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0439"],"Suggestion:":["\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435:"],"Post Format":["\u0424\u043e\u0440\u043c\u0430\u0442 \u0437\u0430\u043f\u0438\u0441\u0438"],Chat:["\u0427\u0430\u0442"],Status:["\u0421\u0442\u0430\u0442\u0443\u0441"],Standard:["\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439"],Aside:["\u0417\u0430\u043c\u0435\u0442\u043a\u0430"],"Set Featured Image":["\u0417\u0430\u0434\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435"],"Learn more about manual excerpts":["\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435 \u043e\u0431 \u043e\u0442\u0440\u044b\u0432\u043a\u0430\u0445"],"Write an excerpt (optional)":["\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u043e\u0442\u0440\u044b\u0432\u043e\u043a (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)"],"Allow Comments":["\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438"],"Template:":["\u0428\u0430\u0431\u043b\u043e\u043d:"],"no parent":["\u0431\u0435\u0437 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044f"],"no title":["\u0431\u0435\u0437 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430"],Order:["\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438"],"No blocks found.":["\u0411\u043b\u043e\u043a\u043e\u0432 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e."],"%d result found.":["%d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043d\u0430\u0439\u0434\u0435\u043d.","%d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u043d\u0430\u0439\u0434\u0435\u043d\u043e.","%d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043d\u0430\u0439\u0434\u0435\u043d\u043e."],Saved:["\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043e"],Embeds:["\u0412\u0441\u0442\u0430\u0432\u043a\u0438"],Blocks:["\u0411\u043b\u043e\u043a\u0438"],"Search for a block":["\u041f\u043e\u0438\u0441\u043a \u0431\u043b\u043e\u043a\u043e\u0432"],"Add block":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0431\u043b\u043e\u043a"],"Add %s":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c %s"],"Copy Error":["\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u043a\u0441\u0442 \u043e\u0448\u0438\u0431\u043a\u0438"],"Copy Post Text":["\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u043a\u0441\u0442 \u0437\u0430\u043f\u0438\u0441\u0438"],"Attempt Recovery":["\u041f\u043e\u043f\u044b\u0442\u0430\u0442\u044c\u0441\u044f \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c"],"The editor has encountered an unexpected error.":["\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043d\u0435\u043f\u0440\u0435\u0434\u0432\u0438\u0434\u0435\u043d\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430."],Undo:["\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c"],Redo:["\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c"],"(Multiple H1 headings are not recommended)":["(\u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0442\u0435\u0433\u0430 H1)"],"(Your theme may already use a H1 for the post title)":["(\u0412\u0430\u0448\u0430 \u0442\u0435\u043c\u0430 \u0443\u0436\u0435 \u043c\u043e\u0436\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u0433 H1 \u0434\u043b\u044f \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0438)"],"(Incorrect heading level)":["(\u041d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430)"],"(Empty heading)":["(\u0411\u0435\u0437 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430)"],"Block Styles":["\u0421\u0442\u0438\u043b\u0438 \u0431\u043b\u043e\u043a\u043e\u0432"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u043e\u0431\u0449\u0438\u0439 \u0431\u043b\u043e\u043a?\n\u0412\u0430\u0448\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u0440\u0438\u0432\u0435\u0434\u0443\u0442 \u043a \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044e \u0435\u0433\u043e \u0438\u0437 \u0432\u0441\u0435\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446."],"Convert to Regular Block":["\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u043e\u0431\u044b\u0447\u043d\u044b\u0439 \u0431\u043b\u043e\u043a"],"More options":["\u0415\u0449\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438"],"Edit visually":["\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e"],Duplicate:["\u0414\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c"],"Blocks cannot be moved down as they are already at the bottom":["\u0411\u043b\u043e\u043a\u0438 \u043d\u0435 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u044b \u0432\u043d\u0438\u0437, \u0442\u0430\u043a \u043a\u0430\u043a \u043e\u043d\u0438 \u0443\u0436\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u0441\u0430\u043c\u043e\u043c \u043d\u0438\u0437\u0443"],"Blocks cannot be moved up as they are already at the top":["\u0411\u043b\u043e\u043a\u0438 \u043d\u0435 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u044b \u0432\u0432\u0435\u0440\u0445, \u0442\u0430\u043a \u043a\u0430\u043a \u043e\u043d\u0438 \u0443\u0436\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0441\u0432\u0435\u0440\u0445\u0443"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["\u0411\u043b\u043e\u043a %1$s \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u0432 \u0441\u0430\u043c\u043e\u043c \u0432\u0435\u0440\u0445\u0443 \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0451\u043d %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["\u0411\u043b\u043e\u043a %1$s \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u0432 \u0441\u0430\u043c\u043e\u043c \u043d\u0438\u0437\u0443 \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0451\u043d %2$s"],"Block %s is the only block, and cannot be moved":["\u0411\u043b\u043e\u043a %s \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c \u0431\u043b\u043e\u043a\u043e\u043c \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d"],"Edit as HTML":["\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u043a HTML"],"Convert to Blocks":["\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u0431\u043b\u043e\u043a\u0438"],"Block: %s":["\u0411\u043b\u043e\u043a: %s"],"This block has encountered an error and cannot be previewed.":["\u042d\u0442\u043e\u0442 \u0431\u043b\u043e\u043a \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043e\u0448\u0438\u0431\u043a\u0443 \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d."],"No block selected.":["\u0411\u043b\u043e\u043a \u043d\u0435 \u0432\u044b\u0431\u0440\u0430\u043d."],"Transform into:":["\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432:"],Remove:["\u0423\u0434\u0430\u043b\u0438\u0442\u044c"],"Find original":["\u041d\u0430\u0439\u0442\u0438 \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b"],"Copy All Content":["\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435"],"Copied!":["\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u043e!"],"Additional settings are now available in the Editor block settings sidebar":["\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0442\u0435\u043f\u0435\u0440\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u043d\u0430 \u0431\u043e\u043a\u043e\u0432\u043e\u0439 \u043f\u0430\u043d\u0435\u043b\u0438 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0445 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a"],Visibility:["\u0412\u0438\u0434\u0438\u043c\u043e\u0441\u0442\u044c"],"Status & Visibility":["\u0421\u0442\u0430\u0442\u0443\u0441 \u0438 \u0432\u0438\u0434\u0438\u043c\u043e\u0441\u0442\u044c"],"Page Attributes":["\u0410\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b"],Block:["\u0411\u043b\u043e\u043a"],Document:["\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442"],"Featured Image":["\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438"],"Close settings":["\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438"],"Editor content":["\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e"],Tools:["\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b"],Editor:["\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440"],"Code Editor":["\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u043a\u043e\u0434\u0430"],"Visual Editor":["\u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440"],"Editor top bar":["\u041f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432"],Settings:["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438"],Reset:["\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c"],"Dismiss this notice":["\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u044d\u0442\u043e \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435"],"Item removed.":["\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0443\u0434\u0430\u043b\u0435\u043d."],"Item added.":["\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d."],"Drop files to upload":["\u041f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0444\u0430\u0439\u043b\u044b \u0441\u044e\u0434\u0430"],PM:["\u041f\u041f"],AM:["\u0414\u041f"],"An unknown error occurred.":["\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430."],"No results.":["\u041d\u0435\u0442 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432."],"%d result found, use up and down arrow keys to navigate.":["\u041d\u0430\u0439\u0434\u0435\u043d %d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0435\u043b\u043a\u0438 \u043d\u0430 \u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u0435 \u0434\u043b\u044f \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438.","\u041d\u0430\u0439\u0434\u0435\u043d\u043e %d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0435\u043b\u043a\u0438 \u043d\u0430 \u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u0435 \u0434\u043b\u044f \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438.","\u041d\u0430\u0439\u0434\u0435\u043d\u043e %d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0435\u043b\u043a\u0438 \u043d\u0430 \u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u0435 \u0434\u043b\u044f \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438."],"(no title)":["(\u0431\u0435\u0437 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f)"],URL:["URL"],Submit:["\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c"],Close:["\u0417\u0430\u043a\u0440\u044b\u0442\u044c"],"Insert link":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443"],"Edit link":["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443"],Link:["\u0421\u0441\u044b\u043b\u043a\u0430"],Strikethrough:["\u0417\u0430\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439"],Italic:["\u041a\u0443\u0440\u0441\u0438\u0432"],Bold:["\u0416\u0438\u0440\u043d\u044b\u0439"],"Remove link":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443"],"Number of items":["\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432"],All:["\u0412\u0441\u0435"],Category:["\u0420\u0443\u0431\u0440\u0438\u043a\u0430"],"Z \u2192 A":["\u042f → \u0410"],"A \u2192 Z":["\u0410 → \u042f"],"Oldest to Newest":["\u041e\u0442 \u0441\u0442\u0430\u0440\u044b\u0445 \u043a \u043d\u043e\u0432\u044b\u043c"],"Newest to Oldest":["\u041e\u0442 \u043d\u043e\u0432\u044b\u0445 \u043a \u0441\u0442\u0430\u0440\u044b\u043c"],"Order by":["\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e"],Select:["\u0412\u044b\u0431\u0440\u0430\u0442\u044c"],"Select or Upload Media":["\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0438\u043b\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c"],Video:["\u0412\u0438\u0434\u0435\u043e"],"Edit video":["\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e"],"Write\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435..."],poetry:["\u043f\u043e\u044d\u0437\u0438\u044f"],Verse:["\u0421\u0442\u0438\u0445"],"New Column":["\u041d\u043e\u0432\u044b\u0439 \u0441\u0442\u043e\u043b\u0431\u0435\u0446"],"Delete Column":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446"],"Add Column After":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u043f\u043e\u0441\u043b\u0435"],"Add Column Before":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0434\u043e"],"Delete Row":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443"],"Add Row After":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u043f\u043e\u0441\u043b\u0435"],"Add Row Before":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0434\u043e"],"Edit table":["\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443"],Table:["\u0422\u0430\u0431\u043b\u0438\u0446\u0430"],"Write subheading\u2026":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u043e\u0434\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a..."],"Write shortcode here\u2026":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0448\u043e\u0440\u0442\u043a\u043e\u0434 \u0437\u0434\u0435\u0441\u044c..."],Shortcode:["\u0428\u043e\u0440\u0442\u043a\u043e\u0434"],divider:["\u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u044c"],"horizontal-line":["\u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f-\u043b\u0438\u043d\u0438\u044f"],Separator:["\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u044c"],Quote:["\u0426\u0438\u0442\u0430\u0442\u0430"],"Write citation\u2026":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0446\u0438\u0442\u0430\u0442\u0443..."],"Write quote\u2026":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0446\u0438\u0442\u0430\u0442\u0443..."],Pullquote:["\u0412\u044b\u0434\u0435\u0440\u0436\u043a\u0430"],"Write preformatted text\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043e\u0442\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442..."],Preformatted:["\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439"],text:["\u0442\u0435\u043a\u0441\u0442"],Paragraph:["\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444"],"Font Size":["\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430"],"Drop Cap":["\u0411\u0443\u043a\u0432\u0438\u0446\u0430"],"Text Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u0430"],"Read more":["\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435"],"Write list\u2026":["\u0421\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a..."],"numbered list":["\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a"],"ordered list":["\u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0435\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a"],"bullet list":["\u043c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a"],"Indent list item":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f \u043a \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c \u0441\u043f\u0438\u0441\u043a\u0430"],"Outdent list item":["\u0423\u0431\u0440\u0430\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f \u0443 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0441\u043f\u0438\u0441\u043a\u0430"],"Convert to ordered list":["\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a"],"Convert to unordered list":["\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u043c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a"],List:["\u0421\u043f\u0438\u0441\u043e\u043a"],"recent posts":["\u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438"],"No posts found.":["\u0417\u0430\u043f\u0438\u0441\u0435\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e."],"Latest Posts":["\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438"],"Display post date":["\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u0434\u0430\u0442\u0443 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438"],"Grid view":["\u0412 \u0432\u0438\u0434\u0435 \u0441\u0435\u0442\u043a\u0438"],"List view":["\u0412 \u0432\u0438\u0434\u0435 \u0441\u043f\u0438\u0441\u043a\u0430"],photo:["\u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f"],"Image Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f"],Image:["\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435"],Preview:["\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c"],embed:["\u0432\u0441\u0442\u0430\u0432\u043a\u0430"],"Custom HTML":["HTML-\u043a\u043e\u0434"],subtitle:["\u043f\u043e\u0434\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"],title:["\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"],Heading:["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"],"Write heading\u2026":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a..."],"Heading %d":["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a %s"],Level:["\u0423\u0440\u043e\u0432\u0435\u043d\u044c"],"Heading Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430"],photos:["\u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438"],images:["\u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f"],"Remove Image":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435"],None:["\u041d\u0435\u0442"],"Media File":["\u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b"],"Attachment Page":["\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u0432\u043b\u043e\u0436\u0435\u043d\u0438\u044f"],"Crop Images":["\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f"],"Gallery Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0433\u0430\u043b\u0435\u0440\u0435\u0438"],Gallery:["\u0413\u0430\u043b\u0435\u0440\u0435\u044f"],Classic:["\u041a\u043b\u0430\u0441\u0441\u0438\u0447\u0435\u0441\u043a\u0438\u0439"],video:["\u0432\u0438\u0434\u0435\u043e"],audio:["\u0430\u0443\u0434\u0438\u043e"],music:["\u043c\u0443\u0437\u044b\u043a\u0430"],image:["\u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435"],blog:["\u0431\u043b\u043e\u0433"],post:["\u0437\u0430\u043f\u0438\u0441\u044c"],"Embedded content from %s":["\u0412\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0441 %s"],"Enter URL to embed here\u2026":["\u0423\u043a\u0430\u0436\u0438\u0442\u0435 URL \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438..."],"%s URL":["%s URL"],"Embedding\u2026":["\u0412\u0441\u0442\u0430\u0432\u043a\u0430..."],"Write title\u2026":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a..."],"Fixed Background":["\u0424\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0444\u043e\u043d"],"Edit image":["\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435"],Columns:["\u041a\u043e\u043b\u043e\u043d\u043a\u0438"],Experiments:["\u042d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f"],Code:["\u041a\u043e\u0434"],"Write code\u2026":["\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043e\u0434..."],Categories:["\u0420\u0443\u0431\u0440\u0438\u043a\u0438"],"Show Hierarchy":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u044e"],"Show post counts":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043a\u043e\u043b-\u0432\u043e \u0437\u0430\u043f\u0438\u0441\u0435\u0439"],"Categories Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0440\u0443\u0431\u0440\u0438\u043a"],"Add text\u2026":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0435\u043a\u0441\u0442\u2026"],Button:["\u041a\u043d\u043e\u043f\u043a\u0430"],Apply:["\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c"],"Text Color":["\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430"],"Background Color":["\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430"],"Block has been deleted or is unavailable.":["\u0411\u043b\u043e\u043a \u0443\u0434\u0430\u043b\u0435\u043d \u0438\u043b\u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d."],"Reusable Blocks":["\u041c\u043e\u0438 \u0431\u043b\u043e\u043a\u0438"],Cancel:["\u041e\u0442\u043c\u0435\u043d\u0430"],Edit:["\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c"],"Edit audio":["\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u0443\u0434\u0438\u043e"],"Write caption\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043f\u043e\u0434\u043f\u0438\u0441\u044c..."],"Use URL":["\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c URL"],Audio:["\u0410\u0443\u0434\u0438\u043e"],Upload:["\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c"],"Additional CSS Class(es)":["\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043a\u043b\u0430\u0441\u0441(\u044b) CSS"],"HTML Anchor":["HTML \u044f\u043a\u043e\u0440\u044c"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u042d\u0442\u043e \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0435 \u0446\u0432\u0435\u0442\u043e\u0432 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0442\u0440\u0443\u0434\u043d\u0438\u0442\u044c \u0447\u0442\u0435\u043d\u0438\u0435. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u044f\u0440\u043a\u0438\u0439 \u0446\u0432\u0435\u0442 \u0444\u043e\u043d\u0430 \u0438/\u0438\u043b\u0438 \u0431\u043e\u043b\u0435\u0435 \u0442\u0435\u043c\u043d\u044b\u0439 \u0446\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u042d\u0442\u043e \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0435 \u0446\u0432\u0435\u0442\u043e\u0432 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0442\u0440\u0443\u0434\u043d\u0438\u0442\u044c \u0447\u0442\u0435\u043d\u0438\u0435. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u0442\u0435\u043c\u043d\u044b\u0439 \u0446\u0432\u0435\u0442 \u0444\u043e\u043d\u0430 \u0438/\u0438\u043b\u0438 \u0431\u043e\u043b\u0435\u0435 \u044f\u0440\u043a\u0438\u0439 \u0446\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430."],Clear:["\u0421\u0431\u0440\u043e\u0441"],"Custom color picker":["\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u0431\u043e\u0440 \u0446\u0432\u0435\u0442\u0430"],"Color: %s":["\u0426\u0432\u0435\u0442: %s"],"Full Width":["\u0412\u043e \u0432\u0441\u044e \u0448\u0438\u0440\u0438\u043d\u0443"],"Wide Width":["\u041f\u043e \u0448\u0438\u0440\u0438\u043d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e"],Widgets:["\u0412\u0438\u0434\u0436\u0435\u0442\u044b"],Formatting:["\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435"],"Common Blocks":["\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0431\u043b\u043e\u043a\u0438"],"Align Right":["\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e"],"Align Center":["\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443"],"Align Left":["\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e"],"Printing since 1440. This is the development plugin for the new block editor in core.":["\u041f\u0435\u0447\u0430\u0442\u0430\u0435\u043c \u0441 1440 \u0433\u043e\u0434\u0430. \u042d\u0442\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u0434\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 \u0431\u043b\u043e\u043a\u043e\u0432 \u0432 \u044f\u0434\u0440\u0435."],"Add title":["\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["\u0420\u0435\u0436\u0438\u043c \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 Gutenberg \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438 \u0444\u0430\u0439\u043b\u043e\u0432. \u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 npm install \u0434\u043b\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0435\u0439, npm run build \u0434\u043b\u044f \u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438 \u0444\u0430\u0439\u043b\u043e\u0432 \u0438\u043b\u0438 npm run dev \u0434\u043b\u044f \u0438\u0445 \u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438 \u0438 \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439. \u0414\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u0434\u0435\u0442\u0430\u043b\u044c\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u0444\u0430\u0439\u043b\u043e\u043c \u043e\u0431 \u0443\u0447\u0430\u0441\u0442\u0438\u0438."],Author:["\u0410\u0432\u0442\u043e\u0440"],Slug:["\ufeff\u042f\u0440\u043b\u044b\u043a"],Discussion:["\u041e\u0431\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u0435"],"Custom Fields":["\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u043b\u044f"],Excerpt:["\u041e\u0442\u0440\u044b\u0432\u043e\u043a"],Publish:["\u041e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u0442\u044c"],Metadata:["\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435"],Save:["\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c"],Documentation:["\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f"],"Select Category":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0440\u0443\u0431\u0440\u0438\u043a\u0443"],"(Untitled)":["(\u0411\u0435\u0437 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f WordPress %s \u0438\u043b\u0438 \u0432\u044b\u0448\u0435, \u0434\u043b\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u0435 WordPress \u043f\u0435\u0440\u0435\u0434 \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u0435\u0439 Gutenberg."],"Gutenberg Team":["\u041a\u043e\u043c\u0430\u043d\u0434\u0430 Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["\u0414\u0435\u043c\u043e"],"%s ago":["%s \u043d\u0430\u0437\u0430\u0434"],"Block style name must be a string.":["\u0418\u043c\u0435\u043d\u0430 \u0442\u0438\u043f\u043e\u0432 \u0431\u043b\u043e\u043a\u043e\u0432 \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u043e\u0439."]}},861,[]); +__d(function(e,o,t,a,i,n,r){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":["Blok (zvolen\xfd)"],"Document (selected)":["Dokument (zvolen\xfd)"],"%d word":["%d slovo","%d slov\xe1","%d slov"],"Top Toolbar":["Horn\xfd panel n\xe1strojov"],"Link Rel":["Rel odkazu"],"Link CSS Class":["CSS trieda odkazu"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Pridajte obsah a ulo\u017ete ho pre v\xe1s a ostatn\xfdch prispievate\u013eov, aby ste ho mohli znovu vyu\u017e\xedva\u0165 na str\xe1nke. Aktualizujte blok a zmeny sa prejavia v\u0161ade, kde je pou\u017eit\xfd. "],"To edit the featured image, you need permission to upload media.":["Pre \xfapravu ilustra\u010dn\xe9ho obr\xe1zku mus\xedte ma\u0165 opravnenie na nahr\xe1vanie m\xe9di\xed."],"To edit this block, you need permission to upload media.":["Pre \xfapravu tohto bloku mus\xedte ma\u0165 opr\xe1vnenie nanahr\xe1vanie m\xe9di\xed."],"(selected block)":["(zvolen\xfd blok)"],"Block tools":["N\xe1stroje bloku"],Permalink:["Trval\xfd odkaz"],"This image has an empty alt attribute":["Obr\xe1zok m\xe1 pr\xe1zdny alt atrib\xfat"],"This image has an empty alt attribute; its file name is %s":["Obr\xe1zok m\xe1 pr\xe1zdny alt atrib\xfat; jeho n\xe1zov je %s"],"Block area reverted to draft.":["Oblas\u0165 bloku zmenen\xe1 na koncept. "],"Block area published privately.":["Oblas\u0165 bloku publikovan\xe1 ako s\xfakromn\xe1."],"No block areas found in Trash.":["V ko\u0161i sa nena\u0161li \u017eiadne bloky."],"Block\x04Add New":["Prida\u0165 nov\xfd "],"add new on admin bar\x04Block Area":["Oblas\u0165 bloku"],"Link inserted.":["Odkaz vlo\u017een\xfd."],"Warning: the link has been inserted but may have errors. Please test it.":["Upozornenie: odkaz bol vlo\u017een\xfd ale m\xf4\u017ee obsahova\u0165 chyby. Pros\xedm overte si to. "],"%s block selected.":["%s vybran\xfd blok.","%s vybran\xe9 bloky.","%s vybran\xfdch blokov."],Thumbnail:["N\xe1h\u013ead"],"Full Size":["Pln\xe1 ve\u013ekos\u0165"],"Link selected.":["Odkaz vybran\xfd."],"Start writing with text or HTML":["Za\u010dnite p\xedsa\u0165 pou\u017eit\xedm klasick\xe9ho textu alebo HTML"],"Type text or HTML":["Nap\xed\u0161te text alebo HTML"],"Block icon":["Ikona bloku"],"Align Text Right":["Zarovna\u0165 text vpravo"],"Align Text Center":["Zarovna\u0165 text na stred"],"Align Text Left":["Zarovna\u0165 text v\u013eavo"],"Start writing or type / to choose a block":["Za\u010dnite p\xedsa\u0165 alebo kliknite na / a vyberte si blok."],"Empty block; start writing or type forward slash to choose a block":["Pr\xe1zdny blok; za\u010dnite p\xedsa\u0165 alebo kliknite na / a zvo\u013ete si blok"],"Paragraph block":["Blok odseku"],"Page Break":["Zlom strany"],"Stack on mobile":["V mobile nasklada\u0165 na seba"],Annotation:["Vysvetlivka"],"Drag images, upload new ones or select files from your library.":["Presu\u0148te obr\xe1zky, nahrajte nov\xe9 alebo vyberte s\xfabory z va\u0161ej kni\u017enice."],"blocks\x04Most Used":["Najpou\u017e\xedvanej\u0161ie"],"imperative verb\x04Resolve":["Vyrie\u0161i\u0165"],"font size name\x04Huge":["Obrovsk\xe9"],"font size name\x04Large":["Ve\u013ek\xe9"],"font size name\x04Medium":["Stredn\xe9"],"font size name\x04Small":["Mal\xe9"],"font size name\x04Normal":["Norm\xe1lne"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Importova\u0165"],"button label\x04Download":["Stiahnu\u0165"],"button label\x04Embed":["Vlo\u017ei\u0165"],"block title\x04Embed":["Vlo\u017ei\u0165"],"block title\x04Classic":["Klasick\xfd"],"block style\x04Large":["Ve\u013ek\xfd"],"%s (opens in a new tab)":["%s (otvori\u0165 v novom okne)"],"Link edited.":["Odkaz upraven\xfd."],"Link removed.":["Odkaz odstr\xe1nen\xfd."],media:["m\xe9di\xe1"],"Double-check your settings before publishing.":["Pred publikovan\xedm si skontrolujte va\u0161e nastavenia. "],"Generating preview\u2026":["Vytv\xe1ra sa n\xe1h\u013ead..."],"Edit or update the image":["Upravte alebo aktualizujte obr\xe1zok"],Media:["M\xe9di\xe1"],"Navigate to the nearest toolbar.":["Navigova\u0165 k najbli\u017e\u0161iemu panelu n\xe1strojov."],"Document tools":["N\xe1stroje dokumentu"],"Document and block tools":["N\xe1stroje dokumentu a bloku"],"Embed a video from your media library or upload a new one.":["Vlo\u017ete video z va\u0161ej kni\u017enice m\xe9di\xed alebo nahrajte nov\xe9. "],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Vlo\u017ete po\xe9ziu. Pou\u017eite \u0161peci\xe1lne form\xe1ty rozmiestnenia alebo citujte text piesne. "],"Add white space between blocks and customize its height.":["Pridajte medzeru medzi bloky a upravte ich v\xfd\u0161ku."],"Insert additional custom elements with a WordPress shortcode.":["Vlo\u017ete dodato\u010dn\xe9 vlastn\xe9 elementy pomocou WordPress shortcode. "],"Create a break between ideas or sections with a horizontal separator.":["Vytvorte zlom medzi my\u0161lienkami alebo sekciami pomocou horizont\xe1lnej \u010diary. "],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Vizu\xe1lne odl\xed\u0161te cit\xe1cie. \"Pri citovan\xed druh\xfdch, citujeme sami seba.\" - Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Vizu\xe1lne odl\xed\u0161te cit\xe1ty vo va\u0161om texte. "],"Start with the building block of all narrative.":["Za\u010dnite s hlavn\xfdm stavebn\xfdm kame\u0148om v\u0161etk\xfdch pr\xedbehov."],"Separate your content into a multi-page experience.":["Rozde\u013ete v\xe1\u0161 obsah na viacero str\xe1nok."],"Set media and words side-by-side for a richer layout.":["Pre lep\u0161ie usporiadanie nastavte m\xe9di\xe1 a slov\xe1 bok po boku. "],"Media & Text Settings":["Textov\xe9 a medi\xe1lne nastavenia"],"Create a bulleted or numbered list.":["Vytvorte \u010d\xedseln\xfd alebo odr\xe1\u017ekov\xfd zoznam."],"Display a list of your most recent comments.":["Zobrazi\u0165 zoznam va\u0161ich ned\xe1vnych koment\xe1rov. "],"Insert an image to make a visual statement.":["Vyjadrite sa vizu\xe1lne a vlo\u017ete obr\xe1zok."],"Add custom HTML code and preview it as you edit.":["Pridajte vlastn\xfd HTML k\xf3d a nahliadajte do neho po\u010das \xfapravy. "],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Predstavte nov\xe9 sekcie a organizujte obsah, aby ste pomohli n\xe1v\u0161tevn\xedkom (a vyh\u013ead\xe1va\u010dom) pochopi\u0165 \u0161trukt\xfaru v\xe1\u0161ho obsahu. "],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":["Pridajte odkaz na stiahnute\u013en\xfd s\xfabor. "],"Embed videos, images, tweets, audio, and other content from external sources.":["Vlo\u017ete vide\xe1, obr\xe1zky, tweety, audio a in\xfd obsah z extern\xfdch zdrojov."],"Resize for smaller devices":["Zme\u0148te ve\u013ekos\u0165 pre men\u0161ie zariadenia"],"This embed may not preserve its aspect ratio when the browser is resized.":["Tento vlo\u017een\xfd s\xfabor si pri zmenen\xed ve\u013ekosti prehliada\u010da pravdepodobne nezachov\xe1 svoj pomer str\xe1n. "],"This embed will preserve its aspect ratio when the browser is resized.":["Tento vlo\u017een\xfd s\xfabor si pri zmene ve\u013ekosti prehliada\u010da zachov\xe1 svoj pomer str\xe1n."],"Embed an Animoto video.":["Vlo\u017ete video zo slu\u017eby Animoto."],"Embed a Vimeo video.":["Vlo\u017ete Vimeo video."],"Embed Flickr content.":["Vlo\u017ete obsah z Flickr."],"Embed Spotify content.":["Vlo\u017ete obsah zo Spotify."],"Embed SoundCloud content.":["Vlo\u017ete obsah zo SoundCloud."],"Embed a WordPress post.":["Vlo\u017ete WordPress \u010dl\xe1nok. "],"Embed an Instagram post.":["Vlo\u017ete pr\xedspevok z Instagramu."],"Embed a Facebook post.":["Vlo\u017ete pr\xedspevok z Facebooku."],"Embed a WordPress.tv video.":["Vlo\u017ete video z WordPress.tv."],"Embed a VideoPress video.":["Vlo\u017ete video z VideoPress."],"Embed a Tumblr post.":["Vlo\u017ete pr\xedspevok z Tumblr."],"Embed a TED video.":["Vlo\u017ete TED video."],"Embed Speaker Deck content.":["Vlo\u017ete obsah zo Speaker Deck. "],"Embed a YouTube video.":["Vlo\u017ete Youtube video."],"Embed SmugMug content.":["Vlo\u017ete obsah zo SmugMug."],"Embed Slideshare content.":["Vlo\u017ete obsah zo Slideshare."],"Embed Scribd content.":["Vlo\u017ete obsah zo Scribd."],"Embed Screencast content.":["Vlo\u017ete obsah zo Screencast."],"Embed ReverbNation content.":["Vlo\u017ete obsah z ReverbNation."],"Embed a Reddit thread.":["Vlo\u017ete vl\xe1kno z Redditu. "],"Embed Polldaddy content.":["Vlo\u017ete obsah z Polldaddy."],"Embed Mixcloud content.":["Vlo\u017ete obsah z Mixcloud."],"Embed a tweet.":["Vlo\u017ete tweet. "],"Embed Meetup.com content.":["Vlo\u017ete obsah z Meetup.com."],"Embed Kickstarter content.":["Vlo\u017ete obsah z Kickstarter."],"Embed Issuu content.":["Vlo\u017ete obsah z Issuu."],"Embed Imgur content.":["Vlo\u017ete obsah z Imgur."],"Embed Hulu content.":["Vlo\u017ete obsah z Hulu."],"Embed a Dailymotion video.":["Vlo\u017ete Dailymotion video. "],"Embed CollegeHumor content.":["Vlo\u017ete obsah z CollegeHumor."],"Embed Cloudup content.":["Vlo\u017ete obsah z Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Pridajte obr\xe1zok alebo video s textov\xfdm prekryt\xedm - vhodn\xe9 v hlavi\u010dke str\xe1nky."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Pou\u017ei\u0165 klasick\xfd WordPress editor. "],"Display a list of all categories.":["Zobrazi\u0165 zoznam v\u0161etk\xfdch kateg\xf3ri\xed."],"Embed a simple audio player.":["Vlo\u017ete jednoduch\xfd audio prehr\xe1va\u010d. "],"noun\x04View":["Zobrazi\u0165"],"editor button\x04Left to right":["Z\u013eava do prava"],"Save as Pending":["Ulo\u017ei\u0165 ako \u010dak\xe1 na schv\xe1lenie"],"%s address":["%s adresa"],"Paste or type URL":["Vlo\u017ete alebo nap\xed\u0161te URL adresu"],"Insert from URL":["Vlo\u017ei\u0165 z URL adresy"],"Block Navigator":["Navig\xe1cia bloku"],Styles:["\u0160t\xfdly"],"Advanced Panels":["Pokro\u010dil\xe9 panely"],"Document Panels":["Panely dokumentu"],General:["V\u0161eobecn\xe9"],"Open the block navigation menu.":["Otvorte naviga\u010dn\xe9 menu bloku."],"Work without distraction":["Pracujte bez rozpt\xfdlen\xed. "],"Focus on one block at a time":["S\xfastre\u010fte sa naraz iba na jeden blok"],"Access all block and document tools in a single place":["Pristupujte ku v\u0161etk\xfdm blokom a n\xe1strojom dokumentu na jednom mieste"],Options:["Mo\u017enosti"],"(opens in a new tab)":["(otvori\u0165 v novej karte)"],Minutes:["Min\xfaty"],Hours:["Hodiny"],Time:["\u010cas"],Year:["Rok"],Day:["De\u0148"],December:["December"],November:["November"],October:["Okt\xf3ber"],September:["September"],August:["August"],July:["J\xfal"],June:["J\xfan"],May:["M\xe1j"],April:["Apr\xedl"],March:["Marec"],February:["Febru\xe1r"],January:["Janu\xe1r"],Month:["Mesiac"],Date:["D\xe1tum"],"Go to the first (home) or last (end) day of a week.":["\xcds\u0165 na prv\xfd (home) alebo posledn\xfd (end) de\u0148 t\xfd\u017ed\u0148a."],"Home/End":["Home/End"],"Home and End":["Home a End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Posun\xfa\u0165 sa sp\xe4\u0165 (PgUp) alebo vpred (PgDn) o jeden mesiac."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up a Page Down"],"Move backward (up) or forward (down) by one week.":["Posun\xfa\u0165 sa sp\xe4\u0165 (up) alebo vpred (down) o jeden t\xfd\u017ede\u0148."],"Up and Down Arrows":["\u0160\xedpky Up a Down"],"Move backward (left) or forward (right) by one day.":["Posun\xfa\u0165 sa sp\xe4\u0165 (\u013eav\xe1) alebo vpred (prav\xe1) o jeden de\u0148."],"Left and Right Arrows":["\u013dav\xe1 a prav\xe1 \u0161\xedpka"],"Select the date in focus.":[],"Navigating with a keyboard":["Navigova\u0165 pomocou kl\xe1vesnice"],"Click the desired day to select it.":["Kliknut\xedm vyberiete po\u017eadovan\xfd de\u0148. "],"Click the right or left arrows to select other months in the past or the future.":["Kliknite na prav\xfa alebo \u013eav\xfa \u0161\xedpku pre v\xfdber minul\xfdch alebo bud\xfacich mesiacov. "],"Click to Select":["Kliknut\xedm vyberte"],"Calendar Help":["Pomocn\xedk kalend\xe1ra"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["Vybra\u0165 tie\u0148"],"Change color format":["Zmeni\u0165 form\xe1t farby"],"Color value in HSL":["Hodnota farby v HSL"],"Color value in RGB":["Hodnota farby v RGB"],"Color value in hexadecimal":["Hodnota farby v hexadecim\xe1lnom form\xe1te"],"RGB mode active":["RGB re\u017eim akt\xedvny"],"Hex color mode active":["Hexadecim\xe1lny re\u017eim akt\xedvny"],"Hue/saturation/lightness mode active":["Re\u017eim odtie\u0148/ s\xfdtos\u0165/ svetlos\u0165 akt\xedvny"],"Move the arrow left or right to change hue.":["Pre zmenu odtie\u0148a h\xfdbte \u0161\xedpkou doprava alebo do\u013eava."],"Hue value in degrees, from 0 to 359.":["Hodnota odtie\u0148a v stup\u0148och, od 0 do 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Aplha hodnota, od 0 (priehladn\xe9) po 1 (nepriehladn\xe9)."],Stripes:[],"Your site doesn\u2019t include support for this block.":["Va\u0161a str\xe1nka nezah\u0155\u0148a podporu pre tento blok."],"Unrecognized Block":["Nerozoznan\xfd blok"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Va\u0161a str\xe1nka nezah\u0155\u0148a podporu pre \"%s\" blok. M\xf4\u017eete tento blok necha\u0165 tak alebo ho \xfaplne vymaza\u0165. "],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Va\u0161a str\xe1nka nezah\u0155\u0148a podporu pre \"%s\" blok. M\xf4\u017eete tento blok necha\u0165 tak, konvertova\u0165 jeho obsah na vlastn\xfd HTML blok, alebo ho \xfaplne vymaza\u0165. "],"Media area":["Oblas\u0165 m\xe9di\xed"],"Media & Text":["M\xe9di\xe1 a text"],"Show media on right":["Zobrazi\u0165 m\xe9di\xe1 napravo"],"Show media on left":["Zobrazi\u0165 m\xe9di\xe1 na\u013eavo"],"Open in New Tab":["Otvori\u0165 v novom okne"],Cover:[],"Border Settings":[],"Edit media":["Upravi\u0165 m\xe9di\xe1"],Medium:["Stredn\xfd"],"Paste URL or type to search":["Pre vyh\u013ead\xe1vanie vlo\u017ete URL adresu alebo za\u010dnite p\xedsa\u0165"],Terms:["Podmienky"],"Your work will be published at the specified date and time.":["Va\u0161a pr\xe1ca bude publikovan\xe1 v konkr\xe9tnom d\xe1tume a \u010dase."],"Are you ready to schedule?":["Ste pripraven\xfd na napl\xe1novanie?"],"Always show pre-publish checks.":[],"Take Over":["Prevzia\u0165"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Na tomto \u010dl\xe1nku pr\xe1ve pracuje in\xfd u\u017e\xedvate\u013e. Aby ste mohli vykon\xe1va\u0165 zmeny, mus\xedte ho prevzia\u0165 pod svoju spr\xe1vu. "],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s pr\xe1ve pracuje na tomto \u010dl\xe1nku. Aby ste mohli vykon\xe1va\u0165 zmeny, mus\xedte ho prevzia\u0165 pod svoju spr\xe1vu. "],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Spr\xe1vu nad t\xfdmto \u010dl\xe1nkom prevzal in\xfd u\u017e\xedvate\u013e. Vami vykonan\xe9 zmeny do tohto momentu boli ulo\u017een\xe9. "],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s prevzal spr\xe1vu nad t\xfdmto \u010dl\xe1nkom. Vami vykonan\xe9 zmeny do tohto momentu boli ulo\u017een\xe9. "],Avatar:[],"This post is already being edited.":["Tento \u010dl\xe1nok je pr\xe1ve upravovan\xfd. "],"Someone else has taken over this post.":["Nad t\xfdmto \u010dl\xe1nkom prevzal spr\xe1vu niekto in\xfd. "],"This block contains unexpected or invalid content.":["Tento blok obsahuje neplatn\xfd alebo neo\u010dak\xe1van\xfd obsah. "],"Resolve Block":[],"Convert to HTML":["Konvertova\u0165 na HTML"],"This block can only be used once.":["Tento blok m\xf4\u017ee by\u0165 pou\u017eit\xfd iba raz. "],"Exit Code Editor":["Zatvori\u0165 editor k\xf3du"],"Editing Code":["Upravi\u0165 k\xf3d"],"Solid Color":["Pln\xe1 farba"],"Main Color":["Hlavn\xe1 farba"],HTML:["HTML"],"Write HTML\u2026":["P\xedsa\u0165 v HTML..."],"Media Settings":["Nastavenia m\xe9di\xed"],"Overlay Color":["Farba prekrytia"],Overlay:["Prekrytie"],"Insert Media":["Vlo\u017ei\u0165 m\xe9di\xe1"],"Reusable block imported successfully!":["Znovupou\u017eite\u013en\xfd blok \xfaspe\u0161ne importovan\xfd! "],"Invalid Reusable Block JSON file":["Neplatn\xfd JSON s\xfabor znovupou\u017eite\u013en\xe9ho bloku"],"Invalid JSON file":["Chybn\xfd JSON s\xfabor"],"Import from JSON":["Importova\u0165 z JSON"],Backtick:[],Period:["Bodka"],Comma:["\u010ciarka"],"Change type of %d block":["Zmeni\u0165 typ %d bloku","Zmeni\u0165 typ %d blokov","Zmeni\u0165 typ %d blokov"],Current:["S\xfa\u010dasn\xfd"],"After Conversion":["Po konverzii"],"Change alignment":["Zmeni\u0165 zarovnanie"],"Change text alignment":["Zmeni\u0165 zarovnanie textu"],"%d block":["%d blok","%d bloky","%d blokov"],Escape:[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":["Tento s\xfabor je pr\xe1zdny."],"Sorry, this file type is not supported here.":["Prep\xe1\u010dte, ale tento typ s\xfaboru nie je podporovan\xfd. "],"Manage All Reusable Blocks":["Spravova\u0165 v\u0161etky znovupou\u017eite\u013en\xe9 bloky"],Title:["Nadpis"],"Fullscreen Mode":["Na cel\xfa obrazovku"],"Beautiful landscape":[],"Close panel":["Zavrie\u0165 panel"],"Convert to Classic Block":["Konvertova\u0165 na klasick\xfd blok"],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":["Tento blok je zastaran\xfd. Pros\xedm namiesto toho pou\u017eite st\u013apcov\xfd blok. "],"Text Columns (deprecated)":["Textov\xe9 st\u013apce (zastaran\xe9)"],"Row Count":["Po\u010det riadkov"],"Column Count":["Po\u010det st\u013apcov"],"This block is deprecated. Please use the Paragraph block instead.":["Tento blok je zastaran\xfd. Pros\xedm, namiesto toho pou\u017eite odstavcov\xfd blok."],"Subheading (deprecated)":["Podnadpis (zastaran\xe9)"],blockquote:["cit\xe1cia"],"Change the block type after adding a new paragraph.":["Po pridan\xed nov\xe9ho odstavca zme\u0148te typ bloku. "],"Spotlight Mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Zna\u010dky pom\xe1haj\xfa pou\u017e\xedvate\u013eov a vyh\u013ead\xe1va\u010de navigova\u0165 na va\u0161u webov\xfa str\xe1nku a n\xe1js\u0165 v\xe1\u0161 obsah. Pridajte p\xe1r k\u013e\xfa\u010dov\xfdch slov pre popis v\xe1\u0161ho pr\xedspevku."],"Add tags":["Pridajte zna\u010dky"],"Apply the \"%1$s\" format.":["Pou\u017ei\u0165 form\xe1t \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Va\u0161a t\xe9ma pou\u017e\xedva form\xe1ty pr\xedspevkov na zv\xfdraznenie r\xf4znych druhov obsahu, ako napr\xedklad obr\xe1zkov alebo vide\xed. Pou\u017eite form\xe1t pr\xedspevku pre zobrazenie tohto \u0161peci\xe1lneho \u0161t\xfdlu."],"Use a post format":["Pou\u017ei\u0165 form\xe1t pr\xedspevku"],"Insert After":["Vlo\u017ei\u0165 po"],"Insert Before":["Vlo\u017ei\u0165 pred"],"Move %1$d block from position %2$d down by one place":["Presun\xfa\u0165 %1$d blok z poz\xedcie %2$d o jedno miesto nadol.","Presun\xfa\u0165 %1$d bloky z poz\xedcie %2$d o jedno miesto nadol.","Presun\xfa\u0165 %1$d blokov z poz\xedcie %2$d o jedno miesto nadol."],"Move %1$d block from position %2$d up by one place":["Presun\xfa\u0165 %1$d blok z poz\xedcie %2$d o jedno miesto nahor.","Presun\xfa\u0165 %1$d bloky z poz\xedcie %2$d o jedno miesto nahor.","Presun\xfa\u0165 %1$d blokov z poz\xedcie %2$d o jedno miesto nahor."],"Move %1$s block from position %2$d %3$s to position %4$d":["Presun\xfa\u0165 %1$s blok z poz\xedcie %2$d %3$s na poz\xedciu %4$d"],movie:["film"],"Insert a new block before the selected block(s).":["Vlo\u017ei\u0165 nov\xfd blok pred vybran\xfd blok(y)."],"Remove the selected block(s).":["Odstr\xe1ni\u0165 vybran\xfd blok(y)."],"Duplicate the selected block(s).":["Duplikova\u0165 vybran\xfd blok(y)."],"Block shortcuts":["Skratky bloku"],"Clear selection.":["Zru\u0161i\u0165 v\xfdber."],"Select all text when typing. Press again to select all blocks.":["Vyberte cel\xfd text pri p\xedsan\xed. Op\xe4tovn\xfdm stla\u010den\xedm tla\u010d\xedtka vyberte v\u0161etky bloky."],"Selection shortcuts":["Skratky v\xfdberu"],"Switch between Visual Editor and Code Editor.":["Prepn\xfa\u0165 medzi vizu\xe1lnym editorom a editorom k\xf3du."],"Navigate to the previous part of the editor (alternative).":["Prejs\u0165 na predch\xe1dzaj\xfacu \u010das\u0165 editora (alternat\xedva)."],"Navigate to the next part of the editor (alternative).":["Prejs\u0165 na nasleduj\xfacu \u010das\u0165 editora (alternat\xedva)."],"Navigate to the previous part of the editor.":["Prejs\u0165 na predch\xe1dzaj\xfacu \u010das\u0165 editora."],"Navigate to the next part of the editor.":["Prejs\u0165 na nasleduj\xfacu \u010das\u0165 editora."],"Show or hide the settings sidebar.":["Zobrazi\u0165 alebo skry\u0165 nastavenia bo\u010dn\xe9ho panelu."],"Redo your last undo.":["Znovu vykona\u0165 odvolen\xe9 zmeny."],"Undo your last changes.":["Odvola\u0165 va\u0161e posledn\xe9 zmeny."],"Save your changes.":["Ulo\u017ete va\u0161e zmeny."],"Global shortcuts":["Glob\xe1lne skratky"],"Remove a link.":["Odstr\xe1\u0148te odkaz."],"Convert the selected text into a link.":["Previes\u0165 vybran\xfd text na odkaz."],"Underline the selected text.":["Pod\u010diarkn\xfa\u0165 vybran\xfd text."],"Make the selected text italic.":["Nastavi\u0165 pre vybran\xfd text kurz\xedvu."],"Make the selected text bold.":["Nastavi\u0165 pre vybran\xfd text tu\u010dn\xe9 p\xedsmo."],"Text formatting":["Form\xe1tovanie textu"],"Insert a new block after the selected block(s).":["Vlo\u017ete nov\xfd blok po vybratom bloku(blokoch)."],"Keyboard Shortcuts":["Kl\xe1vesov\xe9 skratky"],"Thanks for testing Gutenberg!":["\u010eakujeme za testovanie Gutenbergu!"],"Help build Gutenberg":["Pom\xf4\u017ete budova\u0165 Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Ak sa chcete dozvedie\u0165 viac o tom, ako vytvori\u0165 \u010fal\u0161ie bloky, alebo ak m\xe1te z\xe1ujem pom\xf4c\u0165 s projektom, prejdite do GitHub repository."],"The WordPress community":["WordPress komunita"],"Code is Poetry":["K\xf3d je po\xe9zia"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["M\xf4\u017eete vytvori\u0165 ak\xfdko\u013evek blok chcete, statick\xfd alebo dynamick\xfd, dekorat\xedvny alebo jednoduch\xfd. Tu je blok cit\xe1cie:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Ka\u017ed\xfd blok sa m\xf4\u017ee zaradi\u0165 do t\xfdchto zarovnan\xed. Vlo\u017een\xfd blok ich m\xe1 tie\u017e a je ihne\u010f responz\xedvny:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Vy\u0161\u0161ie je gal\xe9ria s dvomi obr\xe1zkami. Je to jednoduch\u0161ia cesta pre vytv\xe1ranie vizu\xe1lne pr\xed\u0165a\u017eliv\xfdch rozlo\u017een\xed, bez toho, aby sme museli rie\u0161i\u0165 floaty. Tie\u017e m\xf4\u017eete gal\xe9riu jednoducho premeni\u0165 sp\xe4\u0165 na samostatn\xe9 obr\xe1zky, pomocou prep\xedna\u010da blokov."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Je jasn\xe9, \u017ee obr\xe1zok na cel\xfa \u0161\xedrku m\xf4\u017ee by\u0165 pekne ve\u013ek\xfd. Ale niekedy to stoj\xed za to."],"Accessibility is important — don’t forget image alt attribute":["Pr\xedstupnos\u0165 je d\xf4le\u017eit\xe1 — nezabudnite na alt atrib\xfat obr\xe1zku"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Ak kombinujete nov\xe9 \u0161irok\xe9 zarovnania a zarovnania na cel\xfa \u0161\xedrku s gal\xe9riami, m\xf4\u017eete ve\u013emi r\xfdchlo vytvori\u0165 rozlo\u017eenie ve\u013emi bohat\xe9 na m\xe9di\xe1:"],"Media Rich":["Bohat\xe9 na m\xe9di\xe1"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Mno\u017estvo st\u013apcov vo va\u0161ich gal\xe9ri\xe1ch m\xf4\u017eete zmeni\u0165 presunut\xedm slajdru v in\u0161pektore blokov na postrannom paneli."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Bloky m\xf4\u017eu by\u0165 \u010doko\u013evek, \u010do potrebujete. M\xf4\u017eete napr\xedklad prida\u0165 tlmen\xe9 cit\xe1cie ako \u010das\u0165 kompoz\xedcie va\u0161ich textov, alebo naopak ich m\xf4\u017eete zobrazi\u0165 ako ve\u013emi \u0161tylizovan\xe9. V\u0161etky tieto mo\u017enosti s\xfa dostupn\xe9 cez vklada\u010d."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Inform\xe1cie odpovedaj\xface zdroju cit\xe1cie s\xfa oddelen\xe9 textov\xe9 polia, podobne ako pri titulku obr\xe1zku. \u0160trukt\xfara cit\xe1cie je tak chr\xe1nen\xe1 aj v pr\xedpade, \u017ee vyberiete, zmen\xedte alebo zma\u017eete zdroj. Navy\u0161e, je v\u017edy \u013eahk\xe9 prida\u0165 ho sp\xe4\u0165."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["Editor sa bude usilova\u0165 o vytvorenie lep\u0161ieho z\xe1\u017eitku z vytv\xe1rania str\xe1nok a pr\xedspevkov prostredn\xedctvom mo\u017enosti jednoduch\u0161ieho p\xedsania bohat\u0161\xedch pr\xedspevkov. A m\xe1 tie\u017e bloky, ktor\xe9 u\u013eah\u010duj\xfa to, \u010do sa dnes mus\xed pracne robi\u0165 prostredn\xedctvom shortc\xf3dov, vlastn\xe9ho HTML a podobne."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Obrovsk\xe1 v\xfdhoda blokov spo\u010d\xedva v tom, \u017ee ich m\xf4\u017eete upravi\u0165 na mieste a manipulova\u0165 priamo s obsahom. Namiesto toho, aby ste mali polia na \xfapravu vec\xed, ako je zdroj cit\xe1cie alebo text tla\u010d\xedtka, m\xf4\u017eete priamo zmeni\u0165 obsah. Sk\xfaste upravi\u0165 nasleduj\xfacu cit\xe1ciu:"],"Visual Editing":["Vizu\xe1lna \xfaprava"],"And Lists like this one of course :)":["A zoznam ako tento, samozrejme :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloky rozlo\u017eenia, ako tla\u010d\xedtka, Hero obr\xe1zky, oddelova\u010de, a pod."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Vlo\u017een\xe9 prvky, ako Youtube, Tweety, alebo in\xe9 WordPress pr\xedspevky."],Galleries:["Gal\xe9rie"],"Images & Videos":["Obr\xe1zky & Vide\xe1"],"Text & Headings":["Text & Nadpisy"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Vysk\xfa\u0161ajte to, m\xf4\u017eete objavi\u0165 veci, ktor\xe9 WordPress u\u017e dok\xe1\u017ee prida\u0165 do va\u0161ich pr\xedspevkov, o ktor\xfdch ste ani netu\u0161ili. Tu je kr\xe1tky zoznam toho, \u010do tu v s\xfa\u010dasnosti n\xe1jdete:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Predstavte si, \u017ee v\u0161etko \u010do WordPress dok\xe1\u017ee bude r\xfdchlo dostupn\xe9 z jedn\xe9ho miesta v pou\u017e\xedvate\u013eskom rozhran\xed. U\u017e nemus\xedte zis\u0165ova\u0165 HTML tagy, triedy, pam\xe4ta\u0165 si komplikovan\xfd syntax shortc\xf3dov. To je my\u0161lienka za vklada\u010dom. Tla\u010d\xedtkom (+), ktor\xe9 uvid\xedte v editore, ktor\xe9 v\xe1m umo\u017e\u0148uje prech\xe1dza\u0165 v\u0161etk\xfdmi dostupn\xfd blokmi a prid\xe1va\u0165 ich do pr\xedspevkov. Pluginy a t\xe9my si m\xf4\u017eu prida\u0165 svoje vlastn\xe9 bloky, \u010do otv\xe1ra v\u0161etky mo\u017enosti pre e\u0161te bohat\u0161ie publikovanie a \xfapravy."],"The Inserter Tool":["N\xe1stroj Vklada\u010d"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Pok\xfaste sa vybra\u0165 a odstr\xe1ni\u0165 alebo upravi\u0165 titulok obr\xe1zku, u\u017e nemus\xedte by\u0165 opatrn\xed pri mylnom v\xfdbere obr\xe1zku alebo in\xe9ho textu a pokazen\xedm prezent\xe1cie."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Ak to va\u0161a t\xe9ma podporuje, uvid\xedte \"\u0161irok\xe9\" tla\u010d\xedtko na obr\xe1zku panela n\xe1strojov. Vysk\xfa\u0161ajte to."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Pou\u017e\xedvanie obr\xe1zkov a m\xe9di\xed s maxim\xe1lnou starostlivos\u0165ou je hlavn\xfdm cie\u013eom nov\xe9ho editora. D\xfafajme, \u017ee bude pre v\xe1s prid\xe1vania titulkov obr\xe1zkov alebo ich pou\u017e\xedvanie na cel\xfa \u0161\xedrku omnoho jednoduch\u0161ie a robustnej\u0161ie ako kedyko\u013evek predt\xfdm."],"A Picture is Worth a Thousand Words":["Obr\xe1zok hodn\xfd tis\xedcov slov"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Nadpisy s\xfa tie\u017e samostatn\xe9 bloky, ktor\xe9 pom\xe1haj\xfa s preh\u013eadom a organiz\xe1ciou v\xe1\u0161ho obsahu."],"... like this one, which is right aligned.":["... ako napr\xedklad tento, ktor\xfd je zarovnan\xfd napravo."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["To \u010do pr\xe1ve \u010d\xedtate je textov\xfd blok, najz\xe1kladnej\u0161\xed blok zo v\u0161etk\xfdch. Textov\xfd blok m\xe1 vlastn\xe9 ovl\xe1dacie prvky na vo\u013en\xe9 pres\xfavanie v pr\xedspevku..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Cie\u013eom tohto nov\xe9ho editora je jednoduch\xe9 a pr\xedjemn\xe9 prid\xe1vanie bohat\xe9ho obsahu do WordPressu. Cel\xfd tento pr\xedspevok sa sklad\xe1 z kusov obsahu - trochu podobn\xfdch LEGO tehli\u010dk\xe1m, s ktor\xfdmi sa m\xf4\u017eete vo\u013ene pohybova\u0165 a interagova\u0165. Presu\u0148te kurzor a v\u0161imnete si, \u017ee obrysy jednotliv\xfdch blokov sa rozsvietia a z\xedskaj\xfa \u0161\xedpky. Kliknite na \u0161\xedpky, aby ste r\xfdchlo premiestnili bloky bez toho, aby ste sa museli ob\xe1va\u0165, \u017ee strat\xedte obsah v procese jeho kop\xedrovania a vkladania."],"Of Mountains & Printing Presses":["Z h\xf4r a tla\u010diarensk\xfdch lisov"],"Welcome to the Gutenberg Editor":["Vitajte v Gutenberg editore"],"block name\x04More":["Viac"],"button to expand options\x04More":["Viac"],"Are you sure you want to unschedule this post?":["Ste si ist\xed, \u017ee chcete zru\u0161i\u0165 napl\xe1novanie tohto pr\xedspevku?"],"Alt Text (Alternative Text)":["Alt Text (N\xe1hradn\xfd Text)"],"Reusable Block":["Znovupou\u017eite\u013en\xfd Blok"],"Unique identifier for the object.":["Jedine\u010dn\xfd identifik\xe1tor objektu."],"Untitled Reusable Block":["Nepomenovan\xfd znovupou\u017eite\u013en\xfd blok"],Small:["Mal\xfd"],"(%s: %s)":["(%s: %s)"],Reusable:["Znovupou\u017eite\u013en\xfd"],"(current %s: %s)":["(aktu\xe1lny %s: %s)"],"Remove from Reusable Blocks":["Odstr\xe1ni\u0165 zo znovupou\u017eite\u013en\xfdch blokov"],"Add to Reusable Blocks":["Prida\u0165 k znovupou\u017eite\u013en\xfdm blokom"],"Keep as HTML":["Ponecha\u0165 ako HTML"],"Edit URL":["Upravi\u0165 URL adresy"],"Color Settings":["Nastavenia farby"],"The response is not a valid JSON response.":["T\xe1to odpove\u010f nie je platn\xe1 JSON odpove\u010f."],"Editor publish":["Publikovanie editora"],Muted:["Stlmen\xfd"],"Video Settings":["Nastavenia videa"],"recent comments":["najnov\u0161ie koment\xe1re"],"Latest Comments":["Posledn\xe9 Koment\xe1re"],"Display Excerpt":["Zobrazi\u0165 v\xfd\u0148atok"],"Display Date":["Zobrazi\u0165 d\xe1tum"],"Display Avatar":["Zobrazi\u0165 avatar"],"Latest Comments Settings":["Nastavenia najnov\u0161\xedch koment\xe1rov"],"Number of Comments":["Po\u010det koment\xe1rov"],"Background Opacity":["Prieh\u013eadnos\u0165 pozadia"],Auto:["Auto"],Preload:["Predna\u010d\xedta\u0165"],"Audio Settings":["Nastavenia zvuku"],"Display a monthly archive of your posts.":["Zobrazte mesa\u010dn\xfd arch\xedv pr\xedspevkov va\u0161ej str\xe1nky."],"Display as Dropdown":["Zobrazi\u0165 ako rozba\u013eovac\xed zoznam"],"Show Post Counts":["Zobrazi\u0165 po\u010det Pr\xedspevkov"],"Archives Settings":["Nastavenia Arch\xedvov"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Podpora"],"No comments to show.":["\u017diadne koment\xe1re na zobrazenie."],"%1$s on %2$s":["%1$s na %2$s"],"Select Post":["Vybra\u0165 pr\xedspevok"],"Select Week":["Vybra\u0165 t\xfd\u017ede\u0148"],"Select Day":["Vybra\u0165 de\u0148"],"Select Month":["Vybra\u0165 mesiac"],"Select Year":["Vybra\u0165 rok"],Archives:["Arch\xedvy"],"Very dark gray":["Ve\u013emi tmav\xe1 \u0161ed\xe1"],"Cyan bluish gray":["tyrkysovo \u0161ed\xe1"],"Very light gray":["Ve\u013emi svetl\xe1 \u0161ed\xe1"],"Vivid cyan blue":["S\xfdta az\xfarovo modr\xe1"],"Pale cyan blue":["Svetlo az\xfarovo modr\xe1"],"Vivid green cyan":["s\xfdta zeleno az\xfarov\xe1"],"Light green cyan":["svetlo zeleno az\xfarov\xe1"],"Luminous vivid amber":["\u017eiariv\xe1 jant\xe1rov\xe1"],"Luminous vivid orange":["\u017eiariv\xe1 oran\u017eov\xe1"],"Vivid red":["S\xfdta \u010derven\xe1"],"Pale pink":["Svetloru\u017eov\xe1"],"Inline image":["Vlo\u017een\xfd obr\xe1zok"],"Available block types":["Dostupn\xe9 typy blokov"],"Transform To:":["Zmeni\u0165 na:"],"Remove Block":["Odobra\u0165 blok"],"Open publish panel":["Otvori\u0165 Publika\u010dn\xfd Panel"],Dots:["Bodky"],"Wide Line":["\u0160irok\xe1 \u010diara"],Large:["Ve\u013ek\xe1"],"Show download button":["Zobrazi\u0165 tla\u010didlo Na stiahnutie"],"Download button settings":["Nastavenia tla\u010didla Na stiahnutie"],"Link To":["Odkaz na"],"Text link settings":["Nastavenia textov\xe9ho odkazu"],pdf:["pdf"],document:["dokument"],"Copy URL":["Kop\xedrova\u0165 URL adresu"],"Write file name\u2026":["Nap\xed\u0161te n\xe1zov s\xfaboru..."],"Edit file":["Upravi\u0165 s\xfabor"],File:["S\xfabor"],"A single column within a columns block.":["Jeden st\u013apec v st\u013apcovom bloku."],Column:["St\u013apec"],Outline:["Or\xe1movanie"],Loop:["Slu\u010dka"],Autoplay:["Automatick\xe9 prehr\xe1vanie"],"Playback Controls":["Ovl\xe1dacie prvky prehr\xe1vania"],"Close dialog":["Zatvori\u0165 okno"],"Sorry, this file type is not permitted for security reasons.":["Prep\xe1\u010dte, tak\xfdto typ s\xfaboru nie je povolen\xfd z bezpe\u010dnostn\xfdch d\xf4vodov."],"Disable tips":["Vypn\xfa\u0165 tipy"],"Got it":["Rozumiem"],"See next tip":["Zobrazi\u0165 \u010fa\u013e\u0161\xed tip"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Ak ste pripraven\xfd, odo\u0161lite svoju pr\xe1cu na kontrolu a Editor bude m\xf4c\u0165 tento \u010dl\xe1nok uverejni\u0165."],"Are you ready to submit for review?":["Ste pripraven\xfd odosla\u0165 \u010dl\xe1nok na kontrolu?"],"Replace image":["Nahradi\u0165 obr\xe1zok"],"Remove image":["Odobra\u0165 obr\xe1zok"],"Error while uploading file %s to the media library.":["Nastala chyba pri nahr\xe1van\xed s\xfaboru %s do kni\u017enice m\xe9di\xed."],"This file exceeds the maximum upload size for this site.":["Tento s\xfabor prekra\u010duje maxim\xe1lnu povolen\xfa ve\u013ekos\u0165 s\xfaboru pre nahratie."],"View the autosave":["Zobrazi\u0165 automatick\xe9 ulo\u017eenie"],"There is an autosave of this post that is more recent than the version below.":["Existuje automatick\xe9 ulo\u017eenie, ktor\xe9 je aktu\xe1lnej\u0161ie ako verzia ni\u017e\u0161ie."],Autosaving:["Automatick\xe9 ukladanie"],"Enter URL here\u2026":["Sem vlo\u017ete URL adresu..."],"Pin to toolbar":["Pripn\xfa\u0165 na panel n\xe1strojov"],"Unpin from toolbar":["Odopn\xfa\u0165 z panela n\xe1strojov"],"Insert a table \u2014 perfect for sharing charts and data.":["Vlo\u017ete tabu\u013eku - perfektn\xe9 pre zdie\u013eanie grafov a d\xe1t."],"Fixed width table cells":["Pevn\xe1 \u0161\xedrka buniek tabu\u013eky"],"Table Settings":["Nastavenia tabu\u013eky"],"Add text that respects your spacing and tabs, and also allows styling.":["Pridajte text, ktor\xfd zachov\xe1 va\u0161e medzery a odsadenia a bude povolen\xe9 jeho form\xe1tovanie."],"Display a list of your most recent posts.":["Zobrazi\u0165 zoznam va\u0161ich najnov\u0161\xedch \u010dl\xe1nkov."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Pridajte blok, ktor\xfd zobraz\xed obsah z in\xfdch webov\xfdch str\xe1nok, napr.: Twitter, Instagram alebo Youtube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Pridajte objekt, ktor\xfd zobraz\xed obsah vo viacer\xfdch st\u013apcoch a n\xe1sledne m\xf4\u017eete prida\u0165 obsah do ktor\xe9hoko\u013evek z nich."],"Error loading block: %s":["Chyba pri na\u010d\xedtan\xed bloku: %s"],"Unknown error":["Nezn\xe1ma chyba"],"Embed Handler":["Vlo\u017ei\u0165 Handler"],"term\x04Remove %s":["Odstr\xe1ni\u0165 %s"],"Copy the permalink":["Kop\xedrova\u0165 trval\xfd odkaz"],"Permalink copied":["Trval\xfd odkaz skop\xedrovan\xfd"],"Height in pixels":["V\xfd\u0161ka v pixeloch"],"Spacer Settings":["Nastavenia medzery"],Spacer:["Medzera"],"Toggle to show a large initial letter.":["Prepn\xfa\u0165 pre zobrazenie ve\u013ek\xe9ho po\u010diato\u010dn\xe9ho p\xedsmena."],"Showing large initial letter.":["Zobrazi\u0165 ve\u013ek\xe9 po\u010diato\u010dn\xe9 p\xedsmeno."],"Name:":["Meno:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s z %3$s)"],"Remove item":["Odobra\u0165 polo\u017eku"],"Color code: %s":["K\xf3d farby: %s"],"Skip to the selected block":["Presko\u010di\u0165 na zvolen\xfd blok"],"Publish\u2026":["Publikova\u0165..."],"Schedule\u2026":["Napl\xe1nova\u0165..."],"Edit post permalink":["Upravi\u0165 trval\xfd odkaz"],"Show Block Settings":["Zobrazi\u0165 nastavenia bloku"],"Hide Block Settings":["Skry\u0165 nastavenia bloku"],"Block settings closed":["Nastavenia bloku s\xfa uzavret\xe9"],"Close plugin":["Zatvori\u0165 plugin"],"Link settings":["Nastavenia odkazu"],Unlink:["Odobra\u0165 odkaz"],"Page break":["Zlom strany"],pagination:["str\xe1nkovanie"],"next page":["\u010fa\u013e\u0161ia strana"],"Image Size":["Ve\u013ekos\u0165 obr\xe1zku"],Height:["V\xfd\u0161ka"],Width:["\u0160\xedrka"],"Image Dimensions":["Rozmery obr\xe1zku"],"Thumbnails are not cropped.":["N\xe1h\u013eady nie s\xfa orezan\xe9."],"Thumbnails are cropped to align.":["N\xe1h\u013eady s\xfa orezan\xe9 aby boli zarovnan\xe9."],"Media Library":["Kni\u017enica m\xe9di\xed"],Advanced:["Pokro\u010dil\xe9"],"Add item":["Prida\u0165 polo\u017eku"],"Reset the template":["Resetova\u0165 \u0161abl\xf3nu"],"Keep it as is":["Ponecha\u0165 v stave akom je"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Obsah v\xe1\u0161ho pr\xedspevku neodpoved\xe1 \u0161abl\xf3ne priradenej k typu pr\xedspevku."],"Resetting the template may result in loss of content, do you want to continue?":["Resetovanie \u0161abl\xf3ny m\xf4\u017ee sp\xf4sobi\u0165 stratu obsahu, \u017eel\xe1te si pokra\u010dova\u0165?"],"Document Statistics":["\u0160tatistiky dokumentu"],"is now scheduled. It will go live on":["je teraz napl\xe1novan\xfd. Zverejn\xed sa"],Scheduled:["Napl\xe1novan\xe9"],"Scheduling\u2026":["Pl\xe1nuje sa..."],"Code editor selected":["Zvolen\xfd editor k\xf3du"],"Visual editor selected":["Zvolen\xfd vizu\xe1lny editor"],Plugins:["Pluginy"],"Custom Size":["Vlastn\xe1 ve\u013ekos\u0165"],"Layout Elements":["Prvky rozlo\u017eenia"],"term\x04%s removed":["%s odstr\xe1nen\xfd"],"term\x04%s added":["V\xfdraz %s pridan\xfd"],"imperative verb\x04Preview":["N\xe1h\u013ead"],"Block deleted.":["Blok zmazan\xfd."],"Block updated.":["Blok aktualizovan\xfd."],"Block created.":["Blok vytvoren\xfd."],"Trashing failed":["Odstr\xe1nenie zlyhalo"],"Updating failed.":["Aktualiz\xe1cia zlyhala."],"Scheduling failed.":["Pl\xe1novanie zlyhalo"],"Publishing failed.":["Publikovanie zlyhalo"],"View Post":["Zobrazi\u0165 \u010dl\xe1nok"],"You have unsaved changes. If you proceed, they will be lost.":["M\xe1te neulo\u017een\xe9 zmeny. Ak budete pokra\u010dova\u0165, strat\xedte ich."],"Document Outline":["Or\xe1movanie dokumentu"],Paragraphs:["Odseky"],Headings:["Nadpisy"],Words:["Slov\xe1"],"Content structure":["\u0160trukt\xfara obsahu"],Public:["Verejn\xe9"],"Protected with a password you choose. Only those with the password can view this post.":["Chr\xe1nen\xe9 heslom, ktor\xe9 si vyberiete. Iba t\xed s heslom si m\xf4\u017eu pozrie\u0165 tento pr\xedspevok."],"Password Protected":["Chr\xe1nen\xe9 heslom"],"Only visible to site admins and editors.":["Vidite\u013en\xe9 iba pre administr\xe1torov a editorov webovej str\xe1nky."],Private:["S\xfakromn\xe9"],"Visible to everyone.":["Vidite\u013en\xe9 pre v\u0161etk\xfdch."],"Post Visibility":["Vidite\u013enos\u0165 \u010dl\xe1nku"],"Would you like to privately publish this post now?":["Chcete tento \u010dl\xe1nok zverejni\u0165 s\xfakromne?"],"Use a secure password":["Pou\u017eite bezpe\u010dn\xe9 heslo"],"Create password":["Vytvori\u0165 bezpe\u010dn\xe9 heslo"],"Move to Trash":["Zahodi\u0165 do ko\u0161a"],"Parent Term":["Nadraden\xfd v\xfdraz"],"Parent Category":["Nadraden\xe1 kateg\xf3ria"],"Add new term":["Prida\u0165 nov\xfd v\xfdraz"],"Add new category":["Prida\u0165 nov\xfa kateg\xf3riu"],Term:["V\xfdraz"],Tag:["Zna\u010dka"],"Add New Term":["Prida\u0165 nov\xfd v\xfdraz"],"Add New Tag":["Prida\u0165 nov\xfa zna\u010dku"],"Switch to Draft":["Zmeni\u0165 na koncept"],"Are you sure you want to unpublish this post?":["Naozaj chcete zru\u0161i\u0165 uverejnenie tohto \u010dl\xe1nku?"],Immediately:["Ihne\u010f"],"Save Draft":["Ulo\u017ei\u0165 koncept"],Saving:["Uklad\xe1 sa"],"Publish:":["Publikova\u0165:"],"Visibility:":["Vidite\u013enos\u0165:"],"Are you ready to publish?":["Pripraven\xfd na publikovanie?"],"Copy Link":["Kop\xedrova\u0165 odkaz"],"What\u2019s next?":["\u010co \u010falej?"],"is now live.":["je teraz zverejnen\xfd."],Published:["Zverejnen\xe9"],Schedule:["Napl\xe1nova\u0165"],Update:["Aktualizova\u0165"],"Submit for Review":["Odosla\u0165 na kontrolu"],"Updating\u2026":["Prebieha aktualiz\xe1cia..."],"Publishing\u2026":["Prebieha publikovanie..."],"Allow Pingbacks & Trackbacks":["Povoli\u0165 sp\xe4tn\xe9 odkazy a sp\xe4tn\xe9 upozornenia"],"Permalink:":["Trval\xfd odkaz:"],"Pending Review":["\u010cak\xe1 na schv\xe1lenie"],"%d Revision":["%d rev\xedzia","%d rev\xedzie","%d rev\xedzi\xed"],"Suggestion:":["N\xe1vrh:"],"Post Format":["Form\xe1t \u010dl\xe1nku"],Chat:["Chat"],Status:["Status"],Standard:["\u0160tandardn\xfd"],Aside:["Pozn\xe1mka"],"Set Featured Image":["Nastavi\u0165 ilustra\u010dn\xfd obr\xe1zok"],"Learn more about manual excerpts":["Z\xedskajte viac inform\xe1ci\xed o manu\xe1lnych \xfaryvkoch"],"Write an excerpt (optional)":["Nap\xed\u0161te zhrnutie (volite\u013en\xe9)"],"Allow Comments":["Povoli\u0165 koment\xe1re"],"Template:":["\u0160abl\xf3na:"],"no parent":["\u017eiadny rodi\u010d"],"no title":["\u017eiadny nadpis"],Order:["Poradie"],"No blocks found.":["\u017diadny blok sa nena\u0161iel."],"%d result found.":["%d n\xe1jden\xfd v\xfdsledok.","%d n\xe1jden\xe9 v\xfdsledky.","%d n\xe1jden\xfdch v\xfdsledkov."],Saved:["Ulo\u017een\xe9"],Embeds:["Vlo\u017een\xe9 prvky"],Blocks:["Bloky"],"Search for a block":["Vyh\u013eada\u0165 blok"],"Add block":["Prida\u0165 blok"],"Add %s":["Prida\u0165 %s"],"Copy Error":["Kop\xedrova\u0165 chybu"],"Copy Post Text":["Kop\xedrova\u0165 text \u010dl\xe1nku"],"Attempt Recovery":["Pokus o obnovu"],"The editor has encountered an unexpected error.":["Editor zaznamenal neo\u010dak\xe1van\xfa chybu."],Undo:["Sp\xe4\u0165"],Redo:["Dopredu"],"(Multiple H1 headings are not recommended)":["(Viacero H1 nadpisov sa neodpor\xfa\u010da)"],"(Your theme may already use a H1 for the post title)":["(Va\u0161a t\xe9ma m\xf4\u017ee u\u017e pou\u017e\xedva\u0165 H1 pre n\xe1zov \u010dl\xe1nku)"],"(Incorrect heading level)":["(Nespr\xe1vny level nadpisu)"],"(Empty heading)":["(Pr\xe1zdny nadpis)"],"Block Styles":["\u0160t\xfdly bloku"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Ste si ist\xed, \u017ee chcete vymaza\u0165 tento Znovupou\u017eite\u013en\xfd blok?\n\nBude trvale zmazan\xfd zo v\u0161etk\xfdch pr\xedspevkov a str\xe1nok, ktor\xe9 ho pou\u017e\xedvaj\xfa."],"Convert to Regular Block":["Konvertova\u0165 na norm\xe1lny blok"],"More options":["Viac mo\u017enost\xed"],"Edit visually":["Upravi\u0165 vizu\xe1lne"],Duplicate:["Duplikova\u0165"],"Blocks cannot be moved down as they are already at the bottom":["Bloky nem\xf4\u017eu by\u0165 posunut\xe9 nadol, preto\u017ee s\xfa u\u017e na spodku"],"Blocks cannot be moved up as they are already at the top":["Bloky nem\xf4\u017eu by\u0165 posunut\xe9 nahor, preto\u017ee s\xfa u\u017e na vrchu"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Blok %1$s je na za\u010diatku obsahu a nem\xf4\u017ee by\u0165 posunut\xfd %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Blok %1$s je na konci obsahu a nem\xf4\u017ee by\u0165 posunut\xfd %2$s"],"Block %s is the only block, and cannot be moved":["Blok %s je jedin\xfd blok a nem\xf4\u017ee by\u0165 posunut\xfd"],"Edit as HTML":["Upravi\u0165 ako HTML"],"Convert to Blocks":["Konvertova\u0165 na bloky"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Tento blok zaznamenal neo\u010dak\xe1van\xfa chybu a nem\xf4\u017ee by\u0165 prezret\xfd."],"No block selected.":["Nie je vybrat\xfd \u017eiadny blok."],"Transform into:":["Zmeni\u0165 na:"],Remove:["Odobra\u0165"],"Find original":["N\xe1js\u0165 origin\xe1l"],"Copy All Content":["Kop\xedrova\u0165 cel\xfd obsah"],"Copied!":["Skop\xedrovan\xe9!"],"Additional settings are now available in the Editor block settings sidebar":["Dodato\u010dn\xe9 nastavenia s\xfa teraz dostupn\xe9 v bo\u010dnom paneli nastaven\xed editora. "],Visibility:["Vidite\u013enos\u0165"],"Status & Visibility":["Stav a Vidite\u013enos\u0165"],"Page Attributes":["Vlastnosti str\xe1nky"],Block:["Blok","%d Bloky","%d Blokov"],Document:["Dokument"],"Featured Image":["Ilustra\u010dn\xfd obr\xe1zok"],"Close settings":["Zatvori\u0165 nastavenia"],"Editor content":["Obsah editora"],Tools:["N\xe1stroje"],Editor:["Editor"],"Code Editor":["Editor k\xf3du"],"Visual Editor":["Vizu\xe1lny editor"],"Editor top bar":["Top bar editora"],Settings:["Nastavenia"],Reset:["Resetova\u0165"],"Dismiss this notice":["Skry\u0165 toto ozn\xe1menie"],"Item removed.":["Polo\u017eka odobran\xe1."],"Item added.":["Polo\u017eka pridan\xe1."],"Drop files to upload":["Presu\u0148te a nahrajte s\xfabory"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Vyskytla sa nezn\xe1ma chyba."],"No results.":["\u017diadne v\xfdsledky."],"%d result found, use up and down arrow keys to navigate.":["%d v\xfdsledok bol n\xe1jden\xfd, pou\u017eite kl\xe1vesy hore a dolu pre navig\xe1ciu.","%d v\xfdsledky boli n\xe1jden\xe9, pou\u017eite kl\xe1vesy hore a dolu pre navig\xe1ciu.","%d v\xfdsledkov bolo n\xe1jden\xfdch, pou\u017eite kl\xe1vesy hore a dolu pre navig\xe1ciu."],"(no title)":["(bez n\xe1zvu)"],URL:["URL"],Submit:["Odosla\u0165"],Close:["Zavrie\u0165"],"Insert link":["Vlo\u017ei\u0165 odkaz"],"Edit link":["Upravi\u0165 odkaz"],Link:["Odkaz"],Strikethrough:["Pre\u010diarknut\xe9"],Italic:["Kurz\xedva"],Bold:["Tu\u010dn\xe9"],"Remove link":[],"Number of items":["Po\u010det polo\u017eiek"],All:["V\u0161etko"],Category:["Kateg\xf3ria"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Od najstar\u0161ieho po najnov\u0161ie"],"Newest to Oldest":["Od najnov\u0161ieho po najstar\u0161ie"],"Order by":["Zoradi\u0165 pod\u013ea"],Select:["Vybra\u0165"],"Select or Upload Media":["Vybra\u0165 alebo nahra\u0165 s\xfabory m\xe9di\xed"],Video:["Video"],"Edit video":["Upravi\u0165 video"],"Write\u2026":["Nap\xed\u0161te..."],poetry:["po\xe9zia"],Verse:["Ver\u0161"],"New Column":["Nov\xfd st\u013apec"],"Delete Column":["Zmaza\u0165 st\u013apec"],"Add Column After":["Prida\u0165 st\u013apec za"],"Add Column Before":["Prida\u0165 st\u013apec pred"],"Delete Row":["Zmaza\u0165 riadok"],"Add Row After":["Prida\u0165 riadok po"],"Add Row Before":["Prida\u0165 riadok pred"],"Edit table":["Upravi\u0165 tabu\u013eku"],Table:["Tabu\u013eka"],"Write subheading\u2026":["Nap\xed\u0161te podnadpis..."],"Write shortcode here\u2026":["Nap\xed\u0161te sem shortcode..."],Shortcode:["Shortcode"],divider:["odde\u013eova\u010d"],"horizontal-line":["horizont\xe1lna \u010diara"],Separator:["Odde\u013eova\u010d"],Quote:["Cit\xe1cia"],"Write citation\u2026":["Nap\xed\u0161te cit\xe1ciu..."],"Write quote\u2026":["Nap\xed\u0161te cit\xe1ciu..."],Pullquote:["Cit\xe1cia"],"Write preformatted text\u2026":["Nap\xed\u0161te predform\xe1tovan\xfd text..."],Preformatted:["Predform\xe1tovan\xfd"],text:["text"],Paragraph:["Odsek"],"Font Size":["Ve\u013ekos\u0165 p\xedsma"],"Drop Cap":["Drop Cap"],"Text Settings":["Nastavenia textu"],"Read more":["\u010c\xedta\u0165 viac"],"Write list\u2026":["Nap\xed\u0161te zoznam..."],"numbered list":["\u010d\xedslovan\xfd zoznam"],"ordered list":["\u010d\xedslovan\xfd zoznam"],"bullet list":["odr\xe1\u017ekov\xfd zoznam"],"Indent list item":["Polo\u017eka zoznamu odsadenia"],"Outdent list item":["Polo\u017eka zoznamu predsadenia"],"Convert to ordered list":["Konvertova\u0165 na \u010d\xedslovan\xfd zoznam"],"Convert to unordered list":["Konvertova\u0165 na ne\u010d\xedslovan\xfd zoznam"],List:["Zoznam"],"recent posts":["ned\xe1vny \u010dl\xe1nok"],"No posts found.":["\u017diadne \u010dl\xe1nky nen\xe1jden\xe9."],"Latest Posts":["Najnov\u0161ie \u010dl\xe1nky"],"Display post date":["Zobrazi\u0165 d\xe1tum \u010dl\xe1nku"],"Grid view":["Mrie\u017ekov\xe9 zobrazenie"],"List view":["Zobrazi\u0165 zoznam"],photo:["fotka"],"Image Settings":["Nastavenia obr\xe1zku"],Image:["Obr\xe1zok"],Preview:["N\xe1h\u013ead"],embed:["vlo\u017ei\u0165"],"Custom HTML":["Vlastn\xe9 HTML"],subtitle:["podtitulok"],title:["titulok"],Heading:["Nadpis"],"Write heading\u2026":["Nap\xed\u0161te nadpis..."],"Heading %d":["Nadpis %d"],Level:["\xdarove\u0148"],"Heading Settings":["Nastavenia nadpisu"],photos:["fotky"],images:["obr\xe1zky"],"Remove Image":["Odobra\u0165 obr\xe1zok"],None:["\u017diadny"],"Media File":["S\xfabor m\xe9di\xed"],"Attachment Page":["Str\xe1nka pr\xedlohy"],"Crop Images":["Oreza\u0165 obr\xe1zky"],"Gallery Settings":["Nastavenia gal\xe9rie"],Gallery:["Gal\xe9ria"],Classic:["Klasick\xfd"],video:["video"],audio:["audio"],music:["hudba"],image:["obr\xe1zok"],blog:["blog"],post:["\u010dl\xe1nok"],"Embedded content from %s":["Vlo\u017ei\u0165 obsah z %s"],"Enter URL to embed here\u2026":["Zadajte URL adresu, ktor\xe1 sa sem vlo\u017e\xed..."],"%s URL":["%s URL adresa"],"Embedding\u2026":["Vkladanie..."],"Write title\u2026":["Nap\xed\u0161te titulok..."],"Fixed Background":["Nemenn\xe9 pozadie"],"Edit image":["Upravi\u0165 obr\xe1zok"],Columns:["St\u013apce"],Experiments:[],Code:["K\xf3d"],"Write code\u2026":["Nap\xedsa\u0165 k\xf3d..."],Categories:["Kateg\xf3rie"],"Show Hierarchy":["Zobrazi\u0165 hierarchiu"],"Show post counts":["Zobrazi\u0165 po\u010det \u010dl\xe1nkov"],"Categories Settings":["Nastavenia kateg\xf3ri\xed"],"Add text\u2026":["Prida\u0165 text..."],Button:["Tla\u010didlo"],Apply:["Pou\u017ei\u0165"],"Text Color":["Farba textu"],"Background Color":["Farba pozadia"],"Block has been deleted or is unavailable.":["Blok bol zmazan\xfd alebo je nedostupn\xfd."],"Reusable Blocks":["Znovupou\u017eite\u013en\xe9 bloky"],Cancel:["Zru\u0161i\u0165"],Edit:["Upravi\u0165"],"Edit audio":["Upravi\u0165 audio"],"Write caption\u2026":["Nap\xed\u0161te titulok..."],"Use URL":["Pou\u017ei\u0165 URL adresu"],Audio:["Audio"],Upload:["Nahra\u0165"],"Additional CSS Class(es)":["Dodato\u010dn\xe9 CSS triedy"],"HTML Anchor":["HTML kotva"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["T\xe1to farebn\xe1 kombin\xe1cia m\xf4\u017ee by\u0165 pre \u013eud\xed \u0165a\u017e\u0161ie \u010ditate\u013en\xe1. Sk\xfaste pou\u017ei\u0165 jasnej\u0161iu farbu pozadia a / alebo tmav\u0161iu farbu textu."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["T\xe1to farebn\xe1 kombin\xe1cia m\xf4\u017ee by\u0165 pre \u013eud\xed \u0165a\u017e\u0161ie \u010ditate\u013en\xe1. Sk\xfaste pou\u017ei\u0165 tmav\u0161iu farbu pozadia a / alebo svetlej\u0161iu farbu textu. "],Clear:["Vy\u010disti\u0165"],"Custom color picker":["Vlastn\xfd v\xfdber farby"],"Color: %s":["Farba: %s"],"Full Width":["Pln\xe1 \u0161irka"],"Wide Width":["Na cel\xfa \u0161\xedrku"],Widgets:["Widgety"],Formatting:["Form\xe1tovanie"],"Common Blocks":["Be\u017en\xe9 bloky"],"Align Right":["Zarovna\u0165 vpravo"],"Align Center":["Zarovna\u0165 na stred"],"Align Left":["Zarovna\u0165 v\u013eavo"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Tla\u010d od roku 1440. Toto je v\xfdvojov\xfd plugin pre nov\xfd editor blokov v jadre."],"Add title":["Zadajte nadpis"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["Autor"],Slug:["Slug"],Discussion:["Diskusia"],"Custom Fields":["Vlastn\xe9 polia"],Excerpt:["V\xfd\u0148atok"],Publish:["Publikova\u0165"],Metadata:["Metadata"],Save:["Ulo\u017ei\u0165"],Documentation:["Dokument\xe1cia"],"Select Category":["Zvo\u013ete kateg\xf3riu"],"(Untitled)":["(Bez n\xe1zvu)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg vy\u017eaduje WordPress %s alebo nov\u0161\xed pre spr\xe1vne fungovanie. Pred aktiv\xe1ciou Gutenberg pros\xedm aktualizujte WordPress."],"Gutenberg Team":["Gutenberg t\xedm"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["pred %s"],"Block style name must be a string.":["N\xe1zov \u0161t\xfdlu bloku mus\xed by\u0165 re\u0165azec."]}},862,[]); +__d(function(e,t,i,r,o,a,n){o.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// Nj\xeb \u201cbllok\u201d \xebsht\xeb termi abstrakt\n// i p\xebrdorur p\xebr t\xeb p\xebrshkruar nj\xebsi\n// formatimi teksti q\xeb kur p\xebrdoren\n// tok, formojn\xeb l\xebnd\xebn ose skem\xebn\n// grafike t\xeb nj\xeb faqeje.\nregisterBlockType( em\xebr, rregullime );"],"You are probably offline.":["Gjasat jan\xeb t\xeb jeni offline."],"Justify items right":["P\xebrligji objektet djathtas"],"Justify items center":["P\xebrligji objektet n\xeb qend\xebr"],"Justify items left":["P\xebrligji objektet majtas"],"Change items justification":["Ndrysho p\xebrligje objektesh"],"The media file has been replaced":["Kartela media \xebsht\xeb z\xebvend\xebsuar"],Replace:["Z\xebvend\xebsoje"],"Choose pattern":["Zgjidhni rregullsi"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Aktualisht gjendeni n\xebn m\xebnyr\xebn p\xebrpunim. Q\xeb t\xeb riktheheni te m\xebnyra l\xebvizje, shtypni tastin Esc."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Aktualisht gjendeni n\xebn m\xebnyr\xebn l\xebvizje. L\xebvizni n\xebp\xebr blloqe duke p\xebrdorur tastin Tab. P\xebr t\xeb dal\xeb nga m\xebnyra lavizje dhe p\xebr t\xeb p\xebrpunuar bllokun e p\xebrzgjedhur, shtypni tastin Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Q\xeb t\xeb ndryshoni pozicion gradienti, p\xebrdorni tastet shigjet\xeb majtas ose djathtas se teknik\xebn \u201cmerr dhe v\xebr\u201d me miun. Q\xeb t\xeb ndryshoni ngjyr\xebn ose hiqni pik\xebn e kontrollit, shtypni butonin."],"Gradient control point at position %1$s with color code %2$s.":["Pik\xeb kontrolli gradienti n\xeb pozicionin %1$s me kod ngjyre %2$s."],"Preset Size":["Madh\xebsi e paracaktuar"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Mjetet ofrojn\xeb nd\xebrveprime t\xeb ndryshme p\xebr p\xebrzgjedhje & p\xebrpunim blloqesh. Q\xeb t\xeb p\xebrzgjidhni, shtypni tastin Esc, q\xeb t\u2019i riktheheni p\xebrpunimit, shtypni tastin Enter."],"Open Media Library":["Hap Mediatek\xeb"],Next:["Pasuesi"],Previous:["I m\xebparshmi"],Finish:["P\xebrfundoje"],"Page %1$d of %2$d":["Faqja %1$d nga %2$d"],"Guide controls":["Kontrolle udh\xebrr\xebfyesi"],"Remove Control Point":["Hiq Pik\xeb Kontrolli"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["\xc7do bllok vjen me grupin e vet t\xeb kontrolleve p\xebr ndryshim gj\xebrash t\xeb tilla si ngjyr\xeb, gjer\xebsi dhe drejtim. K\xebto do t\xeb shfaqen dhe zhduken automatikisht kur keni t\xeb p\xebrzgjedhur nj\xeb bllok."],"Make each block your own":["B\xebjeni \xe7do bllok si e doni"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["Te p\xebrpunuesi n\xeb WordPress, \xe7do paragraf, figur\xeb ose video paraqitet me nj\xeb \u201cbllok\u201d t\xeb dalluesh\xebm l\xebnde."],"ADD MEDIA":["SHTONI MEDIA"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":["Krejt blloqet e p\xebrdorsh\xebm prej jush, live te Libraria e Blloqeve. Do ta gjeni kurdo q\xeb shihni ikon\xebn ."],"Get to know the Block Library":["Njihuni me Librarin\xeb e Blloqeve"],"Welcome Guide":["Udh\xebrr\xebfyes Mir\xebseardhjeje"],"Enable Page Templates":["Aktivizo Gjedhe Faqesh"],"Page Templates":["Gjedhe Faqesh"],"Enable Full Site Editing Demo Templates":["Aktivizo Gjedhe Demonstrimi P\xebrpunimi t\xeb Plot\xeb t\xeb Sajtit"],"Full Site Editing Demo Templates":["Gjedhe Demonstrimi P\xebrpunimi t\xeb Plot\xeb t\xeb Sajtit"],"Welcome to the Block Editor":["Mir\xeb se vini te P\xebrpunuesi Me Blloqe"],"Get started":["Fillojani"],inserter:["fut\xebs"],"Post Title":["Titull Postimi"],"Add nofollow to link":["Shto nofollow te lidhje"],"Link Settings":["Rregullime Lidhjesh"],"Add Submenu":["Shtoni N\xebnmenu"],"Add link\u2026":["Shtoni lidhje\u2026"],Dark:["E err\xebt"],Light:["E \xe7el\xebt"],recording:["incizim"],podcast:["podkast"],sound:["tingull"],"Array of instance changes":["Varg ndryshimesh instance"],"Current widget instance":["Instanc\xeb e tanishme e widget-it"],"Template parts to include in your templates.":["Pjes\xeb gjedhesh p\xebr t\u2019i p\xebrfshir\xeb te gjedhet tuaja."],"Template parts list":["List\xeb pjes\xebsh gjedheje"],"Template parts list navigation":["L\xebvizje te list\xeb pjes\xebsh gjedheje"],"Filter template parts list":["Filtroni list\xeb pjes\xebsh gjedheje"],"Uploaded to this template part":["U ngarkua te kjo pjes\xeb gjedheje"],"Insert into template part":["Futeni te pjes\xeb gjedheje"],"Template part archives":["Arkiv pjes\xebsh gjedheje"],"No template parts found in Trash.":["S\u2019u gjet\xebn pjes\xeb gjedheje te Hedhurinat."],"No template parts found.":["S\u2019u gjet\xebn pjes\xeb gjedheje."],"Parent Template Part:":["Pjes\xeb Gjedheje M\xebm\xeb:"],"Search Template Parts":["K\xebrkoni Pjes\xeb Gjedheje"],"All Template Parts":["Krejt Pjes\xebt e Gjedhes"],"View Template Part":["Shihni Pjes\xeb Gjedheje"],"Edit Template Part":["P\xebrpunoni Pjes\xeb Gjedheje"],"New Template Part":["Pjes\xeb e Re Gjedheje"],"Add New Template Part":["Shtoni Pjes\xeb t\xeb Re Gjedheje"],"Template Part\x04Add New":["Shtoni t\xeb Re"],"Admin Menu text\x04Template Parts":["Pjes\xeb Gjedhesh"],"Template Part":["Pjes\xeb Gjedheje"],"Template Parts":["Pjes\xeb Gjedheje"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Udh\xebs me zor gjarp\xebronin t\xeb lodhur\nPa pritur gj\xeb nga nata dhe i ftohti\nShpresat pas shum\xeb her\xebt kishin l\xebn\xeb\nDhe nuk besonin m\xeb as dhe te Zoti\nT\xeb mundur, t\xeb harruar dhe drejt fundit\nHije t\xeb vetmuara t\xeb asgj\xebkundit."],Navigation:["L\xebvizje"],"Loading Navigation\u2026":["Po ngarkohet L\xebvizja\u2026"],"Navigation Structure":["Struktur\xeb L\xebvizjeje"],"Create empty":["Krijo t\xeb zbraz\xebt"],"Create from all top pages":["Krijo prej krejt faqeve t\xeb ep\xebrme"],"Create a Navigation from all existing pages, or create an empty one.":["Krijoni nj\xeb L\xebvizje prej krejt faqeve ekzistuese, ose krijoni nj\xeb t\xeb zbraz\xebt."],"Navigation Link":["Lidhje L\xebvizjeje"],"(Note: many devices and browsers do not display this text.)":["(Sh\xebnim: mjaft pajisje dhe shfletues nuk e shfaqin k\xebt\xeb tekst.)"],"Describe the role of this image on the page.":["P\xebrshkruani rolin e k\xebsaj figure te faqja."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Kalim nga p\xebrdorimi i t\xeb nj\xebjt\xebs vler\xeb p\xebr krejt madh\xebsit\xeb e ekranit te p\xebrdorimi i nj\xeb vlere unike p\xebr madh\xebsi ekrani, ose anasjelltas."],"Use the same %s on all screensizes.":["P\xebrdor t\xeb nj\xebjt\xebn %s n\xeb krejt madh\xebsin\xeb e ekranit."],"Large screens":["Ekrane t\xeb m\xebdhenj"],"Medium screens":["Ekrane t\xeb mes\xebm"],"Small screens":["Ekrane t\xeb vegj\xebl"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["Kontrollon vetin\xeb %1$s p\xebr kanale parjeje %2$s."],Change:["Ndryshojeni"],"Currently selected":["E p\xebrzgjedhur p\xebr \xe7astin"],"Search or type url":["K\xebrkoni ose shtypni URL"],"Press ENTER to add this link":["Shtypni Enter q\xeb t\xeb shtohet kjo lidhje"],"Currently selected link settings":["Rregullime lidhjeje t\xeb p\xebrzgjedhur aktualisht"],"Generic label for block inserter button\x04Add block":["Shtoni bllok"],"directly add the only allowed block\x04Add %s":["Shtoni %s"],"%s block added":["Blloku %s u shtua"],"Move %s":["L\xebvizeni %s"],"Extra Large":["Ekstra e Gjer\xeb"],"Block breadcrumb":["Element\xeb breadcrumb blloku"],"Site Title":["Titull Sajti"],"Open Colors Selector":["Hapni P\xebrzgjedh\xebs Ngjyrash"],"Overlay Gradient":["Gradient Shtrese P\xebrsip\xebr"],"Templates list":["List\xeb gjedhesh"],"Templates list navigation":["L\xebvizje te list\xeb gjedhesh"],"Filter templates list":["Filtroni list\xeb gjedhesh"],"Uploaded to this template":["U ngarkua te kjo gjedhe"],"Insert into template":["Futeni te gjedhe"],"Template archives":["Arkiva gjedhesh"],"No templates found in Trash.":["S\u2019u gjet\xebn gjedhe te Hedhurinat."],"No templates found.":["S\u2019u gjet\xebn gjedhe."],"Parent Template:":["Gjedhe M\xebm\xeb:"],"Search Templates":["K\xebrkoni P\xebr Gjedhe"],"All Templates":["Krejt Gjedhet"],"View Template":["Shihni Gjedhe"],"Edit Template":["P\xebrpunoni Gjedhe"],"New Template":["Gjedhe e Re"],"Add New Template":["Shtoni Gjedhe t\xeb Re"],"Template\x04Add New":["Shtoni t\xeb Re"],"Admin Menu text\x04Templates":["Gjedhe"],Template:["Gjedhe"],"No matching template found":["S\u2019u gjet gjedhe me p\xebrputhje"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Kod gradienti: %s"],"All content copied.":["U kopjua krejt l\xebnda."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Ngarkimi i medias d\xebshtoi. N\xebse kjo \xebsht\xeb nj\xeb foto ose nj\xeb figur\xeb e madhe, ju lutemi, rip\xebrmasojeni me zvog\xeblim dhe riprovoni."],Gradient:["Gradient"],"Gradient Presets":["Paracaktime Gradienti"],"No Preview Available.":["S\u2019ka Paraparje."],Midnight:["Mesnat\xeb"],"Electric grass":["Bar elektrik"],"Pale ocean":["Oqean i zbeht\xeb"],"Luminous dusk":["Muzg i ndritsh\xebm"],"Blush bordeaux":["Bordo e zbeht\xeb"],"Blush light purple":["E purpur e \xe7el\xebt e zbeht\xeb"],"Cool to warm spectrum":["Spektri nga t\xeb ftohta te t\xeb ngrohta"],"Very light gray to cyan bluish gray":["Gri shum\xeb e \xe7el\xebt n\xeb gri blu n\xeb t\xeb gjelb\xebr me nuanca bluje"],"Luminous vivid orange to vivid red":["Portokalli e ndritshme e ndezur n\xeb t\xeb kuqe t\xeb ndezur"],"Luminous vivid amber to luminous vivid orange":["Ngjyr\xeb mjalti e ndezur e ndritshme n\xeb portokalli t\xeb ndezur t\xeb ndritshme"],"Light green cyan to vivid green cyan":["Blu e gjelb\xebr n\xeb t\xeb gjelb\xebr e \xe7el\xebt n\xeb blu t\xeb gjelb\xebr n\xeb t\xeb gjelb\xebr t\xeb ndezur"],"Vivid cyan blue to vivid purple":["Blu e gjelb\xebr n\xeb blu e ndezur n\xeb t\xeb purpur t\xeb ndezur"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 dhjetor, 2018"],"February 21, 2019":["21 shkurt, 2019"],"May 7, 2019":["7 maj 2009"],"Release Date":["Dat\xeb Hedhjeje N\xeb Qarkullim"],"Jazz Musician":["Muzikant Jazz-i"],Version:["Version"],"Six.":["Gjasht\xeb."],"Five.":["Pes\xeb."],"Four.":["Kat\xebr."],"Three.":["Tre."],"Two.":["Dy."],"One.":["Nj\xeb."],"One of the hardest things to do in technology is disrupt yourself.":["Nj\xeb nga gj\xebrat m\xeb t\xeb zorshme n\xeb teknologji \xebsht\xeb t\xeb nd\xebrpres\xebsh vetveten."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["Gjith\xe7ka rreth k\xebsaj \xebsht\xeb nj\xeb sken\xeb thuajse t\xebr\xebsisht e zez\xeb. Tani, teksa kamera zhvendoset ngadal\xeb drejt dritares, e cila te kuadri \xebsht\xeb thuajse sa nj\xeb pull\xeb poste, z\xebn\xeb e shfaqen forma t\xeb tjera;"],"Window, very small in the distance, illuminated.":["Dritare, shum\xeb e vog\xebl n\xeb larg\xebri, e ndri\xe7uar."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINIATUR\xcb)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["Cinxamiu
e nxjerr buk\xebn e goj\xebs
pa zhurm\xeb e buj\xeb."],"Welcome to the wonderful world of blocks\u2026":["Mir\xeb se vini n\xeb bot\xebn e mrekullueshme t\xeb blloqeve\u2026"],"Snow Patrol":["Snow Patrol"],Dimensions:["P\xebrmasa"],"Minimum height in pixels":["Lart\xebsi minimum n\xeb piksel"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim ultricies commodo."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit, eget faucibus urna pulvinar."],"Call to Action":["Thirrje P\xebr Veprim"],"In quoting others, we cite ourselves.":["Duke cituar t\xeb tjer\xebt, ne citojm\xeb vetveten."],cite:["citoni"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc appears\u2014still, snowy, and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["P\xebr sa i p\xebrket botimit, pavar\xebsisht nga kriteret, motivet dhe synimet e botuesve, mund t\xeb themi se fjal\xebt tona t\xeb urta radhiten nd\xebrmjet atyre zhanreve folklorike q\xeb kan\xeb pasur m\xeb shum\xeb fat. Ato kan\xeb t\xebrhequr prej koh\xebsh v\xebmendjen e folklorist\xebve, gjuh\xebtar\xebve, letrar\xebve dhe dijetar\xebve shqiptar\xeb (edhe t\xeb huaj.)"],"Block navigation":["L\xebvizje n\xeb bllok"],"Enable Full Site Editing":["Aktivizoni P\xebrpunim t\xeb Krejt Sajtit"],"Full Site Editing":["P\xebrpunim i Krejt Sajtit"],"Templates to include in your theme.":["Gjedhe p\xebr t\u2019u p\xebrfshir\xeb te tema juaj."],Templates:["Gjedhe"],"Inserter Help Panel":["Panel Ndihme P\xebr Fut\xebsin"],"Pre-publish Checks":["Kontrolle Para-publikimi"],"Please contact your site administrator to install new blocks.":["Q\xeb t\xeb instaloni blloqe t\xeb rinj, ju lutemi, lidhuni me p\xebrgjegj\xebsin e sajtit tuaj."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["S\u2019u gjet\xebn blloqe te bllokoteka juaj. Q\xeb t\xeb instaloni blloqe t\xeb rinj, ju lutemi, lidhuni me p\xebrgjegj\xebsin e sajtit tuaj."],"No blocks found in your library.":["S\u2019u gjet\xebn blloqe te bllokoteka juaj."],"No blocks found in your library. These blocks can be downloaded and installed:":["S\u2019u gjet\xebn blloqe n\xeb bllokotek\xebn tuaj. Mund t\xeb shkarkohen dhe instalohen k\xebto blloqe:"],"No blocks found in your library. We did find %d block available for download.":["S\u2019u gjet\xebn blloqe n\xeb bllokotek\xebn tuaj. Gjet\xebm %d bllok t\xeb gatsh\xebm p\xebr shkarkim.","S\u2019u gjet\xebn blloqe n\xeb bllokotek\xebn tuaj. Gjet\xebm %d blloqe t\xeb gatsh\xebm p\xebr shkarkim."],"Block previews can\u2019t load.":["S\u2019mund t\xeb ngarkohen paraparje blloqesh."],Retry:["Riprovo"],"Block previews can't install.":["S\u2019mund t\xeb instalohen paraparje blloqesh."],"Updated %s":["%s u p\xebrdit\xebsua"],"%d active installation":["%d instalim aktiv","%d instalime aktive"],"This author has %d block, with an average rating of %d.":["Ky autor ka %d bllok, me vler\xebsim mesatar prej %d.","Ky autor ka %d blloqe, me vler\xebsim mesatar prej %d."],"Authored by %s":["Me autor %s"],Add:["Shto"],"%d total rating":["%d vler\xebsim gjithsej","%d vler\xebsime gjithsej"],"%s out of 5 stars":["%s nga 5 yje t\xeb mundsh\xebm"],"Enter Address":["Jepni Adres\xeb"],"Pill Shape":["Kok\xebrr"],"Logos Only":["Vet\xebm Stema"],"Create a block of links to your social media or external sites":["Krijoni nj\xeb bllok lidhjesh p\xebr te mediat tuaja shoq\xebrore ose sajte t\xeb jasht\xebm"],"Social links":["Lidhje shoq\xebror\xebsh"],"Open block navigator":["Hapni l\xebziz\xebz n\xebp\xebr blloqe"],"Attachment page":["Faqe bashk\xebngjitje"],Fill:["Mbushe"],"Link rel":["Atribut \u201crel\u201d lidhjeje"],"Border Radius":["Rreze An\xebsh"],"Write gallery caption\u2026":["Shkruani titull galerie\u2026"],"Content Blocks":["Blloqe L\xebnde"],"Restore the backup":["Riktheje kopjeruajtjen"],"The backup of this post in your browser is different from the version below.":["Kopjeruajtja e k\xebtij postimi te shfletuesi juaj \xebsht\xeb e ndryshme nga versioni m\xeb posht\xeb."],"Enable Block Directory search":["Aktivizo k\xebrkim n\xeb Drejtori Blloqesh"],"Block Directory":["Drejtori Blloqesh"],"Unable to connect to the filesystem. Please confirm your credentials.":["S\u2019arrihet t\xeb lidhet me sistemin e kartelave. Ju lutemi, ripohoni kredencialet tuaja."],"Sorry, you are not allowed to install blocks.":["Na ndjeni, nuk keni leje t\xeb instaloni blloqe."],"%1$d block is disabled.":["\xcbsht\xeb \xe7aktivizuar %1$d bllok.","Jan\xeb \xe7aktivizuar %1$d blloqe."],"Reverse List Numbering":["Num\xebrim Liste S\xeb Prapthi"],"Start Value":["Vler\xeb Fillimi"],"Ordered List Settings":["Rregullime Listash t\xeb Renditura"],"Clear Media":["Spastro Mediat"],"block style\x04Circle Mask":["Mask\xeb Rrethore"],"Default Style":["Stil Parazgjedhje"],"Not set":["E parregulluar"],"While writing, you can press / to quickly insert new blocks.":["Teksa shkruani, mund t\xeb shtypni / q\xeb t\xeb futni shpejt e shpejt blloqe t\xeb rinj."],"Browse through the library to learn more about what each block does.":["Shfletoni n\xebp\xebr librari q\xeb t\xeb m\xebsoni m\xeb tep\xebr se \xe7\u2019b\xebn secili bllok."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Ka blloqe t\xeb gatsh\xebm p\xebr krejt llojet e l\xebnd\xebs: futni tekst, tituj, lista, video, tabela, dhe plot t\xeb tjera."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Mir\xeb se vini te bota e mrekullueshme e blloqeve! Blloqet jan\xeb baza e krejt l\xebnd\xebs brenda te p\xebrpunuesi."],"Version of the content block format used by the object.":["Version i formatit t\xeb bllokut t\xeb l\xebnd\xebs p\xebrdorur nga objekti."],"HTML content for the object, transformed for display.":["L\xebnd\xeb HTML p\xebr objektin, e shnd\xebrruar p\xebr shfaqje."],"Content for the object, as it exists in the database.":["L\xebnd\xeb p\xebr objektin, si\xe7 gjendet te baza e t\xeb dh\xebnave."],"The content for the object.":["L\xebnda p\xebr objektin."],"Change column alignment":["Ndryshoni drejtim shtylle"],"Align Column Right":["Vendose Shtyll\xebn Djathtas"],"Align Column Center":["Vendose Shtyll\xebn N\xeb Qend\xebr"],"Align Column Left":["Vendose Shtyll\xebn Majtas"],Color:["Ngjyr\xeb"],"Vivid purple":["E purpur e gjall\xeb"],"Disable & Reload":["\xc7aktivizoje & Ringarkoje"],"Enable & Reload":["Aktivizoje & Ringarkoje"],"A page reload is required for this change. Make sure your content is saved before reloading.":["P\xebr k\xebt\xeb ndryshim \xebsht\xeb i nevojsh\xebm ringarkimi i faqes. P\xebrpara ringarkimit, sigurohuni se keni ruajtur l\xebnd\xebn tuaj."],"Display these keyboard shortcuts.":["Shfaq k\xebto shkurtore tastiere."],"Experiments Settings":["Rregullime Eksperimentesh"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg-u ka disa ve\xe7ori eksperimentale q\xeb mund t\u2019i vini n\xeb pun\xeb. Thjesht p\xebrzgjidhni secil\xebn prej atyre q\xeb doni. K\xebto ve\xe7ori ka gjasa q\xeb t\xeb ndryshojn\xeb n\xeb t\xeb ardhmen, ndaj nuk k\xebshillohet t\u2019i p\xebrdorni n\xeb sajte t\xeb nj\xebmendt\xeb."],"Enable Widgets Screen and Legacy Widget Block":["Aktivizo Sken\xeb Widget-esh dhe Bllok Widget-esh t\xeb Dikursh\xebm"],"Experiment settings":["Rregullime eksperimenti"],"Block name name must be a string.":["Emri i bllokut duhet t\xeb jet\xeb nj\xeb varg."],Custom:["Vetjake"],Draft:["Skic\xeb"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blloku \"%1$s\" s\u2019p\xebrmban ndonj\xeb stil t\xeb em\xebrtuar \"%2$s.\"."],"Learn more about anchors":["M\xebsoni m\xeb tep\xebr mbi spirancat"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Jepni nj\xeb a dy fjal\xeb \u2014\xa0pa hap\xebsira \u2014\xa0p\xebr t\xeb krijuar nj\xeb adres\xeb web unike sa p\xebr k\xebt\xeb krye, q\xeb quhet \u201cspiranc\xeb\u201d. Mandej do t\xeb jeni n\xeb gjendje t\xeb lidhni di\xe7ka drejtp\xebrs\xebdrejti me k\xebt\xeb ndarje t\xeb faqes tuaj."],"Widget Blocks (Experimental)":["Blloqe Widget-esh (Eksperimentale)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Ngarkoni nj\xeb kartel\xeb video, zgjidhni nj\xeb prej mediatek\xebs tuaj, ose shtoni nj\xeb t\xeb till\xeb p\xebrmes URL-je."],"Upload an image file, pick one from your media library, or add one with a URL.":["Ngarkoni nj\xeb kartel\xeb figure, zgjidhni nj\xeb prej mediatek\xebs tuaj, ose shtoni nj\xeb t\xeb till\xeb p\xebrmes URL-je."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Ngarkoni nj\xeb kartel\xeb audio, zgjidhni nj\xeb prej mediatek\xebs tuaj, ose shtoni nj\xeb t\xeb till\xeb p\xebrmes URL-je."],"Upload a media file or pick one from your media library.":["Ngarkoni nj\xeb kartel\xeb media ose zgjidhni nj\xeb nga mediateka juaj."],Skip:["Anashkaloje"],"Select a pattern to start with.":["P\xebrzgjidhni nj\xeb rregullsi me t\xeb cil\xebn t\u2019ia fillohet."],"Add a page, link, or other item to your navigation.":["Shtoni te menuja juaj e l\xebvizjeve nj\xeb faqe, lidhje ose element tjet\xebr."],"What's this?":["\xc7\u2019\xebsht\xeb ky?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Mos i lejo motor\xebt e k\xebrkimeve t\xeb ndjekin k\xebt\xeb lidhje."],"Provide more context about where the link goes.":["Jepni m\xeb tep\xebr kontekst rreth se ku shkon kjo lidhje."],"Title Attribute":["Atribut Titulli"],"SEO Settings":["Rregullime SEO"],Description:["P\xebrshkrim"],"Open in new tab":["Hape n\xeb sked\xeb t\xeb re"],links:["lidhje"],navigation:["l\xebvizje"],menu:["menu"],"Add a navigation block to your site.":["Shtoni te sajti juaj nj\xeb bllok l\xebvizjesh."],"Upload a file or pick one from your media library.":["Ngarkoni nj\xeb kartel\xeb ose zgjidhni nj\xeb nga mediateka juaj."],"Learn more about embeds":["M\xebsoni m\xeb tep\xebr rreth trup\xebzimeve"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Ngjitni nj\xeb lidhje p\xebr te l\xebnda q\xeb doni t\xeb shfaqet te sajti juaj."],"Upload an image or video file, or pick one from your media library.":["Ngarkoni nj\xeb kartel\xeb figure ose video, ose zgjidhni nj\xeb q\xeb nga mediateka juaj."],"Three columns; wide center column":["Tre shtylla; shtyll\xeb e gjer\xeb n\xeb qend\xebr"],"Three columns; equal split":["Tre shtylla; ndarje e barabart\xeb"],"Two columns; two-thirds, one-third split":["Dy shtylla; ndarje dy t\xeb treta, nj\xeb t\xeb tret\xeb"],"Two columns; one-third, two-thirds split":["Dy shtylla; ndarje nj\xeb t\xeb tret\xeb; dy t\xeb treta"],"Two columns; equal split":["Dy shtylla; ndarje e barabart\xeb"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Sajti juaj s\u2019ka ndonj\xeb %s, ndaj h\xebp\xebrh\xeb s\u2019ka gj\xeb p\xebr t\u2019u shfaqur k\xebtu."],"More tools & options":["M\xeb tep\xebr mjete & mund\xebsi"],"Create Table":["Krijo Tabel\xeb"],"Insert a table for sharing data.":["Futni nj\xeb tabel\xeb p\xebr t\xeb ndar\xeb t\xeb dh\xebna."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Hiqua grupin"],"verb\x04Group":["Grupoje"],"Separate with commas or the Enter key.":["Ndajini me presje ose me tastin Enter."],"Separate with commas, spaces, or the Enter key.":["Ndajini me presje, hap\xebsira, ose me tastin Enter."],"Separate multiple classes with spaces.":["Ndajini klasat e shumta me hap\xebsira."],"Move image forward":["L\xebvize figur\xebn p\xebrpara"],"Move image backward":["L\xebvize figur\xebn mbrapsht"],"Sorry, you are not allowed to edit sidebars.":["Na ndjeni, s\u2019keni leje t\xeb p\xebrpunoni an\xebshtylla."],"Sorry, you are not allowed to read sidebars.":["Na ndjeni, s\u2019keni leje t\xeb lexoni an\xebshtylla."],"The sidebar\u2019s ID.":["ID-ja e an\xebshtyll\xebs."],"Displays a set of blocks":["Shfaq nj\xeb grup blloqesh"],"Blocks Area":["Fush\xeb Blloqesh"],"Block rendered as empty.":["Blloku u vizatua si i zbraz\xebt."],"Inline Code":["Kod Brendazi"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Sh\xebnim: Luajtja e vetvetishme e videove mund t\xeb shkaktoj\xeb probleme p\xebrdorimi p\xebr disa vizitor\xeb."],"Footer section":["Ndarje fundfaqe"],"Header section":["Ndarje krye"],"Sorting and Filtering":["Renditje dhe Filtrim"],"Post Meta Settings":["Rregullime Meta Postimi"],"Post Content":["L\xebnd\xeb Postimi"],"Post Content Settings":["Rregullime L\xebnde Postimi"],"Percentage width":["Gjer\xebsi p\xebrqindjeje"],"Column Settings":["Rregullime Shtylle"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Sh\xebnim: Luajtja e vetvetishme e audios mund t\xeb shkaktoj\xeb probleme p\xebrdorimi p\xebr disa vizitor\xeb."],"Block area updated.":["Zona e blloqeve u p\xebrdit\xebsua."],"Block area scheduled.":["Zona e blloqeve u vu n\xeb plan p\xebr botim."],"Block area published.":["Zona e blloqeve u botua."],"Block areas list":["List\xeb zonash blloqesh"],"Block areas list navigation":["L\xebvizje n\xeb list\xeb zonash blloqesh"],"Filter block areas list":["Filtroni list\xeb zonash blloqesh"],"No block area found.":["S\u2019u gjet zon\xeb blloqesh."],"Search Block Areas":["K\xebrkoni Zona Blloqesh"],"All Block Areas":["Krejt Zonat e Blloqeve"],"View Block Area":["Shihni Zon\xeb Blloqesh"],"Edit Block Area":["P\xebrpunoni Zon\xeb Blloqesh"],"New Block Area":["Zon\xeb e Re Blloqesh"],"Add New Block Area":["Shtoni Zon\xeb t\xeb Re Blloqesh"],"admin menu\x04Block Areas":["Zona Blloqesh"],"post type singular name\x04Block Area (Experimental)":["Zon\xeb Blloqesh (Eksperimentale)"],"post type general name\x04Block Area (Experimental)":["Zon\xeb Blloqesh (Eksperimentale)"],"Experimental custom post type that will store block areas referenced by themes.":["Lloj postimi vetjak eksperimental q\xeb do t\xeb depozitoj\xeb zona blloqesh t\xeb referencuara nga tema."],"Widgets screen content":["L\xebnd\xeb skene widget-esh"],"Widgets advanced settings":["Rregullime t\xeb m\xebtejshme widget-esh"],"(experimental)":["(eksperimentale)"],"Block Areas":["Zona Blloqesh"],"Widgets screen top bar":["Shtyll\xeb e sip\xebrme skene widget-esh"],"This color combination may be hard for people to read.":["Kjo nd\xebrthurje ngjyrash mund t\xeb v\xebshtir\xebsoj\xeb leximin nga njer\xebzit."],"There is no poster image currently selected":["S\u2019ka t\xeb p\xebrzgjedhur figur\xeb afisheje"],"The current poster image url is %s":["URL-ja e figur\xebs s\xeb tanishme afishe \xebsht\xeb %s"],section:["ndarje"],row:["rresht"],wrapper:["mb\xebshtjell\xebse"],container:["kontejner"],"A block that groups other blocks.":["Nj\xeb bllok q\xeb grupon blloqe t\xeb tjera."],Group:["Grup"],"Crop image to fill entire column":["Qetheni figur\xebn q\xeb ta nx\xebr\xeb krejt shtylla"],"Play inline":["Luaje brendazi"],"Leave empty if the image is purely decorative.":["L\xebreni t\xeb zbraz\xebt, n\xebse figura \xebsht\xeb thjesht dekorative."],"Describe the purpose of the image":["P\xebrshkruani q\xebllimin e figur\xebs"],"Add a block":["Shtoni nj\xeb bllok"],"Block vertical alignment setting label\x04Change vertical alignment":["Ndryshojini drejtimin vertikal"],"Block vertical alignment setting\x04Vertically Align Bottom":["Vendose Vertikalisht N\xeb Fund"],"Block vertical alignment setting\x04Vertically Align Middle":["Vendose Vertikalisht N\xeb Mes"],"Replace Image":["Z\xebvend\xebsoni Figur\xebn"],"Block vertical alignment setting\x04Vertically Align Top":["Vendose Vertikalisht Sip\xebr"],"Display a legacy widget.":["Shfaqni nj\xeb widget t\xeb dikursh\xebm."],"Legacy Widget (Experimental)":["Widget i Dikursh\xebm (Eksperimentale)"],"Change widget":["Ndryshoni widget-in"],"Legacy Widget":["Widget i Dikursh\xebm"],"You don't have permissions to use widgets on this site.":["S\u2019keni leje t\xeb p\xebrdorni widget-e n\xeb k\xebt\xeb sajt."],"Select a legacy widget to display:":["P\xebrzgjidhni p\xebr shfaqje nj\xeb widget t\xeb dikursh\xebm:"],"There are no widgets available.":["S\u2019ka widget-e t\xeb gatsh\xebm."],"Change block type or style":["Ndryshoni lloj ose stil blloku"],"keyboard key\x04Space":["Hap\xebsir\xeb"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["M\xeb tep\xebr kontrolle p\xebr tekst t\xeb pasur"],"Search Terms":["Terma K\xebrkimesh"],"Exit the Editor":["Dil Nga P\xebrpunues"],"Block Manager":["P\xebrgjegj\xebs Blloqesh"],"Class name of the widget.":["Em\xebr klase e widget-it."],"Sorry, you are not allowed to access widgets on this site.":["Na ndjeni, s\u2019keni leje t\xeb hyni te widget-e n\xeb k\xebt\xeb sajt."],"Widgets (beta)":["Widget-e (beta)"],link:["lidhje"],"Embedded content from %s can't be previewed in the editor.":["L\xebnd\xebs s\xeb trup\xebzuar nga %s s\u2019mund t\u2019i b\xebhet paraparje te p\xebrpunuesi."],"Custom Color":["Ngjyr\xeb Vetjake"],"Prompt visitors to take action with a button-style link.":["K\xebrkojuni vizitor\xebve t\xeb nd\xebrmarrin nj\xeb veprim, p\xebrmes nj\xeb lidhje n\xeb stil butoni."],"Stick to the top of the blog":["Ngjite n\xeb krye t\xeb blogut"],"Read about permalinks":["Lexoni mbi permalidhje"],"The last part of the URL.":["Pjesa e fundit e URL-s\xeb."],"URL Slug":["Identifikues URL-je"],"A cloud of your most used tags.":["Nj\xeb re e etiketave tuaja m\xeb t\xeb p\xebrdorura."],"Tag Cloud":["Re Etiketash"],Taxonomy:["Klasifikim"],"Tag Cloud Settings":["Rregullime Reje Etiketash"],"- Select -":["- P\xebrzgjidhni -"],Default:["Parazgjedhje"],find:["gjej"],"Help visitors find your content.":["Lejojuni vizitor\xebve t\xeb gjejn\xeb l\xebnd\xeb tuaj\xebn."],Search:["K\xebrko"],"Add button text\u2026":["Shtoni tekst butoni\u2026"],"Button text":["Tekst butoni"],"Optional placeholder\u2026":["Vendmbajt\xebse opsionale\u2026"],"Optional placeholder text":["Tekst opsional vendmbajt\xebseje"],"Add label\u2026":["Shtoni etiket\xeb\u2026"],"Label text":["Tekst etikete"],"image %1$d of %2$d in gallery":["figura %1$d nga %2$d n\xeb galeri"],archive:["arkiv"],posts:["postime"],"A calendar of your site\u2019s posts.":["Nj\xeb kalendar i postimeve n\xeb sajtin tuaj."],Calendar:["Kalendar"],by:["nga"],"An error has occurred, which probably means the feed is down. Try again later.":["Ndodhi nj\xeb gabim, i cili, sipas gjasash, do t\xeb thot\xeb q\xeb prurja s\u2019po funksionon. Riprovoni m\xeb von\xeb."],"RSS Error:":["Gabim RSS-je:"],"block style\x04Default":["Parazgjedhje"],"Fullscreen mode deactivated":["M\xebnyra Sa T\xebr\xeb Ekrani u \xe7aktivizua"],"Fullscreen mode activated":["M\xebnyra Sa T\xebr\xeb Ekrani u aktivizua"],"Spotlight mode deactivated":["M\xebnyra projektor u \xe7aktivizua"],"Spotlight mode activated":["M\xebnyra projektor u aktivizua"],"Top toolbar deactivated":["Paneli i sip\xebrm u \xe7aktivizua"],"Top toolbar activated":["Paneli i sip\xebrm u aktivizua"],Back:["Mbrapsht"],"Feature activated":["Ve\xe7oria u aktivizua"],"Feature deactivated":["Ve\xe7oria u \xe7aktivizua"],"Vertical Pos.":["Poz. Vertikal"],"Horizontal Pos.":["Poz. Horizontal"],feed:["prurje"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Shfaqni z\xebra prej \xe7far\xebdo prurjeje RSS ose Atom."],RSS:["RSS"],"Max number of words in excerpt":["Num\xebr maksimum fjal\xebsh n\xeb cop\xebz"],"Display excerpt":["Shfaq cop\xebz"],"Display date":["Shfaq dat\xeb"],"Display author":["Shfaq autorin"],"RSS Settings":["Rregullime RSS-je"],"Edit RSS URL":["P\xebrpunoni URL RSS-je"],"Content before this block will be shown in the excerpt on your archives page.":["L\xebnda p\xebrpara k\xebtij blloku do t\xeb shfaqet te cop\xebza, te faqja juaj e arkivave."],"Hide the excerpt on the full content page":["Fshihe cop\xebz\xebn n\xeb nj\xeb faqe l\xebnde t\xeb plot\xeb"],"The excerpt is visible.":["Cop\xebza \xebsht\xeb e dukshme.."],"The excerpt is hidden.":["Cop\xebza \xebsht\xeb e fshehur."],"Sorry, this content could not be embedded.":["Na ndjeni, kjo l\xebnd\xeb s\u2019u trup\xebzua dot."],"Embed Amazon Kindle content.":["Trup\xebzoni l\xebnd\xeb Amazon Kindle."],ebook:["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Trup\xebzoni l\xebnd\xeb Crowdsignal (dikur Polldaddy)."],"Focal Point Picker":["Zgjedh\xebs Vatre"],Underline:["N\xebnvij\xeb"],"Attempt Block Recovery":["Provo Rimarrje Blloku"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["L\xebnd\xeb\u2026"],"button label\x04Convert to link":["Shnd\xebrroje n\xeb lidhje"],"button label\x04Try again":["Riprovoni"],"Editor tips":["Ndihm\xebza redaktori"],"Block (selected)":["Bllok (p\xebrzgjedhur)"],"Document (selected)":["Dokument (p\xebrzgjedhur)"],"%d word":["%d fjal\xeb","%d fjal\xeb"],"Top Toolbar":["Paneli N\xeb Krye"],"Link Rel":["Atribut « Rel » i Lidhjes"],"Link CSS Class":["Klas\xeb CSS Lidhjeje"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Krijoni l\xebnd\xeb dhe ruajeni p\xebr veten dhe kontribues t\xeb tjer\xeb p\xebr ta rip\xebrdorur n\xebp\xebr sajtin tuaj. P\xebrdit\xebsojeni bllokun, dhe ndryshimet zbatohen kudo q\xeb ai \xebsht\xeb p\xebrdorur."],"To edit the featured image, you need permission to upload media.":["Q\xeb t\xeb p\xebrpunoni figur\xebn e zgjedhur, ju duhen leje p\xebr t\xeb ngarkuar media."],"To edit this block, you need permission to upload media.":["Q\xeb t\xeb p\xebrpunoni k\xebt\xeb bllok, ju duhen leje t\xeb ngarkoni media."],"(selected block)":["(blloku i p\xebrzgjedhur)"],"Block tools":["Mjete blloqesh"],Permalink:["Permalidhje"],"This image has an empty alt attribute":["Kjo figur\xeb ka nj\xeb atribut alt t\xeb zbraz\xebt"],"This image has an empty alt attribute; its file name is %s":["Kjo figur\xeb ka nj\xeb atribut alt t\xeb zbraz\xebt; emri i kartel\xebs p\xebr t\xeb \xebsht\xeb %s"],"Block area reverted to draft.":["Zona e blloqeve u kthye te versioni skic\xeb."],"Block area published privately.":["Zona e blloqeve u botua privatisht."],"No block areas found in Trash.":["S\u2019u gjet\xebn zona blloqesh te Hedhurinat."],"Block\x04Add New":["Shtoni t\xeb Ri"],"add new on admin bar\x04Block Area":["Zon\xeb Blloqesh"],"Link inserted.":["Lidhja u fut."],"Warning: the link has been inserted but may have errors. Please test it.":["Kujdes: lidhja \xebsht\xeb futur, por mund t\xeb ket\xeb gabime. Ju lutemi, testojeni."],"%s block selected.":["U p\xebrzgjodh %s bllok.","U p\xebrzgjodh\xebn %s blloqe."],Thumbnail:["Miniatur\xeb"],"Full Size":["Madh\xebsi e Plot\xeb"],"Link selected.":["Lidhja u p\xebrzgjodh."],"Start writing with text or HTML":["Filloni t\xeb shkruani me tekst ose HTML"],"Type text or HTML":["Shtypni tekst ose HTML"],"Block icon":["Ikon\xeb blloku"],"Align Text Right":["V\xebre Tekstin Djathtas"],"Align Text Center":["V\xebre Tekstin N\xeb Qend\xebr"],"Align Text Left":["V\xebre Tekstin Majtas"],"Start writing or type / to choose a block":["Filloni t\xeb shkruani ose shtypni tastin / q\xeb t\xeb zgjidhni nj\xeb bllok"],"Empty block; start writing or type forward slash to choose a block":["Bllok i zbraz\xebt; filloni t\xeb shkruani ose shtypni tastin pjerrake p\xebrpara q\xeb t\xeb zgjidhni nj\xeb bllok"],"Paragraph block":["Bllok paragraf"],"Page Break":["Nd\xebrprerje Faqeje"],"Stack on mobile":["Nj\xebra sip\xebr tjetr\xebs, n\xeb celular"],Annotation:["Sh\xebnim"],"Drag images, upload new ones or select files from your library.":["T\xebrhiqni k\xebtu figura, ngarkoni t\xeb reja ose p\xebrzgjidhni kartela nga fototeka juaj."],"blocks\x04Most Used":["M\xeb T\xeb P\xebrdorurit"],"imperative verb\x04Resolve":["Zgjidheni"],"font size name\x04Huge":["T\xeb st\xebrm\xebdha"],"font size name\x04Large":["T\xeb m\xebdha"],"font size name\x04Medium":["Mesatare"],"font size name\x04Small":["T\xeb vogla"],"font size name\x04Normal":["Normale"],"keyboard button\x04Enter":["Tasti Enter"],"button label\x04Import":["Importo"],"button label\x04Download":["Shkarkim"],"button label\x04Embed":["Trup\xebzojeni"],"block title\x04Embed":["Trup\xebzim"],"block title\x04Classic":["Klasik"],"block style\x04Large":["I madh"],"%s (opens in a new tab)":["%s (hapet n\xeb dritare t\xeb re)"],"Link edited.":["Lidhja u p\xebrpunua."],"Link removed.":["Lidhja u hoq."],media:["media"],"Double-check your settings before publishing.":["P\xebrpara se t\xeb botoni, kontrolloni edhe nj\xeb her\xeb rregullimet tuaja."],"Generating preview\u2026":["Po prodhohet paraparja\u2026"],"Edit or update the image":["P\xebrpunoni ose p\xebrdit\xebsoni figur\xebn"],Media:["Media"],"Navigate to the nearest toolbar.":["Kalo te paneli m\xeb i af\xebrt."],"Document tools":["Mjete dokumentesh"],"Document and block tools":["Mjete dokumentesh dhe blloqesh"],"Embed a video from your media library or upload a new one.":["Trup\xebzoni nj\xeb video nga mediateka juaj ose ngarkoni nj\xeb t\xeb re."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Futni poezi. P\xebrdorni formate speciale p\xebr hap\xebsirat. Ose citoni vargje k\xebnge."],"Add white space between blocks and customize its height.":["Shtoni hap\xebsir\xeb t\xeb zbraz\xebt mes blloqesh dhe p\xebrshtatni lart\xebsin\xeb e tyre."],"Insert additional custom elements with a WordPress shortcode.":["Futni element\xeb vetjak\xeb shtes\xeb, p\xebrmes nj\xeb kodi t\xeb shkurt\xebr WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Krijoni nj\xeb nd\xebrprerje mes idesh apo seksionesh, me nj\xeb ndar\xebs horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Jepini tekstit t\xeb cituar nj\xeb theksim pamor. \"Duke cituar t\xeb tjer\xebt, ne citojm\xeb vetveten.\" \u2014 Hulio Kortazar"],"Give special visual emphasis to a quote from your text.":["Jepini theksim t\xeb ve\xe7ant\xeb pamor nj\xeb citimi prej tekstit tuaj."],"Start with the building block of all narrative.":["Fillojani me bllokun themelor t\xeb krejt rr\xebfimit."],"Separate your content into a multi-page experience.":["Ndajeni l\xebnd\xebn tuaj n\xeb nj\xeb form\xeb shum\xeb faqesh."],"Set media and words side-by-side for a richer layout.":["Vini krah p\xebr krah media dhe fjal\xeb, p\xebr nj\xeb skem\xeb m\xeb t\xeb larmishme."],"Media & Text Settings":["Rregullime p\xebr Media & Tekst"],"Create a bulleted or numbered list.":["Krijoni nj\xeb list\xeb me toptha ose t\xeb num\xebrtuar."],"Display a list of your most recent comments.":["Shfaqni nj\xeb list\xeb t\xeb komenteve tuaja m\xeb t\xeb reja."],"Insert an image to make a visual statement.":["Futni nj\xeb figur\xeb p\xebr t\xeb l\xebn\xeb p\xebrshtypje."],"Add custom HTML code and preview it as you edit.":["Shtoni kod HTML vetjak dhe shihni nj\xeb paraparje t\xeb tij, n\xeb p\xebrpunim e sip\xebr."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["P\xebrdorni ndarje t\xeb reja dhe sistemojeni l\xebnd\xebn tuaj p\xebr t\u2019i ndihmuar vizitor\xebt (dhe motor\xebt e k\xebrkimit) t\xeb kuptojn\xeb struktur\xeb e saj."],"Display multiple images in a rich gallery.":["Shfaqni figura t\xeb shumta n\xeb nj\xeb galeri t\xeb larmishme."],"Add a link to a downloadable file.":["Shtoni nj\xeb lidhje te nj\xeb kartel\xeb e shkarkueshme."],"Embed videos, images, tweets, audio, and other content from external sources.":["Trup\xebzoni video, figura, mesazhe nga Twitter, audio, dhe l\xebnd\xeb tjet\xebr nga burime t\xeb jashtme."],"Resize for smaller devices":["Rip\xebrmasoje p\xebr pajisje m\xeb t\xeb vogla"],"This embed may not preserve its aspect ratio when the browser is resized.":["Ky trup\xebzim mund t\xeb mos ruaj\xeb p\xebrpjes\xebtimet e veta, kur shfletuesi rip\xebrmasohet."],"This embed will preserve its aspect ratio when the browser is resized.":["Ky trup\xebzim do t\xeb ruaj\xeb p\xebrpjes\xebtimet e veta, kur shfletuesi rip\xebrmasohet."],"Embed an Animoto video.":["Trup\xebzoni video Animoto."],"Embed a Vimeo video.":["Trup\xebzoni video Vimeo."],"Embed Flickr content.":["Trup\xebzoni l\xebnd\xeb Flickr."],"Embed Spotify content.":["Trup\xebzoni l\xebnd\xeb Spotify."],"Embed SoundCloud content.":["Trup\xebzoni l\xebnd\xeb SoundCloud."],"Embed a WordPress post.":["Trup\xebzoni nj\xeb postim WordPress."],"Embed an Instagram post.":["Trup\xebzoni postim Instagram."],"Embed a Facebook post.":["Trup\xebzoni postim Facebook."],"Embed a WordPress.tv video.":["Trup\xebzoni nj\xeb video WordPress.tv."],"Embed a VideoPress video.":["Trup\xebzoni nj\xeb video VideoPress."],"Embed a Tumblr post.":["Trup\xebzoni nj\xeb postim Tumblr."],"Embed a TED video.":["Trup\xebzoni nj\xeb video TED."],"Embed Speaker Deck content.":["Trup\xebzoni l\xebnd\xeb Speaker Deck."],"Embed a YouTube video.":["Trup\xebzoni video YouTube."],"Embed SmugMug content.":["Trup\xebzoni l\xebnd\xeb SmugMug."],"Embed Slideshare content.":["Trup\xebzoni l\xebnd\xeb Slideshare."],"Embed Scribd content.":["Trup\xebzoni l\xebnd\xeb Scribd."],"Embed Screencast content.":["Trup\xebzoni l\xebnd\xeb Screencast."],"Embed ReverbNation content.":["Trup\xebzoni l\xebnd\xeb ReverbNation."],"Embed a Reddit thread.":["Trup\xebzoni rrjedh\xeb Reddit."],"Embed Polldaddy content.":["Trup\xebzoni l\xebnd\xeb Polldaddy."],"Embed Mixcloud content.":["Trup\xebzoni l\xebnd\xeb Mixcloud."],"Embed a tweet.":["Trup\xebzoni nj\xeb cic\xebrim\xeb Twitter."],"Embed Meetup.com content.":["Trup\xebzoni l\xebnd\xeb Meetup.com."],"Embed Kickstarter content.":["Trup\xebzoni l\xebnd\xeb Kickstarter."],"Embed Issuu content.":["Trup\xebzoni l\xebnd\xeb Issuu."],"Embed Imgur content.":["Trup\xebzoni l\xebnd\xeb Imgur."],"Embed Hulu content.":["Trup\xebzoni l\xebnd\xeb Hulu."],"Embed a Dailymotion video.":["Trup\xebzoni nj\xeb video Dailymotion."],"Embed CollegeHumor content.":["Trup\xebzoni l\xebnd\xeb CollegeHumor."],"Embed Cloudup content.":["Trup\xebzoni l\xebnd\xeb Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Shtoni nj\xeb figur\xeb ose video me nj\xebfar\xeb teksti p\xebrsip\xebr - e shk\xeblqyer p\xebr krye."],"Display code snippets that respect your spacing and tabs.":["Shfaqni cop\xebza kodi q\xeb respektojn\xeb hap\xebsirat dhe tabulacionet tuaja."],"Use the classic WordPress editor.":["P\xebrdorni p\xebrpunuesin klasik WordPress."],"Display a list of all categories.":["Shfaq nj\xeb list\xeb t\xeb krejt kategorive."],"Embed a simple audio player.":["Trup\xebzoni nj\xeb lojt\xebs t\xeb thjesht\xeb audio."],"noun\x04View":["Pamje"],"editor button\x04Left to right":["Nga e majta n\xeb t\xeb djatht\xeb"],"Save as Pending":["Ruaje si N\xeb Pritje t\xeb Miratimit"],"%s address":["Adres\xeb %s"],"Paste or type URL":["Hidhni ose shtypni URL-n\xeb"],"Insert from URL":["Futni prej URL-je"],"Block Navigator":["L\xebvizje N\xeb Blloqe"],Styles:["Stile"],"Advanced Panels":["Panele t\xeb M\xebtejsh\xebm"],"Document Panels":["Panele Dokumentesh"],General:["T\xeb p\xebrgjithshme"],"Open the block navigation menu.":["Hap menun\xeb e l\xebvizjes n\xebp\xebr blloqe."],"Work without distraction":["Punoni pa shp\xebrqendrim"],"Focus on one block at a time":["P\xebrqendrohuni mbi nj\xeb bllok n\xeb her\xeb"],"Access all block and document tools in a single place":["P\xebrdorni krejt blloqet dhe mjetet e dokumenteve nga nj\xeb vend i vet\xebm"],Options:["Mund\xebsi"],"(opens in a new tab)":["(hapet n\xeb dritare t\xeb re)"],Minutes:["Minuta"],Hours:["Or\xeb"],Time:["Koh\xeb"],Year:["Vit"],Day:["Dit\xeb"],December:["Dhjetor"],November:["N\xebntor"],October:["Tetor"],September:["Shtator"],August:["Gusht"],July:["Korrik"],June:["Qershor"],May:["Maj"],April:["Prill"],March:["Mars"],February:["Shkurt"],January:["Janar"],Month:["Muaj"],Date:["Dat\xeb"],"Go to the first (home) or last (end) day of a week.":["Kaloni te dita e par\xeb (tasti Home) ose e fundit (tasti End) e jav\xebs."],"Home/End":["Tastet Home/End"],"Home and End":["Tastet Home dhe End"],"Move backward (PgUp) or forward (PgDn) by one month.":["L\xebvizni mbrapa (tasti PgUp) ose p\xebrpara (tasti PgDn) me nj\xeb muaj."],"PgUp/PgDn":["Tastet PgUp/PgDn"],"Page Up and Page Down":["Tastet Page Up dhe Page Down"],"Move backward (up) or forward (down) by one week.":["L\xebvizni mbrapa (tasti Up) ose p\xebrpara (tasti Down) me nj\xeb jav\xeb."],"Up and Down Arrows":["Tastet shigjet\xeb Sip\xebr dhe Posht\xeb"],"Move backward (left) or forward (right) by one day.":["L\xebvizni mbrapa (tasti shigjet\xeb majtas) dhe p\xebrpara (tasti shigjet\xeb djathtas) me nj\xeb dit\xeb."],"Left and Right Arrows":["Tastet shigjet\xeb Majtas dhe Djathtas"],"Select the date in focus.":["P\xebrzgjidh dat\xebn q\xeb ka fokusin."],"Navigating with a keyboard":["L\xebvizje me tastier\xeb"],"Click the desired day to select it.":["Klikoni dit\xebn e d\xebshiruar q\xeb t\xeb p\xebrzgjidhet."],"Click the right or left arrows to select other months in the past or the future.":["Klikoni mbi shigjetat djathtas dhe majtas p\xebr t\xeb p\xebrzgjedhur muaj t\xeb tjer\xeb n\xeb t\xeb kaluar\xebn apo t\xeb ardhmen."],"Click to Select":["Klikoni q\xeb t\xeb P\xebrzgjidhet"],"Calendar Help":["Ndihm\xeb p\xebr Kalendarin"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["P\xebrdorni tastet shigjet\xeb q\xeb t\xeb ndryshoni ngjyr\xebn baz\xeb. Shigjet\xebn sip\xebr p\xebr ta \xe7elur ngjyr\xebn, at\xeb posht\xeb p\xebr ta b\xebr\xeb m\xeb t\xeb err\xebt, at\xeb majtas p\xebr t\u2019i shtuar ngopjen, dhe at\xeb djathtas p\xebr t\u2019ia zvog\xebluar."],"Choose a shade":["Zgjidhni nj\xeb hije"],"Change color format":["Ndryshoni format ngjyrash"],"Color value in HSL":["Vler\xeb ngjyre n\xeb HSL"],"Color value in RGB":["Vler\xeb ngjyre n\xeb RGB"],"Color value in hexadecimal":["Vler\xeb ngjyre n\xeb gjasht\xebmb\xebdhjet\xebsh"],"RGB mode active":["M\xebnyra RGB aktive"],"Hex color mode active":["M\xebnyra ngjyra gjasht\xebmb\xebdhjet\xebshe aktive"],"Hue/saturation/lightness mode active":["M\xebnyra ton/ngopje/ndri\xe7im aktive"],"Move the arrow left or right to change hue.":["L\xebvizeni shigjet\xebn majtas ose djathtas q\xeb t\xeb ndryshoni tonin e ngjyr\xebs."],"Hue value in degrees, from 0 to 359.":["Vlera hue-je n\xeb grad\xeb, nga 0 n\xeb 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Vlera alfa, nga 0 (e tejdukshme) n\xeb 1 (plot\xebsisht e marrt\xeb)."],Stripes:["Vija"],"Your site doesn\u2019t include support for this block.":["Sajti juaj nuk p\xebrmban mbulim p\xebr k\xebt\xeb bllok."],"Unrecognized Block":["Bllok i Papranuar"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Sajti juaj nuk p\xebrmban mbulim p\xebr bllokun \"%s\". K\xebt\xeb bllok mund ta lini t\xeb paprekur ose ta hiqni fare."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Sajti juaj nuk p\xebrmban mbulim p\xebr bllokun \"%s\". K\xebt\xeb bllok mund ta lini t\xeb paprekur, ta shnd\xebrroni n\xeb nj\xeb bllok HTML-je Vetjake, ose ta hiqni fare."],"Media area":["Zon\xeb mediash"],"Media & Text":["Media & Tekst"],"Show media on right":["Median shfaqe djathtas"],"Show media on left":["Median shfaqe majtas"],"Open in New Tab":["Hape n\xeb Sked\xeb t\xeb Re"],Cover:["Mbules\xeb"],"Border Settings":["Rregullime An\xebsh"],"Edit media":["P\xebrpunoni media"],Medium:["Medium"],"Paste URL or type to search":["Hidhni URL-n\xeb ose shtypni q\xeb t\xeb k\xebrkohet"],Terms:["Terma"],"Your work will be published at the specified date and time.":["Postimi juaj do t\xeb botohet n\xeb dat\xebn dhe koh\xebn e p\xebrcaktuar."],"Are you ready to schedule?":["Jeni gati t\xeb planifikoni?"],"Always show pre-publish checks.":["Shfaq p\xebrher\xeb kontrolle para-publikimi."],"Take Over":["Merreni N\xeb Dor\xeb"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Mbi k\xebt\xeb postim \xebsht\xeb duke punuar h\xebp\xebrh\xeb nj\xeb tjet\xebr p\xebrdorues, q\xeb do t\xeb thot\xeb se nuk mund t\xeb b\xebni ndryshime, ve\xe7 n\xeb e marrshi ju n\xeb dor\xeb pun\xebn."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["Mbi k\xebt\xeb postim \xebsht\xeb duke punuar h\xebp\xebrh\xeb %s, q\xeb do t\xeb thot\xeb se nuk mund t\xeb b\xebni ndryshime, ve\xe7 n\xeb e marrshi ju n\xeb dor\xeb pun\xebn."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Mbi k\xebt\xeb postim tani ka kontroll p\xebrpunimi nj\xeb tjet\xebr p\xebrdorues. Mos u b\xebni merak, ndryshimet tuaja deri n\xeb k\xebt\xeb \xe7ast jan\xeb ruajtur."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Mbi k\xebt\xeb postim tani ka kontroll p\xebrpunimi %s. Mos u b\xebni merak, ndryshimet tuaja deri n\xeb k\xebt\xeb \xe7ast jan\xeb ruajtur."],Avatar:["Avatar"],"This post is already being edited.":["Ky postim gjendet tashm\xeb n\xebn p\xebrpunim."],"Someone else has taken over this post.":["Dikush tjet\xebr e ka marr\xeb n\xeb dor\xeb k\xebt\xeb postim."],"This block contains unexpected or invalid content.":["Ky bllok p\xebrmban l\xebnd\xeb t\xeb papritur ose t\xeb pavlefshme."],"Resolve Block":["Zgjidheni Bllokun"],"Convert to HTML":["Shnd\xebrroje n\xeb HTML"],"This block can only be used once.":["Ky bllok mund t\xeb p\xebrdoret vet\xebm nj\xeb her\xeb."],"Exit Code Editor":["Dil Nga P\xebrpunues Kodi"],"Editing Code":["P\xebrpunim Kodi"],"Solid Color":["Ngjyr\xeb e Plot\xeb"],"Main Color":["Ngjyr\xeb Baz\xeb"],HTML:["HTML"],"Write HTML\u2026":["Shkruani HTML\u2026"],"Media Settings":["Rregullime P\xebr Media"],"Overlay Color":["Ngjyr\xeb Shtrese P\xebrsip\xebr"],Overlay:["Shtres\xeb P\xebrsip\xebr"],"Insert Media":["Futni Media"],"Reusable block imported successfully!":["U importua me sukses bllok i rip\xebrdorsh\xebm!"],"Invalid Reusable Block JSON file":["Kartel\xeb e Pavlefshme JSON Blloku t\xeb Rip\xebrdorsh\xebm"],"Invalid JSON file":["Kartel\xeb JSON e pavlefshme"],"Import from JSON":["Importo nga JSON"],Backtick:["Apostrof s\xeb prapthi"],Period:["Pik\xeb"],Comma:["Presje"],"Change type of %d block":["Ndryshoni llojin e %d blloku","Ndryshoni llojin e %d blloqeve"],Current:["I tanishmi"],"After Conversion":["Pas Shnd\xebrrimi"],"Change alignment":["Ndryshoji drejtimin"],"Change text alignment":["Ndryshoni drejtim teksti"],"%d block":["%d bllok","%d blloqe"],Escape:["Tasti Esc"],"Forward-slash":["Pjerrake p\xebrpara"],"No archives to show.":["S\u2019ka arkiva p\xebr shfaqje."],"This file is empty.":["Kjo kartel\xeb \xebsht\xeb e zbraz\xebt."],"Sorry, this file type is not supported here.":["Na ndjeni, ky lloj kartele k\xebtu nuk mbulohet."],"Manage All Reusable Blocks":["Administroni Krejt Blloqet e Rip\xebrdorsh\xebm"],Title:["Titull"],"Fullscreen Mode":["M\xebnyra Sa Krejt Ekrani"],"Beautiful landscape":["Panoram\xeb e bukur"],"Close panel":["Mbylle panelin"],"Convert to Classic Block":["Shnd\xebrroje n\xeb Bllok Klasik"],"Remove Poster Image":["Hiqe Figur\xebn e Afishes"],"Select Poster Image":["P\xebrzgjidhni Figur\xeb Afishe"],"Poster Image":["Figur\xeb Afishe"],"This block is deprecated. Please use the Columns block instead.":["Ky bllok \xebsht\xeb nxjerr\xeb nga p\xebrdorimi. N\xeb vend t\xeb tij, ju lutemi, p\xebrdorni bllokun Shtylla."],"Text Columns (deprecated)":["Shtylla Teksti (nxjerr\xeb nga p\xebrdorimi)"],"Row Count":["Num\xebr Rreshti"],"Column Count":["Num\xebr Shtylle"],"This block is deprecated. Please use the Paragraph block instead.":["Ky bllok \xebsht\xeb nxjerr\xeb nga p\xebrdorimi. N\xeb vend t\xeb tij, ju lutemi, p\xebrdorni bllokun Paaragraf."],"Subheading (deprecated)":["N\xebnkrye (nxjerr\xeb nga p\xebrdorimi)"],blockquote:["bllok citimi"],"Change the block type after adding a new paragraph.":["Ndryshoni llojin e bllokut pasi t\xeb keni shtuar nj\xeb paragraf t\xeb ri."],"Spotlight Mode":["M\xebnyra Projektor"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Etiketat i ndihmojn\xeb p\xebrdoruesit dhe motor\xebt e k\xebrkimeve t\xeb l\xebvizin n\xebp\xebr sajtin tuaj dhe t\xeb gjejn\xeb l\xebnd\xebn tuaj. Shtoni ndoca fjal\xebky\xe7e p\xebr t\xeb p\xebrshkruar postimin tuaj."],"Add tags":["Shtoni etiketa"],"Apply the \"%1$s\" format.":["Apliko formatin \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Tema juaj p\xebrdor formate postimesh p\xebr t\xeb theksuar lloje t\xeb ndryshme l\xebnde, bie fjala figura ose video. Q\xeb t\xeb shihni k\xebt\xeb stilizim t\xeb ve\xe7ant\xeb, aplikoni nj\xeb format postimi."],"Use a post format":["P\xebrdorim nj\xeb format postimesh"],"Insert After":["Fute Pas"],"Insert Before":["Fute Para"],"Move %1$d block from position %2$d down by one place":["Kalo %1$d bllok nga pozicioni %2$d nj\xeb vend m\xeb posht\xeb","Kaloje %1$d blloqet nga pozicioni %2$d nj\xeb vend m\xeb posht\xeb"],"Move %1$d block from position %2$d up by one place":["Kalo %1$d bllok nga pozicioni %2$d nj\xeb vend m\xeb sip\xebr","Kalo %1$d blloqe nga pozicioni %2$d nj\xeb vend m\xeb sip\xebr"],"Move %1$s block from position %2$d %3$s to position %4$d":["Kaloje bllokun %1$s nga pozicioni %2$d %3$s n\xeb pozicionin %4$d"],movie:["film"],"Insert a new block before the selected block(s).":["Futni nj\xeb bllok t\xeb ri para bllokut(qeve) t\xeb p\xebrzgjedhur."],"Remove the selected block(s).":["Hiqe bllokun(qet) e p\xebrzgjedhur(a)."],"Duplicate the selected block(s).":["P\xebrs\xebdytni bllokun(qet) e p\xebrzgjedhur."],"Block shortcuts":["Shkurtore blloku"],"Clear selection.":["Pastroje p\xebrzgjedhjen."],"Select all text when typing. Press again to select all blocks.":["P\xebrzgjidhni krejt tekstin kur shtypet. Rishtypeni q\xeb t\xeb p\xebrzgjidhen krejt blloqet."],"Selection shortcuts":["Shkurtore p\xebrzgjedhjesh"],"Switch between Visual Editor and Code Editor.":["Hidhuni nga P\xebrpunues Pamor n\xeb at\xeb t\xeb Kodit dhe anasjelltas."],"Navigate to the previous part of the editor (alternative).":["Kalo te pjesa e m\xebparshme e p\xebrpunuesit (alternative)."],"Navigate to the next part of the editor (alternative).":["Kalo te pjesa pasuese e p\xebrpunuesit (alternative)."],"Navigate to the previous part of the editor.":["Kalo te pjesa e m\xebparshme e p\xebrpunuesit."],"Navigate to the next part of the editor.":["Kalo te pjesa pasuese e p\xebrpunuesit."],"Show or hide the settings sidebar.":["Shfaqni ose fshihni an\xebshtyll\xebn e rregullimeve."],"Redo your last undo.":["Rib\xebni zhb\xebrjen tuaj t\xeb fundit."],"Undo your last changes.":["Zhb\xebni ndryshimet tuaja t\xeb fundit."],"Save your changes.":["Rruani ndryshimet tuaja."],"Global shortcuts":["Shkurtore t\xeb p\xebrgjithshme"],"Remove a link.":["Hiqni nj\xeb lidhje."],"Convert the selected text into a link.":["Shnd\xebrroje tekstin e p\xebrzgjedhur n\xeb nj\xeb lidhje."],"Underline the selected text.":["N\xebnvizoje tekstin e p\xebrzgjedhur."],"Make the selected text italic.":["Tekstin e p\xebrzgjedhur kaloje n\xebn t\xeb pjerr\xebta."],"Make the selected text bold.":["Tekstin e p\xebrzgjedhur kaloje n\xebn t\xeb trasha."],"Text formatting":["Formatim teksti"],"Insert a new block after the selected block(s).":["Futni nj\xeb bllok t\xeb ri pas bllokut(ve) t\xeb p\xebrzgjedhur."],"Keyboard Shortcuts":["Shkurtore Tastiere"],"Thanks for testing Gutenberg!":["Faleminderit q\xeb testoni Gutenberg-un!"],"Help build Gutenberg":["Ndihmoni n\xeb ngritjen e Gutenberg-ut"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["N\xebse doni t\xeb m\xebsoni m\xeb tep\xebr rreth se si t\xeb krijohen blloqe shtes\xeb, ose n\xebse interesoheni t\xeb ndihmoni n\xeb projekt, shkoni te depoja n\xeb GitHub."],"The WordPress community":["Bashk\xebsia WordPress"],"Code is Poetry":["Kodi \xebsht\xeb Poezi"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Mund t\xeb krijoni \xe7far\xebdo blloku q\xeb doni, statik ose dinamik, zbukurues ose t\xeb thjesht\xeb. Ja nj\xeb bllok p\xebr citime:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["M\xeb sip\xebr keni nj\xeb galeri me vet\xebm dy figura. B\xebhet fjal\xeb p\xebr nj\xeb rrug\xeb m\xeb t\xeb leht\xeb p\xebr krijim skemash t\xebrheq\xebse nga ana pamore, pa u dashur t\xeb merreni me element\xeb pezull. Galerin\xeb mund ta riktheni leht\xebsisht te figura individuale, duke p\xebrdorur k\xebmbyesin e bllokut."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sigurisht, figura n\xeb madh\xebsi t\xeb plot\xeb mund t\xeb jet\xeb goxha e madhe. Por ngandonj\xebher\xeb figura e ka hak k\xebt\xeb."],"Accessibility is important — don’t forget image alt attribute":["P\xebrdorshm\xebria nga kushdo \xebsht\xeb e r\xebnd\xebsishme — mos harroni t\xeb shtoni atribut alt p\xebr figurat"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["N\xebse nd\xebrthurni drejtimet e reja i gjer\xeb dhe gjer\xebsi e plot\xeb me galeri, mund t\xeb krijoni nj\xeb skem\xeb shum\xeb t\xeb larmishme p\xebr media, dhe shum\xeb shpejt:"],"Media Rich":["I pasur Me Media"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Sasin\xeb e shtyllave n\xeb galerin\xeb tuaj mund t\xeb ndryshoni duke t\xebrhequr nj\xeb rr\xebshqit\xebs te mbik\xebqyr\xebsi i bllokut, te an\xebshtylla."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blloqet mund t\xeb jen\xeb \xe7\u2019t\xeb keni nevoj\xeb. P\xebr shembull, mund t\xeb doni t\xeb shtoni nj\xeb citim si pjes\xeb e hartimit t\xeb tekstit tuaj, ose mund t\xeb doni t\xeb shfaqni nj\xeb t\xeb till\xeb gjigant dhe t\xeb stilizuar. Krejt k\xebto mund\xebsi i gjeni te fut\xebsi."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["T\xeb dh\xebnat q\xeb i p\xebrgjigjen burimit t\xeb citimit jan\xeb nj\xeb fush\xeb teksti m\xeb vete, si titujt n\xebn figura, k\xebshtu q\xeb struktura e citimit \xebsht\xeb e mbrojtur edhe kur p\xebrzgjidhni, modifikoni ose e hiqni fare burimin. \xcbsht\xeb p\xebrher\xeb e leht\xeb ta shtoni m\xeb von\xeb."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["P\xebrpunuesi do t\xeb p\xebrpiqet t\xeb krijoj\xeb nj\xeb metod\xeb t\xeb re nd\xebrtimi faqesh dhe postimesh, e cila e b\xebn t\xeb pamundimsh\xebm shkrimin e postimeve t\xeb pasur, dhe p\xebrmban \u201cblloqe\u201d p\xebr ta b\xebr\xeb t\xeb kollajt\xeb at\xeb p\xebr t\xeb cil\xebn sot duhen kode t\xeb shkurt\xebr, HTML vetjake, apo nuhatje rreth p\xebrmbajtjes s\xeb trup\xebzimeve t\xeb mistershme."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Nj\xeb p\xebrfitim shum\xeb i madh nga blloqet \xebsht\xeb se mund t\u2019i p\xebrpunoni ata n\xeb vend dhe t\xeb manipuloni l\xebnd\xebn e tyre drejtp\xebrs\xebdrejti. N\xeb vend t\xeb fushave p\xebr p\xebrpunim gj\xebrash t\xeb tilla si burimi i nj\xeb citimi, apo teksti i nj\xeb butoni, mund t\xeb ndryshoni l\xebnd\xebn drejtp\xebrdrejt. Provoni t\xeb p\xebrpunoni citimin vijues:"],"Visual Editing":["P\xebrpunim Pamor"],"And Lists like this one of course :)":["Dhe Lista si kjo, sigurisht :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blloqe skeme, f.v. Butona, Figura Hero, Ndar\xebs, etj."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Trup\xebzime, b.f., nga YouTube, Tweets, apo postime t\xeb tjera WordPress."],Galleries:["Galeri"],"Images & Videos":["Figura & Video"],"Text & Headings":["Tekst & Krye"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Provojeni, mund t\xeb zbuloni gj\xebra q\xeb s\u2019e dinit se WordPress-i mund t\u2019i shtoj\xeb tashm\xeb te postimet tuaja. Ja nj\xeb list\xeb e shkurt\xebr se \xe7\u2019mund t\xeb gjeni:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["P\xebrfytyroni gjith\xe7ka q\xeb mund t\xeb b\xebj\xeb WordPress-i ta keni n\xeb dor\xeb shpejt dhe n\xeb t\xeb nj\xebjtin vend te nd\xebrfaqja. Pa u dashur t\xeb merrni vesh etiketa HTML, klasa, apo t\xeb mbani mend sintaks\xeb t\xeb nd\xebrlikuar kodesh t\xeb shkurt\xebr. Kjo \xebsht\xeb ideja pas fut\xebsit\u2014butoni (+) q\xeb do t\xeb shihni n\xebp\xebr p\xebrpunues\u2014i cili ju lejon t\xeb shfletoni krejt blloqet e gatsh\xebm t\xeb l\xebnd\xebs dhe t\u2019i shtoni ata te postimi juaj. Shtojcat dhe temat jan\xeb n\xeb gjendje t\xeb regjistrojn\xeb blloqe t\xeb tyret, duke hapur rrug\xebn p\xebr gjith\xeb llojet e mund\xebsive p\xebr p\xebrpunim dhe botim t\xeb pasur."],"The Inserter Tool":["Mjeti i Futjeve"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Provoni t\xeb p\xebrzgjidhni ose p\xebrpunoni p\xebrshkrimin, tani nuk ju duhet t\xeb m\xeb t\xeb jeni i kujdessh\xebm se mos p\xebrzgjidhni gabimisht figur\xebn apo tjet\xebr tekst dhe t\xeb rr\xebnoni paraqitjen."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["N\xebse mbulohet nga tema juaj, do t\xeb shihni butonin \"e gjer\xeb\" te paneli i figurave. Provojeni."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Trajtimi me kujdesin m\xeb t\xeb madh t\xeb figurave dhe objekteve media \xebsht\xeb objektivi i par\xeb i p\xebrpunuesit t\xeb ri. Shpresojm\xeb se shtimi i legjendave apo kalimi n\xeb gjer\xebsi t\xeb plot\xeb i figurave tuaja do t\u2019ju duken shum\xeb t\xeb lehta dhe t\xeb fuqishme se m\xeb par\xeb."],"A Picture is Worth a Thousand Words":["Nj\xeb Pamje vlen Sa Nj\xeb Mij\xeb Fjal\xeb"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Tituj jan\xeb gjithashtu blloqe m\xeb vete, gj\xeb q\xeb ndihmon n\xeb p\xebrvijimin dhe sistemimin e l\xebnd\xebs tuaj."],"... like this one, which is right aligned.":["\u2026 si kjo, q\xeb \xebsht\xeb e vendosur majtas."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Ajo q\xeb po lexoni tani \xebsht\xeb nj\xeb bllok teksti, blloku m\xeb i themelor nga t\xeb t\xebr\xeb. Blloku i tekstit ka kontrollet e veta p\xebr t\u2019u l\xebvizur lirisht n\xebp\xebr postim\u2026"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Synimi i p\xebrpunuesit t\xeb ri \xebsht\xeb ta b\xebj\xeb t\xeb thjesht\xeb dhe t\xeb p\xeblqyesh\xebm shtimin e l\xebnd\xebs s\xeb pasur te WordPress. Ky postim p\xebrb\xebhet i t\xebri nga pjes\xeb l\xebnde\u2014di\xe7ka e ngjashme me blloqet LEGO\u2014q\xeb mund t\u2019i l\xebvizni dhe nd\xebrveproni me to. L\xebvizeni kursorin tuaj p\xebrqark dhe do t\xeb vini re q\xeb blloqe t\xeb ndrysh\xebm sikur p\xebrmenden, me p\xebrvijime dhe shigjeta. Shtypni shigjetat q\xeb t\u2019i ripozicioni blloqet shpejt e shpejt, pa frik\xeb se mos humb\xeb gj\xeb gjat\xeb procesit t\xeb kopjimit dhe ngjitjes."],"Of Mountains & Printing Presses":["Mbi Malet & Shtypshkronjat"],"Welcome to the Gutenberg Editor":["Mir\xeb e vini te P\xebrpunuesi Gutenberg"],"block name\x04More":["M\xeb tep\xebr"],"button to expand options\x04More":["M\xeb tep\xebr"],"Are you sure you want to unschedule this post?":["Jeni i sigurt se doni t\u2019i hiqet planifikimi p\xebr botim k\xebtij postimi?"],"Alt Text (Alternative Text)":["Tekst Alt (Text Alternativ)"],"Reusable Block":["Bllok i Rip\xebrdorsh\xebm"],"Unique identifier for the object.":["Identifikues unik p\xebr objektin."],"Untitled Reusable Block":["Bllok i Rip\xebrdorsh\xebm Pa Titull"],Small:["I vog\xebl"],"(%s: %s)":["(%s: %s)"],Reusable:["I rip\xebrdorsh\xebm"],"(current %s: %s)":["(%s i tanish\xebm: %s)"],"Remove from Reusable Blocks":["Hiqe prej Blloqesh t\xeb Rip\xebrdorsh\xebm"],"Add to Reusable Blocks":["Shtoje te Blloqe t\xeb Rip\xebrdorsh\xebm"],"Keep as HTML":["Mbaje si HTML"],"Edit URL":["P\xebrpunojeni URL-n\xeb"],"Color Settings":["Rregullime Ngjyrash"],"The response is not a valid JSON response.":["P\xebrgjigja s\u2019\xebsht\xeb p\xebrgjigje JSON e vlefshme."],"Editor publish":["Publikime nga Redaktori"],Muted:["Pa z\xeb"],"Video Settings":["Rregullime p\xebr Videon"],"recent comments":["komente s\xeb fundi"],"Latest Comments":["Komentet M\xeb t\xeb Reja"],"Display Excerpt":["Shfaq Cop\xebz\xebn"],"Display Date":["Shfaq Dat\xebn"],"Display Avatar":["Shfaq Avatarin"],"Latest Comments Settings":["Rregullime p\xebr Komentet M\xeb t\xeb Reja"],"Number of Comments":["Num\xebr Komentesh"],"Background Opacity":["Patejdukshm\xebri Sfondi"],Auto:["Auto"],Preload:["Parangarkim"],"Audio Settings":["Parametra Audio"],"Display a monthly archive of your posts.":["Shfaqni nj\xeb arkiv mujor t\xeb postimeve tuaja."],"Display as Dropdown":["Shfaqe si Hapmbyll"],"Show Post Counts":["Shfaq Num\xebr Postimesh"],"Archives Settings":["Rregullime Arkivash"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Asistenc\xeb"],"No comments to show.":["S\u2019ka komente p\xebr shfaqje."],"%1$s on %2$s":["%1$s n\xeb %2$s"],"Select Post":["P\xebrzgjidhni Postim"],"Select Week":["P\xebrzgjidhni Jav\xeb"],"Select Day":["P\xebrzgjidhni Dit\xeb"],"Select Month":["P\xebrzgjidhni Muaj"],"Select Year":["P\xebrzgjidhni Vit"],Archives:["Arkiva"],"Very dark gray":["Gri shum\xeb e err\xebt"],"Cyan bluish gray":["Gri e kalt\xebr e gjelb\xebr n\xeb blu"],"Very light gray":["Gri shum\xeb e \xe7el\xebt"],"Vivid cyan blue":["Blu e kalt\xebr e gjelb\xebr e ndezur"],"Pale cyan blue":["Blu e kalt\xebr e gjelb\xebr e zbeht\xeb"],"Vivid green cyan":["Blu e kalt\xebr e gjelb\xebr e ndezur"],"Light green cyan":["E kalt\xebr e gjelb\xebr e zbeht\xeb"],"Luminous vivid amber":["E qelibart\xeb"],"Luminous vivid orange":["Portokalli e ndritshme e ndezur"],"Vivid red":["E kuqe e ndezur"],"Pale pink":["Vjollc\xeb e zbeht\xeb"],"Inline image":["Figur\xeb brendazi"],"Available block types":["Lloje blloqesh t\xeb gatsh\xebm"],"Transform To:":["Shnd\xebrroje N\xeb:"],"Remove Block":["Hiqe Bllokun","Hiq Blloqe"],"Open publish panel":["Hap panel publikimesh"],Dots:["Pika"],"Wide Line":["Vij\xeb e Gjer\xeb"],Large:["E madhe"],"Show download button":["Shfaq buton shkarkimesh"],"Download button settings":["Rregullime butoni shkarkimesh"],"Link To":["Lidhje Te"],"Text link settings":["Rregullime lidhjesh tekst"],pdf:["pdf"],document:["dokument"],"Copy URL":["Kopjoji URL-n\xeb"],"Write file name\u2026":["Shkruani em\xebr kartele\u2026"],"Edit file":["P\xebrpunoni kartel\xebn"],File:["Kartel\xeb"],"A single column within a columns block.":["Nj\xeb shtyll\xeb nj\xebshe brenda blloku shtyllash."],Column:["Shtyll\xeb"],Outline:["Ravij\xebzim"],Loop:["Loop"],Autoplay:["Vet\xebluaje"],"Playback Controls":["Kontrolle Luajtjeje"],"Close dialog":["Mbylleni dialogun"],"Sorry, this file type is not permitted for security reasons.":["Na ndjeni, p\xebr arsye sigurie ky lloj kartele nuk lejohet."],"Disable tips":["\xc7aktivizoni ndihm\xebza"],"Got it":["E kuptova"],"See next tip":["Shihni ndihm\xebz\xebn pasuese"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Kur t\xeb jeni gati, parashtrojeni pun\xebn tuaj p\xebr shqyrtim, dhe nj\xeb Redaktor do t\xeb jet\xeb n\xeb gjendje ta miratoj\xeb p\xebr ju."],"Are you ready to submit for review?":["Jeni gati ta parashtroni p\xebr shqyrtim?"],"Replace image":["Z\xebvend\xebso figur\xebn"],"Remove image":["Hiqe figur\xebn"],"Error while uploading file %s to the media library.":["Gabim teksa ngarkohej kartela %s te mediateka."],"This file exceeds the maximum upload size for this site.":["Kartela e tejkalon madh\xebsin\xeb maksimum t\xeb ngarkimit p\xebr k\xebt\xeb sajt."],"View the autosave":["Shiheni vet\xebruajtjen"],"There is an autosave of this post that is more recent than the version below.":["Ka nj\xeb vet\xebruajtje p\xebr k\xebt\xeb postim, e cila \xebsht\xeb m\xeb e fresk\xebt se sa versioni m\xeb posht\xeb."],Autosaving:["Po vet\xebruhet"],"Enter URL here\u2026":["Jepeni k\xebtu URL-n\xeb\u2026"],"Pin to toolbar":["Fiksoje n\xeb panel"],"Unpin from toolbar":["Shfiksoje nga paneli"],"Insert a table \u2014 perfect for sharing charts and data.":["Futni nj\xeb tabel\xeb \u2014 e p\xebrsosur p\xebr t\xeb ndar\xeb me t\xeb tjer\xebt grafik\xeb dhe t\xeb dh\xebna."],"Fixed width table cells":["Kutiza tabele me gjer\xebsi t\xeb fiksuar"],"Table Settings":["Rregullime Tabelash"],"Add text that respects your spacing and tabs, and also allows styling.":["Shtoni tekst q\xeb respekton hap\xebsirat dhe tabulacionet tuaja, lejon gjithashtu stilizim."],"Display a list of your most recent posts.":["Shfaqni nj\xeb list\xeb t\xeb postimeve tuaja m\xeb t\xeb reja."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Shtoni nj\xeb bllok q\xeb shfaq l\xebnd\xeb t\xeb marr\xeb nga sajte t\xeb tjer\xeb, b.f. Twitter, Instagram ose YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Shtoni nj\xeb bllok q\xeb e shfaq l\xebnd\xebn n\xeb shum\xeb shtylla, mandej shtoni \xe7far\xebdo blloqesh l\xebnde q\xeb doni."],"Error loading block: %s":["Gabim n\xeb ngarkimin e bllokut: %s"],"Unknown error":["Gabim i panjohur"],"Embed Handler":["Trajtues Trup\xebzimesh"],"term\x04Remove %s":["Hiqe %s"],"Copy the permalink":["Kopjoje permalidhjen"],"Permalink copied":["Permalidhja u kopjua"],"Height in pixels":["Lart\xebsi n\xeb piksel"],"Spacer Settings":["Rregullime Ndar\xebsi"],Spacer:["Ndar\xebs"],"Toggle to show a large initial letter.":["Klikojeni q\xeb t\xeb shfaqet nj\xeb shkronj\xeb fillestare e madhe."],"Showing large initial letter.":["Shfaqje shkronje fillestare t\xeb madhe."],"Name:":["Em\xebr:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s nga %3$s)"],"Remove item":["Hiqe elementin"],"Color code: %s":["Kod ngjyre: %s"],"Skip to the selected block":["Kalo te blloku i p\xebrzgjedhur"],"Publish\u2026":["Botoni\u2026"],"Schedule\u2026":["Planifikoni\u2026"],"Edit post permalink":["P\xebrpunoni permalidhjen e postimit"],"Show Block Settings":["Shfaqi Rregullimet e Bllokut"],"Hide Block Settings":["Fshihi Rregullimet e Bllokut"],"Block settings closed":["Rregullimet e bllokut u mbyll\xebn"],"Close plugin":["Mbylle shtojc\xebn"],"Link settings":["Rregullime lidhjesh"],Unlink:["Hiqjani lidhjen"],"Page break":["Nd\xebrprerje faqeje"],pagination:["faqosje"],"next page":["faqja pasuese"],"Image Size":["Madh\xebsi Figure"],Height:["Lart\xebsi"],Width:["Gjer\xebsi"],"Image Dimensions":["P\xebrmasa Figure"],"Thumbnails are not cropped.":["Miniaturat s\u2019jan\xeb qethur."],"Thumbnails are cropped to align.":["Miniaturat jan\xeb qethur p\xebr drejtim."],"Media Library":["Mediatek\xeb"],Advanced:["T\xeb m\xebtejshme"],"Add item":["Shtoni element"],"Reset the template":["Riktheje gjedhen n\xeb fillimet"],"Keep it as is":["Mbaje si\xe7 \xebsht\xeb"],"The content of your post doesn\u2019t match the template assigned to your post type.":["L\xebnda e postimit tuaj s\u2019p\xebrkon me gjedhen caktuar llojit tuaj t\xeb postimit."],"Resetting the template may result in loss of content, do you want to continue?":["Rikthimi i gjedhes n\xeb fillimet mund t\xeb sjell\xeb humbje t\xeb l\xebnd\xebs, doni t\xeb vazhdohet?"],"Document Statistics":["Statistika Dokumenti"],"is now scheduled. It will go live on":["tani \xebsht\xeb v\xebn\xeb n\xeb plan. Do t\xeb b\xebhet publik m\xeb"],Scheduled:["I planifikuar"],"Scheduling\u2026":["Po vihet n\xeb plan\u2026"],"Code editor selected":["U p\xebrzgjodh p\xebrpunuesi i kodit"],"Visual editor selected":["U p\xebrzgjodh p\xebrpunuesi pamor"],Plugins:["Shtojca"],"Custom Size":["Madh\xebsi Vetjake"],"Layout Elements":["Element\xeb Skicimi"],"term\x04%s removed":["%s u hoq"],"term\x04%s added":["%s u shtua"],"imperative verb\x04Preview":["B\xebjini Paraparje"],"Block deleted.":["Blloku u fshi."],"Block updated.":["Blloku u p\xebrdit\xebsua."],"Block created.":["Blloku u krijua."],"Trashing failed":["Shp\xebnia n\xeb hedhurina d\xebshtoi"],"Updating failed.":["P\xebrdit\xebsimi d\xebshtoi."],"Scheduling failed.":["V\xebnia n\xeb plan d\xebshtoi."],"Publishing failed.":["Botimi d\xebshtoi."],"View Post":["Shihni Postimin"],"You have unsaved changes. If you proceed, they will be lost.":["Ka ndryshime t\xeb paruajtura. N\xebse vazhdoni, ato do t\xeb humbin."],"Document Outline":["P\xebrvijim Dokumenti"],Paragraphs:["Paragraf\xeb"],Headings:["Krye"],Words:["Fjal\xeb"],"Content structure":["Struktur\xeb l\xebnde"],Public:["Publik"],"Protected with a password you choose. Only those with the password can view this post.":["Mbrojtur me nj\xeb fjal\xebkalim q\xeb zgjidhni. Vet\xebm ata me k\xebt\xeb fjal\xebkalim mund ta shohin k\xebt\xeb postim."],"Password Protected":["Mbrojtur me Fjal\xebkalim"],"Only visible to site admins and editors.":["I duksh\xebm vet\xebm p\xebr p\xebrgjegj\xebs sajti dhe redaktor\xeb."],Private:["Privat"],"Visible to everyone.":["I duksh\xebm p\xebr k\xebdo."],"Post Visibility":["Dukshm\xebri Postimi"],"Would you like to privately publish this post now?":["Do t\xeb donit ta botonit privatisht k\xebt\xeb postim tani?"],"Use a secure password":["P\xebrdorni nj\xeb fjal\xebkalim t\xeb sigurt"],"Create password":["Krijoni fjal\xebkalim"],"Move to Trash":["Shpjere te Hedhurinat"],"Parent Term":["Term M\xebm\xeb"],"Parent Category":["Kategori M\xebm\xeb"],"Add new term":["Shtoni term t\xeb ri"],"Add new category":["Shtoni kategori t\xeb re"],Term:["Term"],Tag:["Etiket\xeb"],"Add New Term":["Shtoni Term t\xeb Ri"],"Add New Tag":["Shtoni Etiket\xeb t\xeb Re"],"Switch to Draft":["Kalo te Skica"],"Are you sure you want to unpublish this post?":["Jeni i sigurt se doni t\xeb shbotohet ky postim?"],Immediately:["Menj\xebher\xeb"],"Save Draft":["Ruaje Skic\xebn"],Saving:["Po ruhet"],"Publish:":["Publikoje:"],"Visibility:":["Dukshm\xebri:"],"Are you ready to publish?":["Jeni gati p\xebr botim?"],"Copy Link":["Kopjoji Lidhjen"],"What\u2019s next?":["\xc7\u2019vjen m\xeb pas?"],"is now live.":["tani \xebsht\xeb publik."],Published:["U botua"],Schedule:["V\xebreni n\xeb plan"],Update:["P\xebrdit\xebsoje"],"Submit for Review":["Parashtrojeni p\xebr Shqyrtim"],"Updating\u2026":["Po p\xebrdit\xebsohet\u2026"],"Publishing\u2026":["Po botohet\u2026"],"Allow Pingbacks & Trackbacks":["Lejo Pingback-e & Pasgjurmime"],"Permalink:":["Permalidhje:"],"Pending Review":["N\xeb Pritje t\xeb Shqyrtimit"],"%d Revision":["%d Rishikim","%d Rishikime"],"Suggestion:":["Sugjerim:"],"Post Format":["Format Postimesh"],Chat:["Fjalosje"],Status:["Gjendje"],Standard:["Standard"],Aside:["An\xebsore"],"Set Featured Image":["V\xebre Si Figur\xeb t\xeb Zgjedhur"],"Learn more about manual excerpts":["M\xebsoni m\xeb tep\xebr rreth cop\xebzash t\xeb krijuara dorazi"],"Write an excerpt (optional)":["Shkruani nj\xeb cop\xebz (opsionale)"],"Allow Comments":["Lejo Komente"],"Template:":["Gjedhe:"],"no parent":["pa m\xebm\xeb"],"no title":["pa titull"],Order:["Renditje"],"No blocks found.":["S\u2019u gjet\xebn blloqe."],"%d result found.":["U gjet %d p\xebrfundim.","U gjet\xebn %d p\xebrfundime."],Saved:["U ruajt"],Embeds:["Trup\xebzime"],Blocks:["Blloqe"],"Search for a block":["K\xebrkoni p\xebr nj\xeb bllok"],"Add block":["Shtoni bllok"],"Add %s":["Shto %s"],"Copy Error":["Gabim Kopjimi"],"Copy Post Text":["Kopjo Tekst Postimi"],"Attempt Recovery":["Provo Rimarrjen"],"The editor has encountered an unexpected error.":["P\xebrpunuesi hasi nj\xeb gabim t\xeb papritur."],Undo:["Zhb\xebje"],Redo:["Rib\xebje"],"(Multiple H1 headings are not recommended)":["(Nuk k\xebshillohen krye H1 t\xeb shum\xebfishta)"],"(Your theme may already use a H1 for the post title)":["(Tema juaj mund t\xeb p\xebrdor\xeb tashm\xeb nj\xeb H1 p\xebr titullin e postimit)"],"(Incorrect heading level)":["(Shkall\xeb e pasakt\xeb kryesh)"],"(Empty heading)":["(Krye e zbraz\xebt)"],"Block Styles":["Stile Blloku"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Jeni i sigurt se doni t\xeb fshihet ky Bllok i Rip\xebrdorsh\xebm?\n\nDo t\xeb hiqet p\xebrgjithmon\xeb prej krejt postimeve dhe faqeve q\xeb e p\xebrdorin."],"Convert to Regular Block":["Shnd\xebrroje N\xeb Bllok t\xeb Rregullt"],"More options":["M\xeb tep\xebr mund\xebsi"],"Edit visually":["P\xebrpunoje n\xeb rrug\xeb pamore"],Duplicate:["P\xebrdyt\xebsoje"],"Blocks cannot be moved down as they are already at the bottom":["Blloqet s\u2019mund t\xeb ulen posht\xeb, ngaq\xeb gjenden tashm\xeb n\xeb fund"],"Blocks cannot be moved up as they are already at the top":["Blloqet s\u2019mund t\xeb ngjiten sip\xebr, ngaq\xeb gjenden tashm\xeb n\xeb krye"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Blloku %1$s gjendet n\xeb fillim t\xeb l\xebnd\xebs dhe s\u2019mund t\xeb ngjitet %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Blloku %1$s gjendet n\xeb fund t\xeb l\xebnd\xebs dhe s\u2019mund t\xeb l\xebvizet %2$s"],"Block %s is the only block, and cannot be moved":["Blloku %s \xebsht\xeb i vetmi bllok, ndaj s\u2019mund t\xeb l\xebvizet"],"Edit as HTML":["P\xebrpunojeni si HTML"],"Convert to Blocks":["Shnd\xebrroje n\xeb Blloqe"],"Block: %s":["Blloku: %s"],"This block has encountered an error and cannot be previewed.":["P\xebr k\xebt\xeb bllok u has nj\xeb gabim dhe s\u2019mund t\u2019i b\xebhet paraparje."],"No block selected.":["S\u2019u p\xebrzgjodh bllok."],"Transform into:":["Shnd\xebrroje n\xeb:"],Remove:["Hiqe"],"Find original":["Gjej origjinalin"],"Copy All Content":["Kopjo Krejt L\xebnd\xebn"],"Copied!":["U kopjua!"],"Additional settings are now available in the Editor block settings sidebar":["Te an\xebshtylla e rregullimeve t\xeb blloqeve, te P\xebrpunuesi, tani ka rregullime shtes\xeb"],Visibility:["Dukshm\xebri"],"Status & Visibility":["Gjendje & Dukshm\xebri"],"Page Attributes":["Atribute Faqeje"],Block:["Bllok"],Document:["Dokument"],"Featured Image":["Figur\xeb e Zgjedhur"],"Close settings":["Mbylli rregullimet"],"Editor content":["L\xebnd\xeb p\xebrpunuesi"],Tools:["Mjete"],Editor:["P\xebrpunues"],"Code Editor":["P\xebrpunues Kodi"],"Visual Editor":["P\xebrpunues Pamor"],"Editor top bar":["Shtyll\xeb e sip\xebrme p\xebrpunuesi"],Settings:["Rregullime"],Reset:["Ricaktoje"],"Dismiss this notice":["Shp\xebrfille k\xebt\xeb sh\xebnim"],"Item removed.":["Objekti u hoq."],"Item added.":["Objekti u shtua."],"Drop files to upload":["Hidhni k\xebtu kartela p\xebr ngarkim"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["Ndodhi nj\xeb gabim i panjohur."],"No results.":["S\u2019ka p\xebrfundime."],"%d result found, use up and down arrow keys to navigate.":["U gjet %d p\xebrfundim, p\xebr l\xebvizje p\xebrdorni tastet shigjet\xeb sip\xebr dhe posht\xeb.","U gjet\xebn %d p\xebrfundime, p\xebr l\xebvizje p\xebrdorni tastet Shigjet\xeb sip\xebr dhe posht\xeb."],"(no title)":["(pa titull)"],URL:["URL"],Submit:["Parashtroje"],Close:["Mbylle"],"Insert link":["Futni lidhje"],"Edit link":["P\xebrpunoni lidhje"],Link:["Lidhje"],Strikethrough:["Hequrvije"],Italic:["T\xeb pjerr\xebta"],Bold:["T\xeb trasha"],"Remove link":["Hiqe lidhjen"],"Number of items":["Num\xebr artikujsh"],All:["Krejt"],Category:["Kategori"],"Z \u2192 A":["Z-A"],"A \u2192 Z":["Z-A"],"Oldest to Newest":["Nga M\xeb i Vjetri te M\xeb i Riu"],"Newest to Oldest":["Nga M\xeb i Riu te M\xeb i Vjetri"],"Order by":["Renditi sipas"],Select:["P\xebrzgjidhni"],"Select or Upload Media":["P\xebrzgjidhni ose Ngarkoni Media"],Video:["Video"],"Edit video":["P\xebrpunoni videon"],"Write\u2026":["Shkruani\u2026"],poetry:["poezi"],Verse:["Varg"],"New Column":["Shtyll\xeb e Re"],"Delete Column":["Fshije Shtyll\xebn"],"Add Column After":["Shto Shtyll\xeb Pas"],"Add Column Before":["Shto Shtyll\xeb Para"],"Delete Row":["Fshije Rreshtin"],"Add Row After":["Shtoni Rresht Pas"],"Add Row Before":["Shto Rresht Para"],"Edit table":["P\xebrpunoni tabel\xeb"],Table:["Tabel\xeb"],"Write subheading\u2026":["Shkruani n\xebnkrye\u2026"],"Write shortcode here\u2026":["Shkruani k\xebtu kod t\xeb shkurt\xeb\u2026"],Shortcode:["Kod i shkurt\xebr"],divider:["ndar\xebs"],"horizontal-line":["vij\xeb horizontale"],Separator:["Ndar\xebs"],Quote:["Citim"],"Write citation\u2026":["Shkruani p\xebrmendje\u2026"],"Write quote\u2026":["Shkruani citim\u2026"],Pullquote:["Citim"],"Write preformatted text\u2026":["Shkruani tekst t\xeb paraformatuar\u2026"],Preformatted:["E paraformatuar"],text:["tekst"],Paragraph:["Paragraf"],"Font Size":["Madh\xebsi Shkronjash"],"Drop Cap":["Kryeshkronj\xeb"],"Text Settings":["Rregullime Teksti"],"Read more":["Lexoni m\xeb tep\xebr"],"Write list\u2026":["Shkruani list\xeb\u2026"],"numbered list":["list\xeb e num\xebrtuar"],"ordered list":["list\xeb e renditur"],"bullet list":["list\xeb me toptha"],"Indent list item":["Zhvendose elementin e list\xebs p\xebr brenda"],"Outdent list item":["Zhvendose elementin e list\xebs p\xebr jasht\xeb"],"Convert to ordered list":["Shnd\xebrroje n\xeb list\xeb t\xeb renditur"],"Convert to unordered list":["Shnd\xebrroje n\xeb list\xeb t\xeb parenditur"],List:["List\xeb"],"recent posts":["postime s\xeb fundi"],"No posts found.":["S\u2019u gjet\xebn postime."],"Latest Posts":["Postimet M\xeb t\xeb Reja"],"Display post date":["Shfaq dat\xeb postimesh"],"Grid view":["Pamje mozaik"],"List view":["Pamje list\xeb"],photo:["foto"],"Image Settings":["Rregullime Figurash"],Image:["Figur\xeb"],Preview:["Paraparje"],embed:["trup\xebzim"],"Custom HTML":["HTML Vetjake"],subtitle:["n\xebntitull"],title:["titull"],Heading:["Krye"],"Write heading\u2026":["Shkruani titull\u2026"],"Heading %d":["Krye %d"],Level:["Nivel"],"Heading Settings":["Rregullime Kryesh"],photos:["foto"],images:["figura"],"Remove Image":["Hiqe Figur\xebn"],None:["Asnj\xeb"],"Media File":["Kartel\xeb Media"],"Attachment Page":["Faqe Bashk\xebngjitjesh"],"Crop Images":["Qethi Figurat"],"Gallery Settings":["Rregullime Galerie"],Gallery:["Galeri"],Classic:["Klasike"],video:["video"],audio:["audio"],music:["muzik\xeb"],image:["figur\xeb"],blog:["blog"],post:["postim"],"Embedded content from %s":["L\xebnd\xeb e trup\xebzuar nga %s"],"Enter URL to embed here\u2026":["Jepni k\xebtu URL-n\xeb p\xebr trup\xebzim\u2026"],"%s URL":["URL %s"],"Embedding\u2026":["Po trup\xebzohet\u2026"],"Write title\u2026":["Shkruani nj\xeb titull\u2026"],"Fixed Background":["Sfond i Pal\xebvizsh\xebm"],"Edit image":["P\xebrpunoni figur\xebn"],Columns:["Shtylla"],Experiments:["Eksperimente"],Code:["Kod"],"Write code\u2026":["Shkruani kod\u2026"],Categories:["Kategori"],"Show Hierarchy":["Shfaq Hierarkin\xeb"],"Show post counts":["Shfaq numrin e postimeve"],"Categories Settings":["Rregullime Kategorish"],"Add text\u2026":["Shtoni tekst\u2026"],Button:["Buton"],Apply:["Zbatoje"],"Text Color":["Ngjyr\xeb Teksti"],"Background Color":["Ngjyr\xeb Sfondi"],"Block has been deleted or is unavailable.":["Blloku \xebsht\xeb fshir\xeb ose s\u2019mund t\xeb kihet."],"Reusable Blocks":["Blloqe t\xeb Rip\xebrdorsh\xebm"],Cancel:["Fshije"],Edit:["P\xebrpunoni"],"Edit audio":["P\xebrpunoni audio"],"Write caption\u2026":["Shkruani titullin\u2026"],"Use URL":["P\xebrdore URL-n\xeb"],Audio:["Audio"],Upload:["Ngarko"],"Additional CSS Class(es)":["Klas\xeb(a) CSS Shtes\xeb"],"HTML Anchor":["Spiranca HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Kjo nd\xebrthurje ngjyrash mund t\xeb v\xebshtir\xebsoj\xeb leximin nga njer\xebzit. Provoni t\xeb p\xebrdorni nj\xeb ngjyr\xeb sfondi m\xeb t\xeb ndritshme dhe/ose nj\xeb ngjyr\xeb t\xeb err\xebt teksti."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Kjo nd\xebrthurje ngjyrash mund t\xeb v\xebshtir\xebsoj\xeb leximin nga njer\xebzit. Provoni t\xeb p\xebrdorni nj\xeb ngjyr\xeb sfondi m\xeb t\xeb err\xebt dhe/ose nj\xeb ngjyr\xeb t\xeb ndritshme teksti."],Clear:["Fshije"],"Custom color picker":["Zgjedh\xebs ngjyrash vetjake"],"Color: %s":["Ngjyr\xeb: %s"],"Full Width":["Gjer\xebsi e Plot\xeb"],"Wide Width":["Gjer\xebsi e Madhe"],Widgets:["Widget-e"],Formatting:["Formatim"],"Common Blocks":["Blloqe t\xeb R\xebndomt\xeb"],"Align Right":["Vendose Djathtas"],"Align Center":["Vendose N\xeb Qend\xebr"],"Align Left":["Vendose Majtas"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Shtypim q\xeb nga 1440-a. Kjo \xebsht\xeb shtojca e zhvillimit p\xebr p\xebrpunuesin e ri t\xeb blloqeve p\xebr pjes\xebn baz\xeb."],"Add title":["Shtoni titull"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Q\xeb t\xeb montohet, m\xebnyra zhvillim p\xebr Gutenberg-un lyp kartela. Xhironi npm install q\xeb t\xeb instaloni var\xebsit\xeb, npm run build q\xeb t\xeb montohen kartelat, ose npm run dev q\xeb t\xeb montohen kartelat dhe t\xeb shihet p\xebr ndryshime. P\xebr m\xeb tep\xebr t\xeb dh\xebna, lexoni te kartela the dh\xebnie ndihmese."],Author:["Autor"],Slug:["Identifikues"],Discussion:["Diskutim"],"Custom Fields":["Fusha Vetjake"],Excerpt:["Cop\xebza"],Publish:["Botoje"],Metadata:["Tejt\xebdh\xebna"],Save:["Ruaje"],Documentation:["Dokumentim"],"Select Category":["P\xebrzgjidhni Kategori"],"(Untitled)":["(I patitull)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Q\xeb t\xeb funksionoj\xeb si duhet, Gutenbergu lyp WordPress %s ose t\xeb m\xebvonsh\xebm. Ju lutemi, p\xebrmir\xebsoni WordPress-in, p\xebrpara se t\xeb aktivizoni Gutenberg-un."],"Gutenberg Team":["Ekipi Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s m\xeb par\xeb"],"Block style name must be a string.":["Emri p\xebr stil blloku duhet t\xeb jet\xeb nj\xeb varg."]}},863,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":["\u0414\u043e\u0434\u0430\u0458 \u0431\u043b\u043e\u043a"],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438\u0442\u0435 \u0437\u0430\u0441\u0442\u0430\u0440\u0435\u043b\u0438 \u0432\u0438\u045f\u0435\u0442."],"Legacy Widget (Experimental)":["\u0417\u0430\u0441\u0442\u0430\u0440\u0435\u043b\u0438 \u0432\u0438\u045f\u0435\u0442 (\u0435\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u043do)"],"Change widget":["\u041f\u0440\u043e\u043c\u0435\u043d\u0438 \u0432\u0438\u045f\u0435\u0442"],"Legacy Widget":["\u0417\u0430\u0441\u0442\u0430\u0440\u0435\u043b\u0438 \u0432\u0438\u045f\u0435\u0442"],"You don't have permissions to use widgets on this site.":["\u041d\u0435\u043c\u0430\u0442\u0435 \u0434\u043e\u0437\u0432\u043e\u043b\u0435 \u0437\u0430 \u043a\u043e\u0440\u0438\u0448\u045b\u0435\u045a\u0435 \u0432\u0438\u045f\u0435\u0442\u0430 \u043d\u0430 \u043e\u0432\u043e\u043c \u0432\u0435\u0431 \u043c\u0435\u0441\u0442\u0443."],"Select a legacy widget to display:":["\u041e\u0434\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0437\u0430\u0441\u0442\u0430\u0440\u0435\u043b\u0438 \u0432\u0438\u045f\u0435\u0442 \u0437\u0430 \u043f\u0440\u0438\u043a\u0430\u0437:"],"There are no widgets available.":["\u041d\u0435\u043c\u0430 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0438\u0432\u0438\u0445 \u0432\u0438\u045f\u0435\u0442\u0430."],"Change block type or style":["\u041f\u0440\u043e\u043c\u0435\u043d\u0438 \u0432\u0440\u0441\u0442\u0443 \u0438\u043b\u0438 \u0441\u0442\u0438\u043b \u0431\u043b\u043e\u043a\u0430"],"keyboard key\x04Space":["\u0420\u0430\u0437\u043c\u0430\u043a"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":[],"Search Terms":[],"Exit the Editor":["\u0418\u0437\u0430\u0452\u0438 \u0438\u0437 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430"],"Block Manager":["\u0423\u043f\u0440\u0430\u0432\u0459\u0430\u0447 \u0431\u043b\u043e\u043a\u043e\u0432\u0430"],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":["\u0423\u0433\u043d\u0435\u0436\u0452\u0435\u043d \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 %s \u043d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0438\u0442\u0438 \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u043d \u0443 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0443."],"Custom Color":["\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0452\u0435\u043d\u0430 \u0431\u043e\u0458\u0430"],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":["\u0417\u0430\u043b\u0435\u043f\u0438 \u043d\u0430 \u0432\u0440\u0445 \u0431\u043b\u043e\u0433\u0430"],"Read about permalinks":["\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0458\u0442\u0435 \u0432\u0438\u0448\u0435 \u0441\u0442\u0430\u043b\u043d\u0438\u043c \u0432\u0435\u0437\u0430\u043c\u0430"],"The last part of the URL.":[],"URL Slug":["\u041f\u043e\u0434\u043b\u043e\u0436\u0430\u043a URL-\u0430"],"A cloud of your most used tags.":["\u041e\u0431\u043b\u0430\u043a \u0432\u0430\u0448\u0438\u0445 \u043d\u0430\u0458\u043a\u043e\u0440\u0438\u0448\u045b\u0435\u043d\u0438\u0458\u0438\u0445 \u043e\u0437\u043d\u0430\u043a\u0430."],"Tag Cloud":["\u041e\u0431\u043b\u0430\u043a \u043e\u0437\u043d\u0430\u043a\u0430"],Taxonomy:["\u0422\u0430\u043a\u0441\u043e\u043d\u043e\u043c\u0438\u0458\u0430"],"Tag Cloud Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u043e\u0431\u043b\u0430\u043a\u0430 \u043e\u0437\u043d\u0430\u043a\u0430"],"- Select -":["- \u0418\u0437\u0430\u0431\u0435\u0440\u0438 -"],Default:[],find:[],"Help visitors find your content.":["\u041f\u043e\u043c\u043e\u0437\u0438\u0442\u0435 \u043f\u043e\u0441\u0435\u0442\u0438\u043e\u0446\u0438\u043c\u0430 \u0434\u0430 \u043f\u0440\u043e\u043d\u0430\u0452\u0443 \u0432\u0430\u0448 \u0441\u0430\u0434\u0440\u0436\u0430\u0458."],Search:[],"Add button text\u2026":["\u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u0442\u0435\u043a\u0441\u0442 \u0434\u0443\u0433\u043c\u0435\u0442\u0430\u2026"],"Button text":["\u0422\u0435\u043a\u0441\u0442 \u0434\u0443\u0433\u043c\u0435\u0442\u0430"],"Optional placeholder\u2026":["\u041d\u0435\u043e\u0431\u0430\u0432\u0435\u0437\u043d\u0438 \u0434\u0440\u0436\u0430\u0447 \u043c\u0435\u0441\u0442\u0430\u2026"],"Optional placeholder text":["\u0422\u0435\u043a\u0441\u0442 \u043d\u0435\u043e\u0431\u0430\u0432\u0435\u0437\u043d\u043e\u0433 \u0434\u0440\u0436\u0430\u0447\u0430 \u043c\u0435\u0441\u0442\u0430"],"Add label\u2026":["\u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u043d\u0430\u0442\u043f\u0438\u0441\u2026"],"Label text":["\u0422\u0435\u043a\u0441\u0442 \u043d\u0430\u0442\u043f\u0438\u0441\u0430"],"image %1$d of %2$d in gallery":["\u0441\u043b\u0438\u043a\u0430 %1$d \u043e\u0434 %2$d \u0443 \u0433\u0430\u043b\u0435\u0440\u0438\u0458\u0438"],archive:["\u0430\u0440\u0445\u0438\u0432\u0430"],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":["\u0411\u043b\u043e\u043a (\u0438\u0437\u0430\u0431\u0440\u0430\u043d\u043e)"],"Document (selected)":["\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 (\u0438\u0437\u0430\u0431\u0440\u0430\u043d\u043e)"],"%d word":["%d \u0440\u0435\u0447","%d \u0440\u0435\u0447\u0438","%d \u0440\u0435\u0447\u0438"],"Top Toolbar":["\u0422\u0440\u0430\u043a\u0430 \u0441\u0430 \u0430\u043b\u0430\u0442\u043a\u0430\u043c\u0430 \u043d\u0430 \u0432\u0440\u0445\u0443"],"Link Rel":["Rel \u0432\u0435\u0437\u0435"],"Link CSS Class":["CSS \u043a\u043b\u0430\u0441\u0430 \u0432\u0435\u0437\u0435"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u041d\u0430\u043f\u0440\u0430\u0432\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0438 \u0441\u0430\u0447\u0443\u0432\u0430\u0458\u0442\u0435 \u0433\u0430 \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u0433\u0430 \u0432\u0438 \u0438 \u0432\u0430\u0448\u0438 \u0441\u0430\u0440\u0430\u0434\u043d\u0438\u0446\u0438 \u043f\u043e\u043d\u043e\u0432\u043d\u043e \u043a\u043e\u0440\u0438\u0441\u0442\u0438\u043b\u0438 \u043d\u0430 \u0432\u0430\u0448\u0435\u043c \u0432\u0435\u0431 \u043c\u0435\u0441\u0442\u0443. \u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458\u0442\u0435 \u0431\u043b\u043e\u043a \u0438 \u0438\u0437\u043c\u0435\u043d\u0435 \u045b\u0435 \u0431\u0438\u0442\u0438 \u043f\u0440\u0438\u043c\u0435\u045a\u0435\u043d\u0435 \u0441\u0432\u0443\u0434\u0430 \u0433\u0434\u0435 \u0441\u0435 \u043a\u043e\u0440\u0438\u0441\u0442\u0438."],"To edit the featured image, you need permission to upload media.":["\u0414\u0430 \u0431\u0438\u0441\u0442\u0435 \u0443\u0440\u0435\u0434\u0438\u043b\u0438 \u0438\u0437\u0430\u0431\u0440\u0430\u043d\u0443 \u0441\u043b\u0438\u043a\u0443, \u043c\u043e\u0440\u0430\u0442\u0435 \u0438\u043c\u0430\u0442\u0438 \u0434\u043e\u0437\u0432\u043e\u043b\u0443 \u0434\u0430 \u043e\u0442\u043f\u0440\u0435\u043c\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458."],"To edit this block, you need permission to upload media.":["\u0414\u0430 \u0431\u0438\u0441\u0442\u0435 \u0443\u0440\u0435\u0434\u0438\u043b\u0438 \u043e\u0432\u0430\u0458 \u0431\u043b\u043e\u043a, \u043c\u043e\u0440\u0430\u0442\u0435 \u0438\u043c\u0430\u0442\u0438 \u0434\u043e\u0437\u0432\u043e\u043b\u0443 \u0434\u0430 \u043e\u0442\u043f\u0440\u0435\u043c\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458."],"(selected block)":["(\u0438\u0437\u0430\u0431\u0440\u0430\u043d\u0438 \u0431\u043b\u043e\u043a)"],"Block tools":["\u0410\u043b\u0430\u0442\u043a\u0435 \u0431\u043b\u043e\u043a\u0430"],Permalink:["\u0421\u0442\u0430\u043b\u043d\u0430 \u0432\u0435\u0437\u0430"],"This image has an empty alt attribute":["\u041e\u0432\u0430 \u0441\u043b\u0438\u043a\u0430 \u0438\u043c\u0430 \u043f\u0440\u0430\u0437\u0430\u043d alt \u0430\u0442\u0440\u0438\u0431\u0443\u0442"],"This image has an empty alt attribute; its file name is %s":["\u041e\u0432\u0430 \u0441\u043b\u0438\u043a\u0430 \u0438\u043c\u0430 \u043f\u0440\u0430\u0437\u0430\u043d alt \u0430\u0442\u0440\u0438\u0431\u0443\u0442; \u0438\u043c\u0435 \u045a\u0435\u043d\u0435 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0435 \u0458\u0435 %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":["\u0414\u043e\u0434\u0430\u0458 \u043d\u043e\u0432\u0438"],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["\u0423\u043f\u043e\u0437\u043e\u0440\u0435\u045a\u0435: \u0432\u0435\u0437\u0430 \u0458\u0435 \u0443\u043c\u0435\u0442\u043d\u0443\u0442\u0430 \u0430\u043b\u0438 \u043c\u043e\u0436\u0434\u0430 \u0438\u043c\u0430 \u0433\u0440\u0435\u0448\u043a\u0435. \u041c\u043e\u043b\u0438\u043c\u043e \u0432\u0430\u0441 \u0434\u0430 \u0458\u0435 \u0438\u0441\u043f\u0440\u043e\u0431\u0430\u0442\u0435."],"%s block selected.":["%s \u0431\u043b\u043e\u043a \u0458\u0435 \u043e\u0434\u0430\u0431\u0440\u0430\u043d.","%s \u0431\u043b\u043e\u043a\u0430 \u0441\u0443 \u043e\u0434\u0430\u0431\u0440\u0430\u043d\u0430.","%s \u0431\u043b\u043e\u043a\u043e\u0432\u0430 \u0458\u0435 \u043e\u0434\u0430\u0431\u0440\u0430\u043d\u043e."],Thumbnail:["\u0423\u043c\u0430\u045a\u0435\u043d\u0430 \u0441\u043b\u0438\u043a\u0430"],"Full Size":["\u041f\u0443\u043d\u0430 \u0432\u0435\u043b\u0438\u0447\u0438\u043d\u0430"],"Link selected.":[],"Start writing with text or HTML":["\u0417\u0430\u043f\u043e\u0447\u043d\u0438\u0442\u0435 \u043f\u0438\u0441\u0430\u045a\u0435 \u0441\u0430 \u0442\u0435\u043a\u0441\u0442\u043e\u043c \u0438\u043b\u0438 HTML-\u043e\u043c"],"Type text or HTML":["\u041e\u0442\u043a\u0443\u0446\u0430\u0458\u0442\u0435 \u0442\u0435\u043a\u0441\u0442 \u0438\u043b\u0438 HTML"],"Block icon":["\u0418\u043a\u043e\u043d\u0438\u0446\u0430 \u0431\u043b\u043e\u043a\u0430"],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":["\u0417\u0430\u043f\u043e\u0447\u043d\u0438\u0442\u0435 \u0441\u0430 \u043f\u0438\u0441\u0430\u045a\u0435\u043c \u0438\u043b\u0438 \u043e\u0442\u043a\u0443\u0446\u0430\u0458\u0442\u0435 / \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u043e\u0434\u0430\u0431\u0440\u0430\u043b\u0438 \u0431\u043b\u043e\u043a"],"Empty block; start writing or type forward slash to choose a block":["\u041f\u0440\u0430\u0437\u0430\u043d \u0431\u043b\u043e\u043a; \u0437\u0430\u043f\u043e\u0447\u043d\u0438\u0442\u0435 \u0441\u0430 \u043f\u0438\u0441\u0430\u045a\u0435\u043c \u0438\u043b\u0438 \u043e\u0442\u043a\u0443\u0446\u0430\u0458\u0442\u0435 \u043a\u043e\u0441\u0443 \u0446\u0440\u0442\u0443 \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u043e\u0434\u0430\u0431\u0440\u0430\u043b\u0438 \u0431\u043b\u043e\u043a"],"Paragraph block":["\u0411\u043b\u043e\u043a \u041f\u0430\u0441\u0443\u0441"],"Page Break":["\u041f\u0440\u0435\u043b\u043e\u043c \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435"],"Stack on mobile":["\u041d\u0430\u0441\u043b\u0430\u0433\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u0435\u043d\u043e\u0441\u0438\u0432\u043e\u043c"],Annotation:[],"Drag images, upload new ones or select files from your library.":["\u041f\u0440\u0435\u0432\u0443\u0446\u0438\u0442\u0435 \u0441\u043b\u0438\u043a\u0435, \u043e\u0442\u043f\u0440\u0435\u043c\u0438\u0442\u0435 \u043d\u043e\u0432\u0435 \u0438\u043b\u0438 \u0438\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0435 \u0438\u0437 \u0441\u0432\u043e\u0458\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435."],"blocks\x04Most Used":["\u041d\u0430\u0458\u043a\u043e\u0440\u0438\u0448\u045b\u0435\u043d\u0438\u0458\u0438"],"imperative verb\x04Resolve":["\u0420\u0435\u0448\u0438"],"font size name\x04Huge":["\u041e\u0433\u0440\u043e\u043c\u043d\u0430"],"font size name\x04Large":["\u0412\u0435\u043b\u0438\u043a\u0430"],"font size name\x04Medium":["\u0421\u0440\u0435\u0434\u045a\u0430"],"font size name\x04Small":["\u041c\u0430\u043b\u0430"],"font size name\x04Normal":["\u041d\u043e\u0440\u043c\u0430\u043b\u043d\u0430"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["\u0423\u0432\u0435\u0437\u0438"],"button label\x04Download":["\u041f\u0440\u0435\u0443\u0437\u043c\u0438"],"button label\x04Embed":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438"],"block title\x04Embed":["\u0423\u0433\u043d\u0435\u0436\u0452\u0438\u0432\u0430\u045a\u0435"],"block title\x04Classic":["\u041a\u043b\u0430\u0441\u0438\u0447\u043d\u0438"],"block style\x04Large":["\u0412\u0435\u043b\u0438\u043a\u0438"],"%s (opens in a new tab)":["%s (\u043e\u0442\u0432\u0430\u0440\u0430 \u0441\u0435 \u0443 \u043d\u043e\u0432\u043e\u043c \u0458\u0435\u0437\u0438\u0447\u043a\u0443)"],"Link edited.":["\u0412\u0435\u0437\u0430 \u0458\u0435 \u0443\u0440\u0435\u0452\u0435\u043d\u0430."],"Link removed.":["\u0412\u0435\u0437\u0430 \u0458\u0435 \u0443\u043a\u043b\u043e\u045a\u0435\u043d\u0430."],media:["\u0441\u0430\u0434\u0440\u0436\u0430\u0458"],"Double-check your settings before publishing.":["\u0414\u0432\u0430 \u043f\u0443\u0442\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u0435 \u0441\u0432\u043e\u0458\u0430 \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u043f\u0440\u0435 \u043e\u0431\u0458\u0430\u0432\u0459\u0438\u0432\u0430\u045a\u0430."],"Generating preview\u2026":["\u041f\u0440\u0430\u0432\u0459\u0435\u045a\u0435 \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u2026"],"Edit or update the image":["\u0423\u0440\u0435\u0434\u0438 \u0438\u043b\u0438 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u0458 \u0441\u043b\u0438\u043a\u0443"],Media:["\u0421\u0430\u0434\u0440\u0436\u0430\u0458"],"Navigate to the nearest toolbar.":["\u041a\u0440\u0435\u045b\u0438 \u0441\u0435 \u043d\u0430 \u043d\u0430\u0458\u0431\u043b\u0438\u0436\u0443 \u0442\u0440\u0430\u043a\u0443 \u0441\u0430 \u0430\u043b\u0430\u0442\u043a\u0430\u043c\u0430."],"Document tools":["\u0410\u043b\u0430\u0442\u043a\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430"],"Document and block tools":["\u0410\u043b\u0430\u0442\u043a\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0438 \u0431\u043b\u043e\u043a\u0430"],"Embed a video from your media library or upload a new one.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441 \u0438\u0437 \u0441\u0432\u043e\u0458\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430 \u0438\u043b\u0438 \u043e\u0442\u043f\u0440\u0435\u043c\u0438\u0442\u0435 \u043d\u043e\u0432."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u0423\u043c\u0435\u0442\u043d\u0438\u0442\u0435 \u043f\u043e\u0435\u0437\u0438\u0458\u0443. \u041a\u043e\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u043f\u043e\u0441\u0435\u0431\u043d\u043e \u043e\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u045a\u0435 \u043f\u0440\u043e\u0440\u0435\u0434\u0430. \u0418\u043b\u0438 \u0446\u0438\u0442\u0438\u0440\u0430\u0442\u0435 \u0442\u0435\u043a\u0441\u0442 \u043f\u0435\u0441\u043c\u0435."],"Add white space between blocks and customize its height.":["\u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u0438 \u043f\u0440\u043e\u0441\u0442\u043e\u0440 \u0438\u0437\u043c\u0435\u0452\u0443 \u0431\u043b\u043e\u043a\u043e\u0432\u0430 \u0438 \u043f\u0440\u0438\u043b\u0430\u0433\u043e\u0434\u0438\u0442\u0435 \u045a\u0435\u0433\u043e\u0432\u0443 \u0432\u0438\u0441\u0438\u043d\u0443."],"Insert additional custom elements with a WordPress shortcode.":["\u0423\u043c\u0435\u0442\u043d\u0438\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u043d\u0435 \u043f\u0440\u0438\u043b\u0430\u0433\u043e\u0452\u0435\u043d\u0435 \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0435 \u0441\u0430 \u0412\u043e\u0440\u0434\u043f\u0440\u0435\u0441\u043e\u0432\u0438\u043c \u043a\u0440\u0430\u0442\u043a\u0438\u043c \u043a\xf4\u0434\u043e\u043c."],"Create a break between ideas or sections with a horizontal separator.":["\u041d\u0430\u043f\u0440\u0430\u0432\u0438\u0442\u0435 \u043f\u0440\u0435\u043a\u0438\u0434 \u0438\u0437\u043c\u0435\u0452\u0443 \u0437\u0430\u043c\u0438\u0441\u043b\u0438 \u0438\u043b\u0438 \u043e\u0434\u0435\u0459\u0430\u043a\u0430 \u0441\u0430 \u0432\u043e\u0434\u043e\u0440\u0430\u0432\u043d\u0438\u043c \u0440\u0430\u0441\u0442\u0430\u0432\u0459\u0430\u0447\u0435\u043c."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":["\u041f\u043e\u0447\u043d\u0438\u0442\u0435 \u0441\u0430 \u0431\u043b\u043e\u043a\u043e\u043c \u0437\u0430 \u043f\u0440\u0430\u0432\u0459\u0435\u045a\u0435 \u043f\u0440\u0438\u0447\u0435."],"Separate your content into a multi-page experience.":["\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u0435 \u0441\u0432\u043e\u0458 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0443 \u0432\u0438\u0448\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430."],"Set media and words side-by-side for a richer layout.":["\u041f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0438 \u0440\u0435\u0447\u0438 \u0440\u0430\u043c\u0435 \u0443\u0437 \u0440\u0430\u043c\u0435 \u0437\u0430 \u0431\u043e\u0433\u0430\u0442\u0438\u0458\u0438 \u0440\u0430\u0441\u043f\u043e\u0440\u0435\u0434."],"Media & Text Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430 \u0438 \u0442\u0435\u043a\u0441\u0442\u0430"],"Create a bulleted or numbered list.":["\u041d\u0430\u043f\u0440\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u0443\u0440\u0435\u0452\u0435\u043d \u0438\u043b\u0438 \u043d\u0443\u043c\u0435\u0440\u0438\u0441\u0430\u043d \u0441\u043f\u0438\u0441\u0430\u043a."],"Display a list of your most recent comments.":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u0430\u043a \u0441\u0432\u043e\u0458\u0438\u0445 \u0441\u043a\u043e\u0440\u0430\u0448\u045a\u0438\u0445 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0430."],"Insert an image to make a visual statement.":["\u0423\u043c\u0435\u0442\u043d\u0438\u0442\u0435 \u0441\u043b\u0438\u043a\u0443 \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u043d\u0430\u043f\u0440\u0430\u0432\u0438\u043b\u0438 \u0432\u0438\u0434\u0459\u0438\u0432 \u0438\u0441\u043a\u0430\u0437."],"Add custom HTML code and preview it as you edit.":["\u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u043f\u0440\u0438\u043b\u0430\u0433\u043e\u0452\u0435\u043d\u0438 HTML \u0438 \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0458\u0442\u0435 \u0433\u0430 \u0434\u043e\u043a \u0433\u0430 \u0443\u0440\u0435\u0452\u0443\u0458\u0435\u0442\u0435."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u043d\u043e\u0432\u0435 \u043e\u0434\u0435\u0459\u043a\u0435 \u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0443\u0458\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0434\u0430 \u043f\u043e\u043c\u043e\u0433\u043d\u0435\u0442\u0435 \u043f\u043e\u0441\u0435\u0442\u0438\u043e\u0446\u0438\u043c\u0430 (\u0438 \u043f\u0440\u0435\u0442\u0440\u0430\u0436\u0438\u0432\u0430\u0447\u0438\u043c\u0430 \u0432\u0435\u0431\u0430) \u0434\u0430 \u0440\u0430\u0437\u0443\u043c\u0435\u0458\u0443 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443 \u0432\u0430\u0448\u0435\u0433 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430."],"Display multiple images in a rich gallery.":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438\u0442\u0435 \u0432\u0438\u0448\u0435 \u0441\u043b\u0438\u043a\u0430 \u0443 \u0431\u043e\u0433\u0430\u0442\u043e\u0458 \u0433\u0430\u043b\u0435\u0440\u0438\u0458\u0438."],"Add a link to a downloadable file.":["\u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u0432\u0435\u0437\u0443 \u043a\u0430 \u0434\u0430\u0442\u043e\u0442\u0435\u0446\u0438 \u0437\u0430 \u043f\u0440\u0435\u0443\u0437\u0438\u043c\u0430\u045a\u0435."],"Embed videos, images, tweets, audio, and other content from external sources.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441\u0435, \u0441\u043b\u0438\u043a\u0435, \u0430\u0443\u0434\u0438\u043e \u0437\u0430\u043f\u0438\u0441\u0435, \u0442\u0432\u0438\u0442\u043e\u0432\u0435 \u0438 \u0434\u0440\u0443\u0433\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0438\u0437 \u0441\u043f\u043e\u0459\u0430\u0448\u045a\u0438\u0445 \u0438\u0437\u0432\u043e\u0440\u0430."],"Resize for smaller devices":["\u041f\u0440\u043e\u043c\u0435\u043d\u0438 \u0432\u0435\u043b\u0438\u0447\u0438\u043d\u0443 \u0437\u0430 \u043c\u0430\u045a\u0435 \u0443\u0440\u0435\u0452\u0430\u0458\u0435"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u041e\u0432\u043e \u0443\u0433\u043d\u0435\u0436\u0452\u0438\u0432\u0430\u045a\u0435 \u043c\u043e\u0436\u0434\u0430 \u043d\u0435\u045b\u0435 \u0441\u0430\u0447\u0443\u0432\u0430\u0442\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0458\u0435 \u043a\u0430\u0434\u0430 \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0447 \u0432\u0435\u0431\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 \u0432\u0435\u043b\u0438\u0447\u0438\u043d\u0443."],"This embed will preserve its aspect ratio when the browser is resized.":["\u041e\u0432\u043e \u0443\u0433\u043d\u0435\u0436\u0452\u0438\u0432\u0430\u045a\u0435 \u045b\u0435 \u0441\u0430\u0447\u0443\u0432\u0430\u0442\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0458\u0435 \u043a\u0430\u0434\u0430 \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0447 \u0432\u0435\u0431\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 \u0432\u0435\u043b\u0438\u0447\u0438\u043d\u0443."],"Embed an Animoto video.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 Animoto \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441."],"Embed a Vimeo video.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 Vimeo \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441."],"Embed Flickr content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Flickr-\u0430."],"Embed Spotify content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Spotify-\u0430."],"Embed SoundCloud content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 SoundCloud-\u0430."],"Embed a WordPress post.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0412\u043e\u0440\u0434\u043f\u0440\u0435\u0441\u043e\u0432 \u0447\u043b\u0430\u043d\u0430\u043a."],"Embed an Instagram post.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0418\u043d\u0441\u0442\u0430\u0433\u0440\u0430\u043c\u043e\u0432 \u0447\u043b\u0430\u043d\u0430\u043a."],"Embed a Facebook post.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0424\u0435\u0458\u0441\u0431\u0443\u043a\u043e\u0432 \u0447\u043b\u0430\u043d\u0430\u043a."],"Embed a WordPress.tv video.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 WordPress.tv \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441."],"Embed a VideoPress video.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 VideoPress \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441."],"Embed a Tumblr post.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 Tumblr-\u043e\u0432 \u0447\u043b\u0430\u043d\u0430\u043a."],"Embed a TED video.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 TED \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441."],"Embed Speaker Deck content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Speaker Deck-\u0430."],"Embed a YouTube video.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0408\u0443\u0442\u0458\u0443\u0431\u043e\u0432 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441."],"Embed SmugMug content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 SmugMug-\u0430."],"Embed Slideshare content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Slideshare-\u0430."],"Embed Scribd content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Scribd-\u0430."],"Embed Screencast content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Screencast-\u0430."],"Embed ReverbNation content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 ReverbNation-\u0430."],"Embed a Reddit thread.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0420\u0435\u0434\u0438\u0442\u043e\u0432\u0443 \u043d\u0438\u0442."],"Embed Polldaddy content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Polldaddy-\u0430."],"Embed Mixcloud content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Mixcloud-\u0430."],"Embed a tweet.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0442\u0432\u0438\u0442."],"Embed Meetup.com content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Meetup.com-\u0430."],"Embed Kickstarter content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Kickstarter-\u0430."],"Embed Issuu content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Issuu-\u0430."],"Embed Imgur content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Imgur-\u0430."],"Embed Hulu content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Hulu-\u0430."],"Embed a Dailymotion video.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 Dailymotion \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441."],"Embed CollegeHumor content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 CollegeHumor-\u0430."],"Embed Cloudup content.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 Cloudup-\u0430."],"Add an image or video with a text overlay \u2014 great for headers.":["\u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u0441\u043b\u0438\u043a\u0443 \u0438\u043b\u0438 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441 \u0441\u0430 \u0441\u043b\u043e\u0458\u0435\u043c \u0442\u0435\u043a\u0441\u0442\u0430 \u043f\u0440\u0435\u043a\u043e \u045a\u0435 \u2014 \u043e\u0434\u043b\u0438\u0447\u043d\u043e \u0437\u0430 \u0437\u0430\u0433\u043b\u0430\u0432\u0459\u0430."],"Display code snippets that respect your spacing and tabs.":["\u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u0438\u0441\u0435\u0447\u043a\u0435 \u043a\xf4\u0434\u0430 \u043a\u043e\u0458\u0438 \u043f\u043e\u0448\u0442\u0443\u0458\u0443 \u0432\u0430\u0448\u0435 \u043f\u0440\u043e\u0440\u0435\u0434\u0435 \u0438 \u0442\u0430\u0431\u0443\u043b\u0430\u0442\u043e\u0440\u0435."],"Use the classic WordPress editor.":["\u041a\u043e\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u043a\u043b\u0430\u0441\u0438\u0447\u043d\u0438 \u0412\u043e\u0440\u0434\u043f\u0440\u0435\u0441\u043e\u0432 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447."],"Display a list of all categories.":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u0430\u043a \u0441\u0432\u0438\u0445 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430."],"Embed a simple audio player.":["\u0423\u0433\u043d\u0435\u0437\u0434\u0438\u0442\u0435 \u0458\u0435\u0434\u043d\u043e\u0441\u0442\u0430\u0432\u0430\u043d \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0447 \u0437\u0432\u0443\u0447\u043d\u043e\u0433 \u0437\u0430\u043f\u0438\u0441\u0430."],"noun\x04View":["\u041f\u043e\u0433\u043b\u0435\u0434"],"editor button\x04Left to right":["\u041b\u0435\u0432\u043e \u043a\u0430 \u0434\u0435\u0441\u043d\u043e"],"Save as Pending":["\u0421\u0430\u0447\u0443\u0432\u0430\u0458 \u043a\u0430\u043e \u201e\u041d\u0430 \u0447\u0435\u043a\u0430\u045a\u0443\u201c"],"%s address":[],"Paste or type URL":["\u041d\u0430\u043b\u0435\u043f\u0438\u0442\u0435 URL \u0438\u043b\u0438 \u043a\u0443\u0446\u0430\u0458\u0442\u0435"],"Insert from URL":["\u0423\u043c\u0435\u0442\u043d\u0438 \u0441\u0430 URL-\u0430"],"Block Navigator":[],Styles:["\u0421\u0442\u0438\u043b\u043e\u0432\u0438"],"Advanced Panels":["\u041d\u0430\u043f\u0440\u0435\u0434\u043d\u0435 \u0442\u0430\u0431\u043b\u0435"],"Document Panels":["\u0422\u0430\u0431\u043b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430"],General:["\u041e\u043f\u0448\u0442\u0435"],"Open the block navigation menu.":["\u041e\u0442\u0432\u043e\u0440\u0438 \u0438\u0437\u0431\u043e\u0440\u043d\u0438\u043a \u043a\u0440\u0435\u0442\u0430\u045a\u0430 \u0431\u043b\u043e\u043a\u0430."],"Work without distraction":["\u0420\u0430\u0434\u0438\u0442\u0435 \u0431\u0435\u0437 \u043e\u043c\u0435\u0442\u0430\u045a\u0430"],"Focus on one block at a time":["\u0423\u0441\u0440\u0435\u0434\u0441\u0440\u0435\u0434\u0438\u0442\u0435 \u0441\u0435 \u043d\u0430 \u0458\u0435\u0434\u0430\u043d \u0431\u043b\u043e\u043a \u0438\u0441\u0442\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043e"],"Access all block and document tools in a single place":["\u041f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u0435 \u0441\u0432\u0438\u043c \u0430\u043b\u0430\u0442\u043a\u0430\u043c\u0430 \u0431\u043b\u043e\u043a\u043e\u0432\u0430 \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0441\u0430 \u0458\u0435\u0434\u043d\u043e\u0433 \u043c\u0435\u0441\u0442\u0430"],Options:["\u041c\u043e\u0433\u0443\u045b\u043d\u043e\u0441\u0442\u0438"],"(opens in a new tab)":["(\u043e\u0442\u0432\u0430\u0440\u0430 \u0441\u0435 \u0443 \u043d\u043e\u0432\u043e\u043c \u0458\u0435\u0437\u0438\u0447\u043a\u0443)"],Minutes:["\u041c\u0438\u043d\u0443\u0442\u0438"],Hours:["\u0421\u0430\u0442\u0438"],Time:["\u0412\u0440\u0435\u043c\u0435"],Year:["\u0413\u043e\u0434\u0438\u043d\u0430"],Day:["\u0414\u0430\u043d"],December:["\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"],November:["\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440"],October:["\u043e\u043a\u0442\u043e\u0431\u0430\u0440"],September:["\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440"],August:["\u0430\u0432\u0433\u0443\u0441\u0442"],July:["\u0458\u0443\u043b"],June:["\u0458\u0443\u043d"],May:["\u043c\u0430\u0458"],April:["\u0430\u043f\u0440\u0438\u043b"],March:["\u043c\u0430\u0440\u0442"],February:["\u0444\u0435\u0431\u0440\u0443\u0430\u0440"],January:["\u0458\u0430\u043d\u0443\u0430\u0440"],Month:["\u041c\u0435\u0441\u0435\u0446"],Date:["\u0414\u0430\u0442\u0443\u043c"],"Go to the first (home) or last (end) day of a week.":["\u0418\u0434\u0438\u0442\u0435 \u043d\u0430 \u043f\u0440\u0432\u0438 (home) \u0438\u043b\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u045a\u0438 (end) \u0434\u0430\u043d \u0441\u0435\u0434\u043c\u0438\u0446\u0435."],"Home/End":["Home/End"],"Home and End":["Home \u0438 End"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u0441\u0435 \u0443\u043d\u0430\u0437\u0430\u0434 (PgUp) \u0438\u043b\u0438 \u043d\u0430\u043f\u0440\u0435\u0434 (PgDn) \u0437\u0430 \u0458\u0435\u0434\u0430\u043d \u043c\u0435\u0441\u0435\u0446."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up \u0438 Page Down"],"Move backward (up) or forward (down) by one week.":["\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u0441\u0435 \u0443\u043d\u0430\u0437\u0430\u0434 (\u0433\u043e\u0440\u0435) \u0438\u043b\u0438 \u043d\u0430\u043f\u0440\u0435\u0434 (\u0434\u043e\u043b\u0435) \u0437\u0430 \u0458\u0435\u0434\u043d\u0443 \u0441\u0435\u0434\u043c\u0438\u0446\u0443."],"Up and Down Arrows":["\u0413\u043e\u0440\u0435 \u0438 \u0434\u043e\u043b\u0435 \u0441\u0442\u0440\u0435\u043b\u0438\u0446\u0435"],"Move backward (left) or forward (right) by one day.":["\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u0441\u0435 \u0443\u043d\u0430\u0437\u0430\u0434 (\u043b\u0435\u0432\u043e) \u0438\u043b\u0438 \u043d\u0430\u043f\u0440\u0435\u0434 (\u0434\u0435\u0441\u043d\u043e) \u0437\u0430 \u0458\u0435\u0434\u0430\u043d \u0434\u0430\u043d."],"Left and Right Arrows":["\u041b\u0435\u0432\u043e \u0438 \u0434\u0435\u0441\u043d\u043e \u0441\u0442\u0440\u0435\u043b\u0438\u0446\u0435"],"Select the date in focus.":["\u0421\u0442\u0430\u0432\u0438\u0442\u0435 \u0434\u0430\u0442\u0443\u043c \u0443 \u0444\u043e\u043a\u0443\u0441."],"Navigating with a keyboard":["\u041a\u0440\u0435\u0442\u0430\u045a\u0435 \u0441\u0430 \u0442\u0430\u0441\u0442\u0430\u0442\u0443\u0440\u043e\u043c"],"Click the desired day to select it.":["\u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0438\u0442\u0435 \u0436\u0435\u0459\u0435\u043d\u0438 \u0434\u0430\u043d \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u0433\u0430 \u0438\u0437\u0430\u0431\u0440\u0430\u043b\u0438."],"Click the right or left arrows to select other months in the past or the future.":["\u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0438\u0442\u0435 \u043b\u0435\u0432\u0443 \u0438\u043b\u0438 \u0434\u0435\u0441\u043d\u0443 \u0441\u0442\u0440\u0435\u043b\u0438\u0446\u0443 \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u0438\u0437\u0430\u0431\u0440\u0430\u043b\u0438 \u0434\u0440\u0443\u0433\u0435 \u043c\u0435\u0441\u0435\u0446\u0435 \u0443 \u043f\u0440\u043e\u0448\u043b\u043e\u0441\u0442\u0438 \u0438\u043b\u0438 \u0431\u0443\u0434\u0443\u045b\u043d\u043e\u0441\u0442\u0438."],"Click to Select":["\u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0438\u0442\u0435 \u0437\u0430 \u0438\u0437\u0431\u043e\u0440"],"Calendar Help":["\u041f\u043e\u043c\u043e\u045b \u0437\u0430 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["\u041e\u0434\u0430\u0431\u0435\u0440\u0438 \u0441\u0435\u043d\u043a\u0443"],"Change color format":["\u041f\u0440\u043e\u043c\u0435\u043d\u0438 \u043e\u0431\u043b\u0438\u043a \u0431\u043e\u0458\u0430"],"Color value in HSL":["\u0412\u0440\u0435\u0434\u043d\u043e\u0441\u0442 \u0431\u043e\u0458\u0435 \u0443 HSL-\u0443"],"Color value in RGB":["\u0412\u0440\u0435\u0434\u043d\u043e\u0441\u0442 \u0431\u043e\u0458\u0435 \u0443 RGB-\u0443"],"Color value in hexadecimal":["\u0412\u0440\u0435\u0434\u043d\u043e\u0441\u0442 \u0431\u043e\u0458\u0435 \u0443 \u0445\u0435\u043a\u0441\u0430\u0434\u0435\u0446\u0438\u043c\u0430\u043b\u0430\u043c\u0430"],"RGB mode active":["RGB \u0440\u0435\u0436\u0438\u043c \u0458\u0435 \u0443\u043a\u0459\u0443\u0447\u0435\u043d"],"Hex color mode active":["Hex \u0440\u0435\u0436\u0438\u043c \u0431\u043e\u0458\u0435 \u0458\u0435 \u0443\u043a\u0459\u0443\u0447\u0435\u043d"],"Hue/saturation/lightness mode active":["\u0420\u0435\u0436\u0438\u043c \u043d\u0438\u0458\u0430\u043d\u0441\u0435/\u0437\u0430\u0441\u0438\u045b\u0435\u045a\u0435/\u0441\u0432\u0435\u0442\u043b\u0438\u043d\u0435 \u0458\u0435 \u0443\u043a\u0459\u0443\u0447\u0435\u043d"],"Move the arrow left or right to change hue.":["\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u0441\u0442\u0440\u0435\u043b\u0438\u0446\u0443 \u043b\u0435\u0432\u043e \u0438\u043b\u0438 \u0434\u0435\u0441\u043d\u043e \u0434\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u043d\u0438\u0458\u0430\u043d\u0441\u0443."],"Hue value in degrees, from 0 to 359.":["\u0412\u0440\u0435\u0434\u043d\u043e\u0441\u0442 \u043d\u0438\u0458\u0430\u043d\u0441\u0435 \u0443 \u0441\u0442\u0435\u043f\u0435\u043d\u0438\u043c\u0430, \u043e\u0434 0 \u0434\u043e 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["\u0410\u043b\u0444\u0430 \u0432\u0440\u0435\u0434\u043d\u043e\u0441\u0442, \u043e\u0434 0 (\u043f\u0440\u043e\u0432\u0438\u0434\u043d\u043e) \u0434\u043e 1 (\u043f\u043e\u0442\u043f\u0443\u043d\u043e \u043d\u0435\u043f\u0440\u043e\u0432\u0438\u0434\u043d\u043e)."],Stripes:["\u0428\u0442\u0440\u0430\u0444\u0442\u0435"],"Your site doesn\u2019t include support for this block.":["\u0412\u0430\u0448\u0435 \u0432\u0435\u0431 \u043c\u0435\u0441\u0442\u043e \u043d\u0435 \u0443\u043a\u0459\u0443\u0447\u0443\u0458\u0435 \u043f\u043e\u0434\u0440\u0448\u043a\u0443 \u0437\u0430 \u043e\u0432\u0430\u0458 \u0431\u043b\u043e\u043a."],"Unrecognized Block":["\u041d\u0435\u043f\u0440\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0438 \u0431\u043b\u043e\u043a"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\u0412\u0430\u0448\u0435 \u0432\u0435\u0431 \u043c\u0435\u0441\u0442\u043e \u043d\u0435 \u0443\u043a\u0459\u0443\u0447\u0443\u0458\u0435 \u043f\u043e\u0434\u0440\u0448\u043a\u0443 \u0437\u0430 \u0431\u043b\u043e\u043a \u201e%s\u201c. \u041c\u043e\u0436\u0435\u0442\u0435 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043e\u0432\u0430\u0458 \u0431\u043b\u043e\u043a \u043d\u0435\u0442\u0430\u043a\u043d\u0443\u0442\u0438\u043c \u0438\u043b\u0438 \u0433\u0430 \u0443 \u0446\u0435\u043b\u043e\u0441\u0442\u0438 \u0443\u043a\u043b\u043e\u043d\u0438\u0442\u0438."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\u0412\u0430\u0448\u0435 \u0432\u0435\u0431 \u043c\u0435\u0441\u0442\u043e \u043d\u0435 \u0443\u043a\u0459\u0443\u0447\u0443\u0458\u0435 \u043f\u043e\u0434\u0440\u0448\u043a\u0443 \u0437\u0430 \u0431\u043b\u043e\u043a \u201e%s\u201c. \u041c\u043e\u0436\u0435\u0442\u0435 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043e\u0432\u0430\u0458 \u0431\u043b\u043e\u043a \u043d\u0435\u0442\u0430\u043a\u043d\u0443\u0442\u0438\u043c, \u043f\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0433\u0430 \u0443 \u0431\u043b\u043e\u043a \u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0452\u0435\u043d\u0438 HTML \u0438\u043b\u0438 \u0433\u0430 \u0443 \u0446\u0435\u043b\u043e\u0441\u0442\u0438 \u0443\u043a\u043b\u043e\u043d\u0438\u0442\u0438."],"Media area":["\u041f\u0440\u043e\u0441\u0442\u043e\u0440 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430"],"Media & Text":["\u0421\u0430\u0434\u0440\u0436\u0430\u0458 \u0438 \u0442\u0435\u043a\u0441\u0442"],"Show media on right":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0434\u0435\u0441\u043d\u043e"],"Show media on left":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u043b\u0435\u0432\u043e"],"Open in New Tab":["\u041e\u0442\u0432\u043e\u0440\u0438 \u0443 \u043d\u043e\u0432\u043e\u043c \u0458\u0435\u0437\u0438\u0447\u043a\u0443"],Cover:["\u041f\u0440\u0435\u043a\u0440\u0438\u0432\u0430\u0447"],"Border Settings":[],"Edit media":["\u0423\u0440\u0435\u0434\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458"],Medium:["\u0421\u0440\u0435\u0434\u045a\u0430"],"Paste URL or type to search":["\u041d\u0430\u043b\u0435\u043f\u0438\u0442\u0435 URL \u0438\u043b\u0438 \u043a\u0443\u0446\u0430\u0458\u0442\u0435 \u0437\u0430 \u043f\u0440\u0435\u0442\u0440\u0430\u0433\u0443"],Terms:[],"Your work will be published at the specified date and time.":["\u0412\u0430\u0448 \u0440\u0430\u0434 \u045b\u0435 \u0431\u0438\u0442\u0438 \u043e\u0431\u0458\u0430\u0432\u0459\u0435\u043d \u0443 \u043d\u0430\u0432\u0435\u0434\u0435\u043d\u0438 \u0434\u0430\u0442\u0443\u043c \u0438 \u0432\u0440\u0435\u043c\u0435."],"Are you ready to schedule?":["\u0414\u0430 \u043b\u0438 \u0441\u0442\u0435 \u0441\u043f\u0440\u0435\u043c\u043d\u0438 \u0437\u0430 \u0437\u0430\u043a\u0430\u0437\u0438\u0432\u0430\u045a\u0435?"],"Always show pre-publish checks.":["\u0423\u0432\u0435\u043a \u043f\u0440\u0438\u043a\u0430\u0436\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u0435 \u043f\u0440\u0435 \u043e\u0431\u0458\u0430\u0432\u0459\u0438\u0432\u0430\u045a\u0430."],"Take Over":["\u041f\u0440\u0435\u0443\u0437\u043c\u0438"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u0414\u0440\u0443\u0433\u0438 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a \u0442\u0440\u0435\u043d\u0443\u0442\u043d\u043e \u0440\u0430\u0434\u0438 \u043d\u0430 \u043e\u0432\u043e\u043c \u0447\u043b\u0430\u043d\u043a\u0443, \u0448\u0442\u043e \u0437\u043d\u0430\u0447\u0438 \u0434\u0430 \u0432\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u043f\u0440\u0430\u0432\u0438\u0442\u0435 \u0438\u0437\u043c\u0435\u043d\u0435 \u043e\u0441\u0438\u043c \u0430\u043a\u043e \u043d\u0435 \u043f\u0440\u0435\u0443\u0437\u043c\u0435\u0442\u0435."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s \u0442\u0440\u0435\u043d\u0443\u0442\u043d\u043e \u0440\u0430\u0434\u0438 \u043d\u0430 \u043e\u0432\u043e\u043c \u0447\u043b\u0430\u043d\u043a\u0443, \u0448\u0442\u043e \u0437\u043d\u0430\u0447\u0438 \u0434\u0430 \u0432\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u043f\u0440\u0430\u0432\u0438\u0442\u0435 \u0438\u0437\u043c\u0435\u043d\u0435 \u043e\u0441\u0438\u043c \u0430\u043a\u043e \u043d\u0435 \u043f\u0440\u0435\u0443\u0437\u043c\u0435\u0442\u0435."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u0414\u0440\u0443\u0433\u0438 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u043a \u0441\u0430\u0434\u0430 \u0438\u043c\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0443 \u043d\u0430\u0434 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u045a\u0435\u043c \u043e\u0432\u043e\u0433 \u0447\u043b\u0430\u043d\u043a\u0430. \u041d\u0435 \u0431\u0440\u0438\u043d\u0438\u0442\u0435, \u0432\u0430\u0448\u0435 \u0438\u0437\u043c\u0435\u043d\u0435 \u0434\u043e \u043e\u0432\u043e\u0433 \u0442\u0440\u0435\u043d\u0443\u0442\u043a\u0430 \u0441\u0443 \u0441\u0430\u0447\u0443\u0432\u0430\u043d\u0435."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s \u0441\u0430\u0434\u0430 \u0438\u043c\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0443 \u043d\u0430\u0434 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u045a\u0435\u043c \u043e\u0432\u043e\u0433 \u0447\u043b\u0430\u043d\u043a\u0430. \u041d\u0435 \u0431\u0440\u0438\u043d\u0438\u0442\u0435, \u0432\u0430\u0448\u0435 \u0438\u0437\u043c\u0435\u043d\u0435 \u0434\u043e \u043e\u0432\u043e\u0433 \u0442\u0440\u0435\u043d\u0443\u0442\u043a\u0430 \u0441\u0443 \u0441\u0430\u0447\u0443\u0432\u0430\u043d\u0435."],Avatar:["\u0410\u0432\u0430\u0442\u0430\u0440"],"This post is already being edited.":["\u041e\u0432\u0430\u0458 \u0447\u043b\u0430\u043d\u0430\u043a \u0441\u0435 \u0432\u0435\u045b \u0443\u0440\u0435\u0452\u0443\u0458\u0435."],"Someone else has taken over this post.":["\u041d\u0435\u043a\u043e \u0434\u0440\u0443\u0433\u0438 \u0458\u0435 \u043f\u0440\u0435\u0443\u0437\u0435\u043e \u043e\u0432\u0430\u0458 \u0447\u043b\u0430\u043d\u0430\u043a."],"This block contains unexpected or invalid content.":["\u041e\u0432\u0430\u0458 \u0431\u043b\u043e\u043a \u0441\u0430\u0434\u0440\u0436\u0438 \u043d\u0435\u043e\u0447\u0435\u043a\u0438\u0432\u0430\u043d\u0438 \u0438\u043b\u0438 \u043d\u0435\u0432\u0430\u0436\u0435\u045b\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458."],"Resolve Block":["\u0420\u0435\u0448\u0438 \u0431\u043b\u043e\u043a"],"Convert to HTML":["\u041f\u0440\u0435\u0442\u0432\u043e\u0440\u0438 \u0443 HTML"],"This block can only be used once.":["\u041e\u0432\u0430\u0458 \u0431\u043b\u043e\u043a \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043a\u043e\u0440\u0438\u0441\u0442\u0438 \u0441\u0430\u043c\u043e \u0458\u0435\u0434\u043d\u043e\u043c."],"Exit Code Editor":["\u0418\u0437\u0430\u0452\u0438 \u0438\u0437 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430 \u043a\xf4\u0434\u0430"],"Editing Code":["\u0423\u0440\u0435\u0452\u0438\u0432\u0430\u045a\u0435 \u043a\xf4\u0434\u0430"],"Solid Color":[],"Main Color":["\u0413\u043b\u0430\u0432\u043d\u0430 \u0431\u043e\u0458\u0430"],HTML:["HTML"],"Write HTML\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 HTML\u2026"],"Media Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430"],"Overlay Color":["\u0411\u043e\u0458\u0430 \u043f\u0440\u0435\u043a\u0440\u0438\u0432\u0430\u0447\u0430"],Overlay:["\u041f\u0440\u0435\u043a\u0440\u0438\u0432\u0430\u0447"],"Insert Media":["\u0423\u043c\u0435\u0442\u043d\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458"],"Reusable block imported successfully!":["\u0411\u043b\u043e\u043a \u0437\u0430 \u0432\u0438\u0448\u0435\u043a\u0440\u0430\u0442\u043d\u0443 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0443 \u0458\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0432\u0435\u0437\u0435\u043d!"],"Invalid Reusable Block JSON file":["\u041d\u0435\u0438\u0441\u043f\u0440\u0430\u0432\u043d\u0430 JSON \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0430 \u0431\u043b\u043e\u043a\u0430 \u0437\u0430 \u0432\u0438\u0448\u0435\u043a\u0440\u0430\u0442\u043d\u0443 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0443"],"Invalid JSON file":["\u041d\u0435\u0438\u0441\u043f\u0440\u0430\u0432\u043d\u0430 JSON \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0430"],"Import from JSON":["\u0423\u0432\u0435\u0437\u0438 \u0438\u0437 JSON-\u0430"],Backtick:["\u041e\u0431\u0440\u043d\u0443\u0442\u0438 \u043f\u043e\u043b\u0443\u043d\u0430\u0432\u043e\u0434\u043d\u0438\u043a"],Period:["\u0422\u0430\u0447\u043a\u0430"],Comma:["\u0417\u0430\u043f\u0435\u0442\u0430"],"Change type of %d block":["\u041f\u0440\u043e\u043c\u0435\u043d\u0438 \u0432\u0440\u0441\u0442\u0443 %d \u0431\u043b\u043e\u043a\u0430","\u041f\u0440\u043e\u043c\u0435\u043d\u0438 \u0432\u0440\u0441\u0442\u0443 %d \u0431\u043b\u043e\u043a\u0430","\u041f\u0440\u043e\u043c\u0435\u043d\u0438 \u0432\u0440\u0441\u0442\u0443 %d \u0431\u043b\u043e\u043a\u043e\u0432\u0430"],Current:["\u0422\u0440\u0435\u043d\u0443\u0442\u043d\u043e"],"After Conversion":["\u041d\u0430\u043a\u043e\u043d \u043f\u0440\u0435\u0442\u0432\u0430\u0440\u0430\u045a\u0430"],"Change alignment":[],"Change text alignment":[],"%d block":["%d \u0431\u043b\u043e\u043a","%d \u0431\u043b\u043e\u043a\u0430","%d \u0431\u043b\u043e\u043a\u043e\u0432\u0430"],Escape:["Escape"],"Forward-slash":["\u041a\u043e\u0441\u0430 \u0446\u0440\u0442\u0430"],"No archives to show.":["\u041d\u0435\u043c\u0430 \u0430\u0440\u0445\u0438\u0432\u0430 \u0437\u0430 \u043f\u0440\u0438\u043a\u0430\u0437."],"This file is empty.":["\u041e\u0432\u0430 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0430 \u0458\u0435 \u043f\u0440\u0430\u0437\u043d\u0430."],"Sorry, this file type is not supported here.":["\u0416\u0430\u043e \u043d\u0430\u043c \u0458\u0435, \u043e\u0432\u0430 \u0432\u0440\u0441\u0442\u0430 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0430 \u043e\u0432\u0434\u0435 \u043d\u0438\u0458\u0435 \u043f\u043e\u0434\u0440\u0436\u0430\u043d\u0430."],"Manage All Reusable Blocks":["\u0423\u043f\u0440\u0430\u0432\u0459\u0430\u0458 \u0441\u0432\u0438\u043c \u0431\u043b\u043e\u043a\u043e\u0432\u0438\u043c\u0430 \u0437\u0430 \u0432\u0438\u0448\u0435\u043a\u0440\u0430\u0442\u043d\u0443 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0443"],Title:["\u041d\u0430\u0441\u043b\u043e\u0432"],"Fullscreen Mode":["\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u0438\u043a\u0430\u0437\u0430 \u043f\u0440\u0435\u043a\u043e \u0446\u0435\u043b\u043e\u0433 \u0435\u043a\u0440\u0430\u043d\u0430"],"Beautiful landscape":["\u041f\u0440\u0435\u0434\u0438\u0432\u0430\u043d \u043f\u0435\u0458\u0437\u0430\u0436"],"Close panel":["\u0417\u0430\u0442\u0432\u043e\u0440\u0438 \u0442\u0430\u0431\u043b\u0443"],"Convert to Classic Block":["\u041f\u0440\u0435\u0442\u0432\u043e\u0440\u0438 \u0443 \u043a\u043b\u0430\u0441\u0438\u0447\u043d\u0438 \u0431\u043b\u043e\u043a"],"Remove Poster Image":["\u0423\u043a\u043b\u043e\u043d\u0438 \u0441\u043b\u0438\u043a\u0443 \u043f\u043b\u0430\u043a\u0430\u0442\u0430"],"Select Poster Image":["\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0441\u043b\u0438\u043a\u0443 \u043f\u043b\u0430\u043a\u0430\u0442\u0430"],"Poster Image":["\u0421\u043b\u0438\u043a\u0430 \u043f\u043b\u0430\u043a\u0430\u0442\u0430"],"This block is deprecated. Please use the Columns block instead.":["\u041e\u0432\u0430\u0458 \u0431\u043b\u043e\u043a \u0458\u0435 \u0437\u0430\u0441\u0442\u0430\u0440\u0435\u043e. \u041c\u043e\u043b\u0438\u043c\u043e \u0432\u0430\u0441 \u0434\u0430 \u0443\u043c\u0435\u0441\u0442\u043e \u0442\u043e\u0433\u0430 \u043a\u043e\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0431\u043b\u043e\u043a \u0421\u0442\u0443\u043f\u0446\u0438."],"Text Columns (deprecated)":["\u0422\u0435\u043a\u0441\u0442\u0443\u0430\u043b\u043d\u0438 \u0441\u0442\u0443\u043f\u0446\u0438 (\u0437\u0430\u0441\u0442\u0430\u0440\u0435\u043b\u043e)"],"Row Count":["\u0411\u0440\u043e\u0458 \u0440\u0435\u0434\u043e\u0432\u0430"],"Column Count":["\u0411\u0440\u043e\u0458 \u0441\u0442\u0443\u043f\u0430\u0446\u0430"],"This block is deprecated. Please use the Paragraph block instead.":["\u041e\u0432\u0430\u0458 \u0431\u043b\u043e\u043a \u0458\u0435 \u0437\u0430\u0441\u0442\u0430\u0440\u0435\u043e. \u041c\u043e\u043b\u0438\u043c\u043e \u0432\u0430\u0441 \u0434\u0430 \u0443\u043c\u0435\u0441\u0442\u043e \u0442\u043e\u0433\u0430 \u043a\u043e\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0431\u043b\u043e\u043a \u041f\u0430\u0441\u0443\u0441."],"Subheading (deprecated)":["\u041f\u043e\u0434\u043d\u0430\u0441\u043b\u043e\u0432 (\u0437\u0430\u0441\u0442\u0430\u0440\u0435\u043b\u043e)"],blockquote:[],"Change the block type after adding a new paragraph.":["\u041f\u0440\u043e\u043c\u0435\u043d\u0438 \u0432\u0440\u0441\u0442\u0443 \u0431\u043b\u043e\u043a\u0430 \u043d\u0430\u043a\u043e\u043d \u0434\u043e\u0434\u0430\u0432\u0430\u045a\u0430 \u043d\u043e\u0432\u043e\u0433 \u043f\u0430\u0441\u0443\u0441\u0430."],"Spotlight Mode":["\u0420\u0435\u0436\u0438\u043c \u0440\u0435\u0444\u043b\u0435\u043a\u0442\u043e\u0440\u0430"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u041e\u0437\u043d\u0430\u043a\u0435 \u043f\u043e\u043c\u0430\u0436\u0443 \u043a\u043e\u0440\u0438\u0441\u043d\u0438\u0446\u0438\u043c\u0430 \u0438 \u043f\u0440\u0435\u0442\u0440\u0430\u0436\u0438\u0432\u0430\u0447\u0438\u043c\u0430 \u0432\u0435\u0431\u0430 \u0434\u0430 \u0441\u0435 \u043a\u0440\u0435\u045b\u0443 \u043a\u0440\u043e\u0437 \u0432\u0430\u0448\u0435 \u0432\u0435\u0431 \u043c\u0435\u0441\u0442\u043e \u0438 \u043f\u0440\u043e\u043d\u0430\u0452\u0443 \u0441\u0430\u0434\u0440\u0436\u0430\u0458. \u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u043f\u0430\u0440 \u0440\u0435\u0447\u0438 \u0434\u0430 \u043e\u043f\u0438\u0448\u0435\u0442\u0435 \u0441\u0432\u043e\u0458 \u0447\u043b\u0430\u043d\u0430\u043a."],"Add tags":["\u0414\u043e\u0434\u0430\u0458 \u043e\u0437\u043d\u0430\u043a\u0435"],"Apply the \"%1$s\" format.":["\u041f\u0440\u0438\u043c\u0435\u043d\u0438 \u043e\u0431\u043b\u0438\u043a \u201e%1$s\u201c."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u0412\u0430\u0448\u0430 \u0442\u0435\u043c\u0430 \u043a\u043e\u0440\u0438\u0441\u0442\u0438 \u043e\u0431\u043b\u0438\u043a\u0435 \u0447\u043b\u0430\u043d\u0430\u043a\u0430 \u0434\u0430 \u0438\u0441\u0442\u0430\u043a\u043d\u0435 \u0440\u0430\u0437\u043b\u0438\u0447\u0438\u0442\u0435 \u0432\u0440\u0441\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430, \u043f\u043e\u043f\u0443\u0442 \u0441\u043b\u0438\u043a\u0430 \u0438 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441\u0430. \u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u0435 \u043e\u0431\u043b\u0438\u043a \u0447\u043b\u0430\u043d\u043a\u0430 \u0434\u0430 \u0432\u0438\u0434\u0438\u0442\u0435 \u043e\u0432\u043e \u043f\u043e\u0441\u0435\u0431\u043d\u043e \u0441\u0442\u0438\u043b\u0438\u0437\u043e\u0432\u0430\u045a\u0435."],"Use a post format":["\u041a\u043e\u0440\u0438\u0441\u0442\u0438 \u043e\u0431\u043b\u0438\u043a \u0447\u043b\u0430\u043d\u043a\u0430"],"Insert After":["\u0423\u043c\u0435\u0442\u043d\u0438 \u043f\u043e\u0441\u043b\u0435"],"Insert Before":["\u0423\u043c\u0435\u0442\u043d\u0438 \u043f\u0440\u0435"],"Move %1$d block from position %2$d down by one place":["\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 %1$d \u0431\u043b\u043e\u043a \u0441\u0430 \u043c\u0435\u0441\u0442\u0430 %2$d \u043d\u0430\u0434\u043e\u043b\u0435 \u0437\u0430 \u0458\u0435\u0434\u043d\u043e \u043c\u0435\u0441\u0442\u043e","\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 %1$d \u0431\u043b\u043e\u043a\u0430 \u0441\u0430 \u043c\u0435\u0441\u0442\u0430 %2$d \u043d\u0430\u0434\u043e\u043b\u0435 \u0437\u0430 \u0458\u0435\u0434\u043d\u043e \u043c\u0435\u0441\u0442\u043e","\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 %1$d \u0431\u043b\u043e\u043a\u043e\u0432\u0430 \u0441\u0430 \u043c\u0435\u0441\u0442\u0430 %2$d \u043d\u0430\u0434\u043e\u043b\u0435 \u0437\u0430 \u0458\u0435\u0434\u043d\u043e \u043c\u0435\u0441\u0442\u043e"],"Move %1$d block from position %2$d up by one place":["\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 %1$d \u0431\u043b\u043e\u043a \u0441\u0430 \u043c\u0435\u0441\u0442\u0430 %2$d \u043d\u0430\u0433\u043e\u0440\u0435 \u0437\u0430 \u0458\u0435\u0434\u043d\u043e \u043c\u0435\u0441\u0442\u043e","\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 %1$d \u0431\u043b\u043e\u043a\u0430 \u0441\u0430 \u043c\u0435\u0441\u0442\u0430 %2$d \u043d\u0430\u0433\u043e\u0440\u0435 \u0437\u0430 \u0458\u0435\u0434\u043d\u043e \u043c\u0435\u0441\u0442\u043e","\u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 %1$d \u0431\u043b\u043e\u043a\u043e\u0432\u0430 \u0441\u0430 \u043c\u0435\u0441\u0442\u0430 %2$d \u043d\u0430\u0433\u043e\u0440\u0435 \u0437\u0430 \u0458\u0435\u0434\u043d\u043e \u043c\u0435\u0441\u0442\u043e"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["\u0444\u0438\u043b\u043c"],"Insert a new block before the selected block(s).":["\u0423\u043c\u0435\u0442\u043d\u0438 \u043d\u043e\u0432\u0438 \u0431\u043b\u043e\u043a \u043f\u0440\u0435 \u0438\u0437\u0430\u0431\u0440\u0430\u043d\u043e\u0433 \u0431\u043b\u043e\u043a\u0430."],"Remove the selected block(s).":["\u0423\u043a\u043b\u043e\u043d\u0438 \u0438\u0437\u0430\u0431\u0440\u0430\u043d\u0438 \u0431\u043b\u043e\u043a."],"Duplicate the selected block(s).":["\u0414\u0443\u043f\u043b\u0438\u0440\u0430\u0458 \u0438\u0437\u0430\u0431\u0440\u0430\u043d\u0438 \u0431\u043b\u043e\u043a."],"Block shortcuts":["\u041f\u0440\u0435\u0447\u0438\u0446\u0435 \u0431\u043b\u043e\u043a\u0430"],"Clear selection.":["\u041e\u0447\u0438\u0441\u0442\u0438 \u0438\u0437\u0431\u043e\u0440."],"Select all text when typing. Press again to select all blocks.":["\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0441\u0430\u0432 \u0442\u0435\u043a\u0441\u0442 \u0437\u0430 \u0432\u0440\u0435\u043c\u0435 \u043a\u0443\u0446\u0430\u045a\u0430. \u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0438 \u043f\u043e\u043d\u043e\u0432\u043e \u0437\u0430 \u043e\u0434\u0430\u0431\u0438\u0440 \u0441\u0432\u0438\u0445 \u0431\u043b\u043e\u043a\u043e\u0432\u0430."],"Selection shortcuts":["\u041f\u0440\u0435\u0447\u0438\u0446\u0435 \u043e\u0434\u0430\u0431\u0438\u0440\u0430"],"Switch between Visual Editor and Code Editor.":["\u041f\u0440\u043e\u043c\u0435\u043d\u0438 \u0438\u0437\u043c\u0435\u0452\u0443 \u0412\u0438\u0434\u0459\u0438\u0432\u043e\u0433 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430 \u0438 \u0423\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430 \u043a\xf4\u0434\u0430."],"Navigate to the previous part of the editor (alternative).":["\u041a\u0440\u0435\u045b\u0438 \u0441\u0435 \u043d\u0430 \u043f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0438 \u0434\u0435\u043e \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430 (\u0430\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u043e)."],"Navigate to the next part of the editor (alternative).":["\u041a\u0440\u0435\u045b\u0438 \u0441\u0435 \u043d\u0430 \u0441\u043b\u0435\u0434\u0435\u045b\u0438 \u0434\u0435\u043e \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430 (\u0430\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u043e)."],"Navigate to the previous part of the editor.":["\u041a\u0440\u0435\u045b\u0438 \u0441\u0435 \u043d\u0430 \u043f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0438 \u0434\u0435\u043e \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430."],"Navigate to the next part of the editor.":["\u041a\u0440\u0435\u045b\u0438 \u0441\u0435 \u043d\u0430 \u0441\u043b\u0435\u0434\u0435\u045b\u0438 \u0434\u0435\u043e \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430."],"Show or hide the settings sidebar.":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0438\u043b\u0438 \u0441\u0430\u043a\u0440\u0438\u0458 \u0431\u043e\u0447\u043d\u0443 \u0442\u0440\u0430\u043a\u0443 \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430."],"Redo your last undo.":["\u041f\u043e\u043d\u043e\u0432\u0438 \u0441\u0432\u043e\u0458\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u045a\u0435 \u0432\u0440\u0430\u045b\u0430\u045a\u0435."],"Undo your last changes.":["\u0412\u0440\u0430\u0442\u0438 \u0441\u0432\u043e\u0458\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u045a\u0435 \u0438\u0437\u043c\u0435\u043d\u0435."],"Save your changes.":["\u0421\u0430\u0447\u0443\u0432\u0430\u0458 \u0441\u0432\u043e\u0458\u0435 \u0438\u0437\u043c\u0435\u043d\u0435."],"Global shortcuts":["\u041e\u043f\u0448\u0442\u0435 \u043f\u0440\u0435\u0447\u0438\u0446\u0435"],"Remove a link.":["\u0423\u043a\u043b\u043e\u043d\u0438 \u0432\u0435\u0437\u0443."],"Convert the selected text into a link.":["\u041f\u0440\u0435\u0442\u0432\u043e\u0440\u0438 \u0438\u0437\u0430\u0431\u0440\u0430\u043d\u0438 \u0442\u0435\u043a\u0441\u0442 \u0443 \u0432\u0435\u0437\u0443."],"Underline the selected text.":["\u041f\u043e\u0434\u0432\u0443\u0446\u0438 \u0438\u0437\u0430\u0431\u0440\u0430\u043d\u0438 \u0442\u0435\u043a\u0441\u0442."],"Make the selected text italic.":["\u041d\u0430\u043f\u0440\u0430\u0432\u0438 \u0438\u0437\u0430\u0431\u0440\u0430\u043d\u0438 \u0442\u0435\u043a\u0441\u0442 \u0438\u0441\u043a\u043e\u0448\u0435\u043d\u0438\u043c."],"Make the selected text bold.":["\u041d\u0430\u043f\u0440\u0430\u0432\u0438 \u0438\u0437\u0430\u0431\u0440\u0430\u043d\u0438 \u0442\u0435\u043a\u0441\u0442 \u043f\u043e\u0434\u0435\u0431\u0459\u0430\u043d\u0438\u043c."],"Text formatting":["\u041e\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u045a\u0435 \u0442\u0435\u043a\u0441\u0442\u0430"],"Insert a new block after the selected block(s).":["\u0423\u043c\u0435\u0442\u043d\u0438 \u043d\u043e\u0432\u0438 \u0431\u043b\u043e\u043a \u043f\u043e\u0441\u043b\u0435 \u0438\u0437\u0430\u0431\u0440\u0430\u043d\u043e\u0433 \u0431\u043b\u043e\u043a\u0430."],"Keyboard Shortcuts":["\u041f\u0440\u0435\u0447\u0438\u0446\u0435 \u0441\u0430 \u0442\u0430\u0441\u0442\u0430\u0442\u0443\u0440\u0435"],"Thanks for testing Gutenberg!":["\u0425\u0432\u0430\u043b\u0430 \u0432\u0430\u043c \u0437\u0430 \u0438\u0441\u043f\u0440\u043e\u0431\u0430\u0432\u0430\u045a\u0435 \u0413\u0443\u0442\u0435\u043d\u0431\u0435\u0440\u0433\u0430!"],"Help build Gutenberg":["\u041f\u043e\u043c\u043e\u0437\u0438 \u0433\u0440\u0430\u0434\u045a\u0443 \u0413\u0443\u0442\u0435\u043d\u0431\u0435\u0440\u0433\u0430"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["\u0423\u043a\u043e\u043b\u0438\u043a\u043e \u0436\u0435\u043b\u0438\u0442\u0435 \u0434\u0430 \u0441\u0430\u0437\u043d\u0430\u0442\u0435 \u0432\u0438\u0448\u0435 \u043e \u043f\u0440\u0430\u0432\u0459\u0435\u045a\u0443 \u0434\u043e\u0434\u0430\u0442\u043d\u0438\u0445 \u0431\u043b\u043e\u043a\u043e\u0432\u0430 \u0438\u043b\u0438 \u0441\u0442\u0435 \u0437\u0430\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043e\u0432\u0430\u043d\u0438 \u0443 \u043f\u043e\u043c\u0430\u0433\u0430\u045a\u0443 \u043f\u0440\u043e\u0458\u0435\u043a\u0442\u0443, \u0438\u0434\u0438\u0442\u0435 \u043d\u0430 GitHub \u0441\u043a\u043b\u0430\u0434\u0438\u0448\u0442\u0435."],"The WordPress community":["\u0412\u043e\u0440\u0434\u043f\u0440\u0435\u0441\u043e\u0432\u0430 \u0437\u0430\u0458\u0435\u0434\u043d\u0438\u0446\u0430"],"Code is Poetry":["\u041a\xf4\u0434 \u0458\u0435 \u043f\u043e\u0435\u0437\u0438\u0458\u0430"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["\u041c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u043f\u0440\u0430\u0432\u0438\u0442\u0438 \u0431\u0438\u043b\u043e \u043a\u0430\u043a\u0432\u0435 \u0431\u043b\u043e\u043a\u043e\u0432\u0435 \u043a\u043e\u0458\u0435 \u0436\u0435\u043b\u0438\u0442\u0435, \u043d\u0435\u043f\u043e\u043a\u0440\u0435\u0442\u043d\u0435 \u0438\u043b\u0438 \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u043d\u0435, \u0443\u043a\u0440\u0430\u0441\u043d\u0435 \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u0442\u0435:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["\u0421\u0432\u0430\u043a\u0438 \u0431\u043b\u043e\u043a \u043c\u043e\u0436\u0435 \u0434\u0430 \u043a\u043e\u0440\u0438\u0441\u0442\u0438 \u043e\u0432\u0430 \u043f\u043e\u0440\u0430\u0432\u043d\u0430\u045a\u0430. \u0411\u043b\u043e\u043a \u0443\u0433\u043d\u0435\u0436\u0452\u0438\u0432\u0430\u045a\u0430 \u0438\u0445 \u0442\u0430\u043a\u043e\u0452\u0435 \u0438\u043c\u0430, \u0438 \u043e\u0434\u043c\u0430\u0445 \u0458\u0435 \u043e\u0434\u0433\u043e\u0432\u0430\u0440\u0430\u0458\u0443\u045b\u0438:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":["\u041f\u0440\u0438\u0441\u0442\u0443\u043f\u0430\u0447\u043d\u043e\u0441\u0442 \u0458\u0435 \u0432\u0430\u0436\u043d\u0430 — \u043d\u0435\u043c\u043e\u0458\u0442\u0435 \u0437\u0430\u0431\u043e\u0440\u0430\u0432\u0438\u0442\u0438 alt \u0430\u0442\u0440\u0438\u0431\u0443\u0442"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":["\u0411\u043e\u0433\u0430\u0442 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0435\u043c"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["\u041c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0438 \u0431\u0440\u043e\u0458 \u0441\u0442\u0443\u043f\u0430\u0446\u0430 \u0443 \u0441\u0432\u043e\u0458\u0438\u043c \u0433\u0430\u043b\u0435\u0440\u0438\u0458\u0430\u043c\u0430 \u043f\u0440\u0435\u0432\u043b\u0430\u0447\u0435\u045b\u0438 \u043a\u043b\u0438\u0437\u0430\u0447 \u0443 \u0438\u043d\u0441\u043f\u0435\u043a\u0442\u043e\u0440\u0443 \u0431\u043b\u043e\u043a\u0430 \u0443 \u0431\u043e\u0447\u043d\u043e\u0458 \u0442\u0440\u0430\u0446\u0438."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["\u041c\u0435\u0442 \u041c\u0443\u043b\u0435\u043d\u0432\u0435\u0433, 2017."],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["\u0412\u0435\u043b\u0438\u043a\u0430 \u043f\u0440\u0435\u0434\u043d\u043e\u0441\u0442 \u0431\u043b\u043e\u043a\u043e\u0432\u0430 \u0458\u0435 \u0434\u0430 \u0438\u0445 \u043c\u043e\u0436\u0435\u0442\u0435 \u0443\u0440\u0435\u0434\u0438\u0442\u0438 \u0443 \u043c\u0435\u0441\u0442\u0443 \u0438 \u0434\u0438\u0440\u0435\u043a\u0442\u043d\u043e \u0440\u0443\u043a\u043e\u0432\u0430\u0442\u0438 \u0441\u0432\u043e\u0458\u0438\u043c \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0435\u043c. \u0423\u043c\u0435\u0441\u0442\u043e \u043f\u043e\u0459\u0430 \u0437\u0430 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u045a\u0435 \u0441\u0442\u0432\u0430\u0440\u0438 \u043a\u0430\u043e \u0448\u0442\u043e \u0458\u0435 \u0438\u0437\u0432\u043e\u0440 \u0446\u0438\u0442\u0430\u0442\u0430 \u0438\u043b\u0438 \u0442\u0435\u043a\u0441\u0442 \u0434\u0443\u0433\u043c\u0435\u0442\u0430, \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0438\u0440\u0435\u043a\u0442\u043d\u043e \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458. \u041f\u0440\u043e\u0431\u0430\u0458\u0442\u0435 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u045a\u0435 \u0446\u0438\u0442\u0430\u0442\u0430:"],"Visual Editing":["\u0412\u0438\u0434\u0459\u0438\u0432\u043e \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u045a\u0435"],"And Lists like this one of course :)":["\u0418 \u0441\u043f\u0438\u0441\u043a\u043e\u0432\u0438 \u043a\u0430\u043e \u043e\u0432\u0430\u0458, \u043d\u0430\u0440\u0430\u0432\u043d\u043e :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["\u0411\u043b\u043e\u043a\u043e\u0432\u0438 \u0440\u0430\u0441\u043f\u043e\u0440\u0435\u0434\u0430, \u043a\u0430\u043e \u0448\u0442\u043e \u0441\u0443 \u0414\u0443\u0433\u043c\u0430\u0434, \u041f\u0440\u0435\u043a\u0440\u0438\u0432\u043d\u0435 \u0441\u043b\u0438\u043a\u0435, \u0420\u0430\u0441\u0442\u0430\u0432\u0459\u0430\u0447\u0438 \u0438 \u0441\u043b."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["\u0423\u0433\u043d\u0435\u0436\u0452\u0438\u0432\u0430\u045a\u0430, \u043a\u0430\u043e \u0448\u0442\u043e \u0458\u0435 \u0408\u0443\u0442\u0458\u0443\u0431, \u0422\u0432\u0438\u0442\u0435\u0440 \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438 \u0412\u043e\u0440\u0434\u043f\u0440\u0435\u0441\u043e\u0432\u0438 \u0447\u043b\u0430\u043d\u0446\u0438."],Galleries:["\u0413\u0430\u043b\u0435\u0440\u0438\u0458\u0435"],"Images & Videos":["\u0421\u043b\u0438\u043a\u0435 \u0438 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441\u0438"],"Text & Headings":["\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0438 \u0438 \u0437\u0430\u0433\u043b\u0430\u0432\u0459\u0430"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["\u0414\u0430\u0458\u0442\u0435 \u043c\u0443 \u043f\u0440\u0438\u043b\u0438\u043a\u0443, \u043c\u043e\u0436\u0434\u0430 \u045b\u0435\u0442\u0435 \u043e\u0442\u043a\u0440\u0438\u0442\u0438 \u0441\u0442\u0432\u0430\u0440\u0438 \u043a\u043e\u0458\u0435 \u0412\u043e\u0440\u0434\u043f\u0440\u0435\u0441 \u0432\u0435\u045b \u043c\u043e\u0436\u0435 \u0434\u0430 \u0434\u043e\u0434\u0430 \u0443 \u0432\u0430\u0448\u0435 \u0447\u043b\u0430\u043d\u043a\u0435 \u0437\u0430 \u043a\u043e\u0458\u0435 \u043d\u0438\u0441\u0442\u0435 \u0437\u043d\u0430\u043b\u0438. \u0415\u0432\u043e \u043a\u0440\u0430\u0442\u043a\u043e\u0433 \u0441\u043f\u0438\u0441\u043a\u0430 \u0448\u0442\u0430 \u0442\u0443 \u0442\u0440\u0435\u043d\u0443\u0442\u043d\u043e \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u043d\u0430\u045b\u0438:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["\u0417\u0430\u043c\u0438\u0441\u043b\u0438\u0442\u0435 \u0434\u0430 \u0441\u0432\u0435 \u0448\u0442\u043e \u0412\u043e\u0440\u0434\u043f\u0440\u0435\u0441 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0443\u0440\u0430\u0434\u0438 \u0437\u0430 \u0432\u0430\u0441 \u0458\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0431\u0440\u0437\u043e \u0438 \u043d\u0430 \u0438\u0441\u0442\u043e\u043c \u043c\u0435\u0441\u0442\u0443 \u0443 \u0441\u0443\u0447\u0435\u0459\u0443. \u041d\u0435\u043c\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0435 \u0434\u0430 \u0441\u0445\u0432\u0430\u0442\u0438\u0442\u0435 HTML \u043e\u0437\u043d\u0430\u043a\u0435, \u043a\u043b\u0430\u0441\u0435 \u0438\u043b\u0438 \u0437\u0430\u043f\u0430\u043c\u0442\u0438\u0442\u0435 \u043a\u043e\u043c\u043f\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u0443 \u0441\u0438\u043d\u0442\u0430\u043a\u0441\u0443 \u043a\u0440\u0430\u0442\u043a\u0438\u0445 \u043a\xf4\u0434\u043e\u0432\u0430. \u0422\u043e \u0458\u0435 \u0434\u0443\u0445 \u0438\u0437\u0430 \u0443\u043c\u0435\u0442\u0430\u0447\u0430\u2014\u0434\u0443\u0433\u043c\u0435\u0442\u0430 (+) \u043a\u043e\u0458\u0435 \u045b\u0435\u0442\u0435 \u0432\u0438\u0434\u0435\u0442\u0438 \u0443 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0443\u2014\u043a\u043e\u0458\u0435 \u0432\u0430\u043c \u0434\u043e\u0437\u0432\u043e\u0459\u0430\u0432\u0430 \u0434\u0430 \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0442\u0435 \u0441\u0432\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0435 \u0431\u043b\u043e\u043a\u043e\u0432\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430 \u0438 \u0434\u0430 \u0438\u0445 \u0434\u043e\u0434\u0430\u0458\u0435\u0442\u0435 \u0443 \u0441\u0432\u043e\u0458 \u0447\u043b\u0430\u043d\u0430\u043a. \u0414\u043e\u0434\u0430\u0446\u0438 \u0438 \u0442\u0435\u043c\u0435 \u043c\u043e\u0433\u0443 \u0434\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0443\u0458\u0443 \u0441\u043e\u043f\u0441\u0442\u0432\u0435\u043d\u0435, \u043e\u0442\u0432\u0430\u0440\u0430\u0458\u0443\u045b\u0438 \u043c\u043d\u043e\u0433\u043e \u043c\u043e\u0433\u0443\u045b\u043d\u043e\u0441\u0442\u0438 \u0437\u0430 \u0431\u043e\u0433\u0430\u0442\u043e \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u045a\u0435 \u0438 \u043e\u0431\u0458\u0430\u0432\u0459\u0438\u0432\u0430\u045a\u0435."],"The Inserter Tool":["\u0410\u043b\u0430\u0442\u043a\u0430 \u0423\u043c\u0435\u0442\u0430\u0447"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["\u041f\u0440\u043e\u0431\u0430\u0458\u0442\u0435 \u043e\u0434\u0430\u0431\u0438\u0440 \u0438 \u0443\u043a\u043b\u0430\u045a\u0430\u045a\u0435 \u0438\u043b\u0438 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u045a\u0435 \u043d\u0430\u0442\u043f\u0438\u0441\u0430, \u0441\u0430\u0434\u0430 \u043d\u0435 \u043c\u043e\u0440\u0430\u0442\u0435 \u0434\u0430 \u0431\u0443\u0434\u0435\u0442\u0435 \u043f\u0430\u0436\u0459\u0438\u0432\u0438 \u0441\u0430 \u043e\u0434\u0430\u0431\u0438\u0440\u043e\u043c \u0441\u043b\u0438\u043a\u0435 \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430 \u0437\u0431\u043e\u0433 \u0433\u0440\u0435\u0448\u043a\u0435 \u0438\u043b\u0438 \u0443\u043f\u0440\u043e\u043f\u0430\u0448\u045b\u0430\u0432\u0430\u045a\u0430 \u043f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446\u0438\u0458\u0435."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["\u0423\u043a\u043e\u043b\u0438\u043a\u043e \u0432\u0430\u0448\u0430 \u0442\u0435\u043c\u0430 \u0442\u043e \u043f\u043e\u0434\u0440\u0436\u0430\u0432\u0430, \u0432\u0438\u0434\u0435\u045b\u0435\u0442\u0435 \u0434\u0443\u0433\u043c\u0435 \u201e\u0428\u0438\u0440\u043e\u043a\u043e\u201c \u043d\u0430 \u0442\u0440\u0430\u0446\u0438 \u0441\u0430 \u0430\u043b\u0430\u0442\u043a\u0430\u043c\u0430 \u0441\u043b\u0438\u043a\u0435. \u041f\u0440\u043e\u0431\u0430\u0458\u0442\u0435."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["\u041d\u043e\u0448\u0435\u045a\u0435 \u0441\u0430 \u0441\u043b\u0438\u043a\u0430\u043c\u0430 \u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0435\u043c \u0441\u0430 \u043d\u0430\u0458\u0432\u0435\u045b\u043e\u043c \u043f\u0430\u0436\u045a\u043e\u043c \u0458\u0435 \u043f\u0440\u0438\u043c\u0430\u0440\u043d\u0438 \u0444\u043e\u043a\u0443\u0441 \u043d\u043e\u0432\u043e\u0433 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430. \u041d\u0430\u0434\u0430\u043c\u043e \u0441\u0435 \u0434\u0430 \u045b\u0435\u0442\u0435 \u0434\u043e\u0434\u0430\u0432\u0430\u045a\u0435 \u043d\u0430\u0442\u043f\u0438\u0441\u0430 \u0438\u043b\u0438 \u043c\u0435\u045a\u0430\u045a\u0435 \u0443 \u043f\u0443\u043d\u0443 \u0432\u0435\u043b\u0438\u0447\u0438\u043d\u0443 \u0441\u043b\u0438\u043a\u0430 \u043f\u0440\u043e\u043d\u0430\u045b\u0438 \u043c\u043d\u043e\u0433\u043e \u043b\u0430\u043a\u0448\u0438\u043c \u0438 \u0440\u043e\u0431\u0443\u0441\u0442\u043d\u0438\u0458\u0438\u043c \u043d\u0435\u0433\u043e \u043f\u0440\u0435."],"A Picture is Worth a Thousand Words":["\u0421\u043b\u0438\u043a\u0430 \u0432\u0440\u0435\u0434\u0438 \u0445\u0438\u0459\u0430\u0434\u0443 \u0440\u0435\u0447\u0438"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["\u0417\u0430\u0433\u043b\u0430\u0432\u0459\u0430 \u0441\u0443 \u0442\u0430\u043a\u043e\u0452\u0435 \u043f\u043e\u0441\u0435\u0431\u043d\u0438 \u0431\u043b\u043e\u043a\u043e\u0432\u0438, \u0448\u0442\u043e \u043f\u043e\u043c\u0430\u0436\u0435 \u0441\u0430 \u043e\u0431\u0440\u0438\u0441\u043e\u043c \u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0458\u043e\u043c \u0432\u0430\u0448\u0435\u0433 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430."],"... like this one, which is right aligned.":["... \u043a\u0430\u043e \u043e\u0432\u0430\u0458 \u043a\u043e\u0458\u0438 \u0458\u0435 \u043f\u043e\u0440\u0430\u0432\u043d\u0430\u0442 \u0434\u0435\u0441\u043d\u043e."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["\u041e\u043d\u043e \u0448\u0442\u043e \u0442\u0440\u0435\u043d\u0443\u0442\u043d\u043e \u0447\u0438\u0442\u0430\u0442\u0435 \u0458\u0435 \u0442\u0435\u043a\u0441\u0442\u0443\u0430\u043b\u043d\u0438 \u0431\u043b\u043e\u043a, \u043d\u0430\u0458\u0458\u0435\u0434\u043d\u043e\u0441\u0442\u0430\u0432\u043d\u0438\u0458\u0438 \u0431\u043b\u043e\u043a \u043e\u0434 \u0441\u0432\u0438\u0445. \u0422\u0435\u043a\u0441\u0442\u0443\u0430\u043b\u043d\u0438 \u0431\u043b\u043e\u043a \u0438\u043c\u0430 \u0441\u043e\u043f\u0441\u0442\u0432\u0435\u043d\u0435 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0435 \u0437\u0430 \u043f\u043e\u043c\u0435\u0440\u0430\u045a\u0435 \u0443\u043d\u0443\u0442\u0430\u0440 \u0447\u043b\u0430\u043d\u043a\u0430\u2026"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["\u0426\u0438\u0459 \u043d\u043e\u0432\u043e\u0433 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430 \u0458\u0435 \u0458\u0435\u0434\u043d\u043e\u0441\u0442\u0430\u0432\u043d\u043e \u0438 \u043f\u0440\u0438\u0458\u0430\u0442\u043d\u043e \u0434\u043e\u0434\u0430\u0432\u0430\u045a\u0435 \u0431\u043e\u0433\u0430\u0442\u043e\u0433 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430 \u0443 \u0412\u043e\u0440\u0434\u043f\u0440\u0435\u0441\u0443. \u0426\u0435\u043e \u043e\u0432\u0430\u0458 \u0447\u043b\u0430\u043d\u0430\u043a \u0458\u0435 \u0441\u0430\u0441\u0442\u0430\u0432\u0459\u0435\u043d \u043e\u0434 \u0434\u0435\u043b\u043e\u0432\u0430 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430\u2014\u0434\u043e\u043d\u0435\u043a\u043b\u0435 \u0441\u043b\u0438\u0447\u043d\u0438\u043c \u041b\u0435\u0433\u043e \u043a\u043e\u0446\u043a\u0438\u0446\u0430\u043c\u0430\u2014\u043a\u043e\u0458\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u043f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u043e\u043a\u043e\u043b\u043e \u0438 \u0434\u0430 \u0443\u0437\u0430\u0458\u0430\u043c\u043d\u043e \u0434\u0435\u043b\u0443\u0458\u0435\u0442\u0435 \u0441\u0430 \u045a\u0438\u043c\u0430. \u041f\u043e\u043c\u0435\u0440\u0438\u0442\u0435 \u0441\u0432\u043e\u0458 \u043a\u0443\u0440\u0441\u043e\u0440 \u043e\u043a\u043e\u043b\u043e \u0438 \u043f\u0440\u0438\u043c\u0435\u045b\u0438\u045b\u0435\u0442\u0435 \u0434\u0430 \u0441\u0435 \u0440\u0430\u0437\u043b\u0438\u0447\u0438\u0442\u0438 \u0431\u043b\u043e\u043a\u043e\u0432\u0438 \u043e\u0441\u0432\u0435\u0442\u0459\u0430\u0432\u0430\u0458\u0443 \u0441\u0430 \u043e\u0431\u0440\u0438\u0441\u0438\u043c\u0430 \u0438 \u0441\u0442\u0440\u0435\u043b\u0438\u0446\u0430\u043c\u0430. \u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0438\u0442\u0435 \u0441\u0442\u0440\u0435\u043b\u0438\u0446\u0435 \u0434\u0430 \u0431\u0440\u0437\u043e \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u043c\u0435\u0441\u0442\u043e \u0431\u043b\u043e\u043a\u043e\u0432\u0430, \u0431\u0435\u0437 \u0441\u0442\u0440\u0430\u0445\u0430 \u043e\u0434 \u0433\u0443\u0431\u0459\u0435\u045a\u0430 \u0441\u0442\u0432\u0430\u0440\u0438 \u0442\u043e\u043a\u043e\u043c \u043f\u043e\u0441\u0442\u0443\u043f\u043a\u0430 \u0443\u043c\u043d\u043e\u0436\u0430\u0432\u0430\u045a\u0430 \u0438 \u043b\u0435\u043f\u0459\u0435\u045a\u0430."],"Of Mountains & Printing Presses":["\u041e\u0434 \u043f\u043b\u0430\u043d\u0438\u043d\u0430 \u0438 \u0448\u0442\u0430\u043c\u043f\u0430\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0435\u0441\u0430"],"Welcome to the Gutenberg Editor":["\u0414\u043e\u0431\u0440\u043e \u0434\u043e\u0448\u043b\u0438 \u0443 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447 \u0413\u0443\u0442\u0435\u043d\u0431\u0435\u0440\u0433"],"block name\x04More":["\u0412\u0438\u0448\u0435"],"button to expand options\x04More":["\u0412\u0438\u0448\u0435"],"Are you sure you want to unschedule this post?":["\u0414\u0430 \u043b\u0438 \u0441\u0438\u0433\u0443\u0440\u043d\u043e \u0436\u0435\u043b\u0438\u0442\u0435 \u0434\u0430 \u043e\u0432\u0430\u0458 \u0447\u043b\u0430\u043d\u0430\u043a \u0432\u0438\u0448\u0435 \u043d\u0435 \u0431\u0443\u0434\u0435 \u0437\u0430\u043a\u0430\u0437\u0430\u043d?"],"Alt Text (Alternative Text)":["\u0420\u0435\u0437\u0435\u0440\u0432\u043d\u0438 \u0442\u0435\u043a\u0441\u0442 (\u0442\u0435\u043a\u0441\u0442\u0443\u0430\u043b\u043d\u0430 \u0437\u0430\u043c\u0435\u043d\u0430)"],"Reusable Block":["\u0411\u043b\u043e\u043a \u0437\u0430 \u0432\u0438\u0448\u0435\u043a\u0440\u0430\u0442\u043d\u0443 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0443"],"Unique identifier for the object.":["\u0408\u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430."],"Untitled Reusable Block":["\u041d\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d \u0431\u043b\u043e\u043a \u0437\u0430 \u0432\u0438\u0448\u0435\u043a\u0440\u0430\u0442\u043d\u0443 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0443"],Small:[],"(%s: %s)":["(%s: %s)"],Reusable:["\u0417\u0430 \u0432\u0438\u0448\u0435\u043a\u0440\u0430\u0442\u043d\u0443 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0443"],"(current %s: %s)":["(\u0442\u0440\u0435\u043d\u0443\u0442\u043d\u0430 %s: %s)"],"Remove from Reusable Blocks":["\u0423\u043a\u043b\u043e\u043d\u0438 \u0438\u0437 \u0431\u043b\u043e\u043a\u043e\u0432\u0430 \u0437\u0430 \u0432\u0438\u0448\u0435\u043a\u0440\u0430\u0442\u043d\u0443 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0443"],"Add to Reusable Blocks":["\u0414\u043e\u0434\u0430\u0458 \u0443 \u0431\u043b\u043e\u043a\u043e\u0432\u0435 \u0437\u0430 \u0432\u0438\u0448\u0435\u043a\u0440\u0430\u0442\u043d\u0443 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0443"],"Keep as HTML":["\u041e\u0441\u0442\u0430\u0432\u0438 \u043a\u0430\u043e HTML"],"Edit URL":["\u0423\u0440\u0435\u0434\u0438 URL"],"Color Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0431\u043e\u0458\u0430"],"The response is not a valid JSON response.":["\u041e\u0434\u0433\u043e\u0432\u043e\u0440 \u043d\u0438\u0458\u0435 \u0438\u0441\u043f\u0440\u0430\u0432\u0430\u043d JSON \u043e\u0434\u0433\u043e\u0432\u043e\u0440."],"Editor publish":["\u041e\u0431\u0458\u0430\u0432\u0430 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430"],Muted:["\u0423\u0442\u0438\u0448\u0430\u043d\u043e"],"Video Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441\u0430"],"recent comments":["\u0441\u043a\u043e\u0440\u0430\u0448\u045a\u0438 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0438"],"Latest Comments":["\u041f\u043e\u0441\u043b\u0435\u0434\u045a\u0438 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0438"],"Display Excerpt":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0438\u0441\u0435\u0447\u0430\u043a"],"Display Date":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0434\u0430\u0442\u0443\u043c"],"Display Avatar":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0430\u0432\u0430\u0442\u0430\u0440"],"Latest Comments Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u045a\u0438\u0445 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0430"],"Number of Comments":["\u0411\u0440\u043e\u0458 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0430"],"Background Opacity":["\u041d\u0435\u043f\u0440\u043e\u0437\u0438\u0440\u043d\u043e\u0441\u0442 \u043f\u043e\u0437\u0430\u0434\u0438\u043d\u0435"],Auto:["\u0410\u0443\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438"],Preload:["\u0423\u0447\u0438\u0442\u0430\u0458 \u0443\u043d\u0430\u043f\u0440\u0435\u0434"],"Audio Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0437\u0432\u0443\u0447\u043d\u043e\u0433 \u0437\u0430\u043f\u0438\u0441\u0430"],"Display a monthly archive of your posts.":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0435\u0441\u0435\u0447\u043d\u0443 \u0430\u0440\u0445\u0438\u0432\u0443 \u0441\u0432\u043e\u0458\u0438\u0445 \u0447\u043b\u0430\u043d\u0430\u043a\u0430."],"Display as Dropdown":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043a\u0430\u043e \u043f\u0430\u0434\u0430\u0458\u0443\u045b\u0435"],"Show Post Counts":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0431\u0440\u043e\u0458 \u0447\u043b\u0430\u043d\u0430\u043a\u0430"],"Archives Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0430\u0440\u0445\u0438\u0432\u0430"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u041f\u043e\u0434\u0440\u0448\u043a\u0430"],"No comments to show.":["\u041d\u0435\u043c\u0430 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0430 \u0437\u0430 \u043f\u0440\u0438\u043a\u0430\u0437."],"%1$s on %2$s":["%1$s \u043d\u0430 %2$s"],"Select Post":["\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0447\u043b\u0430\u043d\u0430\u043a"],"Select Week":["\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0441\u0435\u0434\u043c\u0438\u0446\u0443"],"Select Day":["\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0434\u0430\u043d"],"Select Month":["\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u043c\u0435\u0441\u0435\u0446"],"Select Year":["\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0433\u043e\u0434\u0438\u043d\u0443"],Archives:["\u0410\u0440\u0445\u0438\u0432\u0435"],"Very dark gray":["\u0412\u0435\u043e\u043c\u0430 \u0442\u0430\u043c\u043d\u043e \u0441\u0438\u0432\u0430"],"Cyan bluish gray":["\u041f\u043b\u0430\u0432\u0438\u0447\u0430\u0441\u0442\u043e \u0441\u0438\u0432\u0438 \u0446\u0438\u0458\u0430\u043d"],"Very light gray":["\u0412\u0435\u043e\u043c\u0430 \u0441\u0432\u0435\u0442\u043b\u043e \u0441\u0438\u0432\u0430"],"Vivid cyan blue":["\u0408\u0430\u0440\u043a\u043e \u043f\u043b\u0430\u0432\u0438 \u0446\u0438\u0458\u0430\u043d"],"Pale cyan blue":["\u0411\u043b\u0435\u0434\u043e \u043f\u043b\u0430\u0432\u0438 \u0446\u0438\u0458\u0430\u043d"],"Vivid green cyan":["\u0408\u0430\u0440\u043a\u043e \u0437\u0435\u043b\u0435\u043d\u0438 \u0446\u0438\u0458\u0430\u043d"],"Light green cyan":["\u0421\u0432\u0435\u0442\u043b\u043e \u0437\u0435\u043b\u0435\u043d\u0438 \u0446\u0438\u0458\u0430\u043d"],"Luminous vivid amber":["\u0411\u043b\u0438\u0441\u0442\u0430\u0432\u043e \u0458\u0430\u0440\u043a\u0438 \u045b\u0438\u043b\u0438\u0431\u0430\u0440"],"Luminous vivid orange":["\u0411\u043b\u0438\u0441\u0442\u0430\u0432\u043e \u0458\u0430\u0440\u043a\u043e \u043d\u0430\u0440\u0430\u043d\u045f\u0430\u0441\u0442\u0430"],"Vivid red":["\u0408\u0430\u0440\u043a\u043e \u0446\u0440\u0432\u0435\u043d\u0430"],"Pale pink":["\u0411\u043b\u0435\u0434\u043e \u0440\u043e\u0437\u0430"],"Inline image":[],"Available block types":["\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u0435 \u0432\u0440\u0441\u0442\u0435 \u0431\u043b\u043e\u043a\u0430"],"Transform To:":["\u041f\u0440\u0435\u0442\u0432\u043e\u0440\u0438 \u0443:"],"Remove Block":["\u0423\u043a\u043b\u043e\u043d\u0438 \u0431\u043b\u043e\u043a"],"Open publish panel":["\u041e\u0442\u0432\u043e\u0440\u0438 \u0442\u0430\u0431\u043b\u0443 \u043e\u0431\u0458\u0430\u0432\u0435"],Dots:["\u0422\u0430\u0447\u043a\u0435"],"Wide Line":["\u0428\u0438\u0440\u043e\u043a\u0438 \u0440\u0435\u0434"],Large:["\u0412\u0435\u043b\u0438\u043a\u0430"],"Show download button":[],"Download button settings":[],"Link To":["\u0412\u0435\u0437\u0430 \u043a\u0430"],"Text link settings":[],pdf:["pdf"],document:["\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442"],"Copy URL":["\u0423\u043c\u043d\u043e\u0436\u0438 URL"],"Write file name\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u0438\u043c\u0435 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0435\u2026"],"Edit file":["\u0423\u0440\u0435\u0434\u0438 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0443"],File:["\u0414\u0430\u0442\u043e\u0442\u0435\u043a\u0430"],"A single column within a columns block.":["\u0408\u0435\u0434\u0430\u043d \u0441\u0442\u0443\u043f\u0430\u0446 \u0443\u043d\u0443\u0442\u0430\u0440 \u0431\u043b\u043e\u043a\u0430 \u0441\u0442\u0443\u043f\u0430\u0446\u0430."],Column:["\u0421\u0442\u0443\u043f\u0430\u0446"],Outline:["\u041e\u0431\u0440\u0438\u0441"],Loop:["\u041f\u0435\u0442\u0459\u0430"],Autoplay:["\u0421\u0430\u043c\u043e\u043f\u0443\u0448\u0442\u0430\u045a\u0435"],"Playback Controls":["\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0435 \u0440\u0435\u043f\u0440\u043e\u0434\u0443\u043a\u0446\u0438\u0458\u0435"],"Close dialog":["\u0417\u0430\u0442\u0432\u043e\u0440\u0438 \u0434\u0438\u0458\u0430\u043b\u043e\u0433"],"Sorry, this file type is not permitted for security reasons.":["\u0416\u0430\u043e \u043d\u0430\u043c \u0458\u0435, \u043e\u0432\u0430 \u0432\u0440\u0441\u0442\u0430 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0430 \u043d\u0438\u0458\u0435 \u0434\u043e\u0437\u0432\u043e\u0459\u0435\u043d\u0430 \u0438\u0437 \u0431\u0435\u0437\u0431\u0435\u0434\u043e\u043d\u043e\u0441\u043d\u0438\u0445 \u0440\u0430\u0437\u043b\u043e\u0433\u0430."],"Disable tips":["\u041e\u043d\u0435\u043c\u043e\u0433\u0443\u045b\u0438 \u0441\u0430\u0432\u0435\u0442\u0435"],"Got it":["\u0420\u0430\u0437\u0443\u043c\u0435\u043c"],"See next tip":["\u0412\u0438\u0434\u0438 \u0441\u043b\u0435\u0434\u0435\u045b\u0438 \u0441\u0430\u0432\u0435\u0442"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u041a\u0430\u0434\u0430 \u0441\u0442\u0435 \u0441\u043f\u0440\u0435\u043c\u043d\u0438, \u043f\u0440\u0435\u0434\u0430\u0458\u0442\u0435 \u0441\u0432\u043e\u0458 \u0440\u0430\u0434 \u043d\u0430 \u043f\u0440\u0435\u0433\u043b\u0435\u0434 \u0438 \u0443\u0440\u0435\u0434\u043d\u0438\u043a \u045b\u0435 \u043c\u043e\u045b\u0438 \u0434\u0430 \u0433\u0430 \u043e\u0434\u043e\u0431\u0440\u0438 \u0437\u0430 \u0432\u0430\u0441."],"Are you ready to submit for review?":["\u0414\u0430 \u043b\u0438 \u0441\u0442\u0435 \u0441\u043f\u0440\u0435\u043c\u043d\u0438 \u0437\u0430 \u043f\u0440\u0435\u0434\u0430\u0432\u0430\u045a\u0435 \u043d\u0430 \u043f\u0440\u0435\u0433\u043b\u0435\u0434?"],"Replace image":["\u0417\u0430\u043c\u0435\u043d\u0438 \u0441\u043b\u0438\u043a\u0443"],"Remove image":["\u0423\u043a\u043b\u043e\u043d\u0438 \u0441\u043b\u0438\u043a\u0443"],"Error while uploading file %s to the media library.":["\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438\u043b\u0438\u043a\u043e\u043c \u043e\u0442\u043f\u0440\u0435\u043c\u0430\u045a\u0430 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0435 %s \u0443 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430."],"This file exceeds the maximum upload size for this site.":["\u041e\u0432\u0430 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0430 \u043f\u0440\u0435\u0432\u0430\u0437\u0438\u043b\u0430\u0437\u0438 \u043d\u0430\u0458\u0432\u0435\u045b\u0443 \u0434\u043e\u0437\u0432\u043e\u0459\u0435\u043d\u0443 \u0432\u0435\u043b\u0438\u0447\u0438\u043d\u0443 \u0437\u0430 \u043e\u0442\u043f\u0440\u0435\u043c\u0430\u045a\u0435 \u043e\u0432\u043e\u0433 \u0432\u0435\u0431 \u043c\u0435\u0441\u0442\u0430."],"View the autosave":["\u0412\u0438\u0434\u0438 \u0430\u0443\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u0441\u043d\u0438\u043c\u0459\u0435\u043d\u043e \u0438\u0437\u0434\u0430\u045a\u0435"],"There is an autosave of this post that is more recent than the version below.":["\u041f\u043e\u0441\u0442\u043e\u0458\u0438 \u0430\u0443\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u0438 \u0441\u043d\u0438\u043c\u0459\u0435\u043d\u043e \u0438\u0437\u0434\u0430\u045a\u0435 \u043e\u0432\u043e\u0433 \u0447\u043b\u0430\u043d\u043a\u0430 \u043a\u043e\u0458\u0435 \u0458\u0435 \u043d\u043e\u0432\u0438\u0458\u0435 \u043d\u0435\u0433\u043e \u0438\u0437\u0434\u0430\u045a\u0435 \u0438\u0441\u043f\u043e\u0434."],Autosaving:["\u0410\u0443\u0442\u043e\u043c\u0430\u0442\u0441\u043a\u043e \u0441\u043d\u0438\u043c\u0430\u045a\u0435"],"Enter URL here\u2026":["\u041e\u0432\u0434\u0435 \u0443\u043d\u0435\u0441\u0438\u0442\u0435 URL\u2026"],"Pin to toolbar":["\u0417\u0430\u043a\u0430\u0447\u0438 \u043d\u0430 \u0442\u0440\u0430\u043a\u0443 \u0441\u0430 \u0430\u043b\u0430\u0442\u043a\u0430\u043c\u0430"],"Unpin from toolbar":["\u041e\u0442\u043a\u0430\u0447\u0438 \u0441\u0430 \u0442\u0440\u0430\u043a\u0435 \u0441\u0430 \u0430\u043b\u0430\u0442\u043a\u0430\u043c\u0430"],"Insert a table \u2014 perfect for sharing charts and data.":["\u0423\u043c\u0435\u0442\u043d\u0438\u0442\u0435 \u0442\u0430\u0431\u0435\u043b\u0443 \u2014 \u0441\u0430\u0432\u0440\u0448\u0435\u043d\u043e \u0437\u0430 \u0434\u0435\u0459\u0435\u045a\u0435 \u0433\u0440\u0430\u0444\u0438\u043a\u043e\u043d\u0430 \u0438 \u043f\u043e\u0434\u0430\u0442\u0430\u043a\u0430."],"Fixed width table cells":["\u041d\u0435\u043f\u0440\u043e\u043c\u0435\u045a\u0438\u0432\u0430 \u0448\u0438\u0440\u0438\u043d\u0430 \u045b\u0435\u043b\u0438\u0458\u0430 \u0442\u0430\u0431\u0435\u043b\u0435"],"Table Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0442\u0430\u0431\u0435\u043b\u0435"],"Add text that respects your spacing and tabs, and also allows styling.":["\u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u0442\u0435\u043a\u0441\u0442 \u043a\u043e\u0458\u0438 \u043f\u043e\u0448\u0442\u0443\u0458\u0435 \u0432\u0430\u0448\u0435 \u043f\u0440\u043e\u0440\u0435\u0434\u0435 \u0438 \u0442\u0430\u0431\u0443\u043b\u0430\u0442\u043e\u0440\u0435 \u0438 \u0442\u0430\u043a\u043e\u0452\u0435 \u043e\u043c\u043e\u0433\u0443\u045b\u0430\u0432\u0430 \u0441\u0442\u0438\u043b\u0438\u0437\u043e\u0432\u0430\u045a\u0435."],"Display a list of your most recent posts.":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u0430\u043a \u0441\u0432\u043e\u0458\u0438\u0445 \u0441\u043a\u043e\u0440\u0430\u0448\u045a\u0438\u0445 \u0447\u043b\u0430\u043d\u0430\u043a\u0430."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u0431\u043b\u043e\u043a \u043a\u043e\u0458\u0438 \u043f\u0440\u0438\u043a\u0430\u0437\u0443\u0458\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u043f\u043e\u0432\u0443\u0447\u0435\u043d \u0441\u0430 \u0434\u0440\u0443\u0433\u0438\u0445 \u0432\u0435\u0431 \u043c\u0435\u0441\u0442\u0430 \u043a\u0430\u043e \u0448\u0442\u043e \u0441\u0443 \u0422\u0432\u0438\u0442\u0435\u0440, \u0418\u043d\u0441\u0442\u0430\u0433\u0440\u0430\u043c \u0438\u043b\u0438 \u0408\u0443\u0442\u0458\u0443\u0431."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u0431\u043b\u043e\u043a \u043a\u043e\u0458\u0438 \u043f\u0440\u0438\u043a\u0430\u0437\u0443\u0458\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0443 \u0432\u0438\u0448\u0435 \u0441\u0442\u0443\u043f\u0430\u0446\u0430, \u0437\u0430\u0442\u0438\u043c \u0434\u043e\u0434\u0430\u0458\u0442\u0435 \u043a\u043e\u0458\u0438 \u0433\u043e\u0434 \u0431\u043b\u043e\u043a \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430 \u0436\u0435\u043b\u0438\u0442\u0435."],"Error loading block: %s":["\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438\u043b\u0438\u043a\u043e\u043c \u0443\u0447\u0438\u0442\u0430\u0432\u0430\u045a\u0430 \u0431\u043b\u043e\u043a\u0430: %s"],"Unknown error":["\u041d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0430 \u0433\u0440\u0435\u0448\u043a\u0430"],"Embed Handler":["\u0414\u0440\u0436\u0430\u0447 \u0443\u0433\u043d\u0435\u0436\u0452\u0438\u0432\u0430\u045a\u0430"],"term\x04Remove %s":["\u0423\u043a\u043b\u043e\u043d\u0438 %s"],"Copy the permalink":["\u0423\u043c\u043d\u043e\u0436\u0438 \u0441\u0442\u0430\u043b\u043d\u0443 \u0432\u0435\u0437\u0443"],"Permalink copied":["\u0421\u0442\u0430\u043b\u043d\u0430 \u0432\u0435\u0437\u0430 \u0458\u0435 \u0443\u043c\u043d\u043e\u0436\u0435\u043d\u0430"],"Height in pixels":["\u0412\u0438\u0441\u0438\u043d\u0430 \u0443 \u043f\u0438\u043a\u0441\u0435\u043b\u0438\u043c\u0430"],"Spacer Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0440\u0430\u0437\u043c\u0430\u043a\u043d\u0438\u0446\u0435"],Spacer:["\u0420\u0430\u0437\u043c\u0430\u043a\u043d\u0438\u0446\u0430"],"Toggle to show a large initial letter.":["\u0418\u0437\u043e\u043a\u0440\u0435\u043d\u0438 \u043f\u0440\u0438\u043a\u0430\u0437 \u0432\u0435\u043b\u0438\u043a\u043e\u0433 \u043f\u043e\u0447\u0435\u0442\u043d\u043e\u0433 \u0441\u043b\u043e\u0432\u0430."],"Showing large initial letter.":["\u041f\u0440\u0438\u043a\u0430\u0437\u0443\u0458\u0435 \u0441\u0435 \u0432\u0435\u043b\u0438\u043a\u043e \u043f\u043e\u0447\u0435\u0442\u043d\u043e \u0441\u043b\u043e\u0432\u043e."],"Name:":["\u0418\u043c\u0435:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s \u043e\u0434 %3$s)"],"Remove item":["\u0423\u043a\u043b\u043e\u043d\u0438 \u0441\u0442\u0430\u0432\u043a\u0443"],"Color code: %s":["\u041a\xf4\u0434 \u0431\u043e\u0458\u0435: %s"],"Skip to the selected block":["\u0421\u043a\u043e\u0447\u0438 \u043d\u0430 \u0438\u0437\u0430\u0431\u0440\u0430\u043d\u0438 \u0431\u043b\u043e\u043a"],"Publish\u2026":["\u041e\u0431\u0458\u0430\u0432\u0438\u2026"],"Schedule\u2026":["\u0417\u0430\u043a\u0430\u0436\u0438\u2026"],"Edit post permalink":["\u0423\u0440\u0435\u0434\u0438 \u0441\u0442\u0430\u043b\u043d\u0443 \u0432\u0435\u0437\u0443 \u0447\u043b\u0430\u043d\u043a\u0430"],"Show Block Settings":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0431\u043b\u043e\u043a\u0430"],"Hide Block Settings":["\u0421\u0430\u043a\u0440\u0438\u0458 \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0431\u043b\u043e\u043a\u0430"],"Block settings closed":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0431\u043b\u043e\u043a\u0430 \u0441\u0443 \u0437\u0430\u0442\u0432\u043e\u0440\u0435\u043d\u0430"],"Close plugin":["\u0417\u0430\u0442\u0432\u043e\u0440\u0438 \u0434\u043e\u0434\u0430\u0442\u0430\u043a"],"Link settings":[],Unlink:["\u0423\u043a\u043b\u043e\u043d\u0438 \u0432\u0435\u0437\u0443"],"Page break":["\u041f\u0440\u0435\u043b\u043e\u043c \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435"],pagination:["\u043e\u0431\u0435\u043b\u0435\u0436\u0430\u0432\u0430\u045a\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"],"next page":["\u0441\u043b\u0435\u0434\u0435\u045b\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430"],"Image Size":["\u0412\u0435\u043b\u0438\u0447\u0438\u043d\u0430 \u0441\u043b\u0438\u043a\u0435"],Height:["\u0412\u0438\u0441\u0438\u043d\u0430"],Width:["\u0428\u0438\u0440\u0438\u043d\u0430"],"Image Dimensions":["\u0412\u0435\u043b\u0438\u0447\u0438\u043d\u0435 \u0441\u043b\u0438\u043a\u0435"],"Thumbnails are not cropped.":["\u0423\u043c\u0430\u045a\u0435\u043d\u0435 \u0441\u043b\u0438\u043a\u0435 \u043d\u0438\u0441\u0443 \u043e\u043f\u0441\u0435\u0447\u0435\u043d\u0435."],"Thumbnails are cropped to align.":["\u0423\u043c\u0430\u045a\u0435\u043d\u0435 \u0441\u043b\u0438\u043a\u0435 \u0441\u0443 \u043e\u043f\u0441\u0435\u0447\u0435\u043d\u0435 \u0437\u0430 \u043f\u043e\u0440\u0430\u0432\u043d\u0430\u045a\u0435."],"Media Library":["\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430"],Advanced:["\u041d\u0430\u043f\u0440\u0435\u0434\u043d\u043e"],"Add item":["\u0414\u043e\u0434\u0430\u0458 \u0441\u0442\u0430\u0432\u043a\u0443"],"Reset the template":["\u0420\u0435\u0441\u0435\u0442\u0443\u0458 \u0448\u0430\u0431\u043b\u043e\u043d"],"Keep it as is":["\u041e\u0441\u0442\u0430\u0432\u0438 \u0433\u0430 \u043a\u0430\u043a\u0430\u0432 \u0458\u0435\u0441\u0442\u0435"],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u0421\u0430\u0434\u0440\u0436\u0430\u0458 \u0432\u0430\u0448\u0435\u0433 \u0447\u043b\u0430\u043d\u043a\u0430 \u0441\u0435 \u043d\u0435 \u043f\u043e\u043a\u043b\u0430\u043f\u0430 \u0441\u0430 \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u043c \u0434\u043e\u0434\u0435\u0459\u0435\u043d\u043e\u043c \u0432\u0430\u0448\u043e\u0458 \u0432\u0440\u0441\u0442\u0438 \u0447\u043b\u0430\u043d\u0430\u043a\u0430."],"Resetting the template may result in loss of content, do you want to continue?":["\u0420\u0435\u0441\u0435\u0442\u043e\u0432\u0430\u045a\u0435 \u0448\u0430\u0431\u043b\u043e\u043d\u0430 \u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435 \u0433\u0443\u0431\u0438\u0442\u0430\u043a \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430. \u0414\u0430 \u043b\u0438 \u0436\u0435\u043b\u0438\u0442\u0435 \u0434\u0430 \u043d\u0430\u0441\u0442\u0430\u0432\u0438\u0442\u0435?"],"Document Statistics":["\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430"],"is now scheduled. It will go live on":["\u0458\u0435 \u0441\u0430\u0434\u0430 \u0437\u0430\u043a\u0430\u0437\u0430\u043d. \u0418\u045b\u0438 \u045b\u0435 \u0443\u0436\u0438\u0432\u043e"],Scheduled:["\u0417\u0430\u043a\u0430\u0437\u0430\u043d\u043e"],"Scheduling\u2026":["\u0417\u0430\u043a\u0430\u0437\u0438\u0432\u0430\u045a\u0435\u2026"],"Code editor selected":["\u0423\u0440\u0435\u0452\u0438\u0432\u0430\u0447 \u043a\xf4\u0434\u0430 \u0458\u0435 \u0438\u0437\u0430\u0431\u0440\u0430\u043d"],"Visual editor selected":["\u0412\u0438\u0434\u0459\u0438\u0432\u0438 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447 \u0458\u0435 \u0438\u0437\u0430\u0431\u0440\u0430\u043d"],Plugins:["\u0414\u043e\u0434\u0430\u0446\u0438"],"Custom Size":["\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0452\u0435\u043d\u0430 \u0432\u0435\u043b\u0438\u0447\u0438\u043d\u0430"],"Layout Elements":["\u0415\u043b\u0435\u043c\u0435\u043d\u0442\u0438 \u0440\u0430\u0441\u043f\u043e\u0440\u0435\u0434\u0430"],"term\x04%s removed":["%s \u0458\u0435 \u0443\u043a\u043b\u043e\u045a\u0435\u043d\u043e"],"term\x04%s added":["%s \u0458\u0435 \u0434\u043e\u0434\u0430\u0442\u043e"],"imperative verb\x04Preview":["\u041f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u0458"],"Block deleted.":["\u0411\u043b\u043e\u043a \u0458\u0435 \u043e\u0431\u0440\u0438\u0441\u0430\u043d."],"Block updated.":["\u0411\u043b\u043e\u043a \u0458\u0435 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u043d."],"Block created.":["\u0411\u043b\u043e\u043a \u0458\u0435 \u043d\u0430\u043f\u0440\u0430\u0432\u0459\u0435\u043d."],"Trashing failed":["\u041f\u043e\u043c\u0435\u0440\u0430\u045a\u0435 \u043d\u0430 \u043e\u0442\u043f\u0430\u0434 \u043d\u0438\u0458\u0435 \u0443\u0441\u043f\u0435\u043b\u043e"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["\u0418\u043c\u0430\u0442\u0435 \u043d\u0435\u0441\u0430\u0447\u0443\u0432\u0430\u043d\u0435 \u0438\u0437\u043c\u0435\u043d\u0435. \u0423\u043a\u043e\u043b\u0438\u043a\u043e \u043d\u0430\u0441\u0442\u0430\u0432\u0438\u0442\u0435, \u043e\u043d\u0435 \u045b\u0435 \u0431\u0438\u0442\u0438 \u0438\u0437\u0433\u0443\u0431\u0459\u0435\u043d\u0435."],"Document Outline":["\u041e\u0431\u0440\u0438\u0441 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430"],Paragraphs:["\u041f\u0430\u0441\u0443\u0441\u0438"],Headings:["\u0417\u0430\u0433\u043b\u0430\u0432\u0459\u0430"],Words:["\u0420\u0435\u0447\u0438"],"Content structure":["\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430"],Public:["\u0408\u0430\u0432\u043d\u043e"],"Protected with a password you choose. Only those with the password can view this post.":["\u0417\u0430\u0448\u0442\u0438\u045b\u0435\u043d \u043b\u043e\u0437\u0438\u043d\u043a\u043e\u043c \u043a\u043e\u0458\u0443 \u043e\u0434\u0430\u0431\u0435\u0440\u0435\u0442\u0435. \u0421\u0430\u043c\u043e \u043e\u043d\u0438 \u0441\u0430 \u043b\u043e\u0437\u0438\u043d\u043a\u043e\u043c \u043c\u043e\u0433\u0443 \u0434\u0430 \u0432\u0438\u0434\u0435 \u0447\u043b\u0430\u043d\u0430\u043a."],"Password Protected":["\u0417\u0430\u0448\u0442\u0438\u045b\u0435\u043d\u043e \u043b\u043e\u0437\u0438\u043d\u043a\u043e\u043c"],"Only visible to site admins and editors.":["\u0412\u0438\u0434\u0459\u0438\u0432 \u0441\u0430\u043c\u043e \u0443\u043f\u0440\u0430\u0432\u043d\u0438\u0446\u0438\u043c\u0430 \u0432\u0435\u0431 \u043c\u0435\u0441\u0442\u0430 \u0438 \u0443\u0440\u0435\u0434\u043d\u0438\u0446\u0438\u043c\u0430."],Private:["\u041f\u0440\u0438\u0432\u0430\u0442\u043d\u043e"],"Visible to everyone.":["\u0412\u0438\u0434\u0459\u0438\u0432 \u0441\u0432\u0438\u043c\u0430."],"Post Visibility":["\u0412\u0438\u0434\u0459\u0438\u0432\u043e\u0441\u0442 \u0447\u043b\u0430\u043d\u043a\u0430"],"Would you like to privately publish this post now?":["\u0414\u0430 \u043b\u0438 \u0436\u0435\u043b\u0438\u0442\u0435 \u0434\u0430 \u043e\u0434\u043c\u0430\u0445 \u043f\u0440\u0438\u0432\u0430\u0442\u043d\u043e \u043e\u0431\u0458\u0430\u0432\u0438\u0442\u0435 \u043e\u0432\u0430\u0458 \u0447\u043b\u0430\u043d\u0430\u043a?"],"Use a secure password":["\u041a\u043e\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043d\u0443 \u043b\u043e\u0437\u0438\u043d\u043a\u0443"],"Create password":["\u041d\u0430\u043f\u0440\u0430\u0432\u0438 \u043b\u043e\u0437\u0438\u043d\u043a\u0443"],"Move to Trash":[],"Parent Term":["\u041d\u0430\u0434\u0440\u0435\u0452\u0435\u043d\u0438 \u0447\u043b\u0430\u043d"],"Parent Category":["\u041d\u0430\u0434\u0440\u0435\u0452\u0435\u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430"],"Add new term":["\u0414\u043e\u0434\u0430\u0458 \u043d\u043e\u0432\u043e\u0433 \u0447\u043b\u0430\u043d\u0430"],"Add new category":["\u0414\u043e\u0434\u0430\u0458 \u043d\u043e\u0432\u0443 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0443"],Term:["\u0427\u043b\u0430\u043d"],Tag:["\u041e\u0437\u043d\u0430\u043a\u0430"],"Add New Term":["\u0414\u043e\u0434\u0430\u0458 \u043d\u043e\u0432\u043e\u0433 \u0447\u043b\u0430\u043d\u0430"],"Add New Tag":["\u0414\u043e\u0434\u0430\u0458 \u043d\u043e\u0432\u0443 \u043e\u0437\u043d\u0430\u043a\u0443"],"Switch to Draft":["\u041f\u0440\u043e\u043c\u0435\u043d\u0438 \u0443 \u043d\u0430\u0446\u0440\u0442"],"Are you sure you want to unpublish this post?":["\u0414\u0430 \u043b\u0438 \u0441\u0438\u0433\u0443\u0440\u043d\u043e \u0436\u0435\u043b\u0438\u0442\u0435 \u0434\u0430 \u043e\u0432\u0430\u0458 \u0447\u043b\u0430\u043d\u0430\u043a \u0432\u0438\u0448\u0435 \u043d\u0435 \u0431\u0443\u0434\u0435 \u043e\u0431\u0458\u0430\u0432\u0459\u0435\u043d?"],Immediately:["\u041e\u0434\u043c\u0430\u0445"],"Save Draft":["\u0421\u0430\u0447\u0443\u0432\u0430\u0458 \u043d\u0430\u0446\u0440\u0442"],Saving:["\u0421\u043d\u0438\u043c\u0430\u045a\u0435"],"Publish:":["\u041e\u0431\u0458\u0430\u0432\u0459\u0443\u0458\u0435 \u0441\u0435:"],"Visibility:":["\u0412\u0438\u0434\u0459\u0438\u0432\u043e\u0441\u0442:"],"Are you ready to publish?":["\u0414\u0430 \u043b\u0438 \u0441\u0442\u0435 \u0441\u043f\u0440\u0435\u043c\u043d\u0438 \u0437\u0430 \u043e\u0431\u0458\u0430\u0432\u0459\u0438\u0432\u0430\u045a\u0435?"],"Copy Link":["\u0423\u043c\u043d\u043e\u0436\u0438 \u0432\u0435\u0437\u0443"],"What\u2019s next?":["\u0428\u0442\u0430 \u0458\u0435 \u0441\u043b\u0435\u0434\u0435\u045b\u0435?"],"is now live.":["\u0441\u0430\u0434\u0430 \u0438\u0434\u0435 \u0443\u0436\u0438\u0432\u043e."],Published:["\u041e\u0431\u0458\u0430\u0432\u0459\u0435\u043d"],Schedule:["\u0417\u0430\u043a\u0430\u0436\u0438"],Update:["\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u0458"],"Submit for Review":["\u041f\u0440\u0435\u0434\u0430\u0458 \u043d\u0430 \u043f\u0440\u0435\u0433\u043b\u0435\u0434"],"Updating\u2026":["\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435\u2026"],"Publishing\u2026":["\u041e\u0431\u0458\u0430\u0432\u0459\u0438\u0432\u0430\u045a\u0435\u2026"],"Allow Pingbacks & Trackbacks":["\u0414\u043e\u0437\u0432\u043e\u043b\u0438 \u043f\u043e\u0432\u0440\u0430\u0442\u043d\u0435 \u0432\u0435\u0437\u0435 \u0438 \u043f\u043e\u0432\u0440\u0430\u0442\u043d\u0435 \u043f\u0438\u043d\u0433\u043e\u0432\u0435"],"Permalink:":["\u0421\u0442\u0430\u043b\u043d\u0430 \u0432\u0435\u0437\u0430:"],"Pending Review":["\u0427\u0435\u043a\u0430 \u043f\u0440\u0435\u0433\u043b\u0435\u0434"],"%d Revision":["%d \u0440\u0435\u0432\u0438\u0437\u0438\u0458\u0430","%d \u0440\u0435\u0432\u0438\u0437\u0438\u0458\u0435","%d \u0440\u0435\u0432\u0438\u0437\u0438\u0458\u0430"],"Suggestion:":["\u041f\u0440\u0435\u0434\u043b\u043e\u0433:"],"Post Format":["\u041e\u0431\u043b\u0438\u043a \u0447\u043b\u0430\u043d\u043a\u0430"],Chat:["\u040b\u0430\u0441\u043a\u0430\u045a\u0435"],Status:["\u0421\u0442\u0430\u045a\u0435"],Standard:["\u0423\u043e\u0431\u0438\u0447\u0430\u0458\u0435\u043d"],Aside:["\u0421\u0430 \u0441\u0442\u0440\u0430\u043d\u0435"],"Set Featured Image":[],"Learn more about manual excerpts":["\u0421\u0430\u0437\u043d\u0430\u0458\u0442\u0435 \u0432\u0438\u0448\u0435 \u043e \u0440\u0443\u0447\u043d\u0438\u043c \u043e\u0434\u043b\u043e\u043c\u0446\u0438\u043c\u0430"],"Write an excerpt (optional)":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043e\u0434\u043b\u043e\u043c\u0430\u043a (\u043d\u0435\u043e\u0431\u0430\u0432\u0435\u0437\u043d\u043e)"],"Allow Comments":["\u0414\u043e\u0437\u0432\u043e\u043b\u0438 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0435"],"Template:":["\u0428\u0430\u0431\u043b\u043e\u043d:"],"no parent":["\u043d\u0435\u043c\u0430 \u0440\u043e\u0434\u0438\u0442\u0435\u0459\u0430"],"no title":["\u043d\u0435\u043c\u0430 \u043d\u0430\u0441\u043b\u043e\u0432\u0430"],Order:["\u041f\u043e\u0440\u0435\u0434\u0430\u043a"],"No blocks found.":["\u041d\u0435\u043c\u0430 \u043f\u0440\u043e\u043d\u0430\u0452\u0435\u043d\u0438\u0445 \u0431\u043b\u043e\u043a\u043e\u0432\u0430."],"%d result found.":["%d \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442 \u0458\u0435 \u043f\u0440\u043e\u043d\u0430\u0452\u0435\u043d.","%d \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0430 \u0441\u0443 \u043f\u0440\u043e\u043d\u0430\u0452\u0435\u043d\u0430.","%d \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0430 \u0458\u0435 \u043f\u0440\u043e\u043d\u0430\u0452\u0435\u043d\u043e."],Saved:["\u0421\u0430\u0447\u0443\u0432\u0430\u043d\u043e"],Embeds:["\u0423\u0433\u043d\u0435\u0436\u0452\u0438\u0432\u0430\u045a\u0430"],Blocks:["\u0411\u043b\u043e\u043a\u043e\u0432\u0438"],"Search for a block":["\u0422\u0440\u0430\u0436\u0438 \u0431\u043b\u043e\u043a"],"Add block":["\u0414\u043e\u0434\u0430\u0458 \u0431\u043b\u043e\u043a"],"Add %s":["\u0414\u043e\u0434\u0430\u0458: %s"],"Copy Error":["\u0423\u043c\u043d\u043e\u0436\u0438 \u0433\u0440\u0435\u0448\u043a\u0443"],"Copy Post Text":["\u0423\u043c\u043d\u043e\u0436\u0438 \u0442\u0435\u043a\u0441\u0442 \u0447\u043b\u0430\u043d\u043a\u0430"],"Attempt Recovery":["\u041f\u043e\u043a\u0443\u0448\u0430\u0458 \u043e\u043f\u043e\u0440\u0430\u0432\u0430\u043a"],"The editor has encountered an unexpected error.":["\u0414\u043e\u0433\u043e\u0434\u0438\u043b\u0430 \u0441\u0435 \u043d\u0435\u043e\u0447\u0435\u043a\u0438\u0432\u0430\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u0441\u0430 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0435\u043c."],Undo:["\u0412\u0440\u0430\u0442\u0438"],Redo:["\u041f\u043e\u043d\u043e\u0432\u0438"],"(Multiple H1 headings are not recommended)":["(\u0412\u0438\u0448\u0435 H1 \u0437\u0430\u0433\u043b\u0430\u0432\u0459\u0430 \u043d\u0438\u0441\u0443 \u043f\u0440\u0435\u043f\u043e\u0440\u0443\u0447\u0435\u043d\u0430)"],"(Your theme may already use a H1 for the post title)":["(\u0412\u0430\u0448\u0430 \u0442\u0435\u043c\u0430 \u043c\u043e\u0436\u0434\u0430 \u0432\u0435\u045b \u043a\u043e\u0440\u0438\u0441\u0442\u0438 H1 \u0437\u0430 \u043d\u0430\u0441\u043b\u043e\u0432 \u0447\u043b\u0430\u043d\u043a\u0430)"],"(Incorrect heading level)":["(\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u043d\u0438 \u043d\u0438\u0432\u043e \u0437\u0430\u0433\u043b\u0430\u0432\u0459\u0430)"],"(Empty heading)":["(\u041f\u0440\u0430\u0437\u043d\u043e \u0437\u0430\u0433\u043b\u0430\u0432\u0459\u0435)"],"Block Styles":["\u0421\u0442\u0438\u043b\u043e\u0432\u0438 \u0431\u043b\u043e\u043a\u0430"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\u0414\u0430 \u043b\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043d\u0438 \u0434\u0430 \u0436\u0435\u043b\u0438\u0442\u0435 \u0434\u0430 \u043e\u0431\u0440\u0438\u0448\u0435\u0442\u0435 \u043e\u0432\u0430\u0458 \u0431\u043b\u043e\u043a \u0437\u0430 \u0432\u0438\u0448\u0435\u043a\u0440\u0430\u0442\u043d\u0443 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0443?\n\n\u0411\u0438\u045b\u0435 \u0442\u0440\u0430\u0458\u043d\u043e \u0443\u043a\u043b\u043e\u045a\u0435\u043d \u0441\u0430 \u0441\u0432\u0438\u0445 \u0447\u043b\u0430\u043d\u0430\u043a\u0430 \u0438 \u0441\u0442\u0440\u0430\u043d\u0430 \u043a\u043e\u0458\u0435 \u0433\u0430 \u043a\u043e\u0440\u0438\u0441\u0442\u0435."],"Convert to Regular Block":["\u041f\u0440\u0435\u0442\u0432\u043e\u0440\u0438 \u0443 \u0440\u0435\u0434\u043e\u0432\u0430\u043d \u0431\u043b\u043e\u043a"],"More options":["\u0412\u0438\u0448\u0435 \u043c\u043e\u0433\u0443\u045b\u043d\u043e\u0441\u0442\u0438"],"Edit visually":["\u0423\u0440\u0435\u0434\u0438 \u0432\u0438\u0434\u0459\u0438\u0432\u043e"],Duplicate:["\u0414\u0443\u043f\u043b\u0438\u0440\u0430\u0458"],"Blocks cannot be moved down as they are already at the bottom":["\u0411\u043b\u043e\u043a\u043e\u0432\u0438 \u043d\u0435 \u043c\u043e\u0433\u0443 \u0431\u0438\u0442\u0438 \u043f\u043e\u043c\u0435\u0440\u0435\u043d\u0438 \u043d\u0430\u0434\u043e\u043b\u0435 \u0437\u0430\u0442\u043e \u0448\u0442\u043e \u0441\u0443 \u0432\u0435\u045b \u043d\u0430 \u0434\u043d\u0443"],"Blocks cannot be moved up as they are already at the top":["\u0411\u043b\u043e\u043a\u043e\u0432\u0438 \u043d\u0435 \u043c\u043e\u0433\u0443 \u0431\u0438\u0442\u0438 \u043f\u043e\u043c\u0435\u0440\u0435\u043d\u0438 \u043d\u0430\u0433\u043e\u0440\u0435 \u0437\u0430\u0442\u043e \u0448\u0442\u043e \u0441\u0443 \u0432\u0435\u045b \u043d\u0430 \u0432\u0440\u0445\u0443"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["\u0411\u043b\u043e\u043a %s \u0458\u0435 \u0458\u0435\u0434\u0438\u043d\u0438 \u0431\u043b\u043e\u043a \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0438\u0442\u0438 \u043f\u043e\u043c\u0435\u0440\u0435\u043d"],"Edit as HTML":["\u0423\u0440\u0435\u0434\u0438 \u043a\u0430\u043e HTML"],"Convert to Blocks":["\u041f\u0440\u0435\u0442\u0432\u043e\u0440\u0438 \u0443 \u0431\u043b\u043e\u043a\u043e\u0432\u0435"],"Block: %s":["\u0411\u043b\u043e\u043a: %s"],"This block has encountered an error and cannot be previewed.":["\u0414\u043e\u0433\u043e\u0434\u0438\u043b\u0430 \u0441\u0435 \u0433\u0440\u0435\u0448\u043a\u0430 \u0441\u0430 \u043e\u0432\u0438\u043c \u0431\u043b\u043e\u043a\u043e\u043c \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0438\u0442\u0438 \u043f\u0440\u0435\u0433\u043b\u0435\u0434\u0430\u043d."],"No block selected.":["\u041d\u0435\u043c\u0430 \u043e\u0434\u0430\u0431\u0440\u0430\u043d\u043e\u0433 \u0431\u043b\u043e\u043a\u0430."],"Transform into:":["\u041f\u0440\u0435\u0442\u0432\u043e\u0440\u0438 \u0443:"],Remove:["\u0423\u043a\u043b\u043e\u043d\u0438"],"Find original":["\u041f\u0440\u043e\u043d\u0430\u0452\u0438 \u0438\u0437\u0432\u043e\u0440\u043d\u0438"],"Copy All Content":["\u0423\u043c\u043d\u043e\u0436\u0438 \u0441\u0430\u0432 \u0441\u0430\u0434\u0440\u0436\u0430\u0458"],"Copied!":["\u0423\u043c\u043d\u043e\u0436\u0435\u043d\u043e!"],"Additional settings are now available in the Editor block settings sidebar":["\u0414\u043e\u0434\u0430\u0442\u043d\u0430 \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0441\u0443 \u0441\u0430\u0434\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0443 \u0431\u043e\u0447\u043d\u043e\u0458 \u0442\u0440\u0430\u0446\u0438 \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430 \u0431\u043b\u043e\u043a\u0430"],Visibility:["\u0412\u0438\u0434\u0459\u0438\u0432\u043e\u0441\u0442"],"Status & Visibility":["\u0421\u0442\u0430\u045a\u0435 \u0438 \u0432\u0438\u0434\u0459\u0438\u0432\u043e\u0441\u0442"],"Page Attributes":["\u041e\u0441\u043e\u0431\u0438\u043d\u0435 \u0441\u0442\u0440\u0430\u043d\u0435"],Block:["\u0411\u043b\u043e\u043a"],Document:["\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442"],"Featured Image":["\u0418\u0437\u0434\u0432\u043e\u0458\u0435\u043d\u0430 \u0441\u043b\u0438\u043a\u0430"],"Close settings":["\u0417\u0430\u0442\u0432\u043e\u0440\u0438 \u043f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430"],"Editor content":["\u0421\u0430\u0434\u0440\u0436\u0430\u0458 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430"],Tools:["\u0410\u043b\u0430\u0442\u043a\u0435"],Editor:["\u0423\u0440\u0435\u0452\u0438\u0432\u0430\u0447"],"Code Editor":["\u0423\u0440\u0435\u0452\u0438\u0432\u0430\u0447 \u043a\xf4\u0434\u0430"],"Visual Editor":["\u0412\u0438\u0434\u0459\u0438\u0432\u0438 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447"],"Editor top bar":["\u0422\u0440\u0430\u043a\u0430 \u043d\u0430 \u0432\u0440\u0445\u0443 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447\u0430"],Settings:["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430"],Reset:["\u0420\u0435\u0441\u0435\u0442\u0443\u0458"],"Dismiss this notice":["\u0417\u0430\u043d\u0435\u043c\u0430\u0440\u0438 \u043e\u0432\u0443 \u043d\u0430\u043f\u043e\u043c\u0435\u043d\u0443"],"Item removed.":["\u0421\u0442\u0430\u0432\u043a\u0430 \u0458\u0435 \u0443\u043a\u043b\u043e\u045a\u0435\u043d\u0430."],"Item added.":["\u0421\u0442\u0430\u0432\u043a\u0430 \u0458\u0435 \u0434\u043e\u0434\u0430\u0442\u0430."],"Drop files to upload":["\u041f\u0440\u0435\u0432\u0443\u0446\u0438 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0435 \u0437\u0430 \u043e\u0442\u043f\u0440\u0435\u043c\u0430\u045a\u0435"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["\u0414\u043e\u0433\u043e\u0434\u0438\u043b\u0430 \u0441\u0435 \u043d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0430 \u0433\u0440\u0435\u0448\u043a\u0430."],"No results.":["\u041d\u0435\u043c\u0430 \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0430."],"%d result found, use up and down arrow keys to navigate.":["%d \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442 \u0458\u0435 \u043f\u0440\u043e\u043d\u0430\u0452\u0435\u043d, \u043a\u043e\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0441\u0442\u0440\u0435\u043b\u0438\u0446\u0435 \u0437\u0430 \u0433\u043e\u0440\u0435 \u0438 \u0434\u043e\u043b\u0435 \u0437\u0430 \u043a\u0440\u0435\u0442\u0430\u045a\u0435.","%d \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0430 \u0441\u0443 \u043f\u0440\u043e\u043d\u0430\u0452\u0435\u043d\u0430, \u043a\u043e\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0441\u0442\u0440\u0435\u043b\u0438\u0446\u0435 \u0437\u0430 \u0433\u043e\u0440\u0435 \u0438 \u0434\u043e\u043b\u0435 \u0437\u0430 \u043a\u0440\u0435\u0442\u0430\u045a\u0435.","%d \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0430 \u0441\u0443 \u043f\u0440\u043e\u043d\u0430\u0452\u0435\u043d\u0430, \u043a\u043e\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0441\u0442\u0440\u0435\u043b\u0438\u0446\u0435 \u0437\u0430 \u0433\u043e\u0440\u0435 \u0438 \u0434\u043e\u043b\u0435 \u0437\u0430 \u043a\u0440\u0435\u0442\u0430\u045a\u0435."],"(no title)":["(\u043d\u0435\u043c\u0430 \u043d\u0430\u0441\u043b\u043e\u0432\u0430)"],URL:["URL"],Submit:["\u041f\u0440\u0435\u0434\u0430\u0458"],Close:["\u0417\u0430\u0442\u0432\u043e\u0440\u0438"],"Insert link":[],"Edit link":[],Link:["\u0412\u0435\u0437\u0430"],Strikethrough:["\u041f\u0440\u0435\u0446\u0440\u0442\u0430\u043d\u043e"],Italic:["\u0418\u0441\u043a\u043e\u0448\u0435\u043d\u043e"],Bold:["\u041f\u043e\u0434\u0435\u0431\u0459\u0430\u043d\u043e"],"Remove link":[],"Number of items":["\u0411\u0440\u043e\u0458 \u0441\u0442\u0430\u0432\u043a\u0438"],All:["\u0421\u0432\u0438"],Category:["\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430"],"Z \u2192 A":["\u0428 \t \u0410"],"A \u2192 Z":["\u0410 \t \u0428"],"Oldest to Newest":["\u041e\u0434 \u043d\u0430\u0458\u0441\u0442\u0430\u0440\u0438\u0458\u0438\u0445 \u0434\u043e \u043d\u0430\u0458\u043d\u043e\u0432\u0438\u0458\u0438\u0445"],"Newest to Oldest":["\u041e\u0434 \u043d\u0430\u0458\u043d\u043e\u0432\u0438\u0458\u0438\u0445 \u0434\u043e \u043d\u0430\u0458\u0441\u0442\u0430\u0440\u0438\u0458\u0438\u0445"],"Order by":["\u041f\u043e\u0440\u0435\u0452\u0430\u0458 \u043f\u043e"],Select:["\u0418\u0437\u0430\u0431\u0435\u0440\u0438"],"Select or Upload Media":["\u041e\u0434\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0438\u043b\u0438 \u043e\u0442\u043f\u0440\u0435\u043c\u0438\u0442\u0435 \u0441\u0430\u0434\u0440\u0436\u0430\u0458"],Video:["\u0412\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441"],"Edit video":["\u0423\u0440\u0435\u0434\u0438 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441"],"Write\u2026":["\u041f\u0438\u0448\u0438\u0442\u0435\u2026"],poetry:["\u043f\u043e\u0435\u0437\u0438\u0458\u0430"],Verse:["\u0421\u0442\u0438\u0445"],"New Column":["\u041d\u043e\u0432\u0438 \u0441\u0442\u0443\u043f\u0430\u0446"],"Delete Column":["\u041e\u0431\u0440\u0438\u0448\u0438 \u0441\u0442\u0443\u043f\u0430\u0446"],"Add Column After":["\u0414\u043e\u0434\u0430\u0458 \u0441\u0442\u0443\u043f\u0430\u0446 \u043f\u043e\u0441\u043b\u0435"],"Add Column Before":["\u0414\u043e\u0434\u0430\u0458 \u0441\u0442\u0443\u043f\u0430\u0446 \u043f\u0440\u0435"],"Delete Row":["\u041e\u0431\u0440\u0438\u0448\u0438 \u0440\u0435\u0434"],"Add Row After":["\u0414\u043e\u0434\u0430\u0458 \u0440\u0435\u0434 \u043f\u043e\u0441\u043b\u0435"],"Add Row Before":["\u0414\u043e\u0434\u0430\u0458 \u0440\u0435\u0434 \u043f\u0440\u0435"],"Edit table":[],Table:["\u0422\u0430\u0431\u0435\u043b\u0430"],"Write subheading\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043f\u043e\u0434\u043d\u0430\u0441\u043b\u043e\u0432\u2026"],"Write shortcode here\u2026":["\u041e\u0432\u0434\u0435 \u043d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043a\u0440\u0430\u0442\u043a\u0438 \u043a\xf4\u0434\u2026"],Shortcode:["\u041a\u0440\u0430\u0442\u043a\u0438 \u043a\xf4\u0434"],divider:["\u0434\u0435\u043b\u0438\u043b\u0430\u0446"],"horizontal-line":["\u0432\u043e\u0434\u043e\u0440\u0430\u0432\u043d\u0438-\u0440\u0435\u0434"],Separator:["\u0420\u0430\u0441\u0442\u0430\u0432\u0459\u0430\u0447"],Quote:["\u0426\u0438\u0442\u0430\u0442"],"Write citation\u2026":[],"Write quote\u2026":[],Pullquote:[],"Write preformatted text\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u0442\u0435\u043a\u0441\u0442 \u043e\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d \u0443\u043d\u0430\u043f\u0440\u0435\u0434\u2026"],Preformatted:["\u041e\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043e \u0443\u043d\u0430\u043f\u0440\u0435\u0434"],text:["\u0442\u0435\u043a\u0441\u0442"],Paragraph:["\u041f\u0430\u0441\u0443\u0441"],"Font Size":["\u0412\u0435\u043b\u0438\u0447\u0438\u043d\u0430 \u0441\u043b\u043e\u0432\u043d\u043e\u0433 \u043b\u0438\u043a\u0430"],"Drop Cap":["\u0418\u043d\u0438\u0446\u0438\u0458\u0430\u043b"],"Text Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0442\u0435\u043a\u0441\u0442\u0430"],"Read more":["\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0458 \u0432\u0438\u0448\u0435"],"Write list\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u0430\u043a\u2026"],"numbered list":["\u043d\u0443\u043c\u0435\u0440\u0438\u0441\u0430\u043d \u0441\u043f\u0438\u0441\u0430\u043a"],"ordered list":["\u0443\u0440\u0435\u0452\u0435\u043d \u0441\u043f\u0438\u0441\u0430\u043a"],"bullet list":["\u0442\u0430\u0447\u043a\u0430\u0441\u0442\u0438 \u0441\u043f\u0438\u0441\u0430\u043a"],"Indent list item":["\u0423\u0432\u0443\u0446\u0438 \u0441\u0442\u0430\u0432\u043a\u0443 \u0441\u043f\u0438\u0441\u043a\u0430"],"Outdent list item":["\u0418\u0437\u0432\u0443\u0446\u0438 \u0441\u0442\u0430\u0432\u043a\u0443 \u0441\u043f\u0438\u0441\u043a\u0430"],"Convert to ordered list":["\u041f\u0440\u0435\u0442\u0432\u043e\u0440\u0438 \u0443 \u043d\u0443\u043c\u0435\u0440\u0438\u0441\u0430\u043d\u0438 \u0441\u043f\u0438\u0441\u0430\u043a"],"Convert to unordered list":["\u041f\u0440\u0435\u0442\u0432\u043e\u0440\u0438 \u0443 \u043d\u0435\u0443\u0440\u0435\u0452\u0435\u043d\u0438 \u0441\u043f\u0438\u0441\u0430\u043a"],List:["\u0421\u043f\u0438\u0441\u0430\u043a"],"recent posts":["\u0441\u043a\u043e\u0440\u0430\u0448\u045a\u0438 \u0447\u043b\u0430\u043d\u0446\u0438"],"No posts found.":["\u041d\u0435\u043c\u0430 \u043d\u0430\u0452\u0435\u043d\u0438\u0445 \u0447\u043b\u0430\u043d\u0430\u043a\u0430."],"Latest Posts":["\u041f\u043e\u0441\u043b\u0435\u0434\u045a\u0438 \u0447\u043b\u0430\u043d\u0446\u0438"],"Display post date":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0434\u0430\u0442\u0443\u043c \u0447\u043b\u0430\u043d\u043a\u0430"],"Grid view":[],"List view":[],photo:["\u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0458\u0430"],"Image Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0441\u043b\u0438\u043a\u0435"],Image:["\u0421\u043b\u0438\u043a\u0430"],Preview:["\u041f\u0440\u0435\u0433\u043b\u0435\u0434"],embed:["\u0443\u0433\u043d\u0435\u0436\u0452\u0438\u0432\u0430\u045a\u0435"],"Custom HTML":["\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0452\u0435\u043d\u0438 HTML"],subtitle:["\u043f\u043e\u0434\u043d\u0430\u043f\u0438\u0441"],title:["\u043d\u0430\u0441\u043b\u043e\u0432"],Heading:["\u0417\u0430\u0433\u043b\u0430\u0432\u0459\u0435"],"Write heading\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u0437\u0430\u0433\u043b\u0430\u0432\u0459\u0435\u2026"],"Heading %d":["\u0417\u0430\u0433\u043b\u0430\u0432\u0459\u0435 %d"],Level:["\u041d\u0438\u0432\u043e"],"Heading Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0435 \u0437\u0430\u0433\u043b\u0430\u0432\u0459\u0430"],photos:["\u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0458\u0435"],images:["\u0441\u043b\u0438\u043a\u0435"],"Remove Image":["\u0423\u043a\u043b\u043e\u043d\u0438 \u0441\u043b\u0438\u043a\u0443"],None:["\u041d\u0435\u043c\u0430"],"Media File":["\u0414\u0430\u0442\u043e\u0442\u0435\u0446\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458\u0430"],"Attachment Page":["\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0438 \u043f\u0440\u0438\u043b\u043e\u0433\u0430"],"Crop Images":["\u041e\u043f\u0441\u0435\u0446\u0430\u045a\u0435 \u0441\u043b\u0438\u043a\u0430"],"Gallery Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u0433\u0430\u043b\u0435\u0440\u0438\u0458\u0435"],Gallery:["\u0413\u0430\u043b\u0435\u0440\u0438\u0458\u0430"],Classic:["\u041a\u043b\u0430\u0441\u0438\u0447\u043d\u0438"],video:["\u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f\u0438\u0441"],audio:["\u0437\u0432\u0443\u0447\u043d\u0438 \u0437\u0430\u043f\u0438\u0441"],music:["\u043c\u0443\u0437\u0438\u043a\u0430"],image:["\u0441\u043b\u0438\u043a\u0430"],blog:["\u0431\u043b\u043e\u0433"],post:["\u0447\u043b\u0430\u043d\u0430\u043a"],"Embedded content from %s":["\u0423\u0433\u043d\u0435\u0436\u0452\u0435\u043d\u0438 \u0441\u0430\u0434\u0440\u0436\u0430\u0458 \u0441\u0430 %s"],"Enter URL to embed here\u2026":["\u041e\u0432\u0434\u0435 \u0443\u043d\u0435\u0441\u0438\u0442\u0435 URL \u0437\u0430 \u0443\u0433\u043d\u0435\u0436\u0452\u0438\u0432\u0430\u045a\u0435\u2026"],"%s URL":[],"Embedding\u2026":["\u0423\u0433\u043d\u0435\u0436\u0452\u0438\u0432\u0430\u045a\u0435\u2026"],"Write title\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043d\u0430\u0441\u043b\u043e\u0432\u2026"],"Fixed Background":["\u041d\u0435\u043f\u043e\u043a\u0440\u0435\u0442\u043d\u0430 \u043f\u043e\u0437\u0430\u0434\u0438\u043d\u0430"],"Edit image":["\u0423\u0440\u0435\u0434\u0438 \u0441\u043b\u0438\u043a\u0443"],Columns:["\u0421\u0442\u0443\u043f\u0446\u0438"],Experiments:[],Code:["\u041a\xf4\u0434"],"Write code\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043a\xf4\u0434\u2026"],Categories:["\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0435"],"Show Hierarchy":["\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u0445\u0438\u0458\u0435\u0440\u0430\u0440\u0445\u0438\u0458\u0443"],"Show post counts":["\u041f\u043e\u043a\u0430\u0436\u0438 \u0431\u0440\u043e\u0458 \u0447\u043b\u0430\u043d\u0430\u043a\u0430"],"Categories Settings":["\u041f\u043e\u0434\u0435\u0448\u0430\u0432\u0430\u045a\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0430"],"Add text\u2026":["\u0414\u043e\u0434\u0430\u0458\u0442\u0435 \u0442\u0435\u043a\u0441\u0442\u2026"],Button:["\u0414\u0443\u0433\u043c\u0435"],Apply:["\u041f\u0440\u0438\u043c\u0435\u043d\u0438"],"Text Color":["\u0411\u043e\u0458\u0430 \u0442\u0435\u043a\u0441\u0442\u0430"],"Background Color":["\u0411\u043e\u0458\u0430 \u043f\u043e\u0437\u0430\u0434\u0438\u043d\u0435"],"Block has been deleted or is unavailable.":["\u0411\u043b\u043e\u043a \u0458\u0435 \u043e\u0431\u0440\u0438\u0441\u0430\u043d \u043e\u0431\u0440\u0438\u0441\u0430\u043d \u0438\u043b\u0438 \u0458\u0435 \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u0430\u043d."],"Reusable Blocks":["\u0411\u043b\u043e\u043a\u043e\u0432\u0438 \u0437\u0430 \u0432\u0438\u0448\u0435\u043a\u0440\u0430\u0442\u043d\u0443 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0443"],Cancel:["\u041e\u0434\u0443\u0441\u0442\u0430\u043d\u0438"],Edit:["\u0423\u0440\u0435\u0434\u0438"],"Edit audio":["\u0423\u0440\u0435\u0434\u0438 \u0437\u0432\u0443\u0447\u043d\u0438 \u0437\u0430\u043f\u0438\u0441"],"Write caption\u2026":["\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043d\u0430\u0442\u043f\u0438\u0441\u2026"],"Use URL":["\u041a\u043e\u0440\u0438\u0441\u0442\u0438 URL"],Audio:["\u0417\u0432\u0443\u0447\u043d\u0438 \u0437\u0430\u043f\u0438\u0441"],Upload:["\u041e\u0442\u043f\u0440\u0435\u043c\u0438"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML \u0441\u0438\u0434\u0440\u043e"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u041e\u0432\u0430 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u0458\u0430 \u0431\u043e\u0458\u0430 \u0458\u0435 \u043c\u043e\u0436\u0434\u0430 \u0442\u0435\u0448\u043a\u0430 \u0437\u0430 \u0447\u0438\u0442\u0430\u045a\u0435. \u041f\u0440\u043e\u0431\u0430\u0458\u0442\u0435 \u0434\u0430 \u043a\u043e\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0441\u0432\u0435\u0442\u043b\u0438\u0458\u0443 \u0431\u043e\u0458\u0443 \u043f\u043e\u0437\u0430\u0434\u0438\u043d\u0435 \u0438/\u0438\u043b\u0438 \u0442\u0430\u043c\u043d\u0438\u0458\u0443 \u0431\u043e\u0458\u0443 \u0442\u0435\u043a\u0441\u0442\u0430."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u041e\u0432\u0430 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u0458\u0430 \u0431\u043e\u0458\u0430 \u0458\u0435 \u043c\u043e\u0436\u0434\u0430 \u0442\u0435\u0448\u043a\u0430 \u0437\u0430 \u0447\u0438\u0442\u0430\u045a\u0435. \u041f\u0440\u043e\u0431\u0430\u0458\u0442\u0435 \u0434\u0430 \u043a\u043e\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u0442\u0430\u043c\u043d\u0438\u0458\u0443 \u0431\u043e\u0458\u0443 \u043f\u043e\u0437\u0430\u0434\u0438\u043d\u0435 \u0438/\u0438\u043b\u0438 \u0441\u0432\u0435\u0442\u043b\u0438\u0458\u0443 \u0431\u043e\u0458\u0443 \u0442\u0435\u043a\u0441\u0442\u0430."],Clear:["\u041e\u0447\u0438\u0441\u0442\u0438"],"Custom color picker":["\u0411\u0438\u0440\u0430\u0447 \u043f\u0440\u0438\u043b\u0430\u0433\u043e\u0452\u0435\u043d\u0435 \u0431\u043e\u0458\u0435"],"Color: %s":["\u0411\u043e\u0458\u0430: %s"],"Full Width":[],"Wide Width":[],Widgets:["\u0412\u0438\u045f\u0435\u0442\u0438"],Formatting:["\u041e\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u045a\u0435"],"Common Blocks":["\u0427\u0435\u0441\u0442\u0438 \u0431\u043b\u043e\u043a\u043e\u0432\u0438"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["\u0428\u0442\u0430\u043c\u043f\u0430\u045a\u0435 \u043e\u0434 1440. \u041e\u0432\u043e \u0458\u0435 \u0434\u043e\u0434\u0430\u0442\u0430\u043a \u0443 \u0438\u0437\u0433\u0440\u0430\u0434\u045a\u0438 \u0437\u0430 \u043d\u043e\u0432\u0438 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u0447 \u0431\u043b\u043e\u043a\u043e\u0432\u0430 \u0443 \u043e\u0441\u043d\u043e\u0432\u0438."],"Add title":["\u0414\u043e\u0434\u0430\u0458 \u043d\u0430\u0441\u043b\u043e\u0432"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["\u0410\u0443\u0442\u043e\u0440"],Slug:["\u041f\u043e\u0434\u043b\u043e\u0436\u0430\u043a"],Discussion:["\u0414\u0438\u0441\u043a\u0443\u0441\u0438\u0458\u0430"],"Custom Fields":["\u041f\u0440\u0438\u043b\u0430\u0433\u043e\u0452\u0435\u043d\u0430 \u043f\u043e\u0459\u0430"],Excerpt:["\u041e\u0434\u043b\u043e\u043c\u0430\u043a"],Publish:["\u041e\u0431\u0458\u0430\u0432\u0438"],Metadata:["\u041c\u0435\u0442\u0430\u043f\u043e\u0434\u0430\u0446\u0438"],Save:["\u0421\u0430\u0447\u0443\u0432\u0430\u0458"],Documentation:["\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0458\u0430"],"Select Category":["\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0458\u0443"],"(Untitled)":["(\u0411\u0435\u0437 \u043d\u0430\u0441\u043b\u043e\u0432\u0430)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["\u0422\u0438\u043c \u0413\u0443\u0442\u0435\u043d\u0431\u0435\u0440\u0433"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["\u0413\u0443\u0442\u0435\u043d\u0431\u0435\u0440\u0433"],Demo:["\u041f\u043e\u043a\u0430\u0437\u0438\u0432\u0430\u045a\u0435"],"%s ago":["%s \u0440\u0430\u043d\u0438\u0458\u0435"],"Block style name must be a string.":[]}},864,[]); +__d(function(e,t,a,r,n,i,l){n.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":["Du \xe4r f\xf6rmodligen offline."],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":["Mediafilen har ersatts"],Replace:["Ers\xe4tt"],"Choose pattern":["V\xe4lj m\xf6nster"],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":["F\xf6rinst\xe4ll storlek"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":["\xd6ppna mediabibliotek"],Next:["N\xe4sta"],Previous:["F\xf6reg\xe5ende"],Finish:["Slutf\xf6r"],"Page %1$d of %2$d":["Sida %1$d av %2$d"],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":["G\xf6r varje block till ditt eget"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":["L\xc4GG TILL MEDIA"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":["L\xe4r k\xe4nna blockbiblioteket"],"Welcome Guide":["V\xe4lkomstguide"],"Enable Page Templates":["Aktivera sidmallar"],"Page Templates":["Sidmallar"],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":["V\xe4lkommen till blockredigeraren"],"Get started":["Kom ig\xe5ng"],inserter:["infogaren"],"Post Title":["Inl\xe4ggsrubrik"],"Add nofollow to link":["Addera \u201dnofollow\u201d till l\xe4nken"],"Link Settings":["L\xe4nkinst\xe4llningar"],"Add Submenu":["L\xe4gg till undermeny"],"Add link\u2026":["L\xe4gg till l\xe4nk ..."],Dark:["M\xf6rk"],Light:["Ljus"],recording:["inspelning"],podcast:["podcast"],sound:["ljud"],"Array of instance changes":["Array med instansf\xf6r\xe4ndringar"],"Current widget instance":["Aktuell widget-instans"],"Template parts to include in your templates.":["Malldelar som beh\xf6ver inkluderas i dina mallar."],"Template parts list":["Lista med malldelar"],"Template parts list navigation":["Navigering i lista med malldelar"],"Filter template parts list":["Filtrera listan med malldelar"],"Uploaded to this template part":["Uppladdad till denna malldel"],"Insert into template part":["Infoga i malldel"],"Template part archives":["Malldelsarkiv"],"No template parts found in Trash.":["Inga malldelar hittades i papperskorgen."],"No template parts found.":["Inga malldelar hittades."],"Parent Template Part:":["\xd6verordnad malldel:"],"Search Template Parts":["S\xf6k malldelar"],"All Template Parts":["Alla malldelar"],"View Template Part":["Visa malldel"],"Edit Template Part":["Redigera malldel"],"New Template Part":["Ny malldel"],"Add New Template Part":["L\xe4gg till ny malldel"],"Template Part\x04Add New":["L\xe4gg till ny"],"Admin Menu text\x04Template Parts":["Malldelar"],"Template Part":["Malldel"],"Template Parts":["Malldelar"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river."],Navigation:["Navigation"],"Loading Navigation\u2026":["H\xe4mtar navigation ..."],"Navigation Structure":["Navigationsstruktur"],"Create empty":["Skapa tom"],"Create from all top pages":["Skapa fr\xe5n alla popul\xe4ra sidor"],"Create a Navigation from all existing pages, or create an empty one.":["Skapa navigeringsmeny fr\xe5n alla befintliga sidor, eller skapa en tom."],"Navigation Link":["Navigationsl\xe4nk"],"(Note: many devices and browsers do not display this text.)":["(Obs: m\xe5nga enheter och webbl\xe4sare visar inte denna text.)"],"Describe the role of this image on the page.":["Beskriv rollen f\xf6r denna bild p\xe5 sidan."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["V\xe4xla mellan att anv\xe4nda samma v\xe4rde f\xf6r alla sk\xe4rmstorlekar och att anv\xe4nda ett unikt v\xe4rde f\xf6r varje sk\xe4rmstorlek."],"Use the same %s on all screensizes.":["Anv\xe4nd samma %s p\xe5 alla sk\xe4rmstorlekar."],"Large screens":["Stora sk\xe4rmar"],"Medium screens":["Medelstora sk\xe4rmar"],"Small screens":["Sm\xe5 sk\xe4rmar"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["Styr egenskapen %1$s f\xf6r visningsomr\xe5de (viewport) %2$s."],Change:["\xc4ndra"],"Currently selected":["Vald f\xf6r n\xe4rvarande"],"Search or type url":["S\xf6k eller skriv URL"],"Press ENTER to add this link":["Tryck ENTER f\xf6r att l\xe4gga till denna l\xe4nk"],"Currently selected link settings":["F\xf6r n\xe4rvarande valda inst\xe4llningar f\xf6r l\xe4nkar"],"Generic label for block inserter button\x04Add block":["L\xe4gg till block"],"directly add the only allowed block\x04Add %s":["L\xe4gg till %s"],"%s block added":["Block av typen %s tillagt"],"Move %s":["Flytta %s"],"Extra Large":["Extra stor"],"Block breadcrumb":["Blockera synlig s\xf6kv\xe4g"],"Site Title":["Webbplatsrubrik"],"Open Colors Selector":["\xd6ppna f\xe4rgv\xe4ljare"],"Overlay Gradient":["Gradient f\xf6r \xf6verl\xe4gg"],"Templates list":["Mallista"],"Templates list navigation":["Navigation i mallista"],"Filter templates list":["Filtrera mallistan"],"Uploaded to this template":["Uppladdad till denna mall"],"Insert into template":["Infoga i mall"],"Template archives":["Mallarkiv"],"No templates found in Trash.":["Inga mallar hittades i papperskorgen."],"No templates found.":["Inga mallar hittades."],"Parent Template:":["\xd6verordnad mall:"],"Search Templates":["S\xf6k mallar"],"All Templates":["Alla mallar"],"View Template":["Visa mall"],"Edit Template":["Redigera mall"],"New Template":["Ny mall"],"Add New Template":["L\xe4gg till ny mall"],"Template\x04Add New":["L\xe4gg till ny"],"Admin Menu text\x04Templates":["Mallar"],Template:["Mall"],"No matching template found":["Ingen matchande mall hittades"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradientkod: %s"],"All content copied.":["Allt inneh\xe5ll har kopierats."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Uppladdningen av mediafilen misslyckades. Om det \xe4r ett foto eller en stor bild b\xf6r du minska dess storlek och f\xf6rs\xf6ka igen."],Gradient:["Gradient"],"Gradient Presets":["F\xf6rinst\xe4llda gradienter"],"No Preview Available.":["Ingen f\xf6rhandsvisning tillg\xe4nglig."],Midnight:["Midnatt"],"Electric grass":["Elektriskt gr\xe4s"],"Pale ocean":["Blekt hav"],"Luminous dusk":["Ljus skymning"],"Blush bordeaux":["Bordeaux-rodnad"],"Blush light purple":["Ljuslila rodnad"],"Cool to warm spectrum":["Kallt till varmt spektrum"],"Very light gray to cyan bluish gray":["Mycket ljust gr\xe5tt till cyanbl\xe5gr\xe5tt"],"Luminous vivid orange to vivid red":["Intensivt lysande orange till intensivt r\xf6tt"],"Luminous vivid amber to luminous vivid orange":["Intensivt lysande gult till intensivt lysande orange"],"Light green cyan to vivid green cyan":["Ljusgr\xf6n cyan till intensivt lysande cyan"],"Vivid cyan blue to vivid purple":["Intensivt cyanf\xe4rgat bl\xe5tt till intensivt lila"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 december 2018"],"February 21, 2019":["21 februari 2019"],"May 7, 2019":["7 maj 2019"],"Release Date":["Release-datum"],"Jazz Musician":["Jazzmusiker"],Version:["Version"],"Six.":["Sex."],"Five.":["Fem."],"Four.":["Fyra."],"Three.":["Tre."],"Two.":["Tv\xe5."],"One.":["Ett."],"One of the hardest things to do in technology is disrupt yourself.":["N\xe5got av det sv\xe5raste i teknikutveckling \xe4r att bryta mot sitt eget tankes\xe4tt."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["Allt d\xe4romkring \xe4r en n\xe4stan helt svart sk\xe4rm. N\xe4r kameran l\xe5ngsamt n\xe4rmar sig f\xf6nstret, som n\xe4rmast utg\xf6r ett frim\xe4rke i bilden, visar sig andra former..."],"Window, very small in the distance, illuminated.":["F\xf6nster, mycket litet p\xe5 avst\xe5nd, upplyst."],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU \u2013 FAINT DAWN \u2013 1940 (MINIATYR)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["G\xe4rdsmygen
f\xf6rtj\xe4nar levebr\xf6det
i det tysta."],"Welcome to the wonderful world of blocks\u2026":["V\xe4lkommen till den underbara v\xe4rlden av block\u2026"],"Snow Patrol":["Snow Patrol"],Dimensions:["Dimensioner"],"Minimum height in pixels":["Minsta h\xf6jd i pixlar"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Uppmaning till \xe5tg\xe4rd"],"In quoting others, we cite ourselves.":["Genom att citera andra, citerar vi oss sj\xe4lva."],cite:["citera"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc uppenbarar sig \u2014 stilla, sn\xf6t\xe4ckt och fridfullt."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["I en by i La Mancha, vars namn jag icke gitter draga mig till minnes, levde f\xf6r icke l\xe4nge sedan en av det slags adelsjunkrar, som \xe4ga en lans i dess st\xe4ll, en gammaldags l\xe4dersk\xf6ld, ett \xf6k och en vinthund."],"Block navigation":["Navigering mellan block"],"Enable Full Site Editing":["Aktivera redigering av hela webbplatsen"],"Full Site Editing":["Fullst\xe4ndig webbplatsredigering"],"Templates to include in your theme.":["Mall att inkludera i ditt tema."],Templates:["Mallar"],"Inserter Help Panel":["Hj\xe4lppanel f\xf6r infogaren"],"Pre-publish Checks":["Kontroller innan publicering"],"Please contact your site administrator to install new blocks.":["Kontakta din webbplatsadministrat\xf6r f\xf6r att installera nya block."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Inga block hittades i ditt bibliotek. Kontakta din webbplatsadministrat\xf6r f\xf6r att installera nya block."],"No blocks found in your library.":["Inga block hittades i ditt bibliotek."],"No blocks found in your library. These blocks can be downloaded and installed:":["Inga block hittades i ditt bibliotek. Dessa block kan laddas ner och installeras:"],"No blocks found in your library. We did find %d block available for download.":["Inga block hittades i ditt bibliotek. Vi hittade %d block tillg\xe4ngligt f\xf6r nedladdning.","Inga block hittades i ditt bibliotek. Vi hittade %d block tillg\xe4ngliga f\xf6r nedladdning."],"Block previews can\u2019t load.":["Blockf\xf6rhandsgranskningar kan inte ladda."],Retry:["F\xf6rs\xf6k igen"],"Block previews can't install.":["Blockf\xf6rhandsgranskningar kan inte installera."],"Updated %s":["Uppdaterade %s"],"%d active installation":["%d aktiv installation","%d aktiva installationer"],"This author has %d block, with an average rating of %d.":["Denna f\xf6rfattare har %d block, med ett genomsnittligt betyg p\xe5 %d.","Denna f\xf6rfattare har %d block, med ett genomsnittligt betyg p\xe5 %d."],"Authored by %s":["F\xf6rfattad av %s"],Add:["L\xe4gg till"],"%d total rating":["Totalt %d recension","Totalt %d recensioner"],"%s out of 5 stars":["%s av 5 stj\xe4rnor"],"Enter Address":["Ange adress"],"Pill Shape":["Pillerform"],"Logos Only":["Endast loggor"],"Create a block of links to your social media or external sites":["Skapa ett block med l\xe4nkar till dina sociala medier eller externa webbplatser"],"Social links":["Sociala l\xe4nkar"],"Open block navigator":["\xd6ppna blocknavigatorn"],"Attachment page":["Sida f\xf6r bilaga"],Fill:["Fyll"],"Link rel":["L\xe4nk-rel"],"Border Radius":["Kantradie"],"Write gallery caption\u2026":["Skriv galleribildtext\u2026"],"Content Blocks":["Inneh\xe5llsblock"],"Restore the backup":["\xc5terst\xe4ll s\xe4kerhetskopian"],"The backup of this post in your browser is different from the version below.":["S\xe4kerhetskopian av detta inl\xe4gg i din webbl\xe4sare skiljer sig fr\xe5n versionen nedan."],"Enable Block Directory search":["Aktivera s\xf6kning i blockkatalogen"],"Block Directory":["Blockkatalog"],"Unable to connect to the filesystem. Please confirm your credentials.":["Kunde inte ansluta till filsystemet. V\xe4nligen kontrollera dina uppgifter."],"Sorry, you are not allowed to install blocks.":["Du saknar beh\xf6righet f\xf6r att installera block."],"%1$d block is disabled.":["%1$d block \xe4r inaktiverat.","%1$d block \xe4r inaktiverade."],"Reverse List Numbering":["Omv\xe4nd listnumrering"],"Start Value":["Startv\xe4rde"],"Ordered List Settings":["Inst\xe4llningar f\xf6r numrerad lista"],"Clear Media":["Rensa media"],"block style\x04Circle Mask":["Cirkelmask"],"Default Style":["Standardstil"],"Not set":["Inte inst\xe4lld"],"While writing, you can press / to quickly insert new blocks.":["N\xe4r du skriver kan du trycka p\xe5 / f\xf6r att snabbt infoga nya block."],"Browse through the library to learn more about what each block does.":["Bl\xe4ddra igenom biblioteket f\xf6r att l\xe4ra dig mer om vad varje block g\xf6r."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Det finns block tillg\xe4ngligt f\xf6r allt slags inneh\xe5ll: infogning av text, rubriker, bilder, listor, videoklipp, tabeller och mycket mer."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["V\xe4lkommen till den underbara v\xe4rlden av block! Block \xe4r grunden f\xf6r allt inneh\xe5ll i redigeraren."],"Version of the content block format used by the object.":["Version av inneh\xe5llsblockformat som anv\xe4nds av objektet."],"HTML content for the object, transformed for display.":["HTML-inneh\xe5ll f\xf6r objektet, omvandlat f\xf6r visning."],"Content for the object, as it exists in the database.":["Objektets inneh\xe5ll, s\xe5 som det ser ut i databasen."],"The content for the object.":["Inneh\xe5llet f\xf6r objektet."],"Change column alignment":["\xc4ndra kolumnens justering"],"Align Column Right":["H\xf6gerst\xe4ll kolumnen"],"Align Column Center":["Centrera kolumnen"],"Align Column Left":["V\xe4nsterst\xe4ll kolumnen"],Color:["F\xe4rg"],"Vivid purple":["H\xe4ftigt lila"],"Disable & Reload":["Inaktivera och ladda om"],"Enable & Reload":["Aktivera och ladda om"],"A page reload is required for this change. Make sure your content is saved before reloading.":["F\xf6r denna \xe4ndring kr\xe4vs det att sidan laddas om. Se till att du har sparat inneh\xe5llet innan du laddar om sidan."],"Display these keyboard shortcuts.":["Visa dessa snabbkommandon f\xf6r tangentbordet."],"Experiments Settings":["Experimentella inst\xe4llningar"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg inneh\xe5ller n\xe5gra experimentella funktioner som du kan aktivera. Det \xe4r bara att v\xe4lja vilka du vill anv\xe4nda. Dessa funktioner kommer troligtvis att f\xf6r\xe4ndras, s\xe5 det \xe4r inte s\xe5 l\xe4mpligt att anv\xe4nda dem p\xe5 webbplats i produktion."],"Enable Widgets Screen and Legacy Widget Block":["Aktivera widget-vy och block f\xf6r traditionella widgetar"],"Experiment settings":["Experimentella inst\xe4llningar"],"Block name name must be a string.":["Blocknamn m\xe5ste vara en str\xe4ng."],Custom:["Anpassat"],Draft:["Utkast"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blocket \u201d%1$s\u201d inneh\xe5ller inte n\xe5gon stil med namnet \u201d%2$s\u201d."],"Learn more about anchors":["L\xe4r dig mer om ankare"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Skriv in ett eller ett par ord \u2013 utan mellanslag \u2013 f\xf6r att skapa en unik webbadress f\xf6r just denna rubrik, ett s\xe5 kallat \u201dankare\u201d. Sedan kommer du att kunna l\xe4nka direkt till just denna sektion p\xe5 sin sida."],"Widget Blocks (Experimental)":["Widget-block (experimentellt)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Ladda upp en videofil, v\xe4lj en fr\xe5n mediabiblioteket eller l\xe4gg till en med dess URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Ladda upp en bild, v\xe4lj en fr\xe5n mediabiblioteket eller l\xe4gg till en med dess URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Ladda upp en ljudfil, v\xe4lj en fr\xe5n mediabiblioteket eller l\xe4gg till en med dess URL."],"Upload a media file or pick one from your media library.":["Ladda upp en mediafil eller v\xe4lj en fr\xe5n mediabiblioteket."],Skip:["Hoppa \xf6ver"],"Select a pattern to start with.":["V\xe4lj ett m\xf6nster att b\xf6rja med."],"Add a page, link, or other item to your navigation.":["L\xe4gg till en sida, en l\xe4nk eller n\xe5got annat objekt i din navigeringsmeny."],"What's this?":["Vad \xe4r detta?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["L\xe5t inte s\xf6kmotorer f\xf6lja denna l\xe4nk."],"Provide more context about where the link goes.":["Ge mer kontext om vart l\xe4nken leder."],"Title Attribute":["Rubrikattribut"],"SEO Settings":["SEO-inst\xe4llningar"],Description:["Beskrivning"],"Open in new tab":["\xd6ppna i ny flik"],links:["l\xe4nkar"],navigation:["navigation"],menu:["meny"],"Add a navigation block to your site.":["L\xe4gg till ett navigeringsblock p\xe5 webbplatsen."],"Upload a file or pick one from your media library.":["Ladda upp en fil eller v\xe4lj en i mediabiblioteket."],"Learn more about embeds":["L\xe4r dig mer om inb\xe4ddningar"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Klistra in en l\xe4nk till inneh\xe5llet du vill visa p\xe5 din webbplats."],"Upload an image or video file, or pick one from your media library.":["Ladda upp en bild- eller videofil eller v\xe4lj en fr\xe5n mediabiblioteket."],"Three columns; wide center column":["Tre kolumner med bred kolumn i mitten"],"Three columns; equal split":["Tre j\xe4mnbreda kolumner"],"Two columns; two-thirds, one-third split":["Tv\xe5 kolumner uppdelade tv\xe5 resp. en tredjedel"],"Two columns; one-third, two-thirds split":["Tv\xe5 kolumner uppdelade en resp. tv\xe5 tredjedelar"],"Two columns; equal split":["Tv\xe5 j\xe4mnbreda kolumner"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Din webbplats saknar %s, s\xe5 det finns inget att visa just nu."],"More tools & options":["Fler verktyg och alternativ"],"Create Table":["Skapa tabell"],"Insert a table for sharing data.":["Infoga en tabell f\xf6r att dela data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["L\xf6s upp grupp"],"verb\x04Group":["Gruppera"],"Separate with commas or the Enter key.":["Separera med kommatecken eller Enter-tangenten."],"Separate with commas, spaces, or the Enter key.":["Separera med kommatecken, mellanslag eller Enter-tangenten."],"Separate multiple classes with spaces.":["Separera flera klasser med mellanslag."],"Move image forward":["Flytta bilden fram\xe5t"],"Move image backward":["Flytta bilden bak\xe5t"],"Sorry, you are not allowed to edit sidebars.":["Du har inte beh\xf6righet att redigera sidopaneler."],"Sorry, you are not allowed to read sidebars.":["Du har inte beh\xf6righet att l\xe4sa sidopaneler."],"The sidebar\u2019s ID.":["Sidopanelens ID."],"Displays a set of blocks":["Visar en upps\xe4ttning block"],"Blocks Area":["Blockomr\xe5den"],"Block rendered as empty.":["Blocket visas tomt."],"Inline Code":["Programkod inline"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Obs: Vissa sj\xe4lvstartande videoklipp kan orsaka \xe5tkomlighetsproblem f\xf6r en del bes\xf6kare."],"Footer section":["Sidfotssektion"],"Header section":["Sidhuvudssektion"],"Sorting and Filtering":["Sortering och filtrering"],"Post Meta Settings":["Inst\xe4llningar f\xf6r metainformation om inl\xe4gg"],"Post Content":["Inl\xe4ggsinneh\xe5ll"],"Post Content Settings":["Inst\xe4llningar f\xf6r inl\xe4ggsinneh\xe5ll"],"Percentage width":["Bredd i procent"],"Column Settings":["Kolumninst\xe4llningar"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Obs: Sj\xe4lvstartande ljud kan orsaka \xe5tkomlighetsproblem f\xf6r en del bes\xf6kare."],"Block area updated.":["Blockomr\xe5de uppdaterat."],"Block area scheduled.":["Blockomr\xe5det \xe4r schemalagt."],"Block area published.":["Blockomr\xe5det \xe4r publicerat."],"Block areas list":["Lista med blockomr\xe5den"],"Block areas list navigation":["Navigering i blockomr\xe5deslista"],"Filter block areas list":["Filtrera blockomr\xe5deslista"],"No block area found.":["Inga blockomr\xe5den hittades."],"Search Block Areas":["S\xf6k blockomr\xe5den"],"All Block Areas":["Alla blockomr\xe5den"],"View Block Area":["Visa blockomr\xe5de"],"Edit Block Area":["Redigera blockomr\xe5de"],"New Block Area":["Nytt blockomr\xe5de"],"Add New Block Area":["L\xe4gg till nytt blockomr\xe5de"],"admin menu\x04Block Areas":["Blockomr\xe5den"],"post type singular name\x04Block Area (Experimental)":["Blockomr\xe5de (experimentellt)"],"post type general name\x04Block Area (Experimental)":["Blockomr\xe5de (experimentellt)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimentell inl\xe4ggstyp som sparar blockomr\xe5den som anv\xe4nds av teman."],"Widgets screen content":["Widget-sk\xe4rmens inneh\xe5ll"],"Widgets advanced settings":["Avancerade widget-inst\xe4llningar"],"(experimental)":["(experimentellt)"],"Block Areas":["Blockomr\xe5den"],"Widgets screen top bar":["Widget-sk\xe4rm i topplisten"],"This color combination may be hard for people to read.":["Denna f\xe4rgkombination kan vara sv\xe5r f\xf6r m\xe4nniskor att l\xe4sa."],"There is no poster image currently selected":["F\xf6r n\xe4rvarande \xe4r ingen posterbild vald"],"The current poster image url is %s":["URL f\xf6r den aktuella posterbilden \xe4r %s"],section:["sektion"],row:["rad"],wrapper:["omslag"],container:["container"],"A block that groups other blocks.":["Ett block som grupperar andra block."],Group:["Grupp"],"Crop image to fill entire column":["Besk\xe4r bilden s\xe5 att den fyller hela kolumnen"],"Play inline":["Spela upp direkt i texten"],"Leave empty if the image is purely decorative.":["L\xe4mna tomt om bilden endast har dekorativ funktion."],"Describe the purpose of the image":["Beskriv syftet med bilden"],"Add a block":["L\xe4gg till ett block"],"Block vertical alignment setting label\x04Change vertical alignment":["\xc4ndra vertikal positionering"],"Block vertical alignment setting\x04Vertically Align Bottom":["Vertikal justering botten"],"Block vertical alignment setting\x04Vertically Align Middle":["Vertikal justering mitten"],"Replace Image":["Ers\xe4tt bild"],"Block vertical alignment setting\x04Vertically Align Top":["Vertikal justering topp"],"Display a legacy widget.":["Visa en widget av \xe4ldre typ."],"Legacy Widget (Experimental)":["Widget av \xe4ldre typ (experimentell)"],"Change widget":["\xc4ndra widget"],"Legacy Widget":["Widget av \xe4ldre typ"],"You don't have permissions to use widgets on this site.":["Du har inte beh\xf6righet att anv\xe4nda widgetar p\xe5 denna webbplats."],"Select a legacy widget to display:":["V\xe4lj vilken widget av \xe4ldre typ du vill visa:"],"There are no widgets available.":["Inga widgetar \xe4r tillg\xe4ngliga."],"Change block type or style":["\xc4ndra blocktyp eller stil"],"keyboard key\x04Space":["Mellanslag"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["Fler kontroller f\xf6r formaterad text"],"Search Terms":["S\xf6ktermer"],"Exit the Editor":["St\xe4ng redigeraren"],"Block Manager":["Blockhantering"],"Class name of the widget.":["Widgetens klassnamn."],"Sorry, you are not allowed to access widgets on this site.":["Du har inte beh\xf6righet att komma \xe5t widgetar p\xe5 denna webbplats."],"Widgets (beta)":["Widgetar (beta)"],link:["l\xe4nk"],"Embedded content from %s can't be previewed in the editor.":["Inb\xe4ddat inneh\xe5ll fr\xe5n %s kan inte f\xf6rhandsgranskas i redigeraren."],"Custom Color":["Anpassad f\xe4rg"],"Prompt visitors to take action with a button-style link.":["Uppmana bes\xf6kare att g\xf6ra n\xe5got med en knappformad l\xe4nk."],"Stick to the top of the blog":["Klistra l\xe4ngst upp i bloggen"],"Read about permalinks":["L\xe4s om permal\xe4nkar"],"The last part of the URL.":["Den sista delen av URL:en."],"URL Slug":["URL-slug"],"A cloud of your most used tags.":["Ett moln med dina mest anv\xe4nda etiketter."],"Tag Cloud":["Etikettmoln"],Taxonomy:["Taxonomi"],"Tag Cloud Settings":["Inst\xe4llningar f\xf6r etikettmoln"],"- Select -":["- V\xe4lj -"],Default:["Standard"],find:["hitta"],"Help visitors find your content.":["Hj\xe4lp bes\xf6kare att hitta ditt inneh\xe5ll."],Search:["S\xf6k"],"Add button text\u2026":["L\xe4gg till knapptext..."],"Button text":["Knapptext"],"Optional placeholder\u2026":["Valfri platsmark\xf6r..."],"Optional placeholder text":["Valfri text f\xf6r platsmarkering"],"Add label\u2026":["L\xe4gg till etikett..."],"Label text":["Text i etikett"],"image %1$d of %2$d in gallery":["bild %1$d av %2$d i galleriet"],archive:["arkiv"],posts:["inl\xe4gg"],"A calendar of your site\u2019s posts.":["En kalender \xf6ver inl\xe4ggen p\xe5 din webbplats."],Calendar:["Kalender"],by:["av"],"An error has occurred, which probably means the feed is down. Try again later.":["Ett fel har intr\xe4ffat, vilket troligen inneb\xe4r att webbfl\xf6det inte fungerar. F\xf6rs\xf6k igen senare."],"RSS Error:":["RSS-fel:"],"block style\x04Default":["Standard"],"Fullscreen mode deactivated":["Fullsk\xe4rmsl\xe4ge inaktiverat"],"Fullscreen mode activated":["Fullsk\xe4rmsl\xe4ge aktiverat"],"Spotlight mode deactivated":["Spotlight-l\xe4ge inaktiverat"],"Spotlight mode activated":["Spotlight-l\xe4ge aktiverat"],"Top toolbar deactivated":["Verktygsf\xe4ltet l\xe4ngst upp \xe4r inaktiverat"],"Top toolbar activated":["Verktygsf\xe4ltet l\xe4ngst upp \xe4r aktiverat"],Back:["Tillbaka"],"Feature activated":["Funktionen \xe4r aktiverad"],"Feature deactivated":["Funktionen \xe4r inaktiverad"],"Vertical Pos.":["Vertikal placering"],"Horizontal Pos.":["Horisontell placering"],feed:["webbfl\xf6de"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Visa inl\xe4gg fr\xe5n valfritt webbfl\xf6de i format RSS eller Atom."],RSS:["RSS"],"Max number of words in excerpt":["Max antal ord i utdrag"],"Display excerpt":["Visa utdrag"],"Display date":["Visa datum"],"Display author":["Visa f\xf6rfattare"],"RSS Settings":["RSS-inst\xe4llningar"],"Edit RSS URL":["Redigera RSS-URL"],"Content before this block will be shown in the excerpt on your archives page.":["Inneh\xe5llet f\xf6re detta block kommer att visas i utdraget p\xe5 din arkivsida."],"Hide the excerpt on the full content page":["D\xf6lj utdraget p\xe5 sidan med hela inneh\xe5llet"],"The excerpt is visible.":["Utdraget \xe4r synligt."],"The excerpt is hidden.":["Utdraget \xe4r dolt."],"Sorry, this content could not be embedded.":["Detta inneh\xe5ll gick tyv\xe4rr inte att b\xe4dda in."],"Embed Amazon Kindle content.":["B\xe4dda in inneh\xe5ll fr\xe5n Amazon Kindle."],ebook:["e-bok"],"Embed Crowdsignal (formerly Polldaddy) content.":["B\xe4dda in inneh\xe5ll fr\xe5n Crowdsignal (f.d. Polldaddy)."],"Focal Point Picker":["Fokalpunktsv\xe4ljare"],Underline:["Understreck"],"Attempt Block Recovery":["F\xf6rs\xf6k att \xe5terskapa block"],"Word count type. Do not translate!\x04words":["words"],"content placeholder\x04Content\u2026":["Inneh\xe5ll\u2026"],"button label\x04Convert to link":["Konvertera till l\xe4nk"],"button label\x04Try again":["F\xf6rs\xf6k igen"],"Editor tips":["Redigeringstips"],"Block (selected)":["Block (valt)"],"Document (selected)":["Dokument (valt)"],"%d word":["%d ord","%d ord"],"Top Toolbar":["Verktygsf\xe4lt i toppen"],"Link Rel":["L\xe4nk-rel"],"Link CSS Class":["CSS-klass f\xf6r l\xe4nk"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Skapa inneh\xe5ll och spara det s\xe5 att du och andra upphovsm\xe4n kan \xe5teranv\xe4nda det \xf6verallt p\xe5 er webbplats. Om blocket uppdateras kommer \xe4ndringarna att sl\xe5 igenom \xf6verallt d\xe4r blocket anv\xe4nds."],"To edit the featured image, you need permission to upload media.":["F\xf6r att redigera den utvalda bilden beh\xf6ver du beh\xf6righet att ladda upp mediafiler."],"To edit this block, you need permission to upload media.":["F\xf6r att redigera detta block beh\xf6ver du beh\xf6righet att ladda upp media."],"(selected block)":["(valt block)"],"Block tools":["Blockverktyg"],Permalink:["Permal\xe4nk"],"This image has an empty alt attribute":["Denna bild har ett alt-attribut som \xe4r tomt."],"This image has an empty alt attribute; its file name is %s":["Denna bild har ett alt-attribut som \xe4r tomt. Dess filnamn \xe4r %s"],"Block area reverted to draft.":["Blockomr\xe5det har \xe5terst\xe4llts till utkast."],"Block area published privately.":["Blockomr\xe5de har publicerats privat."],"No block areas found in Trash.":["Inga blockomr\xe5den hittades i papperskorgen."],"Block\x04Add New":["L\xe4gg till nytt"],"add new on admin bar\x04Block Area":["Blockomr\xe5de"],"Link inserted.":["L\xe4nken har lagts in."],"Warning: the link has been inserted but may have errors. Please test it.":["Varning: l\xe4nken har lagts till men kan inneh\xe5lla fel. V\xe4nligen testa den."],"%s block selected.":["%s block markerad.","%s block markerade."],Thumbnail:["Miniatyr"],"Full Size":["Full storlek"],"Link selected.":["L\xe4nken \xe4r markerad."],"Start writing with text or HTML":["B\xf6rja skriva in text eller HTML"],"Type text or HTML":["Skriv in text eller HTML"],"Block icon":["Blockikon"],"Align Text Right":["H\xf6gerst\xe4ll text"],"Align Text Center":["Centrera text"],"Align Text Left":["V\xe4nsterst\xe4ll text"],"Start writing or type / to choose a block":["B\xf6rja skriva eller tryck p\xe5 \u201d/\u201d f\xf6r att v\xe4lja ett block"],"Empty block; start writing or type forward slash to choose a block":["Tomt block. B\xf6rja skriva eller tryck p\xe5 snedstreck f\xf6r att v\xe4lja ett block"],"Paragraph block":["Textstyckesblock"],"Page Break":["Sidbrytning"],"Stack on mobile":["Stapla p\xe5 mobil"],Annotation:["Beskrivning"],"Drag images, upload new ones or select files from your library.":["Dra bilder, ladda upp nya eller v\xe4lj filer fr\xe5n ditt bibliotek."],"blocks\x04Most Used":["Mest anv\xe4nda"],"imperative verb\x04Resolve":["L\xf6s upp"],"font size name\x04Huge":["Enorm"],"font size name\x04Large":["Stor"],"font size name\x04Medium":["Medium"],"font size name\x04Small":["Liten"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Importera"],"button label\x04Download":["Ladda ner"],"button label\x04Embed":["B\xe4dda in"],"block title\x04Embed":["B\xe4dda in"],"block title\x04Classic":["Klassisk"],"block style\x04Large":["Stor"],"%s (opens in a new tab)":["%s (\xf6ppnas i en ny flik)"],"Link edited.":["L\xe4nk redigerad."],"Link removed.":["L\xe4nk borttagen."],media:["media"],"Double-check your settings before publishing.":["Dubbelkontrollera dina inst\xe4llningar innan du publicerar."],"Generating preview\u2026":["Genererar f\xf6rhandsgranskning\u2026"],"Edit or update the image":["Redigera eller uppdatera bilden"],Media:["Media"],"Navigate to the nearest toolbar.":["Navigera till n\xe4rmaste verktygsf\xe4lt."],"Document tools":["Dokumentverktyg"],"Document and block tools":["Dokument och blockverktyg"],"Embed a video from your media library or upload a new one.":["B\xe4dda in ett videoklipp fr\xe5n ditt mediebibliotek eller ladda upp ett nytt."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["L\xe4gg in poesi. Anv\xe4nd specialformat f\xf6r radavst\xe5nd. Eller citera n\xe5gra rader ur en s\xe5ngtext."],"Add white space between blocks and customize its height.":["L\xe4gg in ett tomt utrymme mellan block och anpassa dess h\xf6jd."],"Insert additional custom elements with a WordPress shortcode.":["L\xe4gg in andra anpassade element med hj\xe4lp av en WordPress-kortkod."],"Create a break between ideas or sections with a horizontal separator.":["Skapa en avgr\xe4nsning mellan olika id\xe9er eller sektioner med hj\xe4lp av en horisontell avgr\xe4nsare."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Framh\xe4v ett citat visuellt. \u201dN\xe4r vi citerar andra, citerar vi oss sj\xe4lva.\u201d \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Ge s\xe4rskild visuell betoning p\xe5 ett citat fr\xe5n din text."],"Start with the building block of all narrative.":["Starta med byggstenen f\xf6r alla ber\xe4ttelser."],"Separate your content into a multi-page experience.":["Dela upp ditt inneh\xe5ll till en upplevelse som str\xe4cker sig \xf6ver flera sidor."],"Set media and words side-by-side for a richer layout.":["Placera media och ord sida vid sida f\xf6r en rikare layout."],"Media & Text Settings":["Media och textinst\xe4llningar"],"Create a bulleted or numbered list.":["Skapa en punktlista eller en numrerad lista."],"Display a list of your most recent comments.":["Visa en lista med de senaste kommentarerna."],"Insert an image to make a visual statement.":["L\xe4gg in en bild f\xf6r att ber\xe4tta visuellt."],"Add custom HTML code and preview it as you edit.":["L\xe4gg till anpassad HTML-kod och f\xf6rhandsgranska det n\xe4r du redigerar."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introducera nya sektioner och organisera inneh\xe5ll f\xf6r att hj\xe4lpa bes\xf6kare (och s\xf6kmotorer) att f\xf6rst\xe5 strukturen p\xe5 ditt inneh\xe5ll."],"Display multiple images in a rich gallery.":["Visa flera bilder i ett full\xf6digt galleri."],"Add a link to a downloadable file.":["L\xe4gg till en l\xe4nk till en nedladdningsbar fil."],"Embed videos, images, tweets, audio, and other content from external sources.":["B\xe4dda in videoklipp, bilder, tweets, ljud och annat inneh\xe5ll fr\xe5n externa k\xe4llor."],"Resize for smaller devices":["\xc4ndra storlek f\xf6r mindre enheter"],"This embed may not preserve its aspect ratio when the browser is resized.":["Denna inb\xe4ddning kanske inte beh\xe5ller sitt bildf\xf6rh\xe5llande om storleken p\xe5 webbl\xe4sarens f\xf6nster \xe4ndras."],"This embed will preserve its aspect ratio when the browser is resized.":["Denna inb\xe4ddning beh\xe5ller sitt bildf\xf6rh\xe5llande n\xe4r storleken p\xe5 webbl\xe4sarens f\xf6nster \xe4ndras."],"Embed an Animoto video.":["B\xe4dda in en video fr\xe5n Animoto."],"Embed a Vimeo video.":["B\xe4dda in en video fr\xe5n Vimeo."],"Embed Flickr content.":["B\xe4dda in inneh\xe5ll fr\xe5n Flickr."],"Embed Spotify content.":["B\xe4dda in inneh\xe5ll fr\xe5n Spotify."],"Embed SoundCloud content.":["B\xe4dda in inneh\xe5ll fr\xe5n SoundCloud."],"Embed a WordPress post.":["B\xe4dda in ett inl\xe4gg fr\xe5n WordPress."],"Embed an Instagram post.":["B\xe4dda in ett inl\xe4gg fr\xe5n Instagram."],"Embed a Facebook post.":["B\xe4dda in ett inl\xe4gg fr\xe5n Facebook."],"Embed a WordPress.tv video.":["B\xe4dda in en video fr\xe5n WordPress.tv."],"Embed a VideoPress video.":["B\xe4dda in en video fr\xe5n VideoPress."],"Embed a Tumblr post.":["B\xe4dda in ett inl\xe4gg fr\xe5n Tumblr."],"Embed a TED video.":["B\xe4dda in en video fr\xe5n TED."],"Embed Speaker Deck content.":["B\xe4dda in inneh\xe5ll fr\xe5n Speaker Deck."],"Embed a YouTube video.":["B\xe4dda in en video fr\xe5n YouTube."],"Embed SmugMug content.":["B\xe4dda in inneh\xe5ll fr\xe5n SmugMug."],"Embed Slideshare content.":["B\xe4dda in inneh\xe5ll fr\xe5n Slideshare."],"Embed Scribd content.":["B\xe4dda in inneh\xe5ll fr\xe5n Scribd."],"Embed Screencast content.":["B\xe4dda in inneh\xe5ll fr\xe5n Screencast."],"Embed ReverbNation content.":["B\xe4dda in inneh\xe5ll fr\xe5n ReverbNation."],"Embed a Reddit thread.":["B\xe4dda in en tr\xe5d fr\xe5n Reddit."],"Embed Polldaddy content.":["B\xe4dda in inneh\xe5ll fr\xe5n Polldaddy."],"Embed Mixcloud content.":["B\xe4dda in inneh\xe5ll fr\xe5n Mixcloud."],"Embed a tweet.":["B\xe4dda in en status fr\xe5n Twitter."],"Embed Meetup.com content.":["B\xe4dda in inneh\xe5ll fr\xe5n Meetup.com."],"Embed Kickstarter content.":["B\xe4dda in inneh\xe5ll fr\xe5n Kickstarter."],"Embed Issuu content.":["B\xe4dda in inneh\xe5ll fr\xe5n Issuu."],"Embed Imgur content.":["B\xe4dda in inneh\xe5ll fr\xe5n Imgur."],"Embed Hulu content.":["B\xe4dda in inneh\xe5ll fr\xe5n Hulu."],"Embed a Dailymotion video.":["B\xe4dda in en video fr\xe5n Dailymotion."],"Embed CollegeHumor content.":["B\xe4dda in inneh\xe5ll fr\xe5n CollegeHumor."],"Embed Cloudup content.":["B\xe4dda in inneh\xe5ll fr\xe5n Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["L\xe4gg till en bild eller videoklipp med ett text\xf6verl\xe4gg \u2013 bra f\xf6r rubriker."],"Display code snippets that respect your spacing and tabs.":["Visa programkodsutdrag som respekterar dina mellanslag och tabbtecken."],"Use the classic WordPress editor.":["Anv\xe4nd den klassiska WordPress-redigeraren."],"Display a list of all categories.":["Visa en lista p\xe5 alla kategorier."],"Embed a simple audio player.":["B\xe4dda in en enkel ljudspelare."],"noun\x04View":["Visa"],"editor button\x04Left to right":["V\xe4nster till h\xf6ger"],"Save as Pending":["Spara som v\xe4ntande"],"%s address":["Adress f\xf6r %s"],"Paste or type URL":["Klistra in eller skriv URL"],"Insert from URL":["Infoga fr\xe5n URL"],"Block Navigator":["Blocknavigering"],Styles:["Stilar"],"Advanced Panels":["Avancerade paneler"],"Document Panels":["Dokumentpaneler"],General:["Allm\xe4nt"],"Open the block navigation menu.":["\xd6ppna blocknavigationsmenyn."],"Work without distraction":["Arbeta utan att distraheras"],"Focus on one block at a time":["Fokusera p\xe5 ett block i taget"],"Access all block and document tools in a single place":["F\xe5 \xe5tkomst till alla block- och dokumentverktyg p\xe5 en enda plats"],Options:["Alternativ"],"(opens in a new tab)":["(\xf6ppnas i en ny flik)"],Minutes:["Minuter"],Hours:["\xd6ppettider"],Time:["Tid"],Year:["\xc5r"],Day:["Dag"],December:["december"],November:["november"],October:["oktober"],September:["september"],August:["augusti"],July:["juli"],June:["juni"],May:["maj"],April:["april"],March:["mars"],February:["februari"],January:["januari"],Month:["M\xe5nad"],Date:["Datum"],"Go to the first (home) or last (end) day of a week.":["G\xe5 till veckans f\xf6rsta (Home) eller sista (End) dag."],"Home/End":["Home/End"],"Home and End":["Home och End"],"Move backward (PgUp) or forward (PgDn) by one month.":["G\xe5 bak\xe5t (PgUp) eller fram\xe5t (PgDn) en m\xe5nad."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up och Page Down"],"Move backward (up) or forward (down) by one week.":["G\xe5 bak\xe5t (upp) eller fram\xe5t (ned) en vecka."],"Up and Down Arrows":["Upp\xe5t- och ned\xe5tpil"],"Move backward (left) or forward (right) by one day.":["G\xe5 bak\xe5t (v\xe4nster) eller fram\xe5t (h\xf6ger) en dag."],"Left and Right Arrows":["V\xe4nsterpil och och h\xf6gerpil"],"Select the date in focus.":["V\xe4lj det datum som befinner sig i fokus."],"Navigating with a keyboard":["Navigera med ett tangentbord"],"Click the desired day to select it.":["Klicka p\xe5 \xf6nskad dag f\xf6r att v\xe4lja den."],"Click the right or left arrows to select other months in the past or the future.":["Klicka p\xe5 h\xf6ger- eller v\xe4nsterpilarna f\xf6r att v\xe4lja en annan m\xe5nad i f\xf6rfluten tid eller i framtiden."],"Click to Select":["Klicka f\xf6r att v\xe4lja"],"Calendar Help":["Kalenderhj\xe4lp"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Anv\xe4nd piltangenterna f\xf6r att \xe4ndra grundf\xe4rg. Flytta upp\xe5t f\xf6r ljusare f\xe4rg, ned\xe5t f\xf6r m\xf6rkare, till v\xe4nster f\xf6r minskad m\xe4ttnad och till h\xf6ger f\xf6r att \xf6ka m\xe4ttnaden."],"Choose a shade":["V\xe4lj skugga"],"Change color format":["\xc4ndra f\xe4rgformat"],"Color value in HSL":["F\xe4rgv\xe4rde i HSL"],"Color value in RGB":["F\xe4rgv\xe4rde i RGB"],"Color value in hexadecimal":["F\xe4rgv\xe4rde i hexadecimal"],"RGB mode active":["RGB-l\xe4ge aktiv"],"Hex color mode active":["Hexadecimalt f\xe4rgl\xe4get (RGB) \xe4r aktivt"],"Hue/saturation/lightness mode active":["Arbetsl\xe4get kul\xf6r/m\xe4ttnadsgrad/ljushet \xe4r aktivt (hue/saturation/lightness)"],"Move the arrow left or right to change hue.":["Flytta pilen \xe5t v\xe4nster eller h\xf6ger f\xf6r att \xe4ndra nyans."],"Hue value in degrees, from 0 to 359.":["Nyansv\xe4rde i grader, fr\xe5n 0 till 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alfa-v\xe4rde, fr\xe5n 0 (transparent) till 1 (helt ogenomskinligt)."],Stripes:["R\xe4nder"],"Your site doesn\u2019t include support for this block.":["Din webbplats inkluderar inte st\xf6d f\xf6r detta block."],"Unrecognized Block":["Ok\xe4nd blocktyp"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Din webbplats inkluderar inte st\xf6d f\xf6r block \u201d%s\u201d. Du kan l\xe4mna detta block intakt eller ta bort det helt."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Din webbplats inkluderar inte st\xf6d f\xf6r blocket \u201d%s\u201d. Du kan l\xe4mna detta block som det \xe4r, konvertera inneh\xe5llet till ett block med anpassad HTML eller ta bort det helt."],"Media area":["Mediaomr\xe5de"],"Media & Text":["Media och text"],"Show media on right":["Visa media till h\xf6ger"],"Show media on left":["Visa media till v\xe4nster"],"Open in New Tab":["\xd6ppna i ny flik"],Cover:["Omslag"],"Border Settings":["Raminst\xe4llningar"],"Edit media":["Redigera media"],Medium:["Medium"],"Paste URL or type to search":["Klistra in URL eller skriv f\xf6r att s\xf6ka"],Terms:["Termer"],"Your work will be published at the specified date and time.":["Ditt arbete kommer att publiceras p\xe5 angivet datum och tid."],"Are you ready to schedule?":["\xc4r du redo att schemal\xe4gga?"],"Always show pre-publish checks.":["Visa alltid kontroller innan publicering sker."],"Take Over":["Ta \xf6ver"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["En annan anv\xe4ndare arbetar f\xf6r n\xe4rvarande med detta inl\xe4gg, vilket inneb\xe4r att du inte kan g\xf6ra \xe4ndringar, s\xe5vida du inte tar \xf6ver."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s arbetar f\xf6r n\xe4rvarande med detta inl\xe4gg, vilket inneb\xe4r att du inte kan g\xf6ra \xe4ndringar, s\xe5vida du inte tar \xf6ver."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["En annan anv\xe4ndare har nu redigeringskontroll av detta inl\xe4gg. Oroa dig inte, dina \xe4ndringar fram till nu har sparats."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s har nu redigeringskontroll av detta inl\xe4gg. Oroa dig inte, dina \xe4ndringar fram till nu har sparats."],Avatar:["Profilbild"],"This post is already being edited.":["Detta inl\xe4gg redigeras redan."],"Someone else has taken over this post.":["N\xe5gon annan har tagit \xf6ver detta inl\xe4gg."],"This block contains unexpected or invalid content.":["Detta block inneh\xe5ller ov\xe4ntat eller ogiltigt inneh\xe5ll"],"Resolve Block":["L\xf6s upp blocket"],"Convert to HTML":["Konvertera till HTML"],"This block can only be used once.":["Detta block kan bara anv\xe4ndas en g\xe5ng."],"Exit Code Editor":["Avsluta kodredigerare"],"Editing Code":["Att redigera kod"],"Solid Color":["Solid f\xe4rg"],"Main Color":["Huvudf\xe4rg"],HTML:["HTML"],"Write HTML\u2026":["Skriv HTML\u2026"],"Media Settings":["Inst\xe4llningar f\xf6r media"],"Overlay Color":["\xd6verl\xe4ggsf\xe4rg"],Overlay:["\xd6verl\xe4gg"],"Insert Media":["Infoga media"],"Reusable block imported successfully!":["\xc5teranv\xe4ndbart block importerat utan problem."],"Invalid Reusable Block JSON file":["Ogiltig JSON-fil f\xf6r \xe5teranv\xe4ndbart block"],"Invalid JSON file":["Ogiltig JSON-fil"],"Import from JSON":["Importera fr\xe5n JSON"],Backtick:["Backtick (`)"],Period:["Period"],Comma:["Komma"],"Change type of %d block":["\xc4ndra typ hos %d block","\xc4ndra typ hos %d block"],Current:["Nuvarande"],"After Conversion":["Efter konvertering"],"Change alignment":["\xc4ndra justering"],"Change text alignment":["\xc4ndra textens justering"],"%d block":["%d block","%d block"],Escape:["Esc"],"Forward-slash":["Snedstreck"],"No archives to show.":["Inga arkiv att visa."],"This file is empty.":["Filen \xe4r tom."],"Sorry, this file type is not supported here.":["Denna filtyp st\xf6ds inte h\xe4r."],"Manage All Reusable Blocks":["Hantera alla \xe5teranv\xe4ndbara block"],Title:["Titel"],"Fullscreen Mode":["Helsk\xe4rmsl\xe4ge"],"Beautiful landscape":["Vackert landskap"],"Close panel":["St\xe4ng panel"],"Convert to Classic Block":["Konvertera till Klassiskt block"],"Remove Poster Image":["Ta bort posterbild"],"Select Poster Image":["V\xe4lj bildposter"],"Poster Image":["Bildposter"],"This block is deprecated. Please use the Columns block instead.":["Detta block \xe4r taget ur bruk. Anv\xe4nd blocket \u201dKolumner\u201d i st\xe4llet."],"Text Columns (deprecated)":["Textkolumner (taget ur bruk)"],"Row Count":["Radantal"],"Column Count":["Kolumnantal"],"This block is deprecated. Please use the Paragraph block instead.":["Detta block \xe4r taget ur bruk. Anv\xe4nd blocket \u201dStycke\u201d i st\xe4llet."],"Subheading (deprecated)":["Underrubrik (taget ur bruk)"],blockquote:["blockcitat"],"Change the block type after adding a new paragraph.":["\xc4ndra blocktypen n\xe4r ett nytt stycke lagts till."],"Spotlight Mode":["Spotlight-l\xe4ge"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Etiketter hj\xe4lper anv\xe4ndare och s\xf6kmotorer att navigera runt p\xe5 webbplatsen och hitta inneh\xe5llet. L\xe4gg till n\xe5gra nyckelord som beskriver inl\xe4gget."],"Add tags":["L\xe4gg till etiketter"],"Apply the \"%1$s\" format.":["Till\xe4mpa formatet \u201d%1$s\u201d."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Ditt tema anv\xe4nder inl\xe4ggsformat f\xf6r att markera olika typer av inneh\xe5ll, t.ex. bilder eller video. Anv\xe4nd ett inl\xe4ggsformat f\xf6r att visa detta speciella utseende."],"Use a post format":["Anv\xe4nd ett inl\xe4ggsformat"],"Insert After":["Infoga efter"],"Insert Before":["Infoga f\xf6re"],"Move %1$d block from position %2$d down by one place":["Flytta %1$d block fr\xe5n position %2$d en plats ned\xe5t","Flytta %1$d block fr\xe5n position %2$d en plats ned\xe5t"],"Move %1$d block from position %2$d up by one place":["Flytta %1$d block fr\xe5n position %2$d en plats upp\xe5t","Flytta %1$d block fr\xe5n position %2$d en plats upp\xe5t"],"Move %1$s block from position %2$d %3$s to position %4$d":["Flytta blocket %1$s fr\xe5n position %2$d %3$s till position %4$d"],movie:["film"],"Insert a new block before the selected block(s).":["Skjut in ett nytt block f\xf6re det markerade bloket (blocken)."],"Remove the selected block(s).":["Ta bort det markerade blocket (blocken)."],"Duplicate the selected block(s).":["Duplicera markerat/markerade block."],"Block shortcuts":["Kortkoder f\xf6r block"],"Clear selection.":["Ta bort markeringen."],"Select all text when typing. Press again to select all blocks.":["V\xe4lj all text vid inmatning. Tryck en g\xe5ng till f\xf6r att v\xe4lja alla block."],"Selection shortcuts":["Genv\xe4gar f\xf6r markering"],"Switch between Visual Editor and Code Editor.":["V\xe4xla mellan visuell redigerare och kodredigerare."],"Navigate to the previous part of the editor (alternative).":["G\xe5 till f\xf6reg\xe5ende del av redigeraren (alternativ)."],"Navigate to the next part of the editor (alternative).":["Navigera till n\xe4sta del av redigeraren (alternativ)."],"Navigate to the previous part of the editor.":["G\xe5 till f\xf6reg\xe5ende del av redigeraren."],"Navigate to the next part of the editor.":["Navigera till n\xe4sta del av redigeraren."],"Show or hide the settings sidebar.":["Visa eller d\xf6lj sidopanelen f\xf6r inst\xe4llningar."],"Redo your last undo.":["G\xf6r om den senast \xe5ngrade \xe5tg\xe4rden."],"Undo your last changes.":["\xc5ngra dina senaste \xe4ndringar."],"Save your changes.":["Spara dina \xe4ndringar."],"Global shortcuts":["Globala genv\xe4gar"],"Remove a link.":["Ta bort en l\xe4nk."],"Convert the selected text into a link.":["Konvertera den valda texten till en l\xe4nk."],"Underline the selected text.":["G\xf6r understrykning av den markerade texten."],"Make the selected text italic.":["\xc4ndra den markerade texten till kursiv."],"Make the selected text bold.":["\xc4ndra den markerade texten till fetstil."],"Text formatting":["Textformatering"],"Insert a new block after the selected block(s).":["Infoga ett nytt block efter markerat/markerade block."],"Keyboard Shortcuts":["Tangentbordsgenv\xe4gar"],"Thanks for testing Gutenberg!":["Tack f\xf6r att du provar Gutenberg!"],"Help build Gutenberg":["Hj\xe4lp till att bygga Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Om du vill l\xe4sa mer om hur du kan bygga nya block eller om du vill hj\xe4lpa till i projektet \xe4r du v\xe4lkommen \xf6ver till filf\xf6rvaret p\xe5 GitHub."],"The WordPress community":["WordPress-gemenskapen"],"Code is Poetry":["Kod \xe4r poesi"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Du kan bygga alla typer av block du k\xe4nner f\xf6r, statiska eller dynamiska, dekorativa eller enkla. H\xe4r \xe4r ett pullquote-block som kan lyfta fram ett citat ur din text:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Alla block kan v\xe4lja att f\xf6lja dessa justeringar. \xc4ven inb\xe4ddningsblocken har dem och de \xe4r responsive direkt fr\xe5n start:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Ovanst\xe5ende \xe4r ett galleri som best\xe5r av bara tv\xe5 bilder. Det \xe4r ett enklare s\xe4tt att skapa visuellt tilltalande layouter utan att beh\xf6va hantera s.k. floats. Det \xe4r ocks\xe5 enkelt att \xe5ter konvertera galleriet till enskilda bilder med hj\xe4lp av blockv\xe4xlaren."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Jovisst, en fullbred bild kan bli riktigt stor. Men ibland \xe4r bilden v\xe4rd det."],"Accessibility is important — don’t forget image alt attribute":["Det \xe4r viktigt med \xe5tkomlighet \u2013 gl\xf6m inte attributet alt f\xf6r bilder"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Genom att kombinera de nya justeringarna bred bredd och fullbred bredd med gallerier kan du mycket snabbt skapa en mycket mediarik layout:"],"Media Rich":["Mediarik"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Du kan \xe4ndra antalet kolumner i dina gallerier med hj\xe4lp av ett skjutreglage i blockinspekteraren i sidopanelen."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Block kan vara vad helst du beh\xf6ver. Du kanske vill l\xe4gga till ett nedtonat citat n\xe4r du komponerar din text. Eller s\xe5 f\xf6redrar du ett citat som \xe4r stiliserat i j\xe4tteformat. Med infogaren har du alla dessa alternativ."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Informationen som motsvarar citatets upphovsman \xe4r ett separat textf\xe4lt, p\xe5 samma s\xe4tt som bildtexter under bilder, vilket g\xf6r att citatets struktur skyddas \xe4ven om du markerar, modifierar eller tar bort uppgiften om upphovsmannen. Det \xe4r alltid enkelt att l\xe4gga in uppgiften igen."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["Redigeraren kommer att str\xe4va efter en ny upplevelse f\xf6r hur man bygger en sida eller ett inl\xe4gg s\xe5 att det blir enklare att skriva inl\xe4gg med rikt inneh\xe5ll och d\xe4r man anv\xe4nder \u201dblock\u201d f\xf6r att enkelt skapa det som idag kan beh\xf6va kortkoder, anpassad html-kod eller \u201dhemliga ingredienser\u201d f\xf6r uppt\xe4ckt av l\xe4nkar till inb\xe4ddat material."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["En enorm f\xf6rdel med block \xe4r att du kan redigera dem p\xe5 plats och direkt manipulera ditt inneh\xe5ll. I st\xe4llet f\xf6r att anv\xe4nda f\xe4lt f\xf6r att redigera saker som upphovsmannen till ett citat eller en knapptext kan du nu direkt \xe4ndra inneh\xe5llet. Prova att redigera nedanst\xe5ende citat:"],"Visual Editing":["Visuell redigering"],"And Lists like this one of course :)":["Och listor som den h\xe4r, f\xf6rst\xe5s :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout-block, s\xe5som knappar, hero-bilder, avgr\xe4nsare m.m."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Inb\xe4ddat material, s\xe5som YouTube, Twitter eller andra WordPress-inl\xe4gg."],Galleries:["Gallerier"],"Images & Videos":["Bilder och videoklipp"],"Text & Headings":["Text och rubriker"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Ta och prova nu. Du kanske uppt\xe4cker att WordPress redan kan l\xe4gga in olika saker i dina inl\xe4gg som du inte k\xe4nde till. H\xe4r \xe4r en kort lista med saker som du f\xf6r n\xe4rvarande kan hitta d\xe4r:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["T\xe4nk dig att allt WordPress kan g\xf6ra \xe4r snabbt och smidigt tillg\xe4ngligt f\xf6r dig p\xe5 en och samma plats i gr\xe4nssnittet. Du beh\xf6ver inte leta reda p\xe5 HTML-taggar, klasser eller minnas n\xe5gon komplicerad syntax f\xf6r kortkoder. Det \xe4r id\xe9n med infogaren \u2013 knappen (+) som du ser p\xe5 olika platser i redigeraren, vilken l\xe5ter dig bl\xe4ddra bland alla tillg\xe4ngliga inneh\xe5llsblock och l\xe4gga till dem i ditt inl\xe4gg. Till\xe4gg och teman kan registrera egna block, n\xe5got som skapar rika m\xf6jligheter f\xf6r redigering och publicering."],"The Inserter Tool":["Verktyget infogaren"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Prova att markera och ta bort eller \xe4ndra bildtexten. Du beh\xf6ver inte l\xe4ngre vara r\xe4dd f\xf6r att r\xe5ka markera bilden eller annan text av misstag och f\xf6rst\xf6ra utseendet."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Om ditt tema har st\xf6d f\xf6r det kommer du att se knappen \u201dbred\u201d i verktygsf\xe4ltet f\xf6r bilder. Ta och prova den!"],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["I den nya redigeraren \xe4r ett centralt fokus att hantera bilder och mediafiler med stor f\xf6rsiktighet. F\xf6rhoppningsvis kommer du att uppt\xe4cka att det blivit mycket enklare och stabilare \xe4n tidigare att g\xf6ra s\xe5dana saker som att l\xe4gga till bildtexter eller ange att en bild ska vara fullbred."],"A Picture is Worth a Thousand Words":["En bild s\xe4ger mer \xe4n tusen ord"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["\xc4ven rubriker \xe4r block, vilka hj\xe4lper dig att strukturera och organisera ditt inneh\xe5ll."],"... like this one, which is right aligned.":["... och \xe4ven detta, som \xe4r h\xf6gerjusterat."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Det du l\xe4ser nu \xe4r ett textblock, det mest grundl\xe4ggande blocket av alla. Textblocket har sina egna inst\xe4llningar som g\xf6r att det fritt kan flyttas runt inom inl\xe4gget..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["M\xe5let f\xf6r den nya redigeraren \xe4r att g\xf6ra det enkelt och skojigt att l\xe4gga till rikt inneh\xe5ll i WordPress. Hela inl\xe4gget best\xe5r av inneh\xe5llsbitar\u2013 ungef\xe4r som LEGO-bitar \u2013 som du kan flytta runt och interagera med. Om du flyttar din pekare m\xe4rker du hur olika block markeras med ramar och pilar. Klicka p\xe5 pilarna f\xf6r att snabbt flytta blocken utan n\xe5gon risk att f\xf6rlora n\xe5gonting medan du h\xe5ller p\xe5 att kopiera och klistra in."],"Of Mountains & Printing Presses":["Se vad du kan g\xf6ra med Gutenberg"],"Welcome to the Gutenberg Editor":["V\xe4lkommen till Gutenberg-redigeraren"],"block name\x04More":["Mer"],"button to expand options\x04More":["Mer"],"Are you sure you want to unschedule this post?":["\xc4r du s\xe4ker p\xe5 att du vill ta bort schemal\xe4ggningen av detta inl\xe4gg?"],"Alt Text (Alternative Text)":["Alt-text (alternativ text)"],"Reusable Block":["\xc5teranv\xe4ndbart block"],"Unique identifier for the object.":["Unik beteckning f\xf6r objektet."],"Untitled Reusable Block":["Block utan rubrik som kan \xe5teranv\xe4ndas"],Small:["Liten"],"(%s: %s)":["(%s: %s)"],Reusable:["\xc5teranv\xe4ndbar"],"(current %s: %s)":["(nuvarande %s: %s)"],"Remove from Reusable Blocks":["Ta bort fr\xe5n \xe5teranv\xe4ndbara block"],"Add to Reusable Blocks":["L\xe4gg till i \xe5teranv\xe4ndbara block"],"Keep as HTML":["Beh\xe5ll som HTML"],"Edit URL":["\xc4ndra URL"],"Color Settings":["F\xe4rginst\xe4llningar"],"The response is not a valid JSON response.":["Svaret \xe4r inget giltigt JSON-svar."],"Editor publish":["Redigerarens publicera-omr\xe5de"],Muted:["Tystad"],"Video Settings":["Videoinst\xe4llningar"],"recent comments":["senaste kommentarerna"],"Latest Comments":["Senaste kommentarerna"],"Display Excerpt":["Visa utdrag"],"Display Date":["Visa datum"],"Display Avatar":["Visa profilbild"],"Latest Comments Settings":["Inst\xe4llningar f\xf6r senaste kommentarerna"],"Number of Comments":["Antal kommentarer"],"Background Opacity":["Bakgrundens opacitet"],Auto:["Auto"],Preload:["F\xf6rhandsladda"],"Audio Settings":["Ljudinst\xe4llningar"],"Display a monthly archive of your posts.":["Visa ett m\xe5nadsarkiv p\xe5 dina inl\xe4gg."],"Display as Dropdown":["Visa som rullgardinsmeny"],"Show Post Counts":["Visa antal inl\xe4gg"],"Archives Settings":["Arkivinst\xe4llningar"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Support"],"No comments to show.":["Inga kommentarer att visa."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["V\xe4lj inl\xe4gg"],"Select Week":["V\xe4lj vecka"],"Select Day":["V\xe4lj dag"],"Select Month":["V\xe4lj m\xe5nad"],"Select Year":["V\xe4lj \xe5r"],Archives:["Arkiv"],"Very dark gray":["Mycket m\xf6rkgr\xe5"],"Cyan bluish gray":["Cyan bl\xe5gr\xe5"],"Very light gray":["Mycket ljusgr\xe5"],"Vivid cyan blue":["Intensivt cyanbl\xe5"],"Pale cyan blue":["Blek cyanbl\xe5"],"Vivid green cyan":["Intensivt cyangr\xf6nt"],"Light green cyan":["Ljusgr\xf6n cyan"],"Luminous vivid amber":["Lysande intensivt gult"],"Luminous vivid orange":["Lysande intensivt orange"],"Vivid red":["Intensivt r\xf6d"],"Pale pink":["Blek rosa"],"Inline image":["Bild inlagd i texten"],"Available block types":["Tillg\xe4ngliga blocktyper"],"Transform To:":["Omvandla till:"],"Remove Block":["Ta bort block"],"Open publish panel":["\xd6ppna publiceringspanel"],Dots:["Punkter"],"Wide Line":["Bred linje"],Large:["Stor"],"Show download button":["Visa nedladdningsknapp"],"Download button settings":["Inst\xe4llningar f\xf6r nedladdningsknapp"],"Link To":["L\xe4nk till"],"Text link settings":["Inst\xe4llningar f\xf6r l\xe4nktext"],pdf:["pdf"],document:["dokument"],"Copy URL":["Kopiera URL"],"Write file name\u2026":["Skriv filnamn\u2026"],"Edit file":["Redigera fil"],File:["Fil"],"A single column within a columns block.":["En enstaka kolumn inom ett block med kolumner."],Column:["Kolumn"],Outline:["Markera ytterkanter"],Loop:["Loop"],Autoplay:["Spela upp automatiskt"],"Playback Controls":["Uppspelningsreglage"],"Close dialog":["St\xe4ng dialogruta"],"Sorry, this file type is not permitted for security reasons.":["Denna filtyp \xe4r inte till\xe5ten av s\xe4kerhetssk\xe4l."],"Disable tips":["Inaktivera tips"],"Got it":["Jag f\xf6rst\xe5r"],"See next tip":["Se n\xe4sta tips"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["N\xe4r du \xe4r klar, skicka in ditt arbete f\xf6r granskning, och en redakt\xf6r kommer att kunna godk\xe4nna det \xe5t dig."],"Are you ready to submit for review?":["\xc4r du redo att skicka in en recension?"],"Replace image":["Ers\xe4tt bild"],"Remove image":["Ta bort bild"],"Error while uploading file %s to the media library.":["Ett fel intr\xe4ffade n\xe4r filen %s laddades upp till mediebiblioteket."],"This file exceeds the maximum upload size for this site.":["Filen \xf6verskrider den maximala storleken f\xf6r filuppladdningar p\xe5 denna webbplats."],"View the autosave":["Visa autosparad version"],"There is an autosave of this post that is more recent than the version below.":["Det finns en autosparad version av detta inl\xe4gg som \xe4r nyare \xe4n nedanst\xe5ende version."],Autosaving:["Autosparar"],"Enter URL here\u2026":["Ange URL h\xe4r\u2026"],"Pin to toolbar":["F\xe4st i verktygsf\xe4ltet"],"Unpin from toolbar":["Lossa fr\xe5n verktygsf\xe4ltet"],"Insert a table \u2014 perfect for sharing charts and data.":["L\xe4gg en tabell \u2013 utm\xe4rkt f\xf6r att publicera tabeller och data."],"Fixed width table cells":["Tabellceller med fast bredd"],"Table Settings":["Tabellinst\xe4llningar"],"Add text that respects your spacing and tabs, and also allows styling.":["L\xe4gg in text som respekterar dina mellanrum och tabbtecken, och samtidigt kan formateras."],"Display a list of your most recent posts.":["Visa en lista \xf6ver dina senaste inl\xe4gg."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["L\xe4gg till ett block med inneh\xe5ll som h\xe4mtas fr\xe5n andra webbplatser, s\xe5som Twitter, Instagram eller YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["L\xe4gg till ett block som visar inneh\xe5ll i flera kolumner d\xe4r du sedan l\xe4gger till de inneh\xe5llsblock du beh\xf6ver."],"Error loading block: %s":["Ett fel intr\xe4ffade vid laddning av block: %s"],"Unknown error":["Ok\xe4nt fel"],"Embed Handler":["Inb\xe4ddningshanterare"],"term\x04Remove %s":["Ta bort %s"],"Copy the permalink":["Kopiera permal\xe4nken"],"Permalink copied":["Permal\xe4nken kopierad"],"Height in pixels":["H\xf6jd i pixlar"],"Spacer Settings":["Inst\xe4llnignar f\xf6r distanselement"],Spacer:["Distanselement"],"Toggle to show a large initial letter.":["Sl\xe5 p\xe5/av visning av anfang (f\xf6rstorad f\xf6rsta bokstav)."],"Showing large initial letter.":["Visar anfang (f\xf6rstorad f\xf6rsta bokstav)."],"Name:":["Namn:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s av %3$s)"],"Remove item":["Ta bort objektet"],"Color code: %s":["F\xe4rgkod: %s"],"Skip to the selected block":["Hoppa \xf6ver till det valda blocket"],"Publish\u2026":["Publicera..."],"Schedule\u2026":["Schemal\xe4gg..."],"Edit post permalink":["Redigera inl\xe4ggets permal\xe4nk"],"Show Block Settings":["Visa blockinst\xe4llningar"],"Hide Block Settings":["D\xf6lj blockinst\xe4llningar"],"Block settings closed":["Blockets inst\xe4llningar \xe4r st\xe4ngda"],"Close plugin":["St\xe4ng till\xe4gget"],"Link settings":["L\xe4nkinst\xe4llningar"],Unlink:["Ta bort l\xe4nkning"],"Page break":["Sidbrytning"],pagination:["sidindelning"],"next page":["n\xe4sta sida"],"Image Size":["Bildstorlek"],Height:["H\xf6jd"],Width:["Bredd"],"Image Dimensions":["Bilddimensioner"],"Thumbnails are not cropped.":["Miniatyrerna \xe4r inte beskurna."],"Thumbnails are cropped to align.":["Miniatyrbilder kantklipps s\xe5 att de passar in."],"Media Library":["Mediabibliotek"],Advanced:["Avancerat"],"Add item":["L\xe4gg till objekt"],"Reset the template":["\xc5terst\xe4ll mallen"],"Keep it as is":["Beh\xe5ll det som det \xe4r"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Inneh\xe5llet i ditt inl\xe4gg matchar inte mallen som tilldelats till din inl\xe4ggstyp."],"Resetting the template may result in loss of content, do you want to continue?":["\xc5terst\xe4llning av mallen kan det leda till f\xf6rlust av inneh\xe5ll, vill du forts\xe4tta?"],"Document Statistics":["Dokumentstatistik"],"is now scheduled. It will go live on":["\xe4r tidsinst\xe4llt och publiceras"],Scheduled:["Schemalagd"],"Scheduling\u2026":["Schemal\xe4gger..."],"Code editor selected":["Kodredigerare vald"],"Visual editor selected":["Visuell redigerare vald"],Plugins:["Till\xe4gg"],"Custom Size":["Anpassad storlek"],"Layout Elements":["Layoutelement"],"term\x04%s removed":["%s togs bort"],"term\x04%s added":["%s har lagts till"],"imperative verb\x04Preview":["F\xf6rhandsgranska"],"Block deleted.":["Block borttaget."],"Block updated.":["Block uppdaterad."],"Block created.":["Block skapad."],"Trashing failed":["Borttagning misslyckades"],"Updating failed.":["Uppdatering misslyckades."],"Scheduling failed.":["Schemal\xe4ggning misslyckades."],"Publishing failed.":["Publicering misslyckades."],"View Post":["Visa inl\xe4gg"],"You have unsaved changes. If you proceed, they will be lost.":["Du har osparade \xe4ndringar. Om du forts\xe4tter kommer de att g\xe5 f\xf6rlorade."],"Document Outline":["Dokument\xf6versikt"],Paragraphs:["Stycken"],Headings:["Rubriker"],Words:["Ord"],"Content structure":["Inneh\xe5llsstruktur"],Public:["Offentlig"],"Protected with a password you choose. Only those with the password can view this post.":["Skyddad med ett l\xf6senord du v\xe4ljer. Endast de som har l\xf6senordet kan se det h\xe4r inl\xe4gget."],"Password Protected":["L\xf6senordsskyddat"],"Only visible to site admins and editors.":["Endast synlig f\xf6r webbplatsadministrat\xf6rer och redigerare."],Private:["Privat"],"Visible to everyone.":["Synlig f\xf6r alla."],"Post Visibility":["Inl\xe4ggets synlighet"],"Would you like to privately publish this post now?":["Vill du publicera detta inl\xe4gg privat nu?"],"Use a secure password":["Anv\xe4nd ett s\xe4kert l\xf6senord"],"Create password":["Skapa l\xf6senord"],"Move to Trash":["Flytta till papperskorg"],"Parent Term":["\xd6verordnad term"],"Parent Category":["\xd6verordnad kategori"],"Add new term":["L\xe4gg till ny term"],"Add new category":["L\xe4gg till ny kategori"],Term:["Term"],Tag:["Etikett"],"Add New Term":["L\xe4gg till ny term"],"Add New Tag":["L\xe4gg till en ny tagg"],"Switch to Draft":["Byt till utkast"],"Are you sure you want to unpublish this post?":["\xc4r du s\xe4ker p\xe5 att du vill avpublicera detta inl\xe4gg?"],Immediately:["Genast"],"Save Draft":["Spara utkast"],Saving:["Sparar"],"Publish:":["Publicera:"],"Visibility:":["Synlighet:"],"Are you ready to publish?":["\xc4r du redo att publicera?"],"Copy Link":["Kopiera l\xe4nk"],"What\u2019s next?":["Vad kommer h\xe4rn\xe4st?"],"is now live.":["\xe4r nu live."],Published:["Publicerat"],Schedule:["Tidsinst\xe4ll"],Update:["Uppdatera"],"Submit for Review":["Skicka in f\xf6r recension"],"Updating\u2026":["Uppdaterar\u2026"],"Publishing\u2026":["Publicerar\u2026"],"Allow Pingbacks & Trackbacks":["Till\xe5t pingbacks och trackbacks"],"Permalink:":["Permal\xe4nk:"],"Pending Review":["V\xe4ntar p\xe5 granskning"],"%d Revision":["%d version","%d versioner"],"Suggestion:":["F\xf6rslag:"],"Post Format":["Inl\xe4ggsformat"],Chat:["Chatt"],Status:["Status"],Standard:["Standard"],Aside:["Notis"],"Set Featured Image":["St\xe4ll in utvald bild"],"Learn more about manual excerpts":["L\xe4r dig mer om manuella utdrag"],"Write an excerpt (optional)":["Skriv ett utdrag (valfritt)"],"Allow Comments":["Till\xe5t kommentarer"],"Template:":["Mall:"],"no parent":["ingen \xf6verordnad"],"no title":["ingen rubrik"],Order:["Ordning"],"No blocks found.":["Inga block hittades."],"%d result found.":["%d resultat hittades.","%d resultat hittades."],Saved:["Sparat"],Embeds:["Inb\xe4ddningar"],Blocks:["Block"],"Search for a block":["S\xf6k efter ett block"],"Add block":["L\xe4gg till block"],"Add %s":["L\xe4gg till %s"],"Copy Error":["Kopieringsfel"],"Copy Post Text":["Kopiera inl\xe4ggstext"],"Attempt Recovery":["F\xf6rs\xf6k \xe5terst\xe4llning"],"The editor has encountered an unexpected error.":["Redigeraren har st\xf6tt p\xe5 ett ov\xe4ntat fel."],Undo:["\xc5ngra"],Redo:["G\xf6r om"],"(Multiple H1 headings are not recommended)":["(Flera H1-rubriker rekommenderas inte)"],"(Your theme may already use a H1 for the post title)":["(Ditt tema kan redan anv\xe4nda en H1 f\xf6r inl\xe4ggsrubriken)"],"(Incorrect heading level)":["(Felaktig rubrikniv\xe5)"],"(Empty heading)":["(Tom rubrik)"],"Block Styles":["Blockstilar"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\xc4r du s\xe4ker p\xe5 att du vill ta bort detta \xe5teranv\xe4ndbara block?\n\nDet kommer att tas bort permanent fr\xe5n alla inl\xe4gg och sidor som anv\xe4nder det."],"Convert to Regular Block":["Konvertera till vanlig block"],"More options":["Fler alternativ"],"Edit visually":["Redigera visuellt"],Duplicate:["Duplicera"],"Blocks cannot be moved down as they are already at the bottom":["Block kan inte flyttas ner eftersom de redan \xe4r l\xe4ngst ner"],"Blocks cannot be moved up as they are already at the top":["Block kan inte flyttas upp eftersom de redan \xe4r h\xf6gst upp"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["Block %1$s \xe4r i b\xf6rjan av inneh\xe5llet och kan inte flyttas %2$s"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["Block %1$s \xe4r i slutet av inneh\xe5llet och kan inte flyttas %2$s"],"Block %s is the only block, and cannot be moved":["Block %s \xe4r det enda blocket och kan inte flyttas"],"Edit as HTML":["Redigera som HTML"],"Convert to Blocks":["Konvertera till block"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["Detta block har st\xf6tt p\xe5 ett fel och kan inte f\xf6rhandsgranskas."],"No block selected.":["Inga block valda."],"Transform into:":["Omvandla till:"],Remove:["Ta bort"],"Find original":["Hitta original"],"Copy All Content":["Kopiera allt inneh\xe5ll"],"Copied!":["kopierad!"],"Additional settings are now available in the Editor block settings sidebar":["Ytterligare inst\xe4llningar finns nu tillg\xe4ngliga i Redigerarens sidopanelen med blockinst\xe4llningar"],Visibility:["Synlighet"],"Status & Visibility":["Status och synlighet"],"Page Attributes":["Sidoattribut"],Block:["Block"],Document:["Dokument"],"Featured Image":["Utvald bild"],"Close settings":["St\xe4ng inst\xe4llningar"],"Editor content":["Inneh\xe5llsredigerare"],Tools:["Verktyg"],Editor:["Redigerare"],"Code Editor":["Kodredigerare"],"Visual Editor":["Visuell redigerare"],"Editor top bar":["Redigerarens toppband"],Settings:["Inst\xe4llningar"],Reset:["\xc5terst\xe4ll"],"Dismiss this notice":["Avf\xe4rda denna notis"],"Item removed.":["Objekt borttaget."],"Item added.":["Objekt tillagt."],"Drop files to upload":["Sl\xe4pp filer f\xf6r att ladda upp"],PM:["e m"],AM:["f m"],"An unknown error occurred.":["Ett ok\xe4nt fel uppstod."],"No results.":["Inga resultat."],"%d result found, use up and down arrow keys to navigate.":["%d resultat hittades, anv\xe4nd upp och nedpilarna f\xf6r att navigera.","%d resultat hittades, anv\xe4nd upp och nedpilarna f\xf6r att navigera."],"(no title)":["(utan rubrik)"],URL:["URL"],Submit:["Skicka"],Close:["St\xe4ng"],"Insert link":["Infoga l\xe4nk"],"Edit link":["Redigera l\xe4nken"],Link:["L\xe4nk"],Strikethrough:["Genomstruken"],Italic:["Kursiv"],Bold:["Fet"],"Remove link":["Ta bort l\xe4nk"],"Number of items":["Antal objekt"],All:["Alla"],Category:["Kategori"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["\xc4ldsta till nyaste"],"Newest to Oldest":["Nyaste till \xe4ldsta"],"Order by":["Sortera efter"],Select:["V\xe4lj"],"Select or Upload Media":["V\xe4lj eller ladda upp media"],Video:["Video"],"Edit video":["Redigera video"],"Write\u2026":["Skriv\u2026"],poetry:["poesi"],Verse:["Vers"],"New Column":["Ny kolumn"],"Delete Column":["Ta bort kolumn"],"Add Column After":["L\xe4gg till kolumn efter"],"Add Column Before":["L\xe4gg till kolumn f\xf6re"],"Delete Row":["Ta bort rad"],"Add Row After":["L\xe4gg till rad efter"],"Add Row Before":["L\xe4gg till rad f\xf6re"],"Edit table":["Redigera tabell"],Table:["Tabell"],"Write subheading\u2026":["Skriv underrubrik ..."],"Write shortcode here\u2026":["Skriv kortkod h\xe4r\u2026"],Shortcode:["Kortkod"],divider:["avdelare"],"horizontal-line":["horisontell-linje"],Separator:["Avgr\xe4nsare"],Quote:["Citat"],"Write citation\u2026":["Skriv citat..."],"Write quote\u2026":["Skriv in citat..."],Pullquote:["Markerat citat"],"Write preformatted text\u2026":["Skriv f\xf6rformaterad text\u2026"],Preformatted:["F\xf6rformaterad"],text:["text"],Paragraph:["Stycke"],"Font Size":["Textstorlek"],"Drop Cap":["Anfang"],"Text Settings":["Textinst\xe4llningar"],"Read more":["L\xe4s mer"],"Write list\u2026":["Skriv lista\u2026"],"numbered list":["numrerad lista"],"ordered list":["numrerad lista"],"bullet list":["punktlista"],"Indent list item":["S\xe4nk listobjektet en niv\xe5"],"Outdent list item":["Lyft listobjektet en niv\xe5"],"Convert to ordered list":["Konvertera till numrerad lista"],"Convert to unordered list":["Konvertera till punktlista"],List:["Lista"],"recent posts":["senaste inl\xe4gget"],"No posts found.":["Hittade inga inl\xe4gg."],"Latest Posts":["Senaste inl\xe4ggen"],"Display post date":["Visa inl\xe4ggsdatum"],"Grid view":["Rutn\xe4tsvy"],"List view":["Listvy"],photo:["foto"],"Image Settings":["Bildinst\xe4llningar"],Image:["Bild"],Preview:["F\xf6rhandsgranska"],embed:["b\xe4dda in"],"Custom HTML":["Anpassad HTML"],subtitle:["underrubrik"],title:["rubrik"],Heading:["Rubrik"],"Write heading\u2026":["Skriv rubrik\u2026"],"Heading %d":["Rubrikniv\xe5 %d"],Level:["Niv\xe5"],"Heading Settings":["Rubrikinst\xe4llningar"],photos:["foton"],images:["bilder"],"Remove Image":["Ta bort bild"],None:["Inget"],"Media File":["Mediafil"],"Attachment Page":["Sida f\xf6r bilaga"],"Crop Images":["Besk\xe4r bilder"],"Gallery Settings":["Inst\xe4llningar f\xf6r galleri"],Gallery:["Galleri"],Classic:["Klassisk"],video:["video"],audio:["ljud"],music:["musik"],image:["bild"],blog:["blogg"],post:["inl\xe4gg"],"Embedded content from %s":["Inb\xe4ddat inneh\xe5ll fr\xe5n %s"],"Enter URL to embed here\u2026":["Ange URL att b\xe4dda in h\xe4r\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["B\xe4ddar in\u2026"],"Write title\u2026":["Skriv rubrik\u2026"],"Fixed Background":["Fixerad bakgrund"],"Edit image":["Redigera bild"],Columns:["Kolumner"],Experiments:["Experiment"],Code:["Kod"],"Write code\u2026":["Skriv kod\u2026"],Categories:["Kategorier"],"Show Hierarchy":["Visa hierarki"],"Show post counts":["Visa antal inl\xe4gg"],"Categories Settings":["Kategoriinst\xe4llningar"],"Add text\u2026":["L\xe4gg till text\u2026"],Button:["Knapp"],Apply:["Verkst\xe4ll"],"Text Color":["Textf\xe4rg"],"Background Color":["F\xe4rg f\xf6r bakgrund"],"Block has been deleted or is unavailable.":["Block har tagits bort eller \xe4r inte tillg\xe4ngligt."],"Reusable Blocks":["\xc5teranv\xe4ndbara block"],Cancel:["Avbryt"],Edit:["Redigera"],"Edit audio":["Redigera ljud"],"Write caption\u2026":["Skriv bildtext\u2026"],"Use URL":["Anv\xe4nd URL"],Audio:["Ljud"],Upload:["Ladda upp"],"Additional CSS Class(es)":["Ytterligare CSS-klass(er)"],"HTML Anchor":["HTML-ankare"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Denna f\xe4rgkombination kan vara sv\xe5r f\xf6r m\xe4nniskor att l\xe4sa. F\xf6rs\xf6k anv\xe4nda en ljusare bakgrundsf\xe4rg och/eller en m\xf6rkare textf\xe4rg."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Denna f\xe4rgkombination kan vara sv\xe5r f\xf6r m\xe4nniskor att l\xe4sa. F\xf6rs\xf6k anv\xe4nda en m\xf6rkare bakgrundsf\xe4rg och/eller en ljusare textf\xe4rg."],Clear:["Rensa"],"Custom color picker":["Anpassad f\xe4rgv\xe4ljare"],"Color: %s":["F\xe4rg: %s"],"Full Width":["Full bredd"],"Wide Width":["Bred bredd"],Widgets:["Widgetar"],Formatting:["Formatering"],"Common Blocks":["Vanliga block"],"Align Right":["H\xf6gerst\xe4ll"],"Align Center":["Centrera"],"Align Left":["V\xe4nsterst\xe4ll"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Trycker sedan 1440. Detta \xe4r utvecklingstill\xe4gget f\xf6r den nya blockredigeraren i k\xe4rnan."],"Add title":["L\xe4gg till rubrik"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenbergs utvecklingsl\xe4ge kr\xe4ver att filer byggs. K\xf6r npm install f\xf6r att installera beroenden, npm run build f\xf6r att bygga filerna eller npm run dev f\xf6r att bygga filerna och granska efter \xe4ndringar. L\xe4s filen contributing f\xf6r mer information."],Author:["F\xf6rfattare"],Slug:["Permal\xe4nk"],Discussion:["Diskussion"],"Custom Fields":["Anpassade f\xe4lt"],Excerpt:["Utdrag"],Publish:["Publicera"],Metadata:["Metadata"],Save:["Spara"],Documentation:["Dokumentation"],"Select Category":["V\xe4lj kategori"],"(Untitled)":["(Utan titel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg kr\xe4ver WordPress %s eller senare f\xf6r att fungera korrekt. Uppdatera WordPress innan du aktiverar Gutenberg."],"Gutenberg Team":["Gutenberg teamet"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s sedan"],"Block style name must be a string.":["Namn p\xe5 blocktyper m\xe5ste best\xe5 av str\xe4ngar."]}},865,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":[],"button label\x04Convert to link":[],"button label\x04Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":["%d \u0e04\u0e33"],"Top Toolbar":["\u0e41\u0e16\u0e1a\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19"],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":[],"To edit the featured image, you need permission to upload media.":["\u0e43\u0e19\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e20\u0e32\u0e1e\u0e2b\u0e19\u0e49\u0e32\u0e1b\u0e01 \u0e04\u0e38\u0e13\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e43\u0e19\u0e01\u0e32\u0e23\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e44\u0e1f\u0e25\u0e4c\u0e2a\u0e37\u0e48\u0e2d"],"To edit this block, you need permission to upload media.":["\u0e43\u0e19\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e19\u0e35\u0e49 \u0e04\u0e38\u0e13\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e43\u0e19\u0e01\u0e32\u0e23\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e44\u0e1f\u0e25\u0e4c\u0e2a\u0e37\u0e48\u0e2d"],"(selected block)":["(\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e40\u0e25\u0e37\u0e2d\u0e01)"],"Block tools":["\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e1a\u0e25\u0e47\u0e2d\u0e01"],Permalink:["\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e16\u0e32\u0e27\u0e23"],"This image has an empty alt attribute":["\u0e20\u0e32\u0e1e\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e30\u0e1a\u0e38\u0e41\u0e2d\u0e15\u0e17\u0e23\u0e34\u0e1a\u0e34\u0e27\u0e15\u0e4c alt"],"This image has an empty alt attribute; its file name is %s":["\u0e20\u0e32\u0e1e\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e30\u0e1a\u0e38\u0e41\u0e2d\u0e15\u0e17\u0e23\u0e34\u0e1a\u0e34\u0e27\u0e15\u0e4c alt, \u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c\u0e02\u0e2d\u0e07\u0e44\u0e1f\u0e25\u0e4c\u0e19\u0e35\u0e49\u0e04\u0e37\u0e2d %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":[],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],Thumbnail:[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],Annotation:[],"Drag images, upload new ones or select files from your library.":[],"blocks\x04Most Used":[],"imperative verb\x04Resolve":[],"font size name\x04Huge":[],"font size name\x04Large":[],"font size name\x04Medium":[],"font size name\x04Small":[],"font size name\x04Normal":[],"keyboard button\x04Enter":[],"button label\x04Import":[],"button label\x04Download":[],"button label\x04Embed":[],"block title\x04Embed":[],"block title\x04Classic":[],"block style\x04Large":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],media:[],"Double-check your settings before publishing.":[],"Generating preview\u2026":[],"Edit or update the image":[],Media:[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text Settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay \u2014 great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\x04View":[],"editor button\x04Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],Styles:[],"Advanced Panels":[],"Document Panels":[],General:[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],Options:[],"(opens in a new tab)":[],Minutes:[],Hours:[],Time:[],Year:[],Day:[],December:[],November:[],October:[],September:[],August:[],July:[],June:[],May:[],April:[],March:[],February:[],January:[],Month:[],Date:[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],Stripes:[],"Your site doesn\u2019t include support for this block.":[],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],Cover:[],"Border Settings":[],"Edit media":[],Medium:[],"Paste URL or type to search":[],Terms:[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],Avatar:[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],HTML:[],"Write HTML\u2026":[],"Media Settings":[],"Overlay Color":[],Overlay:[],"Insert Media":[],"Reusable block imported successfully!":["\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e43\u0e0a\u0e49\u0e0b\u0e49\u0e33\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08!"],"Invalid Reusable Block JSON file":["\u0e44\u0e1f\u0e25\u0e4c JSON \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e43\u0e0a\u0e49\u0e0b\u0e49\u0e33\u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07"],"Invalid JSON file":["\u0e44\u0e1f\u0e25\u0e4c JSON \u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07"],"Import from JSON":["\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e08\u0e32\u0e01\u0e44\u0e1f\u0e25\u0e4c JSON"],Backtick:["\u0e40\u0e01\u0e23\u0e1f (`)"],Period:["\u0e08\u0e38\u0e14 (.)"],Comma:["\u0e04\u0e2d\u0e21\u0e21\u0e48\u0e32 (,)"],"Change type of %d block":["\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e31\u0e49\u0e07 %d \u0e1a\u0e25\u0e47\u0e2d\u0e01"],Current:["\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19"],"After Conversion":["\u0e2b\u0e25\u0e31\u0e07\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07"],"Change alignment":[],"Change text alignment":[],"%d block":["%d \u0e1a\u0e25\u0e47\u0e2d\u0e01"],Escape:[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":["\u0e44\u0e1f\u0e25\u0e4c\u0e19\u0e35\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e44\u0e1f\u0e25\u0e4c\u0e40\u0e1b\u0e25\u0e48\u0e32"],"Sorry, this file type is not supported here.":["\u0e02\u0e2d\u0e2d\u0e20\u0e31\u0e22, \u0e44\u0e1f\u0e25\u0e4c\u0e14\u0e31\u0e07\u0e01\u0e25\u0e48\u0e32\u0e27\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e23\u0e2d\u0e07\u0e23\u0e31\u0e1a"],"Manage All Reusable Blocks":["\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e0b\u0e49\u0e33\u0e44\u0e14\u0e49\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14"],Title:["\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d"],"Fullscreen Mode":["\u0e42\u0e2b\u0e21\u0e14\u0e40\u0e15\u0e47\u0e21\u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d"],"Beautiful landscape":[],"Close panel":["\u0e1b\u0e34\u0e14\u0e41\u0e16\u0e1a"],"Convert to Classic Block":["\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e41\u0e01\u0e49\u0e44\u0e02\u0e41\u0e1a\u0e1a\u0e40\u0e14\u0e34\u0e21"],"Remove Poster Image":["\u0e19\u0e33\u0e20\u0e32\u0e1e\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e2d\u0e2d\u0e01"],"Select Poster Image":["\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e20\u0e32\u0e1e\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07"],"Poster Image":["\u0e20\u0e32\u0e1e\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07"],"This block is deprecated. Please use the Columns block instead.":["\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e19\u0e35\u0e49\u0e16\u0e39\u0e01\u0e40\u0e25\u0e34\u0e01\u0e43\u0e0a\u0e49\u0e41\u0e25\u0e49\u0e27 \u0e01\u0e23\u0e38\u0e13\u0e32\u0e43\u0e0a\u0e49\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e41\u0e17\u0e19"],"Text Columns (deprecated)":["\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21 (\u0e40\u0e25\u0e34\u0e01\u0e43\u0e0a\u0e49\u0e41\u0e25\u0e49\u0e27)"],"Row Count":["\u0e08\u0e33\u0e19\u0e27\u0e19\u0e41\u0e16\u0e27"],"Column Count":["\u0e08\u0e33\u0e19\u0e27\u0e19\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c"],"This block is deprecated. Please use the Paragraph block instead.":["\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e19\u0e35\u0e49\u0e16\u0e39\u0e01\u0e40\u0e25\u0e34\u0e01\u0e43\u0e0a\u0e49\u0e41\u0e25\u0e49\u0e27 \u0e01\u0e23\u0e38\u0e13\u0e32\u0e43\u0e0a\u0e49\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e17\u0e19"],"Subheading (deprecated)":["\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d\u0e22\u0e48\u0e2d\u0e22 (\u0e40\u0e25\u0e34\u0e01\u0e43\u0e0a\u0e49\u0e41\u0e25\u0e49\u0e27)"],blockquote:["\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21"],"Change the block type after adding a new paragraph.":["\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e02\u0e36\u0e49\u0e19\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32\u0e43\u0e2b\u0e21\u0e48"],"Spotlight Mode":["\u0e42\u0e2b\u0e21\u0e14\u0e2a\u0e1b\u0e2d\u0e15\u0e44\u0e25\u0e17\u0e4c"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1b\u0e49\u0e32\u0e22\u0e01\u0e33\u0e01\u0e31\u0e1a"],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":["\u0e41\u0e17\u0e23\u0e01\u0e15\u0e48\u0e2d\u0e17\u0e49\u0e32\u0e22"],"Insert Before":["\u0e41\u0e17\u0e23\u0e01\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32"],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:[],"Insert a new block before the selected block(s).":["\u0e41\u0e17\u0e23\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e43\u0e2b\u0e21\u0e48\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01"],"Remove the selected block(s).":["\u0e19\u0e33\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2d\u0e2d\u0e01"],"Duplicate the selected block(s).":["\u0e17\u0e33\u0e2a\u0e33\u0e40\u0e19\u0e32\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01"],"Block shortcuts":[],"Clear selection.":["\u0e25\u0e49\u0e32\u0e07\u0e04\u0e48\u0e32\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01"],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual Editor and Code Editor.":["\u0e2a\u0e25\u0e31\u0e1a\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e15\u0e31\u0e27\u0e41\u0e01\u0e49\u0e44\u0e02\u0e41\u0e1a\u0e1a\u0e27\u0e34\u0e0a\u0e27\u0e25\u0e41\u0e25\u0e30\u0e15\u0e31\u0e27\u0e41\u0e01\u0e49\u0e44\u0e02\u0e42\u0e04\u0e49\u0e14"],"Navigate to the previous part of the editor (alternative).":[],"Navigate to the next part of the editor (alternative).":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard Shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\x04More":[],"button to expand options\x04More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":["\u0e15\u0e31\u0e27\u0e23\u0e30\u0e1a\u0e38\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e02\u0e2d\u0e07\u0e2d\u0e2d\u0e1e\u0e40\u0e08\u0e47\u0e01\u0e17\u0e4c"],"Untitled Reusable Block":["\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e44\u0e21\u0e48\u0e21\u0e35\u0e0a\u0e37\u0e48\u0e2d\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e0b\u0e49\u0e33\u0e44\u0e14\u0e49"],Small:[],"(%s: %s)":["(%s: %s)"],Reusable:["\u0e43\u0e0a\u0e49\u0e0b\u0e49\u0e33\u0e44\u0e14\u0e49"],"(current %s: %s)":["(\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49 %s: %s)"],"Remove from Reusable Blocks":["\u0e25\u0e1a\u0e08\u0e32\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e0b\u0e49\u0e33\u0e44\u0e14\u0e49"],"Add to Reusable Blocks":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e0b\u0e49\u0e33\u0e44\u0e14\u0e49"],"Keep as HTML":["\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e40\u0e1b\u0e47\u0e19 HTML"],"Edit URL":["\u0e41\u0e01\u0e49\u0e44\u0e02 URL"],"Color Settings":["\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e35"],"The response is not a valid JSON response.":["\u0e1c\u0e25\u0e25\u0e31\u0e1e\u0e18\u0e4c\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a JSON \u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07"],"Editor publish":[],Muted:["\u0e1b\u0e34\u0e14\u0e40\u0e2a\u0e35\u0e22\u0e07\u0e41\u0e25\u0e49\u0e27"],"Video Settings":["\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d"],"recent comments":["\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e47\u0e19\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e47\u0e27\u0e46 \u0e19\u0e35\u0e49"],"Latest Comments":["\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e47\u0e19\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14"],"Display Excerpt":["\u0e41\u0e2a\u0e14\u0e07\u0e2a\u0e48\u0e27\u0e19\u0e40\u0e01\u0e23\u0e34\u0e48\u0e19\u0e19\u0e33"],"Display Date":["\u0e41\u0e2a\u0e14\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48"],"Display Avatar":["\u0e41\u0e2a\u0e14\u0e07\u0e20\u0e32\u0e1e\u0e41\u0e17\u0e19\u0e15\u0e31\u0e27"],"Latest Comments Settings":["\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e47\u0e19\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14"],"Number of Comments":["\u0e08\u0e33\u0e19\u0e27\u0e19\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e47\u0e19"],"Background Opacity":["\u0e04\u0e27\u0e32\u0e21\u0e17\u0e36\u0e1a\u0e41\u0e2a\u0e07\u0e02\u0e2d\u0e07\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07"],Auto:["\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34"],Preload:["\u0e42\u0e2b\u0e25\u0e14\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32"],"Audio Settings":["\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e2a\u0e35\u0e22\u0e07"],"Display a monthly archive of your posts.":["\u0e41\u0e2a\u0e14\u0e07\u0e04\u0e25\u0e31\u0e07\u0e40\u0e01\u0e47\u0e1a\u0e23\u0e32\u0e22\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e1a\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c"],"Display as Dropdown":["\u0e41\u0e2a\u0e14\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e14\u0e23\u0e47\u0e2d\u0e1b\u0e14\u0e32\u0e27\u0e19\u0e4c"],"Show Post Counts":["\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e27\u0e19\u0e31\u0e1a\u0e42\u0e1e\u0e2a\u0e15\u0e4c"],"Archives Settings":["\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e04\u0e25\u0e31\u0e07\u0e40\u0e01\u0e47\u0e1a"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19"],"No comments to show.":["\u0e44\u0e21\u0e48\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e47\u0e19\u0e41\u0e2a\u0e14\u0e07"],"%1$s on %2$s":[],"Select Post":["\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e42\u0e1e\u0e2a\u0e15\u0e4c"],"Select Week":["\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c"],"Select Day":["\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e27\u0e31\u0e19"],"Select Month":["\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e40\u0e14\u0e37\u0e2d\u0e19"],"Select Year":["\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1b\u0e35"],Archives:["\u0e04\u0e25\u0e31\u0e07\u0e40\u0e01\u0e47\u0e1a"],"Very dark gray":["\u0e2a\u0e35\u0e40\u0e17\u0e32\u0e40\u0e02\u0e49\u0e21\u0e21\u0e32\u0e01"],"Cyan bluish gray":["\u0e2a\u0e35\u0e40\u0e17\u0e32\u0e2d\u0e21\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e40\u0e02\u0e35\u0e22\u0e27"],"Very light gray":["\u0e2a\u0e35\u0e40\u0e17\u0e32\u0e2d\u0e48\u0e2d\u0e19\u0e21\u0e32\u0e01"],"Vivid cyan blue":["\u0e2a\u0e35\u0e1f\u0e49\u0e32\u0e2d\u0e21\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e40\u0e02\u0e35\u0e22\u0e27\u0e2a\u0e14"],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":["\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e44\u0e14\u0e49"],"Transform To:":["\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e40\u0e1b\u0e47\u0e19:"],"Remove Block":["\u0e25\u0e1a\u0e1a\u0e25\u0e47\u0e2d\u0e01"],"Open publish panel":["\u0e40\u0e1b\u0e34\u0e14\u0e41\u0e16\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e1c\u0e22\u0e41\u0e1e\u0e23\u0e48"],Dots:["\u0e08\u0e38\u0e14"],"Wide Line":["\u0e40\u0e2a\u0e49\u0e19\u0e22\u0e32\u0e27"],Large:["\u0e02\u0e19\u0e32\u0e14\u0e43\u0e2b\u0e0d\u0e48"],"Show download button":[],"Download button settings":[],"Link To":["\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e44\u0e1b\u0e22\u0e31\u0e07"],"Text link settings":[],pdf:["pdf"],document:["\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23"],"Copy URL":["\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01 URL"],"Write file name\u2026":["\u0e40\u0e02\u0e35\u0e22\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c"],"Edit file":["\u0e41\u0e01\u0e49\u0e44\u0e02\u0e44\u0e1f\u0e25\u0e4c"],File:["\u0e44\u0e1f\u0e25\u0e4c"],"A single column within a columns block.":["\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e40\u0e14\u0e35\u0e48\u0e22\u0e27\u0e43\u0e19\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c"],Column:["\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c"],Outline:[],Loop:["\u0e40\u0e25\u0e48\u0e19\u0e0b\u0e49\u0e33"],Autoplay:["\u0e40\u0e25\u0e48\u0e19\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34"],"Playback Controls":["\u0e15\u0e31\u0e27\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e40\u0e25\u0e48\u0e19"],"Close dialog":["\u0e1b\u0e34\u0e14\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e48\u0e32\u0e07"],"Sorry, this file type is not permitted for security reasons.":["\u0e02\u0e2d\u0e2d\u0e20\u0e31\u0e22, \u0e44\u0e21\u0e48\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e44\u0e1f\u0e25\u0e4c\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e19\u0e35\u0e49\u0e14\u0e49\u0e27\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e14\u0e49\u0e32\u0e19\u0e04\u0e27\u0e32\u0e21\u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22"],"Disable tips":["\u0e1b\u0e34\u0e14\u0e17\u0e34\u0e1b\u0e2a\u0e4c"],"Got it":["\u0e23\u0e31\u0e1a\u0e17\u0e23\u0e32\u0e1a"],"See next tip":["\u0e14\u0e39\u0e17\u0e34\u0e1b\u0e16\u0e31\u0e14\u0e44\u0e1b"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e41\u0e25\u0e49\u0e27 \u0e43\u0e2b\u0e49\u0e2a\u0e48\u0e07\u0e1c\u0e25\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e44\u0e14\u0e49\u0e41\u0e25\u0e49\u0e27 \u0e41\u0e25\u0e49\u0e27 Editor \u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e21\u0e32\u0e15\u0e23\u0e27\u0e07\u0e2a\u0e2d\u0e1a\u0e41\u0e25\u0e30\u0e40\u0e1c\u0e22\u0e41\u0e1e\u0e23\u0e48\u0e1a\u0e17\u0e04\u0e27\u0e32\u0e21\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e40\u0e2d\u0e07"],"Are you ready to submit for review?":["\u0e04\u0e38\u0e13\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2a\u0e48\u0e07\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e41\u0e25\u0e49\u0e27\u0e43\u0e0a\u0e48\u0e44\u0e2b\u0e21?"],"Replace image":["\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e"],"Remove image":["\u0e19\u0e33\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e\u0e2d\u0e2d\u0e01"],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":["%s \u0e21\u0e35\u0e02\u0e19\u0e32\u0e14\u0e40\u0e01\u0e34\u0e19\u0e01\u0e27\u0e48\u0e32\u0e02\u0e19\u0e32\u0e14\u0e2a\u0e39\u0e07\u0e2a\u0e38\u0e14\u0e17\u0e35\u0e48\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e44\u0e14\u0e49\u0e02\u0e2d\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e19\u0e35\u0e49"],"View the autosave":["\u0e14\u0e39\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34"],"There is an autosave of this post that is more recent than the version below.":[],Autosaving:["\u0e01\u0e33\u0e25\u0e31\u0e07\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34"],"Enter URL here\u2026":[],"Pin to toolbar":[],"Unpin from toolbar":[],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table Settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":[],"Error loading block: %s":[],"Unknown error":[],"Embed Handler":[],"term\x04Remove %s":[],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer Settings":[],Spacer:[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":[],"Skip to the selected block":[],"Publish\u2026":[],"Schedule\u2026":[],"Edit post permalink":[],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Link settings":[],Unlink:[],"Page break":[],pagination:[],"next page":[],"Image Size":[],Height:[],Width:[],"Image Dimensions":[],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":[],Advanced:[],"Add item":[],"Reset the template":[],"Keep it as is":[],"The content of your post doesn\u2019t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":[],"is now scheduled. It will go live on":[],Scheduled:[],"Scheduling\u2026":[],"Code editor selected":[],"Visual editor selected":[],Plugins:["\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19"],"Custom Size":["\u0e02\u0e19\u0e32\u0e14\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07"],"Layout Elements":["\u0e40\u0e2d\u0e25\u0e35\u0e40\u0e21\u0e19\u0e15\u0e4c\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e42\u0e04\u0e23\u0e07\u0e2b\u0e19\u0e49\u0e32"],"term\x04%s removed":["%s \u0e16\u0e39\u0e01\u0e19\u0e33\u0e2d\u0e2d\u0e01\u0e41\u0e25\u0e49\u0e27"],"term\x04%s added":["%s \u0e16\u0e39\u0e01\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e41\u0e25\u0e49\u0e27"],"imperative verb\x04Preview":["\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07"],"Block deleted.":["\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e16\u0e39\u0e01\u0e25\u0e1a\u0e41\u0e25\u0e49\u0e27"],"Block updated.":["\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e41\u0e25\u0e49\u0e27"],"Block created.":["\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e41\u0e25\u0e49\u0e27"],"Trashing failed":[],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["\u0e04\u0e38\u0e13\u0e21\u0e35\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e17\u0e35\u0e48\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 \u0e0b\u0e36\u0e48\u0e07\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e19\u0e35\u0e49\u0e08\u0e30\u0e2b\u0e32\u0e22\u0e44\u0e1b\u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d"],"Document Outline":["\u0e40\u0e04\u0e49\u0e32\u0e42\u0e04\u0e23\u0e07\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23"],Paragraphs:["\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32"],Headings:["\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d"],Words:["\u0e04\u0e33"],"Content structure":["\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32"],Public:["\u0e2a\u0e32\u0e18\u0e32\u0e23\u0e13\u0e30"],"Protected with a password you choose. Only those with the password can view this post.":["\u0e1b\u0e01\u0e1b\u0e49\u0e2d\u0e07\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e14\u0e49\u0e27\u0e22\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e31\u0e49\u0e07 \u0e41\u0e25\u0e30\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e1c\u0e39\u0e49\u0e17\u0e35\u0e48\u0e23\u0e39\u0e49\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19\u0e08\u0e36\u0e07\u0e08\u0e30\u0e2d\u0e48\u0e32\u0e19\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e19\u0e35\u0e49\u0e44\u0e14\u0e49"],"Password Protected":["\u0e16\u0e39\u0e01\u0e1b\u0e01\u0e1b\u0e49\u0e2d\u0e07\u0e14\u0e49\u0e27\u0e22\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19"],"Only visible to site admins and editors.":["\u0e40\u0e2b\u0e47\u0e19\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e1c\u0e39\u0e49\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e41\u0e25\u0e30\u0e1a\u0e23\u0e23\u0e13\u0e32\u0e18\u0e34\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19"],Private:["\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27"],"Visible to everyone.":["\u0e17\u0e38\u0e01\u0e04\u0e19\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e44\u0e14\u0e49"],"Post Visibility":["\u0e01\u0e32\u0e23\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e02\u0e2d\u0e07\u0e42\u0e1e\u0e2a\u0e15\u0e4c"],"Would you like to privately publish this post now?":["\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e1c\u0e22\u0e41\u0e1e\u0e23\u0e48\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e19\u0e35\u0e49\u0e41\u0e1a\u0e1a\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27\u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e19\u0e35\u0e49\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?"],"Use a secure password":["\u0e43\u0e0a\u0e49\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e35\u0e48\u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22"],"Create password":["\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19"],"Move to Trash":[],"Parent Term":[],"Parent Category":[],"Add new term":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1b\u0e49\u0e32\u0e22\u0e04\u0e33\u0e43\u0e2b\u0e21\u0e48"],"Add new category":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e43\u0e2b\u0e21\u0e48"],Term:["\u0e1b\u0e49\u0e32\u0e22\u0e04\u0e33"],Tag:["\u0e41\u0e17\u0e47\u0e01"],"Add New Term":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1b\u0e49\u0e32\u0e22\u0e04\u0e33\u0e43\u0e2b\u0e21\u0e48"],"Add New Tag":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e41\u0e17\u0e47\u0e01\u0e43\u0e2b\u0e21\u0e48"],"Switch to Draft":["\u0e2a\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e41\u0e1a\u0e1a\u0e23\u0e48\u0e32\u0e07"],"Are you sure you want to unpublish this post?":["\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e40\u0e1c\u0e22\u0e41\u0e1e\u0e23\u0e48\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e19\u0e35\u0e49\u0e43\u0e0a\u0e48\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?"],Immediately:["\u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e19\u0e35\u0e49"],"Save Draft":["\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e41\u0e1a\u0e1a\u0e23\u0e48\u0e32\u0e07"],Saving:["\u0e01\u0e33\u0e25\u0e31\u0e07\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01"],"Publish:":["\u0e40\u0e1c\u0e22\u0e41\u0e1e\u0e23\u0e48:"],"Visibility:":["\u0e01\u0e32\u0e23\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19:"],"Are you ready to publish?":["\u0e04\u0e38\u0e13\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e1c\u0e22\u0e41\u0e1e\u0e23\u0e48\u0e41\u0e25\u0e49\u0e27\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?"],"Copy Link":["\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01\u0e25\u0e34\u0e07\u0e01\u0e4c"],"What\u2019s next?":["\u0e2d\u0e30\u0e44\u0e23\u0e15\u0e48\u0e2d?"],"is now live.":[],Published:["\u0e40\u0e1c\u0e22\u0e41\u0e1e\u0e23\u0e48\u0e41\u0e25\u0e49\u0e27"],Schedule:["\u0e15\u0e31\u0e49\u0e07\u0e40\u0e27\u0e25\u0e32"],Update:["\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e17"],"Submit for Review":["\u0e2a\u0e48\u0e07\u0e43\u0e2b\u0e49\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a"],"Updating\u2026":["\u0e01\u0e33\u0e25\u0e31\u0e07\u0e2d\u0e31\u0e1b\u0e40\u0e14\u0e17..."],"Publishing\u2026":["\u0e01\u0e33\u0e25\u0e31\u0e07\u0e40\u0e1c\u0e22\u0e41\u0e1e\u0e23\u0e48..."],"Allow Pingbacks & Trackbacks":[],"Permalink:":["\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e16\u0e32\u0e27\u0e23:"],"Pending Review":["\u0e23\u0e2d\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a"],"%d Revision":["%d \u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02"],"Suggestion:":["\u0e04\u0e33\u0e41\u0e19\u0e30\u0e19\u0e33:"],"Post Format":["\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e42\u0e1e\u0e2a\u0e15\u0e4c"],Chat:["\u0e41\u0e0a\u0e17"],Status:["\u0e2a\u0e16\u0e32\u0e19\u0e30"],Standard:["\u0e1b\u0e01\u0e15\u0e34"],Aside:["\u0e14\u0e49\u0e32\u0e19\u0e02\u0e49\u0e32\u0e07"],"Set Featured Image":[],"Learn more about manual excerpts":["\u0e2d\u0e48\u0e32\u0e19\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e01\u0e23\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e40\u0e01\u0e23\u0e34\u0e48\u0e19\u0e19\u0e33\u0e40\u0e2d\u0e07"],"Write an excerpt (optional)":["\u0e40\u0e02\u0e35\u0e22\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e40\u0e01\u0e23\u0e34\u0e48\u0e19\u0e19\u0e33 (\u0e44\u0e21\u0e48\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a)"],"Allow Comments":["\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e47\u0e19"],"Template:":["\u0e40\u0e17\u0e47\u0e21\u0e40\u0e1e\u0e25\u0e15:"],"no parent":[],"no title":["\u0e44\u0e21\u0e48\u0e21\u0e35\u0e0a\u0e37\u0e48\u0e2d"],Order:["\u0e40\u0e23\u0e35\u0e22\u0e07\u0e25\u0e33\u0e14\u0e31\u0e1a"],"No blocks found.":["\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e1a\u0e25\u0e47\u0e2d\u0e01"],"%d result found.":[],Saved:["\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e41\u0e25\u0e49\u0e27"],Embeds:[],Blocks:["\u0e1a\u0e25\u0e47\u0e2d\u0e01"],"Search for a block":["\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e1a\u0e25\u0e47\u0e2d\u0e01"],"Add block":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1a\u0e25\u0e47\u0e2d\u0e01"],"Add %s":["\u0e40\u0e1e\u0e34\u0e48\u0e21 %s"],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],Undo:["\u0e40\u0e25\u0e34\u0e01\u0e17\u0e33"],Redo:["\u0e17\u0e33\u0e0b\u0e49\u0e33"],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":["\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e1a\u0e25\u0e47\u0e2d\u0e01"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":["\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b"],"More options":["\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21"],"Edit visually":[],Duplicate:[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":["\u0e41\u0e01\u0e49\u0e42\u0e04\u0e49\u0e14 HTML"],"Convert to Blocks":["\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e1a\u0e25\u0e47\u0e2d\u0e01"],"Block: %s":["\u0e1a\u0e25\u0e47\u0e2d\u0e01: %s"],"This block has encountered an error and cannot be previewed.":[],"No block selected.":["\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e16\u0e39\u0e01\u0e40\u0e25\u0e37\u0e2d\u0e01"],"Transform into:":[],Remove:[],"Find original":[],"Copy All Content":["\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14"],"Copied!":["\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01\u0e41\u0e25\u0e49\u0e27!"],"Additional settings are now available in the Editor block settings sidebar":[],Visibility:[],"Status & Visibility":[],"Page Attributes":[],Block:["\u0e1a\u0e25\u0e47\u0e2d\u0e01"],Document:["\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23"],"Featured Image":["\u0e20\u0e32\u0e1e\u0e1b\u0e01"],"Close settings":["\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32"],"Editor content":["\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e43\u0e19\u0e15\u0e31\u0e27\u0e41\u0e01\u0e49\u0e44\u0e02"],Tools:["\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d"],Editor:["\u0e15\u0e31\u0e27\u0e41\u0e01\u0e49\u0e44\u0e02"],"Code Editor":["\u0e15\u0e31\u0e27\u0e41\u0e01\u0e49\u0e44\u0e02\u0e42\u0e04\u0e49\u0e14"],"Visual Editor":["\u0e15\u0e31\u0e27\u0e41\u0e01\u0e49\u0e44\u0e02\u0e41\u0e1a\u0e1a\u0e40\u0e2b\u0e47\u0e19\u0e17\u0e31\u0e19\u0e17\u0e35"],"Editor top bar":["\u0e41\u0e16\u0e1a\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19\u0e02\u0e2d\u0e07\u0e15\u0e31\u0e27\u0e41\u0e01\u0e49\u0e44\u0e02"],Settings:["\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32"],Reset:["\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32"],"Dismiss this notice":["\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19\u0e19\u0e35\u0e49"],"Item removed.":["\u0e25\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e41\u0e25\u0e49\u0e27"],"Item added.":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e41\u0e25\u0e49\u0e27"],"Drop files to upload":["\u0e1b\u0e25\u0e48\u0e2d\u0e22\u0e44\u0e1f\u0e25\u0e4c\u0e25\u0e07\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e2d\u0e31\u0e1b\u0e42\u0e2b\u0e25\u0e14"],PM:[],AM:[],"An unknown error occurred.":["\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e17\u0e23\u0e32\u0e1a\u0e2a\u0e32\u0e40\u0e2b\u0e15\u0e38"],"No results.":["\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1c\u0e25\u0e25\u0e31\u0e1e\u0e18\u0e4c"],"%d result found, use up and down arrow keys to navigate.":["\u0e1e\u0e1a %d \u0e1c\u0e25\u0e25\u0e31\u0e1e\u0e18\u0e4c, \u0e43\u0e0a\u0e49\u0e1b\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e28\u0e23\u0e02\u0e36\u0e49\u0e19\u0e25\u0e07\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e25\u0e37\u0e48\u0e2d\u0e19"],"(no title)":["(\u0e44\u0e21\u0e48\u0e21\u0e35\u0e0a\u0e37\u0e48\u0e2d)"],URL:["URL"],Submit:["\u0e2a\u0e48\u0e07"],Close:["\u0e1b\u0e34\u0e14"],"Insert link":[],"Edit link":[],Link:["\u0e25\u0e34\u0e07\u0e01\u0e4c"],Strikethrough:["\u0e40\u0e2a\u0e49\u0e19\u0e02\u0e35\u0e14\u0e06\u0e48\u0e32"],Italic:["\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e35\u0e22\u0e07"],Bold:[],"Remove link":[],"Number of items":[],All:["\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14"],Category:["\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["\u0e40\u0e01\u0e48\u0e32\u0e2a\u0e38\u0e14\u0e44\u0e1b\u0e43\u0e2b\u0e21\u0e48\u0e2a\u0e38\u0e14"],"Newest to Oldest":["\u0e43\u0e2b\u0e21\u0e48\u0e2a\u0e38\u0e14\u0e44\u0e1b\u0e40\u0e01\u0e48\u0e32\u0e2a\u0e38\u0e14"],"Order by":["\u0e40\u0e23\u0e35\u0e22\u0e07\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e42\u0e14\u0e22"],Select:["\u0e40\u0e25\u0e37\u0e2d\u0e01"],"Select or Upload Media":["\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2b\u0e23\u0e37\u0e2d\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e44\u0e1f\u0e25\u0e4c\u0e2a\u0e37\u0e48\u0e2d"],Video:["\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d"],"Edit video":["\u0e41\u0e01\u0e49\u0e44\u0e02\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d"],"Write\u2026":["\u0e40\u0e02\u0e35\u0e22\u0e19"],poetry:[],Verse:[],"New Column":["\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e43\u0e2b\u0e21\u0e48"],"Delete Column":["\u0e25\u0e1a\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c"],"Add Column After":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e15\u0e48\u0e2d\u0e17\u0e49\u0e32\u0e22"],"Add Column Before":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32"],"Delete Row":["\u0e25\u0e1a\u0e41\u0e16\u0e27"],"Add Row After":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32"],"Add Row Before":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e41\u0e16\u0e27\u0e15\u0e48\u0e2d\u0e17\u0e49\u0e32\u0e22"],"Edit table":[],Table:["\u0e15\u0e32\u0e23\u0e32\u0e07"],"Write subheading\u2026":[],"Write shortcode here\u2026":[],Shortcode:[],divider:["\u0e15\u0e31\u0e27\u0e04\u0e31\u0e48\u0e19"],"horizontal-line":["\u0e40\u0e2a\u0e49\u0e19\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19"],Separator:["\u0e15\u0e31\u0e27\u0e41\u0e1a\u0e48\u0e07"],Quote:["\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e04\u0e33\u0e1e\u0e39\u0e14"],"Write citation\u2026":[],"Write quote\u2026":[],Pullquote:[],"Write preformatted text\u2026":[],Preformatted:[],text:["\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21"],Paragraph:["\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32"],"Font Size":["\u0e02\u0e19\u0e32\u0e14\u0e1f\u0e2d\u0e19\u0e15\u0e4c"],"Drop Cap":["\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e41\u0e23\u0e01\u0e02\u0e19\u0e32\u0e14\u0e43\u0e2b\u0e0d\u0e48"],"Text Settings":["\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21"],"Read more":["\u0e2d\u0e48\u0e32\u0e19\u0e40\u0e1e\u0e34\u0e48\u0e21"],"Write list\u2026":["\u0e40\u0e02\u0e35\u0e22\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23"],"numbered list":["\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a\u0e15\u0e31\u0e27\u0e40\u0e25\u0e02"],"ordered list":["\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e07\u0e25\u0e33\u0e14\u0e31\u0e1a"],"bullet list":["\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a\u0e44\u0e21\u0e48\u0e40\u0e23\u0e35\u0e22\u0e07\u0e25\u0e33\u0e14\u0e31\u0e1a"],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":["\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a\u0e40\u0e23\u0e35\u0e22\u0e07\u0e25\u0e33\u0e14\u0e31\u0e1a"],"Convert to unordered list":["\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a\u0e44\u0e21\u0e48\u0e40\u0e23\u0e35\u0e22\u0e07\u0e25\u0e33\u0e14\u0e31\u0e1a"],List:["\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23"],"recent posts":["\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e47\u0e27\u0e46 \u0e19\u0e35\u0e49"],"No posts found.":["\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e42\u0e1e\u0e2a\u0e15\u0e4c"],"Latest Posts":["\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14"],"Display post date":["\u0e41\u0e2a\u0e14\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e02\u0e2d\u0e07\u0e42\u0e1e\u0e2a\u0e15\u0e4c"],"Grid view":[],"List view":[],photo:["\u0e23\u0e39\u0e1b\u0e16\u0e48\u0e32\u0e22"],"Image Settings":["\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e"],Image:["\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e"],Preview:["\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07"],embed:[],"Custom HTML":["HTML \u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07"],subtitle:[],title:[],Heading:["\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d"],"Write heading\u2026":["\u0e40\u0e02\u0e35\u0e22\u0e19\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d..."],"Heading %d":["\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a %d"],Level:["\u0e23\u0e30\u0e14\u0e31\u0e1a"],"Heading Settings":["\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d"],photos:["\u0e23\u0e39\u0e1b\u0e16\u0e48\u0e32\u0e22"],images:["\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e"],"Remove Image":["\u0e19\u0e33\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e\u0e2d\u0e2d\u0e01"],None:["\u0e44\u0e21\u0e48\u0e21\u0e35"],"Media File":["\u0e44\u0e1f\u0e25\u0e4c\u0e2a\u0e37\u0e48\u0e2d"],"Attachment Page":["\u0e2b\u0e19\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e44\u0e1f\u0e25\u0e4c\u0e41\u0e19\u0e1a"],"Crop Images":["\u0e15\u0e31\u0e14\u0e20\u0e32\u0e1e"],"Gallery Settings":["\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e41\u0e01\u0e25\u0e25\u0e2d\u0e23\u0e35\u0e48"],Gallery:["\u0e41\u0e01\u0e25\u0e25\u0e2d\u0e23\u0e35\u0e48"],Classic:[],video:["\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d"],audio:["\u0e40\u0e2a\u0e35\u0e22\u0e07"],music:["\u0e40\u0e1e\u0e25\u0e07"],image:["\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e"],blog:["\u0e1a\u0e25\u0e47\u0e2d\u0e01"],post:["\u0e42\u0e1e\u0e2a\u0e15\u0e4c"],"Embedded content from %s":[],"Enter URL to embed here\u2026":[],"%s URL":["URL \u0e02\u0e2d\u0e07 %s"],"Embedding\u2026":["\u0e01\u0e33\u0e25\u0e31\u0e07\u0e41\u0e17\u0e23\u0e01..."],"Write title\u2026":["\u0e40\u0e02\u0e35\u0e22\u0e19\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d..."],"Fixed Background":["\u0e15\u0e23\u0e36\u0e07\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07"],"Edit image":["\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e"],Columns:["\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c"],Experiments:[],Code:["\u0e42\u0e04\u0e49\u0e14"],"Write code\u2026":["\u0e40\u0e02\u0e35\u0e22\u0e19\u0e42\u0e04\u0e49\u0e14..."],Categories:["\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48"],"Show Hierarchy":["\u0e41\u0e2a\u0e14\u0e07\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e0a\u0e31\u0e49\u0e19"],"Show post counts":[],"Categories Settings":["\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48"],"Add text\u2026":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21..."],Button:["\u0e1b\u0e38\u0e48\u0e21"],Apply:["\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19"],"Text Color":["\u0e2a\u0e35\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21"],"Background Color":["\u0e2a\u0e35\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07"],"Block has been deleted or is unavailable.":["\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e16\u0e39\u0e01\u0e25\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e0a\u0e49\u0e44\u0e14\u0e49"],"Reusable Blocks":["\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e0b\u0e49\u0e33\u0e44\u0e14\u0e49"],Cancel:[],Edit:["\u0e41\u0e01\u0e49\u0e44\u0e02"],"Edit audio":["\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e2a\u0e35\u0e22\u0e07"],"Write caption\u2026":["\u0e40\u0e02\u0e35\u0e22\u0e19\u0e04\u0e33\u0e1a\u0e23\u0e23\u0e22\u0e32\u0e22"],"Use URL":[],Audio:["\u0e40\u0e2a\u0e35\u0e22\u0e07"],Upload:["\u0e2d\u0e31\u0e1b\u0e42\u0e2b\u0e25\u0e14"],"Additional CSS Class(es)":[],"HTML Anchor":["\u0e2b\u0e21\u0e38\u0e14 HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],Clear:["\u0e25\u0e49\u0e32\u0e07\u0e04\u0e48\u0e32"],"Custom color picker":["\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e35"],"Color: %s":["\u0e2a\u0e35: %s"],"Full Width":[],"Wide Width":[],Widgets:["\u0e27\u0e34\u0e14\u0e40\u0e08\u0e47\u0e15"],Formatting:["\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a"],"Common Blocks":["\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e35\u0e22\u0e19"],Slug:["\u0e2a\u0e25\u0e31\u0e01"],Discussion:["\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e17\u0e19\u0e32"],"Custom Fields":["\u0e04\u0e31\u0e2a\u0e15\u0e2d\u0e21\u0e1f\u0e34\u0e25\u0e14\u0e4c"],Excerpt:["\u0e40\u0e01\u0e23\u0e34\u0e48\u0e19\u0e19\u0e33"],Publish:["\u0e40\u0e1c\u0e22\u0e41\u0e1e\u0e23\u0e48"],Metadata:[],Save:["\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01"],Documentation:["\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e04\u0e39\u0e48\u0e21\u0e37\u0e2d"],"Select Category":["\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48"],"(Untitled)":["(\u0e44\u0e21\u0e48\u0e21\u0e35\u0e0a\u0e37\u0e48\u0e2d)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["\u0e17\u0e35\u0e21\u0e01\u0e39\u0e40\u0e17\u0e19\u0e40\u0e1a\u0e34\u0e23\u0e4c\u0e01"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["\u0e01\u0e39\u0e40\u0e17\u0e19\u0e40\u0e1a\u0e34\u0e23\u0e4c\u0e01"],Demo:["\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07"],"%s ago":["\u0e40\u0e21\u0e37\u0e48\u0e2d %s \u0e01\u0e48\u0e2d\u0e19"],"Block style name must be a string.":[]}},866,[]); +__d(function(e,a,i,n,l,t,r){l.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":["Yaz\u0131 ba\u015fl\u0131\u011f\u0131"],"Add nofollow to link":["Ba\u011flant\u0131ya nofollow ekle"],"Link Settings":["Ba\u011flant\u0131 ayarlar\u0131"],"Add Submenu":["Alt men\xfc ekle"],"Add link\u2026":["Ba\u011flant\u0131 ekle..."],Dark:["Koyu"],Light:["A\xe7\u0131k"],recording:["kay\u0131t"],podcast:["podcast"],sound:["ses"],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":["Teman\u0131za dahil etmek i\xe7in \u015fablon par\xe7alar\u0131."],"Template parts list":["\u015eablon par\xe7alar\u0131 listesi"],"Template parts list navigation":["\u015eablon par\xe7alar\u0131 listesi dola\u015f\u0131m\u0131"],"Filter template parts list":["\u015eablon par\xe7alar\u0131 listesini filtrele"],"Uploaded to this template part":["Bu \u015fablon par\xe7as\u0131na y\xfcklenmi\u015f"],"Insert into template part":["\u015eablona par\xe7as\u0131na ekle"],"Template part archives":["\u015eablon par\xe7as\u0131 ar\u015fivleri"],"No template parts found in Trash.":["\xc7\xf6pte herhangi bir \u015fablon par\xe7as\u0131 bulunamad\u0131."],"No template parts found.":["\u015eablon par\xe7as\u0131 bulunamad\u0131."],"Parent Template Part:":["Ebeveyn \u015fablon par\xe7as\u0131:"],"Search Template Parts":["\u015eablon par\xe7alar\u0131n\u0131 ara"],"All Template Parts":["T\xfcm \u015fablon par\xe7alar\u0131"],"View Template Part":["\u015eablon par\xe7alar\u0131n\u0131 g\xf6r\xfcnt\xfcle"],"Edit Template Part":["\u015eablon par\xe7alar\u0131n\u0131 d\xfczenle"],"New Template Part":["Yeni \u015fablon par\xe7as\u0131"],"Add New Template Part":["Yeni \u015fablon par\xe7as\u0131 ekle"],"Template Part\x04Add New":["Yeni ekle"],"Admin Menu text\x04Template Parts":["\u015eablon par\xe7alar\u0131"],"Template Part":["\u015eablon par\xe7as\u0131"],"Template Parts":["\u015eablon par\xe7alar\u0131"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:["Dola\u015f\u0131m"],"Loading Navigation\u2026":["Dola\u015f\u0131m y\xfckleniyor..."],"Navigation Structure":["Dola\u015f\u0131m yap\u0131s\u0131"],"Create empty":["Bo\u015f olu\u015ftur"],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":["B\xfcy\xfck ekranlar"],"Medium screens":["Orta boy ekranlar"],"Small screens":["K\xfc\xe7\xfck ekranlar"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:["De\u011fi\u015ftir"],"Currently selected":["Mevcut se\xe7ilen"],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":["Mevcut se\xe7ili ba\u011flant\u0131 ayarlar\u0131"],"Generic label for block inserter button\x04Add block":["Blok ekle"],"directly add the only allowed block\x04Add %s":["%s ekle"],"%s block added":["%s blok eklendi"],"Move %s":["%s ta\u015f\u0131"],"Extra Large":["\xc7ok b\xfcy\xfck"],"Block breadcrumb":["Blok ba\u011flant\u0131 haritas\u0131"],"Site Title":["Site ba\u015fl\u0131\u011f\u0131"],"Open Colors Selector":["Renk se\xe7iciyi a\xe7"],"Overlay Gradient":["Kaplama degradesi"],"Templates list":["\u015eablon listesi"],"Templates list navigation":["\u015eablon listesi dola\u015f\u0131m\u0131"],"Filter templates list":["\u015eablon listesini filtrele"],"Uploaded to this template":["Bu \u015fablona y\xfcklenmi\u015f"],"Insert into template":["\u015eablona ekle"],"Template archives":["\u015eablon ar\u015fivleri"],"No templates found in Trash.":["\xc7\xf6pte herhangi bir \u015fablon bulunamad\u0131."],"No templates found.":["\u015eablon bulunamad\u0131."],"Parent Template:":["Ebeveyn \u015fablon"],"Search Templates":["\u015eablon ara"],"All Templates":["T\xfcm \u015fablonlar"],"View Template":["\u015eablon g\xf6r\xfcnt\xfcle"],"Edit Template":["\u015eablon d\xfczenle"],"New Template":["Yeni \u015fablon"],"Add New Template":["Yeni \u015fablon ekle"],"Template\x04Add New":["Yeni ekle"],"Admin Menu text\x04Templates":["\u015eablonlar"],Template:["\u015eablon"],"No matching template found":["E\u015fle\u015fen \u015fablon bulunamad\u0131"],"Gradient: %s":["Degrade: %s"],"Gradient code: %s":["Degrade kodu: %s"],"All content copied.":["T\xfcm i\xe7erik kopyaland\u0131."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Ortam kar\u015f\u0131ya y\xfcklenirken ba\u015far\u0131s\u0131z oldu. E\u011fer y\xfckledi\u011finiz bir foto\u011fraf veya b\xfcy\xfck bir g\xf6rsel ise l\xfctfen k\xfc\xe7\xfclt\xfcp tekrar deneyin."],Gradient:["Degrade"],"Gradient Presets":["Degrade haz\u0131r ayarlar\u0131 "],"No Preview Available.":["\xd6n izleme mevcut de\u011fil."],Midnight:["Gece yar\u0131s\u0131"],"Electric grass":["Elektrikli \xe7im"],"Pale ocean":["Soluk okyanus"],"Luminous dusk":["Ayd\u0131nl\u0131k alacakaranl\u0131k"],"Blush bordeaux":["Bordo"],"Blush light purple":["A\xe7\u0131k mor"],"Cool to warm spectrum":["S\u0131caktan so\u011fu\u011fa spektrum"],"Very light gray to cyan bluish gray":["\xc7ok a\xe7\u0131k griden mavimsi griye"],"Luminous vivid orange to vivid red":["A\xe7\u0131k turuncudan parlak k\u0131rm\u0131z\u0131ya"],"Luminous vivid amber to luminous vivid orange":["A\xe7\u0131k kehribardan a\xe7\u0131k turuncuya"],"Light green cyan to vivid green cyan":["A\xe7\u0131k ye\u015filden parlak ye\u015file"],"Vivid cyan blue to vivid purple":["Parlak maviden parlak mora"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 Aral\u0131k 2018"],"February 21, 2019":["21 \u015eubat 2019"],"May 7, 2019":["7 May\u0131s 2019"],"Release Date":["Da\u011f\u0131t\u0131m tarihi"],"Jazz Musician":["Jazz m\xfczisyeni"],Version:["S\xfcr\xfcm"],"Six.":["Alt\u0131."],"Five.":["Be\u015f."],"Four.":["D\xf6rt."],"Three.":["\xdc\xe7."],"Two.":["\u0130ki."],"One.":["Bir."],"One of the hardest things to do in technology is disrupt yourself.":["Teknolojide yap\u0131lmas\u0131 en zor \u015feylerden biri kendinizi rahats\u0131z etmektir."],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["Vakit gecedir. Kamera dikey \xe7evrinmeyle \xf6nde g\xf6rd\xfc\u011f\xfcm\xfcz parmakl\u0131klar boyunca ileriler. Parmakl\u0131klar\u0131n \xf6tesinde sis ve lo\u015flukla kar\u015f\u0131\u015fm\u0131\u015f ancak belli belirsiz esrarengiz bi\xe7imler se\xe7ilmektedir."],"Window, very small in the distance, illuminated.":["\u015eatodaki tek ayd\u0131nl\u0131k pencerenin omuz \xe7ekimi girer:"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["EXT. XANADU - FAINT DAWN - 1940 (MINYAT\xdcR)"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["\xc7al\u0131ku\u015fu
Kendi hayat\u0131n\u0131 kazan\u0131r
Sessizce."],"Welcome to the wonderful world of blocks\u2026":["Bloklar\u0131n harika d\xfcnyas\u0131na ho\u015f geldiniz\u2026"],"Snow Patrol":["Kar devriyesi"],Dimensions:["Boyutlar"],"Minimum height in pixels":["Piksel cinsinden asgari y\xfckseklik"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Eylem \xe7a\u011fr\u0131s\u0131"],"In quoting others, we cite ourselves.":["Ba\u015fkalar\u0131ndan al\u0131nt\u0131 yaparken kendimize at\u0131f yapar\u0131z."],cite:["at\u0131f"],"Mont Blanc appears\u2014still, snowy, and serene.":["Mont Blanc belirir - hala karl\u0131 ve sakin."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["La Mancha'n\u0131n, ad\u0131n\u0131 hat\u0131rlamad\u0131\u011f\u0131m bir k\xf6y\xfcnde, fazla uzun zaman \xf6nce say\u0131lmaz, evde m\u0131zra\u011f\u0131, eski deri kalkan\u0131 as\u0131l\u0131 asilzadelerden biri ya\u015fard\u0131; c\u0131l\u0131z bir beygiri, bir de taz\u0131s\u0131 vard\u0131."],"Block navigation":["Blok dola\u015f\u0131m\u0131"],"Enable Full Site Editing":["Tam site d\xfczenlemeyi etkinle\u015ftir"],"Full Site Editing":["Tam site d\xfczenleme"],"Templates to include in your theme.":["Teman\u0131za dahil etmek i\xe7in \u015fablonlar."],Templates:["\u015eablonlar"],"Inserter Help Panel":["Ekleyici yard\u0131m paneli"],"Pre-publish Checks":["Yay\u0131n \xf6ncesi kontroller"],"Please contact your site administrator to install new blocks.":["Yeni bloklar eklemek i\xe7in l\xfctfen site y\xf6neticinizle ileti\u015fim kurun."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["K\xfct\xfcphanenizde hi\xe7 blok bulunamad\u0131. Yeni bloklar eklemek i\xe7in l\xfctfen site y\xf6neticinizle ileti\u015fim kurun."],"No blocks found in your library.":["K\xfct\xfcphanenizde hi\xe7 blok bulunamad\u0131."],"No blocks found in your library. These blocks can be downloaded and installed:":["K\xfct\xfcphanenizde hi\xe7 blok bulunamad\u0131. \u015eu bloklar indirilebilir ve kurulabilir."],"No blocks found in your library. We did find %d block available for download.":["K\xfct\xfcphanenizde hi\xe7 blok bulunamad\u0131. \u0130ndirilebilecek %d blok bulduk.","K\xfct\xfcphanenizde hi\xe7 blok bulunamad\u0131. \u0130ndirilebilecek %d blok bulduk."],"Block previews can\u2019t load.":["Blok \xf6n izlemesi y\xfckelnemedi."],Retry:["Tekrar dene"],"Block previews can't install.":["Blok \xf6n izlemesi y\xfcklenemedi."],"Updated %s":["%s g\xfcncellendi"],"%d active installation":["%d etkin kurulum","%d etkin kurulum"],"This author has %d block, with an average rating of %d.":["Bu yazar\u0131n %d blo\u011fu var ve ortalama de\u011feri %d.","Bu yazar\u0131n %d blo\u011fu var ve ortalama de\u011feri %d."],"Authored by %s":["%s taraf\u0131ndan haz\u0131rland\u0131"],Add:["Ekle"],"%d total rating":["%d toplam puan","%d toplam puan"],"%s out of 5 stars":["5 \xfczerinden %s y\u0131ld\u0131z"],"Enter Address":["Adres girin"],"Pill Shape":["Hap \u015fekli"],"Logos Only":["Sadece logolar"],"Create a block of links to your social media or external sites":["Sosyal medyan\u0131za veya harici sitelerinize bir ba\u011flant\u0131 blo\u011fu olu\u015fturun"],"Social links":["Sosyal ba\u011flant\u0131lar"],"Open block navigator":["Blok dola\u015f\u0131m\u0131n\u0131 a\xe7"],"Attachment page":["Ek sayfas\u0131"],Fill:["Doldur"],"Link rel":["Ba\u011flant\u0131 i\xe7in rel"],"Border Radius":["Kenar yuvarlakl\u0131\u011f\u0131"],"Write gallery caption\u2026":["Galeri ba\u015fl\u0131\u011f\u0131n\u0131 yaz..."],"Content Blocks":["\u0130\xe7erik bloklar\u0131"],"Restore the backup":["Yedekten geri d\xf6nd\xfcr"],"The backup of this post in your browser is different from the version below.":["Bu yaz\u0131n\u0131n taray\u0131c\u0131n\u0131zdaki yede\u011fi a\u015fa\u011f\u0131daki s\xfcr\xfcmden farkl\u0131."],"Enable Block Directory search":["Block dizin aramay\u0131 etkinle\u015ftir"],"Block Directory":["Blok dizini"],"Unable to connect to the filesystem. Please confirm your credentials.":["Dosya sistemine ba\u011flan\u0131lam\u0131yor. L\xfctfen kimlik bilgilerinizi kontrol edin."],"Sorry, you are not allowed to install blocks.":["\xdczg\xfcn\xfcm, blok y\xfcklemenize izin verilmiyor."],"%1$d block is disabled.":["%1$d blok etkisizle\u015ftirildi.","%1$d blok etkisizle\u015ftirildi."],"Reverse List Numbering":["Ters liste numaraland\u0131rmas\u0131"],"Start Value":["Ba\u015flang\u0131\xe7 de\u011feri"],"Ordered List Settings":["S\u0131ral\u0131 liste ayarlar\u0131"],"Clear Media":["Ortam\u0131 temizle"],"block style\x04Circle Mask":["\xc7ember maskesi"],"Default Style":["Varsay\u0131lan bi\xe7em"],"Not set":["Ayarlanmad\u0131"],"While writing, you can press / to quickly insert new blocks.":["Yazarken, h\u0131zl\u0131 bir \u015fekilde yeni bloklar eklemek i\xe7in / tu\u015funa basabilirsiniz."],"Browse through the library to learn more about what each block does.":["Her blo\u011fun ne yapt\u0131\u011f\u0131 hakk\u0131nda daha fazla bilgi edinmek i\xe7in k\xfct\xfcphaneye g\xf6z at\u0131n."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Her t\xfcrl\xfc i\xe7erik i\xe7in blok mevcut: metin, ba\u015fl\u0131k, resim, liste, video, tablo ve daha fazlas\u0131n\u0131 ekleyin."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Bloklar\u0131n harika d\xfcnyas\u0131na ho\u015f geldiniz! Bloklar, edit\xf6r i\xe7indeki t\xfcm i\xe7eri\u011fin temelidir."],"Version of the content block format used by the object.":["Nesne taraf\u0131ndan kullan\u0131lan i\xe7erik blo\u011fu format\u0131n\u0131n s\xfcr\xfcm\xfc."],"HTML content for the object, transformed for display.":["G\xf6r\xfcnt\xfcleme i\xe7in d\xf6n\xfc\u015ft\xfcr\xfclm\xfc\u015f \u015fekliyle nesnenin HTML i\xe7eri\u011fi,"],"Content for the object, as it exists in the database.":["Veritaban\u0131nda oldu\u011fu \u015fekliyle nesnenin i\xe7eri\u011fi."],"The content for the object.":["Nesne i\xe7in i\xe7erik."],"Change column alignment":["S\xfctun hizalamas\u0131n\u0131 de\u011fi\u015ftir"],"Align Column Right":["S\xfctunu sa\u011fa hizala"],"Align Column Center":["S\xfctunu ortala"],"Align Column Left":["S\xfctunu sola hizala"],Color:["Renk"],"Vivid purple":["Canl\u0131 mor"],"Disable & Reload":["Etkisizle\u015ftir ve yeniden y\xfckle"],"Enable & Reload":["Etkinle\u015ftir ve yeniden y\xfckle"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Bu de\u011fi\u015fiklik i\xe7in sayfan\u0131n yeniden y\xfcklemesi gerekiyor. Yeniden y\xfcklemeden \xf6nce i\xe7eri\u011finizin kaydedildi\u011finden emin olun."],"Display these keyboard shortcuts.":["Bu klavye k\u0131sayollar\u0131n\u0131 g\xf6ster."],"Experiments Settings":["Deney ayarlar\u0131"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg, a\xe7abilece\u011finiz baz\u0131 deneysel \xf6zelliklere sahiptir. Basit\xe7e, kullanmak istedi\u011finiz her birini se\xe7in. Bu \xf6zelliklerin de\u011fi\u015fmesi muhtemeldir, bu y\xfczden bunlar\u0131 canl\u0131 sitede kullanmak tavsiye edilmez."],"Enable Widgets Screen and Legacy Widget Block":["Bile\u015fen ekran\u0131n\u0131 ve eski bile\u015fen blo\u011funu etkinle\u015ftir"],"Experiment settings":["Deney ayarlar\u0131"],"Block name name must be a string.":["Blok ad\u0131 metin olmal\u0131d\u0131r."],Custom:["\xd6zel"],Draft:["Taslak"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["\"%1$s\" blo\u011fu \"%2$s.\" isimli bir stil i\xe7ermez"],"Learn more about anchors":["\xc7apalar hakk\u0131nda daha fazlas\u0131n\u0131 \xf6\u011frenin"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["\"\xc7apa\" olarak adland\u0131r\u0131lan, yaln\u0131zca bu ba\u015fl\u0131k i\xe7in benzersiz bir web adresi olu\u015fturmak i\xe7in bo\u015fluksuz bir veya iki kelime girin. Ard\u0131ndan, do\u011frudan sayfan\u0131z\u0131n bu b\xf6l\xfcm\xfcne ba\u011flanabilirsiniz."],"Widget Blocks (Experimental)":["Bile\u015fen bloklar\u0131 (deneysel)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Bir video dosyas\u0131 y\xfckleyin, ortam kitapl\u0131\u011f\u0131n\u0131zdan bir tane se\xe7in veya bir URL ile ekleyin."],"Upload an image file, pick one from your media library, or add one with a URL.":["Bir g\xf6rsel dosyas\u0131 y\xfckleyin, ortam kitapl\u0131\u011f\u0131n\u0131zdan bir tane se\xe7in veya bir URL ile ekleyin."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Bir ses dosyas\u0131 y\xfckleyin, ortam kitapl\u0131\u011f\u0131n\u0131zdan bir tane se\xe7in veya bir URL ile ekleyin."],"Upload a media file or pick one from your media library.":["Bir ortam dosyas\u0131 y\xfckleyin veya ortam kitapl\u0131\u011f\u0131n\u0131zdan bir tane se\xe7in."],Skip:["Ge\xe7"],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":["Dola\u015f\u0131m men\xfcn\xfcze bir sayfa, ba\u011flant\u0131 veya ba\u015fka bir \xf6\u011fe ekleyin."],"What's this?":["Bu nedir?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Arama motorlar\u0131n\u0131n bu ba\u011flant\u0131y\u0131 izlemesine izin verme."],"Provide more context about where the link goes.":["Ba\u011flant\u0131n\u0131n nereye gitti\u011fi hakk\u0131nda daha fazla i\xe7erik sa\u011flay\u0131n."],"Title Attribute":["Ba\u015fl\u0131k \xf6zelli\u011fi"],"SEO Settings":["SEO ayarlar\u0131"],Description:["A\xe7\u0131klama"],"Open in new tab":["Yeni sekmede a\xe7"],links:["ba\u011flant\u0131lar"],navigation:["dola\u015f\u0131m"],menu:["men\xfc"],"Add a navigation block to your site.":["Sitenize bir dola\u015f\u0131m men\xfcs\xfc ekleyin."],"Upload a file or pick one from your media library.":["Bir dosya y\xfckleyin veya ortam kitapl\u0131\u011f\u0131n\u0131zdan bir tane se\xe7in."],"Learn more about embeds":["G\xf6m\xfclen i\xe7erik hakk\u0131nda daha fazlas\u0131n\u0131 \xf6\u011frenin."],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Sitenizde g\xf6r\xfcnt\xfclemek istedi\u011finiz i\xe7eri\u011fe bir ba\u011flant\u0131 yap\u0131\u015ft\u0131r\u0131n."],"Upload an image or video file, or pick one from your media library.":["Bir g\xf6rsel veya video dosyas\u0131 y\xfckleyin veya ortam kitapl\u0131\u011f\u0131n\u0131zdan bir tane se\xe7in."],"Three columns; wide center column":["\xdc\xe7 s\xfctun, geni\u015f orta s\xfctun"],"Three columns; equal split":["\xdc\xe7 s\xfctun, e\u015fit b\xf6l\xfcm"],"Two columns; two-thirds, one-third split":["\u0130ki s\xfctun, iki-\xfc\xe7, bir-\xfc\xe7 b\xf6l\xfcm"],"Two columns; one-third, two-thirds split":["\u0130ki s\xfctun, bir-\xfc\xe7, iki-\xfc\xe7 b\xf6l\xfcm"],"Two columns; equal split":["\u0130ki kolon, e\u015fit b\xf6l\xfcm"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Sitenizde herhangi bir %s bulunmad\u0131\u011f\u0131ndan \u015fu anda burada g\xf6r\xfcnt\xfclenecek hi\xe7bir \u015fey yok."],"More tools & options":["Daha fazla ara\xe7 ve se\xe7enek"],"Create Table":["Tablo olu\u015ftur"],"Insert a table for sharing data.":["Veri payla\u015fmak i\xe7in bir tablo ekle."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["Grubu \xe7\xf6z"],"verb\x04Group":["Grup"],"Separate with commas or the Enter key.":["Virg\xfcl veya Enter tu\u015fuyla ay\u0131r\u0131n."],"Separate with commas, spaces, or the Enter key.":["Virg\xfcl, bo\u015fluk veya Enter tu\u015fuyla ay\u0131r\u0131n."],"Separate multiple classes with spaces.":["Birden \xe7ok class\u0131 bo\u015flukla ay\u0131r."],"Move image forward":["G\xf6rseli \xf6ne ta\u015f\u0131"],"Move image backward":["G\xf6rseli geriye ta\u015f\u0131"],"Sorry, you are not allowed to edit sidebars.":["\xdczg\xfcn\xfcm, kenar \xe7ubuklar\u0131n\u0131 d\xfczenlemenize izin verilmiyor."],"Sorry, you are not allowed to read sidebars.":["\xdczg\xfcn\xfcm, kenar \xe7ubuklar\u0131n\u0131 okuman\u0131za izin verilmiyor."],"The sidebar\u2019s ID.":["Kenar \xe7ubu\u011fu no."],"Displays a set of blocks":["Bir blok seti g\xf6r\xfcnt\xfcler"],"Blocks Area":["Blok alan\u0131"],"Block rendered as empty.":["Blok bo\u015f olarak i\u015flendi."],"Inline Code":["Sat\u0131r i\xe7i kod"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Not: Videoyu otomatik olarak \xe7alma, baz\u0131 ziyaret\xe7iler i\xe7in kullan\u0131labilirlik sorunlar\u0131na neden olabilir."],"Footer section":["Alt k\u0131s\u0131m b\xf6l\xfcm\xfc"],"Header section":["\xdcst k\u0131s\u0131m b\xf6l\xfcm\xfc"],"Sorting and Filtering":["S\u0131ralama ve filtreleme"],"Post Meta Settings":["Yaz\u0131 meta ayarlar\u0131"],"Post Content":["Yaz\u0131 i\xe7eri\u011fi"],"Post Content Settings":["Yaz\u0131 i\xe7eri\u011fi ayarlaru"],"Percentage width":["Y\xfczde geni\u015flik"],"Column Settings":["S\xfctun ayarlar\u0131"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Not: Sesi otomatik olarak \xe7alma, baz\u0131 ziyaret\xe7iler i\xe7in kullan\u0131labilirlik sorunlar\u0131na neden olabilir."],"Block area updated.":["Blok alan\u0131 g\xfcncellendi."],"Block area scheduled.":["Blok alan\u0131 zamanland\u0131."],"Block area published.":["Blok alan\u0131 yay\u0131mland\u0131."],"Block areas list":["Blok alan\u0131 listesi"],"Block areas list navigation":["Blok alan\u0131 listesi dola\u015f\u0131m\u0131"],"Filter block areas list":["Blok alan\u0131 listesini filtrele"],"No block area found.":["Blok alan\u0131 bulunamad\u0131."],"Search Block Areas":["Blok alan\u0131 ara"],"All Block Areas":["T\xfcm blok alanlar\u0131"],"View Block Area":["Blok alan\u0131n\u0131 g\xf6r\xfcnt\xfcle"],"Edit Block Area":["Blok alan\u0131n\u0131 d\xfczenle"],"New Block Area":["Yeni blok alan\u0131"],"Add New Block Area":["Yeni blok alan\u0131 ekle"],"admin menu\x04Block Areas":["Blok alanlar\u0131"],"post type singular name\x04Block Area (Experimental)":["Blok alan\u0131 (deneysel)"],"post type general name\x04Block Area (Experimental)":["Blok alan\u0131 (deneysel)"],"Experimental custom post type that will store block areas referenced by themes.":["Temalar\u0131n ba\u015fvurdu\u011fu blok alanlar\u0131n\u0131 depolayacak deneysel \xf6zel yaz\u0131 t\xfcr\xfc."],"Widgets screen content":["Bile\u015fen ekran i\xe7eri\u011fi"],"Widgets advanced settings":["Bile\u015fen geli\u015fmi\u015f ayarlar\u0131"],"(experimental)":["(deneysel)"],"Block Areas":["Blok alanlar\u0131"],"Widgets screen top bar":["Bile\u015fen ekran\u0131 \xfcst \xe7ubu\u011fu"],"This color combination may be hard for people to read.":["Bu renk kombinasyonunu insanlar\u0131n okumas\u0131 zor olabilir."],"There is no poster image currently selected":["Se\xe7ili hi\xe7 poster g\xf6rseli yok"],"The current poster image url is %s":["Ge\xe7erli poster g\xf6rseli url adresi %s"],section:["b\xf6l\xfcm"],row:["sat\u0131r"],wrapper:["wrapper"],container:["container"],"A block that groups other blocks.":["Di\u011fer bloklar\u0131 gruplayan bir blok."],Group:["Grup"],"Crop image to fill entire column":["T\xfcm s\xfctunu doldurmak i\xe7in g\xf6rseli k\u0131rp"],"Play inline":["Sat\u0131r i\xe7i oynat"],"Leave empty if the image is purely decorative.":["G\xf6rsel tamamen dekoratif ise bo\u015f b\u0131rak\u0131n."],"Describe the purpose of the image":["G\xf6rselin amac\u0131n\u0131 a\xe7\u0131klay\u0131n"],"Add a block":["Bir blok ekle"],"Block vertical alignment setting label\x04Change vertical alignment":["Dikey hizalamay\u0131 de\u011fi\u015ftir"],"Block vertical alignment setting\x04Vertically Align Bottom":["Dikeyde alta hizala"],"Block vertical alignment setting\x04Vertically Align Middle":["Dikeyde ortaya hizala"],"Replace Image":["G\xf6rseli de\u011fi\u015ftir"],"Block vertical alignment setting\x04Vertically Align Top":["Dikeyde \xfcste hizala"],"Display a legacy widget.":["Eski bir bile\u015fen g\xf6r\xfcnt\xfcle"],"Legacy Widget (Experimental)":["Eski bile\u015fen (deneysel)"],"Change widget":["Bile\u015fen de\u011fi\u015ftir"],"Legacy Widget":["Eski bile\u015fen"],"You don't have permissions to use widgets on this site.":["Bu sitede bile\u015fen kullanma izniniz yok."],"Select a legacy widget to display:":["G\xf6r\xfcnt\xfclenecek eski bir bile\u015fen se\xe7in:"],"There are no widgets available.":["Kullan\u0131labilir bile\u015fen yok."],"Change block type or style":["Blok t\xfcr\xfcn\xfc yada stilini de\u011fi\u015ftir"],"keyboard key\x04Space":["Bo\u015fluk"],"keyboard key\x04Backspace":["Geri silme tu\u015fu"],"More rich text controls":["Daha fazla zengin metin kontrolleri"],"Search Terms":["Arama terimleri"],"Exit the Editor":["D\xfczenleyiciden \xe7\u0131k"],"Block Manager":["Blok y\xf6neticisi"],"Class name of the widget.":["Bile\u015fenin class ad\u0131."],"Sorry, you are not allowed to access widgets on this site.":["\xdczg\xfcn\xfcm, bu sitede bile\u015fenlere eri\u015fmenize izin verilmiyor."],"Widgets (beta)":["Bile\u015fen (beta)"],link:["ba\u011flant\u0131"],"Embedded content from %s can't be previewed in the editor.":["%s kayna\u011f\u0131ndaki g\xf6m\xfcl\xfc i\xe7erik, d\xfczenleyicide \xf6nizlenemez."],"Custom Color":["\xd6zel Renk"],"Prompt visitors to take action with a button-style link.":["D\xfc\u011fme tarz\u0131 bir ba\u011flant\u0131yla ziyaret\xe7ilerden harekete ge\xe7melerini isteyin."],"Stick to the top of the blog":["Blo\u011fun en tepesine sabitle"],"Read about permalinks":["Kal\u0131c\u0131 ba\u011flant\u0131lar hakk\u0131nda okuyun"],"The last part of the URL.":["Adresin son par\xe7as\u0131."],"URL Slug":["Adres k\u0131sa ismi"],"A cloud of your most used tags.":["En \xe7ok kullan\u0131lan etiketlerden olu\u015fan etiket bulutu."],"Tag Cloud":["Etiket bulutu"],Taxonomy:["S\u0131n\u0131fland\u0131rma"],"Tag Cloud Settings":["Etiket bulutu ayarlar\u0131"],"- Select -":["- Se\xe7iniz -"],Default:["Varsay\u0131lan"],find:["bul"],"Help visitors find your content.":["Ziyaret\xe7ilerin i\xe7eri\u011finizi bulmalar\u0131na yard\u0131mc\u0131 olun."],Search:["Site aramas\u0131"],"Add button text\u2026":["D\xfc\u011fme metni ekleyin..."],"Button text":["D\xfc\u011fme metni"],"Optional placeholder\u2026":["\u0130ste\u011fe ba\u011fl\u0131 yer tutucu\u2026"],"Optional placeholder text":["\u0130ste\u011fe ba\u011fl\u0131 yer tutucu metni"],"Add label\u2026":["Etiket ekle..."],"Label text":["Etiket metni"],"image %1$d of %2$d in gallery":["Galerideki g\xf6rsel %1$d - %2$d"],archive:["ar\u015fiv"],posts:["yaz\u0131"],"A calendar of your site\u2019s posts.":["Sitenizin yaz\u0131lar\u0131n\u0131n bir takvimi."],Calendar:["Takvim"],by:["taraf\u0131ndan"],"An error has occurred, which probably means the feed is down. Try again later.":["Bir hata olu\u015ftu, beslemenin kapal\u0131 oldu\u011fu anla\u015f\u0131l\u0131yor. L\xfctfen daha sonra tekrar deneyin."],"RSS Error:":["RSS hatas\u0131:"],"block style\x04Default":["Varsay\u0131lan"],"Fullscreen mode deactivated":["Tam ekran modu devre d\u0131\u015f\u0131 b\u0131rak\u0131ld\u0131"],"Fullscreen mode activated":["Tam ekran modu etkinle\u015ftirildi"],"Spotlight mode deactivated":["Sahne \u0131\u015f\u0131\u011f\u0131 modu devre d\u0131\u015f\u0131 b\u0131rak\u0131ld\u0131"],"Spotlight mode activated":["Sahne \u0131\u015f\u0131\u011f\u0131 modu etkinle\u015ftirildi"],"Top toolbar deactivated":["\xdcst ara\xe7 \xe7ubu\u011fu devre d\u0131\u015f\u0131 b\u0131rak\u0131ld\u0131"],"Top toolbar activated":["\xdcst ara\xe7 \xe7ubu\u011fu etkinle\u015ftirildi"],Back:["Geri"],"Feature activated":["\xd6zellik etkinle\u015ftirildi"],"Feature deactivated":["\xd6zellik devre d\u0131\u015f\u0131 b\u0131rak\u0131ld\u0131"],"Vertical Pos.":["Dikey konum"],"Horizontal Pos.":["Yatay konum"],feed:["besleme"],atom:["atom"],"Display entries from any RSS or Atom feed.":["Herhangi bir RSS veya Atom beslemesinden gelen giri\u015fleri g\xf6r\xfcnt\xfcleyin."],RSS:["RSS"],"Max number of words in excerpt":["Al\u0131nt\u0131daki azami kelime say\u0131s\u0131"],"Display excerpt":["Al\u0131nt\u0131y\u0131 g\xf6ster"],"Display date":["Tarihi g\xf6r\xfcnt\xfcle"],"Display author":["Yazar\u0131 g\xf6r\xfcnt\xfcle"],"RSS Settings":["RSS ayarlar\u0131"],"Edit RSS URL":["RSS adresini d\xfczenle"],"Content before this block will be shown in the excerpt on your archives page.":["Bu bloktan \xf6nceki i\xe7erik, ar\u015fiv sayfan\u0131zdaki al\u0131nt\u0131dan g\xf6sterilecektir."],"Hide the excerpt on the full content page":["Tam i\xe7erik sayfas\u0131ndaki al\u0131nt\u0131y\u0131 gizle"],"The excerpt is visible.":["Al\u0131nt\u0131 g\xf6r\xfcn\xfcr."],"The excerpt is hidden.":["Al\u0131nt\u0131 gizli."],"Sorry, this content could not be embedded.":["Maalesef, bu i\xe7erik g\xf6m\xfclemedi."],"Embed Amazon Kindle content.":["Amazon Kindle i\xe7eri\u011fini g\xf6m\xfcn."],ebook:["ekitap"],"Embed Crowdsignal (formerly Polldaddy) content.":["Crowdsignal (\xf6nceki ad\u0131yla Polldaddy) i\xe7eri\u011fini g\xf6m."],"Focal Point Picker":["Odak noktas\u0131 se\xe7ici"],Underline:["Alt\u0131 \xe7izgili"],"Attempt Block Recovery":["Blo\u011fu kurtarmay\u0131 dene"],"Word count type. Do not translate!\x04words":["kelimeler"],"content placeholder\x04Content\u2026":["\u0130\xe7erik..."],"button label\x04Convert to link":["Ba\u011flant\u0131ya d\xf6n\xfc\u015ft\xfcr"],"button label\x04Try again":["Tekrar deneyin"],"Editor tips":["D\xfczenleyici ipu\xe7lar\u0131"],"Block (selected)":["Blok (se\xe7ili)"],"Document (selected)":["Belge (se\xe7ili)"],"%d word":["%d kelime","%d kelime"],"Top Toolbar":["\xdcst ara\xe7 \xe7ubu\u011fu"],"Link Rel":["Ba\u011flant\u0131 i\xe7in Rel"],"Link CSS Class":["CSS s\u0131n\u0131f\u0131na ba\u011flant\u0131 ver"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Kendiniz ve bu sitenin di\u011fer kat\u0131l\u0131mc\u0131lar\u0131 i\xe7in i\xe7erik olu\u015fturup kaydedin ve daha sonra tekrar tekrar kullan\u0131n. Bir yerde g\xfcncelleyin, kullan\u0131lan her yerde g\xfcncellensin."],"To edit the featured image, you need permission to upload media.":["\xd6ne \xe7\u0131kan resmi d\xfczenlemek i\xe7in, ortam y\xfckleme iznine ihtiyac\u0131n\u0131z var."],"To edit this block, you need permission to upload media.":["Bu blo\u011fu d\xfczenlemek i\xe7in, ortam dosyas\u0131 y\xfckleme iznine ihtiyac\u0131n\u0131z var."],"(selected block)":["(se\xe7ilen blok)"],"Block tools":["Blok ara\xe7lar\u0131"],Permalink:["Kal\u0131c\u0131 ba\u011flant\u0131"],"This image has an empty alt attribute":["Bu g\xf6rselin bo\u015f bir alt \xf6zelli\u011fi var"],"This image has an empty alt attribute; its file name is %s":["Bu g\xf6rselin bo\u015f bir alt \xf6zelli\u011fi var; dosya ismi: %s"],"Block area reverted to draft.":["Blok alan\u0131 taslak durumuna geri d\xf6nd\xfcr\xfcld\xfc."],"Block area published privately.":["Blok alan\u0131 \xf6zel olarak yay\u0131mland\u0131."],"No block areas found in Trash.":["\xc7\xf6pte blok alan\u0131 bulunamad\u0131."],"Block\x04Add New":["Yeni ekle"],"add new on admin bar\x04Block Area":["Blok alan\u0131"],"Link inserted.":["Ba\u011flant\u0131 eklendi."],"Warning: the link has been inserted but may have errors. Please test it.":["Uyar\u0131: ba\u011flant\u0131 eklendi fakat hatalara sahip olabilir. L\xfctfen test edin."],"%s block selected.":["%s blok se\xe7ildi.","%s blok se\xe7ildi."],Thumbnail:["K\xfc\xe7\xfck resim"],"Full Size":["Tam boyut"],"Link selected.":["Ba\u011flant\u0131 se\xe7ildi."],"Start writing with text or HTML":["Metin ya da HTML ile yazmaya ba\u015flay\u0131n"],"Type text or HTML":["Metin ya da HTML yaz\u0131n"],"Block icon":["Blok simgesi"],"Align Text Right":["Metni sa\u011fa hizala"],"Align Text Center":["Metin ortaya hizala"],"Align Text Left":["Metni sola hizala"],"Start writing or type / to choose a block":["Yazmaya ba\u015flay\u0131n ya da / yazarak bir blok se\xe7in"],"Empty block; start writing or type forward slash to choose a block":["Bo\u015f blok; yazmaya ba\u015flay\u0131n ya da / yazarak bir blok se\xe7in"],"Paragraph block":["Paragraf blo\u011fu"],"Page Break":["Sayfa sonu"],"Stack on mobile":["Mobilde y\u0131\u011f\u0131nla"],Annotation:["Ek a\xe7\u0131klama"],"Drag images, upload new ones or select files from your library.":["G\xf6rselleri s\xfcr\xfckleyin, yenilerini y\xfckleyin veya k\xfct\xfcphanenizden dosyalar\u0131 se\xe7in."],"blocks\x04Most Used":["En \xe7ok kullan\u0131lan"],"imperative verb\x04Resolve":["\xc7\xf6z\xfcmle"],"font size name\x04Huge":["Devasa"],"font size name\x04Large":["B\xfcy\xfck"],"font size name\x04Medium":["Orta"],"font size name\x04Small":["K\xfc\xe7\xfck"],"font size name\x04Normal":["Normal"],"keyboard button\x04Enter":["Giri\u015f"],"button label\x04Import":["\u0130\xe7eri aktar"],"button label\x04Download":["\u0130ndir"],"button label\x04Embed":["G\xf6m"],"block title\x04Embed":["G\xf6m"],"block title\x04Classic":["Klasik"],"block style\x04Large":["B\xfcy\xfck"],"%s (opens in a new tab)":["%s (yeni sekmede a\xe7\u0131l\u0131r)"],"Link edited.":["Ba\u011flant\u0131 d\xfczenlendi."],"Link removed.":["Ba\u011flant\u0131 kald\u0131r\u0131ld\u0131."],media:["ortam"],"Double-check your settings before publishing.":["Yay\u0131mlamadan \xf6nce ayarlar\u0131 iki kere kontrol et."],"Generating preview\u2026":["\xd6n izleme olu\u015fturuluyor\u2026"],"Edit or update the image":["G\xf6rseli d\xfczenleyin ya da g\xfcncelleyin"],Media:["Ortam dosyas\u0131"],"Navigate to the nearest toolbar.":["En yak\u0131n ara\xe7 \xe7ubu\u011funa ilerle."],"Document tools":["Belge ara\xe7lar\u0131"],"Document and block tools":["Belge ve blok ara\xe7lar\u0131"],"Embed a video from your media library or upload a new one.":["Ortam k\xfct\xfcphanenizden bir video g\xf6m\xfcn ya da yeni bir tane y\xfckleyin."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u015eiir ekleyin. \xd6zel bo\u015fluk bi\xe7imleri kullan\u0131n. Ya da \u015fark\u0131 s\xf6zleri al\u0131nt\u0131lay\u0131n."],"Add white space between blocks and customize its height.":["Bloklar aras\u0131na bo\u015f alan ekleyin ve y\xfcksekli\u011fini \xf6zelle\u015ftirin."],"Insert additional custom elements with a WordPress shortcode.":["Bir WordPress k\u0131sa kodu ile fazladan \xf6zel elemanlar ekleyin."],"Create a break between ideas or sections with a horizontal separator.":["Fikirler ya da b\xf6l\xfcmler aras\u0131nda yatay bir ayra\xe7 ile bir aral\u0131k olu\u015fturun."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["Al\u0131nt\u0131lanm\u0131\u015f metne g\xf6rsel vurgu verin. \"Ba\u015fkalar\u0131ndan al\u0131nt\u0131 yaparken, kendimize at\u0131fta bulunuruz.\" \u2014 Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["Metninizdeki al\u0131nt\u0131lanm\u0131\u015f metne g\xf6rsel vurgu verin."],"Start with the building block of all narrative.":["T\xfcm \xf6yk\xfcn\xfcn yap\u0131 ta\u015f\u0131 ile i\u015fe ba\u015flay\u0131n."],"Separate your content into a multi-page experience.":["\u0130\xe7eri\u011finizi \xe7ok sayfal\u0131 bir deneyime d\xf6n\xfc\u015ft\xfcn."],"Set media and words side-by-side for a richer layout.":["Ortam ve kelimeleri yan yana yerle\u015ftirip zengin bir d\xfczen olu\u015fturun."],"Media & Text Settings":["Ortam ve metin ayarlar\u0131"],"Create a bulleted or numbered list.":["\u0130mli ya da numaral\u0131 liste olu\u015fturun."],"Display a list of your most recent comments.":["En g\xfcncel yorumlar\u0131n\u0131z\u0131n bir listesini g\xf6r\xfcnt\xfcleyin."],"Insert an image to make a visual statement.":["G\xf6rsel bir mesaj iletmek i\xe7in bir g\xf6rsel ekleyin."],"Add custom HTML code and preview it as you edit.":["\xd6zel HTML kodu ekleyin ve d\xfczenlerken bir taraftan da \xf6n izleme yap\u0131n."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Yeni b\xf6l\xfcmler ile tan\u0131\u015ft\u0131rarak ve i\xe7eri\u011fi organize ederek ziyaret\xe7ilerinize (ve arama motorlar\u0131na) i\xe7eri\u011finizin yap\u0131s\u0131n\u0131 anlamalar\u0131 i\xe7in yard\u0131mc\u0131 olun."],"Display multiple images in a rich gallery.":["Bir \xe7ok g\xf6rseli zengin bir galeri olarak g\xf6r\xfcnt\xfcleyin."],"Add a link to a downloadable file.":["\u0130ndirilebilir dosya i\xe7in ba\u011flant\u0131 ekleyin."],"Embed videos, images, tweets, audio, and other content from external sources.":["Videolar, g\xf6rseller, tweetler, ses ve di\u011fer i\xe7erikleri d\u0131\u015f kaynaklardan g\xf6m\xfcn."],"Resize for smaller devices":["K\xfc\xe7\xfck cihazlar i\xe7in boyutland\u0131rma"],"This embed may not preserve its aspect ratio when the browser is resized.":["Bu g\xf6m\xfc taray\u0131c\u0131 yeniden boyutland\u0131r\u0131ld\u0131\u011f\u0131nda en/boy oran\u0131n\u0131 korumayabilir."],"This embed will preserve its aspect ratio when the browser is resized.":["Bu g\xf6m\xfc taray\u0131c\u0131 yeniden boyutland\u0131r\u0131ld\u0131\u011f\u0131nda en/boy oran\u0131n\u0131 koruyacakt\u0131r."],"Embed an Animoto video.":["Bir Animoto videosu g\xf6m\xfcn."],"Embed a Vimeo video.":["Vimeo videosu g\xf6m\xfcn."],"Embed Flickr content.":["Flickr i\xe7eri\u011fi g\xf6m\xfcn."],"Embed Spotify content.":["Spotify i\xe7eri\u011fi g\xf6m\xfcn."],"Embed SoundCloud content.":["SoundCloud i\xe7eri\u011fi g\xf6m\xfcn."],"Embed a WordPress post.":["Bir WordPress yaz\u0131s\u0131 g\xf6m."],"Embed an Instagram post.":["Instagram g\xf6nderisi g\xf6m\xfcn."],"Embed a Facebook post.":["Facebook g\xf6nderisi g\xf6m\xfcn."],"Embed a WordPress.tv video.":["WordPress.tv videosu g\xf6m\xfcn."],"Embed a VideoPress video.":["VideoPress videosu g\xf6m\xfcn."],"Embed a Tumblr post.":["Tumblr g\xf6nderisi g\xf6m\xfcn."],"Embed a TED video.":["TED videosu g\xf6m\xfcn."],"Embed Speaker Deck content.":["Speaker Deck i\xe7eri\u011fi g\xf6m\xfcn."],"Embed a YouTube video.":["YouTube videosu g\xf6m\xfcn."],"Embed SmugMug content.":["SmugMug i\xe7eri\u011fi g\xf6m\xfcn."],"Embed Slideshare content.":["Slideshare i\xe7eri\u011fi g\xf6m\xfcn."],"Embed Scribd content.":["Scribd i\xe7eri\u011fi g\xf6m\xfcn."],"Embed Screencast content.":["Screencast i\xe7eri\u011fi g\xf6m\xfcn."],"Embed ReverbNation content.":["ReverbNation i\xe7eri\u011fi g\xf6m\xfcn."],"Embed a Reddit thread.":["Reddit ba\u015fl\u0131\u011f\u0131 g\xf6m\xfcn."],"Embed Polldaddy content.":["Polldaddy i\xe7eri\u011fi g\xf6m\xfcn."],"Embed Mixcloud content.":["Mixcloud i\xe7eri\u011fi g\xf6m\xfcn."],"Embed a tweet.":["Tweet g\xf6m\xfcn."],"Embed Meetup.com content.":["Meetup.com i\xe7eri\u011fi g\xf6m\xfcn."],"Embed Kickstarter content.":["Kickstarter i\xe7eri\u011fi g\xf6m\xfcn."],"Embed Issuu content.":["Issuu i\xe7eri\u011fi g\xf6m\xfcn."],"Embed Imgur content.":["Imgur i\xe7eri\u011fi g\xf6m\xfcn."],"Embed Hulu content.":["Hulu i\xe7eri\u011fi g\xf6m\xfcn."],"Embed a Dailymotion video.":["Bir Dailymotion videosu g\xf6m\xfcn."],"Embed CollegeHumor content.":["CollegeHumor i\xe7eri\u011fi g\xf6m\xfcn."],"Embed Cloudup content.":["Cloudup i\xe7eri\u011fi g\xf6m\xfcn."],"Add an image or video with a text overlay \u2014 great for headers.":["\xdczerine metin eklenmi\u015f bir g\xf6rsel ya da video \u2014 \xfcst k\u0131s\u0131mlar i\xe7in harikad\u0131r."],"Display code snippets that respect your spacing and tabs.":["Bo\u015fluk ve sekmelerinize sayg\u0131 g\xf6steren kod par\xe7a\xe7\u0131klar\u0131 g\xf6r\xfcnt\xfcleyin."],"Use the classic WordPress editor.":["Klasik WordPress d\xfczenleyicisini kullan\u0131n."],"Display a list of all categories.":["T\xfcm kategorilerin bir listesini g\xf6r\xfcnt\xfcleyin."],"Embed a simple audio player.":["Basit bir ses oynat\u0131c\u0131s\u0131 g\xf6m\xfcn."],"noun\x04View":["G\xf6r\xfcnt\xfclenme"],"editor button\x04Left to right":["Soldan sa\u011fa"],"Save as Pending":["Bekliyor olarak kaydet"],"%s address":["%s adres"],"Paste or type URL":["Bir adres girin ya da yap\u0131\u015ft\u0131r\u0131n"],"Insert from URL":["URL’den ekle"],"Block Navigator":["Blok dola\u015f\u0131m\u0131"],Styles:["Stiller"],"Advanced Panels":["Geli\u015fmi\u015f paneller"],"Document Panels":["Belge panelleri"],General:["Genel"],"Open the block navigation menu.":["Blok dola\u015f\u0131m men\xfcs\xfcn\xfc a\xe7."],"Work without distraction":["Dikkatiniz da\u011f\u0131lmadan \xe7al\u0131\u015f\u0131n"],"Focus on one block at a time":["Bir seferde sadece bir blo\u011fa odaklan\u0131n"],"Access all block and document tools in a single place":["T\xfcm blok ve belge ara\xe7lar\u0131na tek bir yerden ula\u015f\u0131n"],Options:["Se\xe7enekler"],"(opens in a new tab)":["(yeni sekmede a\xe7\u0131l\u0131r)"],Minutes:["Dakika"],Hours:["Saatler"],Time:["Zaman"],Year:["Y\u0131l"],Day:["G\xfcn"],December:["Aral\u0131k"],November:["Kas\u0131m"],October:["Ekim"],September:["Eyl\xfcl"],August:["A\u011fustos"],July:["Temmuz"],June:["Haziran"],May:["May\u0131s"],April:["Nisan"],March:["Mart"],February:["\u015eubat"],January:["Ocak"],Month:["Ay"],Date:["Tarih"],"Go to the first (home) or last (end) day of a week.":["Haftan\u0131n ilk (home) ya da son (end) g\xfcn\xfcne gidin."],"Home/End":["Ba\u015flang\u0131\xe7/Son"],"Home and End":["Ba\u015flang\u0131\xe7 ve son"],"Move backward (PgUp) or forward (PgDn) by one month.":["Bir ay geri (PgUp) ya da ileri (PgDn) hareket edin."],"PgUp/PgDn":["SyfYuk/SyfA\u015f"],"Page Up and Page Down":["Sayfa yukar\u0131 ve sayfa a\u015fa\u011f\u0131"],"Move backward (up) or forward (down) by one week.":["Bir hafta geri (yukar\u0131 ok) ya da ileri (a\u015fa\u011f\u0131 ok) hareket edin."],"Up and Down Arrows":["Yukar\u0131 ve a\u015fa\u011f\u0131 oklar"],"Move backward (left) or forward (right) by one day.":["Bir g\xfcn geri (sol ok) ya da ileri (sa\u011f ok) hareket edin."],"Left and Right Arrows":["Sol ve sa\u011f oklar"],"Select the date in focus.":["Odaktaki tarihi se\xe7in."],"Navigating with a keyboard":["Tu\u015f tak\u0131m\u0131 ile dola\u015f\u0131m"],"Click the desired day to select it.":["\u0130stenen g\xfcne t\u0131klayarak se\xe7in."],"Click the right or left arrows to select other months in the past or the future.":["Sa\u011f ya da sol tu\u015flara t\u0131klay\u0131p ge\xe7mi\u015fteki ya da gelecekteki di\u011fer aylar\u0131 se\xe7in."],"Click to Select":["Se\xe7mek i\xe7in t\u0131klay\u0131n"],"Calendar Help":["Takvim yard\u0131m\u0131"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Ok tu\u015flar\u0131n\u0131 kullanarak temel rengi de\u011fi\u015ftirin. Rengi a\xe7mak i\xe7in yukar\u0131 ilerleyin, koyula\u015ft\u0131rmak i\xe7in a\u015fa\u011f\u0131, doygunlu\u011fu art\u0131rmak i\xe7in sola, azaltmak i\xe7in sa\u011fa ilerleyin."],"Choose a shade":["Bir g\xf6lge se\xe7in"],"Change color format":["Renk bi\xe7imini de\u011fi\u015ftir"],"Color value in HSL":["HSL olarak renk de\u011feri"],"Color value in RGB":["RGB olarak denk de\u011feri"],"Color value in hexadecimal":["Onalt\u0131l\u0131k d\xfczende renk de\u011feri"],"RGB mode active":["RGB d\xfczeni etkin"],"Hex color mode active":["Hex renk d\xfczeni etkin"],"Hue/saturation/lightness mode active":["Ton/doygunluk/parlakl\u0131k modu etkin"],"Move the arrow left or right to change hue.":["Tonu de\u011fi\u015ftirmek i\xe7in sol ya da sa\u011f oku hareket ettirin."],"Hue value in degrees, from 0 to 359.":["Derece cinsinden ton de\u011feri, 0 ile 359 aras\u0131nda."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alfa de\u011feri, 0 (saydam) ile 1 (tam opak) aras\u0131nda."],Stripes:["\u015eeritler"],"Your site doesn\u2019t include support for this block.":["Siteniz bu blok i\xe7in destek i\xe7ermiyor."],"Unrecognized Block":["Tan\u0131mlanamayan blok"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Siteniz \"%s\" blo\u011fu i\xe7in destek i\xe7ermiyor. Bu blo\u011fa dokunmadan b\u0131rakabilir ya da tamamen kald\u0131rabilirsiniz."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Siteniz \"%s\" blo\u011fu i\xe7in destek i\xe7ermiyor. Bu blo\u011fa dokunmadan b\u0131rakabilir, \xd6zel HTML blo\u011funa \xe7evirebilir ya da tamamen kald\u0131rabilirsiniz."],"Media area":["Ortam alan\u0131"],"Media & Text":["Ortam ve metin"],"Show media on right":["Ortam\u0131 sa\u011fda g\xf6r\xfcnt\xfcle"],"Show media on left":["Ortam\u0131 solda g\xf6r\xfcnt\xfcle"],"Open in New Tab":["Yeni sekmede a\xe7"],Cover:["Kapak"],"Border Settings":["Kapak ayarlar\u0131"],"Edit media":["Ortam\u0131 d\xfczenle"],Medium:["Orta"],"Paste URL or type to search":["\u0130nternet adresini yap\u0131\u015ft\u0131r\u0131n ya da arama yap\u0131n"],Terms:["Kurallar"],"Your work will be published at the specified date and time.":["\xc7al\u0131\u015fman\u0131z belirlenen tarih ve zamanda yay\u0131mlanacakt\u0131r."],"Are you ready to schedule?":["Zamanlamaya haz\u0131r m\u0131s\u0131n\u0131z?"],"Always show pre-publish checks.":["Her zaman yay\u0131m \xf6ncesi kontrolleri g\xf6ster."],"Take Over":["Devral"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Ba\u015fka bir kullan\u0131c\u0131 bu yaz\u0131 \xfczerinde \u015fu an \xe7al\u0131\u015f\u0131yor, bu demektir ki yaz\u0131y\u0131 devralmad\u0131\u011f\u0131n\u0131z s\xfcrece de\u011fi\u015fiklik yapamazs\u0131n\u0131z."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s bu yaz\u0131 \xfczerinde \u015fu an \xe7al\u0131\u015f\u0131yor, bu demektir ki yaz\u0131y\u0131 devralmad\u0131\u011f\u0131n\u0131z s\xfcrece de\u011fi\u015fiklik yapamazs\u0131n\u0131z."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Ba\u015fka bir kullan\u0131c\u0131 \u015fu an bu yaz\u0131n\u0131n d\xfczenleme kontrol\xfcn\xfc alm\u0131\u015f durumda. Merak etmeyin, \u015fu ana kadar yapt\u0131\u011f\u0131n\u0131z de\u011fi\u015fiklikler kaydedildi."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s \u015fu an bu yaz\u0131n\u0131n d\xfczenleme kontrol\xfcn\xfc alm\u0131\u015f durumda. Merak etmeyin, \u015fu ana kadar yapt\u0131\u011f\u0131n\u0131z de\u011fi\u015fiklikler kaydedildi."],Avatar:["Avatar"],"This post is already being edited.":["Yaz\u0131 zaten \u015fu an d\xfczenleniyor."],"Someone else has taken over this post.":["Bir ba\u015fkas\u0131 bu yaz\u0131y\u0131 \xfczerine ald\u0131."],"This block contains unexpected or invalid content.":["Bu blok beklenmeyen ya da ge\xe7ersiz i\xe7erik i\xe7eriyor."],"Resolve Block":["Blo\u011fu \xe7\xf6z\xfcmle"],"Convert to HTML":["HTML\u2019e d\xf6n\xfc\u015ft\xfcr"],"This block can only be used once.":["Bu blok sadece bir kez kullan\u0131labilir."],"Exit Code Editor":["Kod d\xfczenleyiciden \xe7\u0131k"],"Editing Code":["Kodu d\xfczenle"],"Solid Color":["Tek renk"],"Main Color":["Ana renk"],HTML:["HTML"],"Write HTML\u2026":["HTML yaz\u2026"],"Media Settings":["Ortam Ayarlar\u0131"],"Overlay Color":["\xd6rt\xfc rengi"],Overlay:["Kaplama"],"Insert Media":["Ortam ekle"],"Reusable block imported successfully!":["Tekrar kullanabilir blok ba\u015far\u0131yla i\xe7e aktar\u0131ld\u0131!"],"Invalid Reusable Block JSON file":["Ge\xe7ersiz tekrar kullanabilir blok JSON dosyas\u0131"],"Invalid JSON file":["Ge\xe7ersiz JSON dosyas\u0131"],"Import from JSON":["JSON'dan i\xe7e aktar"],Backtick:["Ters t\u0131rnak"],Period:["Nokta"],Comma:["Virg\xfcl"],"Change type of %d block":["%d blo\u011fun t\xfcr\xfcn\xfc de\u011fi\u015ftir","%d blo\u011fun t\xfcr\xfcn\xfc de\u011fi\u015ftir"],Current:["Mevcut"],"After Conversion":["D\xf6n\xfc\u015f\xfcmden sonra"],"Change alignment":["Hizalamay\u0131 de\u011fi\u015ftir"],"Change text alignment":["Metin hizalamay\u0131 de\u011fi\u015ftir"],"%d block":["%d blok","%d blok"],Escape:["Esc tu\u015fu"],"Forward-slash":["B\xf6lme i\u015fareti"],"No archives to show.":["G\xf6sterilecek ar\u015fiv yok."],"This file is empty.":["Bu dosya bo\u015f."],"Sorry, this file type is not supported here.":["\xdczg\xfcn\xfcm, bu dosya tipi burada desteklenmiyor."],"Manage All Reusable Blocks":["T\xfcm tekrar kullan\u0131labilir bloklar\u0131 y\xf6net"],Title:["Ba\u015fl\u0131k"],"Fullscreen Mode":["Tam ekran modu"],"Beautiful landscape":["G\xfczel manzara"],"Close panel":["Paneli kapat"],"Convert to Classic Block":["Klasik blo\u011fa d\xf6n\xfc\u015ft\xfcr"],"Remove Poster Image":["Poster g\xf6rselini kald\u0131r"],"Select Poster Image":["Poster g\xf6rseli se\xe7"],"Poster Image":["Poster g\xf6rseli"],"This block is deprecated. Please use the Columns block instead.":["Bu blok kullan\u0131m d\u0131\u015f\u0131. L\xfctfen bunun yerine S\xfctunlar blo\u011funu kullan\u0131n."],"Text Columns (deprecated)":["Metin s\xfctunlar\u0131 (kullan\u0131m d\u0131\u015f\u0131)"],"Row Count":["Sat\u0131r say\u0131s\u0131"],"Column Count":["S\xfctun say\u0131s\u0131"],"This block is deprecated. Please use the Paragraph block instead.":["Bu blok kullan\u0131m d\u0131\u015f\u0131. L\xfctfen bunun yerine Paragraf blo\u011funu kullan\u0131n."],"Subheading (deprecated)":["Alt ba\u015fl\u0131k (kullan\u0131m d\u0131\u015f\u0131)"],blockquote:["al\u0131nt\u0131"],"Change the block type after adding a new paragraph.":["Yeni paragraf ekledikten sonra blok t\xfcr\xfcn\xfc de\u011fi\u015ftirin."],"Spotlight Mode":["Sahne \u0131\u015f\u0131\u011f\u0131 modu"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Etiketler, kullan\u0131c\u0131lar ve arama motorlar\u0131n\u0131n sitenizde gezinmesine ve i\xe7eri\u011finizi bulmas\u0131na yard\u0131m eder. Yaz\u0131n\u0131z\u0131 tan\u0131mlamak i\xe7in birka\xe7 anahtar kelime ekleyin."],"Add tags":["Etiket ekle"],"Apply the \"%1$s\" format.":["\"%1$s\" bi\xe7imini uygula."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Teman\u0131z, g\xf6rseller veya videolar gibi farkl\u0131 i\xe7erik t\xfcrlerini vurgulamak i\xe7in yaz\u0131 bi\xe7imlerini kullan\u0131yor. Bu \xf6zel bi\xe7imlendirmeyi g\xf6rmek i\xe7in bir yaz\u0131 bi\xe7imi uygulay\u0131n."],"Use a post format":["Bir yaz\u0131 bi\xe7imi kullan"],"Insert After":["Sonras\u0131na ekle"],"Insert Before":["\xd6ncesine ekle"],"Move %1$d block from position %2$d down by one place":["%1$d blo\u011funu %2$d konumundan bir a\u015fa\u011f\u0131 ta\u015f\u0131","%1$d blo\u011funu %2$d konumundan bir a\u015fa\u011f\u0131 ta\u015f\u0131"],"Move %1$d block from position %2$d up by one place":["%1$d blo\u011funu %2$d konumundan bir yukar\u0131 ta\u015f\u0131","%1$d blo\u011funu %2$d konumundan bir yukar\u0131 ta\u015f\u0131"],"Move %1$s block from position %2$d %3$s to position %4$d":["%1$s blo\u011funu %2$d konumundan %3$s konumuna %4$d ta\u015f\u0131"],movie:["film"],"Insert a new block before the selected block(s).":["Se\xe7ilen bloklardan \xf6nce yeni bir blok ekleyin."],"Remove the selected block(s).":["Se\xe7ilen bloklar\u0131 kald\u0131r\u0131n."],"Duplicate the selected block(s).":["Se\xe7ilen bloklar\u0131 kopyalay\u0131n."],"Block shortcuts":["Blok k\u0131sayollar\u0131"],"Clear selection.":["Se\xe7imi temizle."],"Select all text when typing. Press again to select all blocks.":["Yazarken t\xfcm metni se\xe7in. T\xfcm bloklar\u0131 se\xe7mek i\xe7in tekrar bas\u0131n."],"Selection shortcuts":["Se\xe7im k\u0131sayollar\u0131"],"Switch between Visual Editor and Code Editor.":["G\xf6rsel d\xfczenleyici ve kod d\xfczenleyici aras\u0131nda ge\xe7i\u015f yap\u0131n."],"Navigate to the previous part of the editor (alternative).":["D\xfczenleyicinin bir \xf6nceki b\xf6l\xfcm\xfcne gidin (alternatif)."],"Navigate to the next part of the editor (alternative).":["D\xfczenleyicinin bir sonraki b\xf6l\xfcm\xfcne gidin (alternatif)."],"Navigate to the previous part of the editor.":["D\xfczenleyicinin bir \xf6nceki b\xf6l\xfcm\xfcne gidin."],"Navigate to the next part of the editor.":["D\xfczenleyicinin bir sonraki b\xf6l\xfcm\xfcne gidin."],"Show or hide the settings sidebar.":["Ayarlar kenar \xe7ubu\u011funu g\xf6ster veya gizle."],"Redo your last undo.":["Son geri ald\u0131\u011f\u0131n\u0131z \u015feyi yeniden yap\u0131n."],"Undo your last changes.":["Son de\u011fi\u015fikliklerinizi geri al\u0131n."],"Save your changes.":["De\u011fi\u015fikliklerinizi kaydedin."],"Global shortcuts":["Genel k\u0131sayollar"],"Remove a link.":["Bir ba\u011flant\u0131y\u0131 kald\u0131r\u0131n."],"Convert the selected text into a link.":["Se\xe7ili metni ba\u011flant\u0131ya d\xf6n\xfc\u015ft\xfcr."],"Underline the selected text.":["Se\xe7ilen metnin alt\u0131n\u0131 \xe7iz."],"Make the selected text italic.":["Se\xe7ilen metni e\u011fik yap."],"Make the selected text bold.":["Se\xe7ilen metni kal\u0131n yap."],"Text formatting":["Metin bi\xe7imlendirme"],"Insert a new block after the selected block(s).":["Se\xe7ili blok(lar)dan sonra yeni bir blok ekle."],"Keyboard Shortcuts":["Klavye k\u0131sayollar\u0131"],"Thanks for testing Gutenberg!":["Gutenbergi test etti\u011finiz i\xe7in te\u015fekk\xfcr ederiz!"],"Help build Gutenberg":["Gutenberg yap\u0131m\u0131na yard\u0131m edin"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Ek bloklar olu\u015fturma hakk\u0131nda daha fazla bilgi edinmek isterseniz veya projeye yard\u0131mc\u0131 olmakla ilgileniyorsan\u0131z, GitHub deposuna gidin."],"The WordPress community":["WordPress toplulu\u011fu"],"Code is Poetry":["Kod \u015fiirdir"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Statik veya dinamik, dekoratif veya sade istedi\u011finiz herhangi bir blo\u011fu olu\u015fturabilirsiniz. \u0130\u015fte bir al\u0131nt\u0131 blo\u011fu:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Herhangi bir blok bu hizalamalar\u0131 se\xe7ebilir. G\xf6m\xfcl\xfc blok da bunlara sahiptir ve varsay\u0131lan olarak duyarl\u0131d\u0131r:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Yukar\u0131daki, sadece iki g\xf6rselli bir galeri. Kayd\u0131rmalarla u\u011fra\u015fmadan g\xf6rsel olarak \xe7ekici d\xfczenler olu\u015fturman\u0131n daha kolay bir yolu. Ayr\u0131ca, blok de\u011fi\u015ftiriciyi kullanarak galeriyi tekrar tek tek resimlere d\xf6n\xfc\u015ft\xfcrebilirsiniz."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Tabii, tam geni\u015flikteki g\xf6r\xfcnt\xfc olduk\xe7a b\xfcy\xfck olabilir. Ama bazen g\xf6rsel buna de\u011fer."],"Accessibility is important — don’t forget image alt attribute":["Eri\u015filebilirlik \xf6nemlidir — g\xf6rselin alt niteli\u011fini unutmay\u0131n"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["E\u011fer yeni, geni\u015f ve tam geni\u015flikte hizalamalar\u0131 galerilerle birle\u015ftirirseniz, \xe7ok h\u0131zl\u0131 bir \u015fekilde \xe7ok zengin bir d\xfczen olu\u015fturabilirsiniz:"],"Media Rich":["Ortam zengin"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Galerinizlerdeki s\xfctun adedini, kenar \xe7ubu\u011funda bulunan blok kontrolc\xfcs\xfcndeki kayd\u0131r\u0131c\u0131y\u0131 s\xfcr\xfckleyerek de\u011fi\u015ftirebilirsiniz."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Bloklar ihtiyac\u0131n\u0131z olan her \u015fey olabilir. \xd6rne\u011fin, metninizin kompozisyonunun bir par\xe7as\u0131 olarak k\u0131salt\u0131lm\u0131\u015f bir \xf6zet eklemek isteyebilirsiniz ya da kocaman, bi\xe7imlendirilmi\u015f bir tane g\xf6stermeyi tercih edebilirsiniz. Bu se\xe7eneklerin t\xfcm\xfc, yerle\u015ftiricide mevcuttur."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Al\u0131nt\u0131 kayna\u011f\u0131na kar\u015f\u0131l\u0131k gelen bilgiler, g\xf6rsellerin alt\u0131ndaki ba\u015fl\u0131k yaz\u0131lar\u0131na benzer ayr\u0131 bir metin alan\u0131d\u0131r; bu nedenle kayna\u011f\u0131 se\xe7seniz, de\u011fi\u015ftirseniz veya kald\u0131rsan\u0131z bile al\u0131nt\u0131 yap\u0131s\u0131 korunur. Onu tekrar eklemek her zaman kolayd\u0131r."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["D\xfczenleyici daha \xf6nce k\u0131sa kodlar, \xf6zel HTML ya da \"gizemli et\" g\xf6m\xfclerinin ke\u015ffi gibi y\xf6ntemler yerine \"bloklar\" kullanarak daha kolay, daha zengin bir yaz\u0131 ve sayfa olu\u015fturma deneyimi sunmaya \xe7abal\u0131yor."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Bloklar\u0131n b\xfcy\xfck bir faydas\u0131, bunlar\u0131 yerinde d\xfczenleyip i\xe7eri\u011finizi do\u011frudan y\xf6nlendirebilmenizdir. Bir al\u0131nt\u0131n\u0131n kayna\u011f\u0131 veya bir d\xfc\u011fmenin metni gibi \u015feyleri d\xfczenlemek i\xe7in alanlara sahip olmak yerine, i\xe7eri\u011fi do\u011frudan de\u011fi\u015ftirebilirsiniz. A\u015fa\u011f\u0131daki al\u0131nt\u0131y\u0131 d\xfczenlemeyi deneyin:"],"Visual Editing":["G\xf6rsel d\xfczenleme"],"And Lists like this one of course :)":["Ve bunun gibi listeler, tabii ki :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["D\xfczen bloklar\u0131, be\u011feni d\xfc\u011fmeleri, man\u015fet g\xf6rselleri, ay\u0131r\u0131c\u0131lar, vs."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["G\xf6m\xfcler, YouTube, Tweetler ya da di\u011fer WordPress yaz\u0131lar\u0131 gibi."],Galleries:["Galeriler"],"Images & Videos":["G\xf6rseller ve videolar"],"Text & Headings":["Metin ve ba\u015fl\u0131klar"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Bir tur deneyin, hi\xe7 haberiniz olmayan fakat WordPress'in hali haz\u0131rda yaz\u0131lar\u0131n\u0131za ekleyebilece\u011fi bir \xe7ok \u015fey ke\u015ffedebilirsiniz. \u015eu an burada bulabileceklerinizin k\u0131sa bir listesi:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["WordPress'in yapabilece\u011fi her \u015feyin h\u0131zl\u0131 bir \u015fekilde ve ayn\u0131 yerde, arabirim \xfczerinde size sunuldu\u011funu d\xfc\u015f\xfcn\xfcn. HTML etiketler, s\u0131n\u0131flar ya da kar\u0131\u015f\u0131k k\u0131sa kod sentakslar\u0131n\u0131n ne oldu\u011funu anlamaya gerek yok. Ekleyicinin \u2014D\xfczenleyici \xe7evresinde g\xf6rd\xfc\u011f\xfcn\xfcz (+) tu\u015fu\u2014 arkas\u0131ndaki temel mant\u0131k bu, ki bu t\xfcm uygun bloklara bakabilmenize ve yaz\u0131n\u0131za eklemenize olanak sa\u011fl\u0131yor. Eklentiler ve temalar kendi bloklar\u0131n\u0131 kay\u0131t edebilirler. Bu da zengin bir d\xfczenleme ve yay\u0131nlama deneyiminde yepyeni kap\u0131lar a\xe7\u0131yor."],"The Inserter Tool":["Ekleme arac\u0131"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Ba\u015fl\u0131\u011f\u0131 se\xe7meyi ve kald\u0131rmay\u0131 ya da d\xfczenlemeyi deneyin. Art\u0131k bir g\xf6rseli ya da metni genel sunumu bozmamak ad\u0131na p\xfcr dikkat se\xe7meniz gerek yok."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["E\u011fer teman\u0131z bunu destekliyorsa, g\xf6rsel ara\xe7 \xe7ubu\u011funda \"geni\u015f\" butonunu g\xf6receksiniz. Bir deneyin."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["G\xf6rsellerin ve di\u011fer ortamlar\u0131n ele al\u0131nmas\u0131 yeni d\xfczenleyicinin en \xf6nemli ve birincil i\u015fi. Umuyoruz ki g\xf6rsellere metin ekleme ya da tam geni\u015flik vb. i\u015flemleri eskisinden \xe7ok daha kolay yapabileceksiniz."],"A Picture is Worth a Thousand Words":["Bir resim, bin kelimeye bedeldir"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Ba\u015fl\u0131klar da art\u0131k ayr\u0131 ayr\u0131 bloklar, ki bu da i\xe7eri\u011finizin genel organizasyonunun yap\u0131s\u0131n\u0131 \xe7\u0131kartman\u0131za yard\u0131mc\u0131 oluyor."],"... like this one, which is right aligned.":["... bunun gibi, sa\u011fa hizal\u0131 olanlar."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["\u015eu an okudu\u011funuz en basit blok, metin blo\u011fu. Metin blo\u011funun da yaz\u0131 i\xe7inde rahat\xe7a hareket edebilmesi i\xe7in kendi kontrolleri var..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Yeni d\xfczenleyicinin hedefi WordPress'e zengin i\xe7eri\u011fin kolay ve tatminkar bir \u015fekilde eklenebilmesi. T\xfcm yaz\u0131 sa\u011fa sola ta\u015f\u0131yabilece\u011finiz ve etkile\u015fime girebilece\u011finiz i\xe7erik par\xe7alar\u0131ndan \u2014LEGO par\xe7alar\u0131na benzer bir yap\u0131\u2014 olu\u015fuyor. \u0130mleci sa\u011fa sola hareket ettirdi\u011finizda farkl\u0131 bloklar\u0131n \xf6ne \xe7\u0131kt\u0131\u011f\u0131n\u0131 ve oklar\u0131 fark edeceksiniz. Oklar\u0131 kullanarak bloklar\u0131 yeniden konumland\u0131rabilirsiniz. Hem de kopyala yap\u0131\u015ft\u0131r i\u015flemi yaparken bir \u015feyleri kaybetme korkusu olmadan."],"Of Mountains & Printing Presses":["Da\u011flar ve \xe7\u0131kt\u0131 bas\u0131mlar"],"Welcome to the Gutenberg Editor":["Gutenberg d\xfczenleyicisine ho\u015f geldiniz"],"block name\x04More":["Daha fazla"],"button to expand options\x04More":["Daha fazla"],"Are you sure you want to unschedule this post?":["Bu yaz\u0131n\u0131n zamanlamas\u0131n\u0131 kald\u0131rmak istedi\u011finize emin misiniz?"],"Alt Text (Alternative Text)":["Alt metin (Alternatif metin)"],"Reusable Block":["Tekrar kullan\u0131labilir blok"],"Unique identifier for the object.":["Nesne i\xe7in benzersiz tan\u0131mlay\u0131c\u0131."],"Untitled Reusable Block":["Ba\u015fl\u0131ks\u0131z tekrar kullan\u0131labilir blok"],Small:["K\xfc\xe7\xfck"],"(%s: %s)":["(%s: %s)"],Reusable:["Tekrar kullan\u0131labilir"],"(current %s: %s)":["(mevcut %s: %s)"],"Remove from Reusable Blocks":["Tekrar kullan\u0131labilir bloklardan kald\u0131r"],"Add to Reusable Blocks":["Tekrar kullan\u0131labilir bloklara ekle"],"Keep as HTML":["HTML olarak sakla"],"Edit URL":["Ba\u011flant\u0131y\u0131 d\xfczenle"],"Color Settings":["Renk ayarlar\u0131"],"The response is not a valid JSON response.":["Yan\u0131t ge\xe7erli bir JSON yan\u0131t\u0131 de\u011fildir."],"Editor publish":["D\xfczenleyici yay\u0131n\u0131"],Muted:["Sessiz"],"Video Settings":["Video ayarlar\u0131"],"recent comments":["son yorumlar"],"Latest Comments":["En son yorumlar"],"Display Excerpt":["\xd6zeti g\xf6ster"],"Display Date":["Tarihi g\xf6ster"],"Display Avatar":["Avatar\u0131 g\xf6ster"],"Latest Comments Settings":["Son yorumlar ayarlar\u0131"],"Number of Comments":["Yorum say\u0131s\u0131"],"Background Opacity":["Arka plan saydaml\u0131\u011f\u0131"],Auto:["Otomatik"],Preload:["\xd6n y\xfckleme"],"Audio Settings":["Ses ayarlar\u0131"],"Display a monthly archive of your posts.":["Yaz\u0131lar\u0131n\u0131z\u0131n ayl\u0131k ar\u015fivini g\xf6r\xfcnt\xfcleyin."],"Display as Dropdown":["A\xe7\u0131l\u0131r men\xfc olarak g\xf6r\xfcnt\xfcle"],"Show Post Counts":["Yaz\u0131 say\u0131s\u0131n\u0131 g\xf6ster"],"Archives Settings":["Ar\u015fiv ayarlar\u0131"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["Destek"],"No comments to show.":["G\xf6sterilecek yorum yok."],"%1$s on %2$s":["%1$s - %2$s"],"Select Post":["Yaz\u0131 se\xe7in"],"Select Week":["Hafta se\xe7in"],"Select Day":["G\xfcn se\xe7in"],"Select Month":["Ay se\xe7in"],"Select Year":["Y\u0131l se\xe7in"],Archives:["Ar\u015fivler"],"Very dark gray":["\xc7ok koyu gri"],"Cyan bluish gray":["Cam g\xf6be\u011fi mavimsi gri"],"Very light gray":["\xc7ok a\xe7\u0131k gri"],"Vivid cyan blue":["Canl\u0131 cam g\xf6be\u011fi mavi"],"Pale cyan blue":["Soluk cam g\xf6be\u011fi mavi"],"Vivid green cyan":["Canl\u0131 ye\u015fil cam g\xf6be\u011fi"],"Light green cyan":["A\xe7\u0131k ye\u015fil cam g\xf6be\u011fi"],"Luminous vivid amber":["Canl\u0131 parlak amber"],"Luminous vivid orange":["Parlak canl\u0131 turuncu"],"Vivid red":["Canl\u0131 k\u0131rm\u0131z\u0131"],"Pale pink":["A\xe7\u0131k pembe"],"Inline image":["Sat\u0131r i\xe7i g\xf6rsel"],"Available block types":["Kullan\u0131labilir blok t\xfcrleri"],"Transform To:":["\u015euna d\xf6n\xfc\u015ft\xfcr:"],"Remove Block":["Blo\u011fu kald\u0131r"],"Open publish panel":["Yay\u0131mlama panelini a\xe7"],Dots:["Noktalar"],"Wide Line":["Geni\u015f \xe7izgi"],Large:["B\xfcy\xfck"],"Show download button":["\u0130ndirme d\xfc\u011fmesini g\xf6ster"],"Download button settings":["\u0130ndirme d\xfc\u011fmesi ayarlar\u0131"],"Link To":["Ba\u011flant\u0131"],"Text link settings":["Metin ba\u011flant\u0131 ayarlar\u0131"],pdf:["pdf"],document:["belge"],"Copy URL":["Ba\u011flant\u0131y\u0131 kopyala"],"Write file name\u2026":["Dosya ad\u0131 yaz\u2026"],"Edit file":["Dosyay\u0131 d\xfczenle"],File:["Dosya"],"A single column within a columns block.":["S\xfctun blo\u011funda tek bir s\xfctun."],Column:["S\xfctun"],Outline:["\xc7evresi \xe7izgili"],Loop:["D\xf6ng\xfc"],Autoplay:["Otomatik oynat"],"Playback Controls":["Oynatma kontrolleri"],"Close dialog":["Pencereyi kapat"],"Sorry, this file type is not permitted for security reasons.":["\xdczg\xfcn\xfcm, bu dosya t\xfcr\xfcne g\xfcvenlik nedenleriyle izin verilmez."],"Disable tips":["\u0130pu\xe7lar\u0131n\u0131 devre d\u0131\u015f\u0131 b\u0131rak"],"Got it":["Anlad\u0131m"],"See next tip":["Sonraki ipucunu g\xf6r"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Haz\u0131r oldu\u011funuzda, \xe7al\u0131\u015fman\u0131z\u0131 incelenmek \xfczere g\xf6nderin. Bir edit\xf6r sizin i\xe7in onaylayabilir."],"Are you ready to submit for review?":["\u0130nceleme i\xe7in g\xf6ndermeye haz\u0131r m\u0131s\u0131n\u0131z?"],"Replace image":["G\xf6rseli de\u011fi\u015ftir"],"Remove image":["G\xf6rseli kald\u0131r"],"Error while uploading file %s to the media library.":["%s dosyas\u0131 ortam k\xfct\xfcphanesine y\xfcklenirken hata."],"This file exceeds the maximum upload size for this site.":["Bu dosya, bu site i\xe7in azami y\xfckleme boyutunu a\u015f\u0131yor."],"View the autosave":["Otomatik kay\u0131tlar\u0131 g\xf6r\xfcnt\xfcle"],"There is an autosave of this post that is more recent than the version below.":["Bu yaz\u0131n\u0131n, a\u015fa\u011f\u0131daki s\xfcr\xfcmden daha yeni olan otomatik haydedilmi\u015f bir s\xfcr\xfcm\xfc var."],Autosaving:["Otomatik kay\u0131t"],"Enter URL here\u2026":["Ba\u011flant\u0131 girin..."],"Pin to toolbar":["Ara\xe7 \xe7ubu\u011funa tuttur"],"Unpin from toolbar":["Ara\xe7 \xe7ubu\u011fundan kald\u0131r"],"Insert a table \u2014 perfect for sharing charts and data.":["Bir tablo ekle \u2014 \xe7izelgeler ve veri payla\u015fmak i\xe7in m\xfckemmel."],"Fixed width table cells":["Sabit geni\u015flikte tablo h\xfccreleri"],"Table Settings":["Tablo ayarlar\u0131"],"Add text that respects your spacing and tabs, and also allows styling.":["Espas ve sekmelerinize uyumlu ve bi\xe7imlendirmenize de izin veren bir metin ekleyin."],"Display a list of your most recent posts.":["Son yaz\u0131lar\u0131n\u0131z\u0131n listesini g\xf6r\xfcnt\xfcleyin."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Twitter, Instagram veya YouTube gibi di\u011fer sitelerden \xe7ekilen i\xe7eri\u011fi g\xf6steren bir blok ekleyin."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u0130\xe7eri\u011fi birden \xe7ok s\xfctunda g\xf6steren bir blok ekleyin, ard\u0131ndan istedi\u011finiz i\xe7erik bloklar\u0131n\u0131 ekleyin."],"Error loading block: %s":["Blok y\xfcklenirken hata: %s"],"Unknown error":["Bilinmeyen hata"],"Embed Handler":["G\xf6mme tutucu"],"term\x04Remove %s":["%s kald\u0131r"],"Copy the permalink":["Kal\u0131c\u0131 ba\u011flant\u0131y\u0131 kopyala"],"Permalink copied":["Kal\u0131c\u0131 ba\u011flant\u0131 kopyaland\u0131"],"Height in pixels":["Piksel olarak y\xfckseklik"],"Spacer Settings":["Aralay\u0131c\u0131 ayarlar\u0131"],Spacer:["Aralay\u0131c\u0131"],"Toggle to show a large initial letter.":["B\xfcy\xfck bir ba\u015flang\u0131\xe7 harfi g\xf6sterimini a\xe7\u0131p kapat\u0131n."],"Showing large initial letter.":["B\xfcy\xfck ilk harf g\xf6steriliyor."],"Name:":["\u0130sim:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s / %3$s)"],"Remove item":["\xd6\u011feyi kald\u0131r"],"Color code: %s":["Renk kodu: %s"],"Skip to the selected block":["Se\xe7ilen blo\u011fa ge\xe7"],"Publish\u2026":["Yay\u0131mla\u2026"],"Schedule\u2026":["Zamanla\u2026"],"Edit post permalink":["Kal\u0131c\u0131 ba\u011flant\u0131y\u0131 d\xfczenle"],"Show Block Settings":["Blok ayarlar\u0131n\u0131 g\xf6ster"],"Hide Block Settings":["Blok ayarlar\u0131n\u0131 gizle"],"Block settings closed":["Blok ayarlar\u0131 kapat\u0131ld\u0131"],"Close plugin":["Eklentiyi kapat"],"Link settings":["Ba\u011flant\u0131 ayarlar\u0131"],Unlink:["Ba\u011flant\u0131y\u0131 kald\u0131r"],"Page break":["Sayfa sonu"],pagination:["sayfalama"],"next page":["sonraki sayfa"],"Image Size":["G\xf6rsel boyutu"],Height:["Y\xfckseklik"],Width:["Geni\u015flik"],"Image Dimensions":["G\xf6rsel boyutlar\u0131"],"Thumbnails are not cropped.":["K\xfc\xe7\xfck resimler k\u0131rp\u0131lmad\u0131."],"Thumbnails are cropped to align.":["K\xfc\xe7\xfck resimler hizalamak i\xe7in k\u0131rp\u0131l\u0131r."],"Media Library":["Ortam k\xfct\xfcphanesi"],Advanced:["Geli\u015fmi\u015f"],"Add item":["\xdcr\xfcn ekle"],"Reset the template":["\u015eablonu s\u0131f\u0131rla"],"Keep it as is":["Oldu\u011fu gibi b\u0131rak"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Yaz\u0131n\u0131z\u0131n i\xe7eri\u011fi, yaz\u0131 tipine atanan \u015fablon ile e\u015fle\u015fmiyor."],"Resetting the template may result in loss of content, do you want to continue?":["\u015eablounu s\u0131f\u0131rlamak i\xe7erik kayb\u0131yla sonu\xe7lanabilir, devam etmek istedi\u011finize emin misiniz?"],"Document Statistics":["Belge istatistikleri"],"is now scheduled. It will go live on":["\u015fimdi planland\u0131. Bu tarihte yay\u0131nlanacak"],Scheduled:["Zamanland\u0131"],"Scheduling\u2026":["Zamanlan\u0131yor\u2026"],"Code editor selected":["Kod d\xfczenleyici se\xe7ildi"],"Visual editor selected":["G\xf6rsel d\xfczenleyici se\xe7ildi"],Plugins:["Eklentiler"],"Custom Size":["\xd6zel boyut"],"Layout Elements":["Yerle\u015fim \xf6\u011feleri"],"term\x04%s removed":["%s kald\u0131r\u0131ld\u0131"],"term\x04%s added":["%s eklendi"],"imperative verb\x04Preview":["\xd6n izleme"],"Block deleted.":["Blok silindi."],"Block updated.":["Blok g\xfcncellendi."],"Block created.":["Blok olu\u015fturuldu."],"Trashing failed":["\xc7\xf6pe g\xf6nderilemedi"],"Updating failed.":["G\xfcncelleme ba\u015far\u0131s\u0131z oldu."],"Scheduling failed.":["Zamanlama ba\u015far\u0131s\u0131z oldu."],"Publishing failed.":["Yay\u0131mlama ba\u015far\u0131s\u0131z oldu."],"View Post":["Yaz\u0131y\u0131 g\xf6r\xfcnt\xfcle"],"You have unsaved changes. If you proceed, they will be lost.":["Kaydedilmemi\u015f de\u011fi\u015fiklikleriniz var. E\u011fer devam ederseniz de\u011fi\u015fiklikler yok olacak."],"Document Outline":["Belge anahatt\u0131"],Paragraphs:["Paragraflar"],Headings:["Ba\u015fl\u0131klar"],Words:["Kelime"],"Content structure":["\u0130\xe7erik yap\u0131s\u0131"],Public:["Genel"],"Protected with a password you choose. Only those with the password can view this post.":["Se\xe7ti\u011finiz parola ile korunmaktad\u0131r. Sadece parolay\u0131 bilenler bu yaz\u0131y\u0131 g\xf6r\xfcnt\xfcleyebilecektir."],"Password Protected":["Parola korumal\u0131"],"Only visible to site admins and editors.":["Yaln\u0131zca site y\xf6neticileri ve edit\xf6rleri taraf\u0131ndan g\xf6r\xfclebilir."],Private:["\xd6zel"],"Visible to everyone.":["Herkese a\xe7\u0131k."],"Post Visibility":["Yaz\u0131 g\xf6r\xfcn\xfcrl\xfc\u011f\xfc"],"Would you like to privately publish this post now?":["Bu yaz\u0131y\u0131 \u015fimdi \xf6zel olarak yay\u0131mlamak ister misiniz?"],"Use a secure password":["G\xfcvenli bir parola kullan\u0131n"],"Create password":["Parola olu\u015ftur"],"Move to Trash":["\xc7\xf6pe ta\u015f\u0131"],"Parent Term":["Ebeveyn terim"],"Parent Category":["Ebeveyn kategori"],"Add new term":["Yeni terim ekle"],"Add new category":["Yeni kategori ekle"],Term:["Terim"],Tag:["Etiket"],"Add New Term":["Yeni terim ekle"],"Add New Tag":["Yeni etiket ekle"],"Switch to Draft":["Tasla\u011fa d\xf6n\xfc\u015ft\xfcr"],"Are you sure you want to unpublish this post?":["Bu yaz\u0131y\u0131 yay\u0131ndan kald\u0131rmak istedi\u011finize emin misiniz?"],Immediately:["Hemen"],"Save Draft":["Tasla\u011f\u0131 kaydet"],Saving:["Kaydediliyor"],"Publish:":["Yay\u0131mla:"],"Visibility:":["G\xf6r\xfcn\xfcrl\xfck:"],"Are you ready to publish?":["Yay\u0131mlamaya haz\u0131r m\u0131s\u0131n\u0131z?"],"Copy Link":["Ba\u011flant\u0131y\u0131 kopyala"],"What\u2019s next?":["S\u0131radaki ne?"],"is now live.":["\u015fimdi yay\u0131nda."],Published:["Yay\u0131mland\u0131"],Schedule:["Zamanla"],Update:["G\xfcncelle"],"Submit for Review":["\u0130nceleme i\xe7in g\xf6nder"],"Updating\u2026":["G\xfcncelleniyor\u2026"],"Publishing\u2026":["Yay\u0131mlan\u0131yor\u2026"],"Allow Pingbacks & Trackbacks":["Geri bildirimlere ve geri izlemelere izin ver"],"Permalink:":["Kal\u0131c\u0131 ba\u011flant\u0131:"],"Pending Review":["\u0130nceleme bekliyor"],"%d Revision":["%d s\xfcr\xfcm","%d s\xfcr\xfcm"],"Suggestion:":["\xd6neri:"],"Post Format":["Yaz\u0131 bi\xe7imi"],Chat:["Sohbet"],Status:["Durum"],Standard:["Standart"],Aside:["Ayr\u0131"],"Set Featured Image":["\xd6ne \xe7\u0131kan g\xf6rseli belirle"],"Learn more about manual excerpts":["Elle yaz\u0131lan \xf6zetler hakk\u0131nda daha fazlas\u0131n\u0131 \xf6\u011frenin"],"Write an excerpt (optional)":["\xd6zet yaz\u0131n (iste\u011fe ba\u011fl\u0131)"],"Allow Comments":["Yorumlara izin ver"],"Template:":["\u015eablon:"],"no parent":["ebeveyn yok"],"no title":["ba\u015fl\u0131ks\u0131z"],Order:["S\u0131ra"],"No blocks found.":["Blok bulunamad\u0131."],"%d result found.":["%d sonu\xe7 bulundu.","%d sonu\xe7 bulundu."],Saved:["Kaydedildi"],Embeds:["G\xf6m\xfcl\xfcler"],Blocks:["Bloklar"],"Search for a block":["Blok ara"],"Add block":["Blok ekle"],"Add %s":["%s ekle"],"Copy Error":["Kopyalama hatas\u0131"],"Copy Post Text":["Yaz\u0131 metnini kopyala"],"Attempt Recovery":["Kurtarma giri\u015fimi"],"The editor has encountered an unexpected error.":["D\xfczenleyici beklenmeyen bir hatayla kar\u015f\u0131la\u015ft\u0131."],Undo:["Geri al"],Redo:["Yinele"],"(Multiple H1 headings are not recommended)":["(Birden fazla H1 etiketi \xf6nerilmez)"],"(Your theme may already use a H1 for the post title)":["(Teman\u0131z zaten yaz\u0131 ba\u015fl\u0131\u011f\u0131 i\xe7in H1 etiketi kullan\u0131yor)"],"(Incorrect heading level)":["(Yanl\u0131\u015f ba\u015fl\u0131k seviyesi)"],"(Empty heading)":["(Bo\u015f ba\u015fl\u0131k)"],"Block Styles":["Blok bi\xe7imleri"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Tekrar kullan\u0131labilir bu blo\u011fu silmek istedi\u011finize emin misiniz?\n\nBunu kullanan t\xfcm sayfalardan ve yaz\u0131lardan kal\u0131c\u0131 olarak kald\u0131r\u0131lacakt\u0131r."],"Convert to Regular Block":["Normal blo\u011fa d\xf6n\xfc\u015ft\xfcr"],"More options":["Daha fazla se\xe7enek"],"Edit visually":["G\xf6rsel olarak d\xfczenle"],Duplicate:["\xc7o\u011falt"],"Blocks cannot be moved down as they are already at the bottom":["Bloklar zaten altta olduklar\u0131 i\xe7in a\u015fa\u011f\u0131 ta\u015f\u0131namazlar"],"Blocks cannot be moved up as they are already at the top":["Bloklar zaten \xfcstte olduklar\u0131 i\xe7in yukar\u0131 ta\u015f\u0131namazlar"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["%1$s blo\u011fu i\xe7eri\u011fin ba\u015f\u0131nda ve %2$s ta\u015f\u0131namaz"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["%1$s blo\u011fu i\xe7eri\u011fin sonunda ve %2$s ta\u015f\u0131namaz"],"Block %s is the only block, and cannot be moved":["%s tek bloktur bu y\xfczden ta\u015f\u0131namaz"],"Edit as HTML":["HTML olarak d\xfczenle"],"Convert to Blocks":["Bloklara d\xf6n\xfc\u015ft\xfcr"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Bu blok bir hatayla kar\u015f\u0131la\u015ft\u0131 ve \xf6nizlenemiyor."],"No block selected.":["Blok se\xe7ilmedi."],"Transform into:":["D\xf6n\xfc\u015ft\xfcr:"],Remove:["Kald\u0131r"],"Find original":["Orijinali bul"],"Copy All Content":["B\xfct\xfcn i\xe7eri\u011fi kopyala"],"Copied!":["Kopyaland\u0131!"],"Additional settings are now available in the Editor block settings sidebar":["Art\u0131k d\xfczenleyici blok ayarlar\u0131 kenar \xe7ubu\u011funda ek ayarlar kullan\u0131labilir"],Visibility:["G\xf6r\xfcn\xfcrl\xfck"],"Status & Visibility":["Durum ve g\xf6r\xfcn\xfcrl\xfck"],"Page Attributes":["Sayfa nitelikleri"],Block:["Blok"],Document:["Belge"],"Featured Image":["\xd6ne \xe7\u0131kan g\xf6rsel"],"Close settings":["Ayarlar\u0131 kapat"],"Editor content":["D\xfczenleyici i\xe7eri\u011fi"],Tools:["Ara\xe7lar"],Editor:["D\xfczenleyici"],"Code Editor":["Kod d\xfczenleyici"],"Visual Editor":["G\xf6rsel d\xfczenleyici"],"Editor top bar":["D\xfczenleyici \xfcst \xe7ubu\u011fu"],Settings:["Ayarlar"],Reset:["S\u0131f\u0131rla"],"Dismiss this notice":["Uyar\u0131y\u0131 g\xf6rmezden gel"],"Item removed.":["\xd6\u011fe kald\u0131r\u0131ld\u0131."],"Item added.":["\xd6\u011fe eklendi."],"Drop files to upload":["Kar\u015f\u0131ya y\xfcklemek i\xe7in dosyalar\u0131 s\xfcr\xfckleyin"],PM:["\xd6S"],AM:["\xd6\xd6"],"An unknown error occurred.":["Bilinmeyen bir hata olu\u015ftu."],"No results.":["Sonu\xe7 yok."],"%d result found, use up and down arrow keys to navigate.":["%d sonu\xe7 bulun bulundu, dola\u015f\u0131m i\xe7in a\u015fa\u011f\u0131 ve yukar\u0131 y\xf6n tu\u015flar\u0131n\u0131 kullan\u0131n.","%d sonu\xe7 bulun bulundu, dola\u015f\u0131m i\xe7in a\u015fa\u011f\u0131 ve yukar\u0131 y\xf6n tu\u015flar\u0131n\u0131 kullan\u0131n."],"(no title)":["(ba\u015fl\u0131ks\u0131z)"],URL:["Ba\u011flant\u0131"],Submit:["Kaydet"],Close:["Kapat"],"Insert link":["Ba\u011flant\u0131 ekle"],"Edit link":["Ba\u011flant\u0131y\u0131 d\xfczenle"],Link:["Ba\u011flant\u0131"],Strikethrough:["\xdczeri \xe7izili"],Italic:["E\u011fik"],Bold:["Kal\u0131n"],"Remove link":["Ba\u011flant\u0131y\u0131 kald\u0131r"],"Number of items":["\xd6\u011fe say\u0131s\u0131"],All:["T\xfcm\xfc"],Category:["Kategori"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["Eskiden yeniye"],"Newest to Oldest":["Yeniden eskiye"],"Order by":["S\u0131rala"],Select:["Se\xe7"],"Select or Upload Media":["Ortam se\xe7 veya kar\u015f\u0131ya y\xfckle"],Video:["Video"],"Edit video":["Videoyu d\xfczenle"],"Write\u2026":["Yaz\u2026"],poetry:["\u015fiir"],Verse:["D\xf6rtl\xfck"],"New Column":["Yeni s\xfctun"],"Delete Column":["S\xfctunu sil"],"Add Column After":["S\xfctun sonras\u0131na ekle"],"Add Column Before":["S\xfctun \xf6ncesine ekle"],"Delete Row":["Sat\u0131r\u0131 sil"],"Add Row After":["Sat\u0131r\u0131n sonras\u0131na ekle"],"Add Row Before":["Sat\u0131r \xf6ncesine ekle"],"Edit table":["Tabloyu d\xfczenle"],Table:["Tablo"],"Write subheading\u2026":["Alt ba\u015fl\u0131k yaz\u2026"],"Write shortcode here\u2026":["K\u0131sa kodu buraya yaz\u2026"],Shortcode:["K\u0131sa kod"],divider:["ay\u0131r\u0131c\u0131"],"horizontal-line":["yatay \xe7izgi"],Separator:["Ay\u0131r\u0131c\u0131"],Quote:["Al\u0131nt\u0131"],"Write citation\u2026":["Kaynak yaz\u2026"],"Write quote\u2026":["Al\u0131nt\u0131 yaz\u2026"],Pullquote:["Al\u0131nt\u0131 yap"],"Write preformatted text\u2026":["\xd6nceden bi\xe7imlendirilmi\u015f metin yaz\u2026"],Preformatted:["\xd6nceden bi\xe7imlendirilmi\u015f"],text:["metin"],Paragraph:["Paragraf"],"Font Size":["Yaz\u0131 tipi boyutu"],"Drop Cap":["\u0130lk harfi b\xfcy\xfck"],"Text Settings":["Metin ayarlar\u0131"],"Read more":["Daha fazla oku"],"Write list\u2026":["Liste yaz\u2026"],"numbered list":["numaral\u0131 liste"],"ordered list":["s\u0131ral\u0131 liste"],"bullet list":["i\u015faretli liste"],"Indent list item":["Liste \xf6\u011fesinin girintisini artt\u0131r"],"Outdent list item":["Liste \xf6\u011fesinin girintisini azalt"],"Convert to ordered list":["S\u0131ral\u0131 listeye d\xf6n\xfc\u015ft\xfcr"],"Convert to unordered list":["S\u0131ras\u0131z listeye d\xf6n\xfc\u015ft\xfcr"],List:["Liste"],"recent posts":["son yaz\u0131lar"],"No posts found.":["Yaz\u0131 bulunamad\u0131."],"Latest Posts":["Son yaz\u0131lar"],"Display post date":["Yaz\u0131 tarihini g\xf6ster"],"Grid view":["Izgara g\xf6r\xfcn\xfcm\xfc"],"List view":["Liste g\xf6r\xfcn\xfcm\xfc"],photo:["foto\u011fraf"],"Image Settings":["G\xf6rsel ayarlar\u0131"],Image:["G\xf6rsel"],Preview:["\xd6n izleme"],embed:["g\xf6m"],"Custom HTML":["\xd6zel HTML"],subtitle:["alt ba\u015fl\u0131k"],title:["ba\u015fl\u0131k"],Heading:["Ba\u015fl\u0131k"],"Write heading\u2026":["Ba\u015fl\u0131k yaz\u2026"],"Heading %d":["Ba\u015fl\u0131k %d"],Level:["Seviye"],"Heading Settings":["Ba\u015fl\u0131k ayarlar\u0131"],photos:["foto\u011fraflar"],images:["g\xf6rseller"],"Remove Image":["G\xf6rseli kald\u0131r"],None:["Yok"],"Media File":["Ortam dosyas\u0131"],"Attachment Page":["Ek sayfas\u0131"],"Crop Images":["G\xf6rselleri k\u0131rp"],"Gallery Settings":["Galeri ayarlar\u0131"],Gallery:["Galeri"],Classic:["Klasik"],video:["video"],audio:["ses"],music:["m\xfczik"],image:["g\xf6rsel"],blog:["blog"],post:["yaz\u0131"],"Embedded content from %s":["%s adresinden g\xf6m\xfclen i\xe7erik"],"Enter URL to embed here\u2026":["Buraya g\xf6m\xfclecek ba\u011flant\u0131y\u0131 girin\u2026"],"%s URL":["%s ba\u011flant\u0131s\u0131"],"Embedding\u2026":["G\xf6m\xfcl\xfcyor\u2026"],"Write title\u2026":["Ba\u015fl\u0131k yaz\u2026"],"Fixed Background":["Sabir arka plan"],"Edit image":["G\xf6rseli d\xfczenle"],Columns:["S\xfctunlar"],Experiments:["Deneyler"],Code:["Kod"],"Write code\u2026":["Kod yaz\u2026"],Categories:["Kategoriler"],"Show Hierarchy":["Hiyerar\u015fiyi g\xf6ster"],"Show post counts":["Yaz\u0131 say\u0131s\u0131n\u0131 g\xf6ster"],"Categories Settings":["Kategori ayarlar\u0131"],"Add text\u2026":["Metin ekle\u2026"],Button:["D\xfc\u011fme"],Apply:["Uygula"],"Text Color":["Metin rengi"],"Background Color":["Arka plan rengi"],"Block has been deleted or is unavailable.":["Blok silindi veya kullan\u0131lam\u0131yor."],"Reusable Blocks":["Tekrar kullan\u0131labilir bloklar"],Cancel:["\u0130ptal"],Edit:["D\xfczenle"],"Edit audio":["Sesi d\xfczenle"],"Write caption\u2026":["Altyaz\u0131 yaz\u2026"],"Use URL":["Ba\u011flant\u0131 kullan"],Audio:["Ses"],Upload:["Kar\u015f\u0131ya y\xfckle"],"Additional CSS Class(es)":["Ek CSS s\u0131n\u0131f(lar)\u0131"],"HTML Anchor":["HTML \xe7apas\u0131"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Bu renk kombinasyonu insanlar\u0131n okumas\u0131n\u0131 zorla\u015ft\u0131rabilir. Daha a\xe7\u0131k arka plan rengi ve/veya daha koyu metin rengi kullanmay\u0131 deneyebilirsiniz."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Bu renk kombinasyonu insanlar\u0131n okumas\u0131n\u0131 zorla\u015ft\u0131rabilir. Daha koyu arka plan rengi ve/veya daha a\xe7\u0131k metin rengi kullanmay\u0131 deneyebilirsiniz."],Clear:["Temizle"],"Custom color picker":["\xd6zel renk se\xe7ici"],"Color: %s":["Renk: %s"],"Full Width":["Tam geni\u015flik"],"Wide Width":["B\xfcy\xfck geni\u015flik"],Widgets:["Bile\u015fenler"],Formatting:["Bi\xe7imlendirme"],"Common Blocks":["Ortak bloklar"],"Align Right":["Sa\u011fa hizala"],"Align Center":["Ortala"],"Align Left":["Sola hizala"],"Printing since 1440. This is the development plugin for the new block editor in core.":["1440'ten beri bas\u0131m. Bu, \xe7ekirdekteki yeni blok d\xfczenleyicisinin geli\u015ftirme eklentisidir."],"Add title":["Ba\u015fl\u0131k ekle"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg geli\u015ftirme modu dosyalar\u0131n yap\u0131land\u0131r\u0131lmas\u0131n\u0131 gerektirir. Ba\u011f\u0131ml\u0131l\u0131klar\u0131 y\xfcklemek i\xe7in npm install komutunu \xe7al\u0131\u015ft\u0131r\u0131n, dosyalar\u0131 yap\u0131land\u0131rmak i\xe7in npm run build komutunu ve yap\u0131land\u0131r\u0131p de\u011fi\u015fiklikleri izlemek i\xe7in npm run dev komutunu \xe7al\u0131\u015ft\u0131r\u0131n. Daha fazla bilgi i\xe7in katk\u0131da bulunma dosyas\u0131n\u0131 okuyun."],Author:["Yazar"],Slug:["K\u0131sa isim"],Discussion:["Tart\u0131\u015fma"],"Custom Fields":["\xd6zel alanlar"],Excerpt:["\xd6zet"],Publish:["Yay\u0131mla"],Metadata:["Meta veri"],Save:["Kaydet"],Documentation:["Belgeler"],"Select Category":["Kategori se\xe7in"],"(Untitled)":["(Ba\u015fl\u0131ks\u0131z)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenbergin d\xfczg\xfcn \xe7al\u0131\u015fmas\u0131 i\xe7in WordPress %s veya \xfcst\xfc gerekir. L\xfctfen Gutenbergi etkinle\u015ftirmeden \xf6nce WordPress s\xfcr\xfcm\xfcn\xfcz\xfc y\xfckseltin."],"Gutenberg Team":["Gutenberg Ekibi"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s \xf6nce"],"Block style name must be a string.":["Blok bi\xe7em ad\u0131 metin olmal\u0131d\u0131r."]}},867,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":["\u041e\u043d\u043e\u0432\u043b\u0435\u043d\u043e %s"],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:["\u0414\u043e\u0434\u0430\u0442\u0438"],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":["\u0417\u0432\u043e\u0440\u043e\u0442\u043d\u044f \u043d\u0443\u043c\u0435\u0440\u0430\u0446\u0456\u044f \u0441\u043f\u0438\u0441\u043a\u0443"],"Start Value":["\u041f\u043e\u0447\u0430\u0442\u043a\u043e\u0432\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f"],"Ordered List Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u043f\u043e\u0440\u044f\u0434\u043a\u043e\u0432\u0430\u043d\u043e\u0433\u043e \u0441\u043f\u0438\u0441\u043a\u0443"],"Clear Media":["\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u043c\u0435\u0434\u0456\u0430"],"block style\x04Circle Mask":["\u041a\u0440\u0443\u0433\u043e\u0432\u0430 \u043c\u0430\u0441\u043a\u0430"],"Default Style":["\u0421\u0442\u0438\u043b\u044c \u0437\u0430 \u0437\u0430\u043c\u043e\u0432\u0447\u0443\u0432\u0430\u043d\u043d\u044f\u043c"],"Not set":["\u041d\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["\u041f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u044c\u0442\u0435 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0443, \u0449\u043e\u0431 \u0434\u0456\u0437\u043d\u0430\u0442\u0438\u0441\u044f \u0431\u0456\u043b\u044c\u0448\u0435 \u043f\u0440\u043e \u0442\u0435, \u0449\u043e \u0440\u043e\u0431\u0438\u0442\u044c \u043a\u043e\u0436\u0435\u043d \u0431\u043b\u043e\u043a."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":["\u0412\u0438\u0440\u0456\u0432\u043d\u044f\u0442\u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0443 \u043f\u0440\u0430\u0432\u043e\u0440\u0443\u0447"],"Align Column Center":["\u0412\u0438\u0440\u0456\u0432\u043d\u044f\u0442\u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0443 \u043f\u043e \u0446\u0435\u043d\u0442\u0440\u0443"],"Align Column Left":["\u0412\u0438\u0440\u0456\u0432\u043d\u044f\u0442\u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0443 \u043b\u0456\u0432\u043e\u0440\u0443\u0447"],Color:["\u041a\u043e\u043b\u0456\u0440"],"Vivid purple":["\u042f\u0441\u043a\u0440\u0430\u0432\u0438\u0439 \u0444\u0456\u043e\u043b\u0435\u0442\u043e\u0432\u0438\u0439"],"Disable & Reload":["\u0412\u0456\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u0438 \u0456 \u043f\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438"],"Enable & Reload":["\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0438 \u0456 \u043f\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438"],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":["\u0415\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0456 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":["\u0415\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0456 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f"],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":["\u0414\u0456\u0437\u043d\u0430\u0439\u0442\u0435\u0441\u044f \u0431\u0456\u043b\u044c\u0448\u0435 \u043f\u0440\u043e \u044f\u043a\u043e\u0440\u0456"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":["\u0411\u043b\u043e\u043a\u0438 \u0432\u0456\u0434\u0436\u0435\u0442\u0456\u0432 (\u0415\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0435)"],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:["\u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u0438"],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":["\u0429\u043e \u0446\u0435?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":["SEO \u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f"],Description:["\u041e\u043f\u0438\u0441"],"Open in new tab":[],links:["\u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],navigation:[],menu:["\u043c\u0435\u043d\u044e"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":["\u0422\u0440\u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0438; \u0448\u0438\u0440\u043e\u043a\u0430 \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u043a\u0430"],"Three columns; equal split":["\u0422\u0440\u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0438; \u0440\u0456\u0432\u043d\u0435 \u0440\u043e\u0437\u0434\u0456\u043b\u0435\u043d\u043d\u044f"],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":["\u0411\u0456\u043b\u044c\u0448\u0435 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432 \u0456 \u043c\u043e\u0436\u043b\u0438\u0432\u043e\u0441\u0442\u0435\u0439"],"Create Table":["\u0421\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e"],"Insert a table for sharing data.":["\u0421\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e \u0434\u043b\u044f \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044f \u0434\u0430\u043d\u0438\u0445."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["\u0420\u043e\u0437\u0433\u0440\u0443\u043f\u0443\u0432\u0430\u0442\u0438"],"verb\x04Group":["\u0413\u0440\u0443\u043f\u0443\u0432\u0430\u0442\u0438"],"Separate with commas or the Enter key.":["\u0420\u043e\u0437\u0434\u0456\u043b\u044f\u0439\u0442\u0435 \u043a\u043e\u043c\u0430\u043c\u0438 \u0430\u0431\u043e \u043a\u043b\u0430\u0432\u0456\u0448\u0435\u044e Enter."],"Separate with commas, spaces, or the Enter key.":["\u0420\u043e\u0437\u0434\u0456\u043b\u044f\u0439\u0442\u0435 \u043a\u043e\u043c\u0430\u043c\u0438, \u043f\u0440\u043e\u0431\u0456\u043b\u0430\u043c\u0438 \u0430\u0431\u043e \u043a\u043b\u0430\u0432\u0456\u0448\u0435\u044e Enter."],"Separate multiple classes with spaces.":["\u0420\u043e\u0437\u0434\u0456\u043b\u0456\u0442\u044c \u0434\u0435\u043a\u0456\u043b\u044c\u043a\u0430 \u043a\u043b\u0430\u0441\u0456\u0432 \u043f\u0440\u043e\u0431\u0456\u043b\u0430\u043c\u0438."],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":["\u041d\u0430 \u0436\u0430\u043b\u044c, \u0432\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043e\u0431\u043b\u0430\u0441\u0442\u0456 \u0432\u0456\u0434\u0436\u0435\u0442\u0456\u0432."],"Sorry, you are not allowed to read sidebars.":["\u041d\u0430 \u0436\u0430\u043b\u044c, \u0432\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0447\u0438\u0442\u0430\u0442\u0438 \u043e\u0431\u043b\u0430\u0441\u0442\u0456 \u0432\u0456\u0434\u0436\u0435\u0442\u0456\u0432."],"The sidebar\u2019s ID.":["ID \u043e\u0431\u043b\u0430\u0441\u0442\u0456 \u0432\u0456\u0434\u0436\u0435\u0442\u0456\u0432."],"Displays a set of blocks":["\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0430\u0454 \u043d\u0430\u0431\u0456\u0440 \u0431\u043b\u043e\u043a\u0456\u0432"],"Blocks Area":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432"],"Block rendered as empty.":["\u0411\u043b\u043e\u043a \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0430\u0454\u0442\u044c\u0441\u044f \u044f\u043a \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439."],"Inline Code":["\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u043a\u043e\u0434"],"Note: Autoplaying videos may cause usability issues for some visitors.":["\u0417\u0430\u043c\u0456\u0442\u043a\u0430: \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0435 \u0432\u0456\u0434\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u0432\u0456\u0434\u0435\u043e \u043c\u043e\u0436\u0435 \u0432\u0438\u043a\u043b\u0438\u043a\u0430\u0442\u0438 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438 \u0437 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f\u043c \u0443 \u0434\u0435\u044f\u043a\u0438\u0445 \u0432\u0456\u0434\u0432\u0456\u0434\u0443\u0432\u0430\u0447\u0456\u0432."],"Footer section":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u0456\u0434\u0432\u0430\u043b\u0443"],"Header section":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0443"],"Sorting and Filtering":["\u0421\u043e\u0440\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0456 \u0444\u0456\u043b\u044c\u0442\u0440\u0430\u0446\u0456\u044f"],"Post Meta Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u0438\u0445 \u0437\u0430\u043f\u0438\u0441\u0443"],"Post Content":["\u0412\u043c\u0456\u0441\u0442 \u0437\u0430\u043f\u0438\u0441\u0443"],"Post Content Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u043c\u0456\u0441\u0442\u0443 \u0437\u0430\u043f\u0438\u0441\u0443"],"Percentage width":["\u0428\u0438\u0440\u0438\u043d\u0430 \u0443 \u0432\u0456\u0434\u0441\u043e\u0442\u043a\u0430\u0445"],"Column Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432"],"Note: Autoplaying audio may cause usability issues for some visitors.":["\u0417\u0430\u043c\u0456\u0442\u043a\u0430: \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0435 \u0432\u0456\u0434\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u0437\u0432\u0443\u043a\u0443 \u043c\u043e\u0436\u0435 \u0432\u0438\u043a\u043b\u0438\u043a\u0430\u0442\u0438 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438 \u0437 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f\u043c \u0443 \u0434\u0435\u044f\u043a\u0438\u0445 \u0432\u0456\u0434\u0432\u0456\u0434\u0443\u0432\u0430\u0447\u0456\u0432."],"Block area updated.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u0430."],"Block area scheduled.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432 \u0437\u0430\u043f\u043b\u0430\u043d\u043e\u0432\u0430\u043d\u0430 \u0434\u043e \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457."],"Block area published.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432 \u043e\u043f\u0443\u0431\u043b\u0456\u043a\u043e\u0432\u0430\u043d\u0430."],"Block areas list":["\u0421\u043f\u0438\u0441\u043e\u043a \u043e\u0431\u043b\u0430\u0441\u0442\u0435\u0439 \u0431\u043b\u043e\u043a\u0456\u0432"],"Block areas list navigation":["\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u044f \u043f\u043e \u0441\u043f\u0438\u0441\u043a\u0443 \u043e\u0431\u043b\u0430\u0441\u0442\u0435\u0439 \u0431\u043b\u043e\u043a\u0456\u0432"],"Filter block areas list":["\u0412\u0456\u0434\u0444\u0456\u043b\u044c\u0442\u0440\u0443\u0432\u0430\u0442\u0438 \u0441\u043f\u0438\u0441\u043e\u043a \u043e\u0431\u043b\u0430\u0441\u0442\u0435\u0439 \u0431\u043b\u043e\u043a\u0456\u0432"],"No block area found.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e."],"Search Block Areas":["\u041f\u043e\u0448\u0443\u043a \u043e\u0431\u043b\u0430\u0441\u0442\u0435\u0439 \u0431\u043b\u043e\u043a\u0456\u0432"],"All Block Areas":["\u0412\u0441\u0456 \u043e\u0431\u043b\u0430\u0441\u0442\u0456 \u0431\u043b\u043e\u043a\u0456\u0432"],"View Block Area":["\u041f\u043e\u0434\u0438\u0432\u0438\u0442\u0438\u0441\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432"],"Edit Block Area":["\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432"],"New Block Area":["\u041d\u043e\u0432\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432"],"Add New Block Area":["\u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0443 \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432"],"admin menu\x04Block Areas":["\u041e\u0431\u043b\u0430\u0441\u0442\u0456 \u0431\u043b\u043e\u043a\u0456\u0432"],"post type singular name\x04Block Area (Experimental)":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432 (\u0435\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0430)"],"post type general name\x04Block Area (Experimental)":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432 (\u0435\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0430)"],"Experimental custom post type that will store block areas referenced by themes.":["\u0415\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439 \u0442\u0438\u043f \u0437\u0430\u043f\u0438\u0441\u0443, \u044f\u043a\u0438\u0439 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0454 \u043e\u0431\u043b\u0430\u0441\u0442\u0456 \u0431\u043b\u043e\u043a\u0456\u0432, \u043d\u0430 \u044f\u043a\u0456 \u043f\u043e\u0441\u0438\u043b\u0430\u044e\u0442\u044c\u0441\u044f \u0442\u0435\u043c\u0438."],"Widgets screen content":["\u0412\u043c\u0456\u0441\u0442 \u0435\u043a\u0440\u0430\u043d\u0443 \u0432\u0456\u0434\u0436\u0435\u0442\u0456\u0432"],"Widgets advanced settings":["\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u0456 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0456\u0434\u0436\u0435\u0442\u0456\u0432"],"(experimental)":["(\u0435\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439)"],"Block Areas":["\u041e\u0431\u043b\u0430\u0441\u0442\u0456 \u0411\u043b\u043e\u043a\u0443"],"Widgets screen top bar":["\u0412\u0435\u0440\u0445\u043d\u044f \u043f\u0430\u043d\u0435\u043b\u044c \u0435\u043a\u0440\u0430\u043d\u0443 \u0432\u0456\u0434\u0436\u0435\u0442\u0456\u0432"],"This color combination may be hard for people to read.":["\u0426\u0435 \u043f\u043e\u0454\u0434\u043d\u0430\u043d\u043d\u044f \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0432\u0430\u0436\u043a\u0438\u043c \u0434\u043b\u044f \u0447\u0438\u0442\u0430\u043d\u043d\u044f \u043b\u044e\u0434\u044c\u043c\u0438."],"There is no poster image currently selected":["\u0412 \u0434\u0430\u043d\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u043f\u043e\u0441\u0442\u0435\u0440\u0430 \u043d\u0435 \u0432\u0438\u0431\u0440\u0430\u043d\u043e"],"The current poster image url is %s":["\u041f\u043e\u0442\u043e\u0447\u043d\u0438\u0439 URL \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u043f\u043e\u0441\u0442\u0435\u0440\u0430 %s"],section:["\u0440\u043e\u0437\u0434\u0456\u043b"],row:["\u0440\u044f\u0434\u043e\u043a"],wrapper:["\u043e\u0431\u0433\u043e\u0440\u0442\u043a\u0430"],container:["\u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440"],"A block that groups other blocks.":["\u0411\u043b\u043e\u043a, \u044f\u043a\u0438\u0439 \u0433\u0440\u0443\u043f\u0443\u0454 \u0456\u043d\u0448\u0456 \u0431\u043b\u043e\u043a\u0438."],Group:["\u0413\u0440\u0443\u043f\u0430"],"Crop image to fill entire column":["\u041e\u0431\u0440\u0456\u0437\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u0432\u043d\u0435\u043d\u043d\u044f \u0432\u0441\u044c\u043e\u0433\u043e \u0441\u0442\u043e\u0432\u043f\u0446\u044f"],"Play inline":["\u041f\u0440\u043e\u0433\u0440\u0430\u0442\u0438 \u0432\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0432\u043c\u0456\u0441\u0442"],"Leave empty if the image is purely decorative.":["\u0417\u0430\u043b\u0438\u0448\u0438\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u043c, \u044f\u043a\u0449\u043e \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0454 \u0441\u0443\u0442\u043e \u0434\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u0438\u043c."],"Describe the purpose of the image":["\u041e\u043f\u0438\u0448\u0456\u0442\u044c \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],"Add a block":["\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u0431\u043b\u043e\u043a"],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":["\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u043d\u0438\u0437\u0443"],"Block vertical alignment setting\x04Vertically Align Middle":["\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0438"],"Replace Image":["\u0417\u0430\u043c\u0456\u043d\u0456\u0442\u044c \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],"Block vertical alignment setting\x04Vertically Align Top":["\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u0432\u0435\u0440\u0445\u0443"],"Display a legacy widget.":["\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u0437\u0430\u0441\u0442\u0430\u0440\u0456\u043b\u0438\u0439 \u0432\u0456\u0434\u0436\u0435\u0442."],"Legacy Widget (Experimental)":["\u0417\u0430\u0441\u0442\u0430\u0440\u0456\u043b\u0438\u0439 \u0432\u0456\u0434\u0436\u0435\u0442 (\u0415\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0435)"],"Change widget":["\u0417\u043c\u0430\u043d\u0456\u0442\u044c \u0432\u0456\u0434\u0436\u0435\u0442"],"Legacy Widget":["\u0417\u0430\u0441\u0442\u0430\u0440\u0456\u043b\u0438\u0439 \u0432\u0456\u0434\u0436\u0435\u0442"],"You don't have permissions to use widgets on this site.":["\u0423 \u0432\u0430\u0441 \u043d\u0435\u043c\u0430\u0454 \u043f\u0440\u0430\u0432 \u043d\u0430 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f \u0432\u0456\u0434\u0436\u0435\u0442\u0456\u0432 \u043d\u0430 \u0446\u044c\u043e\u043c\u0443 \u0441\u0430\u0439\u0442\u0456."],"Select a legacy widget to display:":["\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0437\u0430\u0441\u0442\u0430\u0440\u0456\u043b\u0438\u0439 \u0432\u0456\u0434\u0436\u0435\u0442 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f:"],"There are no widgets available.":["\u041d\u0435\u043c\u0430\u0454 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0438\u0445 \u0432\u0456\u0434\u0436\u0435\u0442\u0456\u0432."],"Change block type or style":["\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0442\u0438\u043f \u0431\u043b\u043e\u043a\u0443 \u0430\u0431\u043e \u0441\u0442\u0438\u043b\u044c"],"keyboard key\x04Space":["\u041f\u0440\u043e\u0431\u0456\u043b"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":[],"Search Terms":["\u0423\u043c\u043e\u0432\u0438 \u043f\u043e\u0448\u0443\u043a\u0443"],"Exit the Editor":["\u0412\u0438\u0439\u0442\u0438 \u0437 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0443"],"Block Manager":["\u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u0431\u043b\u043e\u043a\u0456\u0432"],"Class name of the widget.":["\u0406\u043c'\u044f \u043a\u043b\u0430\u0441\u0443 \u0432\u0456\u0434\u0436\u0435\u0442\u0430."],"Sorry, you are not allowed to access widgets on this site.":["\u041d\u0430 \u0436\u0430\u043b\u044c, \u0443 \u0432\u0430\u0441 \u043d\u0435\u043c\u0430\u0454 \u0434\u043e\u0441\u0442\u0443\u043f\u0443 \u0434\u043e \u0432\u0456\u0434\u0436\u0435\u0442\u0456\u0432 \u043d\u0430 \u0446\u044c\u043e\u043c\u0443 \u0441\u0430\u0439\u0442\u0456."],"Widgets (beta)":["\u0412\u0456\u0434\u0436\u0435\u0442\u0438 (\u0431\u0435\u0442\u0430-\u0432\u0435\u0440\u0441\u0456\u044f)"],link:["\u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"Embedded content from %s can't be previewed in the editor.":["\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0432\u043c\u0456\u0441\u0442 \u0432\u0456\u0434 %s \u043d\u0435 \u043c\u043e\u0436\u043d\u0430 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u0443\u0442\u0438 \u0432 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0456."],"Custom Color":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u043a\u043e\u043b\u044c\u043e\u0440\u0443"],"Prompt visitors to take action with a button-style link.":["\u041f\u0456\u0434\u043a\u0430\u0436\u0456\u0442\u044c \u0432\u0456\u0434\u0432\u0456\u0434\u0443\u0432\u0430\u0447\u0430\u043c \u0434\u0456\u044e \u0437 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f\u043c \u043d\u0430 \u0441\u0442\u0438\u043b\u044c \u043a\u043d\u043e\u043f\u043a\u0438."],"Stick to the top of the blog":["\u041f\u0440\u0438\u043b\u0456\u043f\u0438\u0442\u0438 \u0434\u043e \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u0457 \u0447\u0430\u0441\u0442\u0438\u043d\u0438 \u0431\u043b\u043e\u0433\u0443"],"Read about permalinks":["\u0427\u0438\u0442\u0430\u0439\u0442\u0435 \u043f\u0440\u043e \u043f\u043e\u0441\u0442\u0456\u0439\u043d\u0456 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"The last part of the URL.":[],"URL Slug":["\u0427\u0430\u0441\u0442\u0438\u043d\u0430 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"A cloud of your most used tags.":["\u0425\u043c\u0430\u0440\u0430 \u0447\u0430\u0441\u0442\u043e \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u043d\u0438\u0445 \u043f\u043e\u0437\u043d\u0430\u0447\u043e\u043a."],"Tag Cloud":["\u0425\u043c\u0430\u0440\u0438\u043d\u043a\u0430 \u043f\u043e\u0437\u043d\u0430\u0447\u043e\u043a"],Taxonomy:["\u0422\u0430\u043a\u0441\u043e\u043d\u043e\u043c\u0456\u0457"],"Tag Cloud Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0445\u043c\u0430\u0440\u0438 \u0442\u0435\u0433\u0456\u0432"],"- Select -":["- \u0412\u0438\u0431\u0440\u0430\u0442\u0438 -"],Default:["\u0417\u0430 \u0437\u0430\u043c\u043e\u0432\u0447\u0443\u0432\u0430\u043d\u043d\u044f\u043c"],find:["\u0437\u043d\u0430\u0439\u0442\u0438"],"Help visitors find your content.":["\u0414\u043e\u043f\u043e\u043c\u043e\u0436\u0456\u0442\u044c \u0432\u0456\u0434\u0432\u0456\u0434\u0443\u0432\u0430\u0447\u0430\u043c \u0437\u043d\u0430\u0439\u0442\u0438 \u0432\u0430\u0448 \u0432\u043c\u0456\u0441\u0442."],Search:["\u041f\u043e\u0448\u0443\u043a"],"Add button text\u2026":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0442\u0435\u043a\u0441\u0442 \u043a\u043d\u043e\u043f\u043a\u0438\u2026"],"Button text":["\u0422\u0435\u043a\u0441\u0442 \u043a\u043d\u043e\u043f\u043a\u0438"],"Optional placeholder\u2026":["\u041d\u0435\u043e\u0431\u043e\u0432'\u044f\u0437\u043a\u043e\u0432\u0438\u0439 \u0437\u0430\u043f\u043e\u0432\u043d\u044e\u0432\u0430\u0447\u2026"],"Optional placeholder text":["\u041e\u043f\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442 \u0437\u0430\u043f\u043e\u0432\u043d\u044e\u0432\u0430\u0447\u0430"],"Add label\u2026":["\u0414\u043e\u0434\u0430\u0442\u0438 \u043c\u0456\u0442\u043a\u0443\u2026"],"Label text":["\u0422\u0435\u043a\u0441\u0442 \u043f\u0456\u0434\u043f\u0438\u0441\u0443"],"image %1$d of %2$d in gallery":["\u043c\u0430\u043b\u044e\u043d\u043e\u043a %1$d \u0437 %2$d \u0443 \u0433\u0430\u043b\u0435\u0440\u0435\u0457"],archive:["\u0430\u0440\u0445\u0456\u0432"],posts:["\u0437\u0430\u043f\u0438\u0441\u0438"],"A calendar of your site\u2019s posts.":["\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u044c \u0432\u0430\u0448\u043e\u0433\u043e \u0441\u0430\u0439\u0442\u0443."],Calendar:["\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440"],by:["\u0432\u0456\u0434"],"An error has occurred, which probably means the feed is down. Try again later.":["\u0421\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430 \u0426\u0435 \u043c\u043e\u0436\u0435 \u043e\u0437\u043d\u0430\u0447\u0430\u0442\u0438, \u0449\u043e \u043a\u0430\u043d\u0430\u043b \u043d\u0435 \u043f\u0440\u0430\u0446\u044e\u0454. \u0421\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0449\u0435 \u0440\u0430\u0437 \u043f\u0456\u0437\u043d\u0456\u0448\u0435."],"RSS Error:":["\u041f\u043e\u043c\u0438\u043b\u043a\u0430 RSS:"],"block style\x04Default":["\u0411\u0435\u0437 \u043e\u0431\u0443\u043c\u043e\u0432\u043b\u0435\u043d\u043d\u044f"],"Fullscreen mode deactivated":["\u041f\u043e\u0432\u043d\u043e\u0435\u043a\u0440\u0430\u043d\u043d\u0438\u0439 \u0440\u0435\u0436\u0438\u043c \u0432\u0438\u043c\u043a\u043d\u0435\u043d\u043e"],"Fullscreen mode activated":["\u041f\u043e\u0432\u043d\u043e\u0435\u043a\u0440\u0430\u043d\u043d\u0438\u0439 \u0440\u0435\u0436\u0438\u043c \u0430\u043a\u0442\u0438\u0432\u043e\u0432\u0430\u043d\u043e"],"Spotlight mode deactivated":["\u0420\u0435\u0436\u0438\u043c \u043e\u0441\u0432\u0456\u0442\u043b\u0435\u043d\u043d\u044f \u0432\u0438\u043c\u043a\u043d\u0435\u043d\u043e"],"Spotlight mode activated":["\u0420\u0435\u0436\u0438\u043c \u043e\u0441\u0432\u0456\u0442\u043b\u0435\u043d\u043d\u044f \u0432\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"],"Top toolbar deactivated":["\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0422\u0443\u043b\u0431\u0430\u0440 \u0432\u0438\u043c\u043a\u043d\u0435\u043d\u043e"],"Top toolbar activated":["\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0422\u0443\u043b\u0431\u0430\u0440 \u0432\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e"],Back:["\u0417\u0430\u0434\u043d\u0456\u0439"],"Feature activated":["\u0424\u0443\u043d\u043a\u0446\u0456\u044f \u0432\u0438\u043c\u043a\u043d\u0435\u043d\u0430"],"Feature deactivated":["\u0424\u0443\u043d\u043a\u0446\u0456\u044f \u0432\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u0430"],"Vertical Pos.":["\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0430 \u043f\u043e\u0437."],"Horizontal Pos.":["\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0435 \u043f\u043e\u0437."],feed:["\u043f\u043e\u0442\u0456\u043a"],atom:["atom"],"Display entries from any RSS or Atom feed.":["\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0437 \u0431\u0443\u0434\u044c-\u044f\u043a\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0443 RSS \u0430\u0431\u043e Atom."],RSS:["RSS"],"Max number of words in excerpt":["\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0430 \u043a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0441\u043b\u0456\u0432 \u0443 \u0432\u0438\u0442\u044f\u0437\u0456"],"Display excerpt":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0443\u0440\u0438\u0432\u043e\u043a"],"Display date":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0434\u0430\u0442\u0443"],"Display author":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0430\u0432\u0442\u043e\u0440\u0430"],"RSS Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f RSS"],"Edit RSS URL":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 URL RSS"],"Content before this block will be shown in the excerpt on your archives page.":["\u0412\u043c\u0456\u0441\u0442 \u043f\u0435\u0440\u0435\u0434 \u0446\u0438\u043c \u0431\u043b\u043e\u043a\u043e\u043c \u0431\u0443\u0434\u0435 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u0443 \u0432\u0438\u0442\u044f\u0433\u0443\u0432\u0430\u043d\u043d\u0456 \u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456 \u0430\u0440\u0445\u0456\u0432\u0456\u0432."],"Hide the excerpt on the full content page":["\u041f\u0440\u0438\u0445\u043e\u0432\u0430\u0442\u0438 \u0432\u0438\u0442\u044f\u0433 \u043d\u0430 \u043f\u043e\u0432\u043d\u0456\u0439 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456 \u0432\u043c\u0456\u0441\u0442\u0443"],"The excerpt is visible.":["\u0412\u0438\u0442\u044f\u0433 \u0432\u0438\u0434\u043d\u043e."],"The excerpt is hidden.":["\u0412\u0438\u0442\u044f\u0433 \u0441\u0445\u043e\u0432\u0430\u043d\u043e."],"Sorry, this content could not be embedded.":["\u041d\u0430 \u0436\u0430\u043b\u044c, \u0446\u0435\u0439 \u0432\u043c\u0456\u0441\u0442 \u043d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0432\u0431\u0443\u0434\u0443\u0432\u0430\u0442\u0438."],"Embed Amazon Kindle content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Amazon Kindle."],ebook:["\u0435\u043a\u043d\u0438\u0433\u0430"],"Embed Crowdsignal (formerly Polldaddy) content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Crowdsignal (\u0440\u0430\u043d\u0456\u0448\u0435 Polldaddy)."],"Focal Point Picker":["\u0424\u043e\u043a\u0443\u0441\u043d\u0430 \u0432\u0456\u0434\u0441\u0442\u0430\u043d\u044c \u0432\u0438\u0431\u0456\u0440"],Underline:["\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439"],"Attempt Block Recovery":["\u0421\u043f\u0440\u043e\u0431\u0430 \u0432\u0456\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0411\u043b\u043e\u043a\u0443"],"Word count type. Do not translate!\x04words":["\u0441\u043b\u0456\u0432"],"content placeholder\x04Content\u2026":["\u0412\u043c\u0456\u0441\u0442\u2026"],"button label\x04Convert to link":["\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043d\u0430 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"button label\x04Try again":["\u0421\u043f\u0440\u043e\u0431\u0443\u0432\u0430\u0442\u0438 \u0449\u0435 \u0440\u0430\u0437"],"Editor tips":["\u041f\u043e\u0440\u0430\u0434\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430"],"Block (selected)":["\u0411\u043b\u043e\u043a (\u043e\u0431\u0440\u0430\u043d\u043e)"],"Document (selected)":["\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 (\u043e\u0431\u0440\u0430\u043d\u043e)"],"%d word":["%d \u0441\u043b\u043e\u0432\u043e","%d \u0441\u043b\u043e\u0432\u0430","%d \u0441\u043b\u043e\u0432\u043e"],"Top Toolbar":["\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0422\u0443\u043b\u0431\u0430\u0440"],"Link Rel":["\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u0420\u0435\u043b"],"Link CSS Class":["CSS \u043a\u043b\u0430\u0441 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u0421\u0442\u0432\u043e\u0440\u0456\u0442\u044c \u0432\u043c\u0456\u0441\u0442 \u0456 \u0437\u0431\u0435\u0440\u0435\u0436\u0456\u0442\u044c \u0439\u043e\u0433\u043e \u0434\u043b\u044f \u0432\u0430\u0441 \u0442\u0430 \u0456\u043d\u0448\u0438\u0445 \u0443\u0447\u0430\u0441\u043d\u0438\u043a\u0456\u0432 \u0434\u043b\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0433\u043e \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f \u043d\u0430 \u0441\u0432\u043e\u0454\u043c\u0443 \u0441\u0430\u0439\u0442\u0456. \u041e\u043d\u043e\u0432\u0438\u0442\u0438 \u0431\u043b\u043e\u043a, \u0456 \u0437\u043c\u0456\u043d\u0438 \u0437\u0430\u0441\u0442\u043e\u0441\u043e\u0432\u0443\u044e\u0442\u044c\u0441\u044f \u0441\u043a\u0440\u0456\u0437\u044c, \u0434\u0435 \u0432\u043e\u043d\u043e \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0454\u0442\u044c\u0441\u044f."],"To edit the featured image, you need permission to upload media.":["\u0429\u043e\u0431 \u0432\u0456\u0434\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043e\u0431\u0440\u0430\u043d\u0435 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f, \u0432\u0430\u043c \u043f\u043e\u0442\u0440\u0456\u0431\u0435\u043d \u0434\u043e\u0437\u0432\u0456\u043b \u043d\u0430 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u043c\u0435\u0434\u0456\u0430\u0444\u0430\u0439\u043b\u0456\u0432."],"To edit this block, you need permission to upload media.":["\u0429\u043e\u0431 \u0432\u0456\u0434\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0446\u0435\u0439 \u0431\u043b\u043e\u043a, \u0432\u0430\u043c \u043f\u043e\u0442\u0440\u0456\u0431\u0435\u043d \u0434\u043e\u0437\u0432\u0456\u043b \u043d\u0430 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u043c\u0435\u0434\u0456\u0430\u0444\u0430\u0439\u043b\u0456\u0432."],"(selected block)":["(\u0432\u0438\u0431\u0440\u0430\u043d\u0438\u0439 \u0431\u043b\u043e\u043a)"],"Block tools":["\u0411\u043b\u043e\u043a \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438"],Permalink:["\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"This image has an empty alt attribute":["\u0426\u0435 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u043c\u0430\u0454 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0430\u0442\u0440\u0438\u0431\u0443\u0442 alt"],"This image has an empty alt attribute; its file name is %s":["\u0426\u0435 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u043c\u0430\u0454 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0430\u0442\u0440\u0438\u0431\u0443\u0442 alt; \u0446\u0435 \u0456\u043c'\u044f \u0444\u0430\u0439\u043b\u0443 %s"],"Block area reverted to draft.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432 \u043f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0430 \u0432 \u0447\u0435\u0440\u043d\u0435\u0442\u043a\u0438."],"Block area published privately.":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432 \u043e\u043f\u0443\u0431\u043b\u0456\u043a\u043e\u0432\u0430\u043d\u0430 \u044f\u043a \u043e\u0441\u043e\u0431\u0438\u0441\u0442\u0430."],"No block areas found in Trash.":["\u041d\u0435\u043c\u0430\u0454 \u043e\u0431\u043b\u0430\u0441\u0442\u0435\u0439 \u0431\u043b\u043e\u043a\u0456\u0432 \u0432 \u043a\u043e\u0448\u0438\u043a\u0443."],"Block\x04Add New":["\u0414\u043e\u0434\u0430\u0442\u0438"],"add new on admin bar\x04Block Area":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0431\u043b\u043e\u043a\u0456\u0432"],"Link inserted.":["\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u0432\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e."],"Warning: the link has been inserted but may have errors. Please test it.":["\u0423\u0432\u0430\u0433\u0430: \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u0432\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e, \u0430\u043b\u0435 \u043c\u043e\u0436\u0435 \u043c\u0430\u0442\u0438 \u043f\u043e\u043c\u0438\u043b\u043a\u0438. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0432\u0438\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0439\u043e\u0433\u043e."],"%s block selected.":["%s \u0431\u043b\u043e\u043a \u0432\u0438\u0431\u0440\u0430\u043d\u043e.","%s \u0431\u043b\u043e\u043a \u0432\u0438\u0431\u0440\u0430\u043d\u043e.","%s \u0431\u043b\u043e\u043a \u0432\u0438\u0431\u0440\u0430\u043d\u043e."],Thumbnail:["\u041c\u0456\u043d\u0456\u0430\u0442\u044e\u0440\u0438"],"Full Size":["\u041f\u043e\u0432\u043d\u0438\u0439 \u0440\u043e\u0437\u043c\u0456\u0440"],"Link selected.":["\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043e\u0431\u0440\u0430\u043d\u043e."],"Start writing with text or HTML":["\u041f\u043e\u0447\u043d\u0456\u0442\u044c \u043f\u0438\u0441\u0430\u0442\u0438 \u0442\u0435\u043a\u0441\u0442 \u0430\u0431\u043e HTML"],"Type text or HTML":["\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0442\u0435\u043a\u0441\u0442 \u0430\u0431\u043e HTML"],"Block icon":["\u0411\u043b\u043e\u043a \u0437\u043d\u0430\u0447\u043e\u043a"],"Align Text Right":["\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u0442\u0435\u043a\u0441\u0442\u0443 \u043f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e"],"Align Text Center":["\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u0442\u0435\u043a\u0441\u0442\u0443 \u043f\u043e \u0446\u0435\u043d\u0442\u0440\u0443"],"Align Text Left":["\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u0442\u0435\u043a\u0441\u0442\u0443 \u043f\u043e \u043b\u0456\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e"],"Start writing or type / to choose a block":["\u041f\u043e\u0447\u043d\u0456\u0442\u044c \u043f\u0438\u0441\u0430\u0442\u0438 \u0430\u0431\u043e \u0432\u0432\u043e\u0434\u0438\u0442\u0438 / \u0432\u0438\u0431\u0440\u0430\u0442\u0438 \u0431\u043b\u043e\u043a"],"Empty block; start writing or type forward slash to choose a block":["\u041f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0431\u043b\u043e\u043a; \u041f\u043e\u0447\u043d\u0456\u0442\u044c \u043f\u0438\u0441\u0430\u0442\u0438 \u0430\u0431\u043e \u043d\u0430\u0431\u0443\u0432\u0430\u0442\u0438 \u043a\u043e\u0441\u0443 \u0440\u0438\u0441\u043a\u0443, \u0449\u043e\u0431 \u0432\u0438\u0431\u0440\u0430\u0442\u0438 \u0431\u043b\u043e\u043a"],"Paragraph block":["\u0411\u043b\u043e\u043a \u0430\u0431\u0437\u0430\u0446\u0443"],"Page Break":["\u0420\u043e\u0437\u0440\u0438\u0432 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438"],"Stack on mobile":["\u0421\u0442\u0435\u043a\u0443\u0432\u0430\u043d\u043d\u044f \u043d\u0430 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0438\u0439"],Annotation:["\u0410\u043d\u043e\u0442\u0430\u0446\u0456\u044f"],"Drag images, upload new ones or select files from your library.":["\u041f\u0435\u0440\u0435\u0442\u044f\u0433\u043d\u0456\u0442\u044c \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f, \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0442\u0435 \u043d\u043e\u0432\u0456 \u0430\u0431\u043e \u0432\u0438\u0434\u0456\u043b\u0456\u0442\u044c \u0444\u0430\u0439\u043b\u0438 \u0437 \u0432\u0430\u0448\u043e\u0457 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438."],"blocks\x04Most Used":["\u041d\u0430\u0439\u0431\u0456\u043b\u044c\u0448 \u0432\u0436\u0438\u0432\u0430\u043d\u0456"],"imperative verb\x04Resolve":["\u0412\u0438\u0440\u0456\u0448\u0438\u0442\u0438"],"font size name\x04Huge":["\u0412\u0435\u043b\u0438\u0447\u0435\u0437\u043d\u0438\u0439"],"font size name\x04Large":["\u0412\u0435\u043b\u0438\u043a\u0438\u0439"],"font size name\x04Medium":["C\u0435\u0440\u0435\u0434\u043d\u0456\u0439"],"font size name\x04Small":["\u041c\u0435\u043d\u0448\u0438\u0439"],"font size name\x04Normal":["\u041d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u0435"],"keyboard button\x04Enter":["\u0412\u0432\u0435\u0434\u0456\u0442\u044c"],"button label\x04Import":["\u0406\u043c\u043f\u043e\u0440\u0442"],"button label\x04Download":["\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438"],"button label\x04Embed":["\u0412\u0431\u0443\u0434\u0443\u0432\u0430\u0442\u0438"],"block title\x04Embed":["\u0412\u0431\u0443\u0434\u0443\u0432\u0430\u0442\u0438"],"block title\x04Classic":["\u041a\u043b\u0430\u0441\u0438\u0447\u043d\u0438\u0439"],"block style\x04Large":["\u0412\u0435\u043b\u0438\u043a\u0438\u0439"],"%s (opens in a new tab)":["%s (\u0432\u0456\u0434\u043a\u0440\u0438\u0432\u0430\u0454\u0442\u044c\u0441\u044f \u0443 \u043d\u043e\u0432\u0456\u0439 \u0432\u043a\u043b\u0430\u0434\u0446\u0456)"],"Link edited.":["\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u0432\u0456\u0434\u0440\u0435\u0434\u0430\u0433\u043e\u0432\u0430\u043d\u043e."],"Link removed.":["\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043e."],media:["\u043c\u0435\u0434\u0456\u0430"],"Double-check your settings before publishing.":["\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u0441\u0432\u043e\u0457 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u043f\u0435\u0440\u0435\u0434 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0454\u044e."],"Generating preview\u2026":["\u0413\u0435\u043d\u0435\u0440\u0443\u0432\u0430\u043d\u043d\u044f \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434\u0443\u2026"],"Edit or update the image":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f \u0430\u0431\u043e \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],Media:["\u041c\u0435\u0434\u0456\u0430\u0444\u0430\u0439\u043b\u0438"],"Navigate to the nearest toolbar.":["\u041f\u0435\u0440\u0435\u0439\u0434\u0456\u0442\u044c \u043d\u0430 \u043d\u0430\u0439\u0431\u043b\u0438\u0436\u0447\u0443 \u043f\u0430\u043d\u0435\u043b\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432."],"Document tools":["\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443\u0432\u0430\u043d\u043d\u044f"],"Document and block tools":["\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0442\u0430 \u0431\u043b\u043e\u043a\u0443\u0432\u0430\u043d\u043d\u044f"],"Embed a video from your media library or upload a new one.":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0456\u0434\u0435\u043e \u0437 \u041c\u0435\u0434\u0456\u0430\u0444\u0430\u0439\u043b\u0456\u0432 \u0430\u0431\u043e \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0442\u0435 \u043d\u043e\u0432\u0435."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0440\u0448\u0456. \u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0456 \u0444\u043e\u0440\u043c\u0430\u0442\u0438 \u0456\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0443. \u0410\u0431\u043e \u0446\u0438\u0442\u0430\u0442\u0430 \u043b\u0456\u0440\u0438\u043a\u0430 \u043f\u0456\u0441\u043d\u0456."],"Add white space between blocks and customize its height.":["\u0414\u043e\u0434\u0430\u0442\u0438 \u043f\u0440\u043e\u0431\u0456\u043b \u043c\u0456\u0436 \u0431\u043b\u043e\u043a\u0430\u043c\u0438 \u0442\u0430 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 \u0439\u043e\u0433\u043e \u0432\u0438\u0441\u043e\u0442\u0443."],"Insert additional custom elements with a WordPress shortcode.":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u0456 \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0456 \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0438 \u0437\u0430 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u043e\u044e \u043a\u043e\u0440\u043e\u0442\u043a\u043e\u0433\u043e \u043a\u043e\u0434\u0443 WordPress."],"Create a break between ideas or sections with a horizontal separator.":["\u0421\u0442\u0432\u043e\u0440\u0456\u0442\u044c \u043f\u0435\u0440\u0435\u0440\u0432\u0443 \u043c\u0456\u0436 \u0456\u0434\u0435\u044f\u043c\u0438 \u0430\u0431\u043e \u0440\u043e\u0437\u0434\u0456\u043b\u0430\u043c\u0438 \u0437 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u043c \u0441\u0435\u043f\u0430\u0440\u0430\u0442\u043e\u0440\u043e\u043c."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u041d\u0430\u0432\u0435\u0434\u0456\u0442\u044c \u0446\u0438\u0442\u043e\u0432\u0430\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442 \u043d\u0430\u043e\u0447\u043d\u043e\u0433\u043e \u0430\u043a\u0446\u0435\u043d\u0442\u0443. \"\u0426\u0438\u0442\u0443\u044e\u0447\u0438 \u0456\u043d\u0448\u0438\u0445, \u043c\u0438 \u043d\u0430\u0437\u0438\u0432\u0430\u0454\u043c\u043e \u0441\u0435\u0431\u0435\". - \u0425\u0443\u043b\u0456\u043e \u041a\u043e\u0440\u0442\u0430\u0437\u0430\u0440"],"Give special visual emphasis to a quote from your text.":["\u041d\u0430\u0434\u0430\u0439\u0442\u0435 \u043e\u0441\u043e\u0431\u043b\u0438\u0432\u0438\u0439 \u043d\u0430\u0433\u043b\u044f\u0434 \u043d\u0430 \u0446\u0438\u0442\u0430\u0442\u0443 \u0437 \u0442\u0435\u043a\u0441\u0442\u0443."],"Start with the building block of all narrative.":["\u041f\u043e\u0447\u043d\u0456\u0442\u044c \u0437\u0456 \u0441\u043a\u043b\u0430\u0434\u0443 \u0432\u0441\u0456\u0454\u0457 \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u0434\u0456."],"Separate your content into a multi-page experience.":["\u0420\u043e\u0437\u0434\u0456\u043b\u0456\u0442\u044c \u0441\u0432\u0456\u0439 \u0432\u043c\u0456\u0441\u0442 \u043d\u0430 \u0431\u0430\u0433\u0430\u0442\u043e\u0441\u0442\u043e\u0440\u0456\u043d\u043a\u043e\u0432\u0438\u0439 \u0434\u043e\u0441\u0432\u0456\u0434."],"Set media and words side-by-side for a richer layout.":["\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u0456\u0442\u044c \u043c\u0435\u0434\u0456\u0430 \u0442\u0430 \u0441\u043b\u043e\u0432\u0430 \u043f\u043e\u0440\u0443\u0447, \u0449\u043e\u0431 \u043e\u0442\u0440\u0438\u043c\u0430\u0442\u0438 \u0431\u0430\u0433\u0430\u0442\u0448\u0438\u0439 \u043c\u0430\u043a\u0435\u0442."],"Media & Text Settings":["\u041c\u0435\u0434\u0456\u0430 & \u0422\u0435\u043a\u0441\u0442 \u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f"],"Create a bulleted or numbered list.":["\u0421\u0442\u0432\u043e\u0440\u0456\u0442\u044c \u043c\u0430\u0440\u043a\u043e\u0432\u0430\u043d\u0438\u0439 \u0430\u0431\u043e \u043f\u0440\u043e\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a."],"Display a list of your most recent comments.":["\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0441\u043f\u0438\u0441\u043a\u0443 \u043e\u0441\u0442\u0430\u043d\u043d\u0456\u0445 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0456\u0432."],"Insert an image to make a visual statement.":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0434\u043b\u044f \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u0432\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0442\u0432\u0435\u0440\u0434\u0436\u0435\u043d\u043d\u044f."],"Add custom HTML code and preview it as you edit.":["\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u0432\u043b\u0430\u0441\u043d\u0438\u0439 HTML-\u043a\u043e\u0434 \u0456 \u043f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u044c\u043e \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u044c\u0442\u0435 \u0439\u043e\u0433\u043e \u043f\u0456\u0434 \u0447\u0430\u0441 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u0412\u043f\u0440\u043e\u0432\u0430\u0434\u0436\u0443\u0439\u0442\u0435 \u043d\u043e\u0432\u0456 \u0440\u043e\u0437\u0434\u0456\u043b\u0438 \u0442\u0430 \u043e\u0440\u0433\u0430\u043d\u0456\u0437\u0443\u0439\u0442\u0435 \u0432\u043c\u0456\u0441\u0442, \u0449\u043e\u0431 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0442\u0438 \u0432\u0456\u0434\u0432\u0456\u0434\u0443\u0432\u0430\u0447\u0430\u043c (\u0442\u0430 \u043f\u043e\u0448\u0443\u043a\u043e\u0432\u0438\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u043c) \u0437\u0440\u043e\u0437\u0443\u043c\u0456\u0442\u0438 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443 \u0432\u0430\u0448\u043e\u0433\u043e \u0432\u043c\u0456\u0441\u0442\u0443."],"Display multiple images in a rich gallery.":["\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u0438 \u043a\u0456\u043b\u044c\u043a\u0430 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0456\u0439 \u0443 \u0440\u0435\u0436\u0438\u043c\u0456 \u0413\u0430\u043b\u0435\u0440\u0435\u0457."],"Add a link to a downloadable file.":["\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u0438\u0439 \u0444\u0430\u0439\u043b."],"Embed videos, images, tweets, audio, and other content from external sources.":["\u0412\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u0438 \u0432\u0456\u0434\u0435\u043e, \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f, \u0442\u0432\u0456\u0442\u0456\u0432, \u0437\u0432\u0443\u043a \u0442\u0430 \u0456\u043d\u0448\u0438\u0439 \u0432\u043c\u0456\u0441\u0442 \u0456\u0437 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u0456\u0445 \u0434\u0436\u0435\u0440\u0435\u043b."],"Resize for smaller devices":["\u0417\u043c\u0456\u043d\u0430 \u0440\u043e\u0437\u043c\u0456\u0440\u0443 \u0434\u043b\u044f \u043c\u0435\u043d\u0448\u0438\u0445 \u043f\u0440\u0438\u0441\u0442\u0440\u043e\u0457\u0432"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u0426\u044f \u0432\u043a\u043b\u0430\u0434\u043a\u0430 \u043c\u043e\u0436\u0435 \u043d\u0435 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u0441\u043f\u0456\u0432\u0432\u0456\u0434\u043d\u043e\u0448\u0435\u043d\u043d\u044f \u0441\u0442\u043e\u0440\u0456\u043d, \u043a\u043e\u043b\u0438 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u0437\u043c\u0456\u043d\u044e\u0454\u0442\u044c\u0441\u044f."],"This embed will preserve its aspect ratio when the browser is resized.":["\u0426\u044f \u0432\u043a\u043b\u0430\u0434\u043a\u0430 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438\u043c\u0435 \u0441\u043f\u0456\u0432\u0432\u0456\u0434\u043d\u043e\u0448\u0435\u043d\u043d\u044f \u0441\u0442\u043e\u0440\u0456\u043d, \u043a\u043e\u043b\u0438 \u0437\u043c\u0456\u043d\u044e\u0454\u0442\u044c\u0441\u044f \u0440\u043e\u0437\u043c\u0456\u0440 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430."],"Embed an Animoto video.":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0456\u0434\u0435\u043e\u0440\u043e\u043b\u0438\u043a Animoto."],"Embed a Vimeo video.":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0456\u0434\u0435\u043e Vimeo."],"Embed Flickr content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Flickr."],"Embed Spotify content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Spotify."],"Embed SoundCloud content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 SoundCloud."],"Embed a WordPress post.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f WordPress."],"Embed an Instagram post.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f \u0432 Instagram."],"Embed a Facebook post.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f \u0432 Facebook."],"Embed a WordPress.tv video.":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0456\u0434\u0435\u043e WordPress.tv."],"Embed a VideoPress video.":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0456\u0434\u0435\u043e\u0437\u0430\u043f\u0438\u0441 VideoPress."],"Embed a Tumblr post.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f Tumblr."],"Embed a TED video.":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 TED \u0432\u0456\u0434\u0435\u043e."],"Embed Speaker Deck content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 \u043a\u043e\u043b\u043e\u0434\u043a\u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0438."],"Embed a YouTube video.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e YouTube."],"Embed SmugMug content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 SmugMug."],"Embed Slideshare content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Slideshare."],"Embed Scribd content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Scribd."],"Embed Screencast content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Screencast."],"Embed ReverbNation content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 ReverbNation."],"Embed a Reddit thread.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0433\u0456\u043b\u043a\u0443 Reddit."],"Embed Polldaddy content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Polldaddy."],"Embed Mixcloud content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Mixcloud."],"Embed a tweet.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u0432\u0456\u0442."],"Embed Meetup.com content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Meetup.com."],"Embed Kickstarter content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Kickstarter."],"Embed Issuu content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Issuu."],"Embed Imgur content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Imgur."],"Embed Hulu content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Hulu."],"Embed a Dailymotion video.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e Dailymotion."],"Embed CollegeHumor content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 CollegeHumor \u0432\u043c\u0456\u0441\u0442."],"Embed Cloudup content.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442 Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0430\u0431\u043e \u0432\u0456\u0434\u0435\u043e \u0437 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u0438\u043c \u043d\u0430\u043a\u043b\u0430\u0434\u0430\u043d\u043d\u044f\u043c - \u0447\u0443\u0434\u043e\u0432\u043e \u043f\u0456\u0434\u0445\u043e\u0434\u0438\u0442\u044c \u0434\u043b\u044f \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0456\u0432."],"Display code snippets that respect your spacing and tabs.":["\u0424\u0440\u0430\u0433\u043c\u0435\u043d\u0442\u0438 \u043a\u043e\u0434\u0443 \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f, \u0449\u043e \u0432\u0440\u0430\u0445\u043e\u0432\u0443\u044e\u0442\u044c \u0432\u0430\u0448\u0456 \u0456\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0438 \u0442\u0430 \u0432\u043a\u043b\u0430\u0434\u043a\u0438."],"Use the classic WordPress editor.":["\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u043a\u043b\u0430\u0441\u0438\u0447\u043d\u0438\u0439 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 WordPress."],"Display a list of all categories.":["\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u0438 \u0441\u043f\u0438\u0441\u043e\u043a \u0443\u0441\u0456\u0445 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0439."],"Embed a simple audio player.":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0430\u0443\u0434\u0456\u043e\u043f\u0440\u043e\u0433\u0440\u0430\u0432\u0430\u0447."],"noun\x04View":["\u041f\u0435\u0440\u0435\u0433\u043b\u044f\u0434"],"editor button\x04Left to right":["\u0417\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e"],"Save as Pending":["\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u044f\u043a \u0432\u0438\u0441\u044f\u0447\u0438\u0439"],"%s address":["%s \u0430\u0434\u0440\u0435\u0441\u0430"],"Paste or type URL":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0430\u0431\u043e \u0432\u0432\u0435\u0441\u0442\u0438 URL-\u0430\u0434\u0440\u0435\u0441\u0443"],"Insert from URL":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 URL \u0444\u0430\u0439\u043b\u0443"],"Block Navigator":[],Styles:["\u0421\u0442\u0438\u043b\u0456"],"Advanced Panels":["\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u0456 \u043f\u0430\u043d\u0435\u043b\u0456"],"Document Panels":["\u041f\u0430\u043d\u0435\u043b\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0456\u0432"],General:["\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0435"],"Open the block navigation menu.":["\u0412\u0456\u0434\u043a\u0440\u0438\u0439\u0442\u0435 \u043c\u0435\u043d\u044e \u0431\u043b\u043e\u043a\u0443\u0432\u0430\u043d\u043d\u044f \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0457."],"Work without distraction":["\u0420\u043e\u0431\u043e\u0442\u0430 \u0431\u0435\u0437 \u0432\u0456\u0434\u0432\u043e\u043b\u0456\u043a\u0430\u043d\u043d\u044f"],"Focus on one block at a time":["\u0417\u043e\u0441\u0435\u0440\u0435\u0434\u044c\u0442\u0435\u0441\u044f \u043d\u0430 \u043e\u0434\u043d\u043e\u043c\u0443 \u0431\u043b\u043e\u0446\u0456 \u0437\u0430 \u043e\u0434\u0438\u043d \u0440\u0430\u0437"],"Access all block and document tools in a single place":["\u0414\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0432\u0441\u0456\u0445 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432 \u0431\u043b\u043e\u043a\u0443\u0432\u0430\u043d\u043d\u044f \u0442\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0456\u0457 \u0432 \u043e\u0434\u043d\u043e\u043c\u0443 \u043c\u0456\u0441\u0446\u0456"],Options:["\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438"],"(opens in a new tab)":["(\u0432\u0456\u0434\u043a\u0440\u0438\u0432\u0430\u0454\u0442\u044c\u0441\u044f \u0443 \u043d\u043e\u0432\u0456\u0439 \u0432\u043a\u043b\u0430\u0434\u0446\u0456)"],Minutes:["\u0425\u0432\u0438\u043b\u0438\u043d\u0438"],Hours:["\u0413\u043e\u0434\u0438\u043d\u0438"],Time:["\u0427\u0430\u0441"],Year:["\u0420\u0456\u043a"],Day:["\u0414\u0435\u043d\u044c"],December:["\u0413\u0440\u0443\u0434\u0435\u043d\u044c"],November:["\u041b\u0438\u0441\u0442\u043e\u043f\u0430\u0434"],October:["\u0416\u043e\u0432\u0442\u0435\u043d\u044c"],September:["\u0412\u0435\u0440\u0435\u0441\u0435\u043d\u044c"],August:["\u0421\u0435\u0440\u043f\u0435\u043d\u044c"],July:["\u041b\u0438\u043f\u0435\u043d\u044c"],June:["\u0427\u0435\u0440\u0432\u0435\u043d\u044c"],May:["\u0422\u0440\u0430\u0432\u0435\u043d\u044c"],April:["\u041a\u0432\u0456\u0442\u0435\u043d\u044c"],March:["\u0411\u0435\u0440\u0435\u0437\u0435\u043d\u044c"],February:["\u041b\u044e\u0442\u0438\u0439"],January:["\u0421\u0456\u0447\u0435\u043d\u044c"],Month:["\u041c\u0456\u0441\u044f\u0446\u044c"],Date:["\u0414\u0430\u0442\u0430"],"Go to the first (home) or last (end) day of a week.":["\u041f\u0435\u0440\u0435\u0439\u0434\u0456\u0442\u044c \u0434\u043e \u043f\u0435\u0440\u0448\u043e\u0433\u043e (\u0434\u043e\u043c\u0430\u0448\u043d\u044c\u043e\u0433\u043e) \u0430\u0431\u043e \u043e\u0441\u0442\u0430\u043d\u043d\u044c\u043e\u0433\u043e (\u043a\u0456\u043d\u0446\u0435\u0432\u043e\u0433\u043e) \u0434\u043d\u044f \u0442\u0438\u0436\u043d\u044f."],"Home/End":["\u0413\u043e\u043b\u043e\u0432\u043d\u0430 / \u043a\u0456\u043d\u0435\u0446\u044c"],"Home and End":["\u0413\u043e\u043b\u043e\u0432\u043d\u0430 \u0442\u0430 \u043a\u0456\u043d\u0435\u0446\u044c"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u043d\u0430\u0437\u0430\u0434 (PgUp) \u0430\u0431\u043e \u0432\u043f\u0435\u0440\u0435\u0434 (PgDn) \u043d\u0430 \u043e\u0434\u0438\u043d \u043c\u0456\u0441\u044f\u0446\u044c."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up \u0456 Page Down"],"Move backward (up) or forward (down) by one week.":["\u0420\u0443\u0445\u0430\u0439\u0442\u0435\u0441\u044c \u043d\u0430\u0437\u0430\u0434 (\u0432\u0433\u043e\u0440\u0443) \u0430\u0431\u043e \u0432\u043f\u0435\u0440\u0435\u0434 (\u0432\u043d\u0438\u0437) \u043d\u0430 \u043e\u0434\u0438\u043d \u0442\u0438\u0436\u0434\u0435\u043d\u044c."],"Up and Down Arrows":["\u0421\u0442\u0440\u0456\u043b\u043a\u0438 \u0412\u0433\u043e\u0440\u0443 \u0442\u0430 \u0412\u043d\u0438\u0437"],"Move backward (left) or forward (right) by one day.":["\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u043d\u0430\u0437\u0430\u0434 (\u0432\u043f\u0440\u0430\u0432\u043e) \u0430\u0431\u043e \u0432\u043f\u0435\u0440\u0435\u0434 (\u0432\u043f\u0440\u0430\u0432\u043e) \u043d\u0430 \u043e\u0434\u0438\u043d \u0434\u0435\u043d\u044c."],"Left and Right Arrows":["\u0421\u0442\u0440\u0456\u043b\u043a\u0438 \u0412\u043b\u0456\u0432\u043e \u0442\u0430 \u0412\u043f\u0440\u0430\u0432\u043e"],"Select the date in focus.":["\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0434\u0430\u0442\u0443 \u0432 \u0444\u043e\u043a\u0443\u0441\u0456."],"Navigating with a keyboard":["\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u044f \u0437\u0430 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u043e\u044e \u043a\u043b\u0430\u0432\u0456\u0430\u0442\u0443\u0440\u0438"],"Click the desired day to select it.":["\u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0438\u0439 \u0434\u0435\u043d\u044c, \u0449\u043e\u0431 \u0432\u0438\u0431\u0440\u0430\u0442\u0438 \u0439\u043e\u0433\u043e."],"Click the right or left arrows to select other months in the past or the future.":["\u041a\u043b\u0430\u0446\u043d\u0456\u0442\u044c \u0441\u0442\u0440\u0456\u043b\u043a\u0438 \u0432\u043f\u0440\u0430\u0432\u043e \u0430\u0431\u043e \u0432\u043b\u0456\u0432\u043e, \u0449\u043e\u0431 \u0432\u0438\u0431\u0440\u0430\u0442\u0438 \u0456\u043d\u0448\u0456 \u043c\u0456\u0441\u044f\u0446\u0456 \u043c\u0438\u043d\u0443\u043b\u043e\u0433\u043e \u0430\u0431\u043e \u043c\u0430\u0439\u0431\u0443\u0442\u043d\u044c\u043e\u0433\u043e."],"Click to Select":["\u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c, \u0449\u043e\u0431 \u0432\u0438\u0431\u0440\u0430\u0442\u0438"],"Calendar Help":["\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440 \u0434\u043e\u0432\u0456\u0434\u043a\u0438"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u043a\u043b\u0430\u0432\u0456\u0448\u0456 \u0437\u0456 \u0441\u0442\u0440\u0456\u043b\u043a\u0430\u043c\u0438, \u0449\u043e\u0431 \u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u0439 \u043a\u043e\u043b\u0456\u0440. \u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0456\u0442\u044c\u0441\u044f \u0432\u0433\u043e\u0440\u0443, \u0449\u043e\u0431 \u043f\u043e\u043c'\u044f\u043a\u0448\u0438\u0442\u0438 \u043a\u043e\u043b\u0456\u0440, \u0430\u0436 \u0434\u043e \u0437\u0430\u0442\u0435\u043c\u043d\u0435\u043d\u043d\u044f, \u043b\u0456\u0432\u043e\u0440\u0443\u0447, \u0449\u043e\u0431 \u0437\u043c\u0435\u043d\u0448\u0438\u0442\u0438 \u043d\u0430\u0441\u0438\u0447\u0435\u043d\u0456\u0441\u0442\u044c, \u0456 \u0432\u043f\u0440\u0430\u0432\u043e, \u0449\u043e\u0431 \u0437\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u043d\u0430\u0441\u0438\u0447\u0435\u043d\u0456\u0441\u0442\u044c."],"Choose a shade":["\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0442\u0456\u043d\u044c"],"Change color format":["\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442 \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432"],"Color value in HSL":["\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u043a\u043e\u043b\u044c\u043e\u0440\u0443 \u0432 HSL"],"Color value in RGB":["\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u043a\u043e\u043b\u044c\u043e\u0440\u0443 \u0432 RGB"],"Color value in hexadecimal":["\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u043a\u043e\u043b\u044c\u043e\u0440\u0443 \u0443 hexadecimal"],"RGB mode active":["\u0420\u0435\u0436\u0438\u043c RGB \u0430\u043a\u0442\u0438\u0432\u043d\u0438\u0439"],"Hex color mode active":["\u0420\u0435\u0436\u0438\u043c Hex \u043a\u043e\u043b\u044c\u043e\u0440\u0443 \u0430\u043a\u0442\u0438\u0432\u043d\u0438\u0439"],"Hue/saturation/lightness mode active":["\u0420\u0435\u0436\u0438\u043c \u0432\u0456\u0434\u0442\u0456\u043d\u043a\u0443 / \u043d\u0430\u0441\u0438\u0447\u0435\u043d\u043d\u044f / \u043b\u0435\u0433\u043a\u0456\u0441\u0442\u044c \u0430\u043a\u0442\u0438\u0432\u043d\u0438\u0439"],"Move the arrow left or right to change hue.":["\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0456\u0442\u044c \u0441\u0442\u0440\u0456\u043b\u043a\u0443 \u0432\u043b\u0456\u0432\u043e \u0430\u0431\u043e \u0432\u043f\u0440\u0430\u0432\u043e, \u0449\u043e\u0431 \u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0456\u0434\u0442\u0456\u043d\u043e\u043a."],"Hue value in degrees, from 0 to 359.":["\u0412\u0456\u0434\u0442\u0456\u043d\u043e\u043a \u0432 \u0433\u0440\u0430\u0434\u0443\u0441\u0430\u0445, \u0432\u0456\u0434 0 \u0434\u043e 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0410\u043b\u044c\u0444\u0430 \u0432\u0456\u0434 0 (\u043f\u0440\u043e\u0437\u043e\u0440\u0438\u0439) \u0434\u043e 1 (\u043f\u043e\u0432\u043d\u0456\u0441\u0442\u044e \u043d\u0435\u043f\u0440\u043e\u0437\u043e\u0440\u0438\u0439)."],Stripes:["\u0421\u043c\u0443\u0436\u043a\u0438"],"Your site doesn\u2019t include support for this block.":["\u0412\u0430\u0448 \u0441\u0430\u0439\u0442 \u043d\u0435 \u0432\u043a\u043b\u044e\u0447\u0430\u0454 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u043a\u0443 \u0446\u044c\u043e\u0433\u043e \u0431\u043b\u043e\u043a\u0443."],"Unrecognized Block":["\u041d\u0435\u0440\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u043d\u0438\u0439 \u0431\u043b\u043e\u043a"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\u0412\u0430\u0448 \u0441\u0430\u0439\u0442 \u043d\u0435 \u043c\u0456\u0441\u0442\u0438\u0442\u044c \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u043a\u0443 \"%s\" \u0431\u043b\u043e\u043a\u0443. \u0412\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u043b\u0438\u0448\u0438\u0442\u0438 \u0446\u0435\u0439 \u0431\u043b\u043e\u043a \u043d\u0435\u0434\u043e\u0442\u043e\u0440\u043a\u0430\u043d\u0438\u043c \u0430\u0431\u043e \u043f\u043e\u0432\u043d\u0456\u0441\u0442\u044e \u0432\u0438\u043b\u0443\u0447\u0438\u0442\u0438 \u0439\u043e\u0433\u043e."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\u0412\u0430\u0448 \u0441\u0430\u0439\u0442 \u043d\u0435 \u043c\u0456\u0441\u0442\u0438\u0442\u044c \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u043a\u0443 \"%s\" \u0431\u043b\u043e\u043a\u0443. \u0412\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u043b\u0438\u0448\u0438\u0442\u0438 \u0446\u0435\u0439 \u0431\u043b\u043e\u043a \u043d\u0435\u0434\u043e\u0442\u043e\u0440\u043a\u0430\u043d\u0438\u043c, \u043f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0439\u043e\u0433\u043e \u0432\u043c\u0456\u0441\u0442 \u043d\u0430 \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0439 HTML-\u0431\u043b\u043e\u043a \u0430\u0431\u043e \u043f\u043e\u0432\u043d\u0456\u0441\u0442\u044e \u0432\u0438\u043b\u0443\u0447\u0438\u0442\u0438 \u0439\u043e\u0433\u043e."],"Media area":["\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043c\u0435\u0434\u0456\u0430"],"Media & Text":["\u041c\u0435\u0434\u0456\u0430 & \u0422\u0435\u043a\u0441\u0442"],"Show media on right":["\u041f\u043e\u043a\u0430\u0436\u0456\u0442\u044c \u043c\u0435\u0434\u0456\u0430 \u043f\u0440\u0430\u0432\u043e\u0440\u0443\u0447"],"Show media on left":["\u041f\u043e\u043a\u0430\u0436\u0456\u0442\u044c \u043c\u0435\u0434\u0456\u0430 \u043b\u0456\u0432\u043e\u0440\u0443\u0447"],"Open in New Tab":["\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u0432 \u043d\u043e\u0432\u0456\u0439 \u0432\u043a\u043b\u0430\u0434\u0446\u0456"],Cover:["\u041e\u0431\u043a\u043b\u0430\u0434\u0438\u043d\u043a\u0430"],"Border Settings":[],"Edit media":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043c\u0435\u0434\u0456\u0430"],Medium:["C\u0435\u0440\u0435\u0434\u043d\u0456\u0439"],"Paste URL or type to search":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 URL-\u0430\u0434\u0440\u0435\u0441\u0443 \u0430\u0431\u043e \u0432\u0432\u0435\u0434\u0456\u0442\u044c \u0434\u043b\u044f \u043f\u043e\u0448\u0443\u043a\u0443"],Terms:["\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f"],"Your work will be published at the specified date and time.":["\u0412\u0430\u0448\u0430 \u0440\u043e\u0431\u043e\u0442\u0430 \u0431\u0443\u0434\u0435 \u043e\u043f\u0443\u0431\u043b\u0456\u043a\u043e\u0432\u0430\u043d\u0430 \u0432 \u0437\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0443 \u0434\u0430\u0442\u0443 \u0442\u0430 \u0447\u0430\u0441."],"Are you ready to schedule?":["\u0412\u0438 \u0433\u043e\u0442\u043e\u0432\u0456 \u0437\u0430\u043f\u043b\u0430\u043d\u0443\u0432\u0430\u0442\u0438?"],"Always show pre-publish checks.":["\u0417\u0430\u0432\u0436\u0434\u0438 \u043f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u043f\u0435\u0440\u0435\u0434 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0454\u044e \u0447\u0435\u043a\u0456\u0432."],"Take Over":["\u041f\u0440\u0438\u0439\u043d\u044f\u0442\u0438"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u041d\u0430 \u0434\u0430\u043d\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0456\u043d\u0448\u0438\u0439 \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447 \u043f\u0440\u0430\u0446\u044e\u0454 \u043d\u0430\u0434 \u0446\u0438\u043c \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f\u043c, \u0430 \u0446\u0435 \u043e\u0437\u043d\u0430\u0447\u0430\u0454, \u0449\u043e \u0432\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u043d\u0435\u0441\u0442\u0438 \u0437\u043c\u0456\u043d\u0438, \u044f\u043a\u0449\u043e \u043d\u0435 \u0437\u0430\u0445\u043e\u0447\u0435\u0442\u0435."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s \u0432 \u0434\u0430\u043d\u0438\u0439 \u0447\u0430\u0441 \u043f\u0440\u0430\u0446\u044e\u0454 \u043d\u0430\u0434 \u0446\u0438\u043c \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f\u043c, \u0430 \u0446\u0435 \u043e\u0437\u043d\u0430\u0447\u0430\u0454, \u0449\u043e \u0432\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u043d\u0435\u0441\u0442\u0438 \u0437\u043c\u0456\u043d\u0438, \u044f\u043a\u0449\u043e \u0432\u0438 \u043d\u0435 \u0437\u0430\u0445\u043e\u0447\u0435\u0442\u0435."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u0406\u043d\u0448\u0438\u0439 \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447 \u043c\u0430\u0454 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f \u0446\u044c\u043e\u0433\u043e \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f. \u041d\u0435 \u0445\u0432\u0438\u043b\u044e\u0439\u0442\u0435\u0441\u044f, \u0432\u0430\u0448\u0456 \u0437\u043c\u0456\u043d\u0438 \u0434\u043e \u0446\u044c\u043e\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0443 \u0431\u0443\u043b\u0438 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s \u0442\u0435\u043f\u0435\u0440 \u043c\u0430\u0454 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f \u0446\u044c\u043e\u0433\u043e \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f. \u041d\u0435 \u0445\u0432\u0438\u043b\u044e\u0439\u0442\u0435\u0441\u044f, \u0432\u0430\u0448\u0456 \u0437\u043c\u0456\u043d\u0438 \u0434\u043e \u0446\u044c\u043e\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0443 \u0431\u0443\u043b\u0438 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456."],Avatar:["\u0410\u0432\u0430\u0442\u0430\u0440"],"This post is already being edited.":["\u0426\u0435\u0439 \u043f\u043e\u0441\u0442 \u0443\u0436\u0435 \u0440\u0435\u0434\u0430\u0433\u0443\u0454\u0442\u044c\u0441\u044f."],"Someone else has taken over this post.":["\u0425\u0442\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0439\u0448\u043e\u0432 \u043d\u0430 \u0446\u0435\u0439 \u0437\u0430\u043f\u0438\u0441."],"This block contains unexpected or invalid content.":["\u0426\u0435\u0439 \u0431\u043b\u043e\u043a \u043c\u0456\u0441\u0442\u0438\u0442\u044c \u043d\u0435\u043f\u0435\u0440\u0435\u0434\u0431\u0430\u0447\u0435\u043d\u0438\u0439 \u0430\u0431\u043e \u043d\u0435\u0434\u0456\u0439\u0441\u043d\u0438\u0439 \u0432\u043c\u0456\u0441\u0442."],"Resolve Block":["\u0412\u0438\u0440\u0456\u0448\u0438\u0442\u0438 \u0411\u043b\u043e\u043a"],"Convert to HTML":["\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0432 HTML"],"This block can only be used once.":["\u0426\u0435\u0439 \u0431\u043b\u043e\u043a \u043c\u043e\u0436\u043d\u0430 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u043b\u0438\u0448\u0435 \u043e\u0434\u0438\u043d \u0440\u0430\u0437."],"Exit Code Editor":["\u0412\u0438\u0445\u0456\u0434 \u0437 \u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 \u041a\u043e\u0434\u0443"],"Editing Code":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f \u043a\u043e\u0434\u0443"],"Solid Color":["\u0421\u0443\u0446\u0456\u043b\u044c\u043d\u0438\u0439 \u043a\u043e\u043b\u0456\u0440"],"Main Color":["\u041e\u0441\u043d\u043e\u0432\u043d\u0438\u0439 \u043a\u043e\u043b\u0456\u0440"],HTML:["HTML"],"Write HTML\u2026":["\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 HTML\u2026"],"Media Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u041c\u0435\u0434\u0456\u0430"],"Overlay Color":["\u041a\u043e\u043b\u0456\u0440 \u043f\u0435\u0440\u0435\u043a\u0440\u0438\u0432\u0430\u043d\u043d\u044f"],Overlay:["\u041d\u0430\u0434\u0434\u0440\u0443\u043a"],"Insert Media":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043c\u0435\u0434\u0456\u0430"],"Reusable block imported successfully!":["\u0411\u0430\u0433\u0430\u0442\u043e\u0440\u0430\u0437\u043e\u0432\u0438\u0439 \u0431\u043b\u043e\u043a \u0443\u0441\u043f\u0456\u0448\u043d\u043e \u0456\u043c\u043f\u043e\u0440\u0442\u0443\u0454\u0442\u044c\u0441\u044f!"],"Invalid Reusable Block JSON file":["\u041d\u0435\u0434\u0456\u0439\u0441\u043d\u0438\u0439 \u0431\u0430\u0433\u0430\u0442\u043e\u0440\u0430\u0437\u043e\u0432\u0438\u0439 JSON-\u0444\u0430\u0439\u043b"],"Invalid JSON file":["\u041d\u0435\u0434\u0456\u0439\u0441\u043d\u0438\u0439 \u0444\u0430\u0439\u043b JSON"],"Import from JSON":["\u0406\u043c\u043f\u043e\u0440\u0442 \u0437 JSON"],Backtick:["Backtick"],Period:["\u041f\u0435\u0440\u0456\u043e\u0434"],Comma:["\u041a\u043e\u043c\u0430"],"Change type of %d block":["\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0442\u0438\u043f %d \u0431\u043b\u043e\u043a\u0443","\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0442\u0438\u043f %d \u0431\u043b\u043e\u043a\u0456\u0432","\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0442\u0438\u043f %d \u0431\u043b\u043e\u043a\u0456\u0432"],Current:["\u041f\u043e\u0442\u043e\u0447\u043d\u0438\u0439"],"After Conversion":["\u041f\u0456\u0441\u043b\u044f \u043f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f"],"Change alignment":[],"Change text alignment":[],"%d block":["%d \u0431\u043b\u043e\u043a","%d \u0431\u043b\u043e\u043ab","%d \u0431\u043b\u043e\u043a"],Escape:["\u0412\u0438\u0445\u0456\u0434"],"Forward-slash":["\u041f\u0435\u0440\u0435\u0441\u043b\u0430\u0442\u0438 \u043a\u043e\u0441\u0443 \u0440\u0438\u0441\u043a\u0443"],"No archives to show.":["\u041d\u0435\u043c\u0430\u0454 \u0430\u0440\u0445\u0456\u0432\u0456\u0432 \u0434\u043b\u044f \u043f\u043e\u043a\u0430\u0437\u0443."],"This file is empty.":["\u0426\u0435\u0439 \u0444\u0430\u0439\u043b \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439."],"Sorry, this file type is not supported here.":["\u041d\u0430 \u0436\u0430\u043b\u044c, \u0446\u0435\u0439 \u0442\u0438\u043f \u0444\u0430\u0439\u043b\u0443 \u0442\u0443\u0442 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454\u0442\u044c\u0441\u044f."],"Manage All Reusable Blocks":["\u041a\u0435\u0440\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0441\u0456\u043c\u0430 \u0411\u0430\u0433\u0430\u0442\u043e\u0440\u0430\u0437\u043e\u0432\u0438\u043c\u0438 \u0411\u043b\u043e\u043a\u0430\u043c\u0438"],Title:["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"],"Fullscreen Mode":["\u041d\u0430 \u043f\u043e\u0432\u043d\u0438\u0439 \u0435\u043a\u0440\u0430\u043d"],"Beautiful landscape":["\u041a\u0440\u0430\u0441\u0438\u0432\u0438\u0439 \u043a\u0440\u0430\u0454\u0432\u0438\u0434"],"Close panel":["\u0417\u0430\u043a\u0440\u0438\u0442\u0438 \u043f\u0430\u043d\u0435\u043b\u044c"],"Convert to Classic Block":["\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0432 \u041a\u043b\u0430\u0441\u0438\u0447\u043d\u0438\u0439 \u0411\u043b\u043e\u043a"],"Remove Poster Image":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u043f\u043b\u0430\u043a\u0430\u0442\u0430"],"Select Poster Image":["\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u043f\u043b\u0430\u043a\u0430\u0442\u0430"],"Poster Image":["\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u043f\u043b\u0430\u043a\u0430\u0442\u0430"],"This block is deprecated. Please use the Columns block instead.":["\u0426\u0435\u0439 \u0431\u043b\u043e\u043a \u0437\u0430\u0441\u0442\u0430\u0440\u0456\u043b\u0438\u0439. \u0417\u0430\u043c\u0456\u0441\u0442\u044c \u0446\u044c\u043e\u0433\u043e \u0441\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u0439\u0442\u0435\u0441\u044f \u0431\u043b\u043e\u043a\u043e\u043c \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432."],"Text Columns (deprecated)":["\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0456 \u0441\u0442\u043e\u0432\u043f\u0446\u0456 (\u0437\u0430\u0441\u0442\u0430\u0440\u0456\u043b\u0456)"],"Row Count":["\u0413\u0440\u0430\u0444\u0430 \u0440\u044f\u0434\u043a\u0456\u0432"],"Column Count":["\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0421\u0442\u043e\u0432\u043f\u0446\u0456\u0432"],"This block is deprecated. Please use the Paragraph block instead.":["\u0426\u0435\u0439 \u0431\u043b\u043e\u043a \u0437\u0430\u0441\u0442\u0430\u0440\u0456\u043b\u0438\u0439. \u0417\u0430\u043c\u0456\u0441\u0442\u044c \u0446\u044c\u043e\u0433\u043e \u0441\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u0439\u0442\u0435\u0441\u044f \u0431\u043b\u043e\u043a\u043e\u043c \u0430\u0431\u0437\u0430\u0446\u0456\u0432."],"Subheading (deprecated)":["\u041f\u0456\u0434\u0440\u0443\u0431\u0440\u0438\u043a\u0430 (\u0437\u0430\u0441\u0442\u0430\u0440\u0456\u043b\u0430)"],blockquote:["\u0431\u043b\u043e\u043a \u0446\u0438\u0442\u0430\u0442"],"Change the block type after adding a new paragraph.":["\u0417\u043c\u0456\u043d\u0456\u0442\u044c \u0442\u0438\u043f \u0431\u043b\u043e\u043a\u0443 \u043f\u0456\u0441\u043b\u044f \u0434\u043e\u0434\u0430\u0432\u0430\u043d\u043d\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0430\u0431\u0437\u0430\u0446\u0443."],"Spotlight Mode":["\u0420\u0435\u0436\u0438\u043c \u043e\u0441\u0432\u0456\u0442\u043b\u0435\u043d\u043d\u044f"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u0422\u0435\u0433\u0438 \u0434\u043e\u043f\u043e\u043c\u0430\u0433\u0430\u044e\u0442\u044c \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430\u043c \u0456 \u043f\u043e\u0448\u0443\u043a\u043e\u0432\u0438\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u043c \u043f\u0435\u0440\u0435\u043c\u0456\u0449\u0430\u0442\u0438\u0441\u044f \u043d\u0430 \u0432\u0430\u0448\u043e\u043c\u0443 \u0441\u0430\u0439\u0442\u0456 \u0442\u0430 \u0437\u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0438 \u0432\u0430\u0448 \u0432\u043c\u0456\u0441\u0442. \u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u043a\u0456\u043b\u044c\u043a\u0430 \u043a\u043b\u044e\u0447\u043e\u0432\u0438\u0445 \u0441\u043b\u0456\u0432 \u0434\u043b\u044f \u043e\u043f\u0438\u0441\u0443 \u0432\u0430\u0448\u043e\u0457 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457."],"Add tags":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0442\u0435\u0433\u0438"],"Apply the \"%1$s\" format.":["\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438 \"%1$s\" \u0444\u043e\u0440\u043c\u0430\u0442."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u0412\u0430\u0448\u0430 \u0442\u0435\u043c\u0430 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0454 \u0444\u043e\u0440\u043c\u0430\u0442\u0438 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0439 \u0434\u043b\u044f \u0432\u0438\u0434\u0456\u043b\u0435\u043d\u043d\u044f \u0440\u0456\u0437\u043d\u0438\u0445 \u0442\u0438\u043f\u0456\u0432 \u0432\u043c\u0456\u0441\u0442\u0443, \u044f\u043a-\u043e\u0442 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0447\u0438 \u0432\u0456\u0434\u0435\u043e. \u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457, \u0449\u043e\u0431 \u043f\u043e\u0431\u0430\u0447\u0438\u0442\u0438 \u0446\u0435\u0439 \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0439 \u0441\u0442\u0438\u043b\u044c."],"Use a post format":["\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u0444\u043e\u0440\u043c\u0430\u0442 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457"],"Insert After":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u0456\u0441\u043b\u044f"],"Insert Before":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u0435\u0440\u0435\u0434"],"Move %1$d block from position %2$d down by one place":["\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 %1$d \u0431\u043b\u043e\u043a \u0437 \u043f\u043e\u0437\u0438\u0446\u0456\u0457 %2$d \u0432 \u043e\u0434\u043d\u043e\u043c\u0443 \u043c\u0456\u0441\u0446\u0456","\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 %1$d \u0431\u043b\u043e\u043a\u0438 \u0437 \u043f\u043e\u0437\u0438\u0446\u0456\u0457 %2$d \u0432 \u043e\u0434\u043d\u043e\u043c\u0443 \u043c\u0456\u0441\u0446\u0456","\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 %1$d \u0431\u043b\u043e\u043a \u0437 \u043f\u043e\u0437\u0438\u0446\u0456\u0457 %2$d \u0432 \u043e\u0434\u043d\u043e\u043c\u0443 \u043c\u0456\u0441\u0446\u0456"],"Move %1$d block from position %2$d up by one place":["\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 %1$d \u0431\u043b\u043e\u043a \u0437 \u043f\u043e\u0437\u0438\u0446\u0456\u0457 %2$d \u0432 \u043e\u0434\u043d\u043e\u043c\u0443 \u043c\u0456\u0441\u0446\u0456","\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 %1$d \u0431\u043b\u043e\u043a\u0438 \u0437 \u043f\u043e\u0437\u0438\u0446\u0456\u0457 %2$d \u0432 \u043e\u0434\u043d\u043e\u043c\u0443 \u043c\u0456\u0441\u0446\u0456","\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 %1$d \u0431\u043b\u043e\u043a \u0437 \u043f\u043e\u0437\u0438\u0446\u0456\u0457 %2$d \u0432 \u043e\u0434\u043d\u043e\u043c\u0443 \u043c\u0456\u0441\u0446\u0456"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["\u0444\u0456\u043b\u044c\u043c"],"Insert a new block before the selected block(s).":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u043d\u043e\u0432\u0438\u0439 \u0431\u043b\u043e\u043a \u043f\u0435\u0440\u0435\u0434 \u0432\u0438\u0431\u0440\u0430\u043d\u0438\u043c\u0438 \u0431\u043b\u043e\u043a\u0430\u043c\u0438."],"Remove the selected block(s).":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0432\u0438\u0431\u0440\u0430\u043d\u0456 \u0431\u043b\u043e\u043a\u0438."],"Duplicate the selected block(s).":["\u0414\u0443\u0431\u043b\u044e\u0432\u0430\u0442\u0438 \u0432\u0438\u0431\u0440\u0430\u043d\u0456 \u0431\u043b\u043e\u043a\u0438."],"Block shortcuts":["\u0411\u043b\u043e\u043a\u0443\u0432\u0430\u0442\u0438 \u044f\u0440\u043b\u0438\u043a\u0438"],"Clear selection.":["\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0432\u0438\u0431\u0456\u0440."],"Select all text when typing. Press again to select all blocks.":["\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0432\u0435\u0441\u044c \u0442\u0435\u043a\u0441\u0442 \u043f\u0456\u0434 \u0447\u0430\u0441 \u043d\u0430\u0431\u043e\u0440\u0443 \u0442\u0435\u043a\u0441\u0442\u0443. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \u0449\u0435 \u0440\u0430\u0437, \u0449\u043e\u0431 \u0432\u0438\u0431\u0440\u0430\u0442\u0438 \u0432\u0441\u0456 \u0431\u043b\u043e\u043a\u0438."],"Selection shortcuts":["\u042f\u0440\u043b\u0438\u043a\u0438 \u0432\u0438\u0431\u043e\u0440\u0443"],"Switch between Visual Editor and Code Editor.":["\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u0438\u0441\u044f \u043c\u0456\u0436 Visual Editor \u0442\u0430 Code Editor."],"Navigate to the previous part of the editor (alternative).":["\u041f\u0435\u0440\u0435\u0439\u0434\u0456\u0442\u044c \u0434\u043e \u043f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0457 \u0447\u0430\u0441\u0442\u0438\u043d\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 (\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0430)."],"Navigate to the next part of the editor (alternative).":["\u041f\u0435\u0440\u0435\u0439\u0434\u0456\u0442\u044c \u0434\u043e \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u043e\u0457 \u0447\u0430\u0441\u0442\u0438\u043d\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 (\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0430)."],"Navigate to the previous part of the editor.":["\u041f\u0435\u0440\u0435\u0439\u0434\u0456\u0442\u044c \u0434\u043e \u043f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0457 \u0447\u0430\u0441\u0442\u0438\u043d\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430."],"Navigate to the next part of the editor.":["\u041f\u0435\u0440\u0435\u0439\u0434\u0456\u0442\u044c \u0434\u043e \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u043e\u0457 \u0447\u0430\u0441\u0442\u0438\u043d\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430."],"Show or hide the settings sidebar.":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0430\u0431\u043e \u0441\u0445\u043e\u0432\u0430\u0442\u0438 \u0431\u0456\u0447\u043d\u0443 \u043f\u0430\u043d\u0435\u043b\u044c \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u044c."],"Redo your last undo.":["\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0438 \u043e\u0441\u0442\u0430\u043d\u043d\u0454 \u0441\u043a\u0430\u0441\u0443\u0432\u0430\u043d\u043d\u044f."],"Undo your last changes.":["\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u043e\u0441\u0442\u0430\u043d\u043d\u0456 \u0437\u043c\u0456\u043d\u0438."],"Save your changes.":["\u0417\u0431\u0435\u0440\u0435\u0436\u0456\u0442\u044c \u0441\u0432\u043e\u0457 \u0437\u043c\u0456\u043d\u0438."],"Global shortcuts":["\u0413\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u0456 \u044f\u0440\u043b\u0438\u043a\u0438"],"Remove a link.":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f."],"Convert the selected text into a link.":["\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0432\u0438\u0431\u0440\u0430\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442 \u0443 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f."],"Underline the selected text.":["\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0438\u0442\u0438 \u0432\u0438\u0434\u0456\u043b\u0435\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442."],"Make the selected text italic.":["\u0412\u0438\u0434\u0456\u043b\u0456\u0442\u044c \u0442\u0435\u043a\u0441\u0442 \u043a\u0443\u0440\u0441\u0438\u0432\u043e\u043c."],"Make the selected text bold.":["\u0412\u0438\u0434\u0456\u043b\u0456\u0442\u044c \u0442\u0435\u043a\u0441\u0442 \u043d\u0430\u043f\u0456\u0432\u0436\u0438\u0440\u043d\u0438\u043c \u0448\u0440\u0438\u0444\u0442\u043e\u043c."],"Text formatting":["\u0424\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0442\u0435\u043a\u0441\u0442\u0443"],"Insert a new block after the selected block(s).":["\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u043d\u043e\u0432\u0438\u0439 \u0431\u043b\u043e\u043a \u043f\u0456\u0441\u043b\u044f \u0432\u0438\u0431\u0440\u0430\u043d\u0438\u0445 \u0431\u043b\u043e\u043a\u0456\u0432."],"Keyboard Shortcuts":["\u041a\u043e\u043c\u0431\u0456\u043d\u0430\u0446\u0456\u0457 \u043a\u043b\u0430\u0432\u0456\u0448"],"Thanks for testing Gutenberg!":["\u0414\u044f\u043a\u0443\u044e \u0437\u0430 \u0442\u0435\u0441\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0413\u0443\u0442\u0435\u043d\u0431\u0435\u0440\u0433\u0430!"],"Help build Gutenberg":["\u0414\u043e\u043f\u043e\u043c\u043e\u0436\u0456\u0442\u044c \u043f\u043e\u0431\u0443\u0434\u0443\u0432\u0430\u0442\u0438 \u0413\u0443\u0442\u0435\u043d\u0431\u0435\u0440\u0433"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["\u042f\u043a\u0449\u043e \u0432\u0438 \u0445\u043e\u0447\u0435\u0442\u0435 \u0434\u0456\u0437\u043d\u0430\u0442\u0438\u0441\u044c \u0431\u0456\u043b\u044c\u0448\u0435 \u043f\u0440\u043e \u0442\u0435, \u044f\u043a \u0441\u0442\u0432\u043e\u0440\u044e\u0432\u0430\u0442\u0438 \u0434\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u0456 \u0431\u043b\u043e\u043a\u0438, \u0430\u0431\u043e \u044f\u043a\u0449\u043e \u0432\u0438 \u0437\u0430\u0446\u0456\u043a\u0430\u0432\u043b\u0435\u043d\u0456 \u0432 \u0442\u043e\u043c\u0443, \u0449\u043e\u0431 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0442\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0443, \u043f\u0435\u0440\u0435\u0439\u0434\u0456\u0442\u044c \u0434\u043e \u0441\u0445\u043e\u0432\u0438\u0449\u0430 GitHub ."],"The WordPress community":["\u0421\u043f\u0456\u043b\u044c\u043d\u043e\u0442\u0430 WordPress"],"Code is Poetry":["\u041a\u043e\u0434 - \u0446\u0435 \u043f\u043e\u0435\u0437\u0456\u044f."],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["\u0412\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u043e\u0431\u0443\u0434\u0443\u0432\u0430\u0442\u0438 \u0431\u0443\u0434\u044c-\u044f\u043a\u0438\u0439 \u0431\u043b\u043e\u043a, \u044f\u043a\u0438\u0439 \u0432\u0430\u043c \u043f\u043e\u0434\u043e\u0431\u0430\u0454\u0442\u044c\u0441\u044f, \u0441\u0442\u0430\u0442\u0438\u0447\u043d\u0438\u0439 \u0430\u0431\u043e \u0434\u0438\u043d\u0430\u043c\u0456\u0447\u043d\u0438\u0439, \u0434\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u0438\u0439 \u0430\u0431\u043e \u043f\u0440\u043e\u0441\u0442\u043e. \u041e\u0441\u044c \u0431\u043b\u043e\u043a \u0431\u043b\u043e\u043a\u0443\u0432\u0430\u043d\u043d\u044f:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["\u0411\u0443\u0434\u044c-\u044f\u043a\u0438\u0439 \u0431\u043b\u043e\u043a \u043c\u043e\u0436\u0435 \u0432\u0438\u0431\u0440\u0430\u0442\u0438 \u0446\u0456 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f. \u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0431\u043b\u043e\u043a \u0442\u0430\u043a\u043e\u0436 \u043c\u0430\u0454 \u0457\u0445, \u0456 \u0440\u0435\u0430\u0433\u0443\u0454 \u043d\u0430 \u043d\u044c\u043e\u0433\u043e \u0437 \u043a\u043e\u0440\u043e\u0431\u043a\u0438:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["\u0412\u0438\u0449\u0435 \u0446\u0435 \u0433\u0430\u043b\u0435\u0440\u0435\u044f \u0437 \u0434\u0432\u043e\u043c\u0430 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f\u043c\u0438. \u0426\u0435 \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0441\u043f\u043e\u0441\u0456\u0431 \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0432\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u043e \u043f\u0440\u0438\u0432\u0430\u0431\u043b\u0438\u0432\u0456 \u043c\u0430\u043a\u0435\u0442\u0438, \u0431\u0435\u0437 \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u043e\u0441\u0442\u0456 \u043c\u0430\u0442\u0438 \u0441\u043f\u0440\u0430\u0432\u0443 \u0437 \u043f\u043e\u043f\u043b\u0430\u0432\u0446\u044f\u043c\u0438. \u0412\u0438 \u0442\u0430\u043a\u043e\u0436 \u043c\u043e\u0436\u0435\u0442\u0435 \u043b\u0435\u0433\u043a\u043e \u043f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0433\u0430\u043b\u0435\u0440\u0435\u044e \u043d\u0430\u0437\u0430\u0434 \u043d\u0430 \u0456\u043d\u0434\u0438\u0432\u0456\u0434\u0443\u0430\u043b\u044c\u043d\u0456 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0437\u043d\u043e\u0432\u0443 \u0437\u0430 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u043e\u044e \u0431\u043b\u043e\u043a\u0443 \u043f\u0435\u0440\u0435\u043c\u0438\u043a\u0430\u0447\u0430."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["\u0417\u0432\u0438\u0447\u0430\u0439\u043d\u043e, \u043f\u043e\u0432\u043d\u043e\u0446\u0456\u043d\u043d\u0438\u0439 \u0456\u043c\u0456\u0434\u0436 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0434\u043e\u0441\u0438\u0442\u044c \u0432\u0435\u043b\u0438\u043a\u0438\u043c. \u0410\u043b\u0435 \u0456\u043d\u043e\u0434\u0456 \u043e\u0431\u0440\u0430\u0437 \u0446\u0435 \u043a\u043e\u0448\u0442\u0443\u0454."],"Accessibility is important — don’t forget image alt attribute":["\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u0456\u0441\u0442\u044c \u0432\u0430\u0436\u043b\u0438\u0432\u0430 - \u043d\u0435 \u0437\u0430\u0431\u0443\u0432\u0430\u0439\u0442\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442 image alt"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["\u042f\u043a\u0449\u043e \u0432\u0438 \u043e\u0431'\u0454\u0434\u043d\u0430\u0454\u0442\u0435 \u043d\u043e\u0432\u0456 \u0448\u0438\u0440\u043e\u043a\u0456 \u0442\u0430 \u043f\u043e\u0432\u043d\u043e\u0446\u0456\u043d\u043d\u0456 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u0437\u0430 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u043e\u044e \u0433\u0430\u043b\u0435\u0440\u0435\u0439, \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0434\u0443\u0436\u0435 \u043c\u0430\u0441\u0438\u0432\u043d\u0438\u0439 \u043c\u0435\u0434\u0456\u0430-\u0441\u0442\u0438\u043b\u0456, \u0434\u0443\u0436\u0435 \u0448\u0432\u0438\u0434\u043a\u043e:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["\u0412\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u043a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432 \u0443 \u0432\u0430\u0448\u0438\u0445 \u0433\u0430\u043b\u0435\u0440\u0435\u044f\u0445, \u043f\u0435\u0440\u0435\u0442\u044f\u0433\u0443\u044e\u0447\u0438 \u043f\u043e\u0432\u0437\u0443\u043d\u043e\u043a \u0432 \u0456\u043d\u0441\u043f\u0435\u043a\u0442\u043e\u0440\u0456 \u0431\u043b\u043e\u043a\u0443 \u043d\u0430 \u0431\u0456\u0447\u043d\u0456\u0439 \u043f\u0430\u043d\u0435\u043b\u0456."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["\u0411\u043b\u043e\u043a\u0438 \u043c\u043e\u0436\u0443\u0442\u044c \u0431\u0443\u0442\u0438 \u0449\u043e \u0437\u0430\u0432\u0433\u043e\u0434\u043d\u043e. \u041d\u0430\u043f\u0440\u0438\u043a\u043b\u0430\u0434, \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 \u043f\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u0443 \u0446\u0438\u0442\u0430\u0442\u0443 \u044f\u043a \u0447\u0430\u0441\u0442\u0438\u043d\u0443 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0456\u0457 \u0432\u0430\u0448\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443, \u0430\u0431\u043e \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u0456\u0434\u0434\u0430\u0442\u0438 \u043f\u0435\u0440\u0435\u0432\u0430\u0433\u0443 \u0441\u0442\u0438\u0441\u0443\u0432\u0430\u043d\u043d\u044e \u0433\u0456\u0433\u0430\u043d\u0442\u0430. \u0412\u0441\u0456 \u0446\u0456 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0456 \u0443 \u0432\u043a\u043b\u0430\u0434\u0435\u043d\u043d\u0456."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["\u0406\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u044f, \u044f\u043a\u0430 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u0430\u0454 \u0434\u0436\u0435\u0440\u0435\u043b\u0443 \u0446\u0438\u0442\u0430\u0442, \u0454 \u043e\u043a\u0440\u0435\u043c\u0438\u043c \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u0438\u043c \u043f\u043e\u043b\u0435\u043c, \u043f\u043e\u0434\u0456\u0431\u043d\u0438\u043c \u0434\u043e \u043f\u0456\u0434\u043f\u0438\u0441\u0456\u0432 \u043f\u0456\u0434 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f\u043c\u0438, \u0442\u043e\u043c\u0443 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0446\u0438\u0442\u0430\u0442\u0438 \u0437\u0430\u0445\u0438\u0449\u0435\u043d\u0430, \u043d\u0430\u0432\u0456\u0442\u044c \u044f\u043a\u0449\u043e \u0432\u0438 \u0432\u0438\u0431\u0438\u0440\u0430\u0454\u0442\u0435, \u0437\u043c\u0456\u043d\u044e\u0454\u0442\u0435 \u0447\u0438 \u0432\u0438\u0434\u0430\u043b\u044f\u0454\u0442\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e. \u0417\u0430\u0432\u0436\u0434\u0438 \u043b\u0435\u0433\u043a\u043e \u0434\u043e\u0434\u0430\u0442\u0438 \u0439\u043e\u0433\u043e \u043d\u0430\u0437\u0430\u0434."],"Matt Mullenweg, 2017":["\u041c\u0435\u0442\u0442 \u041c\u0430\u043b\u043b\u0435\u043d\u0432\u0435\u0433, 2017 \u0440\u0456\u043a"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u043d\u0430\u043c\u0430\u0433\u0430\u0442\u0438\u043c\u0435\u0442\u044c\u0441\u044f \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043d\u043e\u0432\u0443 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0443 \u0442\u0430 \u043f\u043e\u0448\u0442\u0430, \u044f\u043a\u0430 \u0441\u043f\u0440\u043e\u0449\u0443\u0454 \u043d\u0430\u043f\u0438\u0441\u0430\u043d\u043d\u044f \u0431\u0430\u0433\u0430\u0442\u0438\u0445 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u044c, \u0456 \u043c\u0430\u0454 "\u0431\u043b\u043e\u043a\u0438", \u0449\u043e\u0431 \u043f\u043e\u043b\u0435\u0433\u0448\u0438\u0442\u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0456\u0441\u0442\u044c \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u0445 \u043a\u043e\u0434\u0456\u0432, \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0445 HTML-\u043a\u043e\u0434\u0456\u0432 \u0430\u0431\u043e \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0442\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438 "\u0442\u0430\u0454\u043c\u043d\u043e\u0433\u043e \u043c'\u044f\u0441\u0430"."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["\u0412\u0435\u043b\u0438\u043a\u0430 \u043f\u0435\u0440\u0435\u0432\u0430\u0433\u0430 \u0431\u043b\u043e\u043a\u0456\u0432 \u043f\u043e\u043b\u044f\u0433\u0430\u0454 \u0432 \u0442\u043e\u043c\u0443, \u0449\u043e \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0457\u0445 \u043d\u0430 \u043c\u0456\u0441\u0446\u0456 \u0442\u0430 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044e\u0432\u0430\u0442\u0438 \u0432\u043c\u0456\u0441\u0442\u043e\u043c \u0431\u0435\u0437\u043f\u043e\u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e. \u0417\u0430\u043c\u0456\u0441\u0442\u044c \u0442\u043e\u0433\u043e, \u0449\u043e\u0431 \u043c\u0430\u0442\u0438 \u043f\u043e\u043b\u044f \u0434\u043b\u044f \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f \u0440\u0435\u0447\u0435\u0439, \u044f\u043a \u0434\u0436\u0435\u0440\u0435\u043b\u043e \u0446\u0438\u0442\u0430\u0442\u0438, \u0430\u0431\u043e \u0442\u0435\u043a\u0441\u0442\u0443 \u043a\u043d\u043e\u043f\u043a\u0438, \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0431\u0435\u0437\u043f\u043e\u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e \u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u043c\u0456\u0441\u0442. \u0421\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0443 \u0446\u0438\u0442\u0430\u0442\u0443:"],"Visual Editing":["\u0412\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u0435 \u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f"],"And Lists like this one of course :)":["\u0406 \u0446\u0435, \u0437\u0432\u0438\u0447\u0430\u0439\u043d\u043e, \u0421\u043f\u0438\u0441\u043a\u0438 :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["\u0411\u043b\u043e\u043a\u0438 \u043c\u0430\u043a\u0435\u0442\u0430, \u044f\u043a-\u043e\u0442 \u043a\u043d\u043e\u043f\u043a\u0438, \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0433\u0435\u0440\u043e\u044f, \u0441\u0435\u043f\u0430\u0440\u0430\u0442\u043e\u0440\u0438 \u0442\u043e\u0449\u043e."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["\u0412\u0431\u0443\u0434\u043e\u0432\u0443\u0454, \u044f\u043a YouTube, Tweets \u0447\u0438 \u0456\u043d\u0448\u0456 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f WordPress."],Galleries:["\u0413\u0430\u043b\u0435\u0440\u0435\u0457"],"Images & Videos":["\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0442\u0430 \u0432\u0456\u0434\u0435\u043e"],"Text & Headings":["\u0422\u0435\u043a\u0441\u0442 \u0442\u0430 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["\u0414\u0430\u0432\u0430\u0439\u0442\u0435 \u0441\u043f\u0440\u043e\u0431\u0443\u0454\u043c\u043e, \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0456\u0437\u043d\u0430\u0442\u0438\u0441\u044c \u043f\u0440\u043e \u0442\u0435, \u0449\u043e WordPress \u0432\u0436\u0435 \u043c\u043e\u0436\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 \u0434\u043e \u0441\u0432\u043e\u0457\u0445 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0439, \u043f\u0440\u043e \u044f\u043a\u0456 \u0432\u0438 \u043d\u0435 \u0437\u043d\u0430\u043b\u0438. \u041e\u0441\u044c \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0442\u043e\u0433\u043e, \u0449\u043e \u0432\u0438 \u0437\u0430\u0440\u0430\u0437 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u043d\u0430\u0439\u0442\u0438 \u0442\u0430\u043c:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["\u0423\u044f\u0432\u0456\u0442\u044c, \u0449\u043e \u0432\u0441\u0435, \u0449\u043e WordPress \u043c\u043e\u0436\u0435 \u0437\u0440\u043e\u0431\u0438\u0442\u0438, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0432\u0430\u043c \u0448\u0432\u0438\u0434\u043a\u043e \u0456 \u0432 \u043e\u0434\u043d\u043e\u043c\u0443 \u043c\u0456\u0441\u0446\u0456 \u043d\u0430 \u0456\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0456. \u041d\u0435 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u043e \u0432\u0438\u0440\u0430\u0445\u0443\u0432\u0430\u0442\u0438 HTML \u0442\u0435\u0433\u0438, \u043a\u043b\u0430\u0441\u0438 \u0430\u0431\u043e \u0437\u0430\u043f\u0430\u043c'\u044f\u0442\u0430\u0442\u0438 \u0441\u043a\u043b\u0430\u0434\u043d\u0438\u0439 \u0441\u0438\u043d\u0442\u0430\u043a\u0441\u0438\u0441 \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u0445 \u043a\u043e\u0434\u0456\u0432. \u0426\u0435 \u0434\u0443\u0445 \u0437\u0430 \u0432\u0441\u0442\u0430\u0432\u043a\u043e\u044e - \u043a\u043d\u043e\u043f\u043a\u0430 (+) \u044f\u043a\u0443 \u0432\u0438 \u043f\u043e\u0431\u0430\u0447\u0438\u0442\u0435 \u0431\u0456\u043b\u044f \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430, \u0449\u043e \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0454 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434\u0430\u0442\u0438 \u0432\u0441\u0456 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0456 \u0431\u043b\u043e\u043a\u0438 \u0432\u043c\u0456\u0441\u0442\u0443 \u0442\u0430 \u0434\u043e\u0434\u0430\u0442\u0438 \u0457\u0445 \u0434\u043e \u0432\u0430\u0448\u043e\u0433\u043e \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f. \u041f\u043b\u0430\u0433\u0456\u043d\u0438 \u0442\u0430 \u0442\u0435\u043c\u0438 \u043c\u043e\u0436\u0443\u0442\u044c \u0440\u0435\u0454\u0441\u0442\u0440\u0443\u0432\u0430\u0442\u0438 \u0441\u0432\u043e\u0457 \u0432\u043b\u0430\u0441\u043d\u0456, \u0432\u0456\u0434\u043a\u0440\u0438\u0432\u0430\u044e\u0447\u0438 \u0432\u0441\u0456\u043b\u044f\u043a\u0456 \u043c\u043e\u0436\u043b\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043b\u044f \u0431\u0430\u0433\u0430\u0442\u0438\u0445 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f \u0442\u0430 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457."],"The Inserter Tool":["\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 \u0412\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044f"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["\u0421\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0432\u0438\u0431\u0438\u0440\u0430\u0442\u0438 \u0456 \u0432\u0438\u0434\u0430\u043b\u044f\u0442\u0438 \u0430\u0431\u043e \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a, \u0442\u0435\u043f\u0435\u0440 \u0432\u0430\u043c \u043d\u0435 \u0442\u0440\u0435\u0431\u0430 \u0431\u0443\u0442\u0438 \u043e\u0431\u0435\u0440\u0435\u0436\u043d\u0438\u043c \u043f\u0440\u0438 \u0432\u0438\u0431\u043e\u0440\u0456 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0447\u0438 \u0456\u043d\u0448\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443 \u043f\u043e\u043c\u0438\u043b\u043a\u043e\u0432\u043e \u0456 \u043f\u043e\u0437\u0431\u0430\u0432\u0438\u0442\u0438 \u043f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446\u0456\u044e."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["\u042f\u043a\u0449\u043e \u0432\u0430\u0448\u0430 \u0442\u0435\u043c\u0430 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454 \u0457\u0457, \u0432\u0438 \u043f\u043e\u0431\u0430\u0447\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 "\u0448\u0438\u0440\u043e\u043a\u0438\u0439" \u043d\u0430 \u043f\u0430\u043d\u0435\u043b\u0456 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f. \u0421\u043f\u0440\u043e\u0431\u0443\u0432\u0430\u0442\u0438."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u0443\u0432\u0430\u0433\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 - \u0446\u0435 \u043d\u0430\u0434\u0437\u0432\u0438\u0447\u0430\u0439\u043d\u043e \u0432\u0430\u0436\u043b\u0438\u0432\u0430 \u043e\u0431\u0440\u043e\u0431\u043a\u0430 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u044c \u0442\u0430 \u043d\u043e\u0441\u0456\u0457\u0432. \u0421\u043f\u043e\u0434\u0456\u0432\u0430\u0454\u043c\u043e\u0441\u044f, \u0432\u0438 \u0437\u043d\u0430\u0439\u0434\u0435\u0442\u0435 \u0430\u0441\u043f\u0435\u043a\u0442\u0438 \u0434\u043e\u0434\u0430\u0432\u0430\u043d\u043d\u044f \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0456\u0432 \u0430\u0431\u043e \u043f\u043e\u0432\u043d\u043e\u0446\u0456\u043d\u043d\u0435 \u0440\u043e\u0437\u043c\u0456\u0449\u0435\u043d\u043d\u044f \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0456\u0439 \u043d\u0430\u0431\u0430\u0433\u0430\u0442\u043e \u043f\u0440\u043e\u0441\u0442\u0456\u0448\u0435 \u0442\u0430 \u043d\u0430\u0434\u0456\u0439\u043d\u0456\u0448\u0435, \u043d\u0456\u0436 \u0440\u0430\u043d\u0456\u0448\u0435."],"A Picture is Worth a Thousand Words":["\u041a\u0430\u0440\u0442\u0438\u043d\u0430 \u0432\u0430\u0440\u0442\u0430 \u0442\u0438\u0441\u044f\u0447 \u0441\u043b\u0456\u0432"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438 \u0442\u0430\u043a\u043e\u0436 \u0454 \u043e\u043a\u0440\u0435\u043c\u0438\u043c\u0438 \u0431\u043b\u043e\u043a\u0430\u043c\u0438, \u0449\u043e \u0434\u043e\u043f\u043e\u043c\u0430\u0433\u0430\u0454 \u043a\u043e\u043d\u0442\u0443\u0440\u0443 \u0442\u0430 \u043e\u0440\u0433\u0430\u043d\u0456\u0437\u0430\u0446\u0456\u0457 \u0432\u043c\u0456\u0441\u0442\u0443."],"... like this one, which is right aligned.":["\u2026 \u044f\u043a \u0446\u0435\u0439, \u044f\u043a\u0438\u0439 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u0432\u0438\u0440\u0456\u0432\u043d\u044f\u043d\u0438\u0439."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["\u0422\u0435, \u0449\u043e \u0432\u0438 \u0437\u0430\u0440\u0430\u0437 \u0447\u0438\u0442\u0430\u0454\u0442\u0435, - \u0446\u0435 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u0438\u0439 \u0431\u043b\u043e\u043a, \u043d\u0430\u0439\u0431\u0456\u043b\u044c\u0448 \u043e\u0441\u043d\u043e\u0432\u043d\u0438\u0439 \u0431\u043b\u043e\u043a. \u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0438\u0439 \u0431\u043b\u043e\u043a \u043c\u0430\u0454 \u0432\u043b\u0430\u0441\u043d\u0456 \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0438 \u043a\u0435\u0440\u0443\u0432\u0430\u043d\u043d\u044f, \u044f\u043a\u0456 \u043c\u043e\u0436\u043d\u0430 \u0432\u0456\u043b\u044c\u043d\u043e \u043f\u0435\u0440\u0435\u043c\u0456\u0449\u0430\u0442\u0438 \u043d\u0430\u0432\u043a\u043e\u043b\u043e \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457 \u2026"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["\u041c\u0435\u0442\u0430 \u0446\u044c\u043e\u0433\u043e \u043d\u043e\u0432\u043e\u0433\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 - \u0437\u0440\u043e\u0431\u0438\u0442\u0438 \u0434\u043e\u0434\u0430\u0432\u0430\u043d\u043d\u044f \u0431\u0430\u0433\u0430\u0442\u0438\u043c \u0437\u043c\u0456\u0441\u0442\u043e\u043c \u0434\u043e WordPress \u043f\u0440\u043e\u0441\u0442\u0438\u043c \u0442\u0430 \u043f\u0440\u0438\u0454\u043c\u043d\u0438\u043c. \u0412\u0435\u0441\u044c \u0446\u0435\u0439 \u043f\u043e\u0441\u0442 \u0441\u043a\u043b\u0430\u0434\u0430\u0454\u0442\u044c\u0441\u044f \u0437 \u0447\u0430\u0441\u0442\u0438\u043d \u0432\u043c\u0456\u0441\u0442\u0443, \u044f\u043a\u0438\u0439 \u0442\u0440\u043e\u0445\u0438 \u0441\u0445\u043e\u0436\u0438\u0439 \u043d\u0430 \u0446\u0435\u0433\u043b\u0443 LEGO, - \u0449\u043e \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0435\u0440\u0435\u0441\u0443\u0432\u0430\u0442\u0438\u0441\u044f \u0442\u0430 \u0432\u0437\u0430\u0454\u043c\u043e\u0434\u0456\u044f\u0442\u0438. \u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0456\u0442\u044c \u043a\u0443\u0440\u0441\u043e\u0440 \u043d\u0430\u0432\u043a\u043e\u043b\u043e, \u0456 \u0432\u0438 \u043f\u043e\u043c\u0456\u0442\u0438\u0442\u0435, \u0449\u043e \u0440\u0456\u0437\u043d\u0456 \u0431\u043b\u043e\u043a\u0438 \u0437\u0430\u043f\u0430\u043b\u044e\u044e\u0442\u044c\u0441\u044f \u043a\u043e\u043d\u0442\u0443\u0440\u0430\u043c\u0438 \u0442\u0430 \u0441\u0442\u0440\u0456\u043b\u043a\u0430\u043c\u0438. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \u0441\u0442\u0440\u0456\u043b\u043a\u0438, \u0449\u043e\u0431 \u0448\u0432\u0438\u0434\u043a\u043e \u043f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u0431\u043b\u043e\u043a\u0438, \u043d\u0435 \u0431\u043e\u044f\u0447\u0438\u0441\u044c \u0432\u0442\u0440\u0430\u0442\u0438\u0442\u0438 \u0440\u0435\u0447\u0456 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043a\u043e\u043f\u0456\u044e\u0432\u0430\u043d\u043d\u044f \u0442\u0430 \u0432\u0441\u0442\u0430\u0432\u043a\u0438."],"Of Mountains & Printing Presses":["\u041a\u043d\u0438\u0433\u0430 \u0433\u0456\u0440 \u0456 \u043c\u043e\u0440\u0456\u0432"],"Welcome to the Gutenberg Editor":["\u041b\u0430\u0441\u043a\u0430\u0432\u043e \u043f\u0440\u043e\u0441\u0438\u043c\u043e \u0432 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 Gutenberg"],"block name\x04More":["\u0427\u0438\u0442\u0430\u0442\u0438 \u0434\u0430\u043b\u0456"],"button to expand options\x04More":["\u0411\u0456\u043b\u044c\u0448\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0456\u0432"],"Are you sure you want to unschedule this post?":["\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0441\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u0440\u043e\u0437\u043a\u043b\u0430\u0434 \u0446\u044c\u043e\u0433\u043e \u0437\u0430\u043f\u0438\u0441\u0443?"],"Alt Text (Alternative Text)":["\u0410\u043b\u044c\u0442 \u0422\u0435\u043a\u0441\u0442 (\u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442)"],"Reusable Block":["\u0411\u0430\u0433\u0430\u0442\u043e\u0440\u0430\u0437\u043e\u0432\u0438\u0439 \u0431\u043b\u043e\u043a"],"Unique identifier for the object.":["\u0423\u043d\u0456\u043a\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0442\u043e\u0440 \u043e\u0431'\u0454\u043a\u0442\u0443."],"Untitled Reusable Block":["\u0411\u0435\u0437 \u043d\u0430\u0437\u0432\u0438 \u0411\u0430\u0433\u0430\u0442\u043e\u0440\u0430\u0437\u043e\u0432\u0438\u0439 \u0411\u043b\u043e\u043a"],Small:["\u041c\u0435\u043d\u0448\u0438\u0439"],"(%s: %s)":["(%s: %s)"],Reusable:["\u0411\u0430\u0433\u0430\u0442\u043e\u0440\u0430\u0437\u043e\u0432\u0456"],"(current %s: %s)":["(\u043f\u043e\u0442\u043e\u0447\u043d\u0438\u0439 %s: %s)"],"Remove from Reusable Blocks":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0437 \u0431\u0430\u0433\u0430\u0442\u043e\u0440\u0430\u0437\u043e\u0432\u0438\u0445 \u0431\u043b\u043e\u043a\u0456\u0432"],"Add to Reusable Blocks":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0434\u043e \u0431\u0430\u0433\u0430\u0442\u043e\u0440\u0430\u0437\u043e\u0432\u0438\u0445 \u0431\u043b\u043e\u043a\u0456\u0432"],"Keep as HTML":["\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u044f\u043a HTML"],"Edit URL":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f (URL)"],"Color Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432"],"The response is not a valid JSON response.":["\u0412\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u044c \u043d\u0435 \u0454 \u0434\u0456\u0439\u0441\u043d\u043e\u044e \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u0434\u044e JSON."],"Editor publish":["\u041e\u043f\u0443\u0431\u043b\u0456\u043a\u0443\u0432\u0430\u0442\u0438 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440"],Muted:["\u041f\u0440\u0438\u0433\u043b\u0443\u0448\u0435\u043d\u0438\u0439"],"Video Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0456\u0434\u0435\u043e"],"recent comments":["\u043d\u0435\u0434\u0430\u0432\u043d\u0456 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0456"],"Latest Comments":["\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0456"],"Display Excerpt":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0432\u0438\u0442\u044f\u0433"],"Display Date":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0414\u0430\u0442\u0443"],"Display Avatar":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0430\u0432\u0430\u0442\u0430\u0440"],"Latest Comments Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u043e\u0441\u0442\u0430\u043d\u043d\u0456\u0445 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0456\u0432"],"Number of Comments":["\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u041a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0456\u0432"],"Background Opacity":["\u041d\u0435\u043f\u0440\u043e\u0437\u043e\u0440\u0456\u0441\u0442\u044c \u0444\u043e\u043d\u0443"],Auto:["\u0410\u0432\u0442\u043e"],Preload:["\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0454 \u043d\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f"],"Audio Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0430\u0443\u0434\u0456\u043e"],"Display a monthly archive of your posts.":["\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u0438 \u0449\u043e\u043c\u0456\u0441\u044f\u0447\u043d\u0438\u0439 \u0430\u0440\u0445\u0456\u0432 \u0432\u0430\u0448\u0438\u0445 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0439."],"Display as Dropdown":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0432\u0438\u043f\u0430\u0434\u044e\u0447\u0438\u043c \u0441\u043f\u0438\u0441\u043a\u043e\u043c"],"Show Post Counts":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043b\u0456\u0447\u0438\u043b\u044c\u043d\u0438\u043a \u0437\u0430\u043f\u0438\u0441\u0456\u0432"],"Archives Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0430\u0440\u0445\u0456\u0432\u0456\u0432"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u041f\u0456\u0434\u0442\u0440\u0438\u043c\u043a\u0430"],"No comments to show.":["\u041d\u0435\u043c\u0430\u0454 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0456\u0432 \u0434\u043e \u043f\u043e\u043a\u0430\u0437\u0443."],"%1$s on %2$s":["%1$s \u043d\u0430 %2$s"],"Select Post":["\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0437\u0430\u043f\u0438\u0441"],"Select Week":["\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0442\u0438\u0436\u0434\u0435\u043d\u044c"],"Select Day":["\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0434\u0435\u043d\u044c"],"Select Month":["\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u043c\u0456\u0441\u044f\u0446\u044c"],"Select Year":["\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0440\u0456\u043a"],Archives:["\u0410\u0440\u0445\u0456\u0432\u0438"],"Very dark gray":["\u0414\u0443\u0436\u0435 \u0442\u0435\u043c\u043d\u043e-\u0441\u0456\u0440\u0438\u0439"],"Cyan bluish gray":["\u0411\u043b\u0430\u043a\u0438\u0442\u043d\u0438\u0439 \u0431\u043b\u0430\u043a\u0438\u0442\u043d\u043e-\u0441\u0456\u0440\u0438\u0439"],"Very light gray":["\u0414\u0443\u0436\u0435 \u0441\u0432\u0456\u0442\u043b\u043e-\u0441\u0456\u0440\u0438\u0439"],"Vivid cyan blue":["\u042f\u0441\u043a\u0440\u0430\u0432\u0438\u0439 \u0441\u0438\u043d\u044c\u043e-\u0431\u043b\u0430\u043a\u0438\u0442\u043d\u0438\u0439"],"Pale cyan blue":["\u0411\u043b\u0456\u0434\u043e \u0441\u0438\u043d\u044c\u043e-\u0431\u043b\u0430\u043a\u0438\u0442\u043d\u0438\u0439"],"Vivid green cyan":["\u042f\u0441\u043a\u0440\u0430\u0432\u0438\u0439 \u0437\u0435\u043b\u0435\u043d\u043e-\u0431\u043b\u0430\u043a\u0438\u0442\u043d\u0438\u0439"],"Light green cyan":["\u0421\u0432\u0456\u0442\u043b\u0438\u0439 \u0437\u0435\u043b\u0435\u043d\u043e-\u0431\u043b\u0430\u043a\u0438\u0442\u043d\u0438\u0439"],"Luminous vivid amber":["\u042f\u0441\u043a\u0440\u0430\u0432\u0438\u0439 \u0441\u0432\u0456\u0442\u043b\u0438\u0439 \u0431\u0443\u0440\u0448\u0442\u0438\u043d"],"Luminous vivid orange":["\u042f\u0441\u043a\u0440\u0430\u0432\u043e \u0441\u0432\u0456\u0442\u043b\u0438\u0439 \u043f\u043e\u043c\u0430\u0440\u0430\u043d\u0447\u0435\u0432\u0438\u0439"],"Vivid red":["\u042f\u0441\u043a\u0440\u0430\u0432\u043e \u0447\u0435\u0440\u0432\u043e\u043d\u0438\u0439"],"Pale pink":["\u0411\u043b\u0456\u0434\u043e-\u0440\u043e\u0436\u0435\u0432\u0438\u0439"],"Inline image":[],"Available block types":["\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u0456 \u0442\u0438\u043f\u0438 \u0431\u043b\u043e\u043a\u0456\u0432"],"Transform To:":["\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0432:"],"Remove Block":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0431\u043b\u043e\u043a"],"Open publish panel":["\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u043f\u0430\u043d\u0435\u043b\u044c \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457"],Dots:["\u0422\u043e\u0447\u043a\u0438"],"Wide Line":["\u0428\u0438\u0440\u043e\u043a\u0430 \u043b\u0456\u043d\u0456\u044f"],Large:["\u0412\u0435\u043b\u0438\u043a\u0438\u0439"],"Show download button":[],"Download button settings":[],"Link To":["\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u0434\u043e"],"Text link settings":[],pdf:["pdf"],document:["\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442"],"Copy URL":["\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 URL"],"Write file name\u2026":["\u0412\u043f\u0438\u0448\u0456\u0442\u044c \u0456\u043c'\u044f \u0444\u0430\u0439\u043b\u0443\u2026"],"Edit file":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0444\u0430\u0439\u043b"],File:["\u0424\u0430\u0439\u043b"],"A single column within a columns block.":["\u041e\u0434\u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u043a\u0430 \u0432 \u0431\u043b\u043e\u0446\u0456 \u043a\u043e\u043b\u043e\u043d\u043e\u043a."],Column:["\u041a\u043e\u043b\u043e\u043d\u043a\u0430"],Outline:["\u041a\u043e\u043d\u0442\u0443\u0440"],Loop:["\u0417\u0430\u0446\u0438\u043a\u043b\u0438\u0442\u0438"],Autoplay:["\u0410\u0432\u0442\u043e\u0432\u0456\u0434\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f"],"Playback Controls":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0456\u0434\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f"],"Close dialog":["\u0417\u0430\u043a\u0440\u0438\u0442\u0438 \u0434\u0456\u0430\u043b\u043e\u0433"],"Sorry, this file type is not permitted for security reasons.":["\u041d\u0430 \u0436\u0430\u043b\u044c, \u0446\u0435\u0439 \u0442\u0438\u043f \u0444\u0430\u0439\u043b\u0443 \u0437\u0430\u0431\u043e\u0440\u043e\u043d\u0435\u043d\u0438\u0439 \u0437 \u043c\u0456\u0440\u043a\u0443\u0432\u0430\u043d\u044c \u0431\u0435\u0437\u043f\u0435\u043a\u0438."],"Disable tips":["\u0412\u0456\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u0438 \u043f\u043e\u0440\u0430\u0434\u0438"],"Got it":["\u0417\u0440\u043e\u0437\u0443\u043c\u0456\u043b\u043e"],"See next tip":["\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u043e\u0440\u0430\u0434\u0430"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u041a\u043e\u043b\u0438 \u0432\u0438 \u0431\u0443\u0434\u0435\u0442\u0435 \u0433\u043e\u0442\u043e\u0432\u0456, \u0432\u0456\u0434\u043f\u0440\u0430\u0432\u0442\u0435 \u0441\u0432\u043e\u044e \u0440\u043e\u0431\u043e\u0442\u0443 \u043d\u0430 \u043f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0443, \u0456 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0437\u043c\u043e\u0436\u0435 \u0457\u0457 \u0441\u0445\u0432\u0430\u043b\u0438\u0442\u0438."],"Are you ready to submit for review?":["\u0412\u0438 \u0433\u043e\u0442\u043e\u0432\u0456 \u0432\u0456\u0434\u043f\u0440\u0430\u0432\u0438\u0442\u0438 \u043d\u0430 \u043f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0443?"],"Replace image":["\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],"Remove image":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],"Error while uploading file %s to the media library.":["\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0444\u0430\u0439\u043b\u0443 %s \u0432 \u043c\u0435\u0434\u0456\u0430\u0442\u0435\u043a\u0443."],"This file exceeds the maximum upload size for this site.":["%s\u043f\u0435\u0440\u0435\u0432\u0438\u0449\u0443\u0454 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u0438\u0439 \u0440\u043e\u0437\u043c\u0456\u0440 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0434\u043b\u044f \u0446\u044c\u043e\u0433\u043e \u0441\u0430\u0439\u0442\u0443."],"View the autosave":["\u041f\u043e\u0434\u0438\u0432\u0438\u0442\u0438\u0441\u044f \u0430\u0432\u0442\u043e\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f"],"There is an autosave of this post that is more recent than the version below.":["\u0406\u0441\u043d\u0443\u0454 \u0431\u0456\u043b\u044c\u0448 \u043f\u0456\u0437\u043d\u044f \u0432\u0435\u0440\u0441\u0456\u044f \u0446\u044c\u043e\u0433\u043e \u0437\u0430\u043f\u0438\u0441\u0443, \u043d\u0456\u0436 \u0432\u0435\u0440\u0441\u0456\u044f \u043d\u0438\u0436\u0447\u0435."],Autosaving:["\u0410\u0432\u0442\u043e\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f"],"Enter URL here\u2026":["\u0412\u0432\u0435\u0434\u0456\u0442\u044c URL \u0442\u0443\u0442\u2026"],"Pin to toolbar":["\u041f\u0440\u0438\u043a\u0440\u0456\u043f\u0438\u0442\u0438 \u0434\u043e \u043f\u0430\u043d\u0435\u043b\u0456 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432"],"Unpin from toolbar":["\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438 \u0437\u0430\u043a\u0440\u0456\u043f\u043b\u0435\u043d\u043d\u044f \u0432\u0456\u0434 \u043f\u0430\u043d\u0435\u043b\u0456 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432"],"Insert a table \u2014 perfect for sharing charts and data.":["\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0456 - \u0456\u0434\u0435\u0430\u043b\u044c\u043d\u043e \u043f\u0456\u0434\u0445\u043e\u0434\u0438\u0442\u044c \u0434\u043b\u044f \u043e\u0431\u043c\u0456\u043d\u0443 \u0434\u0456\u0430\u0433\u0440\u0430\u043c\u0430\u043c\u0438 \u0456 \u0434\u0430\u043d\u0438\u043c\u0438."],"Fixed width table cells":["\u041a\u043b\u0456\u0442\u0438\u043d\u043a\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u0456 \u0437 \u0444\u0456\u043a\u0441\u043e\u0432\u0430\u043d\u043e\u044e \u0448\u0438\u0440\u0438\u043d\u043e\u044e"],"Table Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0442\u0430\u0431\u043b\u0438\u0446\u0456"],"Add text that respects your spacing and tabs, and also allows styling.":["\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u0442\u0435\u043a\u0441\u0442, \u044f\u043a\u0438\u0439 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u0430\u0454 \u0432\u0430\u0448\u0438\u043c \u0456\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430\u043c \u0456 \u0432\u043a\u043b\u0430\u0434\u043a\u0430\u043c, \u0430 \u0442\u0430\u043a\u043e\u0436 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0454 \u0441\u0442\u0438\u043b\u0456\u0437\u0443\u0432\u0430\u0442\u0438."],"Display a list of your most recent posts.":["\u0412\u0438\u0432\u043e\u0434\u0438\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0430\u0448\u0438\u0445 \u043e\u0441\u0442\u0430\u043d\u043d\u0456\u0445 \u0437\u0430\u043f\u0438\u0441\u0456\u0432."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\u0414\u043e\u0434\u0430\u0454 \u0431\u043b\u043e\u043a, \u044f\u043a\u0438\u0439 \u0432\u0438\u0432\u043e\u0434\u0438\u0442\u044c \u0432\u043c\u0456\u0441\u0442 \u0437 \u0456\u043d\u0448\u0438\u0445 \u0441\u0430\u0439\u0442\u0456\u0432, \u0442\u0430\u043a\u0438\u0445 \u044f\u043a Twitter, Instagram \u0430\u0431\u043e YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u0431\u043b\u043e\u043a, \u044f\u043a\u0438\u0439 \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0430\u0454 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0432 \u0434\u0435\u043a\u0456\u043b\u044c\u043a\u043e\u0445 \u043a\u043e\u043b\u043e\u043d\u043a\u0430\u0445, \u0430 \u043f\u043e\u0442\u0456\u043c \u0432 \u0446\u0435\u0439 \u0431\u043b\u043e\u043a \u0434\u043e\u0434\u0430\u0439\u0442\u0435 \u0431\u0443\u0434\u044c-\u044f\u043a\u0456 \u0456\u043d\u0448\u0456 \u0431\u043b\u043e\u043a\u0438 \u0437 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c, \u044f\u043a\u0456 \u0432\u0438 \u0445\u043e\u0447\u0435\u0442\u0435."],"Error loading block: %s":["\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0431\u043b\u043e\u043a\u0443: %s"],"Unknown error":["\u041d\u0435\u0432\u0456\u0434\u043e\u043c\u0430 \u043f\u043e\u043c\u0438\u043b\u043a\u0430"],"Embed Handler":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043e\u0431\u0440\u043e\u0431\u043d\u0438\u043a"],"term\x04Remove %s":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 %s"],"Copy the permalink":["\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"Permalink copied":["\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u0441\u043a\u043e\u043f\u0456\u0439\u043e\u0432\u0430\u043d\u043e"],"Height in pixels":["\u0412\u0438\u0441\u043e\u0442\u0430 \u0432 \u043f\u0456\u043a\u0441\u0435\u043b\u044f\u0445"],"Spacer Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0440\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0438\u043a\u0430"],Spacer:["\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0438\u043a"],"Toggle to show a large initial letter.":["\u0417\u0440\u043e\u0431\u0438\u0442\u0438 \u043f\u043e\u0447\u0430\u0442\u043a\u043e\u0432\u0443 \u043b\u0456\u0442\u0435\u0440\u0443 \u0432\u0435\u043b\u0438\u043a\u043e\u044e."],"Showing large initial letter.":["\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u043f\u043e\u0447\u0430\u0442\u043a\u043e\u0432\u043e\u0457 \u043b\u0456\u0442\u0435\u0440\u0438."],"Name:":["\u0406\u043c'\u044f:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s \u0437 %3$s)"],"Remove item":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u0443\u043d\u043a\u0442"],"Color code: %s":["\u041a\u043e\u043b\u0456\u0440: %s"],"Skip to the selected block":["\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e \u0432\u0438\u0431\u0440\u0430\u043d\u043e\u0433\u043e \u0431\u043b\u043e\u043a\u0443"],"Publish\u2026":["\u041e\u043f\u0443\u0431\u043b\u0456\u043a\u0443\u0432\u0430\u0442\u0438\u2026"],"Schedule\u2026":["\u0417\u0430\u043f\u043b\u0430\u043d\u0443\u0432\u0430\u0442\u0438\u2026"],"Edit post permalink":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"Show Block Settings":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0431\u043b\u043e\u043a\u0443"],"Hide Block Settings":["\u041f\u0440\u0438\u0445\u043e\u0432\u0430\u0442\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0431\u043b\u043e\u043a\u0443"],"Block settings closed":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0431\u043b\u043e\u043a\u0443 \u0437\u0430\u043a\u0440\u0438\u0442\u0456"],"Close plugin":["\u0417\u0430\u043a\u0440\u0438\u0442\u0438 \u043f\u043b\u0430\u0433\u0456\u043d"],"Link settings":[],Unlink:["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"Page break":["\u0420\u043e\u0437\u0440\u0438\u0432 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438"],pagination:["\u043f\u0430\u0433\u0456\u043d\u0430\u0446\u0456\u044f"],"next page":["\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0430"],"Image Size":["\u0420\u043e\u0437\u043c\u0456\u0440 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],Height:["\u0412\u0438\u0441\u043e\u0442\u0430"],Width:["\u0428\u0438\u0440\u0438\u043d\u0430"],"Image Dimensions":["\u0420\u043e\u0437\u043c\u0456\u0440 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],"Thumbnails are not cropped.":["\u041c\u0456\u043d\u0456\u0430\u0442\u044e\u0440\u0438 \u043d\u0435 \u043e\u0431\u0440\u0456\u0437\u0430\u043d\u0456."],"Thumbnails are cropped to align.":["\u041c\u0456\u043d\u0456\u0430\u0442\u044e\u0440\u0438 \u043e\u0431\u0440\u0456\u0437\u0430\u044e\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f."],"Media Library":["\u041c\u0435\u0434\u0456\u0430\u0444\u0430\u0439\u043b\u0438"],Advanced:["\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u0456"],"Add item":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0435\u043b\u0435\u043c\u0435\u043d\u0442"],"Reset the template":["\u0421\u043a\u0438\u043d\u0443\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d"],"Keep it as is":["\u0417\u0430\u043b\u0438\u0448\u0438\u0442\u0438 \u0431\u0435\u0437 \u0437\u043c\u0456\u043d"],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u0412\u043c\u0456\u0441\u0442 \u043d\u0435 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u0430\u0454 \u0448\u0430\u0431\u043b\u043e\u043d\u0443, \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043e\u0433\u043e \u0446\u044c\u043e\u043c\u0443 \u0442\u0438\u043f\u0443 \u0437\u0430\u043f\u0438\u0441\u0443."],"Resetting the template may result in loss of content, do you want to continue?":["\u0421\u043a\u0438\u0434\u0430\u043d\u043d\u044f \u0448\u0430\u0431\u043b\u043e\u043d\u0443 \u043c\u043e\u0436\u0435 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u0434\u043e \u0432\u0442\u0440\u0430\u0442\u0438 \u0432\u043c\u0456\u0441\u0442\u0443, \u0445\u043e\u0447\u0435\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u0432\u0436\u0438\u0442\u0438?"],"Document Statistics":["\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443"],"is now scheduled. It will go live on":["\u0437\u0430\u043f\u043b\u0430\u043d\u043e\u0432\u0430\u043d\u0430 \u0456 \u0431\u0443\u0434\u0435 \u043e\u043f\u0443\u0431\u043b\u0456\u043a\u043e\u0432\u0430\u043d\u0430"],Scheduled:["\u0417\u0430\u043f\u043b\u0430\u043d\u043e\u0432\u0430\u043d\u0430"],"Scheduling\u2026":["\u041f\u043b\u0430\u043d\u0443\u0432\u0430\u043d\u043d\u044f\u2026"],"Code editor selected":["\u0412\u0438\u0431\u0440\u0430\u043d\u0438\u0439 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u043a\u043e\u0434\u0443"],"Visual editor selected":["\u0412\u0438\u0431\u0440\u0430\u043d\u0438\u0439 \u0432\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u0438\u0439 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440"],Plugins:["\u041f\u043b\u0430\u0433\u0456\u043d\u0438"],"Custom Size":["\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439 \u0440\u043e\u0437\u043c\u0456\u0440"],"Layout Elements":["\u0415\u043b\u0435\u043c\u0435\u043d\u0442\u0438 \u0440\u043e\u0437\u043c\u0456\u0442\u043a\u0438"],"term\x04%s removed":["%s \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u0438\u0439"],"term\x04%s added":["%s \u0434\u043e\u0434\u0430\u043d\u0438\u0439"],"imperative verb\x04Preview":["\u041f\u0435\u0440\u0435\u0434\u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434"],"Block deleted.":["\u0411\u043b\u043e\u043a \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u0438\u0439."],"Block updated.":["\u0411\u043b\u043e\u043a \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439."],"Block created.":["\u0411\u043b\u043e\u043a \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u0438\u0439."],"Trashing failed":["\u0412\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f \u043d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f"],"Updating failed.":["\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f."],"Scheduling failed.":["\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u043f\u043b\u0430\u043d\u0443\u0432\u0430\u0442\u0438."],"Publishing failed.":["\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457."],"View Post":["\u041f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u0443\u0442\u0438 \u0437\u0430\u043f\u0438\u0441"],"You have unsaved changes. If you proceed, they will be lost.":["\u0423 \u0432\u0430\u0441 \u0454 \u043d\u0435\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456 \u0437\u043c\u0456\u043d\u0438. \u042f\u043a\u0449\u043e \u0432\u0438 \u043f\u0440\u043e\u0434\u043e\u0432\u0436\u0438\u0442\u0435, \u0432\u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442\u044c \u0432\u0442\u0440\u0430\u0447\u0435\u043d\u0456."],"Document Outline":["\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443"],Paragraphs:["\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444\u0438"],Headings:["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438"],Words:["\u0421\u043b\u043e\u0432\u0430"],"Content structure":["\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0432\u043c\u0456\u0441\u0442\u0443"],Public:["\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u043e"],"Protected with a password you choose. Only those with the password can view this post.":["\u0417\u0430\u0445\u0438\u0449\u0435\u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0435\u043c, \u044f\u043a\u0438\u0439 \u0432\u0438 \u0432\u043a\u0430\u0436\u0435\u0442\u0435. \u0417\u0430\u043f\u0438\u0441 \u0437\u043c\u043e\u0436\u0443\u0442\u044c \u043f\u043e\u0434\u0438\u0432\u0438\u0442\u0438\u0441\u044f \u0442\u0456\u043b\u044c\u043a\u0438 \u0442\u0456, \u0432 \u043a\u043e\u0433\u043e \u0454 \u043f\u0430\u0440\u043e\u043b\u044c."],"Password Protected":["\u0417\u0430\u0445\u0438\u0449\u0435\u043d\u043e \u043f\u0430\u0440\u043e\u043b\u0435\u043c"],"Only visible to site admins and editors.":["\u0412\u0438\u0434\u043d\u043e \u0442\u0456\u043b\u044c\u043a\u0438 \u0430\u0434\u043c\u0456\u043d\u0456\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0430\u043c \u0456 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430\u043c."],Private:["\u041f\u0440\u0438\u0432\u0430\u0442\u043d\u0435"],"Visible to everyone.":["\u0412\u0438\u0434\u043d\u043e \u0432\u0441\u0456\u043c."],"Post Visibility":["\u0412\u0438\u0434\u0438\u043c\u0456\u0441\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0443"],"Would you like to privately publish this post now?":["\u0412\u0438 \u0445\u043e\u0447\u0435\u0442\u0435 \u043e\u043f\u0443\u0431\u043b\u0456\u043a\u0443\u0432\u0430\u0442\u0438 \u0437\u0430\u043f\u0438\u0441 \u044f\u043a \u043e\u0441\u043e\u0431\u0438\u0441\u0442\u0438\u0439?"],"Use a secure password":["\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u0431\u0435\u0437\u043f\u0435\u0447\u043d\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c"],"Create password":["\u0421\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043f\u0430\u0440\u043e\u043b\u044c"],"Move to Trash":["\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u0432 \u043a\u043e\u0448\u0438\u043a"],"Parent Term":["\u0411\u0430\u0442\u044c\u043a\u0456\u0432\u0441\u044c\u043a\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d"],"Parent Category":["\u0411\u0430\u0442\u044c\u043a\u0456\u0432\u0441\u044c\u043a\u0430 \u0440\u0443\u0431\u0440\u0438\u043a\u0430"],"Add new term":["\u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d"],"Add new category":["\u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0443 \u0440\u0443\u0431\u0440\u0438\u043a\u0443"],Term:["\u0422\u0435\u0440\u043c\u0456\u043d"],Tag:["\u041f\u043e\u0437\u043d\u0430\u0447\u043a\u0430"],"Add New Term":["\u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d"],"Add New Tag":["\u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0443 \u043f\u043e\u0437\u043d\u0430\u0447\u043a\u0443"],"Switch to Draft":["\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u0438\u0441\u044f \u043d\u0430 \u0447\u0435\u0440\u043d\u0435\u0442\u043a\u0443"],"Are you sure you want to unpublish this post?":["\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0441\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u044e \u0437\u0430\u043f\u0438\u0441\u0443?"],Immediately:["\u041d\u0435\u0433\u0430\u0439\u043d\u043e"],"Save Draft":["\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0447\u0435\u0440\u043d\u0435\u0442\u043a\u0443"],Saving:["\u0417\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f"],"Publish:":["\u041e\u043f\u0443\u0431\u043b\u0456\u043a\u043e\u0432\u0430\u043d\u0430:"],"Visibility:":["\u0412\u0438\u0434\u0438\u043c\u0456\u0441\u0442\u044c:"],"Are you ready to publish?":["\u0412\u0438 \u0433\u043e\u0442\u043e\u0432\u0456 \u043e\u043f\u0443\u0431\u043b\u0456\u043a\u0443\u0432\u0430\u0442\u0438?"],"Copy Link":["\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"What\u2019s next?":["\u0429\u043e \u0434\u0430\u043b\u0456?"],"is now live.":["\u043e\u043f\u0443\u0431\u043b\u0456\u043a\u043e\u0432\u0430\u043d\u0430."],Published:["\u041e\u043f\u0443\u0431\u043b\u0456\u043a\u043e\u0432\u0430\u043d\u043e"],Schedule:["\u0417\u0430\u043f\u043b\u0430\u043d\u0443\u0432\u0430\u0442\u0438"],Update:["\u041e\u043d\u043e\u0432\u0438\u0442\u0438"],"Submit for Review":["\u041d\u0430\u0434\u0456\u0441\u043b\u0430\u0442\u0438 \u043d\u0430 \u0440\u043e\u0437\u0433\u043b\u044f\u0434"],"Updating\u2026":["\u041e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f\u2026"],"Publishing\u2026":["\u041f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u044f\u2026"],"Allow Pingbacks & Trackbacks":["\u0414\u043e\u0437\u0432\u043e\u043b\u0438\u0442\u0438 \u0441\u043f\u043e\u0432\u0456\u0449\u0435\u043d\u043d\u044f \u0456 \u0437\u0432\u043e\u0440\u043e\u0442\u043d\u0456 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"Permalink:":["\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f:"],"Pending Review":["\u041e\u0447\u0456\u043a\u0443\u0454 \u0441\u0445\u0432\u0430\u043b\u0435\u043d\u043d\u044f"],"%d Revision":["%d \u0440\u0435\u0434\u0430\u043a\u0446\u0456\u044f","%d \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0457","%d \u0440\u0435\u0434\u0430\u043a\u0446\u0456\u0439"],"Suggestion:":["\u041f\u0440\u043e\u043f\u043e\u0437\u0438\u0446\u0456\u0457:"],"Post Format":["\u0424\u043e\u0440\u043c\u0430\u0442 \u0437\u0430\u043f\u0438\u0441\u0443"],Chat:["\u0427\u0430\u0442"],Status:["\u0421\u0442\u0430\u0442\u0443\u0441"],Standard:["\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u0439"],Aside:["\u0417\u0430\u043c\u0456\u0442\u043a\u0430"],"Set Featured Image":["\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u0456\u0442\u044c \u0433\u043e\u043b\u043e\u0432\u043d\u0435 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],"Learn more about manual excerpts":["\u0414\u0435\u0442\u0430\u043b\u044c\u043d\u0456\u0448\u0435 \u043f\u0440\u043e \u0443\u0440\u0438\u0432\u043a\u0438"],"Write an excerpt (optional)":["\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u0443\u0440\u0438\u0432\u043e\u043a (\u043d\u0435\u043e\u0431\u043e\u0432'\u044f\u0437\u043a\u043e\u0432\u043e)"],"Allow Comments":["\u0414\u043e\u0437\u0432\u043e\u043b\u0438\u0442\u0438 \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0456"],"Template:":["\u0428\u0430\u0431\u043b\u043e\u043d:"],"no parent":["\u0431\u0435\u0437 \u0431\u0430\u0442\u044c\u043a\u0430"],"no title":["\u0431\u0435\u0437 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0443"],Order:["\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0441\u043e\u0440\u0442\u0443\u0432\u0430\u043d\u043d\u044f"],"No blocks found.":["\u0411\u043b\u043e\u043a\u0456\u0432 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e."],"%d result found.":["\u0417\u043d\u0430\u0439\u0434\u0435\u043d\u043e %d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442.","\u0417\u043d\u0430\u0439\u0434\u0435\u043d\u043e %d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0456\u0432.","\u0417\u043d\u0430\u0439\u0434\u0435\u043d\u043e %d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442."],Saved:["\u0417\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043e"],Embeds:["\u0412\u0441\u0442\u0430\u0432\u043a\u0438"],Blocks:["\u0411\u043b\u043e\u043a\u0438"],"Search for a block":["\u041f\u043e\u0448\u0443\u043a \u0431\u043b\u043e\u043a\u0456\u0432"],"Add block":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0431\u043b\u043e\u043a"],"Add %s":["\u0414\u043e\u0434\u0430\u0442\u0438 %s"],"Copy Error":["\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u043a\u043e\u043f\u0456\u044e\u0432\u0430\u043d\u043d\u044f"],"Copy Post Text":["\u0421\u043a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u0442\u0435\u043a\u0441\u0442 \u0437\u0430\u043f\u0438\u0441\u0443"],"Attempt Recovery":["\u0421\u043f\u0440\u043e\u0431\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438"],"The editor has encountered an unexpected error.":["\u0421\u0442\u0430\u043b\u0430\u0441\u044f \u043d\u0435\u043e\u0447\u0456\u043a\u0443\u0432\u0430\u043d\u0430 \u043f\u043e\u043c\u0438\u043b\u043a\u0430."],Undo:["\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438"],Redo:["\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0438"],"(Multiple H1 headings are not recommended)":["(\u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0454\u0442\u044c\u0441\u044f \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0431\u0456\u043b\u044c\u0448\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0442\u0435\u0433\u0430 H1)"],"(Your theme may already use a H1 for the post title)":["(\u0412\u0430\u0448\u0430 \u0442\u0435\u043c\u0430 \u0432\u0436\u0435 \u043c\u043e\u0436\u0435 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0442\u0435\u0433 H1 \u0434\u043b\u044f \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0443)"],"(Incorrect heading level)":["(\u041d\u0435\u043a\u043e\u0440\u0435\u043a\u0442\u043d\u0438\u0439 \u0440\u0456\u0432\u0435\u043d\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430)"],"(Empty heading)":["(\u0411\u0435\u0437 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430)"],"Block Styles":["\u0421\u0442\u0438\u043b\u0456 \u0431\u043b\u043e\u043a\u0456\u0432"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0432\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0446\u0435\u0439 \u0441\u043f\u0456\u043b\u044c\u043d\u0438\u0439 \u0431\u043b\u043e\u043a?\n\u0412\u0430\u0448\u0456 \u0434\u0456\u0457 \u043f\u0440\u0438\u0437\u0432\u0435\u0434\u0443\u0442\u044c \u0434\u043e \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f \u0439\u043e\u0433\u043e \u0437 \u0443\u0441\u0456\u0445 \u0437\u0430\u043f\u0438\u0441\u0456\u0432 \u0456 \u0441\u0442\u043e\u0440\u0456\u043d\u043e\u043a."],"Convert to Regular Block":["\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0432 \u0437\u0432\u0438\u0447\u0430\u0439\u043d\u0438\u0439 \u0431\u043b\u043e\u043a"],"More options":["\u0429\u0435 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f"],"Edit visually":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u043e"],Duplicate:["\u0414\u0443\u0431\u043b\u044e\u0432\u0430\u0442\u0438"],"Blocks cannot be moved down as they are already at the bottom":["\u0411\u043b\u043e\u043a\u0438 \u043d\u0435 \u043c\u043e\u0436\u0443\u0442\u044c \u0431\u0443\u0442\u0438 \u043f\u0435\u0440\u0435\u043c\u0456\u0449\u0435\u043d\u0456 \u0432\u043d\u0438\u0437, \u0442\u0430\u043a \u044f\u043a \u0432\u043e\u043d\u0438 \u0432\u0436\u0435 \u0437\u043d\u0430\u0445\u043e\u0434\u044f\u0442\u044c\u0441\u044f \u0432 \u0441\u0430\u043c\u043e\u043c\u0443 \u043d\u0438\u0437\u0443"],"Blocks cannot be moved up as they are already at the top":["\u0411\u043b\u043e\u043a\u0438 \u043d\u0435 \u043c\u043e\u0436\u0443\u0442\u044c \u0431\u0443\u0442\u0438 \u043f\u0435\u0440\u0435\u043c\u0456\u0449\u0435\u043d\u0456 \u0432\u0433\u043e\u0440\u0443, \u0442\u0430\u043a \u044f\u043a \u0432\u043e\u043d\u0438 \u0432\u0436\u0435 \u0437\u043d\u0430\u0445\u043e\u0434\u044f\u0442\u044c\u0441\u044f \u0437\u0432\u0435\u0440\u0445\u0443"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["\u0411\u043b\u043e\u043a %s \u0454 \u0454\u0434\u0438\u043d\u0438\u043c \u0431\u043b\u043e\u043a\u043e\u043c \u0456 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u043f\u0435\u0440\u0435\u043c\u0456\u0449\u0435\u043d\u0438\u0439"],"Edit as HTML":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u044f\u043a HTML"],"Convert to Blocks":["\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0432 \u0431\u043b\u043e\u043a\u0438"],"Block: %s":["\u0411\u043b\u043e\u043a: %s"],"This block has encountered an error and cannot be previewed.":["\u0426\u0435\u0439 \u0431\u043b\u043e\u043a \u043c\u0456\u0441\u0442\u0438\u0442\u044c \u043f\u043e\u043c\u0438\u043b\u043a\u0443 \u0456 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u0443\u0442\u0438\u0439."],"No block selected.":["\u0411\u043b\u043e\u043a \u043d\u0435 \u043e\u0431\u0440\u0430\u043d\u0438\u0439."],"Transform into:":["\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0432:"],Remove:["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438"],"Find original":["\u0417\u043d\u0430\u0439\u0442\u0438 \u043e\u0440\u0438\u0433\u0456\u043d\u0430\u043b"],"Copy All Content":["\u0421\u043a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u0432\u0435\u0441\u044c \u0432\u043c\u0456\u0441\u0442"],"Copied!":["\u0421\u043a\u043e\u043f\u0456\u0439\u043e\u0432\u0430\u043d\u043e!"],"Additional settings are now available in the Editor block settings sidebar":["\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u0456 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0442\u0435\u043f\u0435\u0440 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0456 \u043d\u0430 \u0431\u0456\u0447\u043d\u0456\u0439 \u043f\u0430\u043d\u0435\u043b\u0456 \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u0438\u0445 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u044c"],Visibility:["\u0412\u0438\u0434\u0438\u043c\u0456\u0441\u0442\u044c"],"Status & Visibility":["\u0421\u0442\u0430\u0442\u0443\u0441 \u0456 \u0432\u0438\u0434\u0438\u043c\u0456\u0441\u0442\u044c"],"Page Attributes":["\u0410\u0442\u0440\u0438\u0431\u0443\u0442\u0438 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438"],Block:["\u0411\u043b\u043e\u043a"],Document:["\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442"],"Featured Image":["\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0437\u0430\u043f\u0438\u0441\u0443"],"Close settings":["\u0417\u0430\u043a\u0440\u0438\u0442\u0438 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f"],"Editor content":["\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0432\u043c\u0456\u0441\u0442\u0443"],Tools:["\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438"],Editor:["\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440"],"Code Editor":["\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u043a\u043e\u0434\u0443"],"Visual Editor":["\u0412\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u0438\u0439 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440"],"Editor top bar":["\u041f\u0430\u043d\u0435\u043b\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432"],Settings:["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f"],Reset:["\u0421\u043a\u0438\u043d\u0443\u0442\u0438"],"Dismiss this notice":["\u0417\u0430\u043a\u0440\u0438\u0442\u0438 \u0446\u0435 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f"],"Item removed.":["\u0415\u043b\u0435\u043c\u0435\u043d\u0442 \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u0438\u0439."],"Item added.":["\u0415\u043b\u0435\u043c\u0435\u043d\u0442 \u0434\u043e\u0434\u0430\u043d\u0438\u0439."],"Drop files to upload":["\u041f\u0435\u0440\u0435\u0442\u044f\u0433\u043d\u0456\u0442\u044c \u0444\u0430\u0439\u043b\u0438 \u0434\u043b\u044f \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f"],PM:["\u0432\u0435\u0447\u043e\u0440\u0430"],AM:["\u0440\u0430\u043d\u043a\u0443"],"An unknown error occurred.":["\u0412\u0438\u043d\u0438\u043a\u043b\u0430 \u043d\u0435\u0432\u0456\u0434\u043e\u043c\u0430 \u043f\u043e\u043c\u0438\u043b\u043a\u0430."],"No results.":["\u041d\u0435\u043c\u0430\u0454 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0456\u0432."],"%d result found, use up and down arrow keys to navigate.":["\u0417\u043d\u0430\u0439\u0434\u0435\u043d\u043e %d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442. \u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0456\u043b\u043a\u0438 \u043d\u0430 \u043a\u043b\u0430\u0432\u0456\u0430\u0442\u0443\u0440\u0456 \u0434\u043b\u044f \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0457.","\u0417\u043d\u0430\u0439\u0434\u0435\u043d\u043e %d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430. \u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0456\u043b\u043a\u0438 \u043d\u0430 \u043a\u043b\u0430\u0432\u0456\u0430\u0442\u0443\u0440\u0456 \u0434\u043b\u044f \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0457.","\u0417\u043d\u0430\u0439\u0434\u0435\u043d\u043e %d \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0456\u0432. \u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0456\u043b\u043a\u0438 \u043d\u0430 \u043a\u043b\u0430\u0432\u0456\u0430\u0442\u0443\u0440\u0456 \u0434\u043b\u044f \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0457."],"(no title)":["(\u0411\u0435\u0437 \u043d\u0430\u0437\u0432\u0438)"],URL:["URL"],Submit:["\u0412\u0456\u0434\u043f\u0440\u0430\u0432\u0438\u0442\u0438"],Close:["\u0417\u0430\u043a\u0440\u0438\u0442\u0438"],"Insert link":["\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"Edit link":["\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],Link:["\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],Strikethrough:["\u041f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439"],Italic:["\u041a\u0443\u0440\u0441\u0438\u0432"],Bold:["\u0416\u0438\u0440\u043d\u0438\u0439"],"Remove link":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f"],"Number of items":["\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0456\u0432"],All:["\u0423\u0441\u0435"],Category:["\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044f"],"Z \u2192 A":["\u042f \t \u0410"],"A \u2192 Z":["\u0410 \t \u042f"],"Oldest to Newest":["\u0412\u0456\u0434 \u0441\u0442\u0430\u0440\u0438\u0445 \u0434\u043e \u043d\u043e\u0432\u0438\u0445"],"Newest to Oldest":["\u0412\u0456\u0434 \u043d\u043e\u0432\u0438\u0445 \u0434\u043e \u0441\u0442\u0430\u0440\u0438\u0445"],"Order by":["\u0421\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0437\u0430"],Select:["\u0412\u0438\u0431\u0440\u0430\u0442\u0438"],"Select or Upload Media":["\u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u0430\u0431\u043e \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438"],Video:["\u0412\u0456\u0434\u0435\u043e"],"Edit video":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u0435\u043e"],"Write\u2026":["\u041d\u0430\u043f\u0438\u0448\u0456\u0442\u044c\u2026"],poetry:["\u043f\u043e\u0435\u0437\u0456\u044f"],Verse:["\u0412\u0456\u0440\u0448"],"New Column":["\u041d\u043e\u0432\u0438\u0439 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c"],"Delete Column":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c"],"Add Column After":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0456\u0441\u043b\u044f"],"Add Column Before":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u0434\u043e"],"Delete Row":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a"],"Add Row After":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0456\u0441\u043b\u044f"],"Add Row Before":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u0434\u043e"],"Edit table":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e"],Table:["\u0422\u0430\u0431\u043b\u0438\u0446\u044f"],"Write subheading\u2026":["\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u043f\u0456\u0434\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u2026"],"Write shortcode here\u2026":["\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0448\u043e\u0440\u0442\u043a\u043e\u0434 \u0442\u0443\u0442\u2026"],Shortcode:["\u041a\u043e\u0440\u043e\u0442\u043a\u0438\u0439 \u043a\u043e\u0434"],divider:["\u0440\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0438\u043a"],"horizontal-line":["\u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430-\u043b\u0456\u043d\u0456\u044f"],Separator:["\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0438\u043a"],Quote:["\u0426\u0438\u0442\u0430\u0442\u0430"],"Write citation\u2026":["\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0446\u0438\u0442\u0430\u0442\u0443\u2026"],"Write quote\u2026":["\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0446\u0438\u0442\u0430\u0442\u0443\u2026"],Pullquote:["\u0412\u0438\u0442\u0440\u0438\u043c\u043a\u0430"],"Write preformatted text\u2026":["\u041d\u0430\u043f\u0438\u0448\u0456\u0442\u044c \u043f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u044c\u043e \u0432\u0456\u0434\u0444\u043e\u0440\u043c\u0430\u0442\u043e\u0432\u0430\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442\u2026"],Preformatted:["\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u044c\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u043e\u0432\u0430\u043d\u0438\u0439"],text:["\u0442\u0435\u043a\u0441\u0442"],Paragraph:["\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444"],"Font Size":["\u0420\u043e\u0437\u043c\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0443"],"Drop Cap":["\u0411\u0443\u043a\u0432\u0438\u0446\u044f"],"Text Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0442\u0435\u043a\u0441\u0442\u0443"],"Read more":["\u0427\u0438\u0442\u0430\u0442\u0438 \u0434\u0430\u043b\u0456"],"Write list\u2026":["\u0421\u043a\u043b\u0430\u0441\u0442\u0438 \u0441\u043f\u0438\u0441\u043e\u043a\u2026"],"numbered list":["\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a"],"ordered list":["\u0432\u0456\u0434\u0441\u043e\u0440\u0442\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a"],"bullet list":["\u043c\u0430\u0440\u043a\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a"],"Indent list item":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f \u0434\u043e \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0456\u0432 \u0441\u043f\u0438\u0441\u043a\u0443"],"Outdent list item":["\u041f\u0440\u0438\u0431\u0440\u0430\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f \u0432 \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0456\u0432 \u0441\u043f\u0438\u0441\u043a\u0443"],"Convert to ordered list":["\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0432 \u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a"],"Convert to unordered list":["\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0432 \u043c\u0430\u0440\u043a\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a"],List:["\u0421\u043f\u0438\u0441\u043e\u043a"],"recent posts":["\u043e\u0441\u0442\u0430\u043d\u043d\u0456 \u0437\u0430\u043f\u0438\u0441\u0438"],"No posts found.":["\u0417\u0430\u043f\u0438\u0441\u0456\u0432 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e."],"Latest Posts":["\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0437\u0430\u043f\u0438\u0441\u0438"],"Display post date":["\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u0438 \u0434\u0430\u0442\u0443 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457"],"Grid view":[],"List view":[],photo:["\u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0456\u044f"],"Image Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],Image:["\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],Preview:["\u041f\u0435\u0440\u0435\u0434\u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434"],embed:["\u0432\u0441\u0442\u0430\u0432\u043a\u0430"],"Custom HTML":["\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u043b\u044c\u043d\u0438\u0446\u044c\u043a\u0438\u0439 HTML"],subtitle:["\u043f\u0456\u0434\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"],title:["\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"],Heading:["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"],"Write heading\u2026":["\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u2026"],"Heading %d":["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a %s"],Level:["\u0420\u0456\u0432\u0435\u043d\u044c"],"Heading Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0443"],photos:["\u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0456\u0457"],images:["\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],"Remove Image":["\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],None:["\u041d\u0435 \u0432\u043a\u0430\u0437\u0430\u043d\u043e"],"Media File":["\u041c\u0435\u0434\u0456\u0430\u0444\u0430\u0439\u043b"],"Attachment Page":["\u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0430 \u0432\u043a\u043b\u0430\u0434\u0435\u043d\u043d\u044f"],"Crop Images":["\u041e\u0431\u0440\u0456\u0437\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],"Gallery Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0433\u0430\u043b\u0435\u0440\u0435\u0457"],Gallery:["\u0413\u0430\u043b\u0435\u0440\u0435\u044f"],Classic:["\u041a\u043b\u0430\u0441\u0438\u0447\u043d\u0438\u0439"],video:["\u0432\u0456\u0434\u0435\u043e"],audio:["\u0430\u0443\u0434\u0456\u043e"],music:["\u043c\u0443\u0437\u0438\u043a\u0430"],image:["\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],blog:["\u0431\u043b\u043e\u0433"],post:["\u0437\u0430\u043f\u0438\u0441"],"Embedded content from %s":["\u0412\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0439 \u0432\u043c\u0456\u0441\u0442 \u0437 %s"],"Enter URL to embed here\u2026":["\u0412\u043a\u0430\u0436\u0456\u0442\u044c URL \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["\u0412\u0441\u0442\u0430\u0432\u043a\u0430\u2026"],"Write title\u2026":["\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u2026"],"Fixed Background":["\u0424\u0456\u043a\u0441\u043e\u0432\u0430\u043d\u0438\u0439 \u0444\u043e\u043d"],"Edit image":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"],Columns:["\u0421\u0442\u043e\u0432\u043f\u0446\u0456"],Experiments:[],Code:["\u041a\u043e\u0434"],"Write code\u2026":["\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u043a\u043e\u0434\u2026"],Categories:["\u0420\u0443\u0431\u0440\u0438\u043a\u0438"],"Show Hierarchy":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0406\u0454\u0440\u0430\u0440\u0445\u0456\u044e"],"Show post counts":["\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0456\u0432"],"Categories Settings":["\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0440\u0443\u0431\u0440\u0438\u043a"],"Add text\u2026":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0442\u0435\u043a\u0441\u0442\u2026"],Button:["\u041a\u043d\u043e\u043f\u043a\u0430"],Apply:["\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438"],"Text Color":["\u041a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443"],"Background Color":["\u041a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443"],"Block has been deleted or is unavailable.":["\u0411\u043b\u043e\u043a \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u0438\u0439 \u0430\u0431\u043e \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0438\u0439."],"Reusable Blocks":["\u0411\u0430\u0433\u0430\u0442\u043e\u0440\u0430\u0437\u043e\u0432\u0438\u0439 \u0431\u043b\u043e\u043a"],Cancel:["\u0412\u0456\u0434\u043c\u0456\u043d\u0430"],Edit:["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438"],"Edit audio":["\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0430\u0443\u0434\u0456\u043e"],"Write caption\u2026":["\u041d\u0430\u043f\u0438\u0448\u0456\u0442\u044c \u043f\u0456\u0434\u043f\u0438\u0441\u2026"],"Use URL":["\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 URL"],Audio:["\u0410\u0443\u0434\u0456\u043e"],Upload:["\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438"],"Additional CSS Class(es)":["\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u0438\u0439 \u043a\u043b\u0430\u0441(\u0438) CSS"],"HTML Anchor":["HTML \u042f\u043a\u0456\u0440"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u0426\u0435 \u043f\u043e\u0454\u0434\u043d\u0430\u043d\u043d\u044f \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432 \u043c\u043e\u0436\u0435 \u0443\u0442\u0440\u0443\u0434\u043d\u0438\u0442\u0438 \u0447\u0438\u0442\u0430\u043d\u043d\u044f. \u0421\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0431\u0456\u043b\u044c\u0448\u0435 \u044f\u0441\u043a\u0440\u0430\u0432\u0438\u0439 \u043a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443 \u0456 / \u0430\u0431\u043e \u0431\u0456\u043b\u044c\u0448\u0435 \u0442\u0435\u043c\u043d\u0438\u0439 \u043a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u0426\u0435 \u043f\u043e\u0454\u0434\u043d\u0430\u043d\u043d\u044f \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432 \u043c\u043e\u0436\u0435 \u0443\u0442\u0440\u0443\u0434\u043d\u0438\u0442\u0438 \u0447\u0438\u0442\u0430\u043d\u043d\u044f. \u0421\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0431\u0456\u043b\u044c\u0448\u0435 \u0442\u0435\u043c\u043d\u0438\u0439 \u043a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443 \u0456 / \u0430\u0431\u043e \u0431\u0456\u043b\u044c\u0448\u0435 \u044f\u0441\u043a\u0440\u0430\u0432\u0438\u0439 \u043a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443."],Clear:["\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438"],"Custom color picker":["\u0414\u043e\u0432\u0456\u043b\u044c\u043d\u0438\u0439 \u0432\u0438\u0431\u0456\u0440 \u043a\u043e\u043b\u044c\u043e\u0440\u0443"],"Color: %s":["\u041a\u043e\u043b\u0456\u0440: %s"],"Full Width":["\u041d\u0430 \u0432\u0441\u044e \u0448\u0438\u0440\u0438\u043d\u0443"],"Wide Width":[],Widgets:["\u0412\u0456\u0434\u0436\u0435\u0442\u0438"],Formatting:["\u0424\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f"],"Common Blocks":["\u041e\u0441\u043d\u043e\u0432\u043d\u0456 \u0431\u043b\u043e\u043a\u0438"],"Align Right":["\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e"],"Align Center":["\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443"],"Align Left":["\u041f\u043e \u043b\u0456\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e"],"Printing since 1440. This is the development plugin for the new block editor in core.":["\u0414\u0440\u0443\u043a\u0443\u0454\u043c\u043e \u0437 1440 \u0440\u043e\u043a\u0443. \u0426\u0435 \u0440\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u043f\u043b\u0430\u0433\u0456\u043d\u0430 \u0434\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 \u0431\u043b\u043e\u043a\u0456\u0432 \u0432 \u044f\u0434\u0440\u0456."],"Add title":["\u0414\u043e\u0434\u0430\u0442\u0438 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["\u0420\u0435\u0436\u0438\u043c \u0440\u043e\u0437\u0440\u043e\u0431\u043a\u0438 Gutenberg \u0432\u0438\u043c\u0430\u0433\u0430\u0454 \u043a\u043e\u043c\u043f\u043e\u043d\u0443\u0432\u0430\u043d\u043d\u044f \u0444\u0430\u0439\u043b\u0456\u0432. \u0417\u0430\u043f\u0443\u0441\u0442\u0456\u0442\u044c npm install \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0437\u0430\u043b\u0435\u0436\u043d\u043e\u0441\u0442\u0435\u0439, npm run build \u0434\u043b\u044f \u043a\u043e\u043c\u043f\u043e\u043d\u0443\u0432\u0430\u043d\u043d\u044f \u0444\u0430\u0439\u043b\u0456\u0432 \u0430\u0431\u043e npm run dev \u0434\u043b\u044f \u0457\u0445 \u043a\u043e\u043c\u043f\u043e\u043d\u0443\u0432\u0430\u043d\u043d\u044f \u0456 \u0432\u0456\u0434\u0441\u0442\u0435\u0436\u0435\u043d\u043d\u044f \u0437\u043c\u0456\u043d. \u0414\u043b\u044f \u0431\u0456\u043b\u044c\u0448 \u0434\u0435\u0442\u0430\u043b\u044c\u043d\u043e\u0457 \u0456\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u0457 \u043e\u0437\u043d\u0430\u0439\u043e\u043c\u0442\u0435\u0441\u044c \u0437 \u0444\u0430\u0439\u043b\u043e\u043c \u043f\u0440\u043e \u0443\u0447\u0430\u0441\u0442\u044c."],Author:["\u0410\u0432\u0442\u043e\u0440"],Slug:["\ufeff\u042f\u0440\u043b\u0438\u043a"],Discussion:["\u041e\u0431\u0433\u043e\u0432\u043e\u0440\u0435\u043d\u043d\u044f"],"Custom Fields":["\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u043b\u044c\u043d\u0438\u0446\u044c\u043a\u0456 \u043f\u043e\u043b\u044f"],Excerpt:["\u0423\u0440\u0438\u0432\u043e\u043a"],Publish:["\u041e\u043f\u0443\u0431\u043b\u0456\u043a\u0443\u0432\u0430\u0442\u0438"],Metadata:["\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u0456"],Save:["\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438"],Documentation:["\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0456\u044f"],"Select Category":["\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0440\u0443\u0431\u0440\u0438\u043a\u0443"],"(Untitled)":["(\u0411\u0435\u0437 \u043d\u0430\u0437\u0432\u0438)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["\u0413\u0443\u0442\u0435\u043d\u0431\u0435\u0440\u0433 \u0432\u0438\u043c\u0430\u0433\u0430\u0454 WordPress %s \u0430\u0431\u043e \u043f\u0456\u0437\u043d\u0456\u0448\u043e\u0457 \u0434\u043b\u044f \u043d\u0430\u043b\u0435\u0436\u043d\u043e\u0433\u043e \u0444\u0443\u043d\u043a\u0446\u0456\u043e\u043d\u0443\u0432\u0430\u043d\u043d\u044f. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u043e\u043d\u043e\u0432\u0456\u0442\u044c WordPress \u043f\u0435\u0440\u0435\u0434 \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0456\u0454\u044e Gutenberg."],"Gutenberg Team":["\u041a\u043e\u043c\u0430\u043d\u0434\u0430 Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["\u0414\u0435\u043c\u043e"],"%s ago":["%s \u043d\u0430\u0437\u0430\u0434"],"Block style name must be a string.":[]}},868,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":["\u0637\u06d2 \u0634\u062f\u06c1 \u0627\u0646\u062f\u0627\u0632"],"Not set":["\u0645\u0642\u0631\u0631 \u0646\u06c1\u06cc\u06ba \u06a9\u06cc\u0627"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["\u06c1\u0631 \u0628\u0644\u0627\u06a9 \u06a9\u06cc \u062e\u0635\u0648\u0635\u06cc\u062a \u062c\u0627\u0646\u0646\u06d2 \u06a9\u06d2 \u0644\u0626\u06cc\u06d2 \u0644\u0627\u0626\u0628\u0631\u06cc\u0631\u06cc \u0645\u0644\u0627\u062d\u0636\u06c1 \u0641\u0631\u0645\u0627\u0626\u06cc\u06ba"],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":["\u06a9\u0627\u0644\u0645 \u06a9\u0648 \u062f\u0627\u0626\u06cc\u06ba \u062c\u0627\u0646\u0628 \u0633\u06cc\u062f\u06be \u0645\u06cc\u06ba \u0644\u0627\u0626\u06cc\u06ba\u06d4"],"Align Column Center":[],"Align Column Left":["\u06a9\u0627\u0644\u0645 \u06a9\u0648 \u0628\u0627\u0626\u06cc\u06ba \u062c\u0627\u0646\u0628 \u0633\u06cc\u062f\u06be \u0645\u06cc\u06ba \u0644\u0627\u0626\u06cc\u06ba\u06d4"],Color:[],"Vivid purple":[],"Disable & Reload":["\u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0631\u06cc\u06ba \u0627\u0648\u0631 \u062f\u0648\u0628\u0627\u0631\u06c1 \u0644\u0648\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Enable & Reload":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u06cc\u06ba \u0627\u0648\u0631 \u062f\u0648\u0628\u0627\u0631\u06c1 \u0644\u0648\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:["\u0645\u0631\u0636\u06cc \u06a9\u06d2 \u0645\u0637\u0627\u0628\u0642"],Draft:["\u0688\u0631\u0627\u0641\u0679"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:["\u0633\u06a9\u067e \u06a9\u0631\u06cc\u06ba"],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":["\u06cc\u06c1 \u06a9\u06cc\u0627 \u06c1\u06d2\u061f"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":["\u0639\u0646\u0648\u0627\u0646 \u06a9\u06cc \u062e\u0635\u0648\u0635\u06cc\u062a"],"SEO Settings":["\u0627\u06cc\u0633-\u0627\u06cc-\u0627\u0648 \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],Description:["\u0648\u0636\u0627\u062d\u062a"],"Open in new tab":["\u0646\u0626\u06d2 \u0679\u06cc\u0628 \u0645\u06cc\u06ba \u06a9\u06be\u0648\u0644\u06cc\u06ba"],links:["\u0644\u0646\u06a9\u0633"],navigation:["\u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646"],menu:["\u0645\u06cc\u0646\u0648"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":["\u0627\u0644\u0641\u0627\u0638"],"content placeholder\x04Content\u2026":["\u0645\u0648\u0627\u062f\u06d4\u06d4\u06d4"],"button label\x04Convert to link":["\u0644\u0646\u06a9 \u0645\u06cc\u06ba \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba"],"button label\x04Try again":["\u062f\u0648\u0628\u0627\u0631\u06c1 \u06a9\u0648\u0634\u0634 \u06a9\u0631\u06cc\u06ba"],"Editor tips":["\u0627\u06cc\u0688\u06cc\u0679\u0631 \u062a\u062c\u0627\u0648\u06cc\u0632"],"Block (selected)":["\u0628\u0644\u0627\u06a9 (\u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u062f\u06c1)"],"Document (selected)":["\u062f\u0633\u062a\u0627\u0648\u06cc\u0632 (\u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u062f\u06c1)"],"%d word":["%d \u0644\u0641\u0638","%d \u0627\u0644\u0641\u0627\u0638"],"Top Toolbar":["\u0679\u0627\u067e \u0679\u0648\u0644 \u0628\u0627\u0631"],"Link Rel":["\u0644\u0646\u06a9 Rel"],"Link CSS Class":["\u0633\u06cc \u0627\u06cc\u0633 \u0627\u06cc\u0633 \u06a9\u0644\u0627\u0633 \u0644\u0646\u06a9 \u06a9\u0631\u06cc\u06ba"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u0645\u0648\u0627\u062f \u0628\u0646\u0627 \u06a9\u0631 \u0627\u0633\u06d2 \u0627\u067e\u0646\u06d2 \u0627\u0648\u0631 \u062f\u06cc\u06af\u0631 \u0634\u0631\u06cc\u06a9 \u06a9\u0627\u0631\u0648\u06ba \u06a9\u06d2 \u062f\u0648\u0628\u0627\u0631\u06c1 \u0633\u0627\u0626\u0679 \u067e\u0631 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0645\u062d\u0641\u0648\u0638 \u06a9\u0631\u06cc\u06ba\u06d4 \u0627\u0633 \u0628\u0644\u0627\u06a9 \u0645\u06cc\u06ba \u06a9\u06cc \u06af\u0626\u06cc \u062a\u0628\u062f\u06cc\u0644\u06cc \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u06cc \u06af\u0626\u06cc \u06c1\u0631 \u062c\u06af\u06c1 \u067e\u0631 \u062f\u06cc\u06a9\u06be\u06cc \u062c\u0627 \u0633\u06a9\u06d2 \u06af\u06cc\u06d4"],"To edit the featured image, you need permission to upload media.":["\u0646\u0645\u0627\u06cc\u0627\u06ba \u062a\u0635\u0648\u06cc\u0631 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u06d2 \u0644\u06cc\u06d2\u060c \u0622\u067e \u06a9\u0648 \u0645\u06cc\u0688\u06cc\u0627 \u0627\u067e\u0644\u0648\u0688 \u06a9\u06cc \u0627\u062c\u0627\u0632\u062a \u062f\u0631\u06a9\u0627\u0631 \u06c1\u06d2\u06d4"],"To edit this block, you need permission to upload media.":["\u0627\u0633 \u062d\u0635\u06d2 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u06d2 \u0644\u06cc\u06d2\u060c \u0622\u067e \u06a9\u0648 \u0645\u06cc\u0688\u06cc\u0627 \u0627\u067e\u0644\u0648\u0688 \u06a9\u0631\u0646\u06d2 \u06a9\u06cc \u0627\u062c\u0627\u0632\u062a \u062f\u0631\u06a9\u0627\u0631 \u06c1\u06d2\u06d4"],"(selected block)":["(\u0633\u0644\u06cc\u06a9\u0679 \u06a9\u06cc\u06d2 \u06c1\u0648\u0626\u06d2 \u0628\u0644\u0627\u06a9)"],"Block tools":["\u0628\u0644\u0627\u06a9 \u0679\u0648\u0644\u0632"],Permalink:["\u067e\u0631\u0645\u0627\u0644\u0646\u06a9"],"This image has an empty alt attribute":["\u0627\u0633 \u0627\u0645\u06cc\u062c \u06a9\u0627 \"ALT\" \u0679\u06cc\u06af \u0646\u06c1\u06cc\u06ba \u06c1\u06d2"],"This image has an empty alt attribute; its file name is %s":["\u0627\u0633 \u0627\u0645\u06cc\u062c \u06a9\u0627 \"ALT\" \u0679\u06cc\u06af \u0646\u06c1\u06cc\u06ba \u06c1\u06d2. \u0627\u0648\u0631 \u0627\u0633 \u06a9\u06cc \u0641\u0627\u0626\u0644 \u06a9\u0627 \u0646\u0627\u0645 %s \u06c1\u06d2"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":["\u0646\u06cc\u0627 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06d2"],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["\u062a\u0646\u0628\u06cc\u06c1: \u0644\u0646\u06a9 \u062f\u0627\u062e\u0644 \u06a9\u06cc\u0627 \u06af\u06cc\u0627 \u06c1\u06d2 \u0644\u06cc\u06a9\u0646 \u063a\u0644\u0637\u06cc\u0627\u06ba \u06c1\u0648 \u0633\u06a9\u062a\u06cc \u06c1\u06d2\u06d4 \u0645\u06c1\u0631\u0628\u0627\u0646\u06cc \u0679\u06cc\u0633\u0679 \u06a9\u0631\u06cc\u06ba\u06d4"],"%s block selected.":["%s \u0628\u0644\u0627\u06a9 \u0633\u0644\u06cc\u06a9\u0679 \u06c1\u0648\u06af\u06cc\u0627 \u06c1\u06d2\u06d4","%s \u0628\u0644\u0627\u06a9 \u0633\u0644\u06cc\u06a9\u0679 \u06c1\u0648 \u06af\u0626\u06d2 \u06c1\u06cc\u06ba\u06d4"],Thumbnail:["\u062a\u06be\u0645\u0628 \u0646\u06cc\u0644"],"Full Size":["\u0645\u06a9\u0645\u0644 \u0633\u0627\u0626\u0632"],"Link selected.":[],"Start writing with text or HTML":["\u0679\u06cc\u06a9\u0633\u0679 \u06cc\u0627 \u0627\u06cc\u0686 \u0679\u06cc \u0627\u06cc\u0645 \u0627\u06cc\u0644 \u0645\u06cc\u06ba \u0644\u06a9\u06be\u0646\u0627 \u0634\u0631\u0648\u0639 \u06a9\u0631\u06cc\u06ba"],"Type text or HTML":["\u0679\u06cc\u06a9\u0633\u0679 \u06cc\u0627 \u0627\u06cc\u0686 \u0679\u06cc \u0627\u06cc\u0645 \u0627\u06cc\u0644 \u0644\u06a9\u06be\u06cc\u06ba"],"Block icon":["\u0628\u0644\u0627\u06a9 \u0622\u0626\u06cc\u06a9\u0648\u0646"],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":["\u0644\u06a9\u06be\u0646\u0627 \u0634\u0631\u0648\u0639 \u06a9\u0631\u06cc\u06ba \u06cc\u0627 \u0628\u0644\u0627\u06a9 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"],"Empty block; start writing or type forward slash to choose a block":["\u062e\u0627\u0644\u06cc \u0628\u0644\u0627\u06a9\u061b \u0644\u06a9\u06be\u0646\u0627 \u0634\u0631\u0648\u0639 \u06a9\u0631\u06cc\u06ba \u06cc\u0627 \u0633\u0644\u06cc\u0634 \u0644\u06a9\u06be \u06a9\u0631 \u0628\u0644\u0627\u06a9 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba\u06d4"],"Paragraph block":["\u067e\u06cc\u0631\u0627\u06af\u0631\u0627\u0641 \u0628\u0644\u0627\u06a9"],"Page Break":["\u067e\u06cc\u062c \u0628\u0631\u06cc\u06a9"],"Stack on mobile":["\u0645\u0648\u0628\u0627\u0626\u0644 \u067e\u0631 \u0633\u0679\u06cc\u06a9"],Annotation:["\u0644\u0646\u06a9 \u0688\u0627\u0644 \u062f\u06cc\u0627 \u06af\u06cc\u0627"],"Drag images, upload new ones or select files from your library.":["\u0688\u0631\u06cc\u06af \u06a9\u0631\u06a9\u06d2\u060c \u0627\u067e\u0644\u0648\u0688 \u06a9\u0631\u06a9\u06d2\u060c \u06cc\u0627 \u0627\u067e\u0646\u06cc \u0644\u0627\u0626\u0628\u0631\u06cc\u0631\u06cc\u0633\u06d2 \u062a\u0635\u0648\u06cc\u0631 \u0633\u0644\u06cc\u06a9\u0679 \u06a9\u0631\u06cc\u06ba\u06d4"],"blocks\x04Most Used":["\u0632\u06cc\u0627\u062f\u06c1 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0634\u062f\u06c1"],"imperative verb\x04Resolve":["\u062d\u0644 \u06a9\u0631\u06cc\u06ba"],"font size name\x04Huge":["\u0628\u06c1\u062a \u0628\u0691\u0627"],"font size name\x04Large":["\u0628\u0691\u0627"],"font size name\x04Medium":["\u062f\u0631\u0645\u06cc\u0627\u0646\u06c1"],"font size name\x04Small":["\u0686\u06be\u0648\u0679\u0627"],"font size name\x04Normal":["\u0639\u0645\u0648\u0645\u06cc"],"keyboard button\x04Enter":["\u0627\u06cc\u0646\u0679\u0631"],"button label\x04Import":["\u062f\u0631\u0622\u0645\u062f \u06a9\u0631\u06cc\u06ba"],"button label\x04Download":["\u0688\u0627\u0624\u0646 \u0644\u0648\u0688"],"button label\x04Embed":["\u0627\u06cc\u0645\u0628\u06cc\u0688"],"block title\x04Embed":["\u0627\u06cc\u0645\u0628\u06cc\u0688"],"block title\x04Classic":["\u06a9\u0644\u0627\u0633\u06a9"],"block style\x04Large":["\u0628\u0691\u0627"],"%s (opens in a new tab)":["%s ( \u0627\u06af\u0644\u06cc \u0679\u06cc\u0628 \u0645\u06cc\u06ba \u06a9\u06be\u0644\u06d2 \u06af\u0627)"],"Link edited.":["\u0644\u0646\u06a9 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631 \u062f\u06cc \u06af\u0626\u06cc\u06d4"],"Link removed.":["\u0644\u0646\u06a9 \u062d\u0630\u0641 \u06a9\u0631 \u062f\u06cc\u0627 \u06af\u06cc\u0627 \u06c1\u06d2\u06d4"],media:["\u0645\u06cc\u0688\u06cc\u0627"],"Double-check your settings before publishing.":["\u0634\u0627\u0626\u0639 \u06a9\u0631\u0646\u06d2 \u0633\u06d2 \u067e\u06c1\u0644\u06d2 \u0627\u067e\u0646\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a \u06a9\u0648 \u062f\u0648\u0628\u0627\u0631\u06c1 \u0686\u06cc\u06a9 \u06a9\u0631\u06cc\u06ba\u06d4"],"Generating preview\u2026":["\u067e\u06cc\u0634 \u0645\u0646\u0638\u0631 \u062a\u06cc\u0627\u0631 \u06a9\u06cc\u0627 \u062c\u0627 \u0631\u06c1\u0627 \u06c1\u06d2\u06d4\u06d4\u06d4"],"Edit or update the image":["\u062a\u0635\u0648\u06cc\u0631 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06cc\u0627 \u0627\u067e\u0688\u06cc\u0679 \u06a9\u0631\u06cc\u06ba"],Media:["\u0645\u06cc\u0688\u06cc\u0627"],"Navigate to the nearest toolbar.":["\u0642\u0631\u06cc\u0628\u06cc \u0679\u0648\u0644 \u0628\u0627\u0631 \u067e\u0631 \u062c\u0627\u0626\u06cc\u06ba\u06d4"],"Document tools":["\u062f\u0633\u062a\u0627\u0648\u06cc\u0632 \u0679\u0648\u0644\u0632"],"Document and block tools":["\u062f\u0633\u062a\u0627\u0648\u06cc\u0632 \u0627\u0648\u0631 \u0628\u0644\u0627\u06a9 \u0679\u0648\u0644\u0632"],"Embed a video from your media library or upload a new one.":["\u0627\u067e\u0646\u06cc \u0645\u06cc\u0688\u06cc\u0627 \u0644\u0627\u0626\u0628\u0631\u06cc\u0631\u06cc \u0633\u06d2 \u0648\u06cc\u0688\u06cc\u0648 \u0633\u0644\u06cc\u06a9\u0679 \u06a9\u0631\u06cc\u06ba \u06cc\u0627 \u0627\u06cc\u06a9 \u0646\u0626\u06cc \u0627\u067e\u0644\u0648\u0688 \u06a9\u0631\u06cc\u06ba"],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u0634\u0627\u0639\u0631\u06cc \u0644\u06a9\u06be\u06cc\u06ba\u06d4 \u0645\u062e\u0635\u0648\u0635 \u0641\u0627\u0631\u0645\u06cc\u0679 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba \u06cc\u0627 \u06af\u0627\u0646\u06d2 \u06a9\u06d2 \u0628\u0648\u0644 \u0644\u06a9\u06be\u06cc\u06ba\u06d4"],"Add white space between blocks and customize its height.":["\u0628\u0644\u0627\u06a9 \u06a9\u06d2 \u062f\u0631\u0645\u06cc\u0627\u0646 \u0633\u0641\u06cc\u062f \u062c\u06af\u06c1 \u0627\u06cc\u0688 \u06a9\u0631\u06cc\u06ba \u0627\u0648\u0631 \u0627\u0633 \u06a9\u06cc \u06c1\u0627\u0626\u06cc\u0679 \u06a9\u0648 \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Insert additional custom elements with a WordPress shortcode.":["\u0648\u0631\u0688\u067e\u0631\u06cc\u0633 \u0634\u0627\u0631\u0679 \u06a9\u0648\u0688 \u06a9\u06d2 \u0630\u0631\u06cc\u0639\u06d2 \u0633\u06d2 \u06a9\u0633\u0679\u0645 \u0627\u06cc\u0644\u06cc\u0645\u0646\u0679 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Create a break between ideas or sections with a horizontal separator.":["\u0627\u0641\u0642\u06cc \u0644\u06a9\u06cc\u0631 \u06a9\u06cc \u0645\u062f\u062f \u0633\u06d2 \u062e\u06cc\u0627\u0644\u0627\u062a \u06cc\u0627 \u062d\u0635\u0648\u06ba \u0645\u06cc\u06ba \u0648\u0642\u0641\u06c1 \u0628\u0646\u0627\u0626\u06cc\u06ba\u06d4"],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u062d\u0648\u0627\u0644\u06c1 \u0645\u062a\u0646 \u0628\u0635\u0631\u06cc \u0632\u0648\u0631 \u062f\u06cc\u062a\u06d2 \u06c1\u06cc\u06ba\u06d4 \"\u062f\u0648\u0633\u0631\u0648\u06ba \u06a9\u06d2 \u062d\u0648\u0627\u0644\u06d2 \u0633\u06d2\u060c \u06c1\u0645 \u062e\u0648\u062f \u06a9\u0627 \u062d\u0648\u0627\u0644\u06c1 \u062f\u06cc\u062a\u06d2 \u06c1\u06cc\u06ba\u06d4\" \u062c\u0648\u0644\u06cc\u0648 \u06a9\u0627\u0631\u0679\u0631"],"Give special visual emphasis to a quote from your text.":["\u0627\u067e\u0646\u06d2 \u0679\u06cc\u06a9\u0633\u0679 \u0645\u06cc\u06ba \u0633\u06d2 \u06a9\u0633\u06cc \u06a9\u0648\u0679 \u06a9\u0648 \u0638\u0627\u06c1\u0631\u06cc \u0627\u06c1\u0645\u06cc\u062a \u062f\u06cc\u06ba\u06d4"],"Start with the building block of all narrative.":["\u06c1\u0631\u0637\u0631\u062d \u06a9\u06d2 \u0628\u0644\u0688\u0646\u06af \u0628\u0644\u0627\u06a9\u0633 \u0633\u06d2 \u0627\u0653\u063a\u0627\u0632 \u06a9\u0631\u06cc\u06ba"],"Separate your content into a multi-page experience.":["\u0627\u067e\u0646\u06d2 \u06a9\u0627\u0646\u0679\u06cc\u0646\u0679 \u06a9\u0648 \u0627\u06cc\u06a9 \u0633\u06d2 \u0632\u06cc\u0627\u062f\u06c1 \u0635\u0641\u062d\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0627\u0644\u06af \u06a9\u0631\u06cc\u06ba\u06d4"],"Set media and words side-by-side for a richer layout.":["\u0628\u06c1\u062a\u0631 \u0644\u06d2 \u0627\u0653\u0648\u0679 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0645\u06cc\u0688\u06cc\u0627 \u06a9\u0648 \u0633\u0627\u0626\u06cc\u0688 \u0628\u0627\u0626\u06d2 \u0633\u0627\u0626\u06cc\u0688 \u0631\u06a9\u06be\u06cc\u06ba"],"Media & Text Settings":["\u0645\u06cc\u0688\u06cc\u0627 \u0627\u0648\u0631 \u0645\u062a\u0646 \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],"Create a bulleted or numbered list.":["\u0646\u0645\u0628\u0631 \u06a9\u06cc \u06cc\u0627 \u0628\u0644\u0679 \u06a9\u06cc \u0644\u0633\u0679 \u0628\u0646\u0627\u0626\u06cc\u06ba"],"Display a list of your most recent comments.":["\u062d\u0627\u0644\u06cc\u06c1 \u062a\u0628\u0635\u0631\u0648\u06ba \u06a9\u06cc \u0641\u06c1\u0631\u0633\u062a \u0634\u0648 \u06a9\u0631\u06cc\u06ba"],"Insert an image to make a visual statement.":["\u0638\u0627\u06c1\u0631\u06cc \u0633\u0679\u06cc\u0679\u0645\u06cc\u0646\u0679 \u06a9\u06d2 \u0644\u06cc\u06d2 \u062a\u0635\u0648\u06cc\u0631 \u06a9\u0627 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba"],"Add custom HTML code and preview it as you edit.":["\u06a9\u0633\u0679\u0645 HTML \u06a9\u0648\u0688 \u0644\u06a9\u06be\u06cc\u06ba \u0627\u0648\u0631 \u0627\u06cc\u0688\u0679 \u06a9\u0631\u062a\u06d2 \u06c1\u0648\u0626\u06d2 \u0638\u0627\u06c1\u0631\u06cc \u062a\u0628\u062f\u06cc\u0644\u06cc\u0627\u06ba \u062f\u06cc\u06a9\u06be\u06cc\u06ba\u06d4"],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u0646\u0626\u06d2 \u062d\u0635\u0648\u06ba \u06a9\u0627 \u062a\u0639\u0627\u0631\u0641 \u0627\u0648\u0631 \u0632\u0627\u0626\u0631\u06cc\u0646 (\u0627\u0648\u0631 \u0633\u0631\u0686 \u0627\u0646\u062c\u0646\u0632) \u06a9\u06cc \u0645\u062f\u062f \u06a9\u06d2 \u0644\u06cc\u06d2 \u0645\u0648\u0627\u062f \u06a9\u0648 \u0645\u0646\u0638\u0645 \u06a9\u0631\u06cc\u06ba \u0627\u067e\u0646\u06d2 \u0645\u0648\u0627\u062f \u06a9\u06cc \u0633\u0627\u062e\u062a \u06a9\u0648 \u0633\u0645\u062c\u06be\u06cc\u06ba\u06d4"],"Display multiple images in a rich gallery.":["\u0627\u06cc\u06a9 \u0633\u06d2 \u0632\u0627\u0626\u062f \u062a\u0635\u0627\u0648\u06cc\u0631 \u06af\u06cc\u0644\u0631\u06cc \u0645\u06cc\u06ba \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"],"Add a link to a downloadable file.":["\u0688\u0627\u0624\u0646 \u0644\u0648\u0688 \u06c1\u0648\u0646\u06d2 \u0648\u0627\u0644\u06cc \u0641\u0627\u0626\u0644 \u0645\u06cc\u06ba \u0644\u0646\u06a9 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed videos, images, tweets, audio, and other content from external sources.":["\u0628\u06cc\u0631\u0648\u0646\u06cc \u0630\u0631\u0627\u0626\u0639 \u0633\u06d2 \u0648\u06cc\u0688\u06cc\u0648\u0632\u060c \u062a\u0635\u0627\u0648\u06cc\u0631\u060c \u0679\u0648\u06cc\u0679\u0633\u060c \u0622\u0688\u06cc\u0648\u060c \u0627\u0648\u0631 \u062f\u06cc\u06af\u0631 \u0645\u0648\u0627\u062f \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Resize for smaller devices":["\u0686\u06be\u0648\u0679\u06cc \u0688\u06cc\u0648\u0627\u0626\u0633\u0632 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0633\u0627\u0626\u0632 \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u062c\u0628 \u0628\u0631\u0627\u0624\u0632\u0631 \u06a9\u0648 \u062f\u0648\u0628\u0627\u0631\u06c1 \u062a\u0628\u062f\u06cc\u0644 \u06a9\u06cc\u0627 \u062c\u0627\u062a\u0627 \u06c1\u06d2 \u062a\u0648 \u06cc\u06c1 \u0627\u06cc\u0645\u0628\u06cc\u0688 \u0627\u067e\u0646\u06cc \u062a\u0646\u0627\u0633\u0628\u06cc \u067e\u06c1\u0644\u0648 \u06a9\u0648 \u0645\u062d\u0641\u0648\u0638 \u0646\u06c1\u06cc\u06ba \u06a9\u0631\u0633\u06a9\u062a\u0627\u06d4"],"This embed will preserve its aspect ratio when the browser is resized.":["\u062c\u0628 \u0628\u0631\u0627\u0624\u0632\u0631 \u06a9\u0648 \u062f\u0648\u0628\u0627\u0631\u06c1 \u062a\u0628\u062f\u06cc\u0644 \u06a9\u06cc\u0627 \u062c\u0627\u062a\u0627 \u06c1\u06d2 \u062a\u0648 \u06cc\u06c1 \u0627\u06cc\u0645\u0628\u06cc\u0688 \u0627\u067e\u0646\u06cc \u062a\u0646\u0627\u0633\u0628\u06cc \u067e\u06c1\u0644\u0648 \u06a9\u0648 \u0645\u062d\u0641\u0648\u0638 \u0646\u06c1\u06cc\u06ba \u06a9\u0631\u0633\u06a9\u062a\u0627\u06d4"],"Embed an Animoto video.":["Animoto \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed a Vimeo video.":["\u0648\u06cc\u0645\u06cc\u0648 \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Flickr content.":["\u0641\u0644\u06a9\u0631 \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Spotify content.":["Spotify \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed SoundCloud content.":["SoundCloud \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed a WordPress post.":["WordPress \u067e\u0648\u0633\u0679 \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba"],"Embed an Instagram post.":["\u0627\u06cc\u06a9 \u0627\u0646\u0633\u0679\u0627 \u06af\u0631\u0627\u0645 \u067e\u0648\u0633\u0679 \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed a Facebook post.":["\u0641\u06cc\u0633 \u0628\u06a9 \u067e\u0648\u0633\u0679 \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed a WordPress.tv video.":["WordPress.tv \u0648\u06cc\u0688\u06cc\u0648\u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed a VideoPress video.":["VideoPress \u0648\u06cc\u0688\u06cc\u0648\u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed a Tumblr post.":["\u0679\u0645\u0628\u0644\u0631 \u067e\u0648\u0633\u0679 \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed a TED video.":["TED \u0648\u06cc\u0688\u06cc\u0648\u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Speaker Deck content.":["\u0627\u0633\u067e\u06cc\u06a9\u0631 \u0688\u06cc\u06a9 \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed a YouTube video.":["\u06cc\u0648\u0679\u06cc\u0648\u0628 \u0648\u06cc\u0688\u06cc\u0648\u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed SmugMug content.":["SmugMug \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Slideshare content.":["\u0633\u0644\u0627\u0626\u06cc\u0688 \u0634\u06cc\u0626\u0631 \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Scribd content.":["Scribd \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Screencast content.":["\u0627\u0633\u06a9\u0631\u06cc\u0646 \u0634\u0627\u0631\u0679 \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed ReverbNation content.":["ReverbNation \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed a Reddit thread.":["Reddit \u062a\u06be\u0631\u06cc\u0688 \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Polldaddy content.":["\u067e\u0648\u0644 \u0688\u06cc\u0688\u06cc \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Mixcloud content.":["Mixcloud \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed a tweet.":["\u0627\u06cc\u06a9 \u0679\u0648\u06cc\u0679 \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Meetup.com content.":["Meetup.com \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Kickstarter content.":["Kickstarter \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Issuu content.":["Issuu \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Imgur content.":["Imgur \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Hulu content.":["Hulu \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed a Dailymotion video.":["Dailymotion \u0648\u06cc\u0688\u06cc\u0648\u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed CollegeHumor content.":["CollegeHumor \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Embed Cloudup content.":["Cloudup \u0645\u0648\u0627\u062f \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Add an image or video with a text overlay \u2014 great for headers.":["\u0645\u062a\u0646 \u0627\u0648\u0648\u0631\u0644\u06d2 \u06a9\u06d2 \u0633\u0627\u062a\u06be \u0627\u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 \u06cc\u0627 \u0648\u06cc\u0688\u06cc\u0648 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba \u2014 \u06c1\u06cc\u0688\u0631 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0628\u06c1\u062a \u0627\u0686\u06be\u0627 \u06c1\u06d2\u06d4"],"Display code snippets that respect your spacing and tabs.":["\u0688\u0633\u067e\u0644\u06d2 \u06a9\u0648\u0688 \u06a9\u06d2 \u0679\u06a9\u0691\u06d2 \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba \u062c\u0648 \u0622\u067e \u06a9\u06cc \u062c\u06af\u06c1 \u0627\u0648\u0631 \u0679\u06cc\u0628 \u06a9\u0627 \u0627\u062d\u062a\u0631\u0627\u0645 \u06a9\u0631\u062a\u06d2 \u06c1\u06cc\u06ba\u06d4"],"Use the classic WordPress editor.":["\u06a9\u0644\u0627\u0633\u06a9 WordPress \u0627\u06cc\u0688\u06cc\u0679\u0631 \u06a9\u0627 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Display a list of all categories.":["\u062a\u0645\u0627\u0645 \u0632\u0645\u0631\u06d2 \u06a9\u06cc \u0627\u06cc\u06a9 \u0641\u06c1\u0631\u0633\u062a \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba\u06d4"],"Embed a simple audio player.":["\u0627\u06cc\u06a9 \u0633\u0627\u062f\u06c1 \u0622\u0688\u06cc\u0648 \u067e\u0644\u06cc\u0626\u0631 \u06a9\u0648 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"noun\x04View":["\u062f\u06cc\u06a9\u06be\u06cc\u06ba"],"editor button\x04Left to right":["\u0628\u0627\u0626\u06cc\u06ba \u0633\u06d2 \u062f\u0627\u0626\u06cc\u06ba"],"Save as Pending":["\u0632\u06cc\u0631 \u0627\u0644\u062a\u0648\u0627\u0621 \u06a9\u06d2 \u0637\u0648\u0631 \u067e\u0631 \u0645\u062d\u0641\u0648\u0638 \u06a9\u0631\u06cc\u06ba"],"%s address":["%s \u0627\u06cc\u0688\u0631\u06cc\u0633"],"Paste or type URL":["\u06cc\u0648\u0622\u0631\u0627\u06cc\u0644 \u06a9\u0648 \u0679\u0627\u0626\u067e \u06a9\u0631\u06cc\u06ba \u06cc\u0627 \u067e\u06cc\u0633\u0679 \u06a9\u0631\u06cc\u06ba"],"Insert from URL":["\u06cc\u0648\u0622\u0631\u0627\u06cc\u0644 \u0633\u06d2 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Block Navigator":[],Styles:["\u0633\u0679\u0627\u0626\u0644"],"Advanced Panels":["\u062c\u062f\u06cc\u062f \u062a\u0631\u06cc\u0646 \u067e\u06cc\u0646\u0644\u0632"],"Document Panels":["\u062f\u0633\u062a\u0627\u0648\u06cc\u0632 \u067e\u06cc\u0646\u0644\u0632"],General:["\u0639\u0645\u0648\u0645\u06cc"],"Open the block navigation menu.":["\u0628\u0644\u0627\u06a9 \u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u0645\u06cc\u0646\u0648 \u06a9\u06be\u0648\u0644\u06cc\u06ba\u06d4"],"Work without distraction":["\u062a\u0634\u0648\u06cc\u0634 \u06a9\u06d2 \u0628\u063a\u06cc\u0631 \u06a9\u0627\u0645"],"Focus on one block at a time":["\u0627\u06cc\u06a9 \u0648\u0642\u062a \u0645\u06cc\u06ba \u0627\u06cc\u06a9 \u0628\u0644\u0627\u06a9 \u067e\u0631 \u0641\u0648\u06a9\u0633 \u06a9\u0631\u06cc\u06ba"],"Access all block and document tools in a single place":["\u0627\u06cc\u06a9 \u06c1\u06cc \u062c\u06af\u06c1 \u0645\u06cc\u06ba \u062a\u0645\u0627\u0645 \u0628\u0644\u0627\u06a9 \u0627\u0648\u0631 \u062f\u0633\u062a\u0627\u0648\u06cc\u0632 \u0679\u0648\u0644\u0632 \u062a\u06a9 \u0631\u0633\u0627\u0626\u06cc \u062d\u0627\u0635\u0644 \u06a9\u0631\u06cc\u06ba"],Options:["\u0627\u062e\u062a\u06cc\u0627\u0631\u0627\u062a"],"(opens in a new tab)":["(\u0627\u06cc\u06a9 \u0646\u0626\u06d2 \u0679\u06cc\u0628 \u0645\u06cc\u06ba \u06a9\u06be\u0644\u062a\u0627 \u06c1\u06d2)"],Minutes:["\u0645\u0646\u0679\u0633"],Hours:["\u06af\u0647\u0646\u0679\u06d2"],Time:["\u0648\u0642\u062a"],Year:["\u0633\u0627\u0644"],Day:["\u062f\u0646"],December:["\u062f\u0633\u0645\u0628\u0631"],November:["\u0646\u0648\u0645\u0628\u0631"],October:["\u0627\u06a9\u062a\u0648\u0628\u0631"],September:["\u0633\u062a\u0645\u0628\u0631"],August:["\u0627\u06af\u0633\u062a"],July:["\u062c\u0648\u0644\u0627\u0626\u06cc"],June:["\u062c\u0648\u0646"],May:["\u0645\u0626\u06cc"],April:["\u0627\u067e\u0631\u06cc\u0644"],March:["\u0645\u0627\u0631\u0686"],February:["\u0641\u0631\u0648\u0631\u06cc"],January:["\u062c\u0646\u0648\u0631\u06cc"],Month:["\u0645\u06c1\u06cc\u0646\u06c1"],Date:["\u062a\u0627\u0631\u06cc\u062e"],"Go to the first (home) or last (end) day of a week.":["\u0627\u06cc\u06a9 \u06c1\u0641\u062a\u06d2 \u06a9\u06d2 \u067e\u06c1\u0644\u06d2 (\u06c1\u0648\u0645) \u06cc\u0627 \u0622\u062e\u0631\u06cc (\u0627\u06cc\u0646\u0688) \u062f\u0646 \u067e\u0631 \u062c\u0627\u0626\u06cc\u06ba\u06d4"],"Home/End":["\u06c1\u0648\u0645/\u0627\u06cc\u0646\u0688"],"Home and End":["\u06c1\u0648\u0645 \u0627\u0648\u0631 \u0627\u06cc\u0646\u0688"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u067e\u0686\u06be\u0644\u06d2 (\u067e\u06cc\u062c \u0627\u067e) \u067e\u0631 \u0645\u0646\u062a\u0642\u0644 \u06cc\u0627 \u0627\u06af\u0644\u06d2 (\u067e\u06cc\u062c \u0688\u0627\u0624\u0646) \u06a9\u0648 \u0627\u06cc\u06a9 \u0645\u0627\u06c1 \u062a\u06a9 \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"PgUp/PgDn":["\u067e\u06cc\u062c \u0627\u067e/\u067e\u06cc\u062c \u0688\u0627\u0624\u0646"],"Page Up and Page Down":["\u067e\u06cc\u062c \u0627\u067e \u0627\u0648\u0631 \u067e\u06cc\u062c \u0688\u0627\u0624\u0646"],"Move backward (up) or forward (down) by one week.":["\u067e\u0686\u06be\u0644\u06d2 (\u0627\u067e) \u06cc\u0627 \u0622\u06af\u06d2 (\u0688\u0627\u0624\u0646) \u0627\u06cc\u06a9 \u06c1\u0641\u062a\u06d2 \u062a\u06a9 \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Up and Down Arrows":["\u0627\u067e \u0627\u0648\u0631 \u0688\u0627\u0624\u0646 \u0627\u06cc\u0631\u0648\u0632"],"Move backward (left) or forward (right) by one day.":["\u0627\u06cc\u06a9 \u062f\u0646 \u067e\u06cc\u0686\u06be\u06d2 (\u0628\u0627\u0626\u06cc\u06ba) \u06cc\u0627 \u0622\u06af\u06d2 (\u062f\u0627\u0626\u06cc\u06ba) \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Left and Right Arrows":["\u0628\u0627\u06cc\u0626\u06ba \u0627\u06cc\u0646\u0688 \u062f\u0627\u06cc\u0626\u06ba \u0627\u06cc\u0631\u0648"],"Select the date in focus.":["\u0641\u0648\u06a9\u0633 \u0645\u06cc\u06ba \u062a\u0627\u0631\u06cc\u062e \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba\u06d4"],"Navigating with a keyboard":["\u06a9\u06cc \u0628\u0648\u0631\u0688 \u06a9\u06d2 \u0633\u0627\u062a\u06be \u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u06a9\u0631\u06cc\u06ba"],"Click the desired day to select it.":["\u0645\u0637\u0644\u0648\u0628\u06c1 \u062f\u0646 \u06a9\u0648 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u06a9\u0644\u06a9 \u06a9\u0631\u06cc\u06ba\u06d4"],"Click the right or left arrows to select other months in the past or the future.":[" \u0645\u0627\u0636\u06cc \u06cc\u0627 \u0645\u0633\u062a\u0642\u0628\u0644 \u0645\u06cc\u06ba \u062f\u0648\u0633\u0631\u06d2 \u0645\u06c1\u06cc\u0646\u06d2 \u06a9\u0648 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u062f\u0627\u0626\u06cc\u06ba \u06cc\u0627 \u0628\u0627\u0626\u06cc\u06ba \u0627\u06cc\u0631\u0648\u0632 \u067e\u0631 \u06a9\u0644\u06a9 \u06a9\u0631\u06cc\u06ba\u06d4"],"Click to Select":["\u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u06a9\u0644\u06a9 \u06a9\u0631\u06cc\u06ba"],"Calendar Help":["\u06a9\u06cc\u0644\u0646\u0688\u0631 \u0645\u062f\u062f"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["\u0634\u06cc\u0688 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"],"Change color format":["\u0631\u0646\u06af \u06a9\u0627 \u0641\u0627\u0631\u0645\u06cc\u0679 \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba"],"Color value in HSL":["\u0627\u06cc\u0686 \u0627\u06cc\u0633 \u0627\u06cc\u0644 \u0645\u06cc\u06ba \u0631\u0646\u06af \u06a9\u06cc \u0648\u06cc\u0644\u06cc\u0648"],"Color value in RGB":["\u0622\u0631\u062c\u06cc \u0628\u06cc \u0645\u06cc\u06ba \u0631\u0646\u06af \u06a9\u06cc \u0648\u06cc\u0644\u06cc\u0648"],"Color value in hexadecimal":["\u06c1\u06cc\u06a9\u0633\u0627 \u0688\u06cc\u0633\u06cc\u0645\u0644 \u0645\u06cc\u06ba \u0631\u0646\u06af \u06a9\u06cc \u0648\u06cc\u0644\u06cc\u0648"],"RGB mode active":["\u0622\u0631\u062c\u06cc \u0628\u06cc \u0645\u0648\u0688 \u0641\u0639\u0627\u0644 \u06c1\u06d2"],"Hex color mode active":["\u06c1\u06cc\u06a9\u0633 \u0631\u0646\u06af \u0645\u0648\u0688 \u0641\u0639\u0627\u0644 \u06c1\u06d2"],"Hue/saturation/lightness mode active":["\u06c1\u06cc\u0648/\u0633\u0646\u0679\u0631\u0648\u06cc\u0634\u0646/\u0644\u0627\u0626\u0679\u0646\u06cc\u0633 \u0645\u0648\u0688 \u0641\u0639\u0627\u0644 \u06c1\u06d2"],"Move the arrow left or right to change hue.":["\u06c1\u06cc\u0648 \u06a9\u0648 \u0628\u0627\u0626\u06cc\u06ba \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u0626\u06d2 \u0628\u0627\u0626\u06cc\u06ba \u06cc\u0627 \u062f\u0627\u0626\u06cc\u06ba \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Hue value in degrees, from 0 to 359.":["\u06f0 \u0633\u06d2 \u06f3\u06f5\u06f9 \u062a\u06a9 \u06c1\u06cc\u0648 \u06a9\u06cc \u0645\u0642\u062f\u0627\u0631 \u0688\u06af\u0631\u06cc\u0632 \u0645\u06cc\u06ba\u06d4"],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["\u0627\u0644\u0641\u0627 \u0648\u06cc\u0644\u06cc\u0648\u060c \u06f0 ( \u0679\u0631\u0627\u0646\u0633\u067e\u06cc\u0631\u0646\u0679) \u0633\u06d2 \u0644\u06d2 \u06a9\u06d2 \u06f1(\u0645\u06a9\u0645\u0644 \u0627\u0648\u067e\u06cc\u06a9) \u062a\u06a9\u06d4"],Stripes:["\u0627\u0633\u0679\u0631\u067e\u0633"],"Your site doesn\u2019t include support for this block.":[" \u0627\u0653 \u067e \u06a9\u06cc \u0633\u0627\u0626\u0679 \u067e\u0631 \u0627\u0633 \u0628\u0644\u0627\u06a9 \u06a9\u06cc \u0633\u067e\u0648\u0631\u0679 \u0645\u0648\u062c\u0648\u062f \u0646\u06c1\u06cc\u06ba\u06d4"],"Unrecognized Block":["\u06cc\u06c1 \u0628\u0644\u0627\u06a9 \u067e\u06c1\u0686\u0627\u0646 \u0645\u06cc\u06ba \u0646\u06c1\u06cc\u06ba \u0627\u0653\u0631\u06c1\u0627"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\u0627\u0653 \u067e \u06a9\u06d2 \u0633\u0627\u0626\u0679 \"%s\" \u0628\u0644\u0627\u06a9 \u06a9\u0648 \u0633\u067e\u0648\u0631\u0679 \u0646\u06c1\u06cc\u06ba \u06a9\u0631\u062a\u06cc\u06d4 \u06cc\u0627 \u0627\u0633 \u06a9\u0648 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0646\u06c1 \u06a9\u0631\u06cc\u06ba \u06cc\u0627 \u0627\u0633 \u06a9\u0648 \u0688\u06cc\u0644\u06cc\u0679 \u06a9\u0631 \u062f\u06cc\u06ba\u06d4"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\u0627\u0653\u067e \u06a9\u06cc \u0633\u0627\u0626\u0679 \u0645\u06cc\u06ba \"%s\" \u0628\u0644\u0627\u06a9 \u06a9\u06cc \u0633\u067e\u0648\u0631\u0679 \u0646\u06c1\u06cc\u06ba\u06d4 \u06cc\u0627 \u0627\u0633 \u06a9\u0648 \u0627\u06cc\u0633\u06d2 \u0631\u06c1\u0646\u06d2 \u062f\u06cc\u06ba\u060c \u06cc\u0627 \u0627\u06cc\u0686 \u0679\u06cc \u0627\u06cc\u0645 \u0627\u06cc\u0644 \u0645\u06cc\u06ba \u06a9\u0646\u0648\u0631\u0679 \u06a9\u0631\u06cc\u06ba\u060c \u06cc\u0627 \u0627\u0633 \u06a9\u0648 \u0688\u06cc\u0644\u06cc\u0679 \u06a9\u0631 \u062f\u06cc\u06ba\u06d4"],"Media area":["\u0645\u06cc\u0688\u06cc\u0627 \u06a9\u06cc \u062c\u06af\u06c1"],"Media & Text":["\u0645\u06cc\u0688\u06cc\u0627 \u0627\u0648\u0631 \u0645\u062a\u0646"],"Show media on right":["\u0645\u06cc\u0688\u06cc\u06cc\u0627 \u06a9\u0648 \u062f\u0627\u0626\u06cc\u06ba \u062c\u0627\u0646\u0628 \u0634\u0648 \u06a9\u0631\u06cc\u06ba"],"Show media on left":["\u0645\u06cc\u0688\u06cc\u0627 \u06a9\u0648 \u0628\u0627\u0626\u06cc\u06ba \u062c\u0627\u0646\u0628 \u0634\u0648 \u06a9\u0631\u06cc\u06ba"],"Open in New Tab":["\u0646\u0626\u06d2 \u0679\u06cc\u0628 \u0645\u06cc\u06ba \u06a9\u06be\u0648\u0644\u06cc\u06ba"],Cover:["\u06a9\u0648\u0631"],"Border Settings":[],"Edit media":["\u0645\u06cc\u0688\u06cc\u0627 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631\u06cc\u06ba"],Medium:["\u062f\u0631\u0645\u06cc\u0627\u0646\u06c1"],"Paste URL or type to search":["\u0648\u06cc\u0628 \u0633\u0627\u0626\u0679 \u06a9\u0627 \u0627\u06cc\u0688\u0631\u06cc\u0633 \u067e\u06cc\u0633\u0679 \u06a9\u0631\u06cc\u06ba \u06cc\u0627 \u0679\u0627\u0626\u067e \u06a9\u0631\u06cc\u06ba"],Terms:["\u0627\u0635\u0637\u0644\u0627\u062d"],"Your work will be published at the specified date and time.":["\u0622\u067e \u06a9\u0627 \u06a9\u0627\u0645 \u0645\u062e\u0635\u0648\u0635 \u062a\u0627\u0631\u06cc\u062e \u0627\u0648\u0631 \u0648\u0642\u062a \u067e\u0631 \u0634\u0627\u0626\u0639 \u06a9\u06cc\u0627 \u062c\u0627\u0626\u06d2 \u06af\u0627\u06d4"],"Are you ready to schedule?":["\u06a9\u06cc\u0627 \u0622\u067e \u0634\u06cc\u0688\u0648\u0644 \u06a9\u06d2 \u0644\u06cc\u06d2 \u062a\u06cc\u0627\u0631 \u06c1\u06cc\u06ba\u061f"],"Always show pre-publish checks.":["\u06c1\u0645\u06cc\u0634\u06c1 \u0634\u0627\u0626\u0639 \u06a9\u0631\u0646\u06d2 \u0633\u06d2 \u067e\u06c1\u0644\u06d2 \u0686\u06cc\u06a9\u0633 \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba\u06d4"],"Take Over":["\u0642\u0628\u0636\u06c1 \u06a9\u0631\u06cc\u06ba"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u0627\u06cc\u06a9 \u0627\u0648\u0631 \u0635\u0627\u0631\u0641 \u0641\u06cc \u0627\u0644\u062d\u0627\u0644 \u0627\u0633 \u067e\u0648\u0633\u0679 \u067e\u0631 \u06a9\u0627\u0645 \u06a9\u0631 \u0631\u06c1\u0627 \u06c1\u06d2\u060c \u062c\u0633 \u06a9\u0627 \u0645\u0637\u0644\u0628 \u06cc\u06c1 \u06c1\u06d2 \u06a9\u06c1 \u0622\u067e \u062a\u0628\u062f\u06cc\u0644\u06cc \u0646\u06c1\u06cc\u06ba \u06a9\u0631 \u0633\u06a9\u062a\u06d2 \u06c1\u06cc\u06ba\u060c \u062c\u0628 \u062a\u06a9 \u0622\u067e \u0679\u06cc\u06a9 \u0627\u0648\u0648\u0631 \u0646\u06c1 \u06a9\u0631 \u0644\u06cc\u06ba\u06d4"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s \u0641\u06cc \u0627\u0644\u062d\u0627\u0644 \u0627\u0633 \u067e\u0648\u0633\u0679 \u067e\u0631 \u06a9\u0627\u0645 \u06a9\u0631 \u0631\u06c1\u06d2 \u06c1\u06cc\u06ba\u060c \u062c\u0633 \u06a9\u0627 \u0645\u0637\u0644\u0628 \u06cc\u06c1 \u06c1\u06d2 \u06a9\u06c1 \u0622\u067e \u062a\u0628\u062f\u06cc\u0644\u06cc \u0646\u06c1\u06cc\u06ba \u06a9\u0631 \u0633\u06a9\u062a\u06d2 \u06c1\u06cc\u06ba\u060c \u062c\u0628 \u062a\u06a9 \u0622\u067e \u0679\u06cc\u06a9 \u0627\u0648\u0648\u0631 \u0646\u06c1 \u06a9\u0631 \u0644\u06cc\u06ba\u06d4"],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u0627\u0628\u06be\u06cc \u062f\u0648\u0633\u0631\u0627 \u0635\u0627\u0631\u0641 \u0627\u0633 \u067e\u0648\u0633\u0679 \u06a9\u06d2 \u06a9\u0646\u0679\u0631\u0648\u0644 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631 \u0631\u06c1\u0627 \u06c1\u06d2\u06d4 \u0641\u06a9\u0631 \u0645\u062a \u06a9\u0631\u06cc\u06ba\u060c \u0627\u0633 \u0644\u0645\u062d\u06d2 \u062a\u06a9 \u0622\u067e \u06a9\u06cc \u062a\u0628\u062f\u06cc\u0644\u06cc\u0648\u06ba \u06a9\u0648 \u0645\u062d\u0641\u0648\u0638 \u06a9\u0631 \u0644\u06cc\u0627 \u06af\u06cc\u0627 \u06c1\u06d2\u06d4"],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u0627\u0628\u06be\u06cc %s \u0627\u0633 \u067e\u0648\u0633\u0679 \u06a9\u06d2 \u06a9\u0646\u0679\u0631\u0648\u0644 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631 \u0631\u06c1\u06d2 \u06c1\u06cc\u06ba\u06d4 \u0641\u06a9\u0631 \u0645\u062a \u06a9\u0631\u06cc\u06ba\u060c \u0627\u0633 \u0644\u0645\u062d\u06d2 \u062a\u06a9 \u0622\u067e \u06a9\u06cc \u062a\u0628\u062f\u06cc\u0644\u06cc\u0648\u06ba \u06a9\u0648 \u0645\u062d\u0641\u0648\u0638 \u06a9\u0631 \u0644\u06cc\u0627 \u06af\u06cc\u0627 \u06c1\u06d2\u06d4"],Avatar:["\u0627\u0648\u062a\u0627\u0631"],"This post is already being edited.":["\u0627\u0633 \u067e\u0648\u0633\u0679 \u0645\u06cc\u06ba \u067e\u06c1\u0644\u06d2 \u06c1\u06cc \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631 \u062f\u06cc \u06af\u0626\u06cc \u06c1\u06d2\u06d4"],"Someone else has taken over this post.":["\u06a9\u0633\u06cc \u0627\u0648\u0631 \u0646\u06d2 \u0627\u0633 \u067e\u0648\u0633\u0679 \u06a9\u0648 \u0644\u06d2 \u0644\u06cc\u0627 \u06c1\u06d2\u06d4"],"This block contains unexpected or invalid content.":["\u0627\u0633 \u0628\u0644\u0627\u06a9 \u0645\u06cc\u06ba \u063a\u06cc\u0631 \u0645\u062a\u0648\u0642\u0639 \u06cc\u0627 \u063a\u0644\u0637 \u0645\u0648\u0627\u062f \u0634\u0627\u0645\u0644 \u06c1\u06d2\u06d4"],"Resolve Block":["\u0628\u0644\u0627\u06a9 \u06a9\u0648 \u062d\u0644 \u06a9\u0631\u06cc\u06ba"],"Convert to HTML":["\u0627\u06cc\u0686 \u0679\u06cc \u0627\u06cc\u0645 \u0627\u06cc\u0644 \u0645\u06cc\u06ba \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba"],"This block can only be used once.":["\u06cc\u06c1 \u0628\u0644\u0627\u06a9 \u0635\u0631\u0641 \u0627\u06cc\u06a9 \u0628\u0627\u0631 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u06cc\u0627 \u062c\u0627 \u0633\u06a9\u062a\u0627 \u06c1\u06d2\u06d4"],"Exit Code Editor":["\u06a9\u0648\u0688 \u0627\u06cc\u0688\u06cc\u0679\u0631 \u0633\u06d2 \u0628\u0627\u06c1\u0631 \u0646\u06a9\u0644\u06cc\u06ba "],"Editing Code":["\u06a9\u0648\u0688 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645"],"Solid Color":["\u0679\u06be\u0648\u0633 \u0631\u0646\u06af"],"Main Color":["\u0645\u0631\u06a9\u0632\u06cc \u0631\u0646\u06af"],HTML:["HTML"],"Write HTML\u2026":[" HTML \u0644\u06a9\u06be\u06cc\u06ba"],"Media Settings":["\u0645\u06cc\u0688\u06cc\u0627 \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],"Overlay Color":["\u0627\u0648\u0648\u0631\u0644\u06d2 \u06a9\u0627 \u0631\u0646\u06af"],Overlay:["\u0627\u0648\u0648\u0631\u0644\u06d2"],"Insert Media":["\u0645\u06cc\u0688\u06cc\u0627 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Reusable block imported successfully!":["\u062f\u0648\u0628\u0627\u0631\u06c1 \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0628\u0644\u0627\u06a9 \u06a9\u0648 \u06a9\u0627\u0645\u06cc\u0627\u0628\u06cc \u0633\u06d2 \u062f\u0631\u0622\u0645\u062f \u06a9\u0631 \u0644\u06cc\u0627 \u06af\u06cc\u0627!"],"Invalid Reusable Block JSON file":["\u063a\u0644\u0637 \u062f\u0648\u0628\u0627\u0631\u06c1 \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0628\u0644\u0627\u06a9 JSON \u0641\u0627\u0626\u0644"],"Invalid JSON file":["\u063a\u0644\u0637 JSON \u0641\u0627\u0626\u0644"],"Import from JSON":["JSON \u0633\u06d2 \u062f\u0631\u0622\u0645\u062f \u06a9\u0631\u06cc\u06ba"],Backtick:["\u0628\u06cc\u06a9 \u0679\u06a9"],Period:["\u0645\u062f\u062a"],Comma:["\u06a9\u0648\u0645\u06c1"],"Change type of %d block":["%d \u0628\u0644\u0627\u06a9 \u06a9\u06cc \u0642\u0633\u0645 \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba","%d \u0628\u0644\u0627\u06a9\u0633 \u06a9\u06cc \u0642\u0633\u0645 \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba"],Current:["\u0645\u0648\u062c\u0648\u062f\u06c1"],"After Conversion":["\u062a\u0628\u062f\u06cc\u0644\u06cc \u06a9\u06d2 \u0628\u0639\u062f"],"Change alignment":[],"Change text alignment":[],"%d block":["%d \u0628\u0644\u0627\u06a9","%d \u0628\u0644\u0627\u06a9\u0633"],Escape:["\u0627\u0633\u06a9\u06cc\u067e"],"Forward-slash":["\u0641\u0627\u0631\u0648\u0631\u0688 \u0633\u0644\u06cc\u0634"],"No archives to show.":["\u062f\u06a9\u06be\u0627\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u06a9\u0648\u0626\u06cc \u0622\u0631\u06a9\u0627\u0626\u06cc\u0648 \u0645\u0648\u062c\u0648\u062f \u0646\u06c1\u06cc\u06ba"],"This file is empty.":["\u06cc\u06c1 \u0641\u0627\u0626\u0644 \u062e\u0627\u0644\u06cc \u06c1\u06d2"],"Sorry, this file type is not supported here.":["\u0645\u0639\u0630\u0631\u062a\u060c \u0627\u0633 \u0641\u0627\u0626\u0644 \u0679\u0627\u0626\u067e \u06a9\u0648 \u06cc\u06c1\u0627\u06ba \u0633\u067e\u0648\u0631\u0679 \u0646\u06c1\u06cc\u06ba \u06a9\u06cc\u0627 \u062c\u0627\u062a\u0627\u06d4"],"Manage All Reusable Blocks":["\u062a\u0645\u0627\u0645 \u062f\u0648\u0628\u0627\u0631\u06c1 \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0628\u0644\u0627\u06a9\u0633 \u06a9\u0648 \u0645\u0646\u0638\u0645 \u06a9\u0631\u06cc\u06ba"],Title:["\u0639\u0646\u0648\u0627\u0646"],"Fullscreen Mode":["\u0641\u0644 \u0627\u0633\u06a9\u0631\u06cc\u0646 \u0645\u0648\u0688"],"Beautiful landscape":["\u062e\u0648\u0628\u0635\u0648\u0631\u062a \u0646\u0638\u0627\u0631\u06c1"],"Close panel":["\u067e\u06cc\u0646\u0644 \u0628\u0646\u062f \u06a9\u0631\u06cc\u06ba"],"Convert to Classic Block":["\u06a9\u0644\u0627\u0633\u06a9 \u0628\u0644\u0627\u06a9 \u0645\u06cc\u06ba \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba"],"Remove Poster Image":["\u067e\u0648\u0633\u0679\u0631 \u06a9\u06cc \u062a\u0635\u0648\u06cc\u0631 \u06a9\u0648 \u062d\u0630\u0641 \u06a9\u0631\u06cc\u06ba\u06d4"],"Select Poster Image":["\u067e\u0648\u0633\u0679\u0631 \u062a\u0635\u0648\u06cc\u0631 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"],"Poster Image":["\u067e\u0648\u0633\u0679\u0631 \u06a9\u06cc \u062a\u0635\u0648\u06cc\u0631"],"This block is deprecated. Please use the Columns block instead.":["\u06cc\u06c1 \u0628\u0644\u0627\u06a9 \u0627\u0628 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0645\u06cc\u06ba \u0646\u06c1\u06cc\u06ba \u06c1\u06d2\u060c \u0628\u0631\u0627\u06c1\u0650 \u0645\u06c1\u0631\u0628\u0627\u0646\u06cc \u0627\u0633 \u06a9\u06cc \u0628\u062c\u0627\u0626\u06d2 \u06a9\u0627\u0644\u0645 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Text Columns (deprecated)":["\u0679\u06cc\u06a9\u0633\u0679 \u06a9\u0627\u0644\u0645 (\u0627\u0628 \u062e\u062a\u0645 \u06c1\u0648 \u06af\u0626\u06d2 \u06c1\u06cc\u06ba)"],"Row Count":["\u0635\u0641 \u0634\u0645\u0627\u0631"],"Column Count":["\u06a9\u0627\u0644\u0645 \u0634\u0645\u0627\u0631"],"This block is deprecated. Please use the Paragraph block instead.":["\u06cc\u06c1 \u0628\u0644\u0627\u06a9 \u0627\u0628 \u0645\u0648\u062c\u0648\u062f \u0646\u06c1\u06cc\u06ba\u060c \u067e\u06cc\u0631\u0627\u06af\u0631\u0627\u0641 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba"],"Subheading (deprecated)":["\u0630\u06cc\u0644\u06cc \u06c1\u06cc\u0688\u0646\u06af ( \u0627\u0628 \u0645\u0648\u062c\u0648\u062f \u0646\u06c1\u06cc\u06ba )"],blockquote:["blockquote"],"Change the block type after adding a new paragraph.":["\u0646\u0626\u06d2 \u067e\u06cc\u0631\u0627\u06af\u0631\u0627\u0641 \u06a9\u0648 \u0634\u0627\u0645\u0644 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0628\u0639\u062f \u0628\u0644\u0627\u06a9 \u06a9\u06cc \u0642\u0633\u0645 \u06a9\u0648 \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Spotlight Mode":["\u0627\u0633\u067e\u0627\u0679 \u0644\u0627\u0626\u0679 \u0645\u0648\u0688"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u0679\u06cc\u06af\u0632 \u0635\u0627\u0631\u0641\u06cc\u0646 \u0627\u0648\u0631 \u0633\u0631\u0686 \u0627\u0646\u062c\u0646 \u06a9\u0648 \u0622\u067e \u06a9\u06cc \u0648\u06cc\u0628 \u0633\u0627\u0626\u0679 \u06a9\u0648 \u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u0627\u0648\u0631 \u0627\u067e\u0646\u06cc \u0645\u0648\u0627\u062f \u06a9\u0648 \u062a\u0644\u0627\u0634 \u06a9\u0631\u062a\u06d2 \u06c1\u06cc\u06ba\u06d4 \u0627\u067e\u0646\u06cc \u067e\u0648\u0633\u0679 \u06a9\u06cc \u0648\u0636\u0627\u062d\u062a \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u06a9\u0686\u06be \u06a9\u06cc \u0648\u0631\u0688\u0632 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Add tags":["\u0679\u06cc\u06af\u0632 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Apply the \"%1$s\" format.":["\"%1$s\" \u0641\u0627\u0631\u0645\u06cc\u0679 \u06a9\u0648 \u0644\u0627\u06af\u0648 \u06a9\u0631\u06cc\u06ba\u06d4"],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u0622\u067e\u06a9\u06cc \u062a\u06be\u06cc\u0645 \u0645\u062e\u062a\u0644\u0641 \u0642\u0633\u0645 \u06a9\u06d2 \u0645\u0648\u0627\u062f \u06a9\u0648 \u0646\u0645\u0627\u06cc\u0627\u06ba \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u067e\u0648\u0633\u0679 \u0641\u0627\u0631\u0645\u06cc\u0679\u0633 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u062a\u06cc \u06c1\u06d2\u060c \u062c\u06cc\u0633\u06d2 \u062a\u0635\u0627\u0648\u06cc\u0631 \u06cc\u0627 \u0648\u06cc\u0688\u06cc\u0648\u0632\u06d4 \u0627\u0633 \u062e\u0627\u0635 \u0627\u0633\u0679\u0627\u0626\u0644 \u06a9\u0648 \u062f\u06cc\u06a9\u06be\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u067e\u0648\u0633\u0679 \u0641\u0627\u0631\u0645\u06cc\u0679 \u06a9\u06cc \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u06a9\u0631\u06cc\u06ba\u06d4"],"Use a post format":["\u067e\u0648\u0633\u0679 \u0641\u0627\u0631\u0645\u06cc\u0679 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba"],"Insert After":["\u0628\u0639\u062f \u0645\u06cc\u06ba \u062f\u0627\u062e\u0644 \u06a9\u0631\u06cc\u06ba"],"Insert Before":["\u067e\u06c1\u0644\u06d2 \u062f\u0627\u062e\u0644 \u06a9\u0631\u06cc\u06ba"],"Move %1$d block from position %2$d down by one place":["%1$d \u0628\u0644\u0627\u06a9 \u06a9\u0648 %2$d \u067e\u0648\u0632\u06cc\u0634\u0646 \u0633\u06d2 \u0644\u06d2 \u06a9\u0631 \u0627\u06cc\u06a9 \u062c\u06af\u06c1 \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba","%1$d \u0628\u0644\u0627\u06a9\u0633 \u06a9\u0648 %2$d \u067e\u0648\u0632\u06cc\u0634\u0646 \u0633\u06d2 \u0644\u06d2 \u06a9\u0631 \u0627\u06cc\u06a9 \u062c\u06af\u06c1 \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba"],"Move %1$d block from position %2$d up by one place":["%1$d \u0628\u0644\u0627\u06a9 \u06a9\u0648 %2$d \u067e\u0648\u0632\u06cc\u0634\u0646 \u0633\u06d2 \u0644\u06d2 \u06a9\u0631 \u0627\u06cc\u06a9 \u062c\u06af\u06c1 \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba","%1$d \u0628\u0644\u0627\u06a9\u0633 \u06a9\u0648 %2$d \u067e\u0648\u0632\u06cc\u0634\u0646 \u0633\u06d2 \u0644\u06d2 \u06a9\u0631 \u0627\u06cc\u06a9 \u062c\u06af\u06c1 \u0645\u0646\u062a\u0642\u0644 \u06a9\u0631\u06cc\u06ba"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["\u0645\u0648\u0648\u06cc"],"Insert a new block before the selected block(s).":["\u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u062f\u06c1 \u0628\u0644\u0627\u06a9 (\u0628\u0644\u0627\u06a9\u0633) \u0633\u06d2 \u067e\u06c1\u0644\u06d2 \u0627\u06cc\u06a9 \u0646\u06cc\u0627 \u0628\u0644\u0627\u06a9 \u062f\u0627\u062e\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Remove the selected block(s).":["\u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u062f\u06c1 \u0628\u0644\u0627\u06a9 (\u0628\u0644\u0627\u06a9\u0633) \u06a9\u0648 \u062d\u0630\u0641 \u06a9\u0631\u06cc\u06ba\u06d4"],"Duplicate the selected block(s).":["\u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u062f\u06c1 \u0628\u0644\u0627\u06a9 (\u0628\u0644\u0627\u06a9\u0633) \u06a9\u06cc \u0646\u0642\u0644\u06d4"],"Block shortcuts":["\u0628\u0644\u0627\u06a9 \u0634\u0627\u0631\u0679 \u06a9\u0679\u0633"],"Clear selection.":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0635\u0627\u0641 \u06a9\u0631\u06cc\u06ba\u06d4"],"Select all text when typing. Press again to select all blocks.":["\u0679\u0627\u0626\u067e \u06a9\u0631\u062a\u06d2 \u06c1\u0648\u0626\u06d2 \u062a\u0645\u0627\u0645 \u0645\u062a\u0646 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba\u06d4 \u062a\u0645\u0627\u0645 \u0628\u0644\u0627\u06a9\u0633 \u06a9\u0648 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u062f\u0648\u0628\u0627\u0631\u06c1 \u062f\u0628\u0627\u0626\u06cc\u06ba\u06d4"],"Selection shortcuts":["\u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0634\u0627\u0631\u0679 \u06a9\u0679\u0633"],"Switch between Visual Editor and Code Editor.":["\u0628\u0635\u0631\u06cc \u0627\u06cc\u0688\u06cc\u0679\u0631 \u0627\u0648\u0631 \u06a9\u0648\u0688 \u0627\u06cc\u0688\u06cc\u0679\u0631 \u06a9\u06d2 \u062f\u0631\u0645\u06cc\u0627\u0646 \u0633\u0648\u0626\u0686 \u06a9\u0631\u06cc\u06ba\u06d4"],"Navigate to the previous part of the editor (alternative).":["\u0627\u06cc\u0688\u06cc\u0679\u0631 (\u0645\u062a\u0628\u0627\u062f\u0644) \u06a9\u06d2 \u067e\u0686\u06be\u0644\u06d2 \u062d\u0635\u06d2 \u067e\u0631 \u062c\u0627\u0626\u06cc\u06ba\u06d4"],"Navigate to the next part of the editor (alternative).":["\u0627\u06cc\u0688\u06cc\u0679\u0631 (\u0645\u062a\u0628\u0627\u062f\u0644) \u06a9\u06d2 \u0627\u06af\u0644\u06d2 \u062d\u0635\u06d2 \u067e\u0631 \u062c\u0627\u0626\u06cc\u06ba\u06d4"],"Navigate to the previous part of the editor.":["\u0627\u06cc\u0688\u06cc\u0679\u0631 \u06a9\u06d2 \u067e\u0686\u06be\u0644\u06d2 \u062d\u0635\u06d2 \u067e\u0631 \u062c\u0627\u0626\u06cc\u06ba\u06d4"],"Navigate to the next part of the editor.":["\u0627\u06cc\u0688\u06cc\u0679\u0631 \u06a9\u06d2 \u0627\u06af\u0644\u06d2 \u062d\u0635\u06d2 \u067e\u0631 \u062c\u0627\u0626\u06cc\u06ba\u06d4"],"Show or hide the settings sidebar.":["\u062a\u0631\u062a\u06cc\u0628\u0627\u062a \u0633\u0627\u0626\u0670\u06cc\u0688\u0628\u0627\u0631 \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba \u06cc\u0627 \u0686\u06be\u067e\u0627\u0626\u06cc\u06ba\u06d4"],"Redo your last undo.":["\u0627\u067e\u0646\u06cc \u0622\u062e\u0631\u06cc \u062a\u0631\u062a\u06cc\u0628 \u06a9\u0648 \u062f\u0648\u0628\u0627\u0631\u06c1 \u06a9\u0631\u06cc\u06ba\u06d4"],"Undo your last changes.":["\u0627\u067e\u0646\u06cc \u0622\u062e\u0631\u06cc \u062a\u0628\u062f\u06cc\u0644\u06cc\u0648\u06ba \u06a9\u0648 \u06a9\u0627\u0644\u0639\u062f\u0645 \u06a9\u0631\u06cc\u06ba\u06d4"],"Save your changes.":["\u0627\u067e\u0646\u06cc \u062a\u0628\u062f\u06cc\u0644\u06cc\u0648\u06ba \u06a9\u0648 \u0645\u062d\u0641\u0648\u0638 \u06a9\u0631\u06cc\u06ba\u06d4"],"Global shortcuts":["\u06af\u0644\u0648\u0628\u0644 \u0634\u0627\u0631\u0679 \u06a9\u0679\u0633"],"Remove a link.":["\u0644\u0646\u06a9 \u062d\u0630\u0641 \u06a9\u0631\u06cc\u06ba\u06d4"],"Convert the selected text into a link.":["\u0645\u0646\u062a\u062e\u0628 \u0645\u062a\u0646 \u06a9\u0648 \u0627\u06cc\u06a9 \u0644\u0646\u06a9 \u0645\u06cc\u06ba \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Underline the selected text.":["\u0645\u0646\u062a\u062e\u0628 \u0634\u062f\u06c1 \u0645\u062a\u0646 \u06a9\u0648 \u0627\u0646\u0688\u0631\u0644\u0627\u0626\u0646 \u06a9\u0631\u06cc\u06ba\u06d4"],"Make the selected text italic.":["\u0645\u0646\u062a\u062e\u0628 \u0645\u062a\u0646 \u06a9\u0648 \u0627\u0679\u0627\u0644\u06a9 \u06a9\u0631\u06cc\u06ba\u06d4"],"Make the selected text bold.":["\u0645\u0646\u062a\u062e\u0628 \u0645\u062a\u0646 \u06a9\u0648 \u0628\u0648\u0644\u0688 \u06a9\u0631\u06cc\u06ba\u06d4"],"Text formatting":["\u0645\u062a\u0646 \u06a9\u06cc \u0641\u0627\u0631\u0645\u06cc\u0679\u0646\u06af"],"Insert a new block after the selected block(s).":["\u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u062f\u06c1 \u0628\u0644\u0627\u06a9 (\u0628\u0644\u0627\u06a9\u0633) \u06a9\u06d2 \u0628\u0639\u062f \u0627\u06cc\u06a9 \u0646\u06cc\u0627 \u0628\u0644\u0627\u06a9 \u062f\u0627\u062e\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Keyboard Shortcuts":["\u06a9\u06cc \u0628\u0648\u0631\u0688 \u0634\u0627\u0631\u0679 \u06a9\u0679\u0633"],"Thanks for testing Gutenberg!":["Gutenberg \u06a9\u0648 \u0622\u0632\u0645\u0627\u0646\u06d2 \u06a9\u0627 \u0634\u06a9\u0631\u06cc\u06c1!"],"Help build Gutenberg":["Gutenberg \u0628\u0646\u0627\u0646\u06d2 \u0645\u06cc\u06ba \u0645\u062f\u062f \u06a9\u0631\u06cc\u06ba"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":["WordPress \u06a9\u0645\u06cc\u0648\u0646\u0679\u06cc"],"Code is Poetry":["\u06a9\u0648\u0688 \u0634\u0627\u0639\u0631\u06cc \u06c1\u06d2"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["\u06cc\u0642\u06cc\u0646\u0627\u060c \u0645\u06a9\u0645\u0644 \u0648\u0633\u06cc\u0639 \u062a\u0635\u0648\u06cc\u0631 \u0628\u06c1\u062a \u0628\u0691\u06cc \u06c1\u0648 \u0633\u06a9\u062a\u06cc \u06c1\u06d2\u06d4 \u0644\u06cc\u06a9\u0646 \u06a9\u0628\u06be\u06cc \u06a9\u0628\u06be\u06cc \u062a\u0635\u0648\u06cc\u0631 \u0627\u0633 \u06a9\u06d2 \u0642\u0627\u0628\u0644 \u06c1\u06d2\u06d4"],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":["\u0633\u06cc\u0631 \u062d\u0627\u0635\u0644 \u0645\u06cc\u0688\u06cc\u0627"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg\u060c 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["\u0628\u0635\u0631\u06cc \u062a\u0631\u0645\u06cc\u0645"],"And Lists like this one of course :)":["\u0627\u0648\u0631 \u0641\u06c1\u0631\u0633\u062a\u06cc\u06ba \u06a9\u06cc \u0637\u0631\u062d \u06a9\u0648\u0631\u0633 \u0645\u06cc\u06ba \u0633\u06d2 \u0627\u06cc\u06a9 :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["\u0644\u06d2 \u0622\u0624\u0679 \u0628\u0644\u0627\u06a9\u0633\u060c \u0644\u0627\u0626\u06cc\u06a9 \u0628\u0679\u0646\u060c \u06c1\u06cc\u0631\u0648 \u062a\u0635\u0627\u0648\u06cc\u0631\u060c \u0633\u067e\u0631\u06cc\u0679\u0631 \u0648\u063a\u06cc\u0631\u06c1"],"Embeds, like YouTube, Tweets, or other WordPress posts.":["\u06cc\u0648\u0679\u06cc\u0648\u0628\u060c \u0679\u0648\u06cc\u0679\u0633\u060c \u06cc\u0627 \u062f\u06cc\u06af\u0631WordPress \u067e\u0648\u0633\u0679\u0648\u06ba \u06a9\u06cc \u0637\u0631\u062d \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631 \u0633\u06a9\u062a\u06d2 \u06c1\u06cc\u06ba"],Galleries:["\u06af\u06cc\u0644\u0631\u06cc\u0632"],"Images & Videos":["\u062a\u0635\u0627\u0648\u06cc\u0631 \u0627\u0648\u0631 \u0648\u06cc\u0688\u06cc\u0648\u0632"],"Text & Headings":["\u0645\u062a\u0646 \u0627\u0648\u0631 \u0639\u0646\u0648\u0627\u0646\u0627\u062a"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":["\u0627\u0646\u0633\u0631\u0679\u0631 \u0679\u0648\u0644"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["\u0627\u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 \u06c1\u0632\u0627\u0631 \u0627\u0644\u0641\u0627\u0638 \u06a9\u0626 \u0628\u0631\u0627\u0628\u0631 \u06c1\u06d2"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Gutenberg \u0627\u06cc\u0688\u06cc\u0679\u0631 \u0645\u06cc\u06ba \u062e\u0648\u0634 \u0622\u0645\u062f\u06cc\u062f"],"block name\x04More":["\u0645\u0632\u06cc\u062f"],"button to expand options\x04More":["\u0645\u0632\u06cc\u062f"],"Are you sure you want to unschedule this post?":["\u06a9\u06cc\u0627 \u0622\u067e \u0648\u0627\u0642\u0639\u06cc \u0627\u0633 \u067e\u0648\u0633\u0679 \u06a9\u0648 \u0627\u0646 \u0634\u06cc\u0688\u0648\u0644 \u06a9\u0631\u0646\u0627 \u0686\u0627\u06c1\u062a\u06d2 \u06c1\u06cc\u06ba\u061f"],"Alt Text (Alternative Text)":["Alt Text ( \u0645\u062a\u0628\u0627\u062f\u0644 \u0679\u06cc\u06a9\u0633\u0679)"],"Reusable Block":["\u062f\u0648\u0628\u0627\u0631\u06c1 \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0628\u0644\u0627\u06a9\u0633"],"Unique identifier for the object.":["\u0627\u0639\u062a\u0631\u0627\u0636 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0645\u0646\u0641\u0631\u062f \u0634\u0646\u0627\u062e\u062a\u06d4"],"Untitled Reusable Block":["\u0628\u0644\u0627\u0639\u0646\u0648\u0627\u0646 \u062f\u0648\u0628\u0627\u0631\u06c1 \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0628\u0644\u0627\u06a9"],Small:[],"(%s: %s)":["(%s: %s)"],Reusable:["\u062f\u0648\u0628\u0627\u0631\u06c1 \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644"],"(current %s: %s)":["(\u0645\u0648\u062c\u0648\u062f\u06c1 %s: %s)"],"Remove from Reusable Blocks":["\u062f\u0648\u0628\u0627\u0631\u06c1 \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0628\u0644\u0627\u06a9\u0633 \u0633\u06d2 \u062d\u0630\u0641 \u06a9\u0631\u06cc\u06ba"],"Add to Reusable Blocks":["\u062f\u0648\u0628\u0627\u0631\u06c1 \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0628\u0644\u0627\u06a9\u0633 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Keep as HTML":["HTML \u06a9\u06d2 \u0637\u0648\u0631 \u067e\u0631 \u0631\u06a9\u06be\u06cc\u06ba"],"Edit URL":["\u06cc\u0648\u0622\u0631\u0627\u06cc\u0644 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631\u06cc\u06ba"],"Color Settings":["\u0631\u0646\u06af \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],"The response is not a valid JSON response.":["\u06cc\u06c1 \u0631\u06cc\u0633\u067e\u0627\u0646\u0633 \u0627\u06cc\u06a9 \u062f\u0631\u0633\u062a \u062c\u06d2\u0633\u0646 \u0631\u06cc\u0633\u067e\u0627\u0646\u0633 \u0646\u06c1\u06cc\u06ba \u06c1\u06d2\u06d4"],"Editor publish":["\u0627\u06cc\u0688\u06cc\u0679\u0631 \u0634\u0627\u0626\u0639 "],Muted:["\u062e\u0627\u0645\u0648\u0634"],"Video Settings":["\u0648\u06cc\u0688\u06cc\u0648 \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],"recent comments":["\u062d\u0627\u0644\u06cc\u06c1 \u062a\u0628\u0635\u0631\u06d2"],"Latest Comments":["\u062d\u0627\u0644\u06cc\u06c1 \u062a\u0628\u0635\u0631\u06d2"],"Display Excerpt":["\u062e\u0644\u0627\u0635\u06c1 \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"],"Display Date":["\u062a\u0627\u0631\u06cc\u062e \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"],"Display Avatar":["\u0627\u0648\u0627\u0679\u0627\u0631 \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"],"Latest Comments Settings":["\u062a\u0627\u0632\u06c1 \u062a\u0631\u06cc\u0646 \u062a\u0628\u0635\u0631\u0648\u06ba \u06a9\u06cc \u0633\u06cc\u0679\u0646\u06af"],"Number of Comments":["\u062a\u0628\u0635\u0631\u0648\u06ba \u06a9\u06cc \u062a\u0639\u062f\u0627\u062f"],"Background Opacity":["\u067e\u0633 \u0645\u0646\u0638\u0631 \u06a9\u0627 \u062f\u06be\u0646\u062f\u0644\u0627\u067e\u0646"],Auto:["\u0622\u0679\u0648"],Preload:["\u067e\u0631\u06cc \u0644\u0648\u0688"],"Audio Settings":["\u0622\u0688\u06cc\u0648 \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],"Display a monthly archive of your posts.":["\u0627\u067e\u0646\u06cc \u067e\u0648\u0633\u0679\u0648\u06ba \u06a9\u0627 \u0627\u06cc\u06a9 \u0645\u0627\u06c1\u0627\u0646\u06c1 \u0622\u0631\u06a9\u0627\u0626\u06cc\u0648 \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba\u06d4"],"Display as Dropdown":["\u0688\u0631\u0627\u067e \u0688\u0627\u0624\u0646 \u06a9\u06d2 \u0637\u0648\u0631 \u067e\u0631 \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"],"Show Post Counts":["\u067e\u0648\u0633\u0679\u0648\u06ba \u06a9\u06cc \u062a\u0639\u062f\u0627\u062f \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"],"Archives Settings":["\u0645\u062d\u0641\u0648\u0638\u0627\u062a \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u0645\u0639\u0627\u0648\u0646\u062a"],"No comments to show.":["\u062f\u06a9\u06be\u0627\u0646\u06d2 \u06a9\u06d2 \u0644\u0626\u06d2 \u06a9\u0648\u0626\u06cc \u062a\u0628\u0635\u0631\u06c1 \u0646\u06c1\u06cc\u06ba\u06d4"],"%1$s on %2$s":["%1$s \u0627\u0632 %2$s"],"Select Post":["\u067e\u0648\u0633\u0679 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"],"Select Week":["\u06c1\u0641\u062a\u06c1 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba\u06d4"],"Select Day":["\u062f\u0646 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba\u06d4"],"Select Month":["\u0645\u06c1\u06cc\u0646\u06c1 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"],"Select Year":["\u0633\u0627\u0644 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba\u06d4"],Archives:["\u0622\u0631\u06a9\u0627\u0626\u06cc\u0648\u0632"],"Very dark gray":["\u06af\u06c1\u0631\u0627\u0633\u0631\u0645\u0626\u06cc"],"Cyan bluish gray":["\u0633\u0628\u0632\u06cc \u0645\u0627\u0626\u0644 \u0622\u0633\u0645\u0627\u0646\u06cc \u0633\u0631\u0645\u0626\u06cc"],"Very light gray":["\u0628\u06c1\u062a \u06c1\u0644\u06a9\u0627 \u0633\u0631\u0645\u0626\u06cc"],"Vivid cyan blue":["\u0634\u0648\u062e \u0633\u0628\u0632\u06cc \u0645\u0627\u0626\u0644 \u0646\u06cc\u0644\u0627"],"Pale cyan blue":["\u067e\u0631\u0627\u0646\u0627 \u0633\u0628\u0632\u06cc \u0645\u0627\u0626\u0644 \u0646\u06cc\u0644\u0627"],"Vivid green cyan":["\u0634\u0648\u062e \u0633\u0628\u0632\u06cc \u0645\u0627\u0626\u0644 \u0646\u06cc\u0644\u0627"],"Light green cyan":["\u06c1\u0644\u06a9\u0627 \u0633\u0628\u0632\u06cc \u0645\u0627\u0626\u0644"],"Luminous vivid amber":["\u0686\u0645\u06a9\u06cc\u0644\u0627 \u0634\u0648\u062e \u0622\u0633\u0645\u0627\u0646\u06cc"],"Luminous vivid orange":["\u0686\u0645\u06a9\u06cc\u0644\u0627 \u0634\u0648\u062e \u0646\u0627\u0631\u0646\u062c\u06cc"],"Vivid red":["\u0634\u0648\u062e \u0644\u0627\u0644"],"Pale pink":["\u06c1\u0644\u06a9\u0627 \u06af\u0644\u0627\u0628\u06cc"],"Inline image":[],"Available block types":["\u062f\u0633\u062a\u06cc\u0627\u0628 \u0628\u0644\u0627\u06a9\u0633 \u06a9\u06cc \u0627\u0642\u0633\u0627\u0645"],"Transform To:":["\u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2:"],"Remove Block":["\u0628\u0644\u0627\u06a9 \u06a9\u0648 \u062d\u0630\u0641 \u06a9\u0631\u06cc\u06ba"],"Open publish panel":["\u06a9\u06be\u0644\u0627 \u0634\u0627\u0626\u0639 \u06a9\u0631\u0646\u06d2 \u06a9\u0627 \u067e\u06cc\u0646\u0644"],Dots:["\u0646\u0642\u0627\u0637"],"Wide Line":["\u0686\u0648\u0691\u06cc \u0644\u06a9\u06cc\u0631"],Large:["\u0628\u0691\u0627"],"Show download button":[],"Download button settings":[],"Link To":["\u0644\u0646\u06a9 \u06a9\u0631\u06cc\u06ba"],"Text link settings":[],pdf:["\u067e\u06cc \u0688\u06cc \u0627\u06cc\u0641"],document:["\u062f\u0633\u062a\u0627\u0648\u06cc\u0632"],"Copy URL":["\u06cc\u0648\u0622\u0631\u0627\u06cc\u0644 \u06a9\u0627\u067e\u06cc \u06a9\u0631\u06cc\u06ba"],"Write file name\u2026":["\u0641\u0627\u0626\u0644 \u06a9\u0627 \u0646\u0627\u0645 \u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],"Edit file":["\u0641\u0627\u0626\u0644 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631\u06cc\u06ba"],File:["\u0641\u0627\u0626\u0644"],"A single column within a columns block.":["\u0627\u06cc\u06a9 \u06a9\u0627\u0644\u0645\u06cc \u0628\u0644\u0627\u06a9 \u06a9\u06d2 \u0627\u0646\u062f\u0631 \u0627\u06cc\u06a9 \u06a9\u0627\u0644\u0645\u06d4"],Column:["\u06a9\u0627\u0644\u0645"],Outline:["\u0622\u0624\u0679 \u0644\u0627\u0626\u0646"],Loop:["\u0644\u0648\u067e"],Autoplay:["\u062e\u0648\u062f\u0628\u062e\u0648\u062f \u0686\u0644\u06d2"],"Playback Controls":["\u0686\u0644\u0627\u0646\u06d2 \u06a9\u06d2 \u0627\u062e\u062a\u06cc\u0627\u0631\u0627\u062a"],"Close dialog":["\u0688\u0627\u0626\u06cc\u0644\u0627\u06af \u0628\u0646\u062f \u06a9\u0631\u06cc\u06ba"],"Sorry, this file type is not permitted for security reasons.":["\u0645\u0639\u0627\u0641 \u06a9\u06cc\u062c\u06cc\u06d2 \u06af\u0627! \u0633\u06a9\u06cc\u0648\u0631\u0679\u06cc \u0648\u062c\u0648\u06c1\u0627\u062a \u06a9\u06cc \u0628\u0646\u0627\u0621 \u067e\u0631 \u0627\u0633 \u0637\u0631\u062d \u06a9\u06cc \u0641\u0627\u0626\u0644 \u06a9\u06cc \u0642\u0633\u0645 \u06a9\u06cc \u0627\u062c\u0627\u0632\u062a \u0646\u06c1\u06cc\u06ba\u06d4"],"Disable tips":["\u062a\u062c\u0627\u0648\u06cc\u0632 \u06a9\u0648 \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0631\u06cc\u06ba"],"Got it":["\u06cc\u06c1 \u0645\u0644 \u06af\u06cc\u0627"],"See next tip":["\u0627\u06af\u0644\u06cc \u062a\u062c\u0648\u06cc\u0632 \u062f\u06cc\u06a9\u06be\u06cc\u06ba"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u062c\u0628 \u0622\u067e \u062a\u06cc\u0627\u0631 \u06c1\u0648 \u062c\u0627\u0626\u06cc\u06ba \u062a\u0648\u060c \u0627\u067e\u0646\u06d2 \u06a9\u0627\u0645 \u06a9\u0627 \u062c\u0627\u0626\u0632\u06c1 \u0644\u06cc\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0627\u0631\u0633\u0627\u0644 \u06a9\u0631\u06cc\u06ba\u060c \u0627\u0648\u0631 \u0627\u06cc\u06a9 \u0627\u06cc\u0688\u06cc\u0679\u0631 \u0622\u067e \u06a9\u06d2 \u0644\u06cc\u06d2 \u0645\u0646\u0638\u0648\u0631 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0642\u0627\u0628\u0644 \u06c1\u0648 \u06af\u0627\u06d4"],"Are you ready to submit for review?":["\u06a9\u06cc\u0627 \u0622\u067e \u062c\u0627\u0626\u0632\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0627\u0631\u0633\u0627\u0644 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u062a\u06cc\u0627\u0631 \u06c1\u06cc\u06ba\u061f"],"Replace image":["\u062a\u0635\u0648\u06cc\u0631 \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba"],"Remove image":["\u062a\u0635\u0648\u06cc\u0631 \u06a9\u0648 \u062d\u0630\u0641 \u06a9\u0631\u06cc\u06ba"],"Error while uploading file %s to the media library.":["%s \u0641\u0627\u0626\u0644\u0632 \u06a9\u0648 \u0645\u06cc\u0688\u06cc\u0627 \u0644\u0627\u0626\u0628\u0631\u06cc\u0631\u06cc \u0645\u06cc\u06ba \u0645\u062d\u0641\u0648\u0638 \u06a9\u0631\u0646\u06d2 \u0645\u06cc\u06ba \u0645\u0633\u0644\u06c1 \u062f\u0631\u067e\u06cc\u0634 \u06c1\u06d2"],"This file exceeds the maximum upload size for this site.":["\u06cc\u06c1 \u0641\u0627\u0626\u0644 \u0627\u0633 \u0633\u0627\u0626\u0679 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0632\u06cc\u0627\u062f\u06c1 \u0633\u06d2 \u0632\u06cc\u0627\u062f\u06c1 \u0627\u067e \u0644\u0648\u0688 \u0633\u0627\u0626\u0632 \u0633\u06d2 \u0628\u0691\u06cc \u06c1\u06d2\u06d4"],"View the autosave":["\u062e\u0648\u062f\u06a9\u0627\u0631 \u0637\u0631\u06cc\u0642\u06c1 \u0633\u06d2 \u0645\u062d\u0641\u0648\u0638 \u06a9\u06cc\u0627 \u06af\u06cc\u0627 \u0645\u0648\u0627\u062f \u062f\u06cc\u06a9\u06be\u06cc\u06ba"],"There is an autosave of this post that is more recent than the version below.":["\u0627\u0633 \u067e\u0648\u0633\u0679 \u06a9\u0627 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0645\u062d\u0641\u0648\u0638 \u06c1\u06d2 \u06cc\u06c1 \u0646\u06cc\u0686\u06d2 \u062f \u06cc\u0626\u06d2 \u06af\u0626\u06d2 \u0648\u0631\u0698\u0646 \u0633\u06d2 \u0632\u06cc\u0627\u062f\u06c1 \u062a\u0627\u0632\u06c1 \u062a\u0631\u06cc\u0646 \u06c1\u06d2\u06d4"],Autosaving:["\u062e\u0648\u062f \u06a9\u0627\u0631 \u0637\u0631\u06cc\u0642\u06c1 \u0633\u06d2 \u0645\u062d\u0641\u0648\u0638 \u06a9\u06cc\u0627 \u062c\u0627 \u0631\u06c1\u0627 \u06c1\u06d2"],"Enter URL here\u2026":["\u06cc\u0648 \u0622\u0631 \u0627\u06cc\u0644 \u06cc\u06c1\u0627\u06ba \u062f\u0631\u062c \u06a9\u0631\u06cc\u06ba"],"Pin to toolbar":["\u0679\u0648\u0644 \u0628\u0627\u0631 \u067e\u0631 \u067e\u0646 \u06a9\u0631\u06cc\u06ba"],"Unpin from toolbar":["\u0679\u0648\u0644 \u0628\u0627\u0631 \u0633\u06d2 \u0627\u0646 \u067e\u0646 \u06a9\u0631\u06cc\u06ba"],"Insert a table \u2014 perfect for sharing charts and data.":["\u0627\u06cc\u06a9 \u0679\u06cc\u0628\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba\u060c \u06cc\u06c1 \u0686\u0627\u0631\u0679 \u0627\u0648\u0631 \u0688\u06cc\u0679\u0627 \u0634\u0626\u06cc\u0631 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0628\u06c1\u062a\u0631\u06cc\u0646 \u06c1\u06d2\u06d4"],"Fixed width table cells":["\u0679\u06cc\u0628\u0644 \u0633\u06cc\u0644 \u06a9\u06cc \u0645\u0642\u0631\u0631\u06c1 \u0686\u0648\u0691\u0627\u0626\u06cc"],"Table Settings":["\u0679\u06cc\u0628\u0644 \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628"],"Add text that respects your spacing and tabs, and also allows styling.":["\u0645\u062a\u0646 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba \u062c\u0648 \u0622\u067e \u06a9\u06cc \u062e\u0644\u0627\u0621 \u0627\u0648\u0631 \u0679\u06cc\u0628 \u06a9\u0627 \u0627\u062d\u062a\u0631\u0627\u0645 \u06a9\u0631\u062a\u0627 \u06c1\u06d2\u060c \u0627\u0648\u0631 \u0627\u0633\u0679\u0627\u0626\u0644 \u06a9\u06cc \u0627\u062c\u0627\u0632\u062a \u062f\u06cc\u062a\u0627 \u06c1\u06d2."],"Display a list of your most recent posts.":["\u0627\u067e\u0646\u06cc \u062a\u0627\u0632\u06c1 \u062a\u0631\u06cc\u0646 \u067e\u0648\u0633\u0679 \u06a9\u06cc \u0641\u06c1\u0631\u0633\u062a \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba\u06d4"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\u0627\u06cc\u06a9 \u0628\u0644\u0627\u06a9 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba \u062c\u0648 \u062f\u0648\u0633\u0631\u06cc \u0633\u0627\u0626\u0679\u0633 \u0633\u06d2 \u062d\u0627\u0635\u0644 \u06a9\u06cc\u0627 \u06af\u06cc\u0627 \u0645\u0648\u0627\u062f \u062f\u06a9\u06be\u0627\u0626\u06d2\u060c \u062c\u06cc\u0633\u0627 \u06a9\u06c1 \u0679\u0648\u06cc\u0679\u0631\u060c \u0627\u0646\u0633\u0679\u0627\u06af\u0631\u0627\u0645 \u06cc\u0627 \u06cc\u0648\u0679\u06cc\u0648\u0628"],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u0627\u06cc\u06a9 \u0627\u06cc\u0633\u06d2 \u0628\u0644\u0627\u06a9 \u06a9\u0648 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba \u062c\u0648 \u0645\u062a\u0639\u062f\u062f \u06a9\u0627\u0644\u0645\u0648\u06ba \u0645\u06cc\u06ba \u0645\u0648\u0627\u062f \u062f\u06a9\u06be\u0627\u062a\u0627 \u06c1\u06d2\u060c \u067e\u06be\u0631 \u062c\u0648 \u06a9\u0686\u06be \u0628\u06be\u06cc \u0645\u0648\u0627\u062f \u06a9\u06d2 \u0628\u0644\u0627\u06a9\u0633 \u0622\u067e \u0686\u0627\u06c1\u06cc\u06ba \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Error loading block: %s":["\u0628\u0644\u0627\u06a9 %s \u0644\u0648\u0688 \u06a9\u0631\u0646\u06d2 \u0645\u06cc\u06ba \u062e\u0631\u0627\u0628\u06cc "],"Unknown error":["\u0646\u0627\u0645\u0639\u0644\u0648\u0645 \u062e\u0631\u0627\u0628\u06cc"],"Embed Handler":[" \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06c1\u06cc\u0646\u0688\u0644\u0631"],"term\x04Remove %s":["%s \u06a9\u0648 \u0645\u0679\u0627\u0626\u06cc\u06ba "],"Copy the permalink":["\u067e\u0631\u0645\u0627 \u0644\u0646\u06a9 \u06a9\u0627\u067e\u06cc \u06a9\u0631\u06cc\u06ba"],"Permalink copied":["\u067e\u0631\u0645\u0627 \u0644\u0646\u06a9 \u06a9\u0627\u067e\u06cc \u06c1\u0648\u06af\u06cc\u0627 \u06c1\u06d2\u06d4"],"Height in pixels":["\u067e\u06a9\u0633\u0644\u0632 \u0645\u06cc\u06ba \u0627\u0648\u0646\u0686\u0627\u0626\u06cc"],"Spacer Settings":["\u0633\u067e\u06cc\u0633\u0631 \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],Spacer:["\u0627\u0633\u067e\u06cc\u0633\u0631"],"Toggle to show a large initial letter.":["\u0628\u0691\u0627 \u0627\u0628\u062a\u062f\u0627\u0626\u06cc \u062d\u0631\u0641 \u062f\u06a9\u06be\u0627\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0679\u0648\u06af\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"Showing large initial letter.":["\u0628\u0691\u0627 \u0627\u0628\u062a\u062f\u0627\u0626\u06cc \u062d\u0631\u0641 \u062f\u06a9\u06be\u0627\u06cc\u0627 \u062c\u0627 \u0631\u06c1\u0627 \u06c1\u06d2\u06d4"],"Name:":["\u0646\u0627\u0645:"],"%1$s (%2$s of %3$s)":["(%1$s (%2$s of %3$s"],"Remove item":["\u0634\u06d2 \u06a9\u0648 \u0645\u0679\u0627\u0626\u06cc\u06ba "],"Color code: %s":["\u0631\u0646\u06af \u06a9\u0648\u0688: %s"],"Skip to the selected block":["\u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u062f\u06c1 \u0628\u0644\u0627\u06a9 \u06a9\u06cc \u0637\u0631\u0641 \u0631\u062c\u0648\u0639 \u06a9\u0631\u06cc\u06ba "],"Publish\u2026":["\u0634\u0627\u0626\u0639 \u06a9\u0631\u0646\u0627 ..."],"Schedule\u2026":["\u0634\u06cc\u0688\u0648\u0644\u06d4\u06d4\u06d4"],"Edit post permalink":["\u067e\u0648\u0633\u0679 \u067e\u0631\u0645\u0627\u0644\u0646\u06a9 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631\u06cc\u06ba "],"Show Block Settings":["\u0628\u0644\u0627\u06a9 \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"],"Hide Block Settings":["\u0628\u0644\u0627\u06a9 \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a \u0686\u06be\u067e\u0627\u0626\u06cc\u06ba"],"Block settings closed":["\u0628\u0644\u0627\u06a9 \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a \u0628\u0646\u062f \u06a9\u0631\u062f\u06cc \u06c1\u06d2"],"Close plugin":["\u067e\u0644\u06af \u0627\u0646 \u0628\u0646\u062f \u06a9\u0631\u06cc\u06ba"],"Link settings":[],Unlink:["\u063a\u06cc\u0631 \u0645\u0646\u062d\u0635\u0631"],"Page break":["\u067e\u06cc\u062c \u0628\u0631\u06cc\u06a9"],pagination:["\u0635\u0641\u062d\u06c1 \u0628\u0646\u062f\u06cc"],"next page":["\u0627\u06af\u0644\u0627 \u0635\u0641\u062d\u06c1"],"Image Size":["\u062a\u0635\u0648\u06cc\u0631 \u06a9\u0627 \u0646\u0627\u067e"],Height:["\u0627\u0648\u0646\u0686\u0627\u0626\u06cc"],Width:["\u0686\u0648\u0691\u0627\u0626\u06cc"],"Image Dimensions":["\u062a\u0635\u0648\u06cc\u0631\u06a9\u06cc \u0637\u0648\u0644 \u0648 \u0639\u0631\u0636"],"Thumbnails are not cropped.":["\u062a\u06be\u0645\u0628 \u0646\u06cc\u0644 \u0643\u0627 \u0633\u0627\u0626\u0632 \u062a\u0628\u062f\u06cc\u0644 \u0646\u06c1\u06cc\u06ba \u06a9\u06cc\u0627 \u06af\u06cc\u0627\u06d4"],"Thumbnails are cropped to align.":["\u062a\u06be\u0645\u0628 \u0646\u06cc\u0644 \u0633\u06cc\u062f\u06be\u0627 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0633\u0627\u0626\u0632 \u062a\u0628\u062f\u06cc\u0644 \u06a9\u06cc\u0627 \u06af\u06cc\u0627\u06d4"],"Media Library":["\u0645\u06cc\u0688\u06cc\u0627 \u0644\u0627\u0626\u0628\u0631\u06cc\u0631\u06cc"],Advanced:["\u062c\u062f\u06cc\u062f \u062a\u0631\u06cc\u0646"],"Add item":["\u0622\u0626\u0679\u0645 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Reset the template":["\u0679\u0645\u067e\u0644\u06cc\u0679 \u06a9\u0648 \u0631\u06cc \u0633\u06cc\u0679 \u06a9\u0631\u06cc\u06ba"],"Keep it as is":["\u0648\u06cc\u0633\u06d2 \u06a9\u0627 \u0648\u06cc\u0633\u06d2 \u06c1\u06cc \u0631\u06c1\u0646\u06d2 \u062f\u06cc\u06ba "],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u0622\u067e \u06a9\u06cc \u067e\u0648\u0633\u0679 \u06a9\u0627 \u0645\u0648\u0627\u062f \u0622\u067e \u06a9\u06cc \u067e\u0648\u0633\u0679 \u06a9\u06cc \u0642\u0633\u0645 \u06a9\u06d2 \u0645\u0637\u0627\u0628\u0642 \u0645\u0642\u0631\u0631 \u06a9\u0631\u062f\u06c1 \u0679\u06cc\u0645\u067e\u0644\u06cc\u0679 \u0633\u06d2 \u0645\u06cc\u0644 \u0646\u06c1\u06cc\u06ba \u06a9\u06be\u0627\u062a\u0627\u06d4"],"Resetting the template may result in loss of content, do you want to continue?":["\u0679\u0645\u067e\u0644\u06cc\u062a \u06a9\u0648 \u0631\u06cc \u0633\u06cc\u0679 \u06a9\u0631\u0646\u06d2 \u0633\u06d2 \u0622\u067e \u06a9\u0627 \u0645\u0648\u0627\u062f \u0636\u0627\u0626\u0639 \u06c1\u0648 \u0633\u06a9\u062a\u0627 \u06c1\u06d2\u060c \u06a9\u06cc\u0627 \u0622\u067e \u0627\u0633 \u0639\u0645\u0644 \u06a9\u0648 \u062c\u0627\u0631\u06cc \u0631\u06a9\u06be\u0646\u0627 \u0686\u0627\u06c1\u062a\u06d2 \u06c1\u06cc\u06ba\u061f"],"Document Statistics":["\u062f\u0633\u062a\u0627\u0648\u06cc\u0632\u06cc \u0627\u0639\u062f\u0627\u062f\u0648\u0634\u0645\u0627\u0631"],"is now scheduled. It will go live on":["\u0634\u06cc\u0688\u0648\u0644 \u062a\u0631\u062a\u06cc\u0628 \u062f\u06d2 \u062f\u06cc\u0627 \u06af\u06cc\u0627\u06d4 \u0627\u0628 \u06cc\u06c1 \u0644\u0627\u0626\u06cc\u0648 \u06c1\u0648\u06af\u0627"],Scheduled:["\u0634\u06cc\u0688\u0648\u0644 \u06a9\u0631\u062f\u06c1"],"Scheduling\u2026":["\u0634\u06cc\u0688 \u0648\u0644 \u062a\u0631\u062a\u06cc\u0628\u0628 \u062f\u06cc\u0627 \u062c\u0627 \u0631\u06c1\u0627 \u06c1\u06d2"],"Code editor selected":["\u06a9\u0648\u0688 \u0627\u06cc\u0688\u06cc\u0679\u0631 \u0645\u0646\u062a\u062e\u0628 \u06a9\u06cc\u0627 \u06af\u06cc\u0627 \u06c1\u06d2\u06d4 "],"Visual editor selected":["\u0638\u0627\u06c1\u0631\u06cc \u0627\u06cc\u0688\u06cc\u0679\u0631\u0645\u0646\u062a\u062e\u0628 \u06a9\u06cc\u0627 \u06af\u06cc\u0627 \u06c1\u06d2 "],Plugins:["\u067e\u0644\u06af \u0627\u0646\u0632"],"Custom Size":["\u0627\u067e\u0646\u06cc \u0645\u0631\u0636\u06cc \u06a9\u0627 \u0633\u0627\u0626\u0632"],"Layout Elements":["\u0648\u0636\u0639 \u0642\u0637\u0639 \u06a9\u06d2 \u0639\u0646\u0627\u0635\u0631 "],"term\x04%s removed":["\u0645\u0679\u0627\u0626\u06cc\u06ba %s"],"term\x04%s added":["%s \u0634\u0627\u0645\u0644 \u06a9\u0631\u062f\u06cc\u0627 \u06af\u06cc\u0627"],"imperative verb\x04Preview":["\u0646\u0638\u0627\u0631\u06c1 \u06a9\u0631\u06cc\u06ba"],"Block deleted.":["\u0628\u0644\u0627\u06a9 \u0688\u06cc\u0644\u06cc\u0679 \u06a9\u0631 \u062f\u06cc\u0627 \u06af\u06cc\u0627\u06c1\u06d2 "],"Block updated.":["\u0628\u0644\u0627\u06a9 \u0627\u067e\u0688\u06cc\u0679 \u06c1\u0648 \u06af\u06cc\u0627"],"Block created.":["\u0628\u0644\u0627\u06a9 \u062a\u062e\u0644\u06cc\u0642 \u06c1\u0648\u06af\u06cc\u0627"],"Trashing failed":["\u067e\u0648\u0633\u0679 \u062f\u06cc\u06a9\u06be\u06cc\u06ba "],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["\u0622\u067e \u06a9\u06cc \u062a\u0628\u062f\u06cc\u0644\u06cc\u0627\u06ba \u063a\u06cc\u0631 \u0645\u062d\u0641\u0648\u0638 \u06c1\u06cc\u06ba\u06d4 \u0627\u06af\u0631 \u0622\u067e \u0622\u06af\u06d2 \u0628\u0691\u06be\u06cc\u06ba \u06af\u06d2 \u062a\u0648 \u0648\u06c1 \u0636\u0627\u0626\u0639 \u06c1\u0648 \u062c\u0627\u0626\u06cc\u06ba \u06af\u06cc\u06d4"],"Document Outline":["\u062f\u0633\u062a\u0627\u0648\u06cc\u0632 \u06a9\u06cc \u0622\u0624\u0679 \u0644\u0627\u0626\u0646"],Paragraphs:["\u067e\u06cc\u0631\u0627\u06af\u0631\u0627\u0641"],Headings:["\u0633\u0631\u062e\u06cc\u0627\u06ba"],Words:["\u0627\u0644\u0641\u0627\u0638"],"Content structure":["\u0645\u0648\u0627\u062f \u06a9\u06cc \u0633\u0627\u062e\u062a"],Public:["\u0639\u0648\u0627\u0645\u06cc"],"Protected with a password you choose. Only those with the password can view this post.":["\u0622\u067e \u06a9\u06d2 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0631\u062f\u06c1 \u067e\u0627\u0633 \u0648\u0631\u0688 \u06a9\u06d2 \u0633\u0627\u062a\u06be \u0645\u062d\u0641\u0648\u0638 \u06a9\u06cc\u0627 \u06af\u06cc\u0627\u06d4 \u062c\u0646 \u06a9\u06d2 \u067e\u0627\u0633 \u067e\u0627\u0633\u0648\u0631\u0688 \u06c1\u0648\u0646\u06af\u06d2 \u0648\u06c1 \u0627\u0633 \u067e\u0648\u0633\u0679 \u06a9\u0648 \u062f\u06cc\u06a9\u06be \u0633\u06a9\u062a\u06d2 \u06c1\u06cc\u06ba\u06d4"],"Password Protected":["\u067e\u0627\u0633\u0648\u0631\u0688 \u0644\u06af\u0627 \u06c1\u0648\u0627 \u06c1\u06d2"],"Only visible to site admins and editors.":["\u0635\u0631\u0641 \u0633\u0627\u0626\u0679 \u0627\u06cc\u0688\u0645\u0646\u0632 \u0627\u0648\u0631 \u0627\u06cc\u0688\u06cc\u0679\u0631\u0632 \u06a9\u06d2 \u0644\u0626\u06d2 \u0646\u0638\u0631 \u0622\u062a\u0627 \u06c1\u06d2."],Private:["\u0646\u062c\u06cc"],"Visible to everyone.":["\u06c1\u0631 \u06a9\u0633\u06cc \u06a9\u0648 \u062f\u06cc\u06a9\u06be\u0646\u06d2 \u06a9\u06d2 \u0644\u0626\u06d2."],"Post Visibility":["\u067e\u0648\u0633\u0679 \u06a9\u06cc \u0646\u0645\u0627\u0626\u0634"],"Would you like to privately publish this post now?":["\u06a9\u06cc\u0627 \u0622\u067e \u0627\u0628 \u0627\u0633 \u0627\u0634\u0627\u0639\u062a \u06a9\u0648\u0630\u0627\u062a\u06cc \u0637\u0648\u0631 \u067e\u0631 \u0634\u0627\u0626\u0639 \u06a9\u0631\u0646\u0627 \u0686\u0627\u06c1\u062a\u06d2 \u06c1\u06cc\u06ba\u061f"],"Use a secure password":["\u0627\u06cc\u06a9 \u0645\u062d\u0641\u0648\u0638 \u067e\u0627\u0633 \u0648\u0631\u0688 \u06a9\u0627 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba"],"Create password":["\u067e\u0627\u0633\u0648\u0631\u0688 \u0628\u0646\u0627\u0626\u06cc\u06ba"],"Move to Trash":[],"Parent Term":["\u0628\u0646\u06cc\u0627\u062f\u06cc \u0627\u0635\u0637\u0644\u0627\u062d"],"Parent Category":["\u0628\u0646\u06cc\u0627\u062f\u06cc \u0632\u0645\u0631\u06c1"],"Add new term":["\u0646\u0626\u06cc \u0627\u0635\u0637\u0644\u0627\u062d \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Add new category":["\u0646\u0626\u06cc \u0642\u0633\u0645 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],Term:["\u0645\u062f\u062a"],Tag:["\u0679\u06cc\u06af"],"Add New Term":["\u0646\u0626 \u0679\u0631\u0645 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Add New Tag":["\u0646\u06cc\u0627 \u0679\u06cc\u06af \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba "],"Switch to Draft":["\u0688\u0631\u0627\u0641\u0679 \u0645\u06cc\u06ba \u0633\u0648\u0626\u0686 \u06a9\u0631\u06cc\u06ba"],"Are you sure you want to unpublish this post?":["\u06a9\u06cc\u0627 \u0622\u067e \u0648\u0627\u0642\u0639\u06cc \u06cc\u06c1 \u067e\u0648\u0633\u0679 \u063a\u06cc\u0631 \u0634\u0627\u0626\u0639 \u06a9\u0631\u0646\u0627 \u0686\u0627\u06c1\u062a\u06d2 \u06c1\u06cc\u06ba\u061f"],Immediately:["\u0641\u0648\u0631\u06cc \u0637\u0648\u0631 \u067e\u0631"],"Save Draft":["\u0688\u0631\u0627\u0641\u0679 \u0645\u062d\u0641\u0648\u0638 \u06a9\u0631\u06cc\u06ba"],Saving:["\u0628\u0686\u062a"],"Publish:":["\u0634\u0627\u0626\u0639:"],"Visibility:":["\u0646\u0645\u0627\u0626\u0634:"],"Are you ready to publish?":["\u06a9\u06cc\u0627 \u0622\u067e \u0634\u0627\u0626\u0639 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u0626\u06d2 \u062a\u06cc\u0627\u0631 \u06c1\u06cc\u06ba\u061f"],"Copy Link":["\u06a9\u0627\u067e\u06cc \u0644\u0646\u06a9"],"What\u2019s next?":["\u0627\u06af\u0644\u0627 \u06a9\u06cc\u0627 \u06c1\u06d2\u061f"],"is now live.":["\u0627\u0628\u06be\u06cc \u0627\u0646 \u0644\u0627\u0626\u0646 \u06c1\u06d2\u06d4"],Published:["\u0634\u0627\u0626\u0639 \u06a9\u0631 \u062f\u06cc \u06af\u0626\u06cc"],Schedule:["\u0634\u06cc\u0688\u0648\u0644"],Update:["\u0627\u067e\u0688\u06cc\u0679 \u06a9\u0631\u06cc\u06ba"],"Submit for Review":["\u062c\u0627\u0626\u0632\u06c1 \u06a9\u06d2 \u0644\u0626\u06d2 \u062c\u0645\u0639 \u06a9\u0631\u0648\u0627\u0626\u06cc\u06ba"],"Updating\u2026":["\u0627\u067e\u0688\u06cc\u0679 \u06a9\u06cc\u0627 \u062c\u0627 \u0631\u06c1\u0627 \u06c1\u06d2\u06d4\u06d4\u06d4"],"Publishing\u2026":["\u0634\u0627\u0626\u0639 \u06a9\u06cc\u0627 \u062c\u0627 \u0631\u06c1\u0627 \u06c1\u06d2\u06d4\u06d4\u06d4"],"Allow Pingbacks & Trackbacks":["\u067e\u0646\u06af \u0628\u06cc\u06a9\u0633 \u0627\u0648\u0631 \u0679\u0631\u06cc\u06a9 \u0628\u06cc\u06a9\u0633 \u06a9\u06cc \u0627\u062c\u0627\u0632\u062a \u062f\u06cc\u06ba"],"Permalink:":["\u067e\u0631\u0645\u0627\u0644\u0646\u06a9"],"Pending Review":["\u0632\u06cc\u0631 \u0627\u0644\u062a\u0648\u0627 \u06a9\u0627 \u062c\u0627\u0626\u0632\u06c1"],"%d Revision":["%d \u0646\u0638\u0631\u062b\u0627\u0646\u06cc","%d \u0646\u0638\u0631\u062b\u0627\u0646\u06cc\u0627\u06ba"],"Suggestion:":["\u062a\u062c\u0627\u0648\u06cc\u0632:"],"Post Format":["\u067e\u0648\u0633\u0679 \u0641\u0627\u0631\u0645\u06cc\u0679"],Chat:["\u0628\u0627\u062a \u0686\u06cc\u062a"],Status:["\u0627\u0633\u0679\u06cc\u0679\u0633"],Standard:["\u0645\u0639\u06cc\u0627\u0631"],Aside:["\u0627\u06cc\u06a9 \u0637\u0631\u0641"],"Set Featured Image":[],"Learn more about manual excerpts":["\u062f\u0633\u062a\u06cc \u062d\u0648\u0627\u0644\u06c1 \u062c\u0627\u062a \u06a9\u06d2 \u0628\u0627\u0631\u06d2 \u0645\u06cc\u06ba \u0645\u0632\u06cc\u062f \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u062d\u0627\u0635\u0644 \u06a9\u0631\u06cc\u06ba"],"Write an excerpt (optional)":["\u0627\u06cc\u06a9 \u062e\u0644\u0627\u0635\u06c1 \u0644\u06a9\u06be\u06cc\u06ba (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc)"],"Allow Comments":["\u062a\u0628\u0635\u0631\u0648\u06ba \u06a9\u06cc \u0627\u062c\u0627\u0632\u062a \u062f\u06cc\u06ba"],"Template:":["\u0633\u0627\u0646\u0686\u06d2:"],"no parent":["\u0628\u0646\u06cc\u0627\u062f\u06cc \u0646\u06c1\u06cc\u06ba"],"no title":["\u0628\u063a\u06cc\u0631 \u0639\u0646\u0648\u0627\u0646 "],Order:["\u0622\u0631\u0688\u0631"],"No blocks found.":["\u06a9\u0648\u0626\u06cc \u0628\u0644\u0627\u06a9\u0633 \u0646\u06c1\u06cc\u06ba \u0645\u0644\u06d2\u06d4"],"%d result found.":["%d \u0646\u062a\u06cc\u062c\u06c1 \u0645\u0644 \u06af\u06cc\u0627\u06d4","%d \u0646\u062a\u0627\u0626\u062c \u0645\u0644 \u06af\u0626\u06d2\u06d4"],Saved:["\u0645\u062d\u0641\u0648\u0638 \u0634\u062f\u06c1"],Embeds:["\u0627\u06cc\u0645\u0628\u06cc\u0688\u0632"],Blocks:["\u0628\u0644\u0627\u06a9\u0633"],"Search for a block":[" \u0628\u0644\u0627\u06a9 \u06a9\u06d2 \u0644\u06cc\u06d2 \u062a\u0644\u0627\u0634 \u06a9\u0631\u06cc\u06ba"],"Add block":["\u0646\u06cc\u0627 \u0628\u0644\u0627\u06a9 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Add %s":["%s \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Copy Error":[" \u062e\u0631\u0627\u0628\u06cc \u06a9\u0627\u067e\u06cc \u06a9\u0631\u06cc\u06ba"],"Copy Post Text":["\u067e\u0648\u0633\u0679 \u06a9\u0627 \u0645\u062a\u0646 \u06a9\u0627\u067e\u06cc \u06a9\u0631\u06cc\u06ba"],"Attempt Recovery":["\u0631\u06cc\u06a9\u0648\u0631\u06cc \u06a9\u06cc \u06a9\u0648\u0634\u0634 \u06a9\u0631\u06cc\u06ba"],"The editor has encountered an unexpected error.":["\u0627\u06cc\u0688\u06cc\u0679\u0631 \u06a9\u0648 \u06a9\u0633\u06cc \u063a\u06cc\u0631 \u0645\u062a\u0648\u0642\u0639 \u062e\u0631\u0627\u0628\u06cc \u06a9\u0627 \u0633\u0627\u0645\u0646\u0627 \u06c1\u06d2"],Undo:["\u06a9\u0627\u0644\u0639\u062f\u0645 \u06a9\u0631\u06cc\u06ba"],Redo:["\u062f\u0648\u0628\u0627\u0631\u06c1 \u06a9\u0631\u06cc\u06ba"],"(Multiple H1 headings are not recommended)":["(\u0627\u06cc\u06a9 \u0633\u06d2 \u0632\u06cc\u0627\u062f\u06c1 H1 \u0633\u0631\u062e\u06cc\u0627\u06ba \u06a9\u06cc \u062a\u062c\u0648\u06cc\u0632 \u0646\u06c1\u06cc\u06ba \u06a9\u06cc \u062c\u0627\u062a\u06cc \u06c1\u06cc\u06ba)"],"(Your theme may already use a H1 for the post title)":["(\u06c1\u0648 \u0633\u06a9\u062a\u0627 \u06c1\u06d2 \u0622\u067e \u06a9\u06cc \u062a\u06be\u06cc\u0645 \u067e\u0648\u0633\u0679 \u06a9\u06d2\u0639\u0646\u0648\u0627\u0646 \u0644\u06cc\u06d2 \u067e\u06c1\u0644\u06d2 \u0633\u06d2 H1 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u062a\u06cc \u06c1\u06d2)"],"(Incorrect heading level)":["(\u0633\u0631\u062e\u06cc \u06a9\u06cc \u063a\u0644\u0637 \u0633\u0637\u062d)"],"(Empty heading)":["(\u062e\u0627\u0644\u06cc \u0633\u0631\u062e\u06cc)"],"Block Styles":["\u0628\u0644\u0627\u06a9 \u0627\u0633\u0679\u0627\u0626\u0644\u0632"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\u06a9\u06cc\u0627 \u0622\u067e \u0648\u0627\u0642\u0639\u06cc \u06cc\u06c1 \u062f\u0648\u0628\u0627\u0631\u06c1 \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0628\u0644\u0627\u06a9 \u062d\u0630\u0641 \u06a9\u0631\u0646\u0627 \u0686\u0627\u06c1\u062a\u06d2 \u06c1\u06cc\u06ba\u061f\n\n \u06cc\u06c1 \u0645\u0633\u062a\u0642\u0644 \u0637\u0648\u0631 \u067e\u0631 \u062a\u0645\u0627\u0645 \u067e\u0648\u0633\u0679\u06cc\u06ba \u0627\u0648\u0631 \u0635\u0641\u062d\u0627\u062a \u0633\u06d2 \u062d\u0630\u0641 \u06a9\u0631 \u062f\u06cc\u0627 \u062c\u0627\u0626\u06d2 \u06af\u0627 \u062c\u0648 \u0627\u0633 \u06a9\u0648 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u062a\u06d2 \u06c1\u06cc\u06ba\u06d4"],"Convert to Regular Block":["\u0628\u0627\u0642\u0627\u0639\u062f\u06c1(\u0631\u06cc\u06af\u0648\u0644\u0631) \u0628\u0644\u0627\u06a9 \u0645\u06cc\u06ba \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba"],"More options":["\u0645\u0632\u06cc\u062f \u0627\u062e\u062a\u06cc\u0627\u0631\u0627\u062a"],"Edit visually":["\u0638\u0627\u06c1\u0631\u06cc \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631\u06cc\u06ba"],Duplicate:["\u0646\u0642\u0644"],"Blocks cannot be moved down as they are already at the bottom":["\u0628\u0644\u0627\u06a9 \u0630\u06cc\u0644 \u0645\u06cc\u06ba \u0646\u06c1\u06cc\u06ba \u062c\u0627 \u0633\u06a9\u062a\u06d2 \u06c1\u06cc\u06ba \u06a9\u06cc\u0648\u0646\u06a9\u06c1 \u0648\u06c1 \u067e\u06c1\u0644\u06d2 \u0633\u06d2 \u06c1\u06cc \u0646\u06cc\u0686\u06d2 \u06c1\u06cc\u06ba"],"Blocks cannot be moved up as they are already at the top":["\u0628\u0644\u0627\u06a9\u0633 \u06a9\u0648\u0627\u0648\u067e\u0631\u0645\u0646\u062a\u0642\u0644 \u0646\u06c1\u06cc\u06ba \u06a9\u06cc\u0627 \u062c\u0627 \u0633\u06a9\u062a\u0627 \u06c1\u06d2 \u06a9\u06cc\u0648\u0646\u06a9\u06c1 \u0648\u06c1 \u067e\u06c1\u0644\u06d2 \u0633\u06d2 \u0627\u0648\u067e\u0631 \u06c1\u06cc\u06ba"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["\u0628\u0644\u0627\u06a9 %s \u0635\u0631\u0641 \u0627\u06cc\u06a9 \u0628\u0644\u0627\u06a9 \u06c1\u06d2\u060c \u0627\u0648\u0631 \u0645\u0646\u062a\u0642\u0644 \u0646\u06c1\u06cc\u06ba \u06a9\u06cc\u0627 \u062c\u0627 \u0633\u06a9\u062a\u0627"],"Edit as HTML":["\u0627\u06cc\u0686 \u0679\u06cc \u0627\u06cc\u0645 \u0627\u06cc\u0644 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631\u06cc\u06ba"],"Convert to Blocks":["\u0628\u0644\u0627\u06a9\u0633 \u0645\u06cc\u06ba \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba"],"Block: %s":["\u0628\u0644\u0627\u06a9: %s"],"This block has encountered an error and cannot be previewed.":["\u0627\u0633 \u0628\u0644\u0627\u06a9 \u0646\u06d2 \u0627\u06cc\u06a9 \u062e\u0631\u0627\u0628\u06cc \u06a9\u0627 \u0633\u0627\u0645\u0646\u0627 \u06a9\u06cc\u0627 \u0627\u0648\u0631 \u067e\u06cc\u0634 \u0646\u0638\u0631 \u0646\u06c1\u06cc\u06ba \u06a9\u06cc\u0627 \u062c\u0627 \u0633\u06a9\u062a\u0627\u06d4"],"No block selected.":["\u06a9\u0648\u0626\u06cc \u0628\u0644\u0627\u06a9 \u0645\u0646\u062a\u062e\u0628 \u0646\u06c1\u06cc\u06ba \u06a9\u06cc\u0627 \u06af\u06cc\u0627"],"Transform into:":["\u0645\u06cc\u06ba \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba:"],Remove:["\u062d\u0630\u0641 \u06a9\u0631\u06cc\u06ba"],"Find original":["\u0627\u0635\u0644 \u062a\u0644\u0627\u0634 \u06a9\u0631\u06cc\u06ba"],"Copy All Content":["\u062a\u0645\u0627\u0645 \u0645\u0648\u0627\u062f \u06a9\u0627\u067e\u06cc \u06a9\u0631\u06cc\u06ba"],"Copied!":["\u06a9\u0627\u067e\u06cc \u0634\u062f\u06c1!"],"Additional settings are now available in the Editor block settings sidebar":["\u0627\u0636\u0627\u0641\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a \u0627\u06cc\u0688\u06cc\u0679\u0631 \u0628\u0644\u0627\u06a9 \u06a9\u06cc \u0633\u0627\u0626\u06cc\u0688 \u0628\u0627\u0631 \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a \u0645\u06cc\u06ba \u062f\u0633\u062a\u06cc\u0627\u0628 \u06c1\u06cc\u06ba "],Visibility:["\u0638\u0627\u06c1\u0631\u06cc"],"Status & Visibility":["\u062d\u06cc\u062b\u06cc\u062a \u0627\u0648\u0631 \u0646\u0645\u0627\u0626\u0634"],"Page Attributes":["\u0635\u0641\u062d\u06d2 \u06a9\u06cc \u0635\u0641\u0627\u062a"],Block:["\u0648\u0627\u062d\u062f: \u0628\u0644\u0627\u06a9"],Document:["\u062f\u0633\u062a\u0627\u0648\u06cc\u0632"],"Featured Image":["\u0646\u0645\u0627\u06cc\u0627\u06ba \u062a\u0635\u0648\u06cc\u0631"],"Close settings":["\u062a\u0631\u062a\u06cc\u0628\u0627\u062a \u0628\u0646\u062f \u06a9\u0631\u06cc\u06ba "],"Editor content":["\u0627\u06cc\u0688\u06cc\u0679\u0631 \u0645\u0648\u0627\u062f "],Tools:["\u0679\u0648\u0644\u0632 "],Editor:["\u0627\u06cc\u0688\u06cc\u0679\u0631"],"Code Editor":["\u06a9\u0648\u0688 \u0627\u06cc\u0688\u06cc\u0679\u0631 "],"Visual Editor":["\u0628\u0635\u0631\u06cc \u0627\u06cc\u0688\u06cc\u0679\u0631"],"Editor top bar":["\u0627\u06cc\u0688\u06cc\u0679\u0631 \u0679\u0627\u067e \u0628\u0627\u0631"],Settings:["\u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],Reset:["\u0631\u06cc \u0633\u06cc\u0679 \u06a9\u0631\u06cc\u06ba"],"Dismiss this notice":["\u0627\u0633 \u0646\u0648\u0679\u0633 \u06a9\u0648 \u0628\u0631\u062e\u0627\u0633\u062a \u06a9\u0631\u06cc\u06ba"],"Item removed.":["\u0622\u0626\u0679\u0645 \u062d\u0630\u0641 \u06a9\u0631 \u062f\u06cc\u0627 \u06af\u06cc\u0627\u06d4"],"Item added.":["\u0622\u0626\u0679\u0645 \u0634\u0627\u0645\u0644 \u06a9\u0631 \u062f\u06cc\u0627 \u06af\u06cc\u0627\u06d4"],"Drop files to upload":["\u0627\u067e \u0644\u0648\u0688 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0641\u0627\u0626\u0644\u0632 \u06a9\u0648 \u0688\u0631\u0627\u067e \u06a9\u0631\u06cc\u06ba"],PM:["\u0634\u0627\u0645"],AM:["\u0635\u0628\u062d"],"An unknown error occurred.":["\u0627\u06cc\u06a9 \u0646\u0627\u0645\u0639\u0644\u0648\u0645 \u062e\u0631\u0627\u0628\u06cc \u062f\u0631\u067e\u06cc\u0634 \u0622\u0626\u06cc\u06d4"],"No results.":["\u06a9\u0648\u0626\u06cc \u0646\u062a\u06cc\u062c\u06c1 \u0646\u06c1\u06cc\u06ba\u06d4"],"%d result found, use up and down arrow keys to navigate.":["%d \u0646\u062a\u06cc\u062c\u06c1 \u0645\u0644\u0627\u060c \u0646\u06cc\u0648\u06cc\u06af\u06cc\u0679 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u0626\u06d2 \u0627\u0648\u067e\u0631 \u0627\u0648\u0631 \u0646\u06cc\u0686\u06d2 \u06a9\u06cc \u0627\u06cc\u0631\u0648 \u06a9\u06cc\u0632 \u06a9\u0627 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba\u06d4","%d \u0646\u062a\u06cc\u062c\u06d2 \u0645\u0644\u06d2\u060c \u0646\u06cc\u0648\u06cc\u06af\u06cc\u0679 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u0627\u0648\u067e\u0631 \u0627\u0648\u0631 \u0646\u06cc\u0686\u06d2 \u06a9\u06cc \u0627\u06cc\u0631\u0648 \u06a9\u06cc\u0632 \u06a9\u0627 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"(no title)":["(\u0628\u0644\u0627\u0639\u0646\u0648\u0627\u0646)"],URL:["\u06cc\u0648\u0622\u0631\u0627\u06cc\u0644"],Submit:["\u0627\u0631\u0633\u0627\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],Close:["\u0628\u0646\u062f \u06a9\u0631\u06cc\u06ba"],"Insert link":[],"Edit link":[],Link:["\u0644\u0646\u06a9"],Strikethrough:["\u062e\u0637 \u0645\u0642\u0637\u0648\u0639"],Italic:["\u0627\u0679\u0627\u0644\u06a9"],Bold:["\u0628\u0648\u0644\u0688"],"Remove link":[],"Number of items":["\u0622\u0626\u0679\u0645\u0632 \u06a9\u06cc \u062a\u0639\u062f\u0627\u062f"],All:["\u062a\u0645\u0627\u0645"],Category:["\u0632\u0645\u0631\u06c1"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["\u067e\u0631\u0627\u0646\u06cc \u0633\u06d2 \u062a\u0627\u0632\u06c1 \u062a\u0631\u06cc\u0646"],"Newest to Oldest":["\u062a\u0627\u0632\u06c1 \u062a\u0631\u06cc\u0646 \u0633\u06d2 \u067e\u0631\u0627\u0646\u06cc"],"Order by":["\u062a\u0631\u062a\u06cc\u0628 \u0627\u0632"],Select:["\u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"],"Select or Upload Media":["\u0645\u06cc\u0688\u06cc\u0627 \u06a9\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0631\u06cc\u06ba \u06cc\u0627 \u0627\u067e\u0644\u0648\u0688 \u06a9\u0631\u06cc\u06ba"],Video:["\u0648\u06cc\u0688\u06cc\u0648"],"Edit video":["\u0648\u06cc\u0688\u06cc\u0648 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631\u06cc\u06ba"],"Write\u2026":["\u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],poetry:["\u0634\u0627\u0639\u0631\u06cc "],Verse:["\u0645\u0635\u0631\u0639"],"New Column":["\u0646\u06cc\u0627 \u06a9\u0627\u0644\u0645"],"Delete Column":["\u06a9\u0627\u0644\u0645 \u06a9\u0648 \u062d\u0630\u0641 \u06a9\u0631\u06cc\u06ba"],"Add Column After":["\u0627\u0633 \u06a9\u06d2 \u0628\u0639\u062f \u06a9\u0627\u0644\u0645 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Add Column Before":["\u0627\u0633 \u0633\u06d2 \u067e\u06c1\u0644\u06d2 \u06a9\u0627\u0644\u0645 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Delete Row":["\u0642\u0637\u0627\u0631 \u06a9\u0648 \u062d\u0630\u0641 \u06a9\u0631\u06cc\u06ba"],"Add Row After":["\u0627\u0633 \u0633\u06d2 \u0628\u0639\u062f \u0642\u0637\u0627\u0631 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Add Row Before":["\u0627\u0633 \u0633\u06d2 \u067e\u06c1\u0644\u06d2 \u0642\u0637\u0627\u0631 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Edit table":[],Table:["\u0679\u06cc\u0628\u0644"],"Write subheading\u2026":["\u0633\u0628 \u06c1\u06cc\u0688\u0646\u06af \u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],"Write shortcode here\u2026":["\u0634\u0627\u0631\u0679 \u06a9\u0648\u0688 \u06cc\u06c1\u0627\u06ba \u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],Shortcode:["\u0634\u0627\u0631\u0679 \u06a9\u0648\u0688"],divider:["\u062a\u0642\u0633\u06cc\u0645 \u06a9\u0646\u0646\u062f\u06c1"],"horizontal-line":["\u0627\u0641\u0642\u06cc \u0644\u0627\u0626\u0646 (\u062f\u0627\u0626\u06cc\u06ba \u0633\u06d2 \u0628\u0627\u0626\u06cc\u06ba)"],Separator:["\u0633\u06cc\u067e\u0631\u06cc\u0679\u0631"],Quote:["\u0627\u0642\u062a\u0628\u0627\u0633"],"Write citation\u2026":["\u062d\u0648\u0627\u0644\u06c1 \u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],"Write quote\u2026":["\u0642\u0648\u0644 \u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],Pullquote:["Pullquote"],"Write preformatted text\u2026":["\u067e\u06c1\u0644\u06d2 \u0633\u06d2 \u067e\u06cc\u0634 \u06a9\u0631\u062f\u06c1 \u0637\u0631\u06cc\u0642\u06d2 \u0633\u06d2 \u062a\u062d\u0631\u06cc\u0631 \u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],Preformatted:["\u0648\u0636\u0639 \u0634\u062f\u06c1"],text:["\u0645\u062a\u0646"],Paragraph:["\u067e\u06cc\u0631\u0627\u06af\u0631\u0627\u0641"],"Font Size":["\u0641\u0648\u0646\u0679 \u0633\u0627\u0626\u0632"],"Drop Cap":["\u0688\u0631\u0627\u067e \u06a9\u06cc\u067e"],"Text Settings":["\u0645\u062a\u0646 \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],"Read more":["\u0645\u0632\u06cc\u062f \u067e\u0691\u06be\u06cc\u06ba"],"Write list\u2026":["\u0641\u06c1\u0631\u0633\u062a \u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],"numbered list":["\u0646\u0645\u0628\u0631 \u0648\u0627\u0644\u06cc \u0641\u06c1\u0631\u0633\u062a"],"ordered list":["\u062a\u0631\u062a\u06cc\u0628 \u0634\u062f\u06c1 \u0641\u06c1\u0631\u0633\u062a"],"bullet list":["\u0628\u0648\u0644\u06cc\u0679 \u0641\u06c1\u0631\u0633\u062a"],"Indent list item":["\u062d\u0627\u0634\u06cc\u06c1 \u0644\u0633\u0679 \u0622\u0626\u0679\u0645"],"Outdent list item":["\u0622\u0624\u0679 \u0688\u06cc\u0646\u0679 \u0644\u0633\u0679 \u0622\u0626\u0679\u0645"],"Convert to ordered list":["\u062a\u0631\u062a\u06cc\u0628 \u0634\u062f\u06c1 \u0641\u06c1\u0631\u0633\u062a \u0645\u06cc\u06ba \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba"],"Convert to unordered list":["\u063a\u06cc\u0631 \u062a\u0631\u062a\u06cc\u0628 \u0634\u062f\u06c1 \u0641\u06c1\u0631\u0633\u062a \u0645\u06cc\u06ba \u062a\u0628\u062f\u06cc\u0644 \u06a9\u0631\u06cc\u06ba"],List:["\u0641\u06c1\u0631\u0633\u062a"],"recent posts":["\u062d\u0627\u0644 \u06c1\u06cc \u0645\u06cc\u06ba \u06a9\u06cc \u062c\u0627\u0646\u06d2 \u0648\u0627\u0644\u06cc \u067e\u0648\u0633\u0679\u0633 "],"No posts found.":["\u06a9\u0648\u0626\u06cc \u067e\u0648\u0633\u0679 \u0646\u06c1\u06cc\u06ba \u0645\u0644\u06cc\u06d4"],"Latest Posts":["\u062a\u0627\u0632\u06c1 \u062a\u0631\u06cc\u0646 \u067e\u0648\u0633\u0679"],"Display post date":["\u067e\u0648\u0633\u0679 \u06a9\u06cc \u062a\u0627\u0631\u06cc\u062e \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"],"Grid view":[],"List view":[],photo:["\u062a\u0635\u0648\u06cc\u0631"],"Image Settings":["\u062a\u0635\u0648\u06cc\u0631\u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],Image:["\u062a\u0635\u0648\u06cc\u0631"],Preview:["\u067e\u06cc\u0634 \u0645\u0646\u0638\u0631"],embed:["\u0627\u06cc\u0645\u0628\u06cc\u0688"],"Custom HTML":["\u06a9\u0633\u0679\u0645 \u0627\u06cc\u0686 \u0679\u06cc \u0627\u06cc\u0645 \u0627\u06cc\u0644"],subtitle:["\u0630\u06cc\u0644\u06cc \u0639\u0646\u0648\u0627\u0646"],title:["\u0639\u0646\u0648\u0627\u0646"],Heading:["\u0633\u0631\u062e\u06cc"],"Write heading\u2026":["\u0633\u0631\u062e\u06cc \u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],"Heading %d":["%d \u06c1\u06cc\u0688\u0646\u06af"],Level:["\u0633\u0637\u062d"],"Heading Settings":["\u0633\u0631\u062e\u06cc \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],photos:["\u062a\u0635\u0627\u0648\u06cc\u0631"],images:["\u062a\u0635\u0627\u0648\u06cc\u0631"],"Remove Image":["\u062a\u0635\u0648\u06cc\u0631 \u062d\u0630\u0641 \u06a9\u0631\u06cc\u06ba"],None:["\u06a9\u0686\u06be \u0646\u06c1\u06cc\u06ba"],"Media File":["\u0645\u06cc\u0688\u06cc\u0627 \u0641\u0627\u0626\u0644"],"Attachment Page":["\u0645\u0646\u0633\u0644\u06a9\u06c1 \u0635\u0641\u062d\u06c1"],"Crop Images":["\u062a\u0635\u0627\u0648\u06cc\u0631 \u06a9\u0631\u0622\u067e \u06a9\u0631\u06cc\u06ba"],"Gallery Settings":["\u06af\u06cc\u0644\u0631\u06cc \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],Gallery:["\u06af\u06cc\u0644\u0631\u06cc"],Classic:["\u06a9\u0644\u0627\u0633\u06a9"],video:["\u0648\u06cc\u0688\u06cc\u0648"],audio:["\u0622\u0688\u06cc\u0648"],music:["\u0645\u0648\u0633\u06cc\u0642\u06cc"],image:["\u062a\u0635\u0648\u06cc\u0631"],blog:["\u0628\u0644\u0627\u06af"],post:["\u067e\u0648\u0633\u0679"],"Embedded content from %s":["%s \u0633\u06d2 \u0627\u06cc\u0645\u0628\u06cc\u0688\u0688 \u0645\u0648\u0627\u062f"],"Enter URL to embed here\u2026":["\u06cc\u06c1\u0627\u06ba \u0627\u06cc\u0645\u0628\u06cc\u0688 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u06cc\u0648\u0622\u0631\u0627\u06cc\u0644 \u062f\u0631\u062c \u06a9\u0631\u06cc\u06ba\u06d4\u06d4\u06d4"],"%s URL":["%s \u06cc\u0648\u0622\u0631\u0627\u06cc\u0644"],"Embedding\u2026":["\u0627\u06cc\u0645\u0628\u06cc\u0688\u0646\u06af\u06d4\u06d4\u06d4"],"Write title\u2026":["\u0639\u0646\u0648\u0627\u0646 \u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],"Fixed Background":["\u0641\u06a9\u0633\u0688 \u067e\u0633 \u0645\u0646\u0638\u0631"],"Edit image":["\u062a\u0635\u0648\u06cc\u0631 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631\u06cc\u06ba"],Columns:["\u06a9\u0627\u0644\u0645\u0632"],Experiments:[],Code:["\u06a9\u0648\u0688"],"Write code\u2026":["\u06a9\u0648\u0688 \u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],Categories:["\u0632\u0645\u0631\u06d2"],"Show Hierarchy":["\u06c1\u06cc\u0631\u0627\u0631 \u06a9\u06cc \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"],"Show post counts":["\u067e\u0648\u0633\u0679 \u0634\u0645\u0627\u0631 \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"],"Categories Settings":["\u0632\u0645\u0631\u06c1 \u062c\u0627\u062a \u06a9\u06cc \u062a\u0631\u062a\u06cc\u0628\u0627\u062a"],"Add text\u2026":["\u0679\u06a9\u0633\u0679 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba\u06d4\u06d4\u06d4"],Button:["\u0628\u0679\u0646"],Apply:["\u0644\u0627\u06af\u0648 \u06a9\u0631\u06cc\u06ba"],"Text Color":["\u0679\u06cc\u06a9\u0633\u0679 \u06a9\u0627\u0631\u0646\u06af"],"Background Color":["\u067e\u0633 \u0645\u0646\u0638\u0631 \u0631\u0646\u06af"],"Block has been deleted or is unavailable.":["\u0628\u0644\u0627\u06a9 \u062d\u0630\u0641 \u06a9\u0631\u062f\u06cc\u0627 \u06af\u06cc\u0627 \u06c1\u06d2 \u06cc\u0627 \u062f\u0633\u062a\u06cc\u0627\u0628 \u0646\u06c1\u06cc\u06ba \u06c1\u06d2\u06d4"],"Reusable Blocks":["\u062f\u0648\u0628\u0627\u0631\u06c1 \u0642\u0627\u0628\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0628\u0644\u0627\u06a9\u0633"],Cancel:["\u0645\u0646\u0633\u0648\u062e \u06a9\u0631\u06cc\u06ba"],Edit:["\u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631\u06cc\u06ba"],"Edit audio":["\u0622\u0688\u06cc\u0648 \u0645\u06cc\u06ba \u062a\u0631\u0645\u06cc\u0645 \u06a9\u0631\u06cc\u06ba"],"Write caption\u2026":["\u0639\u0646\u0648\u0627\u0646 \u0644\u06a9\u06be\u06cc\u06ba\u06d4\u06d4\u06d4"],"Use URL":["\u06cc\u0648 \u0622\u0631 \u0627\u06cc\u0644 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba"],Audio:["\u0622\u0688\u06cc\u0648"],Upload:["\u0686\u0691\u06be\u0627\u0626\u06cc\u06ba"],"Additional CSS Class(es)":[],"HTML Anchor":["\u0627\u06cc\u0686 \u0679\u06cc \u0627\u06cc\u0645 \u0627\u06cc\u0644 \u0627\u06cc\u0646\u06a9\u0631"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u0631\u0646\u06af\u0648\u06ba \u06a9\u0627 \u06cc\u06c1 \u0645\u062c\u0645\u0648\u0639\u06c1 \u0635\u0627\u0631\u0641\u06cc\u0646 \u06a9\u0648 \u067e\u0691\u06be\u0646\u06d2 \u0645\u06cc\u06ba \u0645\u0634\u06a9\u0644 \u067e\u06cc\u062f\u0627 \u06a9\u0631 \u0633\u06a9\u062a\u0627 \u06c1\u06d2\u06d4 \u06a9\u0648\u0634\u0634 \u06a9\u0631\u06cc\u06ba \u06a9\u06c1 \u06c1\u0644\u06a9\u06d2 \u0631\u0646\u06af \u06a9\u0627 \u067e\u0633 \u0645\u0646\u0638\u0631 \u0627\u0648\u0631/\u06cc\u0627 \u06af\u06c1\u0631\u06d2 \u0631\u0646\u06af \u06a9\u0627 \u0645\u062a\u0646 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u0631\u0646\u06af\u0648\u06ba \u06a9\u0627 \u06cc\u06c1 \u0645\u062c\u0645\u0648\u0639\u06c1 \u0635\u0627\u0631\u0641\u06cc\u0646 \u06a9\u0648 \u067e\u0691\u06be\u0646\u06d2 \u0645\u06cc\u06ba \u0645\u0634\u06a9\u0644 \u067e\u06cc\u062f\u0627 \u06a9\u0631 \u0633\u06a9\u062a\u0627 \u06c1\u06d2\u06d4 \u06a9\u0648\u0634\u0634 \u06a9\u0631\u06cc\u06ba \u06a9\u06c1 \u06af\u06c1\u0631\u06d2 \u0631\u0646\u06af \u06a9\u0627 \u067e\u0633 \u0645\u0646\u0638\u0631 \u0627\u0648\u0631/\u06cc\u0627 \u06c1\u0644\u06a9\u06d2 \u0631\u0646\u06af \u06a9\u0627 \u0645\u062a\u0646 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u06a9\u0631\u06cc\u06ba\u06d4"],Clear:["\u0635\u0627\u0641 \u06a9\u0631\u06cc\u06ba"],"Custom color picker":["\u0645\u0631\u0636\u06cc \u06a9\u06d2 \u0631\u0646\u06af \u0686\u0646\u0646\u062f\u06c1"],"Color: %s":["\u0631\u0646\u06af: %s"],"Full Width":[],"Wide Width":[],Widgets:["\u0648\u06cc\u062c\u0679\u0633"],Formatting:["\u0628\u0646\u0627\u0648\u0679"],"Common Blocks":["\u0639\u0627\u0645 \u0628\u0644\u0627\u06a9\u0633"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["1440 \u06a9\u06d2 \u0628\u0639\u062f \u0633\u06d2 \u067e\u0631\u0646\u0679\u0646\u06af. \u06cc\u06c1 \u06a9\u0648\u0631 \u0645\u06cc\u06ba \u0646\u0626\u06d2 \u0628\u0644\u0627\u06a9 \u0627\u06cc\u0688\u06cc\u0679\u0631 \u06a9\u06d2 \u0644\u0626\u06d2 \u062a\u0631\u0642\u06cc\u0627\u062a\u06cc \u067e\u0644\u06af \u0627\u0646 \u06c1\u06d2."],"Add title":["\u0639\u0646\u0648\u0627\u0646 \u0634\u0627\u0645\u0644 \u06a9\u0631\u06cc\u06ba"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["\u0645\u0635\u0646\u0641"],Slug:["\u0633\u0644\u06af"],Discussion:["\u062a\u0628\u0627\u062f\u0644\u06c1\u0621\u062e\u06cc\u0627\u0644"],"Custom Fields":["\u0627\u067e\u0646\u06cc \u0645\u0631\u0636\u06cc \u06a9\u06cc \u0641\u06cc\u0644\u0688\u0632"],Excerpt:["\u0627\u0642\u062a\u0628\u0627\u0633"],Publish:["\u0634\u0627\u0626\u0639 \u06a9\u0631\u06cc\u06ba"],Metadata:["\u0645\u06cc\u0679\u0627 \u0688\u06cc\u0679\u0627"],Save:["\u0645\u062d\u0641\u0648\u0638 \u06a9\u0631\u06cc\u06ba"],Documentation:["\u062f\u0633\u062a\u0627\u0648\u06cc\u0632\u0627\u062a"],"Select Category":["\u0632\u0645\u0631\u06c1 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"],"(Untitled)":["(\u0628\u0644\u0627\u0639\u0646\u0648\u0627\u0646)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Gutenberg \u0679\u06cc\u0645"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["\u0688\u06cc\u0645\u0648"],"%s ago":["%s \u067e\u06c1\u0644\u06d2"],"Block style name must be a string.":[]}},869,[]); +__d(function(e,t,n,o,i,a,r){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO Settings":[],Description:[],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],Taxonomy:[],"Tag Cloud Settings":[],"- Select -":[],Default:[],find:[],"Help visitors find your content.":[],Search:[],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:[],by:[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:[],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":[],"content placeholder\x04Content\u2026":["N\u1ed9i dung..."],"button label\x04Convert to link":["\u0110\u1ed5i th\xe0nh li\xean k\u1ebft"],"button label\x04Try again":["Th\u1eed l\u1ea1i"],"Editor tips":[],"Block (selected)":["Kh\u1ed1i (\u0111\xe3 ch\u1ecdn)"],"Document (selected)":["T\xe0i li\u1ec7u (\u0111\xe3 ch\u1ecdn)"],"%d word":["%d t\u1eeb"],"Top Toolbar":["Thanh c\xf4ng c\u1ee5 \u1edf \u0111\u1ea7u trang"],"Link Rel":["Link Rel"],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["T\u1ea1o n\u1ed9i dung v\xe0 l\u01b0u n\u1ed9i dung \u0111\xf3 cho b\u1ea1n v\xe0 nh\u1eefng ng\u01b0\u1eddi \u0111\xf3ng g\xf3p kh\xe1c \u0111\u1ec3 s\u1eed d\u1ee5ng l\u1ea1i tr\xean trang web c\u1ee7a b\u1ea1n. C\u1eadp nh\u1eadt kh\u1ed1i v\xe0 c\xe1c thay \u0111\u1ed5i s\u1ebd \u0111\u01b0\u1ee3c \xe1p d\u1ee5ng \u1edf m\u1ecdi n\u01a1i \u0111\u01b0\u1ee3c s\u1eed d\u1ee5ng."],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":["(kh\u1ed1i \u0111\xe3 ch\u1ecdn)"],"Block tools":["C\xe1c c\xf4ng c\u1ee5 kh\u1ed1i"],Permalink:["\u0110\u01b0\u1eddng d\u1eabn"],"This image has an empty alt attribute":["H\xecnh \u1ea3nh n\xe0y kh\xf4ng c\xf3 thu\u1ed9c t\xednh alt"],"This image has an empty alt attribute; its file name is %s":["H\xecnh \u1ea3nh n\xe0y kh\xf4ng c\xf3 thu\u1ed9c t\xednh alt; t\xean t\u1eadp tin n\xe0y l\xe0 %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\x04Add New":["Th\xeam M\u1edbi"],"add new on admin bar\x04Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["C\u1ea3nh b\xe1o: li\xean k\u1ebft \u0111\xe3 \u0111\u01b0\u1ee3c ch\xe8n nh\u01b0ng c\xf3 th\u1ec3 c\xf3 l\u1ed7i. H\xe3y ki\u1ec3m tra l\u1ea1i."],"%s block selected.":["%s kh\u1ed1i \u0111\xe3 \u0111\u01b0\u1ee3c ch\u1ecdn."],Thumbnail:["\u1ea2nh thu nh\u1ecf"],"Full Size":["K\xedch th\u01b0\u1edbc \u0111\u1ea7y \u0111\u1ee7"],"Link selected.":["\u0110\xe3 ch\u1ecdn li\xean k\u1ebft"],"Start writing with text or HTML":["B\u1eaft \u0111\u1ea7u vi\u1ebft b\u1eb1ng v\u0103n b\u1ea3n ho\u1eb7c HTML"],"Type text or HTML":["Nh\u1eadp v\u0103n b\u1ea3n ho\u1eb7c HTML"],"Block icon":["Kh\u1ed1i bi\u1ec3u t\u01b0\u1ee3ng"],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":["B\u1eaft \u0111\u1ea7u vi\u1ebft ho\u1eb7c nh\u1eadp / \u0111\u1ec3 ch\u1ecdn m\u1ed9t kh\u1ed1i"],"Empty block; start writing or type forward slash to choose a block":["Kh\u1ed1i tr\u1ed1ng; b\u1eaft \u0111\u1ea7u vi\u1ebft ho\u1eb7c g\xf5 d\u1ea5u g\u1ea1ch ch\xe9o \u0111\u1ec3 ch\u1ecdn m\u1ed9t kh\u1ed1i"],"Paragraph block":["Kh\u1ed1i \u0111o\u1ea1n v\u0103n"],"Page Break":["Ng\u1eaft trang"],"Stack on mobile":["Ng\u0103n x\u1ebfp tr\xean thi\u1ebft b\u1ecb di \u0111\u1ed9ng"],Annotation:["Ch\xfa th\xedch"],"Drag images, upload new ones or select files from your library.":["K\xe9o nhi\u1ec1u \u1ea3nh, t\u1ea3i \u1ea3nh m\u1edbi l\xean ho\u1eb7c ch\u1ecdn t\u1eadp tin t\u1eeb th\u01b0 vi\u1ec7n c\u1ee7a b\u1ea1n."],"blocks\x04Most Used":["D\xf9ng nhi\u1ec1u nh\u1ea5t"],"imperative verb\x04Resolve":["\u0110\xe3 gi\u1ea3i quy\u1ebft"],"font size name\x04Huge":["Kh\u1ed5ng l\u1ed3"],"font size name\x04Large":["L\u1edbn"],"font size name\x04Medium":["V\u1eeba"],"font size name\x04Small":["Nh\u1ecf"],"font size name\x04Normal":["B\xecnh th\u01b0\u1eddng"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["Nh\u1eadp"],"button label\x04Download":["T\u1ea3i v\u1ec1"],"button label\x04Embed":["Nh\xfang"],"block title\x04Embed":["Nh\xfang"],"block title\x04Classic":["C\u1ed5 \u0111i\u1ec3n"],"block style\x04Large":["L\u1edbn"],"%s (opens in a new tab)":["%s (m\u1edf trong m\u1ed9t tab m\u1edbi)"],"Link edited.":["\u0110\xe3 ch\u1ec9nh s\u1eeda li\xean k\u1ebft."],"Link removed.":["\u0110\xe3 x\xf3a li\xean k\u1ebft."],media:["ph\u01b0\u01a1ng ti\u1ec7n"],"Double-check your settings before publishing.":["Ki\u1ec3m tra k\u1ef9 c\xe0i \u0111\u1eb7t c\u1ee7a b\u1ea1n tr\u01b0\u1edbc khi \u0111\u0103ng."],"Generating preview\u2026":["\u0110ang t\u1ea1o b\u1ea3n xem tr\u01b0\u1edbc..."],"Edit or update the image":["S\u1eeda ho\u1eb7c c\u1eadp nh\u1eadt \u1ea3nh"],Media:["Media"],"Navigate to the nearest toolbar.":["\u0110i\u1ec1u h\u01b0\u1edbng \u0111\u1ebfn thanh c\xf4ng c\u1ee5 g\u1ea7n nh\u1ea5t."],"Document tools":["C\xe1c c\xf4ng c\u1ee5 t\xe0i li\u1ec7u"],"Document and block tools":["C\xf4ng c\u1ee5 t\xe0i li\u1ec7u v\xe0 kh\u1ed1i"],"Embed a video from your media library or upload a new one.":["Nh\xfang m\u1ed9t video t\u1eeb th\u01b0 vi\u1ec7n media c\u1ee7a b\u1ea1n ho\u1eb7c t\u1ea3i l\xean video m\u1edbi."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Ch\xe8n th\u01a1. S\u1eed d\u1ee5ng \u0111\u1ecbnh d\u1ea1ng kho\u1ea3ng c\xe1ch \u0111\u1eb7c bi\u1ec7t. Ho\u1eb7c tr\xedch d\u1eabn l\u1eddi b\xe0i h\xe1t."],"Add white space between blocks and customize its height.":["Th\xeam kho\u1ea3ng tr\u1eafng gi\u1eefa c\xe1c kh\u1ed1i v\xe0 t\xf9y ch\u1ec9nh chi\u1ec1u cao c\u1ee7a n\xf3."],"Insert additional custom elements with a WordPress shortcode.":["Ch\xe8n c\xe1c ph\u1ea7n t\u1eed t\xf9y ch\u1ec9nh b\u1ed5 sung b\u1eb1ng shortcode c\u1ee7a WordPress."],"Create a break between ideas or sections with a horizontal separator.":["T\u1ea1o \u0111i\u1ec3m ng\u1eaft gi\u1eefa c\xe1c \xfd t\u01b0\u1edfng ho\u1eb7c c\xe1c ph\u1ea7n c\xf3 d\u1ea5u ph\xe2n c\xe1ch ngang."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u0110\u01b0a nh\u1ea5n m\u1ea1nh tr\u1ef1c quan v\xe0o v\u0103n b\u1ea3n \u0111\u01b0\u1ee3c tr\xedch d\u1eabn. \"Trong tr\xedch d\u1eabn c\u1ee7a nh\u1eefng ng\u01b0\u1eddi kh\xe1c, ch\xfang ta tr\xedch d\u1eabn ch\xednh m\xecnh.\" - Julio Cort\xe1zar"],"Give special visual emphasis to a quote from your text.":["\u0110\u01b0a ra s\u1ef1 nh\u1ea5n m\u1ea1nh tr\u1ef1c quan \u0111\u1eb7c bi\u1ec7t cho m\u1ed9t tr\xedch d\u1eabn t\u1eeb v\u0103n b\u1ea3n c\u1ee7a b\u1ea1n."],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":["T\xe1ch n\u1ed9i dung c\u1ee7a b\u1ea1n th\xe0nh tr\u1ea3i nghi\u1ec7m nhi\u1ec1u trang."],"Set media and words side-by-side for a richer layout.":["\u0110\u1eb7t ph\u01b0\u01a1ng ti\u1ec7n v\xe0 t\u1eeb song song cho b\u1ed1 c\u1ee5c phong ph\xfa h\u01a1n."],"Media & Text Settings":["C\xe0i \u0111\u1eb7t ph\u01b0\u01a1ng ti\u1ec7n & v\u0103n b\u1ea3n"],"Create a bulleted or numbered list.":["T\u1ea1o m\u1ed9t danh s\xe1ch c\xf3 d\u1ea5u \u0111\u1ea7u d\xf2ng ho\u1eb7c \u0111\u01b0\u1ee3c \u0111\xe1nh s\u1ed1."],"Display a list of your most recent comments.":["Hi\u1ec3n th\u1ecb danh s\xe1ch c\xe1c b\xecnh lu\u1eadn g\u1ea7n \u0111\xe2y nh\u1ea5t c\u1ee7a b\u1ea1n."],"Insert an image to make a visual statement.":["Ch\xe8n m\u1ed9t h\xecnh \u1ea3nh \u0111\u1ec3 t\u1ea1o m\u1ed9t c\xe2u l\u1ec7nh tr\u1ef1c quan."],"Add custom HTML code and preview it as you edit.":["Th\xeam m\xe3 HTML t\xf9y ch\u1ec9nh v\xe0 xem tr\u01b0\u1edbc m\xe3 khi b\u1ea1n ch\u1ec9nh s\u1eeda."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Gi\u1edbi thi\u1ec7u c\xe1c ph\u1ea7n m\u1edbi v\xe0 t\u1ed5 ch\u1ee9c n\u1ed9i dung \u0111\u1ec3 gi\xfap kh\xe1ch truy c\u1eadp (v\xe0 c\xf4ng c\u1ee5 t\xecm ki\u1ebfm) hi\u1ec3u c\u1ea5u tr\xfac n\u1ed9i dung c\u1ee7a b\u1ea1n."],"Display multiple images in a rich gallery.":["Hi\u1ec3n th\u1ecb nhi\u1ec1u \u1ea3nh trong m\u1ed9t album \u1ea3nh phong ph\xfa."],"Add a link to a downloadable file.":["Th\xeam li\xean k\u1ebft v\xe0o t\u1ec7p c\xf3 th\u1ec3 t\u1ea3i xu\u1ed1ng."],"Embed videos, images, tweets, audio, and other content from external sources.":["Nh\xfang video, \u1ea3nh, tweet, \xe2m thanh v\xe0 n\u1ed9i dung kh\xe1c t\u1eeb c\xe1c ngu\u1ed3n b\xean ngo\xe0i."],"Resize for smaller devices":["Thay \u0111\u1ed5i k\xedch th\u01b0\u1edbc cho c\xe1c thi\u1ebft b\u1ecb nh\u1ecf h\u01a1n"],"This embed may not preserve its aspect ratio when the browser is resized.":["Ph\u1ea7n nh\xfang n\xe0y c\xf3 th\u1ec3 kh\xf4ng gi\u1eef nguy\xean t\u1ec9 l\u1ec7 khung h\xecnh khi tr\xecnh duy\u1ec7t \u0111\u01b0\u1ee3c thay \u0111\u1ed5i k\xedch c\u1ee1."],"This embed will preserve its aspect ratio when the browser is resized.":["Ph\u1ea7n nh\xfang n\xe0y s\u1ebd gi\u1eef nguy\xean t\u1ec9 l\u1ec7 khung h\xecnh khi tr\xecnh duy\u1ec7t thay \u0111\u1ed5i k\xedch th\u01b0\u1edbc."],"Embed an Animoto video.":["Nh\xfang m\u1ed9t video t\u1eeb Animoto."],"Embed a Vimeo video.":["Nh\xfang m\u1ed9t video t\u1eeb Vimeo."],"Embed Flickr content.":["Nh\xfang n\u1ed9i dung t\u1eeb Flickr."],"Embed Spotify content.":["Nh\xfang n\u1ed9i dung t\u1eeb Spotify."],"Embed SoundCloud content.":["Nh\xfang n\u1ed9i dung t\u1eeb SoundCloud."],"Embed a WordPress post.":["Nh\xfang m\u1ed9t b\xe0i vi\u1ebft tr\xean WordPress."],"Embed an Instagram post.":["Nh\xfang m\u1ed9t b\xe0i vi\u1ebft tr\xean Instagram."],"Embed a Facebook post.":["Nh\xfang m\u1ed9t b\xe0i vi\u1ebft tr\xean Facebook."],"Embed a WordPress.tv video.":["Nh\xfang m\u1ed9t video t\u1eeb WordPress.tv."],"Embed a VideoPress video.":["Nh\xfang m\u1ed9t video t\u1eeb VideoPress."],"Embed a Tumblr post.":["Nh\xfang m\u1ed9t b\xe0i vi\u1ebft t\u1eeb Tumblr."],"Embed a TED video.":["Nh\xfang m\u1ed9t video t\u1eeb TED."],"Embed Speaker Deck content.":["Nh\xfang n\u1ed9i dung tr\xean Speaker Deck."],"Embed a YouTube video.":["Nh\xfang m\u1ed9t video tr\xean YouTube."],"Embed SmugMug content.":["Nh\xfang n\u1ed9i dung t\u1eeb SmugMug."],"Embed Slideshare content.":["Nh\xfang n\u1ed9i dung t\u1eeb Slideshare."],"Embed Scribd content.":["Nh\xfang n\u1ed9i dung t\u1eeb Scribd."],"Embed Screencast content.":["Nh\xfang n\u1ed9i dung t\u1eeb Screencast."],"Embed ReverbNation content.":["Nh\xfang n\u1ed9i dung t\u1eeb ReverbNation."],"Embed a Reddit thread.":["Nh\xfang m\u1ed9t b\xe0i vi\u1ebft tr\xean Reddit."],"Embed Polldaddy content.":["Nh\xfang n\u1ed9i dung t\u1eeb Polldaddy."],"Embed Mixcloud content.":["Nh\xfang n\u1ed9i dung t\u1eeb Mixcloud."],"Embed a tweet.":["Nh\xfang m\u1ed9t tweet."],"Embed Meetup.com content.":["Nh\xfang n\u1ed9i dung t\u1eeb Meetup.com."],"Embed Kickstarter content.":["Nh\xfang n\u1ed9i dung t\u1eeb Kickstarter."],"Embed Issuu content.":["Nh\xfang n\u1ed9i dung t\u1eeb Issuu."],"Embed Imgur content.":["Nh\xfang n\u1ed9i dung t\u1eeb Imgur."],"Embed Hulu content.":["Nh\xfang n\u1ed9i dung t\u1eeb Hulu."],"Embed a Dailymotion video.":["Nh\xfang m\u1ed9t video tr\xean Dailymotion."],"Embed CollegeHumor content.":["Nh\xfang n\u1ed9i dung t\u1eeb CollegeHumor."],"Embed Cloudup content.":["Nh\xfang n\u1ed9i dung t\u1eeb Cloudup."],"Add an image or video with a text overlay \u2014 great for headers.":["Th\xeam \u1ea3nh ho\u1eb7c video c\xf3 text overlay \u2014 tuy\u1ec7t v\u1eddi \u0111\u1ec3 l\xe0m ph\u1ea7n \u0111\u1ea7u trang."],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":["S\u1eed d\u1ee5ng tr\xecnh so\u1ea1n th\u1ea3o WordPress c\u1ed5 \u0111i\u1ec3n."],"Display a list of all categories.":["Hi\u1ec3n th\u1ecb danh s\xe1ch t\u1ea5t c\u1ea3 c\xe1c chuy\xean m\u1ee5c."],"Embed a simple audio player.":["Nh\xfang tr\xecnh ph\xe1t \xe2m thanh \u0111\u01a1n gi\u1ea3n."],"noun\x04View":["Xem"],"editor button\x04Left to right":["Tr\xe1i sang ph\u1ea3i"],"Save as Pending":["L\u01b0u d\u01b0\u1edbi d\u1ea1ng \u0110ang ch\u1edd x\u1eed l\xfd"],"%s address":["%s \u0111\u1ecba ch\u1ec9"],"Paste or type URL":["D\xe1n ho\u1eb7c nh\u1eadp URL"],"Insert from URL":["Ch\xe8n t\u1eeb URL"],"Block Navigator":[],Styles:["C\xe1c Ki\u1ec3u"],"Advanced Panels":["Danh s\xe1ch n\xe2ng cao"],"Document Panels":["Danh s\xe1ch t\xe0i li\u1ec7u"],General:["Chung"],"Open the block navigation menu.":["M\u1edf menu \u0111i\u1ec1u h\u01b0\u1edbng kh\u1ed1i."],"Work without distraction":["L\xe0m vi\u1ec7c m\xe0 kh\xf4ng m\u1ea5t t\u1eadp trung"],"Focus on one block at a time":["T\u1eadp trung v\xe0o t\u1eebng kh\u1ed1i m\u1ed9t l\xfac"],"Access all block and document tools in a single place":["Truy c\u1eadp t\u1ea5t c\u1ea3 c\xe1c c\xf4ng c\u1ee5 block v\xe0 t\xe0i li\u1ec7u \u1edf m\u1ed9t n\u01a1i duy nh\u1ea5t"],Options:["Tu\u1ef3 ch\u1ecdn"],"(opens in a new tab)":["(m\u1edf trong m\u1ed9t tab m\u1edbi)"],Minutes:["Ph\xfat"],Hours:["Gi\u1edd"],Time:["Th\u1eddi gian"],Year:["N\u0103m"],Day:["Ng\xe0y"],December:["Th\xe1ng m\u01b0\u1eddi hai"],November:["Th\xe1ng m\u01b0\u1eddi m\u1ed9t"],October:["Th\xe1ng m\u01b0\u1eddi"],September:["Th\xe1ng ch\xedn"],August:["Th\xe1ng t\xe1m"],July:["Th\xe1ng b\u1ea3y"],June:["Th\xe1ng s\xe1u"],May:["Th\xe1ng n\u0103m"],April:["Th\xe1ng t\u01b0"],March:["Th\xe1ng ba"],February:["Th\xe1ng hai"],January:["Th\xe1ng m\u1ed9t"],Month:["Th\xe1ng"],Date:["Ng\xe0y"],"Go to the first (home) or last (end) day of a week.":["\u0110\u1ebfn ng\xe0y \u0111\u1ea7u ti\xean (trang ch\u1ee7) ho\u1eb7c cu\u1ed1i c\xf9ng (cu\u1ed1i) trong m\u1ed9t tu\u1ea7n."],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":["Di chuy\u1ec3n l\xf9i (PgUp) ho\u1eb7c chuy\u1ec3n ti\u1ebfp (PgDn) m\u1ed9t th\xe1ng."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up v\xe0 Page Down"],"Move backward (up) or forward (down) by one week.":["Di chuy\u1ec3n l\xf9i (l\xean) ho\u1eb7c ti\u1ebfn (xu\u1ed1ng) m\u1ed9t tu\u1ea7n."],"Up and Down Arrows":["M\u0169i t\xean l\xean v\xe0 xu\u1ed1ng"],"Move backward (left) or forward (right) by one day.":["Di chuy\u1ec3n l\xf9i (tr\xe1i) ho\u1eb7c ti\u1ebfn (ph\u1ea3i) m\u1ed9t ng\xe0y."],"Left and Right Arrows":["M\u0169i t\xean tr\xe1i v\xe0 ph\u1ea3i"],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":["Nh\u1ea5p chu\u1ed9t v\xe0o m\u0169i t\xean ph\u1ea3i v\xe0 tr\xe1i \u0111\u1ec3 ch\u1ecdn th\xe1ng kh\xe1c trong qu\xe1 kh\u1ee9 ho\u1eb7c t\u01b0\u01a1ng lai."],"Click to Select":["Nh\u1ea5p chu\u1ed9t \u0111\u1ec3 ch\u1ecdn"],"Calendar Help":["Tr\u1ee3 gi\xfap L\u1ecbch"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["S\u1eed d\u1ee5ng c\xe1c ph\xedm m\u0169i t\xean \u0111\u1ec3 thay \u0111\u1ed5i m\xe0u s\u1eafc. Di chuy\u1ec3n l\xean \u0111\u1ec3 l\xe0m s\xe1ng m\xe0u, gi\u1ea3m t\u1ed1i, sang tr\xe1i \u0111\u1ec3 t\u0103ng \u0111\u1ed9 b\xe3o h\xf2a v\xe0 ph\u1ea3i \u0111\u1ec3 gi\u1ea3m \u0111\u1ed9 b\xe3o h\xf2a."],"Choose a shade":["Ch\u1ecdn m\u1ed9t m\xe0u"],"Change color format":["Thay \u0111\u1ed5i \u0111\u1ecbnh d\u1ea1ng m\xe0u s\u1eafc"],"Color value in HSL":["Gi\xe1 tr\u1ecb m\xe0u trong HSL"],"Color value in RGB":["Gi\xe1 tr\u1ecb m\xe0u trong RGB"],"Color value in hexadecimal":["Gi\xe1 tr\u1ecb m\xe0u trong h\u1ec7 th\u1eadp l\u1ee5c ph\xe2n"],"RGB mode active":["Ch\u1ebf \u0111\u1ed9 m\xe0u RGB c\xf3 hi\u1ec7u l\u1ef1c"],"Hex color mode active":["Ch\u1ebf \u0111\u1ed9 m\xe0u th\u1eadp l\u1ee5c ph\xe2n c\xf3 hi\u1ec7u l\u1ef1c"],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],Stripes:[],"Your site doesn\u2019t include support for this block.":[],"Unrecognized Block":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":["M\u1edf trong Tab M\u1edbi"],Cover:[],"Border Settings":[],"Edit media":[],Medium:["Trung bi\u0340nh"],"Paste URL or type to search":["D\xe1n URL ho\u1eb7c nh\u1eadp \u0111\u1ec3 t\xecm ki\u1ebfm"],Terms:["\u0110i\u1ec1u ki\u1ec7n"],"Your work will be published at the specified date and time.":["B\xe0i vi\u1ebft c\u1ee7a b\u1ea1n s\u1ebd \u0111\u01b0\u1ee3c \u0111\u0103ng v\xe0o ng\xe0y v\xe0 gi\u1edd \u0111\xe3 \u0111\u01b0\u1ee3c ch\u1ec9 \u0111\u1ecbnh."],"Are you ready to schedule?":["B\u1ea1n \u0111\xe3 s\u1eb5n s\xe0ng l\xean l\u1ecbch ch\u01b0a?"],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":[],Avatar:["\u1ea2nh \u0111\u1ea1i di\u1ec7n"],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":["Chuy\u1ec3n \u0111\u1ed5i sang HTML"],"This block can only be used once.":["Kh\u1ed1i n\xe0y ch\u1ec9 c\xf3 th\u1ec3 \u0111\u01b0\u1ee3c s\u1eed d\u1ee5ng m\u1ed9t l\u1ea7n."],"Exit Code Editor":["Tho\xe1t tr\xecnh Ch\u1ec9nh s\u1eeda M\xe3"],"Editing Code":["Ch\u1ec9nh s\u1eeda M\xe3"],"Solid Color":["M\xe0u \u0111\u1ed3ng nh\u1ea5t"],"Main Color":["M\xe0u ch\xednh"],HTML:["HTML"],"Write HTML\u2026":["Vi\u1ebft HTML\u2026"],"Media Settings":[],"Overlay Color":["M\xe0u overlay"],Overlay:["Overlay"],"Insert Media":["Ch\xe8n nh\u1ea1c"],"Reusable block imported successfully!":["Nh\u1eadp kh\u1ed1i t\xe1i s\u1eed d\u1ee5ng th\xe0nh c\xf4ng!"],"Invalid Reusable Block JSON file":["T\u1ec7p JSON c\u1ee7a kh\u1ed1i s\u1eed d\u1ee5ng l\u1ea1i kh\xf4ng h\u1ee3p l\u1ec7"],"Invalid JSON file":["T\u1ec7p JSON kh\xf4ng h\u1ee3p l\u1ec7"],"Import from JSON":["Nh\u1eadp t\u1eeb JSON"],Backtick:[],Period:["Giai \u0111o\u1ea1n"],Comma:["D\u1ea5u ph\u1ea9y"],"Change type of %d block":["Thay \u0111\u1ed5i lo\u1ea1i c\u1ee7a kh\u1ed1i %d"],Current:["Hi\u1ec7n t\u1ea1i"],"After Conversion":["Sau khi chuy\u1ec3n \u0111\u1ed5i"],"Change alignment":[],"Change text alignment":[],"%d block":["%d Kh\u1ed1i"],Escape:[],"Forward-slash":["Forward-slash"],"No archives to show.":["Kh\xf4ng c\xf3 l\u01b0u tr\u1eef n\xe0o \u0111\u1ec3 hi\u1ec3n th\u1ecb."],"This file is empty.":["T\u1ec7p tin n\xe0y tr\u1ed1ng."],"Sorry, this file type is not supported here.":["Xin l\u1ed7i, lo\u1ea1i t\u1ec7p tin n\xe0y kh\xf4ng \u0111\u01b0\u1ee3c h\u1ed7 tr\u1ee3."],"Manage All Reusable Blocks":["Qu\u1ea3n l\xfd c\xe1c kh\u1ed1i s\u1eed d\u1ee5ng l\u1ea1i"],Title:["Ti\xeau \u0111\u1ec1"],"Fullscreen Mode":["Ch\u1ebf \u0111\u1ed9 to\xe0n m\xe0n h\xecnh"],"Beautiful landscape":["Ch\u1ebf \u0111\u1ed9 ngang tuy\u1ec7t \u0111\u1eb9p"],"Close panel":["\u0110\xf3ng b\u1ea3ng \u0111i\u1ec1u khi\u1ec3n"],"Convert to Classic Block":["Chuy\u1ec3n th\xe0nh kh\u1ed1i c\u1ed5 \u0111i\u1ec3n"],"Remove Poster Image":["X\xf3a h\xecnh \u1ea3nh"],"Select Poster Image":["Ch\u1ecdn h\xecnh \u1ea3nh"],"Poster Image":["H\xecnh \u1ea3nh"],"This block is deprecated. Please use the Columns block instead.":["Kh\u1ed1i n\xe0y \u0111\xe3 ng\u1eebng \u0111\u01b0\u1ee3c ph\xe1t tri\u1ec3n. Thay v\xe0o \u0111\xf3, h\xe3y s\u1eed d\u1ee5ng kh\u1ed1i C\u1ed9t."],"Text Columns (deprecated)":["C\u1ed9t v\u0103n b\u1ea3n (ng\u1eebng ph\xe1t tri\u1ec3n)"],"Row Count":["S\u1ed1 h\xe0ng"],"Column Count":["S\u1ed1 c\u1ed9t"],"This block is deprecated. Please use the Paragraph block instead.":["Kh\u1ed1i n\xe0y kh\xf4ng \u0111\u01b0\u1ee3c ch\u1ea5p nh\u1eadn. Thay v\xe0o \u0111\xf3, h\xe3y s\u1eed d\u1ee5ng kh\u1ed1i \u0110o\u1ea1n v\u0103n."],"Subheading (deprecated)":["Ti\xeau \u0111\u1ec1 ph\u1ee5 (kh\xf4ng \u0111\u01b0\u1ee3c ch\u1ea5p nh\u1eadn)"],blockquote:["tr\xedch d\u1eabn"],"Change the block type after adding a new paragraph.":["Thay \u0111\u1ed5i lo\u1ea1i kh\u1ed1i sau khi th\xeam \u0111o\u1ea1n v\u0103n b\u1ea3n m\u1edbi."],"Spotlight Mode":["Ch\u1ebf \u0111\u1ed9 n\u1ed5i b\u1eadt"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Th\u1ebb s\u1ebd gi\xfap ng\u01b0\u1eddi d\xf9ng v\xe0 c\xe1c c\xf4ng c\u1ee5 t\xecm ki\u1ebfm \u0111i\u1ec1u h\u01b0\u1edbng trang web c\u1ee7a b\u1ea1n v\xe0 t\xecm n\u1ed9i dung c\u1ee7a b\u1ea1n. Th\xeam m\u1ed9t v\xe0i t\u1eeb kh\xf3a \u0111\u1ec3 m\xf4 t\u1ea3 cho b\xe0i vi\u1ebft c\u1ee7a b\u1ea1n."],"Add tags":["Th\xeam th\u1ebb"],"Apply the \"%1$s\" format.":["\xc1p d\u1ee5ng \u0111\u1ecbnh d\u1ea1ng \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Ch\u1ee7 \u0111\u1ec1 c\u1ee7a b\u1ea1n \u0111ang s\u1eed d\u1ee5ng c\xe1c \u0111\u1ecbnh d\u1ea1ng b\xe0i vi\u1ebft \u0111\u1ec3 l\xe0m n\u1ed5i b\u1eadt c\xe1c lo\u1ea1i n\u1ed9i dung kh\xe1c nhau, nh\u01b0 h\xecnh \u1ea3nh ho\u1eb7c video. \xc1p d\u1ee5ng \u0111\u1ecbnh d\u1ea1ng b\xe0i vi\u1ebft \u0111\u1ec3 xem ki\u1ec3u d\xe1ng \u0111\u1eb7c bi\u1ec7t n\xe0y."],"Use a post format":["S\u1eed d\u1ee5ng \u0111\u1ecbnh d\u1ea1ng b\xe0i vi\u1ebft"],"Insert After":["Ch\xe8n sau"],"Insert Before":["Ch\xe8n tr\u01b0\u1edbc"],"Move %1$d block from position %2$d down by one place":["Di chuy\u1ec3n kh\u1ed1i %1$d t\u1eeb v\u1ecb tr\xed %2$d xu\u1ed1ng d\u01b0\u1edbi m\u1ed9t v\u1ecb tr\xed"],"Move %1$d block from position %2$d up by one place":["Di chuy\u1ec3n kh\u1ed1i %1$d t\u1eeb v\u1ecb tr\xed %2$d l\xean tr\xean m\u1ed9t v\u1ecb tr\xed"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["phim"],"Insert a new block before the selected block(s).":["Ch\xe8n m\u1ed9t kh\u1ed1i m\u1edbi tr\u01b0\u1edbc c\xe1c kh\u1ed1i \u0111\xe3 ch\u1ecdn."],"Remove the selected block(s).":["Lo\u1ea1i b\u1ecf c\xe1c kh\u1ed1i \u0111\xe3 ch\u1ecdn."],"Duplicate the selected block(s).":["Nh\xe2n \u0111\xf4i c\xe1c kh\u1ed1i \u0111\xe3 ch\u1ecdn."],"Block shortcuts":["Ph\xedm t\u1eaft kh\u1ed1i"],"Clear selection.":["X\xf3a l\u1ef1a ch\u1ecdn."],"Select all text when typing. Press again to select all blocks.":["Ch\u1ecdn t\u1ea5t c\u1ea3 v\u0103n b\u1ea3n khi nh\u1eadp. Nh\u1ea5n l\u1ea1i \u0111\u1ec3 ch\u1ecdn t\u1ea5t c\u1ea3 c\xe1c kh\u1ed1i."],"Selection shortcuts":["Ph\xedm t\u1eaft l\u1ef1a ch\u1ecdn"],"Switch between Visual Editor and Code Editor.":["Chuy\u1ec3n \u0111\u1ed5i gi\u1eefa Tr\xecnh ch\u1ec9nh s\u1eeda tr\u1ef1c quan v\xe0 Tr\xecnh ch\u1ec9nh s\u1eeda m\xe3."],"Navigate to the previous part of the editor (alternative).":["\u0110i\u1ec1u h\u01b0\u1edbng \u0111\u1ebfn ph\u1ea7n tr\u01b0\u1edbc c\u1ee7a tr\xecnh ch\u1ec9nh s\u1eeda (thay th\u1ebf)."],"Navigate to the next part of the editor (alternative).":["\u0110i\u1ec1u h\u01b0\u1edbng \u0111\u1ebfn ph\u1ea7n ti\u1ebfp theo c\u1ee7a tr\xecnh ch\u1ec9nh s\u1eeda (thay th\u1ebf)."],"Navigate to the previous part of the editor.":["\u0110i\u1ec1u h\u01b0\u1edbng \u0111\u1ebfn ph\u1ea7n tr\u01b0\u1edbc c\u1ee7a tr\xecnh ch\u1ec9nh s\u1eeda."],"Navigate to the next part of the editor.":["\u0110i\u1ec1u h\u01b0\u1edbng \u0111\u1ebfn ph\u1ea7n ti\u1ebfp theo c\u1ee7a tr\xecnh ch\u1ec9nh s\u1eeda."],"Show or hide the settings sidebar.":["Hi\u1ec3n th\u1ecb ho\u1eb7c \u1ea9n thanh c\xe0i \u0111\u1eb7t b\xean."],"Redo your last undo.":["L\xe0m l\u1ea1i l\u1ea7n ho\xe0n t\xe1c cu\u1ed1i c\u1ee7a b\u1ea1n."],"Undo your last changes.":["Ho\xe0n t\xe1c l\u1ea1i l\u1ea7n thay \u0111\u1ed5i cu\u1ed1i c\xf9ng c\u1ee7a b\u1ea1n."],"Save your changes.":["L\u01b0u c\xe1c thay \u0111\u1ed5i c\u1ee7a b\u1ea1n."],"Global shortcuts":["Ph\xedm t\u1eaft chung"],"Remove a link.":["X\xf3a li\xean k\u1ebft."],"Convert the selected text into a link.":["Chuy\u1ec3n v\u0103n b\u1ea3n \u0111\xe3 ch\u1ecdn th\xe0nh li\xean k\u1ebft."],"Underline the selected text.":["G\u1ea1ch ch\xe2n v\u0103n b\u1ea3n \u0111\xe3 ch\u1ecdn."],"Make the selected text italic.":["L\xe0m cho v\u0103n b\u1ea3n \u0111\u01b0\u1ee3c ch\u1ecdn in nghi\xeang."],"Make the selected text bold.":["L\xe0m cho v\u0103n b\u1ea3n \u0111\u01b0\u1ee3c ch\u1ecdn in \u0111\u1eadm."],"Text formatting":["\u0110\u1ecbnh d\u1ea1ng v\u0103n b\u1ea3n"],"Insert a new block after the selected block(s).":["Ch\xe8n m\u1ed9t kh\u1ed1i m\u1edbi sau (c\xe1c) kh\u1ed1i \u0111\xe3 ch\u1ecdn."],"Keyboard Shortcuts":["C\xe1c ph\xedm t\u1eaft b\xe0n ph\xedm"],"Thanks for testing Gutenberg!":["C\u1ea3m \u01a1n b\u1ea1n \u0111\xe3 th\u1eed nghi\u1ec7m Gutenberg!"],"Help build Gutenberg":["Gi\xfap x\xe2y d\u1ef1ng Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["N\u1ebfu b\u1ea1n mu\u1ed1n t\xecm hi\u1ec3u th\xeam v\u1ec1 c\xe1ch x\xe2y d\u1ef1ng c\xe1c kh\u1ed1i b\u1ed5 sung ho\u1eb7c n\u1ebfu b\u1ea1n quan t\xe2m \u0111\u1ebfn vi\u1ec7c tr\u1ee3 gi\xfap d\u1ef1 \xe1n, h\xe3y truy c\u1eadp GitHub."],"The WordPress community":["C\u1ed9ng \u0111\u1ed3ng WordPress"],"Code is Poetry":["Vi\u1ebft m\xe3 nh\u01b0 l\xe0m th\u01a1"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["B\u1ea1n c\xf3 th\u1ec3 x\xe2y d\u1ef1ng b\u1ea5t k\u1ef3 kh\u1ed1i n\xe0o m\xe0 b\u1ea1n th\xedch, t\u0129nh ho\u1eb7c \u0111\u1ed9ng, \u0111\u01a1n gi\u1ea3n ho\u1eb7c ph\u1ee9c t\u1ea1p. \u0110\xe2y l\xe0 m\u1ed9t kh\u1ed1i pullquote:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["B\u1ea5t k\u1ef3 kh\u1ed1i n\xe0o c\u0169ng c\xf3 th\u1ec3 ch\u1ecdn tham gia v\xe0o c\xe1ch s\u1eafp x\u1ebfp n\xe0y. C\xe1c kh\u1ed1i \u0111\u01b0\u1ee3c nh\xfang v\xe0o c\u0169ng v\u1eady, v\xe0 ch\xfang ho\xe0n to\xe0n \u0111\u01b0\u1ee3c thi\u1ebft k\u1ebf \u0111\xe1p \u1ee9ng (responsive)."],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["\u1ede tr\xean l\xe0 m\u1ed9t b\u1ed9 s\u01b0u t\u1eadp ch\u1ec9 v\u1edbi hai h\xecnh \u1ea3nh. \u0110\xf3 l\xe0 m\u1ed9t c\xe1ch d\u1ec5 d\xe0ng h\u01a1n \u0111\u1ec3 t\u1ea1o ra b\u1ed1 c\u1ee5c tr\u1ef1c quan v\xe0 h\u1ea5p d\u1eabn. B\u1ea1n c\u0169ng c\xf3 th\u1ec3 d\u1ec5 d\xe0ng chuy\u1ec3n \u0111\u1ed5i b\u1ed9 s\u01b0u t\u1eadp tr\u1edf l\u1ea1i h\xecnh \u1ea3nh ri\xeang l\u1ebb m\u1ed9t l\u1ea7n n\u1eefa b\u1eb1ng c\xe1ch s\u1eed d\u1ee5ng tr\xecnh chuy\u1ec3n \u0111\u1ed5i kh\u1ed1i."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["Ch\u1ec9nh s\u1eeda tr\u1ef1c quan"],"And Lists like this one of course :)":["V\xe0 Danh s\xe1ch t\u1ea5t nhi\xean s\u1ebd nh\u01b0 th\u1ebf n\xe0y :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["C\xe1c kh\u1ed1i b\u1ed1 c\u1ee5c, nh\u01b0 N\xfat, H\xecnh \u1ea3nh, D\u1ea5u ph\xe2n c\xe1ch, v.v."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Nh\xfang, nh\u01b0 YouTube, Tweets ho\u1eb7c c\xe1c b\xe0i vi\u1ebft tr\xean WordPress kh\xe1c."],Galleries:["Album \u1ea3nh"],"Images & Videos":["H\xecnh \u1ea3nh & Video"],"Text & Headings":["V\u0103n b\u1ea3n & Ti\xeau \u0111\u1ec1"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["H\xe3y d\xf9ng th\u1eed, b\u1ea1n c\xf3 th\u1ec3 kh\xe1m ph\xe1 ra nh\u1eefng \u0111i\u1ec1u m\xe0 WordPress c\xf3 th\u1ec3 th\xeam v\xe0o c\xe1c b\xe0i vi\u1ebft c\u1ee7a b\u1ea1n m\xe0 tr\u01b0\u1edbc \u0111\xe2y b\u1ea1n kh\xf4ng h\u1ec1 bi\u1ebft. D\u01b0\u1edbi \u0111\xe2y l\xe0 danh s\xe1ch ng\u1eafn v\u1ec1 nh\u1eefng g\xec b\u1ea1n hi\u1ec7n c\xf3 th\u1ec3 t\xecm th\u1ea5y \u1edf \u0111\xf3:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["M\u1ed9t b\u1ee9c tranh b\u1eb1ng ng\xe0n l\u1eddi n\xf3i"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["C\xe1c ti\xeau \u0111\u1ec1 c\u0169ng l\xe0 c\xe1c kh\u1ed1i ri\xeang bi\u1ec7t, n\xf3 gi\xfap ph\xe1c th\u1ea3o v\xe0 t\u1ed5 ch\u1ee9c n\u1ed9i dung c\u1ee7a b\u1ea1n."],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Ch\xe0o m\u1eebng b\u1ea1n \u0111\u1ebfn v\u1edbi Gutenberg Editor"],"block name\x04More":["Th\xeam n\u1eefa"],"button to expand options\x04More":["Th\xeam n\u1eefa"],"Are you sure you want to unschedule this post?":["B\u1ea1n c\xf3 ch\u1eafc ch\u1eafn mu\u1ed1n h\u1ee7y l\xean l\u1ecbch b\xe0i n\xe0y kh\xf4ng?"],"Alt Text (Alternative Text)":["V\u0103n b\u1ea3n t.th\u1ebf (V\u0103n b\u1ea3n thay th\u1ebf)"],"Reusable Block":["Kh\u1ed1i \u0111\u01b0\u1ee3c s\u1eed d\u1ee5ng l\u1ea1i"],"Unique identifier for the object.":[],"Untitled Reusable Block":["Kh\u1ed1i kh\xf4ng th\u1ec3 s\u1eed d\u1ee5ng l\u1ea1i \u0111\u01b0\u1ee3c"],Small:[],"(%s: %s)":["(%s: %s)"],Reusable:["C\xf3 th\u1ec3 t\xe1i s\u1eed d\u1ee5ng"],"(current %s: %s)":["(hi\u1ec7n t\u1ea1i %s: %s)"],"Remove from Reusable Blocks":["X\xf3a kh\u1ecfi c\xe1c kh\u1ed1i c\xf3 th\u1ec3 t\xe1i s\u1eed d\u1ee5ng"],"Add to Reusable Blocks":["Th\xeam v\xe0o c\xe1c kh\u1ed1i t\xe1i s\u1eed d\u1ee5ng"],"Keep as HTML":["Gi\u1eef d\u01b0\u1edbi d\u1ea1ng HTML"],"Edit URL":["S\u1eeda URL"],"Color Settings":["C\xe0i \u0111\u1eb7t m\xe0u"],"The response is not a valid JSON response.":["Ph\u1ea3n h\u1ed3i kh\xf4ng ph\u1ea3i l\xe0 ph\u1ea3n h\u1ed3i JSON h\u1ee3p l\u1ec7."],"Editor publish":["Tr\xecnh ch\u1ec9nh s\u1eeda xu\u1ea5t b\u1ea3n"],Muted:["\u0110\xe3 t\u1eaft ti\u1ebfng"],"Video Settings":["C\xe0i \u0111\u1eb7t video"],"recent comments":["b\xecnh lu\u1eadn g\u1ea7n \u0111\xe2y"],"Latest Comments":["B\xecnh lu\u1eadn m\u1edbi nh\u1ea5t"],"Display Excerpt":["Hi\u1ec3n th\u1ecb T\xf3m t\u1eaft"],"Display Date":["Hi\u1ec3n th\u1ecb Ng\xe0y"],"Display Avatar":["Hi\u1ec3n th\u1ecb \u1ea2nh \u0110\u1ea1i di\u1ec7n"],"Latest Comments Settings":["C\xe0i \u0111\u1eb7t b\xecnh lu\u1eadn m\u1edbi nh\u1ea5t"],"Number of Comments":["S\u1ed1 l\u01b0\u1ee3ng B\xecnh lu\u1eadn"],"Background Opacity":["\u0110\u1ed9 m\u1edd n\u1ec1n"],Auto:["T\u1ef1 \u0111\u1ed9ng"],Preload:["T\u1ea3i tr\u01b0\u1edbc"],"Audio Settings":["C\xe0i \u0111\u1eb7t audio"],"Display a monthly archive of your posts.":["Hi\u1ec3n th\u1ecb l\u01b0u tr\u1eef h\xe0ng th\xe1ng c\xe1c b\xe0i vi\u1ebft tr\xean trang web c\u1ee7a b\u1ea1n."],"Display as Dropdown":["Hi\u1ec3n th\u1ecb d\u01b0\u1edbi d\u1ea1ng Dropdown"],"Show Post Counts":["Hi\u1ec3n th\u1ecb s\u1ed1 l\u1ea7n \u0111\u0103ng"],"Archives Settings":["C\xe0i \u0111\u1eb7t l\u01b0u tr\u1eef"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["H\u1ed7 tr\u1ee3"],"No comments to show.":["Kh\xf4ng c\xf3 b\xecnh lu\u1eadn n\xe0o \u0111\u1ec3 hi\u1ec3n th\u1ecb."],"%1$s on %2$s":["%1$s tr\xean %2$s"],"Select Post":["Ch\u1ecdn b\xe0i vi\u1ebft"],"Select Week":["Ch\u1ecdn tu\u1ea7n"],"Select Day":["Ch\u1ecdn ng\xe0y"],"Select Month":["Ch\u1ecdn th\xe1ng"],"Select Year":["Ch\u1ecdn n\u0103m"],Archives:["L\u01b0u tr\u1eef"],"Very dark gray":["m\xe0u x\xe1m \u0111\u1eadm"],"Cyan bluish gray":["m\xe0u x\xe1m xanh l\u1ee5c lam"],"Very light gray":["x\xe1m r\u1ea5t nh\u1ea1t"],"Vivid cyan blue":["xanh l\u1ee5c lam r\u1ef1c r\u1ee1"],"Pale cyan blue":["xanh l\u1ee5c lam nh\u1ea1t"],"Vivid green cyan":["xanh l\u1ee5c lam s\u1ed1ng \u0111\u1ed9ng"],"Light green cyan":["xanh l\u1ee5c lam nh\u1ea1t"],"Luminous vivid amber":["s\xe1ng h\u1ed5 ph\xe1ch sinh \u0111\u1ed9ng"],"Luminous vivid orange":[],"Vivid red":["m\xe0u \u0111\u1ecf ch\xf3i"],"Pale pink":["m\xe0u h\u1ed3ng nh\u1ea1t"],"Inline image":[],"Available block types":["C\xe1c lo\u1ea1i kh\u1ed1i c\xf3 s\u1eb5n"],"Transform To:":["Chuy\u1ec3n sang:"],"Remove Block":["G\u1ee1 b\u1ecf kh\u1ed1i"],"Open publish panel":[],Dots:["D\u1ea5u ch\u1ea5m"],"Wide Line":["\u0110\u01b0\u1eddng r\u1ed9ng"],Large:["L\u1edbn"],"Show download button":[],"Download button settings":[],"Link To":["Li\xean k\u1ebft \u0111\u1ebfn"],"Text link settings":[],pdf:["pdf"],document:["t\xe0i li\u1ec7u"],"Copy URL":["Sao ch\xe9p URL"],"Write file name\u2026":["Vi\u1ebft t\xean t\u1ec7p\u2026"],"Edit file":["S\u1eeda t\u1ec7p"],File:["T\u1ec7p"],"A single column within a columns block.":["M\u1ed9t c\u1ed9t \u0111\u01a1n trong m\u1ed9t kh\u1ed1i c\u1ed9t."],Column:["C\u1ed9t"],Outline:["D\xe0n \xfd"],Loop:["V\xf2ng l\u1eb7p"],Autoplay:["T\u1ef1 ch\u1ea1y"],"Playback Controls":["\u0110i\u1ec1u khi\u1ec3n ph\xe1t l\u1ea1i"],"Close dialog":["\u0110\xf3ng h\u1ed9p tho\u1ea1i"],"Sorry, this file type is not permitted for security reasons.":["R\u1ea5t ti\u1ebfc, lo\u1ea1i t\u1ec7p n\xe0y kh\xf4ng \u0111\u01b0\u1ee3c ph\xe9p v\xec l\xfd do b\u1ea3o m\u1eadt."],"Disable tips":["T\u1eaft m\u1eb9o"],"Got it":["Hi\u1ec3u r\u1ed3i"],"See next tip":["Xem m\u1eb9o ti\u1ebfp theo"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":["B\u1ea1n \u0111\xe3 s\u1eb5n s\xe0ng g\u1eedi \u0111\u1ec3 xem x\xe9t ch\u01b0a?"],"Replace image":["Thay th\u1ebf \u1ea3nh"],"Remove image":["G\u1ee1 b\u1ecf \u1ea3nh"],"Error while uploading file %s to the media library.":["L\u1ed7i khi t\u1ea3i t\u1ec7p %s l\xean th\u01b0 vi\u1ec7n."],"This file exceeds the maximum upload size for this site.":["%s v\u01b0\u1ee3t qu\xe1 k\xedch th\u01b0\u1edbc t\u1ea3i l\xean t\u1ed1i \u0111a cho trang web n\xe0y."],"View the autosave":["Xem t\u1ef1 \u0111\u1ed9ng l\u01b0u"],"There is an autosave of this post that is more recent than the version below.":[],Autosaving:["T\u1ef1 \u0111\u1ed9ng l\u01b0u"],"Enter URL here\u2026":["Nh\u1eadp URL t\u1ea1i \u0111\xe2y\u2026"],"Pin to toolbar":["Ghim v\xe0o thanh c\xf4ng c\u1ee5"],"Unpin from toolbar":["B\u1ecf ghim kh\u1ecfi thanh c\xf4ng c\u1ee5"],"Insert a table \u2014 perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table Settings":["C\xe0i \u0111\u1eb7t b\u1ea3ng"],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":["Hi\u1ec3n th\u1ecb danh s\xe1ch c\xe1c b\xe0i \u0111\u0103ng g\u1ea7n \u0111\xe2y nh\u1ea5t c\u1ee7a b\u1ea1n."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":[],"Error loading block: %s":["C\xf3 l\u1ed7i x\u1ea3y ra khi t\u1ea3i l\xean block: %s"],"Unknown error":["L\u1ed7i kh\xf4ng x\xe1c \u0111\u1ecbnh"],"Embed Handler":["Tr\xecnh x\u1eed l\xfd nh\xfang"],"term\x04Remove %s":["G\u1ee1 b\u1ecf %s"],"Copy the permalink":["Sao ch\xe9p \u0111\u01b0\u1eddng d\u1eabn"],"Permalink copied":["\u0110\xe3 sao ch\xe9p \u0111\u01b0\u1eddng d\u1eabn"],"Height in pixels":["Chi\u1ec1u cao t\xednh b\u1eb1ng pixel"],"Spacer Settings":[],Spacer:["Kho\u1ea3ng c\xe1ch"],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":["T\xean:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s c\u1ee7a %3$s)"],"Remove item":["Lo\u1ea1i b\u1ecf m\u1ee5c"],"Color code: %s":["M\xe3 m\xe0u s\u1eafc: %s"],"Skip to the selected block":[],"Publish\u2026":["C\xf4ng b\u1ed1..."],"Schedule\u2026":["L\xean l\u1ecbch..."],"Edit post permalink":["Ch\u1ec9nh s\u1eeda \u0111\u01b0\u1eddng d\u1eabn b\xe0i vi\u1ebft"],"Show Block Settings":["Hi\u1ec3n th\u1ecb c\xe0i \u0111\u1eb7t kh\u1ed1i"],"Hide Block Settings":["\u1ea8n c\xe0i \u0111\u1eb7t kh\u1ed1i"],"Block settings closed":["\u0110\xe3 \u0111\xf3ng c\xe0i \u0111\u1eb7t kh\u1ed1i"],"Close plugin":["\u0110\xf3ng plugin"],"Link settings":[],Unlink:["B\u1ecf li\xean k\u1ebft"],"Page break":["Ng\u1eaft trang"],pagination:["Ph\xe2n trang"],"next page":["Trang ti\u1ebfp theo"],"Image Size":["K\xedch th\u01b0\u1edbc \u1ea3nh"],Height:["Chi\u1ec1u cao"],Width:["Chi\u1ec1u r\u1ed9ng"],"Image Dimensions":["K\xedch th\u01b0\u1edbc h\xecnh \u1ea3nh"],"Thumbnails are not cropped.":["H\xecnh thu nh\u1ecf kh\xf4ng b\u1ecb c\u1eaft."],"Thumbnails are cropped to align.":["H\xecnh thu nh\u1ecf \u0111\u01b0\u1ee3c c\u1eaft \u0111\u1ec3 c\u0103n ch\u1ec9nh."],"Media Library":["Th\u01b0 vi\u1ec7n media"],Advanced:["N\xe2ng cao"],"Add item":["Th\xeam item"],"Reset the template":["\u0110\u1eb7t l\u1ea1i m\u1eabu"],"Keep it as is":["Gi\u1eef n\xf3 nh\u01b0 l\xe0"],"The content of your post doesn\u2019t match the template assigned to your post type.":["N\u1ed9i dung b\xe0i vi\u1ebft c\u1ee7a b\u1ea1n kh\xf4ng kh\u1edbp v\u1edbi m\u1eabu \u0111\u01b0\u1ee3c g\xe1n cho lo\u1ea1i b\xe0i vi\u1ebft c\u1ee7a b\u1ea1n."],"Resetting the template may result in loss of content, do you want to continue?":["\u0110\u1eb7t l\u1ea1i m\u1eabu c\xf3 th\u1ec3 d\u1eabn \u0111\u1ebfn m\u1ea5t n\u1ed9i dung, b\u1ea1n c\xf3 mu\u1ed1n ti\u1ebfp t\u1ee5c kh\xf4ng?"],"Document Statistics":["Th\u1ed1ng k\xea t\xe0i li\u1ec7u"],"is now scheduled. It will go live on":[],Scheduled:["\u0110\xe3 v\xe0o h\xe0ng ch\u1edd"],"Scheduling\u2026":["\u0110ang ch\u1ea1y h\xe0ng ch\u1edd..."],"Code editor selected":["Code editor \u0111\xe3 \u0111\u01b0\u1ee3c ch\u1ecdn"],"Visual editor selected":["Visual editor \u0111\xe3 \u0111\u01b0\u1ee3c ch\u1ecdn"],Plugins:["Plugin"],"Custom Size":["K\xedch th\u01b0\u1edbc t\xf9y ch\u1ec9nh"],"Layout Elements":[],"term\x04%s removed":["\u0110\xe3 x\xf3a %s"],"term\x04%s added":["\u0110\xe3 th\xeam %s"],"imperative verb\x04Preview":["Xem th\u1eed"],"Block deleted.":["\u0110\xe3 x\xf3a kh\u1ed1i."],"Block updated.":["\u0110\xe3 c\u1eadp nh\u1eadt kh\u1ed1i."],"Block created.":["\u0110\xe3 t\u1ea1o kh\u1ed1i."],"Trashing failed":["Kh\xf4ng th\u1ec3 truy c\u1eadp"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":[],"You have unsaved changes. If you proceed, they will be lost.":["B\u1ea1n c\xf3 c\xe1c thay \u0111\u1ed5i ch\u01b0a l\u01b0u. N\u1ebfu b\u1ea1n ti\u1ebfp t\u1ee5c, ch\xfang s\u1ebd b\u1ecb m\u1ea5t."],"Document Outline":[],Paragraphs:["\u0110o\u1ea1n v\u0103n"],Headings:["Ti\xeau \u0111\u1ec1"],Words:["T\u1eeb ng\u1eef"],"Content structure":["C\u1ea5u tr\xfac c\u1ee7a n\u1ed9i dung"],Public:["C\xf4ng khai"],"Protected with a password you choose. Only those with the password can view this post.":["\u0110\u01b0\u1ee3c b\u1ea3o v\u1ec7 v\u1edbi m\u1eadt kh\u1ea9u b\u1ea1n ch\u1ecdn. Ch\u1ec9 ai nh\u1eadp m\u1eadt kh\u1ea9u m\u1edbi th\u1ea5y b\xe0i vi\u1ebft n\xe0y."],"Password Protected":["M\u1eadt kh\u1ea9u \u0111\u01b0\u1ee3c b\u1ea3o v\u1ec7"],"Only visible to site admins and editors.":[],Private:["B\xed m\u1eadt"],"Visible to everyone.":["Hi\u1ec3n th\u1ecb t\u1edbi t\u1ea5t c\u1ea3."],"Post Visibility":["Hi\u1ec3n th\u1ecb b\xe0i vi\u1ebft"],"Would you like to privately publish this post now?":["B\u1ea1n c\xf3 mu\u1ed1n xu\u1ea5t b\u1ea3n ri\xeang t\u01b0 b\xe0i vi\u1ebft n\xe0y ngay b\xe2y gi\u1edd kh\xf4ng?"],"Use a secure password":["S\u1eed d\u1ee5ng m\u1eadt kh\u1ea9u an to\xe0n"],"Create password":["T\u1ea1o m\u1eadt kh\u1ea9u"],"Move to Trash":[],"Parent Term":[],"Parent Category":[],"Add new term":[],"Add new category":["Th\xeam danh m\u1ee5c m\u1edbi"],Term:[],Tag:["Th\u1ebb"],"Add New Term":["Th\xeam c\u1ee5m t\u1eeb m\u1edbi"],"Add New Tag":["Th\xeam th\u1ebb m\u1edbi"],"Switch to Draft":["Chuy\u1ec3n sang b\u1ea3n nh\xe1p"],"Are you sure you want to unpublish this post?":["B\u1ea1n c\xf3 ch\u1eafc ch\u1eafn mu\u1ed1n h\u1ee7y xu\u1ea5t b\u1ea3n b\xe0i vi\u1ebft n\xe0y kh\xf4ng?"],Immediately:["Ngay"],"Save Draft":["L\u01b0u nh\xe1p"],Saving:["\u0110ang l\u01b0u"],"Publish:":["Xu\u1ea5t b\u1ea3n:"],"Visibility:":["Hi\u1ec3n th\u1ecb:"],"Are you ready to publish?":["B\u1ea1n \u0111\xe3 s\u1eb5n s\xe0ng xu\u1ea5t b\u1ea3n ch\u01b0a?"],"Copy Link":["Sao ch\xe9p li\xean k\u1ebft"],"What\u2019s next?":["C\xe1i g\xec ti\u1ebfp theo?"],"is now live.":["hi\u1ec7n \u0111ang ho\u1ea1t \u0111\u1ed9ng."],Published:["\u0110\u0103ng"],Schedule:["L\xean l\u1ecbch"],Update:["C\u1eadp nh\u1eadt"],"Submit for Review":["G\u1eedi \u0111\xe1nh gi\xe1"],"Updating\u2026":["\u0110ang c\u1eadp nh\u1eadt..."],"Publishing\u2026":["\u0110ang \u0111\u0103ng t\u1ea3i..."],"Allow Pingbacks & Trackbacks":["Ch\u1ea5p nh\u1eadn Pingbacks & Trackbacks"],"Permalink:":["\u0110\u01b0\u1eddng d\u1eabn"],"Pending Review":["\u0110ang \u0111\u01b0\u1ee3c \u0111\xe1nh gi\xe1"],"%d Revision":["%d s\u1eeda \u0111\u1ed5i"],"Suggestion:":["\u0110\u1ec1 ngh\u1ecb:"],"Post Format":["\u0110\u1ecbnh d\u1ea1ng b\xe0i vi\u1ebft"],Chat:["Tr\xf2 chuy\u1ec7n"],Status:["Tr\u1ea1ng th\xe1i"],Standard:["Ti\xeau chu\u1ea9n"],Aside:["Qua m\u1ed9t b\xean"],"Set Featured Image":[],"Learn more about manual excerpts":["T\xecm hi\u1ec3u th\xeam v\u1ec1 nh\u1eefng t\xf3m t\u1eaft c\u01a1 b\u1ea3n"],"Write an excerpt (optional)":["Vi\u1ebft m\u1ed9t t\xf3m t\u1eaft (kh\xf4ng b\u1eaft bu\u1ed9c)"],"Allow Comments":["Cho ph\xe9p b\xecnh lu\u1eadn"],"Template:":["M\u1eabu:"],"no parent":[],"no title":["Kh\xf4ng ti\xeau \u0111\u1ec1"],Order:[],"No blocks found.":["Kh\xf4ng t\xecm th\u1ea5y kh\u1ed1i n\xe0o."],"%d result found.":[],Saved:["\u0110\xe3 l\u01b0u"],Embeds:["Nh\xfang v\xe0o"],Blocks:["Kh\u1ed1i"],"Search for a block":["T\xecm m\u1ed9t kh\u1ed1i"],"Add block":["Th\xeam kh\u1ed1i"],"Add %s":["Th\xeam %s"],"Copy Error":["L\u1ed7i sao ch\xe9p"],"Copy Post Text":["Sao ch\xe9p v\u0103n b\u1ea3n b\xe0i vi\u1ebft"],"Attempt Recovery":["C\u1ed1 g\u1eafng kh\xf4i ph\u1ee5c"],"The editor has encountered an unexpected error.":["Tr\xecnh ch\u1ec9nh s\u1eeda \u0111\xe3 g\u1eb7p l\u1ed7i kh\xf4ng mong mu\u1ed1n."],Undo:["Ho\xe0n t\xe1c"],Redo:["L\xe0m l\u1ea1i"],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":["(Ch\u1ee7 \u0111\u1ec1 c\u1ee7a b\u1ea1n c\xf3 th\u1ec3 \u0111\xe3 s\u1eed d\u1ee5ng m\u1ed9t th\u1ebb H1 cho ti\xeau \u0111\u1ec1 b\xe0i vi\u1ebft)"],"(Incorrect heading level)":["(Ti\xeau \u0111\u1ec1 sai c\u1ea5p)"],"(Empty heading)":["(Ti\xeau \u0111\u1ec1 tr\u1ed1ng)"],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":["L\u1ef1a ch\u1ecdn kh\xe1c"],"Edit visually":["Ch\u1ec9nh s\u1eeda tr\u1ef1c quan"],Duplicate:["B\u1ea3n sao"],"Blocks cannot be moved down as they are already at the bottom":["Kh\xf4ng th\u1ec3 di chuy\u1ec3n c\xe1c kh\u1ed1i v\xec ch\xfang \u0111\xe3 \u1edf d\u01b0\u1edbi c\xf9ng"],"Blocks cannot be moved up as they are already at the top":["Kh\xf4ng th\u1ec3 di chuy\u1ec3n c\xe1c kh\u1ed1i v\xec ch\xfang \u0111\xe3 \u1edf tr\xean c\xf9ng"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":["Ch\u1ec9nh s\u1eeda d\u01b0\u1edbi d\u1ea1ng HTML"],"Convert to Blocks":["Chuy\u1ec3n \u0111\u1ed5i th\xe0nh kh\u1ed1i"],"Block: %s":["Kh\u1ed1i: %s"],"This block has encountered an error and cannot be previewed.":["Kh\u1ed1i n\xe0y \u0111\xe3 g\u1eb7p l\u1ed7i v\xe0 kh\xf4ng th\u1ec3 xem tr\u01b0\u1edbc \u0111\u01b0\u1ee3c."],"No block selected.":["Kh\xf4ng c\xf3 kh\u1ed1i n\xe0o \u0111\u01b0\u1ee3c ch\u1ecdn."],"Transform into:":["Chuy\u1ec3n \u0111\u1ed5i v\xe0o:"],Remove:["G\u1ee1 b\u1ecf"],"Find original":["T\xecm ki\u1ebfm nguy\xean b\u1ea3n"],"Copy All Content":["Sao ch\xe9p t\u1ea5t c\u1ea3 n\u1ed9i dung"],"Copied!":["\u0110\xe3 sao ch\xe9p"],"Additional settings are now available in the Editor block settings sidebar":["C\xe0i \u0111\u1eb7t b\u1ed5 sung hi\u1ec7n kh\u1ea3 d\u1ee5ng trong thanh b\xean c\xe0i \u0111\u1eb7t c\u1ee7a tr\xecnh ch\u1ec9nh s\u1eeda kh\u1ed1i"],Visibility:["Hi\u1ec3n th\u1ecb"],"Status & Visibility":["Tr\u1ea1ng th\xe1i & kh\u1ea3 n\u0103ng hi\u1ec3n th\u1ecb"],"Page Attributes":["Thu\u1ed9c t\xednh trang"],Block:["Kh\u1ed1i %d"],Document:["T\xe0i li\u1ec7u"],"Featured Image":["\u1ea2nh n\u1ed5i b\u1eadt"],"Close settings":["\u0110\xf3ng c\xe0i \u0111\u1eb7t"],"Editor content":["Tr\xecnh ch\u1ec9nh s\u1eeda n\u1ed9i dung"],Tools:["C\xf4ng c\u1ee5"],Editor:["Tr\xecnh ch\u1ec9nh s\u1eeda"],"Code Editor":["Tr\xecnh ch\u1ec9nh s\u1eeda m\xe3"],"Visual Editor":["Tr\xecnh ch\u1ec9nh s\u1eeda tr\u1ef1c quan"],"Editor top bar":[],Settings:["C\xe0i \u0111\u1eb7t"],Reset:["\u0110\u1eb7t l\u1ea1i"],"Dismiss this notice":["Lo\u1ea1i b\u1ecf th\xf4ng b\xe1o n\xe0y"],"Item removed.":["Item \u0111\xe3 \u0111\u01b0\u1ee3c x\xf3a."],"Item added.":["Item \u0111\xe3 \u0111\u01b0\u1ee3c th\xeam v\xe0o."],"Drop files to upload":["Th\u1ea3 t\u1ec7p \u0111\u1ec3 t\u1ea3i l\xean"],PM:["PM"],AM:["AM"],"An unknown error occurred.":["\u0110\xe3 x\u1ea3y ra l\u1ed7i kh\xf4ng x\xe1c \u0111\u1ecbnh."],"No results.":["Kh\xf4ng c\xf3 k\u1ebft qu\u1ea3."],"%d result found, use up and down arrow keys to navigate.":["\u0110\xe3 t\xecm th\u1ea5y %d k\u1ebft qu\u1ea3, s\u1eed d\u1ee5ng c\xe1c ph\xedm m\u0169i t\xean l\xean v\xe0 xu\u1ed1ng \u0111\u1ec3 \u0111i\u1ec1u h\u01b0\u1edbng."],"(no title)":["(kh\xf4ng ti\xeau \u0111\u1ec1)"],URL:["URL"],Submit:["G\u1eedi"],Close:["\u0110\xf3ng"],"Insert link":[],"Edit link":[],Link:["Li\xean k\u1ebft"],Strikethrough:["\u0110\u01b0\u1eddng g\u1ea1ch ngang"],Italic:["Nghi\xeang"],Bold:["\u0110\u1eadm"],"Remove link":[],"Number of items":["S\u1ed1 h\u1ea1ng m\u1ee5c"],All:["T\u1ea5t c\u1ea3"],Category:["Chuy\xean m\u1ee5c"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["C\u0169 nh\u1ea5t \u0111\u1ebfn m\u1edbi nh\u1ea5t"],"Newest to Oldest":["M\u1edbi nh\u1ea5t \u0111\u1ebfn c\u0169 nh\u1ea5t"],"Order by":["\u0110\u1eb7t b\u1edfi"],Select:["Ch\u1ecdn"],"Select or Upload Media":["Ch\u1ecdn ho\u1eb7c t\u1ea3i l\xean ph\u01b0\u01a1ng ti\u1ec7n"],Video:["Video"],"Edit video":["S\u1eeda video"],"Write\u2026":["Vi\u1ebft\u2026"],poetry:[],Verse:["Th\u01a1"],"New Column":["C\u1ed9t m\u1edbi"],"Delete Column":["X\xf3a c\u1ed9t"],"Add Column After":["Th\xeam c\u1ed9t sau"],"Add Column Before":["Th\xeam c\u1ed9t tr\u01b0\u1edbc"],"Delete Row":["X\xf3a h\xe0ng"],"Add Row After":["Th\xeam h\xe0ng sau"],"Add Row Before":["Th\xeam h\xe0ng tr\u01b0\u1edbc"],"Edit table":["Ch\u1ec9nh s\u1eeda b\u1ea3ng"],Table:["B\u1ea3ng"],"Write subheading\u2026":["Vi\u1ebft ti\xeau \u0111\u1ec1 ph\u1ee5 ..."],"Write shortcode here\u2026":["Vi\u1ebft shortcode \u1edf \u0111\xe2y\u2026"],Shortcode:["Shortcode"],divider:["\u0111\u01b0\u1eddng k\u1ebb d\u1ecdc"],"horizontal-line":["\u0111\u01b0\u1eddng k\u1ebb ngang"],Separator:["D\u1ea5u ph\xe2n t\xe1ch"],Quote:["Tr\xedch d\u1eabn"],"Write citation\u2026":["Vi\u1ebft tr\xedch d\u1eabn\u2026"],"Write quote\u2026":["Vi\u1ebft tr\xedch d\u1eabn\u2026"],Pullquote:["Pullquote"],"Write preformatted text\u2026":["Vi\u1ebft v\u0103n b\u1ea3n \u0111\u01b0\u1ee3c \u0111\u1ecbnh d\u1ea1ng tr\u01b0\u1edbc\u2026"],Preformatted:["\u0110\xe3 \u0111\u1ecbnh d\u1ea1ng tr\u01b0\u1edbc"],text:["v\u0103n b\u1ea3n"],Paragraph:["\u0110o\u1ea1n"],"Font Size":["C\u1ee1 ch\u1eef"],"Drop Cap":[],"Text Settings":["C\xe0i \u0111\u1eb7t v\xe3n b\u1ea3n"],"Read more":["\u0110\u1ecdc ti\u1ebfp"],"Write list\u2026":["Vi\u1ebft danh s\xe1ch\u2026"],"numbered list":["danh s\xe1ch \u0111\xe1nh s\u1ed1"],"ordered list":["danh s\xe1ch \u0111\u01b0\u1ee3c y\xeau c\u1ea7u"],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":["Chuy\u1ec3n \u0111\u1ed5i sang danh s\xe1ch theo th\u1ee9 t\u1ef1"],"Convert to unordered list":["Chuy\u1ec3n \u0111\u1ed5i th\xe0nh danh s\xe1ch kh\xf4ng c\xf3 th\u1ee9 t\u1ef1"],List:["Danh s\xe1ch"],"recent posts":["b\xe0i vi\u1ebft g\u1ea7n \u0111\xe2y"],"No posts found.":["Kh\xf4ng t\xecm th\u1ea5y b\xe0i vi\u1ebft."],"Latest Posts":["B\xe0i vi\u1ebft m\u1edbi nh\u1ea5t"],"Display post date":["Hi\u1ec3n th\u1ecb ng\xe0y \u0111\u0103ng"],"Grid view":[],"List view":[],photo:["\u1ea3nh"],"Image Settings":["C\xe0i \u0111\u1eb7t \u1ea3nh"],Image:["\u1ea2nh"],Preview:["Xem tr\u01b0\u1edbc"],embed:["nh\xfang"],"Custom HTML":["T\xf9y bi\u1ebfn HTML"],subtitle:["ph\u1ee5 \u0111\u1ec1"],title:["ti\xeau \u0111\u1ec1"],Heading:["Ph\u1ea7n m\u1edf \u0111\u1ea7u"],"Write heading\u2026":["Vi\u1ebft ti\xeau \u0111\u1ec1\u2026"],"Heading %d":["Ti\xeau \u0111\u1ec1 %d"],Level:["C\u1ea5p \u0111\u1ed9"],"Heading Settings":["C\xe0i \u0111\u1eb7t ti\xeau \u0111\u1ec1"],photos:["\u1ea3nh"],images:["\u1ea3nh"],"Remove Image":["X\xf3a \u1ea3nh"],None:["Kh\xf4ng"],"Media File":["T\u1ec7p ph\u01b0\u01a1ng ti\u1ec7n"],"Attachment Page":["Trang \u0111\xednh k\xe8m"],"Crop Images":["C\u1eaft \u1ea3nh"],"Gallery Settings":["C\xe0i \u0111\u1eb7t album \u1ea3nh"],Gallery:["Album \u1ea3nh"],Classic:["C\u1ed5 \u0111i\u1ec3n"],video:["video"],audio:["audio"],music:["nh\u1ea1c"],image:["\u1ea3nh"],blog:["blog"],post:["b\xe0i vi\u1ebft"],"Embedded content from %s":["N\u1ed9i dung \u0111\u01b0\u1ee3c nh\xfang t\u1eeb %s"],"Enter URL to embed here\u2026":["Nh\u1eadp URL \u0111\u1ec3 nh\xfang v\xe0o \u0111\xe2y\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["\u0110ang nh\xfang..."],"Write title\u2026":["Vi\u1ebft ti\xeau \u0111\u1ec1\u2026"],"Fixed Background":[],"Edit image":["S\u1eeda \u1ea3nh"],Columns:["C\u1ed9t"],Experiments:[],Code:["M\xe3"],"Write code\u2026":["Vi\u1ebft m\xe3\u2026"],Categories:["Chuy\xean m\u1ee5c"],"Show Hierarchy":[],"Show post counts":["Hi\u1ec3n th\u1ecb s\u1ed1 l\u1ea7n \u0111\u0103ng"],"Categories Settings":["C\xe0i \u0111\u1eb7t chuy\xean m\u1ee5c"],"Add text\u2026":["Th\xeam n\u1ed9i dung v\u0103n b\u1ea3n\u2026"],Button:["N\xfat"],Apply:["\xc1p d\u1ee5ng"],"Text Color":["M\xe0u v\u0103n b\u1ea3n"],"Background Color":["M\xe0u n\u1ec1n"],"Block has been deleted or is unavailable.":["Kh\u1ed1i \u0111\xe3 b\u1ecb x\xf3a ho\u1eb7c kh\xf4ng kh\u1ea3 d\u1ee5ng."],"Reusable Blocks":["Kh\u1ed1i \u0111\u01b0\u1ee3c s\u1eed d\u1ee5ng l\u1ea1i"],Cancel:["H\u1ee7y"],Edit:["S\u1eeda"],"Edit audio":["S\u1eeda audio"],"Write caption\u2026":["Vi\u1ebft ch\xfa th\xedch\u2026"],"Use URL":["S\u1eed d\u1ee5ng URL"],Audio:["Audio"],Upload:["T\u1ea3i l\xean"],"Additional CSS Class(es)":[],"HTML Anchor":["Neo HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["S\u1ef1 k\u1ebft h\u1ee3p m\xe0u n\xe0y c\xf3 th\u1ec3 kh\xf3 \u0111\u1ecdc cho m\u1ecdi ng\u01b0\u1eddi. H\xe3y th\u1eed s\u1eed d\u1ee5ng m\xe0u n\u1ec1n s\xe1ng h\u01a1n v\xe0/ho\u1eb7c m\xe0u v\u0103n b\u1ea3n t\u1ed1i h\u01a1n."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["S\u1ef1 k\u1ebft h\u1ee3p m\xe0u n\xe0y c\xf3 th\u1ec3 kh\xf3 \u0111\u1ecdc cho m\u1ecdi ng\u01b0\u1eddi. Th\u1eed s\u1eed d\u1ee5ng m\xe0u n\u1ec1n t\u1ed1i h\u01a1n v\xe0/ho\u1eb7c m\xe0u v\u0103n b\u1ea3n s\xe1ng h\u01a1n."],Clear:["X\xf3a"],"Custom color picker":["B\u1ed9 ch\u1ecdn m\xe0u t\xf9y ch\u1ec9nh"],"Color: %s":["M\xe0u: %s"],"Full Width":[],"Wide Width":[],Widgets:["Widget"],Formatting:["\u0110\u1ecbnh d\u1ea1ng"],"Common Blocks":["Kh\u1ed1i chung"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["In t\u1eeb n\u0103m 1440. \u0110\xe2y l\xe0 plugin ph\xe1t tri\u1ec3n cho tr\xecnh ch\u1ec9nh s\u1eeda kh\u1ed1i m\u1edbi trong l\xf5i."],"Add title":["Th\xeam ti\xeau \u0111\u1ec1"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["T\xe1c gi\u1ea3"],Slug:["Slug"],Discussion:["Th\u1ea3o lu\u1eadn"],"Custom Fields":["Tr\u01b0\u1eddng t\xf9y ch\u1ec9nh"],Excerpt:["T\xf3m t\u1eaft"],Publish:["\u0110\u0103ng"],Metadata:["Metadata"],Save:["L\u01b0u"],Documentation:["T\xe0i li\u1ec7u"],"Select Category":["Ch\u1ecdn chuy\xean m\u1ee5c"],"(Untitled)":["(Ch\u01b0a c\xf3 ti\xeau \u0111\u1ec1)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Nh\xf3m Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["Demo"],"%s ago":["%s tr\u01b0\u1edbc"],"Block style name must be a string.":[]}},870,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],Replace:[],"Choose pattern":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],Next:[],Previous:[],Finish:[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable Page Templates":[],"Page Templates":[],"Enable Full Site Editing Demo Templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],inserter:[],"Post Title":[],"Add nofollow to link":[],"Link Settings":[],"Add Submenu":[],"Add link\u2026":[],Dark:[],Light:[],recording:[],podcast:[],sound:[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\x04Add New":[],"Admin Menu text\x04Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],Navigation:[],"Loading Navigation\u2026":[],"Navigation Structure":[],"Create empty":[],"Create from all top pages":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":[],Change:[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\x04Add block":[],"directly add the only allowed block\x04Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Site Title":[],"Open Colors Selector":[],"Overlay Gradient":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\x04Add New":[],"Admin Menu text\x04Templates":[],Template:[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],Gradient:[],"Gradient Presets":[],"No Preview Available.":[],Midnight:[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],Version:[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Window, very small in the distance, illuminated.":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":[],"\u2014 Kobayashi Issa (\u4e00\u8336)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks\u2026":[],"Snow Patrol":[],Dimensions:[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],cite:[],"Mont Blanc appears\u2014still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Enable Full Site Editing":[],"Full Site Editing":[],"Templates to include in your theme.":[],Templates:[],"Inserter Help Panel":[],"Pre-publish Checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can\u2019t load.":[],Retry:[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],Add:[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],Fill:[],"Link rel":[],"Border Radius":[],"Write gallery caption\u2026":[],"Content Blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable Block Directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered List Settings":[],"Clear Media":[],"block style\x04Circle Mask":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],Color:[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":[],"Enable Widgets Screen and Legacy Widget Block":[],"Experiment settings":[],"Block name name must be a string.":[],Custom:[],Draft:[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],Skip:[],"Select a pattern to start with.":[],"Add a page, link, or other item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":["\u6807\u9898\u5c5e\u6027"],"SEO Settings":[],Description:["\u56fe\u50cf\u63cf\u8ff0"],"Open in new tab":[],links:[],navigation:[],menu:[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":[],"verb\x04Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar\u2019s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and Filtering":[],"Post Meta Settings":[],"Post Content":[],"Post Content Settings":[],"Percentage width":[],"Column Settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\x04Block Areas":[],"post type singular name\x04Block Area (Experimental)":[],"post type general name\x04Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],section:[],row:[],wrapper:[],container:[],"A block that groups other blocks.":[],Group:[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\x04Change vertical alignment":[],"Block vertical alignment setting\x04Vertically Align Bottom":[],"Block vertical alignment setting\x04Vertically Align Middle":[],"Replace Image":["\u66ff\u6362\u56fe\u50cf"],"Block vertical alignment setting\x04Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\x04Space":[],"keyboard key\x04Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],link:[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":["\u60a8\u6700\u5e38\u4f7f\u7528\u7684\u6807\u7b7e\u4e91\u3002"],"Tag Cloud":["\u6807\u7b7e\u4e91"],Taxonomy:["\u5206\u7c7b\u6cd5"],"Tag Cloud Settings":[],"- Select -":[],Default:["\u9ed8\u8ba4"],find:[],"Help visitors find your content.":[],Search:["\u641c\u7d22"],"Add button text\u2026":[],"Button text":[],"Optional placeholder\u2026":[],"Optional placeholder text":[],"Add label\u2026":[],"Label text":[],"image %1$d of %2$d in gallery":[],archive:[],posts:[],"A calendar of your site\u2019s posts.":[],Calendar:["\u65e5\u5386"],by:["\u4f5c\u8005\uff1a"],"An error has occurred, which probably means the feed is down. Try again later.":["\u53d1\u751f\u4e86\u4e00\u4e2a\u9519\u8bef\uff0cfeed\u53ef\u80fd\u5b95\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5\u3002"],"RSS Error:":["RSS\u9519\u8bef\uff1a"],"block style\x04Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],Back:["\u8fd4\u56de"],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],feed:[],atom:[],"Display entries from any RSS or Atom feed.":[],RSS:["RSS"],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS Settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],ebook:[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],Underline:["\u4e0b\u5212\u7ebf"],"Attempt Block Recovery":[],"Word count type. Do not translate!\x04words":["characters_excluding_spaces"],"content placeholder\x04Content\u2026":["\u5185\u5bb9\u2026"],"button label\x04Convert to link":["\u8f6c\u6362\u4e3a\u94fe\u63a5"],"button label\x04Try again":["\u91cd\u8bd5"],"Editor tips":["\u7f16\u8f91\u5668\u8d34\u58eb"],"Block (selected)":["\u533a\u5757\uff08\u5df2\u9009\u62e9\uff09"],"Document (selected)":["\u6587\u6863\uff08\u5df2\u9009\u62e9\uff09"],"%d word":["%d\u5b57"],"Top Toolbar":["\u9876\u90e8\u5de5\u5177\u680f"],"Link Rel":["\u94fe\u63a5Rel"],"Link CSS Class":["\u94fe\u63a5CSS\u7c7b"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u521b\u5efa\u5185\u5bb9\uff0c\u5e76\u4fdd\u5b58\u6765\u8ba9\u60a8\u548c\u5176\u4ed6\u8d21\u732e\u8005\u5728\u7ad9\u70b9\u4e0a\u91cd\u590d\u4f7f\u7528\u3002\u5bf9\u8fd9\u4e2a\u533a\u5757\u7684\u66f4\u65b0\u4f1a\u5728\u6240\u6709\u7528\u5230\u8fd9\u4e2a\u533a\u5757\u7684\u5730\u65b9\u751f\u6548\u3002"],"To edit the featured image, you need permission to upload media.":["\u8981\u7f16\u8f91\u7279\u8272\u56fe\u50cf\uff0c\u60a8\u9700\u8981\u6709\u4e0a\u4f20\u5a92\u4f53\u7684\u6743\u9650\u3002"],"To edit this block, you need permission to upload media.":["\u8981\u7f16\u8f91\u6b64\u533a\u5757\uff0c\u60a8\u9700\u8981\u6709\u4e0a\u4f20\u5a92\u4f53\u7684\u6743\u9650\u3002"],"(selected block)":["\uff08\u9009\u5b9a\u7684\u533a\u5757\uff09"],"Block tools":["\u533a\u5757\u5de5\u5177"],Permalink:["\u6c38\u4e45\u94fe\u63a5"],"This image has an empty alt attribute":["\u6b64\u56fe\u50cf\u7684alt\u5c5e\u6027\u4e3a\u7a7a"],"This image has an empty alt attribute; its file name is %s":["\u6b64\u56fe\u50cf\u7684alt\u5c5e\u6027\u4e3a\u7a7a\uff1b\u6587\u4ef6\u540d\u4e3a%s"],"Block area reverted to draft.":["\u533a\u5757\u6062\u590d\u5230\u8349\u7a3f\u3002"],"Block area published privately.":["\u533a\u5757\u9690\u85cf\u53d1\u5e03\u3002"],"No block areas found in Trash.":["\u56de\u6536\u7ad9\u4e2d\u6ca1\u6709\u627e\u5230\u533a\u5757\u3002"],"Block\x04Add New":["\u6dfb\u52a0\u65b0"],"add new on admin bar\x04Block Area":["\u533a\u5757"],"Link inserted.":["\u94fe\u63a5\u5df2\u63d2\u5165\u3002"],"Warning: the link has been inserted but may have errors. Please test it.":["\u8b66\u544a\uff1a\u6b64\u94fe\u63a5\u5df2\u88ab\u63d2\u5165\u4f46\u53ef\u80fd\u542b\u6709\u9519\u8bef\uff0c\u8bf7\u6d4b\u8bd5\u3002"],"%s block selected.":["\u5df2\u9009\u62e9%s\u4e2a\u533a\u5757\u3002"],Thumbnail:["\u7f29\u7565\u56fe"],"Full Size":["\u5b8c\u6574\u5c3a\u5bf8"],"Link selected.":["\u94fe\u63a5\u5df2\u9009\u62e9\u3002"],"Start writing with text or HTML":["\u5f00\u59cb\u5199\u4f5c\u6587\u672c\u6216HTML"],"Type text or HTML":["\u952e\u5165\u6587\u672c\u6216HTML"],"Block icon":["\u533a\u5757\u56fe\u6807"],"Align Text Right":[],"Align Text Center":[],"Align Text Left":[],"Start writing or type / to choose a block":["\u5f00\u59cb\u5199\u4f5c\u6216\u6309/\u6765\u9009\u62e9\u533a\u5757"],"Empty block; start writing or type forward slash to choose a block":["\u7a7a\u533a\u5757\uff1b\u5f00\u59cb\u5199\u4f5c\u6216\u6309\u6b63\u659c\u6760\u6765\u9009\u62e9\u533a\u5757"],"Paragraph block":["\u6bb5\u843d\u533a\u5757"],"Page Break":["\u5206\u9875\u7b26"],"Stack on mobile":["\u5728\u79fb\u52a8\u8bbe\u5907\u4e0a\u5806\u53e0\u663e\u793a"],Annotation:["\u6279\u6ce8"],"Drag images, upload new ones or select files from your library.":["\u62d6\u52a8\u56fe\u50cf\uff0c\u4e0a\u4f20\u65b0\u56fe\u50cf\u6216\u4ece\u60a8\u7684\u5a92\u4f53\u5e93\u4e2d\u9009\u62e9\u6587\u4ef6\u3002"],"blocks\x04Most Used":["\u6700\u5e38\u7528"],"imperative verb\x04Resolve":["\u89e3\u6790"],"font size name\x04Huge":["\u7279\u5927"],"font size name\x04Large":["\u5927"],"font size name\x04Medium":["\u4e2d"],"font size name\x04Small":["\u5c0f"],"font size name\x04Normal":["\u5e38\u89c4"],"keyboard button\x04Enter":["\u56de\u8f66"],"button label\x04Import":["\u5bfc\u5165"],"button label\x04Download":["\u4e0b\u8f7d"],"button label\x04Embed":["\u5d4c\u5165"],"block title\x04Embed":["\u5d4c\u5165"],"block title\x04Classic":["\u7ecf\u5178"],"block style\x04Large":["\u5927"],"%s (opens in a new tab)":["%s\uff08\u5728\u65b0\u7a97\u53e3\u6253\u5f00\uff09"],"Link edited.":["\u5df2\u7f16\u8f91\u94fe\u63a5\u3002"],"Link removed.":["\u5df2\u79fb\u9664\u94fe\u63a5\u3002"],media:["\u5a92\u4f53"],"Double-check your settings before publishing.":["\u8bf7\u5728\u53d1\u5e03\u524d\u518d\u6b21\u68c0\u67e5\u60a8\u7684\u8bbe\u7f6e\u3002"],"Generating preview\u2026":["\u6b63\u5728\u751f\u6210\u9884\u89c8\u2026"],"Edit or update the image":["\u7f16\u8f91\u6216\u66f4\u65b0\u6b64\u56fe\u50cf"],Media:["\u5a92\u4f53"],"Navigate to the nearest toolbar.":["\u5bfc\u822a\u5230\u6700\u8fd1\u7684\u5de5\u5177\u680f\u3002"],"Document tools":["\u6587\u6863\u5de5\u5177"],"Document and block tools":["\u6587\u6863\u548c\u533a\u5757\u5de5\u5177"],"Embed a video from your media library or upload a new one.":["\u4ece\u60a8\u7684\u5a92\u4f53\u5e93\u4e2d\u5d4c\u5165\u89c6\u9891\uff0c\u6216\u4e0a\u4f20\u65b0\u89c6\u9891\u3002"],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u63d2\u5165\u8bd7\u6b4c\uff0c\u4f7f\u7528\u7279\u6b8a\u7684\u7a7a\u767d\u683c\u5f0f\uff0c\u6216\u5f15\u7528\u6b4c\u8bcd\u3002"],"Add white space between blocks and customize its height.":["\u5728\u533a\u5757\u95f4\u52a0\u5165\u7a7a\u767d\uff0c\u5e76\u81ea\u5b9a\u4e49\u7a7a\u767d\u7684\u9ad8\u5ea6\u3002"],"Insert additional custom elements with a WordPress shortcode.":["\u901a\u8fc7WordPress\u77ed\u4ee3\u7801\u52a0\u5165\u989d\u5916\u7684\u81ea\u5b9a\u4e49\u5143\u7d20\u3002"],"Create a break between ideas or sections with a horizontal separator.":["\u5728\u4e0d\u540c\u7684\u70b9\u5b50\u6216\u7ae0\u8282\u4e4b\u95f4\u901a\u8fc7\u6a2a\u5411\u5206\u9694\u7b26\u6765\u5236\u9020\u95f4\u65ad\u3002"],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u7ed9\u5f15\u6587\u63d0\u4f9b\u89c6\u89c9\u5f3a\u8c03\u3002\u201c\u5728\u5f15\u7528\u5176\u4ed6\u4eba\u65f6\uff0c\u6211\u4eec\u5f15\u7528\u81ea\u5df1\u3002\u201d\u2014\u2014\u80e1\u91cc\u5965\xb7\u79d1\u5854\u8428\u5c14"],"Give special visual emphasis to a quote from your text.":["\u7ed9\u60a8\u6587\u4e2d\u7684\u5f15\u7528\u589e\u52a0\u89c6\u89c9\u5f3a\u8c03\u7684\u7a7a\u95f4\u3002"],"Start with the building block of all narrative.":["\u8bf7\u4ece\u6240\u6709\u6545\u4e8b\u7684\u57fa\u77f3\u5f00\u59cb\u3002"],"Separate your content into a multi-page experience.":["\u5c06\u60a8\u7684\u5185\u5bb9\u5206\u6210\u591a\u4e2a\u9875\u9762\u3002"],"Set media and words side-by-side for a richer layout.":["\u5e76\u6392\u663e\u793a\u5a92\u4f53\u548c\u6587\u5b57\u6765\u4e30\u5bcc\u5e03\u5c40\u3002"],"Media & Text Settings":["\u5a92\u4f53\u548c\u6587\u672c\u8bbe\u7f6e"],"Create a bulleted or numbered list.":["\u521b\u5efa\u9879\u76ee\u7b26\u53f7\u6216\u7f16\u53f7\u5217\u8868\u3002"],"Display a list of your most recent comments.":["\u663e\u793a\u60a8\u7684\u6700\u65b0\u8bc4\u8bba\u7684\u5217\u8868\u3002"],"Insert an image to make a visual statement.":["\u63d2\u5165\u56fe\u7247\u6765\u505a\u51fa\u89c6\u89c9\u58f0\u660e\u3002"],"Add custom HTML code and preview it as you edit.":["\u6dfb\u52a0\u81ea\u5b9a\u4e49HTML\u4ee3\u7801\uff0c\u5e76\u5b9e\u65f6\u9884\u89c8\u3002"],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u63d2\u5165\u65b0\u7684\u7ae0\u8282\u5e76\u6574\u7406\u5185\u5bb9\u6765\u8ba9\u60a8\u7684\u8bbf\u5ba2\uff08\u548c\u641c\u7d22\u5f15\u64ce\uff09\u7406\u89e3\u60a8\u7684\u5185\u5bb9\u7684\u7ed3\u6784\u3002"],"Display multiple images in a rich gallery.":["\u5728\u76f8\u518c\u4e2d\u5c55\u793a\u591a\u5f20\u56fe\u7247\u3002"],"Add a link to a downloadable file.":["\u6dfb\u52a0\u5230\u53ef\u4e0b\u8f7d\u6587\u4ef6\u7684\u94fe\u63a5\u3002"],"Embed videos, images, tweets, audio, and other content from external sources.":["\u5d4c\u5165\u6765\u81ea\u5916\u90e8\u6765\u6e90\u7684\u89c6\u9891\u3001\u56fe\u50cf\u3001\u63a8\u6587\u3001\u97f3\u9891\u548c\u5176\u4ed6\u5185\u5bb9\u3002"],"Resize for smaller devices":["\u4e3a\u5c0f\u8bbe\u5907\u8c03\u6574\u5c3a\u5bf8"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u5728\u6d4f\u89c8\u5668\u5c3a\u5bf8\u53d8\u5316\u65f6\uff0c\u6b64\u5d4c\u5165\u53ef\u80fd\u4e0d\u4f1a\u4fdd\u6301\u5176\u9ad8\u5bbd\u6bd4\u3002"],"This embed will preserve its aspect ratio when the browser is resized.":["\u5728\u6d4f\u89c8\u5668\u5c3a\u5bf8\u53d8\u5316\u65f6\uff0c\u6b64\u5d4c\u5165\u4f1a\u4fdd\u6301\u5176\u9ad8\u5bbd\u6bd4\u3002"],"Embed an Animoto video.":["\u5d4c\u5165Animoto\u89c6\u9891\u3002"],"Embed a Vimeo video.":["\u5d4c\u5165Vimeo\u89c6\u9891\u3002"],"Embed Flickr content.":["\u5d4c\u5165Flickr\u5185\u5bb9\u3002"],"Embed Spotify content.":["\u5d4c\u5165Spotify\u5185\u5bb9\u3002"],"Embed SoundCloud content.":["\u5d4c\u5165SoundCloud\u5185\u5bb9\u3002"],"Embed a WordPress post.":["\u5d4c\u5165WordPress\u6587\u7ae0\u3002"],"Embed an Instagram post.":["\u5d4c\u5165Instagram\u8d34\u6587\u3002"],"Embed a Facebook post.":["\u5d4c\u5165Facebook\u6587\u7ae0\u3002"],"Embed a WordPress.tv video.":["\u5d4c\u5165WordPress.tv\u89c6\u9891\u3002"],"Embed a VideoPress video.":["\u5d4c\u5165VideoPress\u89c6\u9891\u3002"],"Embed a Tumblr post.":["\u5d4c\u5165Tumblr\u6587\u7ae0\u3002"],"Embed a TED video.":["\u5d4c\u5165TED\u89c6\u9891\u3002"],"Embed Speaker Deck content.":["\u5d4c\u5165Speaker Deck\u5185\u5bb9\u3002"],"Embed a YouTube video.":["\u5d4c\u5165YouTube\u89c6\u9891\u3002"],"Embed SmugMug content.":["\u5d4c\u5165SmugMug\u5185\u5bb9\u3002"],"Embed Slideshare content.":["\u5d4c\u5165Slideshare\u5185\u5bb9\u3002"],"Embed Scribd content.":["\u5d4c\u5165Scribd\u5185\u5bb9\u3002"],"Embed Screencast content.":["\u5d4c\u5165Screencast\u5185\u5bb9\u3002"],"Embed ReverbNation content.":["\u5d4c\u5165ReverbNation\u5185\u5bb9\u3002"],"Embed a Reddit thread.":["\u5d4c\u5165Reddit\u8ba8\u8bba\u4e32\u3002"],"Embed Polldaddy content.":["\u5d4c\u5165Polldaddy\u5185\u5bb9\u3002"],"Embed Mixcloud content.":["\u5d4c\u5165Mixcloud\u5185\u5bb9\u3002"],"Embed a tweet.":["\u5d4c\u5165\u63a8\u6587\u3002"],"Embed Meetup.com content.":["\u5d4c\u5165Meetup.com\u5185\u5bb9\u3002"],"Embed Kickstarter content.":["\u5d4c\u5165Kickstarter\u5185\u5bb9\u3002"],"Embed Issuu content.":["\u5d4c\u5165Issuu\u5185\u5bb9\u3002"],"Embed Imgur content.":["\u5d4c\u5165Imgur\u5185\u5bb9\u3002"],"Embed Hulu content.":["\u5d4c\u5165Hulu\u5185\u5bb9\u3002"],"Embed a Dailymotion video.":["\u5d4c\u5165Dailymotion\u89c6\u9891\u3002"],"Embed CollegeHumor content.":["\u5d4c\u5165CollegeHumor\u5185\u5bb9\u3002"],"Embed Cloudup content.":["\u5d4c\u5165Cloudup\u5185\u5bb9\u3002"],"Add an image or video with a text overlay \u2014 great for headers.":["\u52a0\u5165\u6709\u6587\u5b57\u6d6e\u5c42\u7684\u56fe\u50cf\u6216\u89c6\u9891\uff0c\u9002\u5408\u4f5c\u4e3a\u5934\u90e8\u3002"],"Display code snippets that respect your spacing and tabs.":["\u663e\u793a\u4ee3\u7801\u7247\u6bb5\uff0c\u8fd9\u4f1a\u5c0a\u91cd\u60a8\u7684\u7a7a\u767d\u548c\u5236\u8868\u7b26\u3002"],"Use the classic WordPress editor.":["\u4f7f\u7528\u7ecf\u5178WordPress\u7f16\u8f91\u5668\u3002"],"Display a list of all categories.":["\u663e\u793a\u6240\u6709\u5206\u7c7b\u7684\u5217\u8868\u3002"],"Embed a simple audio player.":["\u5d4c\u5165\u7b80\u5355\u97f3\u9891\u64ad\u653e\u5668\u3002"],"noun\x04View":["\u89c6\u56fe"],"editor button\x04Left to right":["\u4ece\u5de6\u5230\u53f3"],"Save as Pending":["\u4fdd\u5b58\u5e76\u63d0\u8bf7\u5ba1\u6838"],"%s address":["%s\u5730\u5740"],"Paste or type URL":["\u7c98\u8d34\u6216\u952e\u5165URL"],"Insert from URL":["\u4eceURL\u63d2\u5165"],"Block Navigator":[],Styles:["\u6837\u5f0f"],"Advanced Panels":["\u9ad8\u7ea7\u9762\u677f"],"Document Panels":["\u6587\u6863\u9762\u677f"],General:["\u5e38\u89c4"],"Open the block navigation menu.":["\u6253\u5f00\u533a\u5757\u5bfc\u822a\u83dc\u5355\u3002"],"Work without distraction":["\u6ca1\u6709\u5e72\u6270\u5730\u5de5\u4f5c"],"Focus on one block at a time":["\u96c6\u4e2d\u6ce8\u610f\u529b\u5728\u4e00\u4e2a\u533a\u5757\u4e0a"],"Access all block and document tools in a single place":["\u5728\u4e00\u4e2a\u4f4d\u7f6e\u8bbf\u95ee\u6240\u6709\u7684\u533a\u5757\u548c\u6587\u6863\u5de5\u5177"],Options:["\u9009\u9879"],"(opens in a new tab)":["\uff08\u5728\u65b0\u7a97\u53e3\u4e2d\u6253\u5f00\uff09"],Minutes:["\u5206\u949f"],Hours:["\u5c0f\u65f6"],Time:["\u65f6\u95f4"],Year:["\u5e74"],Day:["\u65e5"],December:["\u5341\u4e8c\u6708"],November:["\u5341\u4e00\u6708"],October:["\u5341\u6708"],September:["\u4e5d\u6708"],August:["\u516b\u6708"],July:["\u4e03\u6708"],June:["\u516d\u6708"],May:["\u4e94\u6708"],April:["\u56db\u6708"],March:["\u4e09\u6708"],February:["\u4e8c\u6708"],January:["\u4e00\u6708"],Month:["\u6708"],Date:["\u65e5\u671f"],"Go to the first (home) or last (end) day of a week.":["\u524d\u5f80\u4e00\u5468\u7684\u7b2c\u4e00\u5929\uff08home\uff09\u6216\u6700\u540e\u4e00\u5929\uff08end\uff09"],"Home/End":["Home/End"],"Home and End":["Home\u548cEnd"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u5411\u524d\uff08PgUp\uff09\u6216\u5411\u540e\uff08PgDn\uff09\u79fb\u52a8\u4e00\u4e2a\u6708\u3002"],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up\u548cPage Down"],"Move backward (up) or forward (down) by one week.":["\u5411\u524d\uff08\u4e0a\uff09\u6216\u5411\u540e\uff08\u4e0b\uff09\u79fb\u52a8\u4e00\u5468\u3002"],"Up and Down Arrows":["\u4e0a\u4e0b\u65b9\u5411\u952e"],"Move backward (left) or forward (right) by one day.":["\u5411\u524d\uff08\u5de6\uff09\u6216\u5411\u540e\uff08\u53f3\uff09\u79fb\u52a8\u4e00\u5929\u3002"],"Left and Right Arrows":["\u5de6\u53f3\u65b9\u5411\u952e"],"Select the date in focus.":["\u9009\u62e9\u5f53\u524d\u9ad8\u4eae\u7684\u65e5\u671f\u3002"],"Navigating with a keyboard":["\u7528\u952e\u76d8\u5bfc\u822a"],"Click the desired day to select it.":["\u70b9\u51fb\u60a8\u671f\u671b\u7684\u65e5\u671f\u6765\u9009\u62e9\u3002"],"Click the right or left arrows to select other months in the past or the future.":["\u70b9\u51fb\u5de6\u53f3\u7bad\u5934\u6765\u9009\u62e9\u8fc7\u53bb\u6216\u5c06\u6765\u7684\u6708\u4efd\u3002"],"Click to Select":["\u70b9\u51fb\u4ee5\u9009\u62e9"],"Calendar Help":["\u65e5\u5386\u5e2e\u52a9"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["\u9009\u62e9\u9634\u5f71"],"Change color format":["\u4fee\u6539\u989c\u8272\u683c\u5f0f"],"Color value in HSL":["HSL\u7684\u989c\u8272\u503c"],"Color value in RGB":["RGB\u7684\u989c\u8272\u503c"],"Color value in hexadecimal":["\u5341\u516d\u8fdb\u5236\u7684\u989c\u8272\u503c"],"RGB mode active":["RGB\u6a21\u5f0f\u5df2\u6fc0\u6d3b"],"Hex color mode active":["\u5341\u516d\u8fdb\u5236\u989c\u8272\u6a21\u5f0f\u5df2\u6fc0\u6d3b"],"Hue/saturation/lightness mode active":["\u8272\u76f8/\u9971\u548c\u5ea6/\u4eae\u5ea6\u6a21\u5f0f\u5df2\u6fc0\u6d3b"],"Move the arrow left or right to change hue.":["\u5c06\u7bad\u5934\u5de6\u53f3\u79fb\u52a8\u6765\u8c03\u8282\u8272\u76f8\u3002"],"Hue value in degrees, from 0 to 359.":["\u8272\u76f8\u7684\u89d2\u5ea6\u503c\uff0c\u4ece0\u5230359\u3002"],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["\u900f\u660e\u5ea6\uff0c\u4ece0\uff08\u900f\u660e\uff09\u52301\uff08\u4e0d\u900f\u660e\uff09\u3002"],Stripes:["\u6761\u5e26"],"Your site doesn\u2019t include support for this block.":["\u60a8\u7684\u7ad9\u70b9\u4e0d\u652f\u6301\u8fd9\u4e00\u533a\u5757\u3002"],"Unrecognized Block":["\u672a\u8bc6\u522b\u7684\u533a\u5757"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\u60a8\u7684\u7ad9\u70b9\u4e0d\u652f\u6301\u201c%s\u201d\u533a\u5757\u3002\u60a8\u53ef\u4ee5\u539f\u6837\u4fdd\u7559\u6b64\u533a\u5757\u6216\u79fb\u9664\u6b64\u533a\u5757\u3002"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\u60a8\u7684\u7ad9\u70b9\u4e0d\u652f\u6301\u201c%s\u201d\u533a\u5757\u3002\u60a8\u53ef\u4ee5\u539f\u6837\u4fdd\u7559\u6b64\u533a\u5757\uff0c\u5c06\u5185\u5bb9\u8f6c\u6362\u4e3a\u81ea\u5b9a\u4e49HTML\u533a\u5757\uff0c\u6216\u79fb\u9664\u6b64\u533a\u5757\u3002"],"Media area":["\u5a92\u4f53\u533a"],"Media & Text":["\u5a92\u4f53\u548c\u6587\u672c"],"Show media on right":["\u5728\u53f3\u4fa7\u663e\u793a\u5a92\u4f53"],"Show media on left":["\u5728\u5de6\u4fa7\u663e\u793a\u5a92\u4f53"],"Open in New Tab":["\u5728\u65b0\u7a97\u53e3\u6253\u5f00"],Cover:["\u5c01\u9762"],"Border Settings":[],"Edit media":["\u7f16\u8f91\u5a92\u4f53"],Medium:["\u4e2d\u7b49"],"Paste URL or type to search":["\u7c98\u8d34URL\u6216\u952e\u5165\u6765\u641c\u7d22"],Terms:["\u9879\u76ee"],"Your work will be published at the specified date and time.":["\u60a8\u7684\u5de5\u4f5c\u4f1a\u5728\u6307\u5b9a\u7684\u65e5\u671f\u548c\u65f6\u95f4\u88ab\u53d1\u5e03\u3002"],"Are you ready to schedule?":["\u60a8\u51c6\u5907\u597d\u8ba1\u5212\u4e86\u5417\uff1f"],"Always show pre-publish checks.":["\u603b\u662f\u663e\u793a\u53d1\u5e03\u524d\u68c0\u67e5\u3002"],"Take Over":["\u63a5\u7ba1"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u5176\u4ed6\u7528\u6237\u73b0\u5728\u6b63\u5728\u7f16\u8f91\u6b64\u6587\u7ae0\uff0c\u8fd9\u610f\u5473\u7740\u60a8\u73b0\u5728\u4e0d\u80fd\u8fdb\u884c\u4fee\u6539\uff0c\u9664\u975e\u60a8\u63a5\u7ba1\u6b64\u6587\u7ae0\u3002"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s\u73b0\u5728\u6b63\u5728\u7f16\u8f91\u6b64\u6587\u7ae0\uff0c\u8fd9\u610f\u5473\u7740\u60a8\u73b0\u5728\u4e0d\u80fd\u8fdb\u884c\u4fee\u6539\uff0c\u9664\u975e\u60a8\u63a5\u7ba1\u6b64\u6587\u7ae0\u3002"],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u5176\u4ed6\u7528\u6237\u73b0\u5728\u6b63\u5728\u7f16\u8f91\u6b64\u6587\u7ae0\u3002\u4e0d\u7528\u614c\uff0c\u60a8\u5230\u73b0\u5728\u4e3a\u6b62\u7684\u66f4\u6539\u5747\u5df2\u88ab\u4fdd\u5b58\u3002"],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s\u73b0\u5728\u6b63\u5728\u7f16\u8f91\u6b64\u6587\u7ae0\u3002\u4e0d\u7528\u614c\uff0c\u60a8\u5230\u73b0\u5728\u4e3a\u6b62\u7684\u66f4\u6539\u5747\u5df2\u88ab\u4fdd\u5b58\u3002"],Avatar:["\u5934\u50cf"],"This post is already being edited.":["\u6b64\u6587\u7ae0\u6b63\u5728\u88ab\u7f16\u8f91\u3002"],"Someone else has taken over this post.":["\u5176\u4ed6\u4eba\u63a5\u7ba1\u4e86\u6b64\u6587\u7ae0\u3002"],"This block contains unexpected or invalid content.":["\u6b64\u533a\u5757\u5305\u542b\u672a\u9884\u6599\u7684\u6216\u65e0\u6548\u7684\u5185\u5bb9\u3002"],"Resolve Block":["\u89e3\u6790\u533a\u5757"],"Convert to HTML":["\u8f6c\u6362\u4e3aHTML"],"This block can only be used once.":["\u6b64\u533a\u5757\u53ea\u80fd\u88ab\u4f7f\u7528\u4e00\u6b21\u3002"],"Exit Code Editor":["\u9000\u51fa\u4ee3\u7801\u7f16\u8f91\u5668"],"Editing Code":["\u6b63\u5728\u7f16\u8f91\u4ee3\u7801"],"Solid Color":["\u7eaf\u8272"],"Main Color":["\u4e3b\u989c\u8272"],HTML:["HTML"],"Write HTML\u2026":["\u7f16\u5199HTML\u2026"],"Media Settings":["\u5a92\u4f53\u8bbe\u7f6e"],"Overlay Color":["\u8986\u76d6\u989c\u8272"],Overlay:["\u8986\u76d6"],"Insert Media":["\u63d2\u5165\u5a92\u4f53"],"Reusable block imported successfully!":["\u6210\u529f\u5bfc\u5165\u53ef\u91cd\u7528\u533a\u5757\uff01"],"Invalid Reusable Block JSON file":["\u65e0\u6548\u7684\u53ef\u91cd\u7528\u533a\u5757JSON\u6587\u4ef6"],"Invalid JSON file":["\u65e0\u6548\u7684JSON\u6587\u4ef6"],"Import from JSON":["\u4eceJSON\u5bfc\u5165"],Backtick:["\u53cd\u5f15\u53f7"],Period:["\u53e5\u53f7"],Comma:["\u9017\u53f7"],"Change type of %d block":["\u4fee\u6539%d\u4e2a\u533a\u5757\u7684\u7c7b\u578b"],Current:["\u5f53\u524d"],"After Conversion":["\u8f6c\u6362\u540e"],"Change alignment":[],"Change text alignment":[],"%d block":["%d\u4e2a\u533a\u5757"],Escape:["Esc"],"Forward-slash":["\u6b63\u659c\u6760"],"No archives to show.":["\u6ca1\u6709\u5b58\u6863\u53ef\u663e\u793a\u3002"],"This file is empty.":["\u6b64\u6587\u4ef6\u4e3a\u7a7a\u3002"],"Sorry, this file type is not supported here.":["\u62b1\u6b49\uff0c\u4e0d\u652f\u6301\u6b64\u6587\u4ef6\u7c7b\u578b\u3002"],"Manage All Reusable Blocks":["\u7ba1\u7406\u6240\u6709\u53ef\u91cd\u7528\u533a\u5757"],Title:["\u6807\u9898"],"Fullscreen Mode":["\u5168\u5c4f\u6a21\u5f0f"],"Beautiful landscape":[],"Close panel":["\u5173\u95ed\u9762\u677f"],"Convert to Classic Block":["\u8f6c\u6362\u4e3a\u7ecf\u5178\u533a\u5757"],"Remove Poster Image":["\u79fb\u9664\u6d77\u62a5\u56fe\u50cf"],"Select Poster Image":["\u9009\u62e9\u6d77\u62a5\u56fe\u50cf"],"Poster Image":["\u6d77\u62a5\u56fe\u50cf"],"This block is deprecated. Please use the Columns block instead.":["\u6b64\u533a\u5757\u5df2\u88ab\u5e9f\u5f03\uff0c\u8bf7\u4f7f\u7528\u591a\u680f\u533a\u5757\u3002"],"Text Columns (deprecated)":["\u6587\u672c\u680f\uff08\u5df2\u5e9f\u5f03\uff09"],"Row Count":["\u5217\u6570"],"Column Count":["\u884c\u6570"],"This block is deprecated. Please use the Paragraph block instead.":["\u6b64\u533a\u5757\u5df2\u88ab\u5e9f\u5f03\uff0c\u8bf7\u4f7f\u7528\u6bb5\u843d\u533a\u5757\u3002"],"Subheading (deprecated)":["\u526f\u6807\u9898\uff08\u5df2\u5e9f\u5f03\uff09"],blockquote:["\u5757\u5f15\u7528"],"Change the block type after adding a new paragraph.":["\u5728\u6dfb\u52a0\u65b0\u6bb5\u843d\u540e\u4fee\u6539\u533a\u5757\u7c7b\u578b\u3002"],"Spotlight Mode":["\u63a2\u7167\u706f\u6a21\u5f0f"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u6807\u7b7e\u80fd\u591f\u5e2e\u52a9\u7528\u6237\u548c\u641c\u7d22\u5f15\u64ce\u6d4f\u89c8\u60a8\u7684\u7ad9\u70b9\u5e76\u627e\u5230\u5185\u5bb9\u3002\u8bf7\u52a0\u5165\u4e00\u4e9b\u80fd\u63cf\u8ff0\u60a8\u7684\u6587\u7ae0\u7684\u5173\u952e\u8bcd\u3002"],"Add tags":["\u6dfb\u52a0\u6807\u7b7e"],"Apply the \"%1$s\" format.":["\u5e94\u7528\u201c%1$s\u201d\u683c\u5f0f\u3002"],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u60a8\u7684\u4e3b\u9898\u4f7f\u7528\u4e86\u6587\u7ae0\u683c\u5f0f\u6765\u5448\u73b0\u4e0d\u540c\u7c7b\u578b\u7684\u5185\u5bb9\uff0c\u5982\u56fe\u50cf\u6216\u89c6\u9891\u3002\u5e94\u7528\u6587\u7ae0\u683c\u5f0f\u6765\u67e5\u770b\u8fd9\u4e9b\u7279\u6b8a\u683c\u5f0f\u3002"],"Use a post format":["\u4f7f\u7528\u6587\u7ae0\u683c\u5f0f"],"Insert After":["\u5728\u4e4b\u540e\u63d2\u5165"],"Insert Before":["\u5728\u4e4b\u524d\u63d2\u5165"],"Move %1$d block from position %2$d down by one place":["\u5c06%1$d\u4e2a\u533a\u5757\u4ece\u4f4d\u7f6e%2$d\u4e0b\u79fb\u4e00\u4f4d"],"Move %1$d block from position %2$d up by one place":["\u5c06%1$d\u4e2a\u533a\u5757\u4ece\u4f4d\u7f6e%2$d\u4e0a\u79fb\u4e00\u4f4d"],"Move %1$s block from position %2$d %3$s to position %4$d":[],movie:["\u7535\u5f71"],"Insert a new block before the selected block(s).":["\u5728\u9009\u5b9a\u7684\u533a\u5757\u524d\u63d2\u5165\u4e00\u4e2a\u65b0\u7684\u533a\u5757\u3002"],"Remove the selected block(s).":["\u79fb\u9664\u9009\u5b9a\u7684\u533a\u5757\u3002"],"Duplicate the selected block(s).":["\u590d\u5236\u9009\u5b9a\u7684\u533a\u5757\u3002"],"Block shortcuts":["\u533a\u5757\u5feb\u6377\u952e"],"Clear selection.":["\u6e05\u9664\u9009\u62e9\u3002"],"Select all text when typing. Press again to select all blocks.":["\u5728\u6253\u5b57\u65f6\u5168\u9009\u6587\u5b57\uff0c\u518d\u6309\u4e00\u6b21\u6765\u9009\u62e9\u6240\u6709\u7684\u533a\u5757\u3002"],"Selection shortcuts":["\u9009\u5b9a\u5feb\u6377\u952e"],"Switch between Visual Editor and Code Editor.":["\u5728\u53ef\u89c6\u5316\u7f16\u8f91\u5668\u548c\u4ee3\u7801\u7f16\u8f91\u5668\u95f4\u5207\u6362\u3002"],"Navigate to the previous part of the editor (alternative).":["\u5bfc\u822a\u5230\u7f16\u8f91\u5668\u7684\u4e0a\u4e00\u90e8\u5206\uff08\u66ff\u4ee3\uff09\u3002"],"Navigate to the next part of the editor (alternative).":["\u5bfc\u822a\u5230\u7f16\u8f91\u5668\u7684\u4e0b\u4e00\u90e8\u5206\uff08\u66ff\u4ee3\uff09\u3002"],"Navigate to the previous part of the editor.":["\u5bfc\u822a\u5230\u7f16\u8f91\u5668\u7684\u4e0a\u4e00\u90e8\u5206\u3002"],"Navigate to the next part of the editor.":["\u5bfc\u822a\u5230\u7f16\u8f91\u5668\u7684\u4e0b\u4e00\u90e8\u5206\u3002"],"Show or hide the settings sidebar.":["\u663e\u793a\u6216\u9690\u85cf\u8bbe\u7f6e\u8fb9\u680f\u3002"],"Redo your last undo.":["\u91cd\u505a\u60a8\u64a4\u9500\u7684\u64cd\u4f5c\u3002"],"Undo your last changes.":["\u64a4\u9500\u60a8\u7684\u4e0a\u4e00\u4e2a\u66f4\u6539\u3002"],"Save your changes.":["\u4fdd\u5b58\u60a8\u7684\u66f4\u6539\u3002"],"Global shortcuts":["\u5168\u5c40\u5feb\u6377\u952e"],"Remove a link.":["\u79fb\u9664\u94fe\u63a5\u3002"],"Convert the selected text into a link.":["\u5c06\u9009\u5b9a\u7684\u6587\u672c\u8f6c\u6362\u4e3a\u94fe\u63a5\u3002"],"Underline the selected text.":["\u7ed9\u9009\u5b9a\u7684\u6587\u672c\u52a0\u4e0b\u5212\u7ebf\u3002"],"Make the selected text italic.":["\u5c06\u9009\u5b9a\u7684\u6587\u672c\u8bbe\u4e3a\u659c\u4f53\u3002"],"Make the selected text bold.":["\u5c06\u9009\u5b9a\u7684\u6587\u672c\u52a0\u7c97\u3002"],"Text formatting":["\u6587\u672c\u683c\u5f0f"],"Insert a new block after the selected block(s).":["\u5728\u9009\u5b9a\u7684\u533a\u5757\u540e\u63d2\u5165\u4e00\u4e2a\u65b0\u7684\u533a\u5757\u3002"],"Keyboard Shortcuts":["\u952e\u76d8\u5feb\u6377\u952e"],"Thanks for testing Gutenberg!":["\u611f\u8c22\u60a8\u6d4b\u8bd5 Gutenberg\uff01"],"Help build Gutenberg":["\u5e2e\u52a9\u5efa\u8bbe Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["\u5982\u679c\u60a8\u60f3\u4e86\u89e3\u6709\u5173\u5982\u4f55\u6784\u5efa\u5176\u4ed6\u5757\u7684\u66f4\u591a\u4fe1\u606f\uff0c\u6216\u8005\u5982\u679c\u60a8\u6709\u5174\u8da3\u5e2e\u52a9\u5b8c\u6210\u9879\u76ee\uff0c\u8bf7\u8f6c\u5230 GitHub repository\u3002"],"The WordPress community":["Wordpress \u4ea4\u6d41\u793e\u533a"],"Code is Poetry":["\u4ee3\u7801\u5982\u8bd7\u6b4c\u822c\u7f8e\u5999"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["\u60a8\u53ef\u4ee5\u6784\u5efa\u4efb\u4f55\u60a8\u559c\u6b22\u7684\u5757\uff0c\u9759\u6001\u6216\u52a8\u6001\uff0c\u4fee\u9970\u6216\u6241\u5e73\u3002\u8fd9\u662f\u4e00\u4e2apullquote\u5757\uff1a"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg\uff0c2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["\u53ef\u89c6\u5316\u7f16\u8f91"],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],Galleries:["\u753b\u5eca"],"Images & Videos":["\u56fe\u50cf\u548c\u89c6\u9891"],"Text & Headings":["\u6587\u672c\u548c\u6807\u9898"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["\u4e00\u5f20\u56fe\u7247\u80dc\u8fc7\u5343\u8a00\u4e07\u8bed(\u767e\u95fb\u4e0d\u5982\u4e00\u89c1)"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["\u6b22\u8fce\u4f7f\u7528\u53e4\u817e\u5821\u7f16\u8f91\u5668"],"block name\x04More":["\u66f4\u591a"],"button to expand options\x04More":["\u66f4\u591a"],"Are you sure you want to unschedule this post?":["\u60a8\u786e\u5b9a\u8981\u53d6\u6d88\u8ba1\u5212\u6b64\u6587\u7ae0\u5417\uff1f"],"Alt Text (Alternative Text)":["Alt\u6587\u672c\uff08\u66ff\u6362\u6587\u672c\uff09"],"Reusable Block":["\u53ef\u91cd\u7528\u533a\u5757"],"Unique identifier for the object.":["\u5bf9\u8c61\u7684\u552f\u4e00\u8bc6\u522b\u7801\u3002"],"Untitled Reusable Block":["\u672a\u547d\u540d\u53ef\u91cd\u7528\u533a\u5757"],Small:[],"(%s: %s)":["\uff08%s\uff1a%s\uff09"],Reusable:["\u53ef\u91cd\u7528"],"(current %s: %s)":["\uff08\u5f53\u524d%s\uff1a%s\uff09"],"Remove from Reusable Blocks":["\u4ece\u53ef\u91cd\u7528\u533a\u5757\u4e2d\u79fb\u9664"],"Add to Reusable Blocks":["\u6dfb\u52a0\u5230\u53ef\u91cd\u7528\u533a\u5757"],"Keep as HTML":["\u7559\u4f5cHTML"],"Edit URL":["\u7f16\u8f91URL"],"Color Settings":["\u989c\u8272\u8bbe\u7f6e"],"The response is not a valid JSON response.":["\u6b64\u54cd\u5e94\u4e0d\u662f\u5408\u6cd5\u7684JSON\u54cd\u5e94\u3002"],"Editor publish":["\u7f16\u8f91\u5668\u53d1\u5e03"],Muted:["\u9759\u97f3"],"Video Settings":["\u89c6\u9891\u8bbe\u7f6e"],"recent comments":["\u6700\u65b0\u8bc4\u8bba"],"Latest Comments":["\u6700\u65b0\u8bc4\u8bba"],"Display Excerpt":["\u663e\u793a\u6458\u8981"],"Display Date":["\u663e\u793a\u65e5\u671f"],"Display Avatar":["\u663e\u793a\u5934\u50cf"],"Latest Comments Settings":["\u6700\u65b0\u8bc4\u8bba\u8bbe\u7f6e"],"Number of Comments":["\u8bc4\u8bba\u6570\u91cf"],"Background Opacity":["\u80cc\u666f\u900f\u660e\u5ea6"],Auto:["\u81ea\u52a8"],Preload:["\u9884\u52a0\u8f7d"],"Audio Settings":["\u97f3\u9891\u8bbe\u7f6e"],"Display a monthly archive of your posts.":["\u663e\u793a\u60a8\u7684\u6587\u7ae0\u7684\u6309\u6708\u5f52\u6863\u3002"],"Display as Dropdown":["\u663e\u793a\u4e3a\u4e0b\u62c9\u83dc\u5355"],"Show Post Counts":["\u663e\u793a\u6587\u7ae0\u8ba1\u6570"],"Archives Settings":["\u5b58\u6863\u8bbe\u7f6e"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u5e2e\u52a9"],"No comments to show.":["\u6ca1\u6709\u8bc4\u8bba\u53ef\u663e\u793a\u3002"],"%1$s on %2$s":["%1$s\uff0c\u4e8e%2$s"],"Select Post":["\u9009\u62e9\u6587\u7ae0"],"Select Week":["\u9009\u62e9\u5468\u6b21"],"Select Day":["\u9009\u62e9\u65e5\u671f"],"Select Month":["\u9009\u62e9\u6708\u4efd"],"Select Year":["\u9009\u62e9\u5e74\u4efd"],Archives:["\u6587\u7ae0\u5f52\u6863"],"Very dark gray":["\u6df1\u7070\u8272"],"Cyan bluish gray":["\u9752\u84dd\u7070\u8272"],"Very light gray":["\u6d45\u7070\u8272"],"Vivid cyan blue":["\u4eae\u9752\u84dd\u8272"],"Pale cyan blue":["\u6d45\u9752\u84dd\u8272"],"Vivid green cyan":["\u4eae\u9752\u7eff\u8272"],"Light green cyan":["\u6d45\u9752\u7eff\u8272"],"Luminous vivid amber":["\u8367\u5149\u7425\u73c0\u8272"],"Luminous vivid orange":["\u8367\u5149\u6a59\u8272"],"Vivid red":["\u4eae\u7ea2\u8272"],"Pale pink":["\u6d45\u7c89\u8272"],"Inline image":[],"Available block types":["\u53ef\u7528\u7684\u533a\u5757\u7c7b\u578b"],"Transform To:":["\u8f6c\u6362\u4e3a\uff1a"],"Remove Block":["\u79fb\u9664\u533a\u5757"],"Open publish panel":["\u6253\u5f00\u53d1\u5e03\u9762\u677f"],Dots:["\u70b9\u7ebf"],"Wide Line":["\u5bbd\u7ebf"],Large:["\u5927"],"Show download button":[],"Download button settings":[],"Link To":["\u94fe\u63a5\u5230"],"Text link settings":[],pdf:["pdf"],document:["\u6587\u6863"],"Copy URL":["\u590d\u5236URL"],"Write file name\u2026":["\u7f16\u5199\u6587\u4ef6\u540d\u2026"],"Edit file":["\u7f16\u8f91\u6587\u4ef6"],File:["\u6587\u4ef6"],"A single column within a columns block.":["\u591a\u680f\u533a\u5757\u4e2d\u7684\u4e00\u680f\u3002"],Column:["\u884c"],Outline:["\u8f6e\u5ed3"],Loop:["\u5faa\u73af"],Autoplay:["\u81ea\u52a8\u64ad\u653e"],"Playback Controls":["\u56de\u653e\u63a7\u5236"],"Close dialog":["\u5173\u95ed\u5bf9\u8bdd\u6846"],"Sorry, this file type is not permitted for security reasons.":["\u62b1\u6b49\uff0c\u7531\u4e8e\u5b89\u5168\u539f\u56e0\uff0c\u8fd9\u4e2a\u6587\u4ef6\u7c7b\u578b\u4e0d\u53d7\u652f\u6301\u3002"],"Disable tips":["\u7981\u7528\u8d34\u58eb"],"Got it":["\u77e5\u9053\u4e86"],"See next tip":["\u67e5\u770b\u4e0b\u4e00\u4e2a\u8d34\u58eb"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u5f53\u60a8\u51c6\u5907\u597d\u540e\uff0c\u8bf7\u63d0\u4ea4\u60a8\u7684\u5de5\u4f5c\u81f3\u590d\u5ba1\uff0c\u7136\u540e\u5176\u4ed6\u7f16\u8f91\u5c31\u53ef\u4ee5\u6279\u51c6\u60a8\u7684\u6587\u7ae0\u3002"],"Are you ready to submit for review?":["\u60a8\u51c6\u5907\u597d\u63d0\u4ea4\u590d\u5ba1\u4e86\u5417\uff1f"],"Replace image":["\u66f4\u6362\u56fe\u50cf"],"Remove image":[],"Error while uploading file %s to the media library.":["\u5728\u5c06\u6587\u4ef6%s\u4e0a\u4f20\u81f3\u5a92\u4f53\u5e93\u65f6\u51fa\u73b0\u9519\u8bef\u3002"],"This file exceeds the maximum upload size for this site.":["\u6b64\u6587\u4ef6\u8d85\u8fc7\u4e86\u672c\u7ad9\u70b9\u7684\u6700\u5927\u4e0a\u4f20\u5c3a\u5bf8\u3002"],"View the autosave":["\u67e5\u770b\u81ea\u52a8\u4fdd\u5b58"],"There is an autosave of this post that is more recent than the version below.":["\u6b64\u6587\u7ae0\u5b58\u5728\u6bd4\u4e0b\u5217\u7248\u672c\u66f4\u65b0\u7684\u81ea\u52a8\u4fdd\u5b58\u3002"],Autosaving:["\u6b63\u5728\u81ea\u52a8\u4fdd\u5b58"],"Enter URL here\u2026":["\u5728\u8fd9\u91cc\u8f93\u5165 URL\u2026"],"Pin to toolbar":["\u52a0\u5165\u5de5\u5177\u680f"],"Unpin from toolbar":["\u4ece\u5de5\u5177\u680f\u79fb\u9664"],"Insert a table \u2014 perfect for sharing charts and data.":["\u63d2\u5165\u8868\u683c\u2014\u2014\u5171\u4eab\u56fe\u8868\u548c\u6570\u636e\u7684\u5b8c\u7f8e\u9009\u9879\u3002"],"Fixed width table cells":["\u5b9a\u5bbd\u5355\u5143\u683c"],"Table Settings":["\u8868\u683c\u8bbe\u7f6e"],"Add text that respects your spacing and tabs, and also allows styling.":["\u8fd9\u91cc\u52a0\u5165\u7684\u6587\u672c\u4f1a\u5c0a\u91cd\u60a8\u7684\u7a7a\u767d\u548c\u5236\u8868\u7b26\uff0c\u60a8\u4e5f\u53ef\u4ee5\u683c\u5f0f\u5316\u8fd9\u4e9b\u6587\u672c\u3002"],"Display a list of your most recent posts.":["\u663e\u793a\u60a8\u7684\u6700\u65b0\u6587\u7ae0\u7684\u5217\u8868\u3002"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\u52a0\u5165\u7528\u6765\u663e\u793a\u5176\u4ed6\u7ad9\u70b9\u5185\u5bb9\u7684\u533a\u5757\uff0c\u5982Twitter\u3001Instagram\u6216YouTube\u3002"],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u52a0\u5165\u4e00\u4e2a\u663e\u793a\u591a\u680f\u5185\u5bb9\u7684\u533a\u5757\uff0c\u60a8\u53ef\u4ee5\u5411\u5176\u4e2d\u52a0\u5165\u4efb\u4f55\u60a8\u559c\u6b22\u7684\u5185\u5bb9\u533a\u5757\u3002"],"Error loading block: %s":["\u8f7d\u5165\u533a\u5757\u65f6\u53d1\u751f\u9519\u8bef\uff1a%s"],"Unknown error":["\u672a\u77e5\u9519\u8bef"],"Embed Handler":["\u5d4c\u5165\u5904\u7406\u7a0b\u5e8f"],"term\x04Remove %s":["\u79fb\u9664%s"],"Copy the permalink":["\u590d\u5236\u6c38\u4e45\u94fe\u63a5"],"Permalink copied":["\u5df2\u590d\u5236\u6c38\u4e45\u94fe\u63a5"],"Height in pixels":["\u9ad8\u5ea6\uff08\u50cf\u7d20\uff09"],"Spacer Settings":["\u7a7a\u767d\u8bbe\u7f6e"],Spacer:["\u7a7a\u767d"],"Toggle to show a large initial letter.":["\u5207\u6362\u663e\u793a\u5927\u578b\u9996\u5b57\u6bcd\u3002"],"Showing large initial letter.":["\u663e\u793a\u5927\u578b\u9996\u5b57\u6bcd\u3002"],"Name:":["\u540d\u79f0\uff1a"],"%1$s (%2$s of %3$s)":["%1$s\uff08%2$s/%3$s\uff09"],"Remove item":["\u79fb\u9664\u9879\u76ee"],"Color code: %s":["\u989c\u8272\u4ee3\u7801\uff1a%s"],"Skip to the selected block":["\u8df3\u8f6c\u5230\u9009\u5b9a\u7684\u533a\u5757"],"Publish\u2026":["\u53d1\u5e03\u2026"],"Schedule\u2026":["\u8ba1\u5212\u2026"],"Edit post permalink":["\u7f16\u8f91\u6587\u7ae0\u6c38\u4e45\u94fe\u63a5"],"Show Block Settings":["\u663e\u793a\u533a\u5757\u8bbe\u7f6e"],"Hide Block Settings":["\u9690\u85cf\u533a\u5757\u8bbe\u7f6e"],"Block settings closed":["\u533a\u5757\u8bbe\u7f6e\u5df2\u5173\u95ed"],"Close plugin":["\u5173\u95ed\u63d2\u4ef6"],"Link settings":[],Unlink:["\u79fb\u9664\u94fe\u63a5"],"Page break":["\u5206\u9875\u7b26"],pagination:["\u5206\u9875"],"next page":["\u4e0b\u4e00\u9875"],"Image Size":["\u56fe\u7247\u5c3a\u5bf8"],Height:["\u9ad8\u5ea6"],Width:["\u5bbd\u5ea6"],"Image Dimensions":["\u56fe\u50cf\u5c3a\u5bf8"],"Thumbnails are not cropped.":["\u7f29\u7565\u56fe\u672a\u88ab\u88c1\u5207\u3002"],"Thumbnails are cropped to align.":["\u7f29\u7565\u56fe\u5df2\u88ab\u88c1\u5207\u5230\u5bf9\u9f50\u3002"],"Media Library":["\u5a92\u4f53\u5e93"],Advanced:["\u9ad8\u7ea7"],"Add item":["\u6dfb\u52a0\u9879\u76ee"],"Reset the template":["\u91cd\u7f6e\u6a21\u677f"],"Keep it as is":["\u4fdd\u6301\u539f\u6837"],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u60a8\u7684\u6587\u7ae0\u7684\u5185\u5bb9\u4e0d\u5339\u914d\u6307\u5b9a\u7ed9\u60a8\u7684\u6587\u7ae0\u7c7b\u522b\u7684\u6a21\u677f\u3002"],"Resetting the template may result in loss of content, do you want to continue?":["\u91cd\u7f6e\u6a21\u677f\u53ef\u80fd\u4f1a\u5bfc\u81f4\u4e22\u5931\u5185\u5bb9\uff0c\u60a8\u5e0c\u671b\u7ee7\u7eed\u5417\uff1f"],"Document Statistics":["\u6587\u6863\u7edf\u8ba1"],"is now scheduled. It will go live on":["\u5df2\u88ab\u8ba1\u5212\uff0c\u5c06\u5728\u6b64\u65f6\u95f4\u53d1\u5e03\uff1a"],Scheduled:["\u5df2\u8ba1\u5212"],"Scheduling\u2026":["\u6b63\u5728\u8ba1\u5212\u2026"],"Code editor selected":["\u5df2\u9009\u62e9\u4ee3\u7801\u7f16\u8f91\u5668"],"Visual editor selected":["\u5df2\u9009\u62e9\u53ef\u89c6\u5316\u7f16\u8f91\u5668"],Plugins:["\u63d2\u4ef6"],"Custom Size":["\u81ea\u5b9a\u4e49\u5c3a\u5bf8"],"Layout Elements":["\u5e03\u5c40\u5143\u7d20"],"term\x04%s removed":["%s\u5df2\u79fb\u9664"],"term\x04%s added":["%s\u5df2\u6dfb\u52a0"],"imperative verb\x04Preview":["\u9884\u89c8"],"Block deleted.":["\u533a\u5757\u5df2\u5220\u9664\u3002"],"Block updated.":["\u533a\u5757\u5df2\u66f4\u65b0\u3002"],"Block created.":["\u533a\u5757\u5df2\u521b\u5efa\u3002"],"Trashing failed":["\u79fb\u52a8\u5230\u56de\u6536\u7ad9\u5931\u8d25"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View Post":["\u67e5\u770b\u6587\u7ae0"],"You have unsaved changes. If you proceed, they will be lost.":["\u60a8\u6709\u672a\u4fdd\u5b58\u7684\u4fee\u6539\u3002\u5982\u679c\u60a8\u7ee7\u7eed\uff0c\u8fd9\u4e9b\u4fee\u6539\u5c06\u4f1a\u4e22\u5931\u3002"],"Document Outline":["\u6587\u6863\u5927\u7eb2"],Paragraphs:["\u6bb5\u843d"],Headings:["\u6807\u9898"],Words:["\u5b57\u6570"],"Content structure":["\u5185\u5bb9\u7ed3\u6784"],Public:["\u516c\u5f00"],"Protected with a password you choose. Only those with the password can view this post.":["\u53d7\u60a8\u9009\u62e9\u7684\u5bc6\u7801\u4fdd\u62a4\uff0c\u53ea\u6709\u6301\u6709\u5bc6\u7801\u7684\u4eba\u58eb\u53ef\u67e5\u770b\u6b64\u6587\u7ae0\u3002"],"Password Protected":["\u5bc6\u7801\u4fdd\u62a4"],"Only visible to site admins and editors.":["\u53ea\u6709\u7ad9\u70b9\u7ba1\u7406\u5458\u548c\u7f16\u8f91\u53ef\u89c1\u3002"],Private:["\u79c1\u5bc6"],"Visible to everyone.":["\u6240\u6709\u4eba\u53ef\u89c1\u3002"],"Post Visibility":["\u6587\u7ae0\u53ef\u89c1\u6027"],"Would you like to privately publish this post now?":["\u60a8\u5e0c\u671b\u73b0\u5728\u79c1\u5bc6\u5730\u53d1\u5e03\u6b64\u6587\u7ae0\u5417\uff1f"],"Use a secure password":["\u4f7f\u7528\u5b89\u5168\u7684\u5bc6\u7801"],"Create password":["\u521b\u5efa\u5bc6\u7801"],"Move to Trash":[],"Parent Term":["\u7236\u9879\u76ee"],"Parent Category":["\u7236\u7ea7\u5206\u7c7b\u76ee\u5f55"],"Add new term":["\u6dfb\u52a0\u65b0\u9879\u76ee"],"Add new category":["\u6dfb\u52a0\u65b0\u5206\u7c7b"],Term:["\u9879\u76ee"],Tag:["\u6807\u7b7e"],"Add New Term":["\u6dfb\u52a0\u65b0\u9879\u76ee"],"Add New Tag":["\u6dfb\u52a0\u65b0\u6807\u7b7e"],"Switch to Draft":["\u5207\u6362\u5230\u8349\u7a3f"],"Are you sure you want to unpublish this post?":["\u60a8\u786e\u5b9a\u8981\u53d6\u6d88\u53d1\u5e03\u6b64\u6587\u7ae0\u5417\uff1f"],Immediately:["\u7acb\u5373"],"Save Draft":["\u4fdd\u5b58\u8349\u7a3f"],Saving:["\u6b63\u5728\u4fdd\u5b58"],"Publish:":["\u53d1\u5e03\uff1a"],"Visibility:":["\u53ef\u89c1\u6027\uff1a"],"Are you ready to publish?":["\u60a8\u51c6\u5907\u597d\u53d1\u5e03\u4e86\u5417\uff1f"],"Copy Link":["\u590d\u5236\u94fe\u63a5"],"What\u2019s next?":["\u73b0\u5728\u8981\u505a\u4ec0\u4e48\uff1f"],"is now live.":["\u5df2\u88ab\u53d1\u5e03\u3002"],Published:["\u5df2\u53d1\u5e03"],Schedule:["\u8ba1\u5212"],Update:["\u66f4\u65b0"],"Submit for Review":["\u63d0\u4ea4\u590d\u5ba1"],"Updating\u2026":["\u6b63\u5728\u66f4\u65b0\u2026"],"Publishing\u2026":["\u6b63\u5728\u53d1\u5e03\u2026"],"Allow Pingbacks & Trackbacks":["\u5141\u8bb8Pingback\u548cTrackback"],"Permalink:":["\u6c38\u4e45\u94fe\u63a5\uff1a"],"Pending Review":["\u7b49\u5f85\u590d\u5ba1"],"%d Revision":["%d\u4e2a\u4fee\u8ba2\u7248\u672c"],"Suggestion:":["\u63a8\u8350\uff1a"],"Post Format":["\u6587\u7ae0\u683c\u5f0f"],Chat:["\u804a\u5929"],Status:["\u72b6\u6001"],Standard:["\u6807\u51c6"],Aside:["\u65e5\u5fd7"],"Set Featured Image":[],"Learn more about manual excerpts":["\u4e86\u89e3\u5173\u4e8e\u4eba\u5de5\u6458\u8981\u7ec6\u8282"],"Write an excerpt (optional)":["\u64b0\u5199\u6458\u8981\uff08\u53ef\u9009\uff09"],"Allow Comments":["\u5141\u8bb8\u8bc4\u8bba"],"Template:":["\u6a21\u677f\uff1a"],"no parent":["\u65e0\u7236\u7ea7"],"no title":["\u65e0\u6807\u9898"],Order:["\u6392\u5e8f"],"No blocks found.":["\u672a\u627e\u5230\u533a\u5757\u3002"],"%d result found.":["\u627e\u5230%d\u4e2a\u7ed3\u679c\u3002"],Saved:["\u5df2\u4fdd\u5b58"],Embeds:["\u5d4c\u5165"],Blocks:["\u533a\u5757"],"Search for a block":["\u641c\u7d22\u533a\u5757"],"Add block":["\u6dfb\u52a0\u533a\u5757"],"Add %s":["\u6dfb\u52a0%s"],"Copy Error":["\u590d\u5236\u9519\u8bef"],"Copy Post Text":["\u590d\u5236\u6587\u7ae0\u6587\u672c"],"Attempt Recovery":["\u5c1d\u8bd5\u6062\u590d"],"The editor has encountered an unexpected error.":["\u7f16\u8f91\u5668\u9047\u5230\u4e86\u672a\u77e5\u9519\u8bef\u3002"],Undo:["\u64a4\u9500"],Redo:["\u91cd\u505a"],"(Multiple H1 headings are not recommended)":["\uff08\u4e0d\u63a8\u8350\u4f7f\u7528\u591a\u4e2aH1\u6807\u9898\uff09"],"(Your theme may already use a H1 for the post title)":["\uff08\u60a8\u7684\u4e3b\u9898\u53ef\u80fd\u5df2\u7ecf\u4e3a\u6587\u7ae0\u6807\u9898\u4f7f\u7528\u4e86H1\uff09"],"(Incorrect heading level)":["\uff08\u9519\u8bef\u7684\u6807\u9898\u7ea7\u522b\uff09"],"(Empty heading)":["\uff08\u7a7a\u6807\u9898\uff09"],"Block Styles":["\u533a\u5757\u6837\u5f0f"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\u60a8\u786e\u5b9a\u8981\u5220\u9664\u8fd9\u4e2a\u5171\u4eab\u533a\u5757\u5417\uff1f\n\n\u5b83\u5c06\u6c38\u4e45\u6027\u5730\u4ece\u4f7f\u7528\u5b83\u7684\u6240\u6709\u6587\u7ae0\u548c\u9875\u9762\u4e2d\u5220\u9664\u3002"],"Convert to Regular Block":["\u8f6c\u6362\u4e3a\u5e38\u89c4\u533a\u5757"],"More options":["\u66f4\u591a\u9009\u9879"],"Edit visually":["\u53ef\u89c6\u5316\u7f16\u8f91"],Duplicate:["\u590d\u5236"],"Blocks cannot be moved down as they are already at the bottom":["\u533a\u5757\u5df2\u5728\u6700\u5e95\uff0c\u4e0d\u80fd\u88ab\u4e0b\u79fb"],"Blocks cannot be moved up as they are already at the top":["\u533a\u5757\u5df2\u5728\u6700\u9876\uff0c\u4e0d\u80fd\u88ab\u4e0a\u79fb"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":[],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":[],"Block %s is the only block, and cannot be moved":["\u533a\u5757%s\u662f\u552f\u4e00\u7684\u533a\u5757\uff0c\u4e0d\u80fd\u88ab\u79fb\u52a8"],"Edit as HTML":["\u4f5c\u4e3aHTML\u7f16\u8f91"],"Convert to Blocks":["\u8f6c\u6362\u4e3a\u533a\u5757"],"Block: %s":["\u533a\u5757\uff1a%s"],"This block has encountered an error and cannot be previewed.":["\u6b64\u533a\u5757\u9047\u5230\u4e86\u4e00\u4e2a\u9519\u8bef\uff0c\u4e0d\u80fd\u88ab\u9884\u89c8\u3002"],"No block selected.":["\u672a\u9009\u62e9\u533a\u5757\u3002"],"Transform into:":["\u8f6c\u6362\u81f3\uff1a"],Remove:["\u79fb\u9664"],"Find original":["\u67e5\u627e\u539f\u4ef6"],"Copy All Content":["\u590d\u5236\u6240\u6709\u5185\u5bb9"],"Copied!":["\u5df2\u590d\u5236\uff01"],"Additional settings are now available in the Editor block settings sidebar":["\u989d\u5916\u7684\u8bbe\u7f6e\u5728\u7f16\u8f91\u5668\u533a\u5757\u8bbe\u7f6e\u4fa7\u680f\u4e2d\u53ef\u7528"],Visibility:["\u53ef\u89c1\u6027"],"Status & Visibility":["\u72b6\u6001\u4e0e\u53ef\u89c1\u6027"],"Page Attributes":["\u9875\u9762\u5c5e\u6027"],Block:["\u533a\u5757"],Document:["\u6587\u6863"],"Featured Image":["\u7279\u8272\u56fe\u50cf"],"Close settings":["\u5173\u95ed\u8bbe\u7f6e"],"Editor content":["\u7f16\u8f91\u5668\u5185\u5bb9"],Tools:["\u5de5\u5177"],Editor:["\u7f16\u8f91\u5668"],"Code Editor":["\u4ee3\u7801\u7f16\u8f91\u5668"],"Visual Editor":["\u53ef\u89c6\u5316\u7f16\u8f91\u5668"],"Editor top bar":["\u7f16\u8f91\u9876\u680f"],Settings:["\u8bbe\u7f6e"],Reset:["\u91cd\u7f6e"],"Dismiss this notice":["\u5ffd\u7565\u6b64\u901a\u77e5"],"Item removed.":["\u9879\u76ee\u5df2\u79fb\u9664\u3002"],"Item added.":["\u9879\u76ee\u5df2\u6dfb\u52a0\u3002"],"Drop files to upload":["\u62d6\u6587\u4ef6\u81f3\u6b64\u53ef\u4e0a\u4f20"],PM:["\u4e0b\u5348"],AM:["\u4e0a\u5348"],"An unknown error occurred.":["\u53d1\u751f\u4e86\u672a\u77e5\u9519\u8bef\u3002"],"No results.":["\u6ca1\u6709\u7ed3\u679c\u3002"],"%d result found, use up and down arrow keys to navigate.":["\u627e\u5230%d\u4e2a\u7ed3\u679c\uff0c\u4f7f\u7528\u4e0a\u4e0b\u65b9\u5411\u952e\u6765\u5bfc\u822a\u3002"],"(no title)":["(\u65e0\u6807\u9898)"],URL:["URL"],Submit:["\u63d0\u4ea4"],Close:["\u5173\u95ed"],"Insert link":[],"Edit link":[],Link:["\u94fe\u63a5"],Strikethrough:["\u5220\u9664\u7ebf"],Italic:["\u659c\u4f53"],Bold:["\u7c97\u4f53"],"Remove link":[],"Number of items":["\u9879\u76ee\u6570\u91cf"],All:["\u5168\u90e8"],Category:["\u7c7b\u522b"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to Newest":["\u4ece\u65e7\u5230\u65b0"],"Newest to Oldest":["\u4ece\u65b0\u5230\u65e7"],"Order by":["\u6392\u5e8f"],Select:["\u9009\u62e9"],"Select or Upload Media":["\u9009\u62e9\u6216\u4e0a\u4f20\u5a92\u4f53"],Video:["\u89c6\u9891"],"Edit video":["\u7f16\u8f91\u89c6\u9891"],"Write\u2026":["\u7f16\u5199\u2026"],poetry:["\u8bd7\u6b4c"],Verse:["\u8bd7\u53e5"],"New Column":["\u65b0\u5217"],"Delete Column":["\u5220\u9664\u884c"],"Add Column After":["\u63d2\u5165\u884c\uff08\u4e4b\u540e\uff09"],"Add Column Before":["\u63d2\u5165\u884c\uff08\u4e4b\u524d\uff09"],"Delete Row":["\u5220\u9664\u5217"],"Add Row After":["\u63d2\u5165\u5217\uff08\u4e4b\u540e\uff09"],"Add Row Before":["\u63d2\u5165\u5217\uff08\u4e4b\u524d\uff09"],"Edit table":[],Table:["\u8868\u683c"],"Write subheading\u2026":["\u7f16\u5199\u526f\u6807\u9898\u2026"],"Write shortcode here\u2026":["\u5728\u6b64\u7f16\u5199\u77ed\u4ee3\u7801\u2026"],Shortcode:["\u77ed\u4ee3\u7801"],divider:["\u5206\u9694\u7b26"],"horizontal-line":["\u6a2a\u7ebf"],Separator:["\u5206\u9694\u7b26"],Quote:["\u5f15\u8bed"],"Write citation\u2026":["\u7f16\u5199\u5f15\u7528\u2026"],"Write quote\u2026":["\u7f16\u5199\u5f15\u6587\u2026"],Pullquote:["\u5f15\u6587"],"Write preformatted text\u2026":["\u7f16\u5199\u9884\u683c\u5f0f\u5316\u6587\u672c\u2026"],Preformatted:["\u9884\u683c\u5f0f\u5316\u7684"],text:["\u6587\u672c"],Paragraph:["\u6bb5\u843d"],"Font Size":["\u5b57\u53f7"],"Drop Cap":["\u9996\u5b57\u4e0b\u6c89"],"Text Settings":["\u6587\u672c\u8bbe\u7f6e"],"Read more":["\u9605\u8bfb\u66f4\u591a"],"Write list\u2026":["\u7f16\u5199\u5217\u8868\u2026"],"numbered list":["\u7f16\u53f7\u5217\u8868"],"ordered list":["\u6709\u5e8f\u5217\u8868"],"bullet list":["\u9879\u76ee\u7b26\u53f7\u5217\u8868"],"Indent list item":["\u589e\u52a0\u5217\u8868\u9879\u76ee\u7f29\u8fdb\u91cf"],"Outdent list item":["\u51cf\u5c11\u5217\u8868\u9879\u76ee\u7f29\u8fdb\u91cf"],"Convert to ordered list":["\u8f6c\u6362\u4e3a\u6709\u5e8f\u5217\u8868"],"Convert to unordered list":["\u8f6c\u6362\u4e3a\u65e0\u5e8f\u5217\u8868"],List:["\u5217\u8868"],"recent posts":["\u6700\u65b0\u6587\u7ae0"],"No posts found.":["\u672a\u627e\u5230\u6587\u7ae0\u3002"],"Latest Posts":["\u6700\u65b0\u6587\u7ae0"],"Display post date":["\u663e\u793a\u6587\u7ae0\u65e5\u671f"],"Grid view":[],"List view":[],photo:["\u7167\u7247"],"Image Settings":["\u56fe\u50cf\u8bbe\u7f6e"],Image:["\u56fe\u50cf"],Preview:["\u9884\u89c8"],embed:["\u5d4c\u5165"],"Custom HTML":["\u81ea\u5b9a\u4e49HTML"],subtitle:["\u526f\u6807\u9898"],title:["\u6807\u9898"],Heading:["\u6807\u9898"],"Write heading\u2026":["\u7f16\u5199\u6807\u9898\u2026"],"Heading %d":["\u6807\u9898%d"],Level:["\u7ea7\u522b"],"Heading Settings":["\u6807\u9898\u8bbe\u7f6e"],photos:["\u7167\u7247"],images:["\u56fe\u50cf"],"Remove Image":["\u79fb\u9664\u56fe\u50cf"],None:["\u65e0"],"Media File":["\u5a92\u4f53\u6587\u4ef6"],"Attachment Page":["\u9644\u4ef6\u9875\u9762"],"Crop Images":["\u88c1\u5207\u56fe\u50cf"],"Gallery Settings":["\u76f8\u518c\u8bbe\u7f6e"],Gallery:["\u753b\u5eca"],Classic:["\u7ecf\u5178"],video:["\u89c6\u9891"],audio:["\u97f3\u9891"],music:["\u97f3\u4e50"],image:["\u56fe\u50cf"],blog:["\u535a\u5ba2"],post:["\u6587\u7ae0"],"Embedded content from %s":["\u5d4c\u5165\u6765\u81ea%s\u7684\u5185\u5bb9"],"Enter URL to embed here\u2026":["\u952e\u5165\u8981\u5728\u6b64\u5d4c\u5165\u7684URL\u2026"],"%s URL":["%sURL"],"Embedding\u2026":["\u5d4c\u5165\u4e2d\u2026"],"Write title\u2026":["\u7f16\u5199\u6807\u9898\u2026"],"Fixed Background":["\u56fa\u5b9a\u80cc\u666f"],"Edit image":["\u7f16\u8f91\u56fe\u50cf"],Columns:["\u680f\u76ee"],Experiments:[],Code:["\u4ee3\u7801"],"Write code\u2026":["\u7f16\u5199\u4ee3\u7801\u2026"],Categories:["\u5206\u7c7b\u76ee\u5f55"],"Show Hierarchy":["\u663e\u793a\u5c42\u6b21\u7ed3\u6784"],"Show post counts":["\u663e\u793a\u6587\u7ae0\u6570\u76ee"],"Categories Settings":["\u5206\u7c7b\u8bbe\u7f6e"],"Add text\u2026":["\u6dfb\u52a0\u6587\u672c\u2026"],Button:["\u6309\u94ae"],Apply:["\u5e94\u7528"],"Text Color":["\u6587\u672c\u989c\u8272"],"Background Color":["\u80cc\u666f\u989c\u8272"],"Block has been deleted or is unavailable.":["\u533a\u5757\u5df2\u88ab\u5220\u9664\u6216\u4e0d\u53ef\u7528\u3002"],"Reusable Blocks":["\u53ef\u91cd\u7528\u533a\u5757"],Cancel:["\u53d6\u6d88"],Edit:["\u7f16\u8f91"],"Edit audio":["\u7f16\u8f91\u97f3\u9891"],"Write caption\u2026":["\u7f16\u5199\u8bf4\u660e\u2026"],"Use URL":["\u4f7f\u7528 URL"],Audio:["\u97f3\u9891"],Upload:["\u4e0a\u4f20"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML\u951a\u70b9"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u6b64\u989c\u8272\u7ec4\u5408\u53ef\u80fd\u4e0d\u4fbf\u9605\u8bfb\uff0c\u8bf7\u5c1d\u8bd5\u4f7f\u7528\u8f83\u6d45\u7684\u80cc\u666f\u989c\u8272\u548c/\u6216\u8f83\u6df1\u7684\u6587\u672c\u989c\u8272\u3002"],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u6b64\u989c\u8272\u7ec4\u5408\u53ef\u80fd\u4e0d\u4fbf\u9605\u8bfb\uff0c\u8bf7\u5c1d\u8bd5\u4f7f\u7528\u8f83\u6df1\u7684\u80cc\u666f\u989c\u8272\u548c/\u6216\u8f83\u6d45\u7684\u6587\u672c\u989c\u8272\u3002"],Clear:["\u6e05\u7a7a"],"Custom color picker":["\u81ea\u5b9a\u4e49\u989c\u8272\u9009\u62e9\u5668"],"Color: %s":["\u989c\u8272\uff1a%s"],"Full Width":[],"Wide Width":[],Widgets:["\u5c0f\u5de5\u5177"],Formatting:["\u683c\u5f0f"],"Common Blocks":["\u5e38\u7528\u533a\u5757"],"Align Right":[],"Align Center":[],"Align Left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["\u4ece 1440 \u5e74\u5f00\u59cb\u6253\u5370\u3002\u8fd9\u662f\u6838\u5fc3\u4e2d\u65b0\u7684\u57fa\u4e8e\u533a\u5757\u7684\u7f16\u8f91\u5668\u7684\u5f00\u53d1\u63d2\u4ef6\u3002"],"Add title":["\u6dfb\u52a0\u6807\u9898"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":[],Author:["\u4f5c\u8005"],Slug:["\u522b\u540d"],Discussion:["\u8ba8\u8bba"],"Custom Fields":["\u81ea\u5b9a\u4e49\u5b57\u6bb5"],Excerpt:["\u6458\u8981"],Publish:["\u53d1\u5e03"],Metadata:["\u5143\u6570\u636e"],Save:["\u4fdd\u5b58"],Documentation:["\u6587\u6863"],"Select Category":["\u9009\u62e9\u5206\u7c7b\u76ee\u5f55"],"(Untitled)":["\uff08\u65e0\u6807\u9898\uff09"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Gutenberg \u56e2\u961f"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["\u6f14\u793a"],"%s ago":["%s \u4e4b\u524d"],"Block style name must be a string.":[]}},871,[]); +__d(function(e,t,o,a,i,r,s){i.exports={"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["//\u300c\u5340\u584a\u300d\u662f\u7528\u4f86\u8aaa\u660e\u6a19\u8a18\u55ae\u5143\n// \u7d44\u5408\u5728\u4e00\u8d77\u6642\uff0c\n// \u5728\u9801\u9762\u6240\u5f62\u6210\u7684\u5167\u5bb9\n// \u6216\u7248\u9762\u914d\u7f6e\u7684\u62bd\u8c61\u8a5e\u5f59\u3002\nregisterBlockType( name, settings );"],"You are probably offline.":["\u9019\u500b\u7db2\u7ad9\u76ee\u524d\u53ef\u80fd\u8655\u65bc\u96e2\u7dda\u72c0\u614b\u3002"],"Justify items right":["\u9805\u76ee\u9760\u53f3\u5206\u6563\u5c0d\u9f4a"],"Justify items center":["\u9805\u76ee\u7f6e\u4e2d\u5206\u6563\u5c0d\u9f4a"],"Justify items left":["\u9805\u76ee\u9760\u5de6\u5206\u6563\u5c0d\u9f4a"],"Change items justification":["\u8b8a\u66f4\u9805\u76ee\u5206\u6563\u5c0d\u9f4a\u65b9\u5f0f"],"The media file has been replaced":["\u5a92\u9ad4\u6a94\u6848\u5df2\u66f4\u63db\u3002"],Replace:["\u66f4\u63db"],"Choose pattern":["\u9078\u53d6\u6b04\u4f4d\u914d\u7f6e"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["\u76ee\u524d\u70ba\u7de8\u8f2f\u6a21\u5f0f\u3002\u5982\u9700\u8fd4\u56de\u5c0e\u89bd\u6a21\u5f0f\uff0c\u8acb\u6309\u4e0b Esc/Escape \u9375\u3002"],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["\u76ee\u524d\u70ba\u5c0e\u89bd\u6a21\u5f0f\uff0c\u8acb\u4f7f\u7528 Tab \u9375\u5728\u5404\u500b\u5340\u584a\u4e2d\u5207\u63db\u3002\u5982\u9700\u7d50\u675f\u5c0e\u89bd\u6a21\u5f0f\u4e26\u7de8\u8f2f\u9078\u53d6\u7684\u5340\u584a\uff0c\u8acb\u6309\u4e0b Enter \u9375\u3002"],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["\u4f7f\u7528\u5411\u5de6\u9375\u53ca\u5411\u53f3\u9375\u6216\u4ee5\u6e38\u6a19\u62d6\u653e\u9032\u884c\u8b8a\u66f4\u6f38\u5c64\u8272\u5f69\u4f4d\u7f6e\u3002\u6309\u4e0b\u6309\u9215\u4fbf\u53ef\u8b8a\u66f4\u8272\u5f69\u6216\u79fb\u9664\u63a7\u5236\u9ede\u3002"],"Gradient control point at position %1$s with color code %2$s.":["\u5728\u4f4d\u7f6e %1$s\u3001\u8272\u5f69\u4ee3\u78bc\u70ba %2$s \u7684\u6f38\u5c64\u8272\u5f69\u63a7\u5236\u9ede\u3002"],"Preset Size":["\u9810\u8a2d\u5927\u5c0f"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["[\u5de5\u5177] \u70ba\u9078\u53d6\u53ca\u7de8\u8f2f\u5340\u584a\u63d0\u4f9b\u4e0d\u540c\u7684\u4e92\u52d5\u65b9\u5f0f\u3002\u5982\u9700\u9078\u53d6\u5340\u584a\uff0c\u8acb\u6309\u4e0b Escape/ESC \u9375\uff1b\u5982\u9700\u8fd4\u56de\u7de8\u8f2f\u6a21\u5f0f\uff0c\u8acb\u6309\u4e0b Enter \u9375\u3002"],"Open Media Library":["\u958b\u555f\u5a92\u9ad4\u5eab"],Next:["\u4e0b\u4e00\u9801"],Previous:["\u4e0a\u4e00\u9801"],Finish:["\u5b8c\u6210"],"Page %1$d of %2$d":["\u7b2c %1$d \u9801\uff0c\u7e3d\u8a08 %2$d \u9801"],"Guide controls":["\u6307\u5357\u63a7\u5236\u9805"],"Remove Control Point":["\u79fb\u9664\u63a7\u5236\u9ede"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["\u6bcf\u4e00\u7a2e\u5340\u584a\u90fd\u6709\u5c08\u5c6c\u7684\u8a2d\u5b9a\u63a7\u5236\u9805\uff0c\u85c9\u4ee5\u8b8a\u66f4\u5982\u8272\u5f69\u3001\u5bec\u5ea6\u53ca\u5c0d\u9f4a\u65b9\u5f0f\u7b49\u8a2d\u5b9a\uff1b\u9078\u53d6\u4e0d\u540c\u7684\u5340\u584a\uff0c\u4fbf\u6703\u81ea\u52d5\u986f\u793a\u5c0d\u61c9\u7684\u8a2d\u5b9a\u3002"],"Make each block your own":["\u81ea\u8a02\u5340\u584a\u7b26\u5408\u7db2\u7ad9\u9700\u6c42"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["\u5728 WordPress \u7de8\u8f2f\u5668\u4e2d\uff0c\u6bcf\u500b\u6bb5\u843d\u3001\u6bcf\u5f35\u5716\u7247\u6216\u6bcf\u500b\u8996\u8a0a\u90fd\u6703\u4ee5\u4e0d\u540c\u5167\u5bb9\u300c\u5340\u584a\u300d\u5448\u73fe\u3002"],"ADD MEDIA":["\u65b0\u589e\u5a92\u9ad4"],"All of the blocks available to you live in the Block Library. You\u2019ll find it wherever you see the icon.":["\u5728 [\u5340\u584a\u5eab] \u4e2d\u6709\u76ee\u524d\u5168\u90e8\u53ef\u7528\u7684\u5340\u584a\u3002\u53ea\u8981\u770b\u5230 \u5716\u793a\u4fbf\u53ef\u4ee5\u627e\u5230\u5340\u584a\u5eab\u3002"],"Get to know the Block Library":["\u77ad\u89e3\u5340\u584a\u5eab"],"Welcome Guide":["\u6b61\u8fce\u6307\u5357"],"Enable Page Templates":["\u555f\u7528 [\u9801\u9762\u7bc4\u672c]"],"Page Templates":["\u9801\u9762\u7bc4\u672c"],"Enable Full Site Editing Demo Templates":["\u555f\u7528 [\u5168\u7ad9\u7de8\u8f2f\u793a\u7bc4\u7bc4\u672c]"],"Full Site Editing Demo Templates":["\u5168\u7ad9\u7de8\u8f2f\u793a\u7bc4\u7bc4\u672c"],"Welcome to the Block Editor":["\u6b61\u8fce\u4f7f\u7528\u5340\u584a\u7de8\u8f2f\u5668"],"Get started":["\u958b\u59cb\u4f7f\u7528"],inserter:["\u63d2\u5165\u5668"],"Post Title":["\u6587\u7ae0\u6a19\u984c"],"Add nofollow to link":["\u5c07 nofollow \u5c6c\u6027\u503c\u52a0\u5165\u9023\u7d50"],"Link Settings":["\u9023\u7d50\u8a2d\u5b9a"],"Add Submenu":["\u65b0\u589e\u5b50\u9078\u55ae"],"Add link\u2026":["\u65b0\u589e\u9023\u7d50..."],Dark:["\u6df1\u8272"],Light:["\u6dfa\u8272"],recording:["\u9304\u97f3"],podcast:["Podcast"],sound:["\u8072\u97f3"],"Array of instance changes":["\u57f7\u884c\u500b\u9ad4\u8b8a\u66f4\u7684\u9663\u5217"],"Current widget instance":["\u76ee\u524d\u7684\u5c0f\u5de5\u5177\u57f7\u884c\u500b\u9ad4"],"Template parts to include in your templates.":["\u8981\u7d0d\u5165\u76ee\u524d\u7bc4\u672c\u7684\u7bc4\u672c\u7d44\u4ef6\u3002"],"Template parts list":["\u7bc4\u672c\u7d44\u4ef6\u6e05\u55ae"],"Template parts list navigation":["\u7bc4\u672c\u7d44\u4ef6\u6e05\u55ae\u6aa2\u8996"],"Filter template parts list":["\u7be9\u9078\u7bc4\u672c\u7d44\u4ef6\u6e05\u55ae"],"Uploaded to this template part":["\u5df2\u95dc\u806f\u81f3\u9019\u500b\u7bc4\u672c\u7d44\u4ef6"],"Insert into template part":["\u63d2\u5165\u81f3\u7bc4\u672c\u7d44\u4ef6"],"Template part archives":["\u7bc4\u672c\u7d44\u4ef6\u5f59\u6574"],"No template parts found in Trash.":["\u5728\u56de\u6536\u6876\u4e2d\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u7bc4\u672c\u7d44\u4ef6\u3002"],"No template parts found.":["\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u7bc4\u672c\u7d44\u4ef6\u3002"],"Parent Template Part:":["\u4e0a\u5c64\u7bc4\u672c\u7d44\u4ef6:"],"Search Template Parts":["\u641c\u5c0b\u7bc4\u672c\u7d44\u4ef6"],"All Template Parts":["\u5168\u90e8\u7bc4\u672c\u7d44\u4ef6"],"View Template Part":["\u6aa2\u8996\u7bc4\u672c\u7d44\u4ef6"],"Edit Template Part":["\u7de8\u8f2f\u7bc4\u672c\u7d44\u4ef6"],"New Template Part":["\u65b0\u589e\u7bc4\u672c\u7d44\u4ef6"],"Add New Template Part":["\u65b0\u589e\u7bc4\u672c\u7d44\u4ef6"],"Template Part\x04Add New":["\u65b0\u589e\u7bc4\u672c\u7d44\u4ef6"],"Admin Menu text\x04Template Parts":["\u7bc4\u672c\u7d44\u4ef6"],"Template Part":["\u7bc4\u672c\u7d44\u4ef6"],"Template Parts":["\u7bc4\u672c\u7d44\u4ef6"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["\u6211\u672c\u695a\u72c2\u4eba\uff0c\n\t\u9cf3\u6b4c\u7b11\u5b54\u4e18\n\u624b\u6301\u7da0\u7389\u6756\uff0c\n\u671d\u5225\u9ec3\u9db4\u6a13\u3002\n\u4e94\u5dbd\u5c0b\u4ed9\u4e0d\u8fad\u9060\uff0c\n \u4e00\u751f\u597d\u5165\u540d\u5c71\u904a\u3002"],Navigation:["\u5c0e\u89bd"],"Loading Navigation\u2026":["\u6b63\u5728\u8f09\u5165\u5c0e\u89bd..."],"Navigation Structure":["\u5c0e\u89bd\u7d50\u69cb"],"Create empty":["\u5efa\u7acb\u7a7a\u767d\u9078\u55ae"],"Create from all top pages":["\u4f7f\u7528\u5168\u90e8\u6700\u4e0a\u5c64\u9801\u9762\u5efa\u7acb\u9078\u55ae"],"Create a Navigation from all existing pages, or create an empty one.":["\u4f7f\u7528\u5168\u90e8\u73fe\u6709\u9801\u9762\u4ee5\u5efa\u7acb\u9078\u55ae\uff0c\u6216\u5efa\u7acb\u7a7a\u767d\u9078\u55ae\u3002"],"Navigation Link":["\u5c0e\u89bd\u9023\u7d50"],"(Note: many devices and browsers do not display this text.)":["(\u8acb\u6ce8\u610f\uff0c\u8a31\u591a\u88dd\u7f6e\u53ca\u700f\u89bd\u5668\u4e0d\u6703\u986f\u793a\u9019\u9805\u6587\u5b57\u5167\u5bb9)"],"Describe the role of this image on the page.":["\u8acb\u8f38\u5165\u5716\u7247\u6a19\u984c\u3002"],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["\u5728\u5168\u90e8\u87a2\u5e55\u5c3a\u5bf8\u4f7f\u7528\u76f8\u540c\u8a2d\u5b9a\u503c\u6216\u4e0d\u540c\u87a2\u5e55\u5c3a\u5bf8\u4f7f\u7528\u500b\u5225\u8a2d\u5b9a\u9593\u9032\u884c\u5207\u63db\u3002"],"Use the same %s on all screensizes.":["\u5168\u90e8\u87a2\u5e55\u5c3a\u5bf8\u4f7f\u7528 [%s] \u8a2d\u5b9a\u3002"],"Large screens":["\u5927\u578b\u87a2\u5e55"],"Medium screens":["\u4e2d\u578b\u87a2\u5e55"],"Small screens":["\u5c0f\u578b\u87a2\u5e55"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\x04Controls the %1$s property for %2$s viewports.":["\u63a7\u5236 [%2$s] \u6aa2\u8996\u5340\u7684 %1$s \u5c6c\u6027\u3002"],Change:["\u8b8a\u66f4"],"Currently selected":["\u76ee\u524d\u9078\u53d6\u7684\u9805\u76ee"],"Search or type url":["\u641c\u5c0b\u6216\u8f38\u5165\u7db2\u5740"],"Press ENTER to add this link":["\u6309\u4e0b Enter \u9375\u4ee5\u65b0\u589e\u9019\u500b\u9023\u7d50"],"Currently selected link settings":["\u76ee\u524d\u9078\u53d6\u7684\u9023\u7d50\u8a2d\u5b9a"],"Generic label for block inserter button\x04Add block":["\u65b0\u589e\u5340\u584a"],"directly add the only allowed block\x04Add %s":["\u65b0\u589e [%s] \u5340\u584a"],"%s block added":["[%s] \u5340\u584a\u5df2\u65b0\u589e"],"Move %s":["%s\u79fb\u52d5"],"Extra Large":["\u7279\u5927\u578b\u5c3a\u5bf8"],"Block breadcrumb":["\u5340\u584a\u5c0e\u89bd\u6a19\u8a18"],"Site Title":["\u7db2\u7ad9\u6a19\u984c"],"Open Colors Selector":["\u958b\u555f\u8272\u5f69\u9078\u53d6\u5668"],"Overlay Gradient":["\u8986\u758a\u6f38\u5c64"],"Templates list":["\u7bc4\u672c\u6e05\u55ae"],"Templates list navigation":["\u7bc4\u672c\u6e05\u55ae\u5c0e\u89bd"],"Filter templates list":["\u7be9\u9078\u7bc4\u672c\u6e05\u55ae"],"Uploaded to this template":["\u5df2\u95dc\u806f\u81f3\u9019\u500b\u7bc4\u672c"],"Insert into template":["\u63d2\u5165\u81f3\u7bc4\u672c"],"Template archives":["\u7bc4\u672c\u5f59\u6574"],"No templates found in Trash.":["\u5728\u56de\u6536\u6876\u4e2d\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u7bc4\u672c\u3002"],"No templates found.":["\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u7bc4\u672c\u3002"],"Parent Template:":["\u4e0a\u5c64\u7bc4\u672c:"],"Search Templates":["\u641c\u5c0b\u7bc4\u672c"],"All Templates":["\u5168\u90e8\u7bc4\u672c"],"View Template":["\u6aa2\u793a\u7bc4\u672c"],"Edit Template":["\u7de8\u8f2f\u7bc4\u672c"],"New Template":["\u65b0\u589e\u7bc4\u672c"],"Add New Template":["\u65b0\u589e\u7bc4\u672c"],"Template\x04Add New":["\u65b0\u589e\u7bc4\u672c"],"Admin Menu text\x04Templates":["\u7bc4\u672c"],Template:["\u7bc4\u672c"],"No matching template found":["\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u7bc4\u672c"],"Gradient: %s":["\u6f38\u5c64\u8272\u5f69: %s"],"Gradient code: %s":["\u6f38\u5c64\u8272\u5f69\u4ee3\u78bc: %s"],"All content copied.":["\u5168\u90e8\u5167\u5bb9\u5df2\u5b8c\u6210\u8907\u88fd\u3002"],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["\u5a92\u9ad4\u4e0a\u50b3\u5931\u6557\u3002\u5982\u679c\u9019\u662f\u7167\u7247\u6216\u5927\u578b\u5c3a\u5bf8\u5716\u7247\uff0c\u8acb\u5148\u7e2e\u5c0f\u5c3a\u5bf8\u518d\u4e0a\u50b3\u3002"],Gradient:["\u6f38\u5c64\u8272\u5f69"],"Gradient Presets":["\u6f38\u5c64\u8272\u5f69\u9810\u8a2d\u8a2d\u5b9a"],"No Preview Available.":["\u7121\u6cd5\u63d0\u4f9b\u9810\u89bd\u3002"],Midnight:["\u5348\u591c\u85cd"],"Electric grass":["\u96fb\u5149\u7da0"],"Pale ocean":["\u6d77\u6d0b\u85cd"],"Luminous dusk":["\u66ae\u8272\u9ec3"],"Blush bordeaux":["\u6ce2\u723e\u591a\u7d05"],"Blush light purple":["\u6dfa\u7d2b\u7d05\u8272"],"Cool to warm spectrum":["\u51b7\u6696\u5149\u8b5c"],"Very light gray to cyan bluish gray":["\u4eae\u7070\u8272\u81f3\u9752\u85cd\u7070\u8272"],"Luminous vivid orange to vivid red":["\u4eae\u9bae\u6a58\u8272\u81f3\u9bae\u7d05\u8272"],"Luminous vivid amber to luminous vivid orange":["\u4eae\u9bae\u7425\u73c0\u8272\u81f3\u4eae\u9bae\u6a58\u8272"],"Light green cyan to vivid green cyan":["\u4eae\u7da0\u9752\u8272\u81f3\u9bae\u7da0\u9752\u8272"],"Vivid cyan blue to vivid purple":["\u9bae\u9752\u85cd\u8272\u81f3\u9bae\u7d2b\u8272"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["2018 \u5e74 12 \u6708 6 \u65e5"],"February 21, 2019":["2019 \u5e74 2 \u6708 21 \u65e5"],"May 7, 2019":["2019 \u5e74 5 \u6708 7 \u65e5"],"Release Date":["\u767c\u4f48\u65e5\u671f"],"Jazz Musician":["\u7235\u58eb\u6a02\u624b"],Version:["\u767c\u4f48\u7248\u672c"],"Six.":["\u7b2c\u516d\u500b\u5340\u584a"],"Five.":["\u7b2c\u4e94\u500b\u5340\u584a"],"Four.":["\u7b2c\u56db\u500b\u5340\u584a"],"Three.":["\u7b2c\u4e09\u500b\u5340\u584a"],"Two.":["\u7b2c\u4e8c\u500b\u5340\u584a"],"One.":["\u7b2c\u4e00\u500b\u5340\u584a"],"One of the hardest things to do in technology is disrupt yourself.":["\u6280\u8853\u4e0a\u6700\u96e3\u9054\u6210\u7684\u4e00\u4ef6\u4e8b\u5c31\u662f\u6253\u65b7\u81ea\u5df1\u3002"],"All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["\u5f35\u958b\u4fbf\u662f\u98a8\u7684\u5e8a\u8925\u2014\u5de8\u792e\u751f\u93fd\u3002\u800c\u6211\u4e0d\u77e5\u5982\u4f55\u65bc\u785d\u7159\u75be\u8d70\u7684\u6b77\u53f2\u4e2d\uff0c\u51b7\u975c\u8e42\u8eaa\u5979\u90a3\u4e00\u8972\u85cd\u82b1\u7684\u65b0\u8863\u670d\u3002\u6709\u4e00\u4efd\u71e6\u721b\u6975\u4ee4\u6211\u6b23\u559c\uff0c\u6b50\u6d32\u7684\u9577\u528d\u6597\u81bd\u6311\u7834\u5dd4\u5012\u7684\u80f8\u895f\u3002\u6211\u5011\u62fe\u7d1a\u800c\u4e0a\u3002"],"Window, very small in the distance, illuminated.":["\u5c0d\u65b9\u5df2\u7d93\u9032\u5165\u4e86\u71e0\u71b1\u7684\u87ec\u8072\uff0c\u81ea\u77f3\u7d1a\u4e0b\u4ef0\u8996\uff0c\u5371\u5371\u95ca\u8449\u6a39\uff0c"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)":["\u694a\u7267 - \u71b1\u862d\u906e\u57ce - 1975 \u5e74"],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["\u9de6\u9def
\u5b89\u975c\u7121\u8072\u7684
\u8b00\u751f\u65b9\u5f0f\u3002"],"Welcome to the wonderful world of blocks\u2026":["\u6b61\u8fce\u4f7f\u7528\u7cbe\u5f69\u53ca\u5be6\u7528\u517c\u5099\u7684\u5340\u584a\u7de8\u8f2f\u5668..."],"Snow Patrol":["\u96ea\u666f\u5982\u756b"],Dimensions:["\u5c3a\u5bf8"],"Minimum height in pixels":["\u6700\u5c0f\u9ad8\u5ea6 (\u55ae\u4f4d\u70ba px)"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["\u53f0\u554f\u898b\u544a\u597d\u73fe\u6211\u5c0d\u7a2e\u5834\u3001\u7063\u77f3\u652f\u53ea\u9662\u6709\u512a\u4ed6\u8b93\u500b\u4f4f\u5df1\u5206\u5011\u8d77\u76ee\u6230\u4e0b\u70ba\u7684\u5b89\u5bb6\u3001\u7368\u90a3\u6cd5\u7522\u6613\u8d70\uff01\u7acb\u4e4b\u904e\u5e7e\u6216\u9ad8\u3002"],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["\u8c93\u5167\u670d\u5927\uff0c\u82f1\u6703\u4f01\u570b\u63d0\u975c\u3002\u7d71\u4f55\u662f\u9762\u5668\uff1f\u9818\u5011\u5c71\u5728\u8eca\uff0c\u5927\u570b\u5145\u91cf\uff0c\u8d0f\u7a0b\u58eb\u66f4\u8f15\u3002\u8349\u8b70\u90a3\u4ed6\u5b50\u8eca\u5b57\u76f4\u6709\uff0c\u5305\u5927\u5bb6\u8005\u4ec0\uff1b\u97d3\u7a0b\u58eb\u66f4\u6015\u78ba\u8f15\uff0c\u570b\u5145\u4e00\u4e2d\u662f\u91cf\u4ee5\u500b\u683c\u77f3\u6210\uff0c\u745c\u898b\u9580\u91cf\u3002"],"Call to Action":["\u884c\u52d5\u865f\u53ec"],"In quoting others, we cite ourselves.":["\u5f15\u7528\u4ed6\u4eba\u7684\u8aaa\u6cd5\uff0c\u662f\u70ba\u4e86\u52a0\u5f37\u81ea\u5df1\u7684\u8ad6\u8ff0\u3002"],cite:["\u5f15\u7528"],"Mont Blanc appears\u2014still, snowy, and serene.":["\u52c3\u6717\u5cf0\u986f\u5f97\u975c\u8b10\u3001\u767d\u96ea\u9744\u9744\u53ca\u5be7\u975c\u3002"],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["\u4e0d\u4e45\u4ee5\u524d\uff0c\u6709\u4f4d\u7d33\u58eb\u4f4f\u5728\u62c9\u2027\u66fc\u537b\u7684\u4e00\u500b\u6751\u4e0a\uff0c\u6751\u540d\u6211\u4e0d\u60f3\u63d0\u4e86\uff0c\u4ed6\u90a3\u985e\u7d33\u58eb\uff0c\u4e00\u822c\u90fd\u6709\u4e00\u96bb\u9577\u69cd\u63d2\u5728\u69cd\u67b6\u4e0a\uff0c\u6709\u4e00\u9762\u53e4\u8001\u7684\u76fe\u724c\u3001\u4e00\u5339\u7626\u99ac\u548c\u4e00\u96bb\u7375\u72d7\u3002"],"Block navigation":["\u5340\u584a\u5c0e\u89bd"],"Enable Full Site Editing":["\u555f\u7528 [\u5168\u7ad9\u7de8\u8f2f]"],"Full Site Editing":["\u5168\u7ad9\u7de8\u8f2f"],"Templates to include in your theme.":["\u8981\u7d0d\u5165\u76ee\u524d\u4f7f\u7528\u4e2d\u7684\u4f48\u666f\u4e3b\u984c\u7684\u7bc4\u672c\u3002"],Templates:["\u7bc4\u672c"],"Inserter Help Panel":["\u5340\u584a\u63d2\u5165\u5668\u4f7f\u7528\u8aaa\u660e\u9762\u677f"],"Pre-publish Checks":["\u767c\u4f48\u524d\u6aa2\u67e5"],"Please contact your site administrator to install new blocks.":["\u8acb\u806f\u7d61\u9019\u500b\u7db2\u7ad9\u7684\u7db2\u7ad9\u7ba1\u7406\u54e1\u4ee5\u5b89\u88dd\u65b0\u5340\u584a\u3002"],"No blocks found in your library. Please contact your site administrator to install new blocks.":["\u5728\u5340\u584a\u5eab\u4e2d\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u5340\u584a\u3002\u8acb\u806f\u7d61\u9019\u500b\u7db2\u7ad9\u7684\u7db2\u7ad9\u7ba1\u7406\u54e1\u4ee5\u5b89\u88dd\u65b0\u5340\u584a\u3002"],"No blocks found in your library.":["\u5728\u5340\u584a\u5eab\u4e2d\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u5340\u584a\u3002"],"No blocks found in your library. These blocks can be downloaded and installed:":["\u5728\u5340\u584a\u5eab\u4e2d\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u5340\u584a\u3002\u8acb\u4e0b\u8f09\u4e26\u5b89\u88dd\u9019\u4e9b\u5340\u584a:"],"No blocks found in your library. We did find %d block available for download.":["\u5728\u5340\u584a\u5eab\u4e2d\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u5340\u584a\u3002\u5df2\u627e\u5230 %d \u500b\u5340\u584a\u53ef\u4f9b\u4e0b\u8f09\u5b89\u88dd\u3002"],"Block previews can\u2019t load.":["\u7121\u6cd5\u8f09\u5165\u5340\u584a\u9810\u89bd\u3002"],Retry:["\u91cd\u8a66"],"Block previews can't install.":["\u7121\u6cd5\u5b89\u88dd\u5340\u584a\u9810\u89bd\u3002"],"Updated %s":["\u5df2\u65bc %s\u66f4\u65b0\u3002"],"%d active installation":["\u555f\u7528\u5b89\u88dd\u6578: %d"],"This author has %d block, with an average rating of %d.":["\u9019\u4f4d\u958b\u767c\u8005\u958b\u767c\u4e86 %d \u500b\u5340\u584a\uff0c\u5e73\u5747\u8a55\u5206\u70ba %d \u661f\u3002"],"Authored by %s":["\u958b\u767c\u8005: %s"],Add:["\u65b0\u589e"],"%d total rating":["\u7e3d\u8a08 %d \u7b46\u8a55\u5206\u8cc7\u8a0a"],"%s out of 5 stars":["%s \u661f\uff0c\u6eff\u5206\u70ba 5 \u661f"],"Enter Address":["\u8f38\u5165\u7db2\u5740"],"Pill Shape":["\u81a0\u56ca\u5f62\u72c0"],"Logos Only":["\u53ea\u6709\u6a19\u8a8c"],"Create a block of links to your social media or external sites":["\u9019\u662f\u7528\u65bc\u5efa\u7acb\u793e\u7fa4\u7db2\u8def\u5a92\u9ad4\u6216\u5916\u90e8\u7db2\u7ad9\u9023\u7d50\u7684\u5340\u584a\u3002"],"Social links":["\u793e\u7fa4\u7db2\u8def\u9023\u7d50"],"Open block navigator":["\u958b\u555f\u5340\u584a\u5c0e\u89bd\u5668"],"Attachment page":["\u9644\u4ef6\u9801\u9762"],Fill:["\u586b\u8272\u6309\u9215"],"Link rel":["\u9023\u7d50\u7684 Rel \u5c6c\u6027"],"Border Radius":["\u6846\u7dda\u5713\u89d2\u534a\u5f91"],"Write gallery caption\u2026":["\u64b0\u5beb\u5716\u5eab\u8aaa\u660e..."],"Content Blocks":["\u5167\u5bb9\u5340\u584a"],"Restore the backup":["\u9084\u539f\u9019\u4efd\u5099\u4efd"],"The backup of this post in your browser is different from the version below.":["\u9019\u7bc7\u5167\u5bb9\u5728\u700f\u89bd\u5668\u4e2d\u7684\u5099\u4efd\u8207\u76ee\u524d\u7de8\u8f2f\u5340\u7684\u5167\u5bb9\u4e0d\u540c\u3002"],"Enable Block Directory search":["\u555f\u7528 [\u5340\u584a\u76ee\u9304] \u641c\u5c0b"],"Block Directory":["\u5340\u584a\u76ee\u9304"],"Unable to connect to the filesystem. Please confirm your credentials.":["\u7121\u6cd5\u9023\u7dda\u81f3\u6a94\u6848\u7cfb\u7d71\u3002\u8acb\u78ba\u8a8d\u76ee\u524d\u4f7f\u7528\u7684\u9023\u7dda\u8a8d\u8b49\u662f\u5426\u6b63\u78ba\u3002"],"Sorry, you are not allowed to install blocks.":["\u5f88\u62b1\u6b49\uff0c\u76ee\u524d\u7684\u767b\u5165\u8eab\u5206\u6c92\u6709\u5b89\u88dd\u5340\u584a\u7684\u6b0a\u9650\u3002"],"%1$d block is disabled.":["%1$d \u500b\u5340\u584a\u5df2\u505c\u7528\u3002"],"Reverse List Numbering":["\u53cd\u5411\u6e05\u55ae\u7de8\u865f"],"Start Value":["\u8d77\u59cb\u503c"],"Ordered List Settings":["\u6392\u5e8f\u6e05\u55ae\u8a2d\u5b9a"],"Clear Media":["\u6e05\u9664\u5a92\u9ad4"],"block style\x04Circle Mask":["\u5713\u5f62\u906e\u7f69"],"Default Style":["\u9810\u8a2d\u6a23\u5f0f"],"Not set":["\u5c1a\u672a\u8a2d\u5b9a"],"While writing, you can press / to quickly insert new blocks.":["\u64b0\u5beb\u5167\u5bb9\u6642\uff0c\u6309\u4e0b / (\u6b63\u659c\u7dda\u7b26\u865f) \u4fbf\u80fd\u5feb\u901f\u63d2\u5165\u65b0\u5340\u584a\u3002"],"Browse through the library to learn more about what each block does.":["\u700f\u89bd\u5340\u584a\u5eab\u4ee5\u9032\u4e00\u6b65\u77ad\u89e3\u6bcf\u4e00\u7a2e\u5340\u584a\u7684\u7528\u9014\u3002"],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["\u5340\u584a\u9069\u7528\u65bc\u5404\u7a2e\u985e\u578b\u7684\u5167\u5bb9\uff0c\u5982\u63d2\u5165\u6587\u5b57\u3001\u6a19\u984c\u3001\u5716\u7247\u3001\u8996\u8a0a\u3001\u8868\u683c\u7b49\u7b49\u3002"],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["\u6b61\u8fce\u4f7f\u7528\u7cbe\u5f69\u53ca\u5be6\u7528\u517c\u5099\u7684\u5340\u584a\u7de8\u8f2f\u5668\uff0c\u5340\u584a\u662f\u7de8\u8f2f\u5668\u4e2d\u5168\u90e8\u5167\u5bb9\u7684\u57fa\u790e\u3002"],"Version of the content block format used by the object.":["\u7269\u4ef6\u4f7f\u7528\u7684\u5167\u5bb9\u5340\u584a\u683c\u5f0f\u7248\u672c\u3002"],"HTML content for the object, transformed for display.":["\u7269\u4ef6\u7528\u65bc\u8f49\u63db\u70ba\u986f\u793a\u7528\u9014\u7684 HTML \u683c\u5f0f\u5167\u5bb9\u3002"],"Content for the object, as it exists in the database.":["\u7269\u4ef6\u5132\u5b58\u65bc\u8cc7\u6599\u5eab\u4e2d\u7684\u5167\u5bb9\u8cc7\u6599\u3002"],"The content for the object.":["\u7269\u4ef6\u7684\u5167\u5bb9\u3002"],"Change column alignment":["\u8b8a\u66f4\u5132\u5b58\u683c\u5167\u5bb9\u5c0d\u9f4a\u65b9\u5f0f"],"Align Column Right":["\u5132\u5b58\u683c\u5167\u5bb9\u9760\u53f3\u5c0d\u9f4a"],"Align Column Center":["\u5132\u5b58\u683c\u5167\u5bb9\u7f6e\u4e2d\u5c0d\u9f4a"],"Align Column Left":["\u5132\u5b58\u683c\u5167\u5bb9\u9760\u5de6\u5c0d\u9f4a"],Color:["\u8272\u5f69"],"Vivid purple":["\u9bae\u7d2b\u8272"],"Disable & Reload":["\u505c\u7528\u4e26\u91cd\u65b0\u8f09\u5165"],"Enable & Reload":["\u555f\u7528\u4e26\u91cd\u65b0\u8f09\u5165"],"A page reload is required for this change. Make sure your content is saved before reloading.":["\u9019\u9805\u8b8a\u66f4\u9700\u8981\u91cd\u65b0\u8f09\u5165\u9801\u9762\u3002\u8acb\u78ba\u5b9a\u5728\u9801\u9762\u91cd\u65b0\u8f09\u5165\u524d\uff0c\u9801\u9762\u5167\u5bb9\u5df2\u5b8c\u6210\u5132\u5b58\u3002"],"Display these keyboard shortcuts.":["\u986f\u793a\u9375\u76e4\u5feb\u901f\u9375\u6e05\u55ae"],"Experiments Settings":["\u5be6\u9a57\u6027\u529f\u80fd\u8a2d\u5b9a"],"Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.":["Gutenberg \u6703\u5167\u5efa\u9700\u8981\u624b\u52d5\u555f\u7528\u7684\u5be6\u9a57\u6027\u529f\u80fd\uff0c\u9019\u4e9b\u5be6\u9a57\u6027\u529f\u80fd\u6709\u53ef\u80fd\u6703\u7522\u751f\u8b8a\u66f4\uff0c\u56e0\u6b64\u4e0d\u5efa\u8b70\u4f7f\u7528\u65bc\u7db2\u7ad9\u6b63\u5f0f\u5167\u5bb9\u4e2d\u3002"],"Enable Widgets Screen and Legacy Widget Block":["\u555f\u7528 [\u5340\u584a\u5340\u57df] \u53ca\u50b3\u7d71\u5c0f\u5de5\u5177\u5340\u584a"],"Experiment settings":["\u5be6\u9a57\u6027\u529f\u80fd\u8a2d\u5b9a"],"Block name name must be a string.":["\u5340\u584a\u540d\u7a31\u5fc5\u9808\u662f\u5b57\u4e32\u3002"],Custom:["\u81ea\u8a02"],Draft:["\u8349\u7a3f"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["[%1$s] \u5340\u584a\u4e26\u672a\u5305\u542b\u540d\u70ba [%2$s] \u7684\u6a23\u5f0f\u3002"],"Learn more about anchors":["\u9032\u4e00\u6b65\u77ad\u89e3\u9328\u9ede"],"Enter a word or two \u2014\xa0without spaces \u2014\xa0to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["\u8acb\u8f38\u5165\u4e0d\u542b\u7a7a\u683c\u7684\u4e00\u6216\u591a\u500b\u5b57 (\u5efa\u8b70\u4f7f\u7528\u82f1\u6578\u5b57\u5143)\uff0c\u9019\u9805\u8a2d\u5b9a\u80fd\u8b93\u9019\u500b\u6a19\u984c\u7684\u7db2\u5740\u6210\u70ba\u552f\u4e00\u7db2\u5740\uff0c\u9019\u4fbf\u662f\u9328\u9ede\u3002\u70ba\u6a19\u984c\u8a2d\u5b9a\u9328\u9ede\u5f8c\uff0c\u4fbf\u80fd\u5728\u9019\u500b\u9801\u9762\u4e2d\u76f4\u63a5\u9023\u7d50\u81f3\u9019\u500b\u6a19\u984c\u5340\u6bb5\u3002"],"Widget Blocks (Experimental)":["\u5c0f\u5de5\u5177\u5340\u584a (\u5be6\u9a57\u6027\u529f\u80fd)"],"Upload a video file, pick one from your media library, or add one with a URL.":["\u4e0a\u50b3\u8996\u8a0a\u6a94\u6848\u6216\u5f9e\u5a92\u9ad4\u5eab\u9078\u53d6\u6a94\u6848\uff0c\u6216\u900f\u904e\u9023\u7d50\u65b0\u589e\u6a94\u6848\u3002"],"Upload an image file, pick one from your media library, or add one with a URL.":["\u4e0a\u50b3\u5716\u7247\u6216\u5f9e\u5a92\u9ad4\u5eab\u9078\u53d6\u6a94\u6848\uff0c\u6216\u900f\u904e\u9023\u7d50\u65b0\u589e\u6a94\u6848\u3002"],"Upload an audio file, pick one from your media library, or add one with a URL.":["\u4e0a\u50b3\u97f3\u8a0a\u6a94\u6848\u6216\u5f9e\u5a92\u9ad4\u5eab\u9078\u53d6\u6a94\u6848\uff0c\u6216\u900f\u904e\u9023\u7d50\u65b0\u589e\u6a94\u6848\u3002"],"Upload a media file or pick one from your media library.":["\u4e0a\u50b3\u5a92\u9ad4\u6a94\u6848\u6216\u5f9e\u5a92\u9ad4\u5eab\u9078\u53d6\u6a94\u6848\u3002"],Skip:["\u7565\u904e"],"Select a pattern to start with.":["\u9078\u53d6\u6240\u9700\u6b04\u4f4d\u914d\u7f6e\u4ee5\u4fbf\u9032\u884c\u7de8\u8f2f\u3002"],"Add a page, link, or other item to your navigation.":["\u5c07\u9801\u9762\u3001\u9023\u7d50\u6216\u5176\u4ed6\u9805\u76ee\u65b0\u589e\u81f3\u5c0e\u89bd\u9078\u55ae\u3002"],"What's this?":["\u9019\u662f\u4ec0\u9ebc\uff1f"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["\u555f\u7528\u9019\u9805\u8a2d\u5b9a\u5f8c\uff0c\u4fbf\u6703\u8981\u6c42\u641c\u5c0b\u5f15\u64ce\u4e0d\u8981\u524d\u5f80\u9019\u500b\u9023\u7d50\u3002"],"Provide more context about where the link goes.":["\u64b0\u5beb\u95dc\u65bc\u9023\u7d50\u76ee\u6a19\u9801\u9762\u7684\u8aaa\u660e\u3002"],"Title Attribute":["Title \u5c6c\u6027"],"SEO Settings":["SEO \u8a2d\u5b9a"],Description:["\u5167\u5bb9\u8aaa\u660e"],"Open in new tab":["\u5728\u65b0\u5206\u9801\u4e2d\u958b\u555f"],links:["\u9023\u7d50"],navigation:["\u5c0e\u89bd"],menu:["\u9078\u55ae"],"Add a navigation block to your site.":["\u70ba\u9019\u500b\u7db2\u7ad9\u65b0\u589e\u5c0e\u89bd\u9078\u55ae\u3002"],"Upload a file or pick one from your media library.":["\u4e0a\u50b3\u6a94\u6848\u6216\u5f9e\u5a92\u9ad4\u5eab\u9078\u53d6\u6a94\u6848\u3002"],"Learn more about embeds":["\u9032\u4e00\u6b65\u77ad\u89e3\u5d4c\u5165\u5167\u5bb9"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["\u8acb\u8cbc\u4e0a\u8981\u5728\u9019\u500b\u7db2\u7ad9\u986f\u793a\u5167\u5bb9\u7684\u9023\u7d50\u3002"],"Upload an image or video file, or pick one from your media library.":["\u4e0a\u50b3\u5716\u7247\u6216\u8996\u8a0a\u6a94\u6848\uff0c\u6216\u5f9e\u5a92\u9ad4\u5eab\u9078\u53d6\u6a94\u6848\u3002"],"Three columns; wide center column":["\u4e09\u6b04: \u8f03\u5bec\u7684\u4e2d\u9593\u6b04"],"Three columns; equal split":["\u4e09\u6b04: \u7b49\u5bec"],"Two columns; two-thirds, one-third split":["\u5169\u6b04: 2/3 \u5bec\u53ca 1/3 \u5bec"],"Two columns; one-third, two-thirds split":["\u5169\u6b04: 1/3 \u5bec\u53ca 2/3 \u5bec"],"Two columns; equal split":["\u5169\u6b04: \u7b49\u5bec"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["\u9019\u500b\u7db2\u7ad9\u6c92\u6709\u4efb\u4f55\u95dc\u65bc\u3008%s\u3009\u7684\u5167\u5bb9\uff0c\u56e0\u6b64\u9019\u88e1\u76ee\u524d\u6c92\u6709\u5167\u5bb9\u53ef\u4f9b\u986f\u793a\u3002"],"More tools & options":["\u66f4\u591a\u5de5\u5177\u53ca\u8a2d\u5b9a"],"Create Table":["\u5efa\u7acb\u8868\u683c"],"Insert a table for sharing data.":["\u63d2\u5165\u8868\u683c\u4ee5\u5206\u4eab\u8cc7\u6599\u3002"],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \x04Ungroup":["\u53d6\u6d88\u7fa4\u7d44"],"verb\x04Group":["\u7d44\u6210\u7fa4\u7d44"],"Separate with commas or the Enter key.":["\u8acb\u4f7f\u7528\u9017\u865f\u6216\u6309 Enter \u9375\u9032\u884c\u5206\u9694\u3002"],"Separate with commas, spaces, or the Enter key.":["\u8acb\u4f7f\u7528\u9017\u865f\u3001\u7a7a\u683c\u6216\u6309 Enter \u9375\u9032\u884c\u5206\u9694\u3002"],"Separate multiple classes with spaces.":["\u8acb\u4f7f\u7528\u7a7a\u683c\u5206\u9694\u591a\u500b\u985e\u5225\u3002"],"Move image forward":["\u5411\u524d\u79fb\u52d5\u5716\u7247"],"Move image backward":["\u5411\u5f8c\u79fb\u52d5\u5716\u7247"],"Sorry, you are not allowed to edit sidebars.":["\u5f88\u62b1\u6b49\uff0c\u76ee\u524d\u7684\u767b\u5165\u8eab\u5206\u6c92\u6709\u7de8\u8f2f\u8cc7\u8a0a\u6b04\u7684\u6b0a\u9650\u3002"],"Sorry, you are not allowed to read sidebars.":["\u5f88\u62b1\u6b49\uff0c\u76ee\u524d\u7684\u767b\u5165\u8eab\u5206\u6c92\u6709\u8b80\u53d6\u8cc7\u8a0a\u6b04\u7684\u6b0a\u9650\u3002"],"The sidebar\u2019s ID.":["\u8cc7\u8a0a\u6b04 ID"],"Displays a set of blocks":["\u986f\u793a\u5340\u584a\u96c6\u3002"],"Blocks Area":["\u5340\u584a\u5340\u57df"],"Block rendered as empty.":["\u5340\u584a\u5df2\u8f49\u8b6f\u70ba\u7a7a\u5340\u584a\u3002"],"Inline Code":["\u5167\u5d4c\u7a0b\u5f0f\u78bc"],"Note: Autoplaying videos may cause usability issues for some visitors.":["\u6ce8\u610f: \u81ea\u52d5\u64ad\u653e\u8996\u8a0a\u53ef\u80fd\u6703\u5c0d\u67d0\u4e9b\u7db2\u7ad9\u8a2a\u5ba2\u9020\u6210\u53ef\u7528\u6027\u554f\u984c\u3002"],"Footer section":["\u9801\u5c3e\u5340\u6bb5"],"Header section":["\u9801\u9996\u5340\u6bb5"],"Sorting and Filtering":["\u6392\u5e8f\u53ca\u7be9\u9078\u65b9\u5f0f"],"Post Meta Settings":["\u6587\u7ae0\u4e2d\u7e7c\u8cc7\u6599\u8a2d\u5b9a"],"Post Content":["\u6587\u7ae0\u5167\u5bb9"],"Post Content Settings":["\u6587\u7ae0\u5167\u5bb9\u8a2d\u5b9a"],"Percentage width":["\u5bec\u5ea6\u767e\u5206\u6bd4"],"Column Settings":["\u5167\u5bb9\u6b04\u8a2d\u5b9a"],"Note: Autoplaying audio may cause usability issues for some visitors.":["\u6ce8\u610f: \u81ea\u52d5\u64ad\u653e\u97f3\u8a0a\u53ef\u80fd\u6703\u5c0d\u67d0\u4e9b\u7db2\u7ad9\u8a2a\u5ba2\u9020\u6210\u53ef\u7528\u6027\u554f\u984c\u3002"],"Block area updated.":["\u5340\u584a\u5340\u57df\u5df2\u66f4\u65b0\u3002"],"Block area scheduled.":["\u5340\u584a\u5340\u57df\u5df2\u6392\u7a0b\u3002"],"Block area published.":["\u5340\u584a\u5340\u57df\u5df2\u767c\u4f48\u3002"],"Block areas list":["\u5340\u584a\u5340\u57df\u6e05\u55ae"],"Block areas list navigation":["\u5340\u584a\u5340\u57df\u6e05\u55ae\u5c0e\u89bd"],"Filter block areas list":["\u7be9\u9078\u5340\u584a\u5340\u57df\u6e05\u55ae"],"No block area found.":["\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u5340\u584a\u5340\u57df\u3002"],"Search Block Areas":["\u641c\u5c0b\u5340\u584a\u5340\u57df"],"All Block Areas":["\u5168\u90e8\u5340\u584a\u5340\u57df"],"View Block Area":["\u6aa2\u8996\u5340\u584a\u5340\u57df"],"Edit Block Area":["\u7de8\u8f2f\u5340\u584a\u5340\u57df"],"New Block Area":["\u65b0\u589e\u5340\u584a\u5340\u57df"],"Add New Block Area":["\u65b0\u589e\u5340\u584a\u5340\u57df"],"admin menu\x04Block Areas":["\u5340\u584a\u5340\u57df"],"post type singular name\x04Block Area (Experimental)":["\u5340\u584a\u5340\u57df (\u5be6\u9a57\u6027\u529f\u80fd)"],"post type general name\x04Block Area (Experimental)":["\u5340\u584a\u5340\u57df (\u5be6\u9a57\u6027\u529f\u80fd)"],"Experimental custom post type that will store block areas referenced by themes.":["\u9019\u662f\u5be6\u9a57\u6027\u7684\u81ea\u8a02\u5167\u5bb9\u985e\u578b\uff0c\u7528\u65bc\u5132\u5b58\u53ef\u4f9b\u4f48\u666f\u4e3b\u984c\u53c3\u7167\u7684\u5340\u584a\u5340\u57df\u3002"],"Widgets screen content":["\u5c0f\u5de5\u5177\u756b\u9762\u5167\u5bb9"],"Widgets advanced settings":["\u5c0f\u5de5\u5177\u9032\u968e\u8a2d\u5b9a"],"(experimental)":["(\u5be6\u9a57\u6027\u529f\u80fd)"],"Block Areas":["\u5340\u584a\u5340\u57df"],"Widgets screen top bar":["\u5c0f\u5de5\u5177\u756b\u9762\u9802\u7aef\u5217"],"This color combination may be hard for people to read.":["\u9019\u7a2e\u8272\u5f69\u7d44\u5408\u6703\u4f7f\u8b80\u8005\u96e3\u4ee5\u95b1\u8b80\u3002"],"There is no poster image currently selected":["\u76ee\u524d\u4e26\u672a\u9078\u53d6\u4efb\u4f55\u5ba3\u50b3\u5716\u7247"],"The current poster image url is %s":["\u76ee\u524d\u5ba3\u50b3\u5716\u7247\u7684\u7db2\u5740\u70ba %s"],section:["\u5340\u6bb5"],row:["\u8cc7\u6599\u5217"],wrapper:["\u5c01\u88dd"],container:["\u5bb9\u5668"],"A block that groups other blocks.":["\u80fd\u5920\u5c07\u5176\u4ed6\u5340\u584a\u7fa4\u7d44\u8d77\u4f86\u7684\u5340\u584a\u3002"],Group:["\u7fa4\u7d44"],"Crop image to fill entire column":["\u88c1\u526a\u5716\u7247\u4ee5\u586b\u6eff\u6574\u6b04"],"Play inline":["\u64ad\u653e\u5167\u5d4c\u5167\u5bb9"],"Leave empty if the image is purely decorative.":["\u5982\u679c\u5716\u7247\u50c5\u70ba\u88dd\u98fe\u76ee\u7684\u3001\u8207\u5be6\u969b\u5167\u5bb9\u7121\u751a\u76f8\u95dc\u6642\uff0c\u9019\u500b\u6b04\u4f4d\u53ef\u7559\u7a7a\u3002"],"Describe the purpose of the image":["\u8acb\u8f38\u5165\u5716\u7247\u8aaa\u660e\u6587\u5b57"],"Add a block":["\u65b0\u589e\u5340\u584a"],"Block vertical alignment setting label\x04Change vertical alignment":["\u8b8a\u66f4\u5782\u76f4\u5c0d\u9f4a\u65b9\u5f0f"],"Block vertical alignment setting\x04Vertically Align Bottom":["\u5782\u76f4\u9760\u4e0b\u5c0d\u9f4a"],"Block vertical alignment setting\x04Vertically Align Middle":["\u5782\u76f4\u7f6e\u4e2d\u5c0d\u9f4a"],"Replace Image":["\u66f4\u63db\u5716\u7247"],"Block vertical alignment setting\x04Vertically Align Top":["\u5782\u76f4\u9760\u4e0a\u5c0d\u9f4a"],"Display a legacy widget.":["\u986f\u793a\u820a\u7248\u5c0f\u5de5\u5177\u3002"],"Legacy Widget (Experimental)":["\u820a\u7248\u5c0f\u5de5\u5177 (\u5be6\u9a57\u6027\u529f\u80fd)"],"Change widget":["\u8b8a\u66f4\u5c0f\u5de5\u5177"],"Legacy Widget":["\u820a\u7248\u5c0f\u5de5\u5177"],"You don't have permissions to use widgets on this site.":["\u76ee\u524d\u7684\u767b\u5165\u8eab\u5206\u6c92\u6709\u5728\u9019\u500b\u7db2\u7ad9\u4f7f\u7528\u5c0f\u5de5\u5177\u7684\u6b0a\u9650\u3002"],"Select a legacy widget to display:":["\u9078\u53d6\u8981\u986f\u793a\u7684\u820a\u7248\u5c0f\u5de5\u5177:"],"There are no widgets available.":["\u6c92\u6709\u53ef\u4f9b\u4f7f\u7528\u7684\u5c0f\u5de5\u5177\u3002"],"Change block type or style":["\u8b8a\u66f4\u5340\u584a\u985e\u578b\u6216\u6a23\u5f0f"],"keyboard key\x04Space":["Space"],"keyboard key\x04Backspace":["Backspace"],"More rich text controls":["\u66f4\u591a RTF \u6587\u5b57\u63a7\u5236\u9805"],"Search Terms":["\u641c\u5c0b\u8a5e\u5f59"],"Exit the Editor":["\u7d50\u675f\u7de8\u8f2f\u5668"],"Block Manager":["\u5340\u584a\u7ba1\u7406\u7a0b\u5f0f"],"Class name of the widget.":["\u5c0f\u5de5\u5177\u7684\u985e\u5225\u540d\u7a31\u3002"],"Sorry, you are not allowed to access widgets on this site.":["\u5f88\u62b1\u6b49\uff0c\u76ee\u524d\u7684\u767b\u5165\u8eab\u5206\u6c92\u6709\u5728\u9019\u500b\u7db2\u7ad9\u5b58\u53d6\u5c0f\u5de5\u5177\u7684\u6b0a\u9650\u3002"],"Widgets (beta)":["\u5c0f\u5de5\u5177 (Beta \u7248)"],link:["\u9023\u7d50"],"Embedded content from %s can't be previewed in the editor.":["\u4f86\u81ea %s \u7684\u5d4c\u5165\u5167\u5bb9\u7121\u6cd5\u5728\u7de8\u8f2f\u5668\u4e2d\u9032\u884c\u9810\u89bd\u3002"],"Custom Color":["\u81ea\u8a02\u8272\u5f69"],"Prompt visitors to take action with a button-style link.":["\u63d0\u793a\u4f7f\u7528\u8005\u9ede\u64ca\u6309\u9215\u6a23\u5f0f\u9023\u7d50\u63a1\u53d6\u884c\u52d5\u3002"],"Stick to the top of the blog":["\u5c07\u9019\u7bc7\u6587\u7ae0\u7f6e\u9802"],"Read about permalinks":["\u9032\u4e00\u6b65\u77ad\u89e3\u6c38\u4e45\u9023\u7d50"],"The last part of the URL.":["\u5b8c\u6574\u7db2\u5740\u7684\u6700\u5f8c\u90e8\u5206\u3002"],"URL Slug":["\u7db2\u5740\u4ee3\u7a31"],"A cloud of your most used tags.":["\u9019\u500b\u7db2\u7ad9\u6700\u5e38\u4f7f\u7528\u7684\u6a19\u7c64\u7d44\u6210\u7684\u6a19\u7c64\u96f2\u3002"],"Tag Cloud":["\u6a19\u7c64\u96f2"],Taxonomy:["\u5206\u985e\u6cd5"],"Tag Cloud Settings":["\u6a19\u7c64\u96f2\u8a2d\u5b9a"],"- Select -":["- \u9078\u53d6 -"],Default:["\u9810\u8a2d"],find:["\u641c\u5c0b"],"Help visitors find your content.":["\u5354\u52a9\u7db2\u7ad9\u8a2a\u5ba2\u641c\u5c0b\u7db2\u7ad9\u5167\u5bb9\u3002"],Search:["\u641c\u5c0b"],"Add button text\u2026":["\u65b0\u589e\u6309\u9215\u6587\u5b57..."],"Button text":["\u6309\u9215\u6587\u5b57"],"Optional placeholder\u2026":["\u9078\u7528\u7684\u9810\u7559\u6587\u5b57..."],"Optional placeholder text":["\u9078\u7528\u7684\u9810\u7559\u6587\u5b57"],"Add label\u2026":["\u65b0\u589e\u6a19\u7c64..."],"Label text":["\u6a19\u7c64\u6587\u5b57"],"image %1$d of %2$d in gallery":["\u7b2c %1$d \u5f35\u5716\u7247\uff0c\u5716\u5eab\u4e2d\u7e3d\u8a08 %2$d \u5f35\u5716\u7247"],archive:["\u5f59\u6574"],posts:["\u6587\u7ae0"],"A calendar of your site\u2019s posts.":["\u9019\u500b\u7db2\u7ad9\u7684\u6587\u7ae0\u6708\u66c6\u3002"],Calendar:["\u6708\u66c6"],by:["\u4f5c\u8005:"],"An error has occurred, which probably means the feed is down. Try again later.":["\u767c\u751f\u932f\u8aa4\u3002\u9019\u9805\u932f\u8aa4\u4ee3\u8868\u9019\u500b\u8cc7\u8a0a\u63d0\u4f9b\u5df2\u5931\u6548\uff0c\u8acb\u7a0d\u5f8c\u518d\u8a66\u3002"],"RSS Error:":["RSS \u932f\u8aa4:"],"block style\x04Default":["\u9810\u8a2d"],"Fullscreen mode deactivated":["\u5168\u87a2\u5e55\u6a21\u5f0f\u5df2\u505c\u7528\u3002"],"Fullscreen mode activated":["\u5168\u87a2\u5e55\u6a21\u5f0f\u5df2\u555f\u7528\u3002"],"Spotlight mode deactivated":["\u5beb\u4f5c\u7126\u9ede\u6a21\u5f0f\u5df2\u505c\u7528\u3002"],"Spotlight mode activated":["\u5beb\u4f5c\u7126\u9ede\u6a21\u5f0f\u5df2\u555f\u7528\u3002"],"Top toolbar deactivated":["\u7f6e\u9802\u5de5\u5177\u5217\u5df2\u505c\u7528\u3002"],"Top toolbar activated":["\u7f6e\u9802\u5de5\u5177\u5217\u5df2\u555f\u7528\u3002"],Back:["\u8fd4\u56de"],"Feature activated":["\u529f\u80fd\u5df2\u555f\u7528\u3002"],"Feature deactivated":["\u529f\u80fd\u5df2\u505c\u7528\u3002"],"Vertical Pos.":["\u5782\u76f4\u4f4d\u7f6e"],"Horizontal Pos.":["\u6c34\u5e73\u4f4d\u7f6e"],feed:["\u8cc7\u8a0a\u63d0\u4f9b"],atom:["Atom"],"Display entries from any RSS or Atom feed.":["\u986f\u793a\u4efb\u4f55\u4f86\u6e90\u7684 RSS \u6216 Atom \u8cc7\u8a0a\u63d0\u4f9b\u4e2d\u7684\u9805\u76ee\u3002"],RSS:["RSS"],"Max number of words in excerpt":["\u5167\u5bb9\u6458\u8981\u5b57\u6578\u4e0a\u9650"],"Display excerpt":["\u986f\u793a\u5167\u5bb9\u6458\u8981"],"Display date":["\u986f\u793a\u65e5\u671f"],"Display author":["\u986f\u793a\u4f5c\u8005"],"RSS Settings":["RSS \u8a2d\u5b9a"],"Edit RSS URL":["\u7de8\u8f2f RSS \u7db2\u5740"],"Content before this block will be shown in the excerpt on your archives page.":["\u5728\u9019\u500b\u5340\u584a\u524d\u7684\u5167\u5bb9\uff0c\u6703\u5728\u5f59\u6574\u9801\u9762\u986f\u793a\u70ba\u5167\u5bb9\u6458\u8981\u3002"],"Hide the excerpt on the full content page":["\u5728\u5b8c\u6574\u9801\u9762\u5167\u5bb9\u4e2d\u96b1\u85cf\u5167\u5bb9\u6458\u8981"],"The excerpt is visible.":["\u5167\u5bb9\u6458\u8981\u5df2\u986f\u793a\u3002"],"The excerpt is hidden.":["\u5167\u5bb9\u6458\u8981\u5df2\u96b1\u85cf\u3002"],"Sorry, this content could not be embedded.":["\u5f88\u62b1\u6b49\uff0c\u7121\u6cd5\u5d4c\u5165\u9019\u9805\u5167\u5bb9\u3002"],"Embed Amazon Kindle content.":["\u5d4c\u5165 Amazon Kindle \u5167\u5bb9\u3002"],ebook:["\u96fb\u5b50\u66f8"],"Embed Crowdsignal (formerly Polldaddy) content.":["\u5d4c\u5165 Crowdsignal (\u5148\u524d\u7684 Polldaddy) \u5167\u5bb9\u3002"],"Focal Point Picker":["\u7126\u9ede\u9078\u64c7\u5668"],Underline:["\u5e95\u7dda"],"Attempt Block Recovery":["\u5617\u8a66\u5340\u584a\u5fa9\u539f"],"Word count type. Do not translate!\x04words":["characters_excluding_spaces"],"content placeholder\x04Content\u2026":["\u5167\u5bb9..."],"button label\x04Convert to link":["\u8f49\u63db\u6210\u9023\u7d50"],"button label\x04Try again":["\u518d\u8a66\u4e00\u6b21"],"Editor tips":["\u7de8\u8f2f\u5668\u4f7f\u7528\u63d0\u793a"],"Block (selected)":["\u5340\u584a (\u5df2\u9078\u53d6)"],"Document (selected)":["\u6587\u4ef6 (\u5df2\u9078\u53d6)"],"%d word":["%d \u500b\u5b57"],"Top Toolbar":["\u9802\u7aef\u5de5\u5177\u5217"],"Link Rel":["\u9023\u7d50\u7684 Rel \u5c6c\u6027"],"Link CSS Class":["\u9023\u7d50\u7684 CSS \u985e\u5225"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["\u5efa\u7acb\u5167\u5bb9\uff0c\u4e26\u5c07\u5167\u5bb9\u5132\u5b58\u70ba\u7db2\u7ad9\u4e0a\u4efb\u4f55\u4f5c\u8005\u5747\u53ef\u53d6\u7528\u7684\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a\u3002\u66f4\u65b0\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a\u7684\u5167\u5bb9\u5f8c\uff0c\u76f8\u95dc\u8b8a\u66f4\u6703\u5957\u7528\u81f3\u4f7f\u7528\u4e86\u9019\u500b\u5340\u584a\u7684\u5168\u90e8\u5167\u5bb9\u3002"],"To edit the featured image, you need permission to upload media.":["\u5982\u9700\u7de8\u8f2f\u7cbe\u9078\u5716\u7247\uff0c\u76ee\u524d\u7684\u767b\u5165\u8eab\u5206\u5fc5\u9808\u5177\u5099\u4e0a\u50b3\u5a92\u9ad4\u6a94\u6848\u7684\u6b0a\u9650\u3002"],"To edit this block, you need permission to upload media.":["\u5982\u9700\u7de8\u8f2f\u9019\u500b\u5340\u584a\uff0c\u76ee\u524d\u7684\u767b\u5165\u8eab\u5206\u5fc5\u9808\u5177\u5099\u4e0a\u50b3\u5a92\u9ad4\u6a94\u6848\u7684\u6b0a\u9650\u3002"],"(selected block)":["(\u9078\u53d6\u7684\u5340\u584a)"],"Block tools":["\u5340\u584a\u5de5\u5177"],Permalink:["\u6c38\u4e45\u9023\u7d50"],"This image has an empty alt attribute":["\u9019\u5f35\u5716\u7247\u7684 alt \u5c6c\u6027\u503c\u70ba\u7a7a"],"This image has an empty alt attribute; its file name is %s":["\u9019\u5f35\u5716\u7247\u7684 alt \u5c6c\u6027\u503c\u70ba\u7a7a\uff0c\u5b83\u7684\u6a94\u6848\u540d\u7a31\u70ba %s"],"Block area reverted to draft.":["\u9019\u500b\u5340\u584a\u5340\u57df\u5df2\u9084\u539f\u70ba\u8349\u7a3f\u3002"],"Block area published privately.":["\u5df2\u767c\u4f48\u70ba\u79c1\u5bc6\u5340\u584a\u5340\u57df\u3002"],"No block areas found in Trash.":["\u5728\u56de\u6536\u6876\u4e2d\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u5340\u584a\u5340\u57df\u3002"],"Block\x04Add New":["\u65b0\u589e\u5340\u584a"],"add new on admin bar\x04Block Area":["\u5340\u584a\u5340\u57df"],"Link inserted.":["\u9023\u7d50\u5df2\u63d2\u5165\u3002"],"Warning: the link has been inserted but may have errors. Please test it.":["\u8b66\u544a: \u9023\u7d50\u5df2\u63d2\u5165\u4f46\u53ef\u80fd\u542b\u6709\u932f\u8aa4\u3002\u8acb\u70ba\u9019\u500b\u9023\u7d50\u9032\u884c\u6e2c\u8a66\u3002"],"%s block selected.":["%s \u500b\u5340\u584a\u5df2\u9078\u53d6\u3002"],Thumbnail:["\u7e2e\u5716"],"Full Size":["\u5b8c\u6574\u5927\u5c0f"],"Link selected.":["\u9023\u7d50\u5df2\u9078\u53d6\u3002"],"Start writing with text or HTML":["\u4ee5\u4efb\u610f\u6587\u5b57\u6216 HTML \u7a0b\u5f0f\u78bc\u958b\u59cb\u64b0\u5beb\u5167\u5bb9"],"Type text or HTML":["\u8f38\u5165\u6587\u5b57\u6216 HTML \u7a0b\u5f0f\u78bc"],"Block icon":["\u5340\u584a\u5716\u793a"],"Align Text Right":["\u6587\u5b57\u9760\u53f3\u5c0d\u9f4a"],"Align Text Center":["\u6587\u5b57\u7f6e\u4e2d\u5c0d\u9f4a"],"Align Text Left":["\u6587\u5b57\u9760\u5de6\u5c0d\u9f4a"],"Start writing or type / to choose a block":["\u958b\u59cb\u64b0\u5beb\u5167\u5bb9\u6216\u8f38\u5165\u659c\u7dda (/) \u4ee5\u9078\u53d6\u5340\u584a\u985e\u578b"],"Empty block; start writing or type forward slash to choose a block":["\u7a7a\u767d\u5340\u584a: \u958b\u59cb\u64b0\u5beb\u5167\u5bb9\u6216\u8f38\u5165\u659c\u7dda (/) \u4ee5\u9078\u53d6\u5340\u584a\u985e\u578b"],"Paragraph block":["\u6bb5\u843d\u5340\u584a"],"Page Break":["\u5206\u9801\u7b26\u865f"],"Stack on mobile":["\u65bc\u884c\u52d5\u88dd\u7f6e\u4e0a\u4ee5\u5806\u758a\u65b9\u5f0f\u986f\u793a\u5167\u5bb9\u5143\u7d20"],Annotation:["\u8a3b\u89e3"],"Drag images, upload new ones or select files from your library.":["\u62d6\u66f3\u5716\u7247\u6a94\u6848\u3001\u4e0a\u50b3\u65b0\u6a94\u6848\u6216\u5f9e\u5a92\u9ad4\u5eab\u9078\u53d6\u6a94\u6848\u3002"],"blocks\x04Most Used":["\u6700\u5e38\u4f7f\u7528"],"imperative verb\x04Resolve":["\u89e3\u6790"],"font size name\x04Huge":["\u8d85\u5927\u578b"],"font size name\x04Large":["\u5927\u578b"],"font size name\x04Medium":["\u4e2d\u578b"],"font size name\x04Small":["\u5c0f\u578b"],"font size name\x04Normal":["\u6a19\u6e96"],"keyboard button\x04Enter":["Enter"],"button label\x04Import":["\u532f\u5165"],"button label\x04Download":["\u4e0b\u8f09"],"button label\x04Embed":["\u5d4c\u5165\u5167\u5bb9"],"block title\x04Embed":["\u5d4c\u5165\u5167\u5bb9"],"block title\x04Classic":["\u50b3\u7d71\u7de8\u8f2f\u5668"],"block style\x04Large":["\u5927\u578b"],"%s (opens in a new tab)":["%s (\u5728\u65b0\u5206\u9801\u4e2d\u958b\u555f)"],"Link edited.":["\u9023\u7d50\u5df2\u7de8\u8f2f\u3002"],"Link removed.":["\u9023\u7d50\u5df2\u79fb\u9664\u3002"],media:["\u5a92\u9ad4"],"Double-check your settings before publishing.":["\u767c\u4f48\u524d\u8acb\u518d\u6b21\u78ba\u8a8d\u76f8\u95dc\u8a2d\u5b9a\u3002"],"Generating preview\u2026":["\u6b63\u5728\u7522\u751f\u9810\u89bd..."],"Edit or update the image":["\u7de8\u8f2f\u6216\u66f4\u65b0\u5716\u7247"],Media:["\u5a92\u9ad4"],"Navigate to the nearest toolbar.":["\u5c0e\u89bd\u81f3\u6700\u63a5\u8fd1\u7684\u5de5\u5177\u5217"],"Document tools":["\u5167\u5bb9\u5de5\u5177"],"Document and block tools":["\u5167\u5bb9\u53ca\u5340\u584a\u5de5\u5177"],"Embed a video from your media library or upload a new one.":["\u5f9e\u5a92\u9ad4\u5eab\u4e2d\u5d4c\u5165\u8996\u8a0a\u6a94\uff0c\u6216\u4e0a\u50b3\u65b0\u7684\u8996\u8a0a\u6a94\u3002"],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["\u63d2\u5165\u8a69\u53e5\u6216\u5f15\u7528\u6b4c\u8a5e\uff0c\u5176\u4ed6\u6587\u5b57\u5167\u5bb9\u4e5f\u53ef\u4ee5\u5957\u7528\u9019\u500b\u5340\u584a\u7684\u7279\u6b8a\u5b57\u5143\u9593\u8ddd\u683c\u5f0f\u3002"],"Add white space between blocks and customize its height.":["\u5728\u5340\u584a\u4e4b\u9593\u52a0\u5165\u53ef\u8a2d\u5b9a\u9ad8\u5ea6\u7684\u7a7a\u767d\u9593\u683c\u3002"],"Insert additional custom elements with a WordPress shortcode.":["\u900f\u904e WordPress \u77ed\u4ee3\u78bc\u63d2\u5165\u5176\u4ed6\u81ea\u8a02\u5143\u7d20\u3002"],"Create a break between ideas or sections with a horizontal separator.":["\u4ee5\u6c34\u5e73\u5206\u9694\u7b26\u865f\u5728\u4e0d\u540c\u60f3\u6cd5\u6216\u7ae0\u7bc0\u4e4b\u9593\u5efa\u7acb\u5206\u9694\u3002"],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\xe1zar":["\u8ce6\u4e88\u5f15\u6587\u8996\u89ba\u5f37\u8abf\u6548\u679c\u3002\u300c\u5f15\u7528\u4ed6\u4eba\u7684\u8aaa\u6cd5\uff0c\u662f\u70ba\u4e86\u52a0\u5f37\u81ea\u5df1\u7684\u8ad6\u8ff0\u3002\u300d\uff0d\u80e1\u5229\u5967\xb7\u79d1\u5854\u85a9\u723e"],"Give special visual emphasis to a quote from your text.":["\u8ce6\u4e88\u5167\u5bb9\u7279\u5225\u7684\u8996\u89ba\u6548\u679c\u85c9\u4ee5\u5f37\u8abf\u5f15\u6587\u3002"],"Start with the building block of all narrative.":["\u6bb5\u843d\u662f\u6587\u5b57\u5167\u5bb9\u7684\u57fa\u672c\u8981\u7d20\uff0c\u8acb\u4ee5\u5b83\u70ba\u57fa\u790e\u958b\u59cb\u64b0\u5beb\u5167\u5bb9\u3002"],"Separate your content into a multi-page experience.":["\u5c07\u9577\u7bc7\u5167\u5bb9\u4ee5\u5206\u9801\u7b26\u865f\u5206\u9694\u6210\u591a\u500b\u9801\u9762\u3002"],"Set media and words side-by-side for a richer layout.":["\u8a2d\u5b9a\u5a92\u9ad4\u8207\u6587\u5b57\u5167\u5bb9\u4e26\u6392\u4ee5\u7372\u5f97\u66f4\u7cbe\u7f8e\u7684\u7248\u9762\u914d\u7f6e\u3002"],"Media & Text Settings":["\u5a92\u9ad4\u53ca\u6587\u5b57\u8a2d\u5b9a"],"Create a bulleted or numbered list.":["\u5efa\u7acb\u9805\u76ee\u7b26\u865f\u6216\u7de8\u865f\u6e05\u55ae\u3002"],"Display a list of your most recent comments.":["\u986f\u793a\u7db2\u7ad9\u4e0a\u8fd1\u671f\u7559\u8a00\u7684\u6e05\u55ae\u3002"],"Insert an image to make a visual statement.":["\u63d2\u5165\u5716\u7247\u4ee5\u9032\u884c\u8996\u89ba\u5316\u8aaa\u660e\u3002"],"Add custom HTML code and preview it as you edit.":["\u64b0\u5beb\u81ea\u8a02 HTML \u7a0b\u5f0f\u78bc\uff0c\u4e26\u53ef\u9810\u89bd\u7de8\u8f2f\u7d50\u679c\u3002"],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["\u4ecb\u7d39\u65b0\u7ae0\u7bc0\u4e26\u5354\u52a9\u8b80\u8005 (\u53ca\u641c\u5c0b\u5f15\u64ce) \u77ad\u89e3\u5167\u5bb9\u7684\u7d44\u7e54\u65b9\u5f0f\u3002"],"Display multiple images in a rich gallery.":["\u4ee5\u7cbe\u7f8e\u5716\u5eab\u7684\u65b9\u5f0f\u986f\u793a\u591a\u5f35\u5716\u7247\u3002"],"Add a link to a downloadable file.":["\u65b0\u589e\u53ef\u4e0b\u8f09\u55ae\u4e00\u6a94\u6848\u7684\u9023\u7d50\u3002"],"Embed videos, images, tweets, audio, and other content from external sources.":["\u5f9e\u5916\u90e8\u4f86\u6e90\u5d4c\u5165\u8996\u8a0a\u3001\u5716\u7247\u3001\u63a8\u6587\u3001\u97f3\u8a0a\u4ee5\u53ca\u5176\u4ed6\u5167\u5bb9\u3002"],"Resize for smaller devices":["\u70ba\u87a2\u5e55\u8f03\u5c0f\u7684\u88dd\u7f6e\u8abf\u6574\u5927\u5c0f"],"This embed may not preserve its aspect ratio when the browser is resized.":["\u9019\u9805\u5167\u5d4c\u5167\u5bb9\u5728\u8abf\u6574\u700f\u89bd\u5668\u5927\u5c0f\u6642\uff0c\u53ef\u80fd\u7121\u6cd5\u4fdd\u6301\u5176\u9577\u5bec\u6bd4\u3002"],"This embed will preserve its aspect ratio when the browser is resized.":["\u9019\u9805\u5167\u5d4c\u5167\u5bb9\u5728\u8abf\u6574\u700f\u89bd\u5668\u5927\u5c0f\u6642\uff0c\u6703\u4fdd\u6301\u5176\u9577\u5bec\u6bd4\u3002"],"Embed an Animoto video.":["\u5d4c\u5165 Animoto \u5f71\u7247\u3002"],"Embed a Vimeo video.":["\u5d4c\u5165 Vimeo \u5f71\u7247\u3002"],"Embed Flickr content.":["\u5d4c\u5165 Flickr \u5167\u5bb9\u3002"],"Embed Spotify content.":["\u5d4c\u5165 Spotify \u5167\u5bb9\u3002"],"Embed SoundCloud content.":["\u5d4c\u5165 SoundCloud \u5167\u5bb9\u3002"],"Embed a WordPress post.":["\u5d4c\u5165 WordPress \u5167\u5bb9\u3002"],"Embed an Instagram post.":["\u5d4c\u5165 Instagram \u8cbc\u6587\u3002"],"Embed a Facebook post.":["\u5d4c\u5165 Facebook \u8cbc\u6587\u3002"],"Embed a WordPress.tv video.":["\u5d4c\u5165 WordPress.tv \u5f71\u7247\u3002"],"Embed a VideoPress video.":["\u5d4c\u5165 VideoPress \u5f71\u7247\u3002"],"Embed a Tumblr post.":["\u5d4c\u5165 Tumblr \u6587\u7ae0\u3002"],"Embed a TED video.":["\u5d4c\u5165 TED \u5f71\u7247\u3002"],"Embed Speaker Deck content.":["\u5d4c\u5165 Speaker Deck \u5167\u5bb9\u3002"],"Embed a YouTube video.":["\u5d4c\u5165 YouTube \u5f71\u7247\u3002"],"Embed SmugMug content.":["\u5d4c\u5165 SmugMug \u5167\u5bb9\u3002"],"Embed Slideshare content.":["\u5d4c\u5165 Slideshare \u5167\u5bb9\u3002"],"Embed Scribd content.":["\u5d4c\u5165 Scribd \u5167\u5bb9\u3002"],"Embed Screencast content.":["\u5d4c\u5165 Screencast \u5167\u5bb9\u3002"],"Embed ReverbNation content.":["\u5d4c\u5165 ReverbNation \u5167\u5bb9\u3002"],"Embed a Reddit thread.":["\u5d4c\u5165 Reddit \u8a0e\u8ad6\u4e32\u3002"],"Embed Polldaddy content.":["\u5d4c\u5165 Polldaddy \u5167\u5bb9\u3002"],"Embed Mixcloud content.":["\u5d4c\u5165 Mixcloud \u5167\u5bb9\u3002"],"Embed a tweet.":["\u5d4c\u5165 Twitter \u63a8\u6587\u3002"],"Embed Meetup.com content.":["\u5d4c\u5165 Meetup.com \u5167\u5bb9\u3002"],"Embed Kickstarter content.":["\u5d4c\u5165 Kickstarter \u5167\u5bb9\u3002"],"Embed Issuu content.":["\u5d4c\u5165 Issuu \u5167\u5bb9\u3002"],"Embed Imgur content.":["\u5d4c\u5165 Imgur \u5167\u5bb9\u3002"],"Embed Hulu content.":["\u5d4c\u5165 Hulu \u5167\u5bb9\u3002"],"Embed a Dailymotion video.":["\u5d4c\u5165 DailyMotion \u5f71\u7247\u3002"],"Embed CollegeHumor content.":["\u5d4c\u5165 CollegeHumor \u5167\u5bb9\u3002"],"Embed Cloudup content.":["\u5d4c\u5165 Cloudup \u5167\u5bb9\u3002"],"Add an image or video with a text overlay \u2014 great for headers.":["\u70ba\u5167\u5bb9\u52a0\u5165\u5716\u7247\u6216\u5f71\u7247\uff0c\u4e26\u53ef\u5728\u5176\u4e0a\u52a0\u4e0a\u7c21\u77ed\u6587\u5b57\uff0c\u76f8\u7576\u9069\u5408\u5448\u73fe\u70ba\u5167\u5bb9\u9801\u9996\u3002"],"Display code snippets that respect your spacing and tabs.":["\u986f\u793a\u5b8c\u5168\u4fdd\u6301\u7a7a\u683c\u53ca\u5b9a\u4f4d\u9ede\u4e0d\u8b8a\u7684\u7a0b\u5f0f\u78bc\u7247\u6bb5\u3002"],"Use the classic WordPress editor.":["\u4f7f\u7528 WordPress \u50b3\u7d71\u7de8\u8f2f\u5668\u3002"],"Display a list of all categories.":["\u986f\u793a\u5168\u90e8\u5206\u985e\u7684\u6e05\u55ae\u3002"],"Embed a simple audio player.":["\u5d4c\u5165\u7c21\u6613\u97f3\u8a0a\u64ad\u653e\u5668\u3002"],"noun\x04View":["\u6aa2\u8996"],"editor button\x04Left to right":["\u5f9e\u5de6\u81f3\u53f3"],"Save as Pending":["\u5132\u5b58\u70ba\u5f85\u5be9\u95b1\u5167\u5bb9"],"%s address":["[%s] \u4f4d\u5740"],"Paste or type URL":["\u8cbc\u4e0a\u6216\u8f38\u5165\u7db2\u5740"],"Insert from URL":["\u5f9e\u7db2\u5740\u63d2\u5165"],"Block Navigator":["\u5340\u584a\u5c0e\u89bd\u5668"],Styles:["\u6a23\u5f0f"],"Advanced Panels":["\u9032\u968e\u9762\u677f"],"Document Panels":["\u5167\u5bb9\u9762\u677f"],General:["\u4e00\u822c"],"Open the block navigation menu.":["\u958b\u555f\u5340\u584a\u5c0e\u89bd\u9078\u55ae"],"Work without distraction":["\u4e0d\u53d7\u5e72\u64fe\u7684\u5beb\u4f5c\u65b9\u5f0f"],"Focus on one block at a time":["\u756b\u9762\u50c5\u6703\u805a\u7126\u65bc\u6b63\u5728\u7de8\u8f2f\u7684\u5340\u584a"],"Access all block and document tools in a single place":["\u53ef\u5728\u540c\u4e00\u4f4d\u7f6e\u4f7f\u7528\u6240\u6709\u5340\u584a\u53ca\u5167\u5bb9\u5de5\u5177"],Options:["\u8a2d\u5b9a"],"(opens in a new tab)":["(\u5728\u65b0\u5206\u9801\u4e2d\u958b\u555f)"],Minutes:["\u5206\u9418"],Hours:["\u5c0f\u6642"],Time:["\u6642\u9593"],Year:["\u5e74\u4efd"],Day:["\u65e5"],December:["12 \u6708"],November:["11 \u6708"],October:["10 \u6708"],September:["9 \u6708"],August:["8 \u6708"],July:["7 \u6708"],June:["6 \u6708"],May:["5 \u6708"],April:["4 \u6708"],March:["3 \u6708"],February:["2 \u6708"],January:["1 \u6708"],Month:["\u6708\u4efd"],Date:["\u65e5\u671f"],"Go to the first (home) or last (end) day of a week.":["\u4f7f\u7528 Home \u9375\u6216 End \u9375\u79fb\u52d5\u81f3\u8a72\u9031\u7684\u7b2c\u4e00\u5929\u6216\u6700\u5f8c\u4e00\u5929\u3002"],"Home/End":["Home/End"],"Home and End":["Home \u9375\u53ca End \u9375"],"Move backward (PgUp) or forward (PgDn) by one month.":["\u4f7f\u7528 PgUp \u9375\u6216 PgDn \u9375\u4ee5\u6708\u70ba\u55ae\u4f4d\u5411\u5f8c\u6216\u5411\u524d\u79fb\u52d5\u3002"],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up \u53ca Page Down"],"Move backward (up) or forward (down) by one week.":["\u4f7f\u7528\u5411\u4e0a\u9375\u6216\u5411\u4e0b\u9375\u4ee5\u9031\u70ba\u55ae\u4f4d\u5411\u5f8c\u6216\u5411\u524d\u79fb\u52d5\u3002"],"Up and Down Arrows":["\u5411\u4e0a\u9375\u53ca\u5411\u4e0b\u9375"],"Move backward (left) or forward (right) by one day.":["\u4f7f\u7528\u5411\u5de6\u9375\u6216\u5411\u53f3\u9375\u4ee5\u65e5\u70ba\u55ae\u4f4d\u5411\u5f8c\u6216\u5411\u524d\u79fb\u52d5\u3002"],"Left and Right Arrows":["\u5411\u5de6\u9375\u53ca\u5411\u53f3\u9375"],"Select the date in focus.":["\u9078\u53d6\u5df2\u6846\u9078\u7684\u65e5\u671f\u3002"],"Navigating with a keyboard":["\u9375\u76e4\u64cd\u4f5c\u65b9\u5f0f"],"Click the desired day to select it.":["\u9ede\u64ca\u6240\u9700\u7684\u65e5\u671f\u4fbf\u80fd\u9078\u53d6\u9019\u500b\u65e5\u671f\u3002"],"Click the right or left arrows to select other months in the past or the future.":["\u9ede\u64ca\u6708\u4efd\u540d\u7a31\u65c1\u7684\u5411\u53f3\u7bad\u865f\u6216\u5411\u5de6\u7bad\u865f\u4ee5\u9078\u53d6\u904e\u53bb\u6216\u672a\u4f86\u7684\u5176\u4ed6\u6708\u4efd\u3002"],"Click to Select":["\u9ede\u64ca\u4ee5\u9078\u53d6"],"Calendar Help":["\u6708\u66c6\u4f7f\u7528\u8aaa\u660e"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["\u4f7f\u7528\u9375\u76e4\u4e0a\u7684\u7bad\u865f\u9375\u4ee5\u8b8a\u66f4\u57fa\u6e96\u8272\u5f69\u3002\u5411\u4e0a\u9375\u53ca\u5411\u4e0b\u9375\u5206\u5225\u53ef\u4ee5\u6de1\u5316\u53ca\u6697\u5316\u8272\u5f69\uff0c\u5411\u5de6\u9375\u53ca\u5411\u53f3\u9375\u5206\u5225\u53ef\u4ee5\u964d\u4f4e\u53ca\u589e\u52a0\u98fd\u548c\u5ea6\u3002"],"Choose a shade":["\u9078\u53d6\u9670\u5f71"],"Change color format":["\u8b8a\u66f4\u8272\u5f69\u683c\u5f0f"],"Color value in HSL":["HSL \u8272\u5f69\u503c"],"Color value in RGB":["RGB \u8272\u5f69\u503c"],"Color value in hexadecimal":["Hex (\u5341\u516d\u9032\u4f4d) \u8272\u5f69\u503c"],"RGB mode active":["RGB \u6a21\u5f0f\u5df2\u555f\u7528"],"Hex color mode active":["Hex \u8272\u5f69\u6a21\u5f0f\u5df2\u555f\u7528"],"Hue/saturation/lightness mode active":["\u8272\u8abf/\u98fd\u548c\u5ea6/\u4eae\u5ea6\u6a21\u5f0f\u5df2\u555f\u7528"],"Move the arrow left or right to change hue.":["\u6309\u4e0b\u5411\u5de6\u9375\u6216\u5411\u53f3\u9375\u4ee5\u8b8a\u66f4\u8272\u8abf\u3002"],"Hue value in degrees, from 0 to 359.":["\u8272\u8abf\u503c\u4ee5\u5ea6\u70ba\u55ae\u4f4d\uff0c\u53ef\u8a2d\u5b9a\u70ba\u5f9e 0 \u81f3 359 \u9593\u7684\u6578\u503c\u3002"],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha \u503c\uff0c\u53ef\u8a2d\u5b9a\u70ba\u5f9e 0 (\u900f\u660e) \u81f3 1 (\u5b8c\u5168\u4e0d\u900f\u660e) \u9593\u7684\u6578\u503c\u3002"],Stripes:["\u689d\u7d0b"],"Your site doesn\u2019t include support for this block.":["\u9019\u500b\u7db2\u7ad9\u4e0d\u5305\u542b\u5c0d\u9019\u500b\u5340\u584a\u7684\u652f\u63f4\u3002"],"Unrecognized Block":["\u7121\u6cd5\u8b58\u5225\u7684\u5340\u584a"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\u9019\u500b\u7db2\u7ad9\u4e0d\u5305\u542b\u5c0d [%s] \u5340\u584a\u7684\u652f\u63f4\u3002\u5167\u5bb9\u4f5c\u8005\u53ef\u9078\u64c7\u4fdd\u6709\u9019\u500b\u5340\u584a\u7684\u5b8c\u6574\u6027\uff0c\u6216\u5c07\u5176\u5b8c\u5168\u79fb\u9664\u3002"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\u9019\u500b\u7db2\u7ad9\u4e0d\u5305\u542b\u5c0d [%s] \u5340\u584a\u7684\u652f\u63f4\u3002\u5167\u5bb9\u4f5c\u8005\u53ef\u9078\u64c7\u4fdd\u6709\u9019\u500b\u5340\u584a\u7684\u5b8c\u6574\u6027\u3001\u5c07\u5b83\u8f49\u63db\u6210 [\u81ea\u8a02 HTML] \u5340\u584a\uff0c\u6216\u5c07\u5176\u5b8c\u5168\u79fb\u9664\u3002"],"Media area":["\u5a92\u9ad4\u5340\u57df"],"Media & Text":["\u5a92\u9ad4\u53ca\u6587\u5b57"],"Show media on right":["\u5728\u53f3\u5074\u986f\u793a\u5a92\u9ad4"],"Show media on left":["\u5728\u5de6\u5074\u986f\u793a\u5a92\u9ad4"],"Open in New Tab":["\u5728\u65b0\u5206\u9801\u4e2d\u958b\u555f"],Cover:["\u5c01\u9762"],"Border Settings":["\u6846\u7dda\u8a2d\u5b9a"],"Edit media":["\u7de8\u8f2f\u5a92\u9ad4"],Medium:["\u4e2d\u578b\u5c3a\u5bf8"],"Paste URL or type to search":["\u8cbc\u4e0a\u6216\u8f38\u5165\u7db2\u5740\u4ee5\u641c\u5c0b"],Terms:["\u9805\u76ee"],"Your work will be published at the specified date and time.":["\u9019\u7bc7\u5167\u5bb9\u5c07\u6703\u767c\u4f48\u65bc\u6307\u5b9a\u7684\u65e5\u671f\u8207\u6642\u9593\u3002"],"Are you ready to schedule?":["\u78ba\u5b9a\u8981\u5c07\u9019\u7bc7\u5167\u5bb9\u9032\u884c\u6392\u7a0b\uff1f"],"Always show pre-publish checks.":["\u6c38\u9060\u986f\u793a\u767c\u4f48\u524d\u6aa2\u67e5\u9805\u76ee\u3002"],"Take Over":["\u63a5\u7ba1\u7de8\u8f2f\u5de5\u4f5c"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["\u53e6\u4e00\u4f4d\u4f7f\u7528\u8005\u76ee\u524d\u6b63\u5728\u7de8\u8f2f\u9019\u7bc7\u5167\u5bb9\uff0c\u9019\u4ee3\u8868\u9664\u975e\u4f60\u63a5\u7ba1\u7de8\u8f2f\u5de5\u4f5c\uff0c\u5426\u5247\u7121\u6cd5\u7de8\u8f2f\u9019\u7bc7\u5167\u5bb9\u3002"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["\u300c%s\u300d\u76ee\u524d\u6b63\u5728\u7de8\u8f2f\u9019\u7bc7\u5167\u5bb9\uff0c\u9019\u4ee3\u8868\u9664\u975e\u4f60\u63a5\u7ba1\u7de8\u8f2f\u5de5\u4f5c\uff0c\u5426\u5247\u7121\u6cd5\u7de8\u8f2f\u9019\u7bc7\u5167\u5bb9\u3002"],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u53e6\u4e00\u4f4d\u4f7f\u7528\u8005\u76ee\u524d\u5df2\u63a5\u7ba1\u9019\u7bc7\u5167\u5bb9\u7684\u7de8\u8f2f\u5de5\u4f5c\u3002\u4e0d\u5fc5\u64d4\u5fc3\uff0c\u622a\u81f3\u76ee\u524d\u70ba\u6b62\u7684\u7de8\u8f2f\u8b8a\u66f4\u5747\u5df2\u5132\u5b58\u3002"],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["\u300c%s\u300d\u76ee\u524d\u5df2\u63a5\u7ba1\u9019\u7bc7\u5167\u5bb9\u7684\u7de8\u8f2f\u5de5\u4f5c\u3002\u4e0d\u5fc5\u64d4\u5fc3\uff0c\u622a\u81f3\u76ee\u524d\u70ba\u6b62\u7684\u7de8\u8f2f\u8b8a\u66f4\u5747\u5df2\u5132\u5b58\u3002"],Avatar:["\u500b\u4eba\u982d\u50cf"],"This post is already being edited.":["\u9019\u7bc7\u5167\u5bb9\u5df2\u7d93\u904e\u7de8\u8f2f\u3002"],"Someone else has taken over this post.":["\u5df2\u6709\u5176\u4ed6\u4eba\u63a5\u7ba1\u4e86\u9019\u7bc7\u5167\u5bb9\u7684\u7de8\u8f2f\u5de5\u4f5c\u3002"],"This block contains unexpected or invalid content.":["\u9019\u500b\u5340\u584a\u5305\u542b\u672a\u9810\u671f\u6216\u7121\u6548\u7684\u5167\u5bb9\u3002"],"Resolve Block":["\u89e3\u6790\u5340\u584a"],"Convert to HTML":["\u8f49\u63db\u6210 HTML"],"This block can only be used once.":["\u9019\u500b\u5340\u584a\u50c5\u80fd\u4f7f\u7528\u4e00\u6b21\u3002"],"Exit Code Editor":["\u7d50\u675f\u7a0b\u5f0f\u78bc\u7de8\u8f2f\u5668"],"Editing Code":["\u7de8\u8f2f\u7a0b\u5f0f\u78bc"],"Solid Color":["\u7d14\u8272"],"Main Color":["\u4e3b\u8981\u8272\u5f69"],HTML:["HTML"],"Write HTML\u2026":["\u64b0\u5beb HTML \u7a0b\u5f0f\u78bc..."],"Media Settings":["\u5a92\u9ad4\u8a2d\u5b9a"],"Overlay Color":["\u8986\u758a\u8272\u5f69"],Overlay:["\u8986\u758a"],"Insert Media":["\u63d2\u5165\u5a92\u9ad4\u6a94\u6848"],"Reusable block imported successfully!":["\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a\u5df2\u6210\u529f\u532f\u5165\u3002"],"Invalid Reusable Block JSON file":["\u7121\u6548\u7684\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a JSON \u6a94\u6848"],"Invalid JSON file":["\u7121\u6548\u7684 JSON \u6a94\u6848"],"Import from JSON":["\u5f9e JSON \u6a94\u6848\u532f\u5165"],Backtick:["\u53cd\u5f15\u865f"],Period:["\u53e5\u865f"],Comma:["\u9017\u865f"],"Change type of %d block":["\u8b8a\u66f4 %d \u500b\u5340\u584a\u7684\u985e\u578b"],Current:["\u76ee\u524d\u7248\u672c"],"After Conversion":["\u8f49\u63db\u5f8c"],"Change alignment":["\u8b8a\u66f4\u5c0d\u9f4a\u65b9\u5f0f"],"Change text alignment":["\u8b8a\u66f4\u6587\u5b57\u5c0d\u9f4a\u65b9\u5f0f"],"%d block":["%d \u500b\u5340\u584a"],Escape:["ESC"],"Forward-slash":["\u6b63\u659c\u7dda"],"No archives to show.":["\u5c1a\u7121\u5f59\u6574\u53ef\u4f9b\u986f\u793a\u3002"],"This file is empty.":["\u6a94\u6848\u5167\u5bb9\u70ba\u7a7a\u3002"],"Sorry, this file type is not supported here.":["\u5f88\u62b1\u6b49\uff0c\u9019\u662f\u4e0d\u652f\u63f4\u7684\u6a94\u6848\u985e\u578b\u3002"],"Manage All Reusable Blocks":["\u7ba1\u7406\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a"],Title:["\u6a19\u984c"],"Fullscreen Mode":["\u5168\u87a2\u5e55\u6a21\u5f0f"],"Beautiful landscape":["\u7f8e\u9e97\u7684\u98a8\u666f"],"Close panel":["\u95dc\u9589\u9762\u677f"],"Convert to Classic Block":["\u8f49\u63db\u6210 [\u50b3\u7d71\u7de8\u8f2f\u5668] \u5340\u584a"],"Remove Poster Image":["\u79fb\u9664\u5ba3\u50b3\u5716\u7247"],"Select Poster Image":["\u9078\u53d6\u5ba3\u50b3\u5716\u7247"],"Poster Image":["\u5ba3\u50b3\u5716\u7247"],"This block is deprecated. Please use the Columns block instead.":["\u9019\u500b\u5340\u584a\u5df2\u6dd8\u6c70\u4e0d\u7528\uff0c\u8acb\u6539\u7528 [\u5167\u5bb9\u6b04] \u5340\u584a\u3002"],"Text Columns (deprecated)":["\u6587\u5b57\u6b04 (\u5df2\u6dd8\u6c70\u4e0d\u7528)"],"Row Count":["\u8cc7\u6599\u5217\u6578"],"Column Count":["\u8cc7\u6599\u884c\u6578"],"This block is deprecated. Please use the Paragraph block instead.":["\u9019\u500b\u5340\u584a\u5df2\u6dd8\u6c70\u4e0d\u7528\uff0c\u8acb\u6539\u7528 [\u6bb5\u843d] \u5340\u584a\u3002"],"Subheading (deprecated)":["\u5b50\u6a19\u984c (\u5df2\u6dd8\u6c70\u4e0d\u7528)"],blockquote:["\u6bb5\u843d\u5f15\u7528"],"Change the block type after adding a new paragraph.":["\u65b0\u589e\u6bb5\u843d\u5f8c\uff0c\u85c9\u4ee5\u8b8a\u66f4\u5340\u584a\u985e\u578b"],"Spotlight Mode":["\u5beb\u4f5c\u7126\u9ede\u6a21\u5f0f"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["\u6a19\u7c64\u80fd\u5920\u5354\u52a9\u4f7f\u7528\u8005\u53ca\u641c\u5c0b\u5f15\u64ce\u700f\u89bd\u9019\u500b\u7db2\u7ad9\u4e26\u627e\u5230\u5408\u9069\u7684\u5167\u5bb9\u3002\u8acb\u52a0\u5165\u4e00\u4e9b\u80fd\u8aaa\u660e\u6587\u7ae0\u5167\u5bb9\u7684\u95dc\u9375\u5b57\u3002"],"Add tags":["\u65b0\u589e\u6a19\u7c64"],"Apply the \"%1$s\" format.":["\u5957\u7528 [%1$s] \u6587\u7ae0\u683c\u5f0f\u3002"],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["\u76ee\u524d\u4f7f\u7528\u7684\u4f48\u666f\u4e3b\u984c\u4f7f\u7528\u6587\u7ae0\u683c\u5f0f\u5f37\u8abf\u4e0d\u540c\u985e\u578b\u7684\u5167\u5bb9\uff0c\u4f8b\u5982\u5716\u7247\u6216\u8996\u8a0a\u3002\u5957\u7528\u5176\u4e2d\u4e00\u7a2e\u6587\u7ae0\u683c\u5f0f\u4fbf\u80fd\u6aa2\u8996\u5176\u5c08\u5c6c\u6a23\u5f0f\u3002"],"Use a post format":["\u4f7f\u7528\u6587\u7ae0\u683c\u5f0f"],"Insert After":["\u65bc\u5f8c\u65b9\u63d2\u5165\u5340\u584a"],"Insert Before":["\u65bc\u524d\u65b9\u63d2\u5165\u5340\u584a"],"Move %1$d block from position %2$d down by one place":["\u5c07\u4f4d\u65bc%2$d\u7684 %1$d \u500b\u5340\u584a\u4e0b\u79fb\u4e00\u6b21"],"Move %1$d block from position %2$d up by one place":["\u5c07\u4f4d\u65bc%2$d\u7684 %1$d \u500b\u5340\u584a\u4e0a\u79fb\u4e00\u6b21"],"Move %1$s block from position %2$d %3$s to position %4$d":["\u5c07\u4f4d\u65bc%2$d\u7684 [%1$s] \u5340\u584a%3$s\u79fb\u52d5\u81f3%4$d"],movie:["\u96fb\u5f71"],"Insert a new block before the selected block(s).":["\u5728\u9078\u53d6\u5340\u584a\u7684\u524d\u65b9\u63d2\u5165\u65b0\u5340\u584a"],"Remove the selected block(s).":["\u79fb\u9664\u9078\u53d6\u7684\u5340\u584a"],"Duplicate the selected block(s).":["\u518d\u88fd\u9078\u53d6\u7684\u5340\u584a"],"Block shortcuts":["\u5340\u584a\u5feb\u901f\u9375"],"Clear selection.":["\u53d6\u6d88\u5167\u5bb9\u9078\u53d6"],"Select all text when typing. Press again to select all blocks.":["\u5beb\u4f5c\u6642\u6309\u4e00\u6b21\u53ef\u9078\u53d6\u7576\u524d\u5340\u584a\uff0c\u518d\u6309\u4e00\u6b21\u5373\u53ef\u9078\u53d6\u5168\u90e8\u5340\u584a"],"Selection shortcuts":["\u5167\u5bb9\u9078\u53d6\u5feb\u901f\u9375"],"Switch between Visual Editor and Code Editor.":["\u65bc [\u8996\u89ba\u5316\u7de8\u8f2f\u5668] \u8207 [\u7a0b\u5f0f\u78bc\u7de8\u8f2f\u5668] \u9593\u5207\u63db"],"Navigate to the previous part of the editor (alternative).":["\u524d\u5f80\u7de8\u8f2f\u5668\u7684\u4e0a\u4e00\u500b\u529f\u80fd\u5340\u57df (\u5099\u7528\u5feb\u901f\u9375)"],"Navigate to the next part of the editor (alternative).":["\u524d\u5f80\u7de8\u8f2f\u5668\u7684\u4e0b\u4e00\u500b\u529f\u80fd\u5340\u57df (\u5099\u7528\u5feb\u901f\u9375)"],"Navigate to the previous part of the editor.":["\u524d\u5f80\u7de8\u8f2f\u5668\u7684\u4e0a\u4e00\u500b\u529f\u80fd\u5340\u57df"],"Navigate to the next part of the editor.":["\u524d\u5f80\u7de8\u8f2f\u5668\u7684\u4e0b\u4e00\u500b\u529f\u80fd\u5340\u57df"],"Show or hide the settings sidebar.":["\u986f\u793a\u6216\u96b1\u85cf\u8a2d\u5b9a\u9762\u677f"],"Redo your last undo.":["\u53d6\u6d88\u5fa9\u539f\u8b8a\u66f4"],"Undo your last changes.":["\u5fa9\u539f\u8b8a\u66f4"],"Save your changes.":["\u5132\u5b58\u8b8a\u66f4"],"Global shortcuts":["\u5168\u57df\u5feb\u901f\u9375"],"Remove a link.":["\u79fb\u9664\u9023\u7d50"],"Convert the selected text into a link.":["\u5c07\u9078\u53d6\u5167\u5bb9\u8f49\u63db\u6210\u9023\u7d50"],"Underline the selected text.":["\u70ba\u9078\u53d6\u5167\u5bb9\u52a0\u4e0a\u5e95\u7dda"],"Make the selected text italic.":["\u5c07\u9078\u53d6\u5167\u5bb9\u8b8a\u66f4\u70ba\u659c\u9ad4"],"Make the selected text bold.":["\u5c07\u9078\u53d6\u5167\u5bb9\u8b8a\u66f4\u70ba\u7c97\u9ad4"],"Text formatting":["\u5167\u5bb9\u683c\u5f0f\u5316"],"Insert a new block after the selected block(s).":["\u5728\u9078\u53d6\u5340\u584a\u7684\u5f8c\u65b9\u63d2\u5165\u65b0\u5340\u584a"],"Keyboard Shortcuts":["\u9375\u76e4\u5feb\u901f\u9375"],"Thanks for testing Gutenberg!":["\u611f\u8b1d\u52a0\u5165\u6e2c\u8a66 Gutenberg \u7684\u884c\u5217"],"Help build Gutenberg":["\u5354\u52a9\u5efa\u7f6e Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["\u5982\u60f3\u9032\u4e00\u6b65\u77ad\u89e3\u5982\u4f55\u5efa\u7f6e\u5176\u4ed6\u5340\u584a\u7684\u76f8\u95dc\u8cc7\u8a0a\uff0c\u6216\u662f\u6709\u8208\u8da3\u5354\u52a9\u9019\u500b\u5c08\u6848\uff0c\u8acb\u9020\u8a2a GitHub \u5b58\u653e\u5eab\u3002"],"The WordPress community":["WordPress \u793e\u7fa4"],"Code is Poetry":["\u7a0b\u5f0f\u78bc\uff0c\u5982\u8a69"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["\u4f5c\u8005\u53ef\u4ee5\u4f7f\u7528\u4efb\u4f55\u81ea\u5df1\u559c\u597d\u7684\u5340\u584a\uff0c\u7121\u8ad6\u662f\u975c\u614b\u6216\u52d5\u614b\u3001\u5177\u5099\u88dd\u98fe\u6a23\u5f0f\u6216\u7d14\u6587\u5b57\u3002\u4ee5\u4e0b\u4fbf\u4ee5\u91cd\u8981\u5f15\u8ff0\u5340\u584a\u4f5c\u70ba\u793a\u7bc4\u3002"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["\u4efb\u4f55\u5340\u584a\u5747\u5177\u5099\u5c0d\u9f4a\u8a2d\u5b9a\uff0c\u4e0b\u65b9\u5d4c\u5165\u5167\u5bb9\u7684\u5340\u584a\u4ea6\u540c\uff0c\u4e14\u5d4c\u5165\u5167\u5bb9\u5f8c\u6703\u7acb\u5373\u5177\u5099\u56de\u61c9\u5f0f\u8a2d\u8a08\u3002"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["\u4e0a\u65b9\u662f\u500b\u53ea\u6709\u5169\u5f35\u5716\u7247\u7684\u5716\u5eab\u3002\u9019\u662f\u80fd\u5920\u66f4\u8f15\u6613\u5efa\u7acb\u5f15\u4eba\u6ce8\u610f\u7248\u9762\u914d\u7f6e\u7684\u65b9\u5f0f\uff0c\u800c\u7121\u9700\u8655\u7406\u5176\u4ed6\u7d30\u7bc0\u3002\u5982\u6709\u9700\u8981\uff0c\u9084\u53ef\u4ee5\u4f7f\u7528\u5340\u584a\u5207\u63db\u7a0b\u5f0f\u8f15\u9b06\u5730\u5c07\u5716\u5eab\u8f49\u63db\u6210\u4e00\u5f35\u5f35\u7684\u55ae\u5f35\u5716\u7247\u3002"],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["\u7576\u7136\uff0c\u5168\u5e45\u5bec\u5ea6\u5716\u7247\u6703\u4ee5\u76f8\u7576\u5927\u7684\u5c3a\u5bf8\u986f\u793a\uff0c\u4f46\u7684\u78ba\u9069\u5408\u5448\u73fe\u67d0\u4e9b\u5716\u7247\u3002"],"Accessibility is important — don’t forget image alt attribute":["\u5354\u52a9\u5de5\u5177\u76f8\u7576\u91cd\u8981 — \u8acb\u8a18\u5f97\u586b\u5beb\u5716\u7247\u66ff\u4ee3\u6587\u5b57\u5c6c\u6027"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["\u5982\u679c\u76ee\u524d\u4f7f\u7528\u7684\u4f48\u666f\u4e3b\u984c\u6574\u5408\u4e86\u5716\u5eab\u5716\u7247\u7684 [\u5bec\u5e45\u5bec\u5ea6] \u53ca [\u5168\u5e45\u5bec\u5ea6] \u986f\u793a\u65b9\u5f0f\uff0c\u4f5c\u8005\u4fbf\u80fd\u975e\u5e38\u5feb\u901f\u5730\u5efa\u7acb\u5177\u6709\u591a\u6a23\u5316\u5a92\u9ad4\u6a94\u6848\u5448\u73fe\u65b9\u5f0f\u7684\u7248\u9762\u914d\u7f6e\uff1a"],"Media Rich":["\u591a\u6a23\u5316\u7684\u5a92\u9ad4\u6a94\u6848\u5448\u73fe\u65b9\u5f0f"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["\u4f5c\u8005\u53ef\u62d6\u66f3\u4f4d\u65bc\u8cc7\u8a0a\u6b04\u5340\u584a\u4e2d\u7684\u6ed1\u687f\uff0c\u85c9\u4ee5\u8b8a\u66f4\u5716\u5eab\u7684\u5167\u5bb9\u6b04\u8a2d\u5b9a\u3002"],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["\u5340\u584a\u53ef\u4ee5\u6eff\u8db3\u4efb\u4f55\u5beb\u4f5c\u9700\u6c42\u3002\u8209\u4f8b\u4f86\u8aaa\uff0c\u4f5c\u8005\u6216\u8a31\u6703\u60f3\u8981\u52a0\u5165\u4f4e\u8abf\u7684\u5f15\u6587\u4f5c\u70ba\u5167\u5bb9\u7684\u4e00\u90e8\u4efd\uff0c\u6216\u662f\u504f\u597d\u986f\u793a\u4e00\u500b\u5927\u578b\u98a8\u683c\u5316\u7684\u5f15\u6587\uff0c\u800c\u5340\u584a\u63d2\u5165\u5668\u63d0\u4f9b\u4e86\u5168\u90e8\u76f8\u95dc\u8a2d\u5b9a\u3002"],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["\u8207\u5f15\u6587\u4f86\u6e90\u5c0d\u61c9\u7684\u8cc7\u8a0a\uff0c\u662f\u985e\u4f3c\u5716\u7247\u4e0b\u65b9\u5716\u8aaa\u7684\u500b\u5225\u6587\u5b57\u6b04\u4f4d\uff1b\u56e0\u6b64\u5373\u4f7f\u9032\u884c\u9078\u53d6\u3001\u4fee\u6539\u6216\u79fb\u9664\u4f86\u6e90\uff0c\u5f15\u6587\u7d50\u69cb\u4ecd\u6703\u53d7\u5230\u4fdd\u8b77\uff0c\u8981\u5c07\u5b83\u518d\u6b21\u52a0\u5165\u4e5f\u975e\u5e38\u7c21\u55ae\u3002"],"Matt Mullenweg, 2017":["Matt Mullenweg \u64b0\u65bc 2017 \u5e74"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has \u201cblocks\u201d to make it easy what today might take shortcodes, custom HTML, or \u201cmystery meat\u201d embed discovery.":["\u900f\u904e\u9019\u500b\u7de8\u8f2f\u5668\uff0c\u4fbf\u53ef\u5efa\u7acb\u9801\u9762\u53ca\u6587\u7ae0\uff0c\u800c\u9019\u5169\u8005\u5747\u80fd\u8f15\u9b06\u5efa\u7f6e\u51fa\u5448\u73fe\u591a\u6a23\u5316\u5167\u5bb9\u3001\u5177\u5099\u80fd\u4f7f\u7528\u77ed\u4ee3\u78bc\u3001\u81ea\u8a02 HTML \u6216\u5e38\u7528\u5d4c\u5165\u5167\u5bb9\u5340\u584a\u7684\u4f7f\u7528\u9ad4\u9a57\u3002"],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["\u5340\u584a\u7684\u660e\u986f\u512a\u52e2\u5c31\u662f\u4f5c\u8005\u53ef\u4ee5\u5c31\u5730\u7de8\u8f2f\u4e26\u76f4\u63a5\u63a7\u5236\u5167\u5bb9\u3002\u4f5c\u8005\u53ef\u4ee5\u76f4\u63a5\u4fee\u6539\u5167\u5bb9\uff0c\u800c\u4e0d\u662f\u900f\u904e\u6b04\u4f4d\u7de8\u8f2f\u5f15\u6587\u4f86\u6e90\u6216\u6309\u9215\u6587\u5b57\u7b49\u5167\u5bb9\u3002\u8acb\u8a66\u8457\u7de8\u8f2f\u4ee5\u4e0b\u5f15\u6587\uff1a"],"Visual Editing":["\u8996\u89ba\u5316\u7684\u7de8\u8f2f\u65b9\u5f0f"],"And Lists like this one of course :)":["\u4ee5\u53ca\u4ee5\u6e05\u55ae\u5340\u584a\u6240\u88fd\u4f5c\u7684\u9019\u4efd\u7bc4\u4f8b\u6e05\u55ae :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["\u63d0\u4f9b\u5404\u5f0f\u7248\u9762\u914d\u7f6e\u5340\u584a\uff0c\u4f8b\u5982\u6309\u9215\u3001\u5ba3\u50b3\u5716\u7247\u3001\u5206\u9694\u7b26\u865f\u7b49\u7b49\u3002"],"Embeds, like YouTube, Tweets, or other WordPress posts.":["\u53ef\u5d4c\u5165\u7b2c\u4e09\u65b9\u5167\u5bb9\uff0c\u4f8b\u5982 YouTube \u5f71\u7247\u3001Twitter \u7684\u63a8\u6587\u6216\u5176\u4ed6 WordPress \u7db2\u7ad9\u7684\u6587\u7ae0\u3002"],Galleries:["\u5716\u5eab"],"Images & Videos":["\u5716\u7247\u53ca\u8996\u8a0a"],"Text & Headings":["\u6bb5\u843d\u53ca\u6a19\u984c"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["\u8acb\u8a66\u8457\u63d2\u5165\u5340\u584a\uff0c\u4fbf\u6703\u767c\u73fe WordPress \u5df2\u5728\u5167\u5bb9\u4e2d\u52a0\u5165\u4e4b\u524d\u672a\u898b\u904e\u7684\u5143\u4ef6\u3002\u9019\u662f\u76ee\u524d\u9019\u7bc7\u793a\u7bc4\u5167\u5bb9\u4e2d\u7528\u5230\u5340\u584a\u7684\u7c21\u77ed\u6e05\u55ae\uff1a"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter\u2014the (+) button you’ll see around the editor\u2014which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["\u60f3\u50cf\u4e00\u4e0b\uff0c\u5728\u540c\u4e00\u8655\u4ecb\u9762\u4e2d\u4fbf\u53ef\u4ee5\u5feb\u901f\u5b8c\u6210 WordPress \u53ef\u4ee5\u505a\u7684\u4e00\u5207\uff0c\u7121\u9808\u77ad\u89e3 HTML \u6a19\u7c64\u3001\u985e\u5225\u6216\u8a18\u4f4f\u8907\u96dc\u7684\u77ed\u4ee3\u78bc\u8a9e\u6cd5\u3002\u5728\u7de8\u8f2f\u5668\u4e2d\u96a8\u8655\u53ef\u898b\u7684 (+) \u6309\u9215\uff0c\u53ef\u8b93\u4f5c\u8005\u700f\u89bd\u5168\u90e8\u53ef\u7528\u7684\u5167\u5bb9\u5340\u584a\uff0c\u4e26\u5c07\u5b83\u5011\u52a0\u5165\u5167\u5bb9\u4e2d\uff0c\u9019\u5c31\u662f\u5340\u584a\u63d2\u5165\u5668\u7684\u904b\u4f5c\u65b9\u5f0f\u3002\u5916\u639b\u53ca\u4f48\u666f\u4e3b\u984c\u900f\u904e\u8a3b\u518a\uff0c\u70ba\u591a\u6a23\u5316\u7684\u7de8\u8f2f\u53ca\u767c\u4f48\u62d3\u5c55\u4e86\u5404\u7a2e\u53ef\u80fd\u6027\u3002"],"The Inserter Tool":["\u5340\u584a\u63d2\u5165\u5668\u5de5\u5177"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["\u8acb\u8a66\u8457\u9078\u53d6\u3001\u79fb\u9664\u6216\u7de8\u8f2f\u5716\u8aaa\uff0c\u800c\u4e0d\u5fc5\u518d\u64d4\u5fc3\u56e0\u70ba\u72af\u932f\u6216\u6bc0\u640d\u5167\u5bb9\u800c\u5fc5\u9808\u5c0f\u5fc3\u7ffc\u7ffc\u7684\u9078\u53d6\u5716\u7247\u6216\u6587\u5b57\u3002"],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["\u5982\u679c\u4f7f\u7528\u4e2d\u7684\u4f48\u666f\u4e3b\u984c\u652f\u63f4\u9019\u9805\u529f\u80fd\uff0c\u4fbf\u6703\u5728\u5716\u7247\u5de5\u5177\u5217\u51fa\u73fe [\u5bec\u5e45\u5bec\u5ea6] \u53ca [\u5168\u5e45\u5bec\u5ea6] \u6309\u9215\u3002\u8acb\u8a66\u8a66\u9019\u9805\u529f\u80fd\u7684\u6548\u679c\u3002"],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["\u4ee5\u6700\u56b4\u8b39\u7684\u65b9\u5f0f\u8655\u7406\u5716\u7247\u53ca\u5a92\u9ad4\u6a94\u6848\u662f\u65b0\u7248\u7de8\u8f2f\u5668\u7684\u4e3b\u8981\u91cd\u9ede\u3002\u5e0c\u671b\u4f5c\u8005\u5011\u6703\u767c\u73fe\u52a0\u5165\u5716\u8aaa\u6216\u5168\u5e45\u5bec\u5ea6\u5716\u7247\u7684\u65b9\u5f0f\uff0c\u6bd4\u4ee5\u5f80\u66f4\u5bb9\u6613\u4e5f\u66f4\u5b8c\u6574\u3002"],"A Picture is Worth a Thousand Words":["\u4e00\u5716\u52dd\u5343\u6587"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["[\u6a19\u984c] \u662f\u6709\u52a9\u65bc\u5448\u73fe\u5167\u5bb9\u5927\u7db1\u53ca\u7d44\u7e54\u7684\u7368\u7acb\u5340\u584a\u3002"],"... like this one, which is right aligned.":["...\u5c31\u5982\u540c\u9019\u500b\u5340\u584a\uff0c\u6587\u5b57\u5167\u5bb9\u70ba\u9760\u53f3\u5c0d\u9f4a\u3002"],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["\u76ee\u524d\u6b63\u5728\u95b1\u8b80\u7684\u662f\u6bb5\u843d\u5340\u584a\uff0c\u9019\u662f\u6700\u57fa\u672c\u7684\u5340\u584a\uff1b\u6bb5\u843d\u5340\u584a\u6709\u81ea\u6709\u7684\u63a7\u5236\u9805\uff0c\u53ef\u96a8\u610f\u79fb\u52d5\u6587\u5b57\u5167\u5bb9\u4f4d\u7f6e..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content\u2014somewhat similar to LEGO bricks\u2014that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["\u958b\u767c\u9019\u6b3e\u65b0\u5f0f\u7de8\u8f2f\u5668\u7684\u76ee\u6a19\uff0c\u662f\u70ba\u4e86\u5728 WordPress \u52a0\u5165\u8c50\u5bcc\u5167\u5bb9\u6642\u8b8a\u5f97\u7c21\u55ae\u800c\u6709\u8da3\u3002\u4f7f\u7528 Gutengerg \u7de8\u8f2f\u5668\u7de8\u8f2f\u5167\u5bb9\uff0c\u6574\u7bc7\u5167\u5bb9\u6703\u7531\u985e\u4f3c\u6a02\u9ad8\u7a4d\u6728\u7684\u584a\u72c0\u5167\u5bb9\u6240\u7d44\u6210\uff0c\u4f5c\u8005\u53ef\u4ee5\u79fb\u52d5\u9019\u4e9b\u584a\u72c0\u5167\u5bb9\u4e26\u8207\u4e4b\u4e92\u52d5\u3002\u79fb\u52d5\u6e38\u6a19\u7684\u540c\u6642\uff0c\u61c9\u8a72\u6703\u6ce8\u610f\u5230\u4e0d\u540c\u7684\u5340\u584a\u6703\u4ee5\u5916\u6846\u53ca\u7bad\u865f\u52a0\u4ee5\u6a19\u793a\uff1b\u6309\u4e0b\u7bad\u865f\u5373\u53ef\u5feb\u901f\u91cd\u65b0\u6392\u5217\u5340\u584a\u4f4d\u7f6e\uff0c\u4e14\u4e0d\u5fc5\u64d4\u5fc3\u6703\u56e0\u70ba\u8907\u88fd\u53ca\u8cbc\u4e0a\u7684\u64cd\u4f5c\u800c\u907a\u5931\u5167\u5bb9\u3002"],"Of Mountains & Printing Presses":["\u6709\u5982\u5c71\u8108\u822c\u58ef\u89c0\u7684\u5370\u5237\u6a5f"],"Welcome to the Gutenberg Editor":["\u6b61\u8fce\u4f7f\u7528 Gutenberg \u7de8\u8f2f\u5668"],"block name\x04More":["\u95b1\u8b80\u5168\u6587"],"button to expand options\x04More":["\u66f4\u591a\u8a2d\u5b9a"],"Are you sure you want to unschedule this post?":["\u78ba\u5b9a\u8981\u53d6\u6d88\u9019\u7bc7\u5167\u5bb9\u7684\u6392\u7a0b\u72c0\u614b\uff1f"],"Alt Text (Alternative Text)":["\u66ff\u4ee3\u6587\u5b57"],"Reusable Block":["\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a"],"Unique identifier for the object.":["\u7269\u4ef6\u7684\u552f\u4e00\u8b58\u5225\u78bc\u3002"],"Untitled Reusable Block":["\u672a\u547d\u540d\u7684\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a"],Small:["\u5c0f\u578b\u5c3a\u5bf8"],"(%s: %s)":["(%s: %s)"],Reusable:["\u53ef\u91cd\u8907\u4f7f\u7528"],"(current %s: %s)":["(\u76ee\u524d %s: %s)"],"Remove from Reusable Blocks":["\u5f9e\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a\u4e2d\u79fb\u9664"],"Add to Reusable Blocks":["\u65b0\u589e\u81f3\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a"],"Keep as HTML":["\u4fdd\u7559 HTML \u7a0b\u5f0f\u78bc"],"Edit URL":["\u7de8\u8f2f\u7db2\u5740"],"Color Settings":["\u8272\u5f69\u8a2d\u5b9a"],"The response is not a valid JSON response.":["\u7121\u6548\u7684 JSON \u56de\u61c9\u3002"],"Editor publish":["\u7de8\u8f2f\u5668\u767c\u4f48"],Muted:["\u975c\u97f3"],"Video Settings":["\u8996\u8a0a\u8a2d\u5b9a"],"recent comments":["\u8fd1\u671f\u7559\u8a00"],"Latest Comments":["\u6700\u65b0\u7559\u8a00"],"Display Excerpt":["\u986f\u793a\u5167\u5bb9\u6458\u8981"],"Display Date":["\u986f\u793a\u65e5\u671f"],"Display Avatar":["\u986f\u793a\u500b\u4eba\u982d\u50cf"],"Latest Comments Settings":["\u6700\u65b0\u7559\u8a00\u8a2d\u5b9a"],"Number of Comments":["\u7559\u8a00\u986f\u793a\u6578\u91cf"],"Background Opacity":["\u80cc\u666f\u4e0d\u900f\u660e\u5ea6"],Auto:["\u81ea\u52d5\u64ad\u653e"],Preload:["\u9810\u5148\u8f09\u5165"],"Audio Settings":["\u97f3\u8a0a\u8a2d\u5b9a"],"Display a monthly archive of your posts.":["\u986f\u793a\u7db2\u7ad9\u6587\u7ae0\u7684\u6bcf\u6708\u5f59\u6574\u3002"],"Display as Dropdown":["\u986f\u793a\u70ba\u4e0b\u62c9\u5f0f\u9078\u55ae"],"Show Post Counts":["\u986f\u793a\u6587\u7ae0\u8a08\u6578"],"Archives Settings":["\u5f59\u6574\u8a2d\u5b9a"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],Support:["\u6280\u8853\u652f\u63f4"],"No comments to show.":["\u5c1a\u7121\u7559\u8a00\u53ef\u4f9b\u986f\u793a\u3002"],"%1$s on %2$s":["\u300c%1$s\u300d\u5728\u3008%2$s\u3009\u767c\u4f48\u7559\u8a00"],"Select Post":["\u9078\u53d6\u6587\u7ae0"],"Select Week":["\u9078\u53d6\u9031\u6b21"],"Select Day":["\u9078\u53d6\u65e5\u671f"],"Select Month":["\u9078\u53d6\u6708\u4efd"],"Select Year":["\u9078\u53d6\u5e74\u4efd"],Archives:["\u5f59\u6574"],"Very dark gray":["\u6697\u7070\u8272"],"Cyan bluish gray":["\u9752\u85cd\u7070\u8272"],"Very light gray":["\u4eae\u7070\u8272"],"Vivid cyan blue":["\u9bae\u9752\u85cd\u8272"],"Pale cyan blue":["\u6de1\u9752\u85cd\u8272"],"Vivid green cyan":["\u9bae\u7da0\u9752\u8272"],"Light green cyan":["\u4eae\u7da0\u9752\u8272"],"Luminous vivid amber":["\u4eae\u9bae\u7425\u73c0\u8272"],"Luminous vivid orange":["\u4eae\u9bae\u6a58\u8272"],"Vivid red":["\u9bae\u7d05\u8272"],"Pale pink":["\u6de1\u7c89\u8272"],"Inline image":["\u5167\u5d4c\u5716\u7247"],"Available block types":["\u53ef\u7528\u7684\u5340\u584a\u985e\u578b"],"Transform To:":["\u8f49\u63db\u6210\u5176\u4ed6\u985e\u578b\u5340\u584a:"],"Remove Block":["\u79fb\u9664\u5340\u584a"],"Open publish panel":["\u958b\u555f [\u767c\u4f48] \u9762\u677f"],Dots:["\u9ede\u72c0\u7dda\u6bb5"],"Wide Line":["\u9577\u7dda\u6bb5"],Large:["\u5927\u578b\u5c3a\u5bf8"],"Show download button":["\u986f\u793a\u4e0b\u8f09\u6309\u9215"],"Download button settings":["\u4e0b\u8f09\u6309\u9215\u8a2d\u5b9a"],"Link To":["\u9023\u7d50\u76ee\u6a19"],"Text link settings":["\u6587\u5b57\u9023\u7d50\u8a2d\u5b9a"],pdf:["PDF"],document:["\u6587\u4ef6"],"Copy URL":["\u8907\u88fd\u7db2\u5740"],"Write file name\u2026":["\u8f38\u5165\u6a94\u6848\u540d\u7a31..."],"Edit file":["\u7de8\u8f2f\u6a94\u6848"],File:["\u6a94\u6848"],"A single column within a columns block.":["\u5167\u5bb9\u6b04\u5340\u584a\u4e2d\u7684\u55ae\u4e00\u5167\u5bb9\u6b04\u3002"],Column:["\u55ae\u4e00\u5167\u5bb9\u6b04"],Outline:["\u5916\u6846\u6309\u9215"],Loop:["\u91cd\u8907\u64ad\u653e"],Autoplay:["\u81ea\u52d5\u64ad\u653e"],"Playback Controls":["\u64ad\u653e\u63a7\u5236\u9805"],"Close dialog":["\u95dc\u9589\u5c0d\u8a71\u65b9\u584a"],"Sorry, this file type is not permitted for security reasons.":["\u5f88\u62b1\u6b49\uff0c\u57fa\u65bc\u5b89\u5168\u6027\u8003\u91cf\uff0c\u7cfb\u7d71\u4e0d\u63a5\u53d7\u9019\u500b\u6a94\u6848\u985e\u578b\u3002"],"Disable tips":["\u505c\u7528\u4f7f\u7528\u63d0\u793a"],"Got it":["\u5b8c\u5168\u77ad\u89e3"],"See next tip":["\u6aa2\u8996\u4e0b\u4e00\u500b\u4f7f\u7528\u63d0\u793a"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["\u5167\u5bb9\u64b0\u5beb\u5b8c\u6210\u5f8c\uff0c\u8acb\u5c07\u8a72\u7bc7\u5167\u5bb9\u9001\u4ea4\u5be9\u95b1\uff0c\u4efb\u4f55\u4e00\u4f4d\u5177\u6709 [\u7de8\u8f2f] \u6b0a\u9650\u7684\u4f7f\u7528\u8005\u90fd\u80fd\u70ba\u4f60\u7684\u5167\u5bb9\u9032\u884c\u6838\u51c6\u3002"],"Are you ready to submit for review?":["\u78ba\u5b9a\u8981\u5c07\u9019\u7bc7\u5167\u5bb9\u9001\u4ea4\u5be9\u95b1\uff1f"],"Replace image":["\u66f4\u63db\u5716\u7247"],"Remove image":["\u79fb\u9664\u5716\u7247"],"Error while uploading file %s to the media library.":["\u4e0a\u50b3 %s \u81f3\u5a92\u9ad4\u5eab\u6642\u767c\u751f\u932f\u8aa4\u3002"],"This file exceeds the maximum upload size for this site.":["\u9019\u500b\u6a94\u6848\u8d85\u904e\u9019\u500b\u7db2\u7ad9\u7684\u6a94\u6848\u4e0a\u50b3\u5927\u5c0f\u9650\u5236\u3002"],"View the autosave":["\u6aa2\u8996\u81ea\u52d5\u5132\u5b58"],"There is an autosave of this post that is more recent than the version below.":["\u9019\u7bc7\u5167\u5bb9\u7684\u81ea\u52d5\u5132\u5b58\u7248\u672c\u6bd4\u76ee\u524d\u7de8\u8f2f\u5340\u7684\u5167\u5bb9\u66f4\u65b0\u3002"],Autosaving:["\u6b63\u5728\u81ea\u52d5\u5132\u5b58"],"Enter URL here\u2026":["\u5728\u9019\u88e1\u8f38\u5165\u7db2\u5740..."],"Pin to toolbar":["\u91d8\u9078\u81f3\u5de5\u5177\u5217"],"Unpin from toolbar":["\u5f9e\u5de5\u5177\u5217\u53d6\u6d88\u91d8\u9078"],"Insert a table \u2014 perfect for sharing charts and data.":["\u63d2\u5165\u8868\u683c\u662f\u5206\u4eab\u5716\u8868\u53ca\u8cc7\u6599\u7684\u7d55\u4f73\u65b9\u5f0f\u3002"],"Fixed width table cells":["\u56fa\u5b9a\u5bec\u5ea6\u7684\u8868\u683c\u5132\u5b58\u683c"],"Table Settings":["\u8868\u683c\u8a2d\u5b9a"],"Add text that respects your spacing and tabs, and also allows styling.":["\u53ef\u8f38\u5165\u5b8c\u5168\u4fdd\u6301\u7a7a\u683c\u53ca\u5b9a\u4f4d\u9ede\u4e0d\u8b8a\u7684\u6587\u5b57\u5167\u5bb9\uff0c\u4f46\u4ea6\u53ef\u5957\u7528\u82e5\u5e72\u6a23\u5f0f\u3002"],"Display a list of your most recent posts.":["\u986f\u793a\u7db2\u7ad9\u4e0a\u8fd1\u671f\u6587\u7ae0\u7684\u6e05\u55ae\u3002"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["\u52a0\u5165\u53ef\u5f9e Twitter\u3001Instagram \u6216 YouTube \u7b49\u7db2\u7ad9\u64f7\u53d6\u4e26\u986f\u793a\u5167\u5bb9\u7684\u5340\u584a\u3002"],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["\u65b0\u589e\u53ef\u986f\u793a\u591a\u6b04\u5167\u5bb9\u7684\u5340\u584a\uff0c\u4e26\u5728\u500b\u5225\u5340\u584a\u4e2d\u7684\u6b04\u4f4d\u52a0\u5165\u5404\u5f0f\u5167\u5bb9\u3002"],"Error loading block: %s":["\u8f09\u5165 [%s] \u5340\u584a\u6642\u767c\u751f\u932f\u8aa4"],"Unknown error":["\u672a\u77e5\u7684\u932f\u8aa4"],"Embed Handler":["\u5d4c\u5165\u5167\u5bb9\u8655\u7406\u5e38\u5f0f"],"term\x04Remove %s":["\u79fb\u9664 [%s]"],"Copy the permalink":["\u8907\u88fd\u6c38\u4e45\u9023\u7d50"],"Permalink copied":["\u6c38\u4e45\u9023\u7d50\u5df2\u8907\u88fd"],"Height in pixels":["\u9ad8\u5ea6 (\u4ee5\u50cf\u7d20 px \u70ba\u55ae\u4f4d)"],"Spacer Settings":["\u7a7a\u767d\u9593\u9694\u8a2d\u5b9a"],Spacer:["\u7a7a\u767d\u9593\u9694"],"Toggle to show a large initial letter.":["\u5207\u63db\u4ee5\u8a2d\u5b9a\u662f\u5426\u986f\u793a\u9996\u5b57\u5927\u5beb\u3002"],"Showing large initial letter.":["\u76ee\u524d\u8a2d\u5b9a\u70ba\u986f\u793a\u9996\u5b57\u5927\u5beb\u3002"],"Name:":["\u5340\u584a\u540d\u7a31:"],"%1$s (%2$s of %3$s)":["%1$s (\u7b2c %2$s \u500b\uff0c\u7e3d\u8a08 %3$s \u500b )"],"Remove item":["\u79fb\u9664\u9805\u76ee"],"Color code: %s":["\u8272\u5f69\u4ee3\u78bc: %s"],"Skip to the selected block":["\u524d\u5f80\u6240\u9078\u5340\u584a"],"Publish\u2026":["\u767c\u4f48..."],"Schedule\u2026":["\u6392\u7a0b..."],"Edit post permalink":["\u7de8\u8f2f\u5167\u5bb9\u6c38\u4e45\u9023\u7d50"],"Show Block Settings":["\u986f\u793a\u5340\u584a\u8a2d\u5b9a"],"Hide Block Settings":["\u96b1\u85cf\u5340\u584a\u8a2d\u5b9a"],"Block settings closed":["\u5340\u584a\u8a2d\u5b9a\u5df2\u95dc\u9589"],"Close plugin":["\u95dc\u9589\u5916\u639b"],"Link settings":["\u9023\u7d50\u8a2d\u5b9a"],Unlink:["\u53d6\u6d88\u9023\u7d50"],"Page break":["\u5206\u9801\u7b26\u865f"],pagination:["\u5206\u9801"],"next page":["\u4e0b\u4e00\u9801"],"Image Size":["\u5716\u7247\u5c3a\u5bf8"],Height:["\u9ad8\u5ea6"],Width:["\u5bec\u5ea6"],"Image Dimensions":["\u5716\u7247\u5c3a\u5bf8"],"Thumbnails are not cropped.":["\u7e2e\u5716\u4e0d\u9032\u884c\u88c1\u526a\u3002"],"Thumbnails are cropped to align.":["\u7e2e\u5716\u6703\u9032\u884c\u88c1\u526a\u4ee5\u4fbf\u5c0d\u9f4a\u3002"],"Media Library":["\u5a92\u9ad4\u5eab"],Advanced:["\u9032\u968e\u8a2d\u5b9a"],"Add item":["\u65b0\u589e\u9805\u76ee"],"Reset the template":["\u91cd\u8a2d\u7bc4\u672c"],"Keep it as is":["\u4fdd\u7559\u539f\u6a23"],"The content of your post doesn\u2019t match the template assigned to your post type.":["\u9019\u7bc7\u5167\u5bb9\u8207\u6307\u6d3e\u7d66\u9019\u500b\u5167\u5bb9\u985e\u578b\u7684\u7bc4\u672c\u4e0d\u76f8\u7b26\u3002"],"Resetting the template may result in loss of content, do you want to continue?":["\u91cd\u8a2d\u7bc4\u672c\u6709\u53ef\u80fd\u6703\u5c0e\u81f4\u5167\u5bb9\u907a\u5931\uff0c\u8981\u7e7c\u7e8c\u9032\u884c\u64cd\u4f5c\u55ce\uff1f"],"Document Statistics":["\u5167\u5bb9\u7d71\u8a08\u8cc7\u6599"],"is now scheduled. It will go live on":["\u7684\u5167\u5bb9\u5df2\u6392\u7a0b\u767c\u4f48\uff0c\u4e0a\u7dda\u6642\u9593\u70ba"],Scheduled:["\u5df2\u6392\u7a0b"],"Scheduling\u2026":["\u6b63\u5728\u6392\u7a0b..."],"Code editor selected":["\u7a0b\u5f0f\u78bc\u7de8\u8f2f\u5668\u5df2\u9078\u53d6"],"Visual editor selected":["\u8996\u89ba\u5316\u7de8\u8f2f\u5668\u5df2\u9078\u53d6"],Plugins:["\u5916\u639b"],"Custom Size":["\u81ea\u8a02\u5927\u5c0f"],"Layout Elements":["\u7248\u9762\u914d\u7f6e\u5143\u7d20"],"term\x04%s removed":["[%s] \u5df2\u79fb\u9664"],"term\x04%s added":["[%s] \u5df2\u65b0\u589e"],"imperative verb\x04Preview":["\u9810\u89bd"],"Block deleted.":["\u5340\u584a\u5df2\u522a\u9664\u3002"],"Block updated.":["\u5340\u584a\u5df2\u66f4\u65b0\u3002"],"Block created.":["\u5340\u584a\u5df2\u5efa\u7acb\u3002"],"Trashing failed":["\u79fb\u81f3\u56de\u6536\u6876\u767c\u751f\u932f\u8aa4"],"Updating failed.":["\u66f4\u65b0\u6642\u767c\u751f\u932f\u8aa4\u3002"],"Scheduling failed.":["\u6392\u7a0b\u6642\u767c\u751f\u932f\u8aa4\u3002"],"Publishing failed.":["\u767c\u4f48\u6642\u767c\u751f\u932f\u8aa4\u3002"],"View Post":["\u6aa2\u8996\u6587\u7ae0"],"You have unsaved changes. If you proceed, they will be lost.":["\u5c1a\u672a\u5132\u5b58\u8b8a\u66f4\u3002\u5982\u679c\u7e7c\u7e8c\u9032\u884c\uff0c\u5c07\u6703\u5931\u53bb\u5168\u90e8\u8b8a\u66f4\u3002"],"Document Outline":["\u5167\u5bb9\u5927\u7db1"],Paragraphs:["\u6bb5\u843d"],Headings:["\u6a19\u984c"],Words:["\u5b57\u6578"],"Content structure":["\u5167\u5bb9\u7d50\u69cb"],Public:["\u516c\u958b"],"Protected with a password you choose. Only those with the password can view this post.":["\u900f\u904e\u4f5c\u8005\u8f38\u5165\u7684\u5bc6\u78bc\u4fdd\u8b77\u6587\u7ae0\u5167\u5bb9\u3002\u50c5\u6709\u77e5\u6089\u5bc6\u78bc\u7684\u4eba\u624d\u80fd\u6aa2\u8996\u9019\u7bc7\u5167\u5bb9\u3002"],"Password Protected":["\u5bc6\u78bc\u4fdd\u8b77"],"Only visible to site admins and editors.":["\u50c5\u7db2\u7ad9\u7ba1\u7406\u54e1\u53ca\u7de8\u8f2f\u53ef\u6aa2\u8996\u3002"],Private:["\u79c1\u5bc6"],"Visible to everyone.":["\u5168\u90e8\u7db2\u7ad9\u8a2a\u5ba2\u5747\u53ef\u6aa2\u8996\u3002"],"Post Visibility":["\u5167\u5bb9\u53ef\u898b\u5ea6"],"Would you like to privately publish this post now?":["\u78ba\u5b9a\u8981\u5c07\u9019\u7bc7\u5167\u5bb9\u767c\u4f48\u70ba\u79c1\u5bc6\u5167\u5bb9\uff1f"],"Use a secure password":["\u4f7f\u7528\u5b89\u5168\u7684\u5bc6\u78bc"],"Create password":["\u5efa\u7acb\u5bc6\u78bc"],"Move to Trash":["\u79fb\u81f3\u56de\u6536\u6876"],"Parent Term":["\u4e0a\u5c64\u9805\u76ee"],"Parent Category":["\u4e0a\u5c64\u5206\u985e"],"Add new term":["\u65b0\u589e\u985e\u5225"],"Add new category":["\u65b0\u589e\u5206\u985e"],Term:["\u5b57\u8a5e"],Tag:["\u6a19\u7c64"],"Add New Term":["\u65b0\u589e\u5b57\u8a5e"],"Add New Tag":["\u65b0\u589e\u6a19\u7c64"],"Switch to Draft":["\u91cd\u8a2d\u70ba\u8349\u7a3f"],"Are you sure you want to unpublish this post?":["\u78ba\u5b9a\u8981\u53d6\u6d88\u9019\u7bc7\u5167\u5bb9\u7684\u767c\u4f48\u72c0\u614b\uff1f"],Immediately:["\u7acb\u5373\u6392\u7a0b"],"Save Draft":["\u5132\u5b58\u8349\u7a3f"],Saving:["\u6b63\u5728\u5132\u5b58"],"Publish:":["\u767c\u4f48\u6642\u9593:"],"Visibility:":["\u53ef\u898b\u5ea6:"],"Are you ready to publish?":["\u78ba\u5b9a\u8981\u5c07\u9019\u7bc7\u5167\u5bb9\u9032\u884c\u767c\u4f48\uff1f"],"Copy Link":["\u8907\u88fd\u9023\u7d50"],"What\u2019s next?":["\u4e0b\u4e00\u6b65\u64cd\u4f5c"],"is now live.":["\u7684\u5167\u5bb9\u5df2\u4e0a\u7dda\u3002"],Published:["\u5df2\u767c\u4f48"],Schedule:["\u6392\u7a0b"],Update:["\u66f4\u65b0"],"Submit for Review":["\u9001\u4ea4\u5be9\u95b1"],"Updating\u2026":["\u6b63\u5728\u66f4\u65b0..."],"Publishing\u2026":["\u6b63\u5728\u767c\u4f48..."],"Allow Pingbacks & Trackbacks":["\u958b\u653e\u81ea\u52d5\u5f15\u7528\u901a\u77e5\u53ca\u5f15\u7528\u901a\u77e5"],"Permalink:":["\u6c38\u4e45\u9023\u7d50:"],"Pending Review":["\u9001\u4ea4\u5be9\u95b1"],"%d Revision":["%d \u4efd\u5167\u5bb9\u4fee\u8a02"],"Suggestion:":["\u5efa\u8b70\u6a23\u5f0f:"],"Post Format":["\u6587\u7ae0\u683c\u5f0f"],Chat:["\u804a\u5929\u8a18\u9304"],Status:["\u8fd1\u6cc1\u66f4\u65b0"],Standard:["\u6a19\u6e96"],Aside:["\u8a18\u4e8b"],"Set Featured Image":["\u8a2d\u5b9a\u7cbe\u9078\u5716\u7247"],"Learn more about manual excerpts":["\u9032\u4e00\u6b65\u77ad\u89e3\u624b\u52d5\u8f38\u5165\u5167\u5bb9\u6458\u8981"],"Write an excerpt (optional)":["\u64b0\u5beb\u5167\u5bb9\u6458\u8981 (\u9078\u7528)"],"Allow Comments":["\u958b\u653e\u7559\u8a00"],"Template:":["\u7bc4\u672c:"],"no parent":["\u7121\u4e0a\u5c64\u9805\u76ee"],"no title":["\u7121\u6a19\u984c"],Order:["\u9806\u5e8f"],"No blocks found.":["\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u5340\u584a\u3002"],"%d result found.":["\u627e\u5230 %d \u9805\u641c\u5c0b\u7d50\u679c\u3002"],Saved:["\u5df2\u5132\u5b58"],Embeds:["\u5d4c\u5165\u5167\u5bb9"],Blocks:["\u5340\u584a"],"Search for a block":["\u641c\u5c0b\u5340\u584a"],"Add block":["\u65b0\u589e\u5340\u584a"],"Add %s":["\u65b0\u589e [%s] \u5340\u584a"],"Copy Error":["\u8907\u88fd\u932f\u8aa4\u8a0a\u606f"],"Copy Post Text":["\u8907\u88fd\u6587\u7ae0\u5167\u5bb9"],"Attempt Recovery":["\u5617\u8a66\u5fa9\u539f"],"The editor has encountered an unexpected error.":["\u7de8\u8f2f\u5668\u767c\u751f\u672a\u77e5\u7684\u932f\u8aa4\u3002"],Undo:["\u5fa9\u539f"],Redo:["\u91cd\u505a"],"(Multiple H1 headings are not recommended)":["(\u4e0d\u5efa\u8b70\u5728\u540c\u4e00\u7bc7\u5167\u5bb9\u4e2d\u6709\u591a\u500b H1 \u6a19\u984c)"],"(Your theme may already use a H1 for the post title)":["(\u76ee\u524d\u4f7f\u7528\u7684\u4f48\u666f\u4e3b\u984c\u5df2\u4f7f\u7528 H1 \u4f5c\u70ba\u6587\u7ae0\u6a19\u984c)"],"(Incorrect heading level)":["(\u4e0d\u6b63\u78ba\u7684\u6a19\u984c\u968e\u5c64)"],"(Empty heading)":["(\u7121\u6a19\u984c)"],"Block Styles":["\u5340\u584a\u6a23\u5f0f"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["\u78ba\u5b9a\u8981\u522a\u9664\u9019\u500b\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a\u55ce\uff1f\n\n\u9019\u9805\u64cd\u4f5c\u6703\u5728\u5168\u90e8\u4f7f\u7528\u5230\u9019\u500b\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a\u7684\u6587\u7ae0\u6216\u9801\u9762\u4e2d\uff0c\u5c07\u5b83\u6c38\u4e45\u79fb\u9664\u3002"],"Convert to Regular Block":["\u8f49\u63db\u6210\u4e00\u822c\u5340\u584a"],"More options":["\u66f4\u591a\u8a2d\u5b9a"],"Edit visually":["\u8996\u89ba\u5316\u7de8\u8f2f"],Duplicate:["\u518d\u88fd"],"Blocks cannot be moved down as they are already at the bottom":["\u7531\u65bc\u5df2\u5728\u5167\u5bb9\u5c3e\u7aef\uff0c\u5340\u584a\u7121\u6cd5\u7e7c\u7e8c\u4e0b\u79fb"],"Blocks cannot be moved up as they are already at the top":["\u7531\u65bc\u5df2\u5728\u5167\u5bb9\u9802\u7aef\uff0c\u5340\u584a\u7121\u6cd5\u7e7c\u7e8c\u4e0a\u79fb"],"Block %1$s is at the beginning of the content and can\u2019t be moved %2$s":["[%1$s] \u5340\u584a\u5df2\u4f4d\u65bc\u5167\u5bb9\u9802\u7aef\uff0c\u56e0\u6b64\u7121\u6cd5%2$s\u79fb\u52d5"],"Block %1$s is at the end of the content and can\u2019t be moved %2$s":["[%1$s] \u5340\u584a\u5df2\u4f4d\u65bc\u5167\u5bb9\u5c3e\u7aef\uff0c\u56e0\u6b64\u7121\u6cd5%2$s\u79fb\u52d5"],"Block %s is the only block, and cannot be moved":["[%s] \u5340\u584a\u662f\u76ee\u524d\u5167\u5bb9\u4e2d\u552f\u4e00\u7684\u5340\u584a\uff0c\u7121\u6cd5\u9032\u884c\u79fb\u52d5"],"Edit as HTML":["\u7de8\u8f2f HTML \u7a0b\u5f0f\u78bc"],"Convert to Blocks":["\u8f49\u63db\u6210\u5340\u584a"],"Block: %s":["\u5340\u584a: %s"],"This block has encountered an error and cannot be previewed.":["\u9019\u500b\u5340\u584a\u767c\u751f\u932f\u8aa4\uff0c\u5c0e\u81f4\u7121\u6cd5\u9032\u884c\u9810\u89bd\u3002"],"No block selected.":["\u672a\u9078\u53d6\u4efb\u4f55\u5340\u584a\u3002"],"Transform into:":["\u8f49\u63db\u6210\u5176\u4ed6\u985e\u578b\u5340\u584a:"],Remove:["\u79fb\u9664"],"Find original":["\u5c0b\u627e\u539f\u59cb\u5167\u5bb9"],"Copy All Content":["\u8907\u88fd\u5168\u90e8\u5167\u5bb9"],"Copied!":["\u5df2\u5b8c\u6210\u8907\u88fd\uff01"],"Additional settings are now available in the Editor block settings sidebar":["\u5728\u7de8\u8f2f\u5668\u5340\u584a\u8a2d\u5b9a\u8cc7\u8a0a\u6b04\u63d0\u4f9b\u4e86\u5176\u4ed6\u8a2d\u5b9a"],Visibility:["\u53ef\u898b\u5ea6"],"Status & Visibility":["\u72c0\u614b\u53ca\u53ef\u898b\u5ea6"],"Page Attributes":["\u9801\u9762\u5c6c\u6027"],Block:["\u5340\u584a"],Document:["\u5167\u5bb9"],"Featured Image":["\u7cbe\u9078\u5716\u7247"],"Close settings":["\u95dc\u9589\u8a2d\u5b9a"],"Editor content":["\u7de8\u8f2f\u5668\u5167\u5bb9"],Tools:["\u5de5\u5177"],Editor:["\u7de8\u8f2f\u5668"],"Code Editor":["\u7a0b\u5f0f\u78bc\u7de8\u8f2f\u5668"],"Visual Editor":["\u8996\u89ba\u5316\u7de8\u8f2f\u5668"],"Editor top bar":["\u7de8\u8f2f\u5668\u9802\u7aef\u5217"],Settings:["\u8a2d\u5b9a"],Reset:["\u91cd\u8a2d"],"Dismiss this notice":["\u95dc\u9589\u9019\u9805\u901a\u77e5"],"Item removed.":["\u9805\u76ee\u5df2\u79fb\u9664\u3002"],"Item added.":["\u9805\u76ee\u5df2\u65b0\u589e\u3002"],"Drop files to upload":["\u62d6\u66f3\u6a94\u6848\u4ee5\u4e0a\u50b3"],PM:["\u4e0b\u5348"],AM:["\u4e0a\u5348"],"An unknown error occurred.":["\u767c\u751f\u672a\u77e5\u7684\u932f\u8aa4\u3002"],"No results.":["\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u7d50\u679c\u3002"],"%d result found, use up and down arrow keys to navigate.":["\u627e\u5230 %d \u500b\u7d50\u679c\uff0c\u8acb\u4f7f\u7528\u4e0a\u4e0b\u65b9\u5411\u9375\u9032\u884c\u5de1\u89bd\u3002"],"(no title)":["(\u7121\u6a19\u984c)"],URL:["\u7db2\u5740"],Submit:["\u50b3\u9001"],Close:["\u95dc\u9589"],"Insert link":["\u63d2\u5165\u9023\u7d50"],"Edit link":["\u7de8\u8f2f\u9023\u7d50"],Link:["\u9023\u7d50"],Strikethrough:["\u522a\u9664\u7dda"],Italic:["\u659c\u9ad4"],Bold:["\u7c97\u9ad4"],"Remove link":["\u79fb\u9664\u9023\u7d50"],"Number of items":["\u9805\u76ee\u6578\u91cf"],All:["\u5168\u90e8\u5206\u985e"],Category:["\u5206\u985e"],"Z \u2192 A":["\u6a19\u984c\u964d\u51aa\u6392\u5e8f"],"A \u2192 Z":["\u6a19\u984c\u5347\u51aa\u6392\u5e8f"],"Oldest to Newest":["\u5f9e\u6700\u820a\u5230\u6700\u65b0\u6392\u5e8f"],"Newest to Oldest":["\u5f9e\u6700\u65b0\u5230\u6700\u820a\u6392\u5e8f"],"Order by":["\u6392\u5e8f\u65b9\u5f0f"],Select:["\u9078\u53d6"],"Select or Upload Media":["\u9078\u53d6\u6216\u4e0a\u50b3\u5a92\u9ad4\u6a94\u6848"],Video:["\u8996\u8a0a"],"Edit video":["\u7de8\u8f2f\u8996\u8a0a"],"Write\u2026":["\u64b0\u5beb..."],poetry:["\u8a69\u53e5"],Verse:["\u8a69\u53e5"],"New Column":["\u65b0\u589e\u6587\u5b57\u6b04"],"Delete Column":["\u522a\u9664\u8cc7\u6599\u884c"],"Add Column After":["\u5728\u76ee\u524d\u4f4d\u7f6e\u5f8c\u65b9\u63d2\u5165\u8cc7\u6599\u884c"],"Add Column Before":["\u5728\u76ee\u524d\u4f4d\u7f6e\u524d\u65b9\u63d2\u5165\u8cc7\u6599\u884c"],"Delete Row":["\u522a\u9664\u8cc7\u6599\u5217"],"Add Row After":["\u5728\u76ee\u524d\u4f4d\u7f6e\u4e0b\u65b9\u63d2\u5165\u8cc7\u6599\u5217"],"Add Row Before":["\u5728\u76ee\u524d\u4f4d\u7f6e\u4e0a\u65b9\u63d2\u5165\u8cc7\u6599\u5217"],"Edit table":["\u7de8\u8f2f\u8868\u683c"],Table:["\u8868\u683c"],"Write subheading\u2026":["\u64b0\u5beb\u5b50\u6a19\u984c..."],"Write shortcode here\u2026":["\u5728\u9019\u88e1\u8f38\u5165\u77ed\u4ee3\u78bc..."],Shortcode:["\u77ed\u4ee3\u78bc"],divider:["\u5206\u9694\u7dda"],"horizontal-line":["\u6c34\u5e73\u7dda"],Separator:["\u5206\u9694\u7b26\u865f"],Quote:["\u5f15\u6587"],"Write citation\u2026":["\u64b0\u5beb\u5f15\u6587..."],"Write quote\u2026":["\u64b0\u5beb\u91cd\u8981\u5f15\u8ff0..."],Pullquote:["\u91cd\u8981\u5f15\u8ff0"],"Write preformatted text\u2026":["\u64b0\u5beb\u672a\u683c\u5f0f\u5316\u6587\u5b57..."],Preformatted:["\u672a\u683c\u5f0f\u5316\u6587\u5b57"],text:["\u6587\u5b57"],Paragraph:["\u6bb5\u843d"],"Font Size":["\u5b57\u578b\u5927\u5c0f"],"Drop Cap":["\u9996\u5b57\u653e\u5927"],"Text Settings":["\u6587\u5b57\u8a2d\u5b9a"],"Read more":["\u95b1\u8b80\u5168\u6587"],"Write list\u2026":["\u64b0\u5beb\u6e05\u55ae..."],"numbered list":["\u7de8\u865f\u6e05\u55ae"],"ordered list":["\u6392\u5e8f\u6e05\u55ae"],"bullet list":["\u9805\u76ee\u7b26\u865f\u6e05\u55ae"],"Indent list item":["\u589e\u52a0\u7e2e\u6392\u6e05\u55ae\u9805\u76ee"],"Outdent list item":["\u6e1b\u5c11\u7e2e\u6392\u6e05\u55ae\u9805\u76ee"],"Convert to ordered list":["\u8f49\u63db\u6210\u6392\u5e8f\u6e05\u55ae"],"Convert to unordered list":["\u8f49\u63db\u6210\u4e0d\u6392\u5e8f\u6e05\u55ae"],List:["\u6e05\u55ae"],"recent posts":["\u8fd1\u671f\u6587\u7ae0"],"No posts found.":["\u627e\u4e0d\u5230\u7b26\u5408\u689d\u4ef6\u7684\u5167\u5bb9\u3002"],"Latest Posts":["\u6700\u65b0\u6587\u7ae0"],"Display post date":["\u986f\u793a\u5167\u5bb9\u767c\u4f48\u65e5\u671f"],"Grid view":["\u683c\u72c0\u6aa2\u8996"],"List view":["\u6e05\u55ae\u6aa2\u8996"],photo:["\u76f8\u7247"],"Image Settings":["\u5716\u7247\u8a2d\u5b9a"],Image:["\u5716\u7247"],Preview:["\u9810\u89bd"],embed:["\u5d4c\u5165"],"Custom HTML":["\u81ea\u8a02 HTML"],subtitle:["\u5b50\u6a19\u984c"],title:["\u6a19\u984c"],Heading:["\u6a19\u984c"],"Write heading\u2026":["\u64b0\u5beb\u6a19\u984c..."],"Heading %d":["\u6a19\u984c %d"],Level:["\u6a19\u984c\u968e\u5c64"],"Heading Settings":["\u6a19\u984c\u8a2d\u5b9a"],photos:["\u76f8\u7247"],images:["\u5716\u7247"],"Remove Image":["\u79fb\u9664\u5716\u7247"],None:["\u4e0d\u9032\u884c\u9023\u7d50"],"Media File":["\u5a92\u9ad4\u6a94\u6848"],"Attachment Page":["\u9644\u4ef6\u9801\u9762"],"Crop Images":["\u88c1\u526a\u5716\u7247"],"Gallery Settings":["\u5716\u5eab\u8a2d\u5b9a"],Gallery:["\u5716\u5eab"],Classic:["\u50b3\u7d71\u7de8\u8f2f\u5668"],video:["\u8996\u8a0a"],audio:["\u97f3\u8a0a"],music:["\u97f3\u6a02"],image:["\u5716\u7247"],blog:["\u90e8\u843d\u683c"],post:["\u6587\u7ae0"],"Embedded content from %s":["\u4f86\u81ea %s \u7684\u5d4c\u5165\u5167\u5bb9"],"Enter URL to embed here\u2026":["\u5728\u9019\u88e1\u8f38\u5165\u7db2\u5740\u4ee5\u5d4c\u5165\u5167\u5bb9..."],"%s URL":["%s \u7db2\u5740"],"Embedding\u2026":["\u6b63\u5728\u5d4c\u5165\u5167\u5bb9..."],"Write title\u2026":["\u64b0\u5beb\u6a19\u984c..."],"Fixed Background":["\u80cc\u666f\u56fa\u5b9a\u4f4d\u7f6e"],"Edit image":["\u7de8\u8f2f\u5716\u7247"],Columns:["\u5167\u5bb9\u6b04"],Experiments:["\u5be6\u9a57\u6027\u529f\u80fd"],Code:["\u7a0b\u5f0f\u78bc"],"Write code\u2026":["\u64b0\u5beb\u7a0b\u5f0f\u78bc..."],Categories:["\u5206\u985e"],"Show Hierarchy":["\u986f\u793a\u5206\u985e\u968e\u5c64"],"Show post counts":["\u986f\u793a\u6587\u7ae0\u6578\u91cf"],"Categories Settings":["\u5206\u985e\u8a2d\u5b9a"],"Add text\u2026":["\u52a0\u5165\u6587\u5b57..."],Button:["\u6309\u9215"],Apply:["\u5957\u7528"],"Text Color":["\u6587\u5b57\u8272\u5f69"],"Background Color":["\u80cc\u666f\u8272\u5f69"],"Block has been deleted or is unavailable.":["\u5340\u584a\u5df2\u522a\u9664\u6216\u7121\u6cd5\u4f7f\u7528\u3002"],"Reusable Blocks":["\u53ef\u91cd\u8907\u4f7f\u7528\u5340\u584a"],Cancel:["\u53d6\u6d88"],Edit:["\u7de8\u8f2f"],"Edit audio":["\u7de8\u8f2f\u97f3\u8a0a"],"Write caption\u2026":["\u64b0\u5beb\u8aaa\u660e..."],"Use URL":["\u63d2\u5165\u7db2\u5740"],Audio:["\u97f3\u8a0a"],Upload:["\u4e0a\u50b3"],"Additional CSS Class(es)":["\u9644\u52a0\u7684 CSS \u985e\u5225"],"HTML Anchor":["HTML \u9328\u9ede"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["\u9019\u7a2e\u8272\u5f69\u7d44\u5408\u6703\u4f7f\u8b80\u8005\u96e3\u4ee5\u95b1\u8b80\uff0c\u8acb\u6539\u7528\u8f03\u4eae\u7684\u80cc\u666f\u8272\u5f69\u642d\u914d\u8f03\u6697\u7684\u6587\u5b57\u8272\u5f69\u3002"],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["\u9019\u7a2e\u8272\u5f69\u7d44\u5408\u6703\u4f7f\u8b80\u8005\u96e3\u4ee5\u95b1\u8b80\uff0c\u8acb\u6539\u7528\u8f03\u6697\u7684\u80cc\u666f\u8272\u5f69\u642d\u914d\u8f03\u4eae\u7684\u6587\u5b57\u8272\u5f69\u3002"],Clear:["\u6e05\u9664"],"Custom color picker":["\u81ea\u8a02\u8272\u5f69\u9078\u64c7\u5668"],"Color: %s":["\u8272\u5f69: %s"],"Full Width":["\u5168\u5e45\u5bec\u5ea6"],"Wide Width":["\u5bec\u5e45\u5bec\u5ea6"],Widgets:["\u5c0f\u5de5\u5177"],Formatting:["\u683c\u5f0f\u8a2d\u5b9a"],"Common Blocks":["\u4e00\u822c\u5340\u584a"],"Align Right":["\u9760\u53f3\u5c0d\u9f4a"],"Align Center":["\u7f6e\u4e2d\u5c0d\u9f4a"],"Align Left":["\u9760\u5de6\u5c0d\u9f4a"],"Printing since 1440. This is the development plugin for the new block editor in core.":["\u897f\u65b9\u6d3b\u5b57\u5370\u5237\u8853\u6e90\u65bc 15 \u4e16\u7d00\uff0c\u7531 Gutenberg \u6240\u767c\u660e\uff1b\u70ba\u7d00\u5ff5\u9019\u9805\u5049\u5927\u8ca2\u737b\uff0c\u4fbf\u5c07\u70ba WordPress \u6838\u5fc3\u7a0b\u5f0f\u958b\u767c\u7684\u5340\u584a\u7de8\u8f2f\u5668\u547d\u540d\u70ba Gutenberg\u3002"],"Add title":["\u65b0\u589e\u6a19\u984c"],"Gutenberg development mode requires files to be built. Run npm install to install dependencies, npm run build to build the files or npm run dev to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg \u958b\u767c\u6a21\u5f0f\u9700\u8981\u7279\u5b9a\u6a94\u6848\u624d\u80fd\u5efa\u7f6e\u3002\u57f7\u884c npm install \u4ee5\u5b89\u88dd\u76f8\u4f9d\u6027\u5143\u4ef6\u3001\u57f7\u884c npm run build \u4ee5\u5efa\u7f6e\u6a94\u6848\uff0c\u6216\u57f7\u884c npm run dev \u4ee5\u5efa\u7f6e\u6a94\u6848\u4e26\u6aa2\u8996\u8b8a\u66f4\u3002\u5982\u9700\u8a73\u7d30\u8cc7\u8a0a\uff0c\u8acb\u53c3\u95b1\u3008Getting Started\u3009\u9019\u4efd\u6587\u4ef6\u3002"],Author:["\u4f5c\u8005"],Slug:["\u4ee3\u7a31"],Discussion:["\u8a0e\u8ad6"],"Custom Fields":["\u81ea\u8a02\u6b04\u4f4d"],Excerpt:["\u5167\u5bb9\u6458\u8981"],Publish:["\u767c\u4f48"],Metadata:["\u4e2d\u7e7c\u8cc7\u6599"],Save:["\u5132\u5b58"],Documentation:["\u7dda\u4e0a\u8aaa\u660e"],"Select Category":["\u9078\u53d6\u5206\u985e"],"(Untitled)":["(\u672a\u547d\u540d)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg \u9700\u8981 WordPress %s \u6216\u66f4\u65b0\u7248\u672c\u624d\u80fd\u6b63\u78ba\u57f7\u884c\u3002\u8acb\u5728\u555f\u7528 Gutenberg \u524d\u5148\u70ba WordPress \u9032\u884c\u5347\u7d1a\u3002"],"Gutenberg Team":["Gutenberg \u5718\u968a"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],Gutenberg:["Gutenberg"],Demo:["\u793a\u7bc4\u5167\u5bb9"],"%s ago":["%s\u524d"],"Block style name must be a string.":["\u5340\u584a\u6a23\u5f0f\u540d\u7a31\u5fc5\u9808\u662f\u5b57\u4e32\u3002"]}},872,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default="\n\x3c!-- wp:image --\x3e\n
\"\"/
\n\x3c!-- /wp:image --\x3e\n\n\x3c!-- wp:media-text --\x3e\n
\x3c!-- wp:paragraph --\x3e\n

\n\x3c!-- /wp:paragraph --\x3e
\n\x3c!-- /wp:media-text --\x3e\n\n\x3c!-- wp:image --\x3e\n
\"\"/
\n\x3c!-- /wp:image --\x3e\n\n\x3c!-- wp:title --\x3e\nHello World\n\x3c!-- /wp:title --\x3e\n\n\x3c!-- wp:heading {\"level\": 2} --\x3e\n

What is Gutenberg?

\n\x3c!-- /wp:heading --\x3e\n\n\x3c!-- wp:paragraph --\x3e\n

Hello World!

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:nextpage --\x3e\n\x3c!--nextpage--\x3e\n\x3c!-- /wp:nextpage --\x3e\n\n\x3c!-- wp:paragraph {\"dropCap\":true,\"backgroundColor\":\"vivid-red\",\"fontSize\":\"large\",\"className\":\"custom-class-1 custom-class-2\"} --\x3e\n

\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer tempor tincidunt sapien, quis dictum orci sollicitudin quis. Proin sed elit id est pulvinar feugiat vitae eget dolor. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:preformatted --\x3e\n
Some preformatted text...
And more!
\n\x3c!-- /wp:preformatted --\x3e\n\n\x3c!-- wp:code --\x3e\n
if name == \"World\":\n    return \"Hello World\"\nelse:\n    return \"Hello Pony\"
\n\x3c!-- /wp:code --\x3e\n\n\x3c!-- wp:more --\x3e\n\x3c!--more--\x3e\n\x3c!-- /wp:more --\x3e\n\n\x3c!-- wp:p4ragraph --\x3e\n\u041b\u043e\u0440\u0435\u043c \u0438\u043f\u0441\u0443\u043c \u0434\u043e\u043b\u043e\u0440 \u0441\u0438\u0442 \u0430\u043c\u0435\u0442, \u0430\u0434\u0438\u043f\u0438\u0441\u0446\u0438 \u0442\u0440\u0430\u0446\u0442\u0430\u0442\u043e\u0441 \u0435\u0430 \u0435\u0443\u043c. \u041c\u0435\u0430 \u0430\u0443\u0434\u0438\u0430\u043c \u043c\u0430\u043b\u0443\u0438\u0441\u0441\u0435\u0442 \u0442\u0435, \u0445\u0430\u0441 \u043c\u0435\u0438\u0441 \u043b\u0438\u0431\u0440\u0438\u0441 \u0435\u043b\u0435\u0438\u0444\u0435\u043d\u0434 \u0438\u043d. \u041d\u0435\u0446 \u0435\u0445 \u0442\u043e\u0442\u0430 \u0434\u0435\u043b\u0435\u043d\u0438\u0442 \u0441\u0443\u0441\u0446\u0438\u043f\u0438\u0442. \u042f\u0443\u0430\u0441 \u043f\u043e\u0440\u0440\u043e \u0438\u043d\u0441\u0442\u0440\u0443\u0446\u0442\u0438\u043e\u0440 \u043d\u043e \u043d\u0435\u0446.\n\x3c!-- /wp:p4ragraph --\x3e\n\n\x3c!-- wp:paragraph {\"customTextColor\":\"#6c7781\",\"customFontSize\":17} --\x3e\n

It\u2019s a whole new way to use WordPress. Try it right here!

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:image {\"id\":97629,\"align\":\"full\"} --\x3e\n
\"\"
Gutenberg on web
\n\x3c!-- /wp:image --\x3e\n\n\x3c!-- wp:video {\"id\":683} --\x3e\n
Videos too!
\n\x3c!-- /wp:video --\x3e\n\n\x3c!-- wp:paragraph {\"align\":\"left\"} --\x3e\n

We call the new editor Gutenberg. The entire editing experience has been rebuilt for media rich pages and posts. Experience the flexibility that blocks will bring, whether you are building your first site, or write code for a living.

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:gallery {\"ids\":[null,null,null,null],\"columns\":4,\"align\":\"wide\",\"className\":\"alignwide gutenberg-landing--features-grid\"} --\x3e\n\n\x3c!-- /wp:gallery --\x3e\n\n\x3c!-- wp:spacer --\x3e\n
\n\x3c!-- /wp:spacer --\x3e\n\n\x3c!-- wp:wporg/download-button --\x3e\n\n\x3c!-- /wp:wporg/download-button --\x3e\n\n\x3c!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\",\"className\":\"gutenberg-landing--button-disclaimer\"} --\x3e\n

Gutenberg is available as a plugin now, and soon by default in version 5.0 of WordPress. The classic editor will be available as a plugin if needed.

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:spacer --\x3e\n
\n\x3c!-- /wp:spacer --\x3e\n\n\x3c!-- wp:heading {\"align\":\"left\"} --\x3e\n

Meet your new best friends, Blocks

\n\x3c!-- /wp:heading --\x3e\n\n\x3c!-- wp:paragraph {\"align\":\"left\"} --\x3e\n

Blocks are a great new tool for building engaging content. With blocks, you can insert, rearrange, and style multimedia content with very little technical knowledge. Instead of using custom code, you can add a block and focus on your content.

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:image {\"id\":358} --\x3e\n
\"\"
\n\x3c!-- /wp:image --\x3e\n\n\x3c!-- wp:paragraph {\"align\":\"left\"} --\x3e\n

Without being an expert developer, you can build your own custom posts and pages. Here\u2019s a selection of the default blocks included with Gutenberg:

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:gallery {\"ids\":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"columns\":8,\"align\":\"full\",\"className\":\"alignfull\"} --\x3e\n\n\x3c!-- /wp:gallery --\x3e\n\n\x3c!-- wp:spacer --\x3e\n
\n\x3c!-- /wp:spacer --\x3e\n\n\x3c!-- wp:heading {\"align\":\"left\"} --\x3e\n

Be your own builder

\n\x3c!-- /wp:heading --\x3e\n\n\x3c!-- wp:paragraph {\"align\":\"left\"} --\x3e\n

A single block is nice\u2014reliable, clear, distinct. Discover the flexibility to use media and content, side by side, driven by your vision.

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:image {\"id\":98363} --\x3e\n
\"\"
\n\x3c!-- /wp:image --\x3e\n\n\x3c!-- wp:spacer --\x3e\n
\n\x3c!-- /wp:spacer --\x3e\n\n\x3c!-- wp:heading {\"align\":\"left\"} --\x3e\n

Gutenberg \u2764\ufe0f Developers

\n\x3c!-- /wp:heading --\x3e\n\n\x3c!-- wp:columns {\"className\":\"gutenberg-landing--developers-columns\"} --\x3e\n
\x3c!-- wp:column --\x3e\n
\x3c!-- wp:paragraph {\"align\":\"left\"} --\x3e\n

Built with modern technology.

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:paragraph {\"align\":\"left\"} --\x3e\n

Gutenberg was developed on GitHub using the WordPress REST API, JavaScript, and React.

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} --\x3e\n

Learn more

\n\x3c!-- /wp:paragraph --\x3e
\n\x3c!-- /wp:column --\x3e\n\n\x3c!-- wp:column --\x3e\n
\x3c!-- wp:paragraph {\"align\":\"left\"} --\x3e\n

Designed for compatibility.

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:paragraph {\"align\":\"left\"} --\x3e\n

We recommend migrating features to blocks, but support for existing WordPress functionality remains. There will be transition paths for shortcodes, meta-boxes, and Custom Post Types.

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} --\x3e\n

Learn more

\n\x3c!-- /wp:paragraph --\x3e
\n\x3c!-- /wp:column --\x3e
\n\x3c!-- /wp:columns --\x3e\n\n\x3c!-- wp:spacer --\x3e\n
\n\x3c!-- /wp:spacer --\x3e\n\n\x3c!-- wp:heading {\"align\":\"left\"} --\x3e\n

The editor is just the beginning

\n\x3c!-- /wp:heading --\x3e\n\n\x3c!-- wp:paragraph {\"align\":\"left\"} --\x3e\n

Gutenberg is more than an editor. It\u2019s also the foundation that\u2019ll revolutionize customization and site building in WordPress.

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:quote {\"align\":\"left\",\"className\":\"is-style-large\"} --\x3e\n

\"This will make running your own blog a viable alternative again.\"

\u2014 Adrian Zumbrunnen
\n\x3c!-- /wp:quote --\x3e\n\n\x3c!-- wp:quote {\"align\":\"left\",\"className\":\"is-style-large\"} --\x3e\n

\"The web up until this point has been confined to some sort of rectangular screen. But that is not how it\u2019s going to be. Gutenberg has the potential of moving us into the next time.\"

\u2014 Morten Rand-Hendriksen
\n\x3c!-- /wp:quote --\x3e\n\n\x3c!-- wp:quote {\"align\":\"left\",\"className\":\"is-style-large\"} --\x3e\n

\"The Gutenberg editor has some great assets that could genuinely help people to write better texts.\"

\u2014 Marieke van de Rakt
\n\x3c!-- /wp:quote --\x3e\n\n\x3c!-- wp:spacer --\x3e\n
\n\x3c!-- /wp:spacer --\x3e\n\n\x3c!-- wp:wporg/download-button --\x3e\n\n\x3c!-- /wp:wporg/download-button --\x3e\n\n\x3c!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\",\"className\":\"gutenberg-landing--button-disclaimer\"} --\x3e\n

Gutenberg is available as a plugin today, and will be included in version 5.0 of WordPress. The classic editor will be available as a plugin if needed.

\n\x3c!-- /wp:paragraph --\x3e\n\n\x3c!-- wp:spacer --\x3e\n
\n\x3c!-- /wp:spacer --\x3e\n\n\x3c!-- wp:heading {\"align\":\"left\"} --\x3e\n

Dig in deeper

\n\x3c!-- /wp:heading --\x3e\n\n\x3c!-- wp:list --\x3e\n\n\x3c!-- /wp:list --\x3e\n"},873,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.isPathSupported=void 0;var n=r(d[1]),u=t(r(d[2])),o=function(t){var u=t.path;if(!c(u))return Promise.reject("Unsupported path: "+u);return(0,n.fetchRequest)(u).then(function(t){return'string'==typeof t&&(t=JSON.parse(t)),t}).catch(function(t){return console.warn('Network Error: ',t),Promise.resolve(t)})},c=function(t){return[/wp\/v2\/media\/?\d*?.*/i].some(function(n){return n.test(t)})};e.isPathSupported=c;e.default=function(){u.default.setFetchHandler(function(t){return o(t)})}},874,[2,821,875]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1])),o=t(r(d[2])),c=r(d[3]),u=t(r(d[4])),f=t(r(d[5])),l=t(r(d[6])),s=t(r(d[7])),p=t(r(d[8])),h=t(r(d[9])),w=t(r(d[10])),b=t(r(d[11])),y=r(d[12]);function O(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function v(t){for(var o=1;o=200&&t.status<300)return t;throw t},E=function(t){var n=t.url,u=t.path,f=t.data,l=t.parse,s=void 0===l||l,p=(0,o.default)(t,["url","path","data","parse"]),h=t.body,w=t.headers;return w=v({},j,{},w),f&&(h=JSON.stringify(f),w['Content-Type']='application/json'),window.fetch(n||u,v({},P,{},p,{body:h,headers:w})).then(function(t){return Promise.resolve(t).then(M).catch(function(t){return(0,y.parseAndThrowError)(t,s)}).then(function(t){return(0,y.parseResponseAndNormalizeError)(t,s)})},function(){throw{code:'fetch_error',message:(0,c.__)('You are probably offline.')}})};function A(t){var n=[].concat(_,[E]),o=function t(o){return function(c){var u=n[o];return o===n.length-1?u(c):u(c,t(o+1))}};return new Promise(function(n,c){o(0)(t).then(n).catch(function(o){if('rest_cookie_invalid_nonce'!==o.code)return c(o);window.fetch(A.nonceEndpoint).then(M).then(function(t){return t.text()}).then(function(o){A.nonceMiddleware.nonce=o,A(t).then(n).catch(c)}).catch(c)})})}A.use=function(t){_.unshift(t)},A.setFetchHandler=function(t){E=t},A.createNonceMiddleware=u.default,A.createPreloadingMiddleware=l.default,A.createRootURLMiddleware=f.default,A.fetchAllMiddleware=s.default,A.mediaUploadMiddleware=b.default;var D=A;e.default=D},875,[2,18,19,347,876,877,879,880,878,907,908,909,910]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1]));function o(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function c(t){for(var c=1;c]+)>; rel="next"/);return n?{next:n[1]}:{}},b=function(t){return l(t.headers.get('link')).next},O=function(t){var n=t.path&&-1!==t.path.indexOf('per_page=-1'),u=t.url&&-1!==t.url.indexOf('per_page=-1');return n||u},y=function(t,u){var s,l,y,x,v,h;return n.default.async(function(j){for(;;)switch(j.prev=j.next){case 0:if(!1!==t.parse){j.next=2;break}return j.abrupt("return",u(t));case 2:if(O(t)){j.next=4;break}return j.abrupt("return",u(t));case 4:return j.next=6,n.default.awrap(u(o({},(P={per_page:100},k=(w=t).path,_=w.url,o({},(0,c.default)(w,["path","url"]),{url:_&&(0,p.addQueryArgs)(_,P),path:k&&(0,p.addQueryArgs)(k,P)})),{parse:!1})));case 6:return s=j.sent,j.next=9,n.default.awrap(f(s));case 9:if(l=j.sent,Array.isArray(l)){j.next=12;break}return j.abrupt("return",l);case 12:if(y=b(s)){j.next=15;break}return j.abrupt("return",l);case 15:x=[].concat(l);case 16:if(!y){j.next=27;break}return j.next=19,n.default.awrap(u(o({},t,{path:void 0,url:y,parse:!1})));case 19:return v=j.sent,j.next=22,n.default.awrap(f(v));case 22:h=j.sent,x=x.concat(h),y=b(v),j.next=16;break;case 27:return j.abrupt("return",x);case 28:case"end":return j.stop()}var w,P,k,_})};e.default=y},880,[2,252,18,19,881]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"isURL",{enumerable:!0,get:function(){return t.isURL}}),Object.defineProperty(e,"isEmail",{enumerable:!0,get:function(){return n.isEmail}}),Object.defineProperty(e,"getProtocol",{enumerable:!0,get:function(){return u.getProtocol}}),Object.defineProperty(e,"isValidProtocol",{enumerable:!0,get:function(){return o.isValidProtocol}}),Object.defineProperty(e,"getAuthority",{enumerable:!0,get:function(){return c.getAuthority}}),Object.defineProperty(e,"isValidAuthority",{enumerable:!0,get:function(){return f.isValidAuthority}}),Object.defineProperty(e,"getPath",{enumerable:!0,get:function(){return l.getPath}}),Object.defineProperty(e,"isValidPath",{enumerable:!0,get:function(){return b.isValidPath}}),Object.defineProperty(e,"getQueryString",{enumerable:!0,get:function(){return y.getQueryString}}),Object.defineProperty(e,"isValidQueryString",{enumerable:!0,get:function(){return P.isValidQueryString}}),Object.defineProperty(e,"getFragment",{enumerable:!0,get:function(){return p.getFragment}}),Object.defineProperty(e,"isValidFragment",{enumerable:!0,get:function(){return s.isValidFragment}}),Object.defineProperty(e,"addQueryArgs",{enumerable:!0,get:function(){return j.addQueryArgs}}),Object.defineProperty(e,"getQueryArg",{enumerable:!0,get:function(){return O.getQueryArg}}),Object.defineProperty(e,"hasQueryArg",{enumerable:!0,get:function(){return A.hasQueryArg}}),Object.defineProperty(e,"removeQueryArgs",{enumerable:!0,get:function(){return Q.removeQueryArgs}}),Object.defineProperty(e,"prependHTTP",{enumerable:!0,get:function(){return h.prependHTTP}}),Object.defineProperty(e,"safeDecodeURI",{enumerable:!0,get:function(){return V.safeDecodeURI}}),Object.defineProperty(e,"safeDecodeURIComponent",{enumerable:!0,get:function(){return R.safeDecodeURIComponent}}),Object.defineProperty(e,"filterURLForDisplay",{enumerable:!0,get:function(){return U.filterURLForDisplay}});var t=r(d[0]),n=r(d[1]),u=r(d[2]),o=r(d[3]),c=r(d[4]),f=r(d[5]),l=r(d[6]),b=r(d[7]),y=r(d[8]),P=r(d[9]),p=r(d[10]),s=r(d[11]),j=r(d[12]),O=r(d[13]),A=r(d[14]),Q=r(d[15]),h=r(d[16]),V=r(d[17]),R=r(d[18]),U=r(d[19])},881,[882,883,884,885,886,887,888,889,890,891,892,893,894,900,901,902,903,904,905,906]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isURL=function(n){return t.test(n)};var t=/^(?:https?:)?\/\/\S+$/i},882,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isEmail=function(n){return t.test(n)};var t=/^(mailto:)?[a-z0-9._%+-]+@[a-z0-9][a-z0-9.-]*\.[a-z]{2,63}$/i},883,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getProtocol=function(o){var t=/^([^\s:]+:)/.exec(o);if(t)return t[1]}},884,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isValidProtocol=function(t){if(!t)return!1;return/^[a-z\-.\+]+[0-9]*:$/i.test(t)}},885,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getAuthority=function(t){var n=/^[^\/\s:]+:(?:\/\/)?\/?([^\/\s#?]+)[\/#?]{0,1}\S*$/.exec(t);if(n)return n[1]}},886,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isValidAuthority=function(t){if(!t)return!1;return/^[^\s#?]+$/.test(t)}},887,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getPath=function(t){var n=/^[^\/\s:]+:(?:\/\/)?[^\/\s#?]+[\/]([^\s#?]+)[#?]{0,1}\S*$/.exec(t);if(n)return n[1]}},888,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isValidPath=function(t){if(!t)return!1;return/^[^\s#?]+$/.test(t)}},889,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getQueryString=function(n){var t=/^\S+?\?([^\s#]+)/.exec(n);if(t)return t[1]}},890,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isValidQueryString=function(t){if(!t)return!1;return/^[^\s#?\/]+$/.test(t)}},891,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getFragment=function(n){var t=/^\S+?(#[^\s\?]*)/.exec(n);if(t)return t[1]}},892,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isValidFragment=function(t){if(!t)return!1;return/^#[^\s#?\/]*$/.test(t)}},893,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.addQueryArgs=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:'',s=arguments.length>1?arguments[1]:void 0;if(!s||!Object.keys(s).length)return t;var f=t,v=t.indexOf('?');-1!==v&&(s=(0,n.default)((0,u.parse)(t.substr(v+1)),s),f=f.substr(0,v));return f+'?'+(0,u.stringify)(s)};var n=t(r(d[1])),u=r(d[2])},894,[2,16,895]); +__d(function(g,r,i,a,m,e,d){'use strict';var s=r(d[0]),t=r(d[1]),f=r(d[2]);m.exports={formats:f,parse:t,stringify:s}},895,[896,899,898]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),o=r(d[1]),n=Object.prototype.hasOwnProperty,l={brackets:function(t){return t+'[]'},comma:'comma',indices:function(t,o){return t+'['+o+']'},repeat:function(t){return t}},s=Array.isArray,f=Array.prototype.push,c=function(t,o){f.apply(t,s(o)?o:[o])},u=Date.prototype.toISOString,y={addQueryPrefix:!1,allowDots:!1,charset:'utf-8',charsetSentinel:!1,delimiter:'&',encode:!0,encoder:t.encode,encodeValuesOnly:!1,formatter:o.formatters[o.default],indices:!1,serializeDate:function(t){return u.call(t)},skipNulls:!1,strictNullHandling:!1},p=function o(n,l,f,u,p,h,v,b,w,D,N,k,O){var S=n;if('function'==typeof v?S=v(l,S):S instanceof Date?S=D(S):'comma'===f&&s(S)&&(S=S.join(',')),null===S){if(u)return h&&!k?h(l,y.encoder,O):l;S=''}if('string'==typeof S||'number'==typeof S||'boolean'==typeof S||t.isBuffer(S))return h?[N(k?l:h(l,y.encoder,O))+'='+N(h(S,y.encoder,O))]:[N(l)+'='+N(String(S))];var x,P=[];if(void 0===S)return P;if(s(v))x=v;else{var j=Object.keys(S);x=b?j.sort(b):j}for(var z=0;z0?k+N:''}},896,[897,898]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=Object.prototype.hasOwnProperty,o=Array.isArray,n=(function(){for(var t=[],o=0;o<256;++o)t.push('%'+((o<16?'0':'')+o.toString(16)).toUpperCase());return t})(),c=function(t){for(;t.length>1;){var n=t.pop(),c=n.obj[n.prop];if(o(c)){for(var u=[],f=0;f=48&&s<=57||s>=65&&s<=90||s>=97&&s<=122?f+=u.charAt(p):s<128?f+=n[s]:s<2048?f+=n[192|s>>6]+n[128|63&s]:s<55296||s>=57344?f+=n[224|s>>12]+n[128|s>>6&63]+n[128|63&s]:(p+=1,s=65536+((1023&s)<<10|1023&u.charCodeAt(p)),f+=n[240|s>>18]+n[128|s>>12&63]+n[128|s>>6&63]+n[128|63&s])}return f},isBuffer:function(t){return!(!t||'object'!=typeof t||!(t.constructor&&t.constructor.isBuffer&&t.constructor.isBuffer(t)))},isRegExp:function(t){return'[object RegExp]'===Object.prototype.toString.call(t)},merge:function n(c,f,p){if(!f)return c;if('object'!=typeof f){if(o(c))c.push(f);else{if(!c||'object'!=typeof c)return[c,f];(p&&(p.plainObjects||p.allowPrototypes)||!t.call(Object.prototype,f))&&(c[f]=!0)}return c}if(!c||'object'!=typeof c)return[c].concat(f);var s=c;return o(c)&&!o(f)&&(s=u(c,p)),o(c)&&o(f)?(f.forEach(function(o,u){if(t.call(c,u)){var f=c[u];f&&'object'==typeof f&&o&&'object'==typeof o?c[u]=n(f,o,p):c.push(o)}else c[u]=o}),c):Object.keys(f).reduce(function(o,c){var u=f[c];return t.call(o,c)?o[c]=n(o[c],u,p):o[c]=u,o},s)}}},897,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=String.prototype.replace,n=/%20/g;m.exports={default:'RFC3986',formatters:{RFC1738:function(o){return t.call(o,n,'+')},RFC3986:function(t){return t}},RFC1738:'RFC1738',RFC3986:'RFC3986'}},898,[]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),o=Object.prototype.hasOwnProperty,n={allowDots:!1,allowPrototypes:!1,arrayLimit:20,charset:'utf-8',charsetSentinel:!1,comma:!1,decoder:t.decode,delimiter:'&',depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},l=function(t){return t.replace(/&#(\d+);/g,function(t,o){return String.fromCharCode(parseInt(o,10))})},c=function(c,s){var p,u={},f=s.ignoreQueryPrefix?c.replace(/^\?/,''):c,y=s.parameterLimit===1/0?void 0:s.parameterLimit,h=f.split(s.delimiter,y),b=-1,O=s.charset;if(s.charsetSentinel)for(p=0;p-1&&(w=w.split(',')),o.call(u,v)?u[v]=t.combine(u[v],w):u[v]=w}return u},s=function(t,o,n){for(var l=o,c=t.length-1;c>=0;--c){var s,p=t[c];if('[]'===p&&n.parseArrays)s=[].concat(l);else{s=n.plainObjects?Object.create(null):{};var u='['===p.charAt(0)&&']'===p.charAt(p.length-1)?p.slice(1,-1):p,f=parseInt(u,10);n.parseArrays||''!==u?!isNaN(f)&&p!==u&&String(f)===u&&f>=0&&n.parseArrays&&f<=n.arrayLimit?(s=[])[f]=l:s[u]=l:s={0:l}}l=s}return l},p=function(t,n,l){if(t){var c=l.allowDots?t.replace(/\.([^.[]+)/g,'[$1]'):t,p=/(\[[^[\]]*])/g,u=/(\[[^[\]]*])/.exec(c),f=u?c.slice(0,u.index):c,y=[];if(f){if(!l.plainObjects&&o.call(Object.prototype,f)&&!l.allowPrototypes)return;y.push(f)}for(var h=0;null!==(u=p.exec(c))&&h1?s-1:0),l=1;l=500&&n.status<600&&s?u(s).catch(function(){return!1!==t.parse?Promise.reject({code:'post_process',message:(0,o.__)('Media upload failed. If this is a photo or a large image, please scale it down and try again.')}):Promise.reject(n)}):(0,c.parseAndThrowError)(n,t.parse)}).then(function(n){return(0,c.parseResponseAndNormalizeError)(n,t.parse)})};e.default=u},909,[2,18,347,910]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.parseAndThrowError=s,e.parseResponseAndNormalizeError=void 0;var n=r(d[0]),o=function(n){return!(arguments.length>1&&void 0!==arguments[1])||arguments[1]?204===n.status?null:n.json?n.json():Promise.reject(n):n},t=function(o){var t={code:'invalid_json',message:(0,n.__)('The response is not a valid JSON response.')};if(!o||!o.json)throw t;return o.json().catch(function(){throw t})};function s(o){if(!(!(arguments.length>1&&void 0!==arguments[1])||arguments[1]))throw o;return t(o).then(function(o){var t={code:'unknown_error',message:(0,n.__)('An unknown error occurred.')};throw o||t})}e.parseResponseAndNormalizeError=function(n){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return Promise.resolve(o(n,t)).catch(function(n){return s(n,t)})}},910,[347]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"combineReducers",{enumerable:!0,get:function(){return u.default}}),Object.defineProperty(e,"withSelect",{enumerable:!0,get:function(){return o.default}}),Object.defineProperty(e,"withDispatch",{enumerable:!0,get:function(){return l.default}}),Object.defineProperty(e,"withRegistry",{enumerable:!0,get:function(){return f.default}}),Object.defineProperty(e,"RegistryProvider",{enumerable:!0,get:function(){return b.RegistryProvider}}),Object.defineProperty(e,"RegistryConsumer",{enumerable:!0,get:function(){return b.RegistryConsumer}}),Object.defineProperty(e,"useRegistry",{enumerable:!0,get:function(){return b.useRegistry}}),Object.defineProperty(e,"useSelect",{enumerable:!0,get:function(){return p.default}}),Object.defineProperty(e,"useDispatch",{enumerable:!0,get:function(){return y.useDispatch}}),Object.defineProperty(e,"__unstableUseDispatchWithMap",{enumerable:!0,get:function(){return y.useDispatchWithMap}}),Object.defineProperty(e,"AsyncModeProvider",{enumerable:!0,get:function(){return P.AsyncModeProvider}}),Object.defineProperty(e,"createRegistry",{enumerable:!0,get:function(){return v.createRegistry}}),Object.defineProperty(e,"createRegistrySelector",{enumerable:!0,get:function(){return R.createRegistrySelector}}),Object.defineProperty(e,"createRegistryControl",{enumerable:!0,get:function(){return R.createRegistryControl}}),e.plugins=e.use=e.registerStore=e.registerGenericStore=e.subscribe=e.dispatch=e.__experimentalResolveSelect=e.select=void 0;var u=n(r(d[2])),c=n(r(d[3])),s=t(r(d[4]));e.plugins=s;var o=n(r(d[5])),l=n(r(d[6])),f=n(r(d[7])),b=r(d[8]),p=n(r(d[9])),y=r(d[10]),P=r(d[11]),v=r(d[12]),R=r(d[13]),j=c.default.select;e.select=j;var O=c.default.__experimentalResolveSelect;e.__experimentalResolveSelect=O;var h=c.default.dispatch;e.dispatch=h;var S=c.default.subscribe;e.subscribe=S;var _=c.default.registerGenericStore;e.registerGenericStore=_;var D=c.default.registerStore;e.registerStore=D;var M=c.default.use;e.use=M},911,[146,2,912,913,957,974,1014,1018,1019,1008,1015,1020,914,1021]); +__d(function(g,r,i,a,m,e,d){m.exports=function(n){var t,u=Object.keys(n);return t=(function(){var n,t,f;for(n='return {',t=0;t0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,l={},b=[];function y(){b.forEach(function(t){return t()})}var v=function(t){return b.push(t),function(){b=(0,u.without)(b,t)}};function h(t){var n=l[t];return n?n.getSelectors():o&&o.select(t)}var w=(0,c.default)(function(t){return(0,u.mapValues)((0,u.omit)(t,['getIsResolving','hasStartedResolution','hasFinishedResolution','isResolving','getCachedResolvers']),function(n,o){return function(){for(var u=arguments.length,c=new Array(u),s=0;s1?o-1:0),s=1;s1?o-1:0),s=1;s3?c-3:0),p=3;p0&&void 0!==arguments[0]?arguments[0]:{},n=arguments[1];if(l)throw l;for(var u=!1,c={},f=0;f0&&void 0!==arguments[0]?arguments[0]:{};return function(f){var o=(0,u.default)(n,f.dispatch);return function(n){return function(u){return(0,t.default)(u)?o(u):n(u)}}}};var t=n(r(d[1])),u=n(r(d[2]))},935,[2,936,937]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){return!!t&&'Generator'===t["function"==typeof Symbol?Symbol.toStringTag:"@@toStringTag"]}},936,[]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},c=arguments.length>1?arguments[1]:void 0,v=(0,u.map)(n,function(n,t){return function(u,c,v,l,s){if(!(0,f.isActionOfType)(u,t))return!1;var h=n(u);return(0,o.default)(h)?h.then(l,s):l(h),!0}});v.push(function(n,t){if(!(0,f.isAction)(n))return!1;return c(n),t(),!0});var l=(0,t.create)(v);return function(n){return new Promise(function(t,u){return l(n,function(n){(0,f.isAction)(n)&&c(n),t(n)},u)})}};var t=r(d[1]),u=r(d[2]),o=n(r(d[3])),f=r(d[4])},937,[2,938,21,947,948]); +__d(function(g,r,i,a,m,e,d){'use strict';Object.defineProperty(e,"__esModule",{value:!0}),e.wrapControls=e.asyncControls=e.create=void 0;var t=r(d[0]);Object.keys(t).forEach(function(n){"default"!==n&&Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[n]}})});var n=c(r(d[1])),o=c(r(d[2])),u=c(r(d[3]));function c(t){return t&&t.__esModule?t:{default:t}}e.create=n.default,e.asyncControls=o.default,e.wrapControls=u.default},938,[939,941,944,946]); +__d(function(g,r,i,a,m,e,d){'use strict';Object.defineProperty(e,"__esModule",{value:!0}),e.createChannel=e.subscribe=e.cps=e.apply=e.call=e.invoke=e.delay=e.race=e.join=e.fork=e.error=e.all=void 0;var n,t=r(d[0]),u=(n=t)&&n.__esModule?n:{default:n};e.all=function(n){return{type:u.default.all,value:n}},e.error=function(n){return{type:u.default.error,error:n}},e.fork=function(n){for(var t=arguments.length,c=Array(t>1?t-1:0),o=1;o1?t-1:0),o=1;o2?c-2:0),l=2;l1?t-1:0),o=1;o0&&void 0!==arguments[0]?arguments[0]:new n.default,O=arguments.length>1?arguments[1]:void 0;switch(O.type){case'START_RESOLUTION':case'FINISH_RESOLUTION':var T='START_RESOLUTION'===O.type,I=new n.default(t);return I.set(O.args,T),I;case'INVALIDATE_RESOLUTION':var s=new n.default(t);return s.delete(O.args),s}return t}),s=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'INVALIDATE_RESOLUTION_FOR_STORE':return{};case'INVALIDATE_RESOLUTION_FOR_STORE_SELECTOR':return(0,O.has)(t,[n.selectorName])?(0,O.omit)(t,[n.selectorName]):t;case'START_RESOLUTION':case'FINISH_RESOLUTION':case'INVALIDATE_RESOLUTION':return I(t,n)}return t};e.default=s},951,[2,21,952,953]); +__d(function(g,r,i,a,m,e,d){'use strict';function t(n){return(t="function"==typeof Symbol&&"symbol"==typeof("function"==typeof Symbol?Symbol.iterator:"@@iterator")?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==("function"==typeof Symbol?Symbol.prototype:"@@prototype")?"symbol":typeof t})(n)}function n(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function o(t,n){for(var o=0;o1&&void 0!==arguments[1]?arguments[1]:this;this._map.forEach(function(s,f){null!==f&&'object'===t(f)&&(s=s[1]),n.call(u,s,f,o)})}},{key:"clear",value:function(){this._map=new Map,this._arrayTreeMap=new Map,this._objectTreeMap=new Map}},{key:"size",get:function(){return this._map.size}}])&&o(f.prototype,l),c&&o(f,c),s})();m.exports=s},952,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.onSubKey=void 0;var n=t(r(d[1]));function o(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function c(t){for(var c=1;c0&&void 0!==arguments[0]?arguments[0]:{},f=arguments.length>1?arguments[1]:void 0,p=f[t];if(void 0===p)return u;var O=o(u[p],f);return O===u[p]?u:c({},u,(0,n.default)({},p,O))}}}},953,[2,18]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getIsResolving=t,e.hasStartedResolution=function(n,o){var u=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];return void 0!==t(n,o,u)},e.hasFinishedResolution=function(n,o){var u=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];return!1===t(n,o,u)},e.isResolving=function(n,o){var u=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];return!0===t(n,o,u)},e.getCachedResolvers=function(n){return n};var n=r(d[0]);function t(t,o,u){var v=(0,n.get)(t,[o]);if(v)return v.get(u)}},954,[21]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.startResolution=function(t,n){return{type:'START_RESOLUTION',selectorName:t,args:n}},e.finishResolution=function(t,n){return{type:'FINISH_RESOLUTION',selectorName:t,args:n}},e.invalidateResolution=function(t,n){return{type:'INVALIDATE_RESOLUTION',selectorName:t,args:n}},e.invalidateResolutionForStore=function(){return{type:'INVALIDATE_RESOLUTION_FOR_STORE'}},e.invalidateResolutionForStoreSelector=function(t){return{type:'INVALIDATE_RESOLUTION_FOR_STORE_SELECTOR',selectorName:t}}},955,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1]));function o(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function u(t){for(var u=1;u1?c-1:0),l=1;l1?c-1:0),l=1;l1&&void 0!==arguments[1]?arguments[1]:{},c=l.version,u=l.alternative,v=l.plugin,s=l.link,f=l.hint,p=t+" is deprecated"+(c?" and will be removed"+(v?" from "+v:'')+" in version "+c:'')+"."+(u?" Please use "+u+" instead.":'')+(s?" See: "+s:'')+(f?" Note: "+f:'');if(p in o)return;(0,n.doAction)('deprecated',t,l,p),console.warn(p),o[p]=!0},e.logged=void 0;var n=r(d[0]),o=Object.create(null);e.logged=o},959,[960]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"createHooks",{enumerable:!0,get:function(){return o.default}}),e.filters=e.actions=e.didFilter=e.didAction=e.doingFilter=e.doingAction=e.currentFilter=e.currentAction=e.applyFilters=e.doAction=e.removeAllFilters=e.removeAllActions=e.hasFilter=e.hasAction=e.removeFilter=e.removeAction=e.addFilter=e.addAction=void 0;var o=t(r(d[1])),l=(0,o.default)(),n=l.addAction,c=l.addFilter,A=l.removeAction,F=l.removeFilter,s=l.hasAction,v=l.hasFilter,u=l.removeAllActions,f=l.removeAllFilters,p=l.doAction,h=l.applyFilters,y=l.currentAction,_=l.currentFilter,b=l.doingAction,j=l.doingFilter,O=l.didAction,P=l.didFilter,k=l.actions,H=l.filters;e.filters=H,e.actions=k,e.didFilter=P,e.didAction=O,e.doingFilter=j,e.doingAction=b,e.currentFilter=_,e.currentAction=y,e.applyFilters=h,e.doAction=p,e.removeAllFilters=f,e.removeAllActions=u,e.hasFilter=v,e.hasAction=s,e.removeFilter=F,e.removeAction=A,e.addFilter=c,e.addAction=n},960,[2,961]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=t(r(d[1])),u=t(r(d[2])),n=t(r(d[3])),f=t(r(d[4])),o=t(r(d[5])),c=t(r(d[6])),v=t(r(d[7]));var A=function(){var t=Object.create(null),A=Object.create(null);return t.__current=[],A.__current=[],{addAction:(0,l.default)(t),addFilter:(0,l.default)(A),removeAction:(0,u.default)(t),removeFilter:(0,u.default)(A),hasAction:(0,n.default)(t),hasFilter:(0,n.default)(A),removeAllActions:(0,u.default)(t,!0),removeAllFilters:(0,u.default)(A,!0),doAction:(0,f.default)(t),applyFilters:(0,f.default)(A,!0),currentAction:(0,o.default)(t),currentFilter:(0,o.default)(A),doingAction:(0,c.default)(t),doingFilter:(0,c.default)(A),didAction:(0,v.default)(t),didFilter:(0,v.default)(A),actions:t,filters:A}};e.default=A},961,[2,962,965,966,967,968,969,970]); +__d(function(g,r,i,a,m,e,d){var o=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=o(r(d[1])),t=o(r(d[2])),c=r(d[3]);var f=function(o){return function(f,l,u){var s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10;if((0,t.default)(f)&&(0,n.default)(l))if('function'==typeof u)if('number'==typeof s){var h={callback:u,priority:s,namespace:l};if(o[f]){var p,v=o[f].handlers;for(p=v.length;p>0&&!(s>=v[p-1].priority);p--);p===v.length?v[p]=h:v.splice(p,0,h),(o.__current||[]).forEach(function(o){o.name===f&&o.currentIndex>=p&&o.currentIndex++})}else o[f]={handlers:[h],runs:0};'hookAdded'!==f&&(0,c.doAction)('hookAdded',f,l,u,s)}else console.error('If specified, the hook priority must be a number.');else console.error('The hook callback must be a function.')}};e.default=f},962,[2,963,964,960]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=function(n){return'string'!=typeof n||''===n?(console.error('The namespace must be a non-empty string.'),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(n)||(console.error('The namespace can only contain numbers, letters, dashes, periods, underscores and slashes.'),!1)};e.default=n},963,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=function(o){return'string'!=typeof o||''===o?(console.error('The hook name must be a non-empty string.'),!1):/^__/.test(o)?(console.error('The hook name cannot begin with `__`.'),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(o)||(console.error('The hook name can only contain numbers, letters, dashes, periods and underscores.'),!1)};e.default=o},964,[]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=n(r(d[1])),u=n(r(d[2])),o=r(d[3]);var f=function(n,f){return function(c,l){if((0,u.default)(c)&&(f||(0,t.default)(l))){if(!n[c])return 0;var s=0;if(f)s=n[c].handlers.length,n[c]={runs:n[c].runs,handlers:[]};else for(var v=n[c].handlers,h=function(t){v[t].namespace===l&&(v.splice(t,1),s++,(n.__current||[]).forEach(function(n){n.name===c&&n.currentIndex>=t&&n.currentIndex--}))},_=v.length-1;_>=0;_--)h(_);return'hookRemoved'!==c&&(0,o.doAction)('hookRemoved',c,l),s}}};e.default=f},965,[2,963,964,960]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=function(n){return function(t,u){return void 0!==u?t in n&&n[t].handlers.some(function(n){return n.namespace===u}):t in n}};e.default=n},966,[]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;n(r(d[1]));var u=function(n,u){return function(t){n[t]||(n[t]={handlers:[],runs:0}),n[t].runs++;for(var l=n[t].handlers,c=arguments.length,o=new Array(c>1?c-1:0),f=1;f0&&void 0!==arguments[0]?arguments[0]:{};return(0,v.default)(function(v){return(function(p){function S(){var n;return(0,f.default)(this,S),(n=(0,s.default)(this,(0,o.default)(S).apply(this,arguments))).setState=n.setState.bind((0,c.default)(n)),n.state=t,n}return(0,h.default)(S,p),(0,l.default)(S,[{key:"render",value:function(){return(0,n.createElement)(v,(0,u.default)({},this.props,this.state,{setState:this.setState}))}}]),S})(n.Component)},'withState')};var n=r(d[1]),u=t(r(d[2])),f=t(r(d[3])),l=t(r(d[4])),s=t(r(d[5])),o=t(r(d[6])),c=t(r(d[7])),h=t(r(d[8])),v=t(r(d[9]))},989,[2,3,16,34,35,42,45,44,48,977]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var f=(0,u.useState)(!1),c=(0,n.default)(f,2),o=c[0],v=c[1];return(0,u.useEffect)(function(){if(t){var n=function(){return v(window.matchMedia(t).matches)};n();var u=window.matchMedia(t);return u.addListener(n),function(){u.removeListener(n)}}},[t]),t&&o};var n=t(r(d[1])),u=r(d[2])},990,[2,5,3]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=n(r(d[1])),u='undefined'!=typeof window&&window.navigator.userAgent.indexOf('Trident')>=0,o=process.env.FORCE_REDUCED_MOTION||u?function(){return!0}:function(){return(0,t.default)('(prefers-reduced-motion: reduce)')};e.default=o},991,[2,990]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),u=t(r(d[2])),l={huge:1440,wide:1280,large:960,medium:782,small:600,mobile:480},o={'>=':'min-width','<':'max-width'},v={'>=':function(t,n){return n>=t},'<':function(t,n){return n1&&void 0!==arguments[1]?arguments[1]:'>=',_=(0,n.useContext)(f),h=!_&&"("+o[c]+": "+l[t]+"px)",x=(0,u.default)(h);return _?v[c](l[t],_):x};c.__experimentalWidthProvider=f.Provider;var _=c;e.default=_},992,[2,3,990]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),o=t(r(d[2])),c=t(r(d[3])),u=t(r(d[4])),f=t(r(d[5]));function l(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function p(t){for(var n=1;n0&&v.length>u&&!v.warned){v.warned=!0;var c=new Error('Possible EventEmitter memory leak detected. '+v.length+' '+String(n)+" listeners added. Use emitter.setMaxListeners() to increase limit");c.name='MaxListenersExceededWarning',c.emitter=t,c.type=n,c.count=v.length,h=c,console&&console.warn&&console.warn(h)}return t}function h(){for(var t=[],n=0;n0&&(p=n[0]),p instanceof Error)throw p;var v=new Error('Unhandled error.'+(p?' ('+p.message+')':''));throw v.context=p,v}var h=f[t];if(void 0===h)return!1;if('function'==typeof h)o(h,this,n);else{var c=h.length,l=L(h,c);for(s=0;s=0;f--)if(o[f]===n||o[f].listener===n){p=o[f].listener,u=f;break}if(u<0)return this;0===u?o.shift():_(o,u),1===o.length&&(s[t]=o[0]),void 0!==s.removeListener&&this.emit('removeListener',t,p||n)}return this},u.prototype.off=u.prototype.removeListener,u.prototype.removeAllListeners=function(t){var n,o,s;if(void 0===(o=this._events))return this;if(void 0===o.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==o[t]&&(0==--this._eventsCount?this._events=Object.create(null):delete o[t]),this;if(0===arguments.length){var u,f=Object.keys(o);for(s=0;s=0;s--)this.removeListener(t,n[s]);return this},u.prototype.listeners=function(t){return l(this,t,!0)},u.prototype.rawListeners=function(t){return l(this,t,!1)},u.listenerCount=function(t,n){return'function'==typeof t.listenerCount?t.listenerCount(n):y.call(t,n)},u.prototype.listenerCount=y,u.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},1000,[]); +__d(function(g,r,i,a,m,e,d){m.exports=r(d[0])},1001,[1002]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.supportsDarkMode=e.initialMode=void 0;e.initialMode='light';e.supportsDarkMode=!1},1002,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.DynamicStyleSheet=void 0;var n=t(r(d[1])),c=r(d[2]),l=r(d[3]);function h(t,n){var c={};for(var h in t){var o=t[h],v={};for(var f in o){var u=o[f];v[f]=u instanceof l.DynamicValue?u[n]:u}c[h]=v}return c}e.DynamicStyleSheet=function t(l){(0,n.default)(this,t),this.dark=c.StyleSheet.create(h(l,'dark')),this.light=c.StyleSheet.create(h(l,'light'))}},1003,[2,34,25,1004]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.DynamicValue=void 0;var n=t(r(d[1]));e.DynamicValue=function t(u,l){(0,n.default)(this,t),this.light=u,this.dark=l}},1004,[2,34]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.useDarkMode=function(){return'dark'===(0,n.useDarkModeContext)()};var n=r(d[0])},1005,[996]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.useDynamicStyleSheet=function(n){var u=(0,t.useDarkModeContext)();return n[u]};var t=r(d[0])},1006,[996]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.useDynamicValue=function(t,o){var c=(0,n.useDarkModeContext)();return t instanceof u.DynamicValue?t[c]:'dark'===c?o:t};var n=r(d[0]),u=r(d[1])},1007,[996,1004]); +__d(function(g,r,i,a,m,e,d){var u=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(u,n){var h,w=(0,c.useCallback)(u,n),y=(0,o.default)(),R=(0,s.default)(),b=(0,c.useMemo)(function(){return{queue:!0}},[y]),p=(0,c.useReducer)(function(u){return u+1},0),_=(0,t.default)(p,2)[1],k=(0,c.useRef)(),E=(0,c.useRef)(R),M=(0,c.useRef)(),O=(0,c.useRef)(),j=(0,c.useRef)();try{h=k.current!==w||O.current?w(y.select,y):M.current}catch(u){var q="An error occurred while running 'mapSelect': "+u.message;if(O.current)throw q+="\nThe error may be correlated with this previous error:\n",q+=O.current.stack+"\n\n",q+='Original stack trace:',new Error(q)}return l(function(){k.current=w,E.current!==R&&(E.current=R,v.flush(b)),M.current=h,O.current=void 0,j.current=!0}),l(function(){var u=function(){if(j.current){try{var u=k.current(y.select,y);if((0,f.default)(M.current,u))return;M.current=u}catch(u){O.current=u}_({})}};E.current?v.add(b,u):u();var t=y.subscribe(function(){E.current?v.add(b,u):u()});return function(){j.current=!1,t(),v.flush(b)}},[y]),h};var t=u(r(d[1])),n=r(d[2]),c=r(d[3]),f=u(r(d[4])),o=u(r(d[5])),s=u(r(d[6])),l='undefined'!=typeof window?c.useLayoutEffect:c.useEffect,v=(0,n.createQueue)()},1008,[2,5,1009,3,981,1010,1012]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.createQueue=void 0;var n=window.requestIdleCallback?window.requestIdleCallback:window.requestAnimationFrame;e.createQueue=function(){var t=[],u=new WeakMap,o=!1,f=function f(l){var c='number'==typeof l?function(){return!1}:function(){return l.timeRemaining()>0};do{if(0===t.length)return void(o=!1);var s=t.shift();u.get(s)(),u.delete(s)}while(c());n(f)};return{add:function(l,c){u.has(l)||t.push(l),u.set(l,c),o||(o=!0,n(f))},flush:function(n){if(!u.has(n))return!1;u.delete(n);var o=t.indexOf(n);return t.splice(o,1),!0}}}},1009,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return(0,t.useContext)(n.Context)};var t=r(d[0]),n=r(d[1])},1010,[3,1011]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.RegistryConsumer=e.Context=void 0;var o=r(d[1]),n=t(r(d[2])),u=(0,o.createContext)(n.default);e.Context=u;var v=u.Consumer,s=u.Provider,C=v;e.RegistryConsumer=C;var f=s;e.default=f},1011,[2,3,913]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){return(0,t.useContext)(n.Context)};var t=r(d[0]),n=r(d[1])},1012,[3,1013]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.AsyncModeConsumer=e.Context=void 0;var o=(0,r(d[0]).createContext)(!1);e.Context=o;var t=o.Consumer,n=o.Provider,u=t;e.AsyncModeConsumer=u;var s=n;e.default=s},1013,[3]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),u=t(r(d[2])),c=r(d[3]),o=r(d[4]),f=function(t){return(0,c.createHigherOrderComponent)(function(c){return function(f){var l=(0,o.useDispatchWithMap)(function(n,u){return t(n,f,u)},[]);return(0,n.createElement)(c,(0,u.default)({},f,l))}},'withDispatch')};e.default=f},1014,[2,3,16,975,1015]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"useDispatch",{enumerable:!0,get:function(){return n.default}}),Object.defineProperty(e,"useDispatchWithMap",{enumerable:!0,get:function(){return u.default}});var n=t(r(d[1])),u=t(r(d[2]))},1015,[2,1016,1017]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=t(r(d[1])),f=function(t){var f=(0,u.default)().dispatch;return void 0===t?f:f(t)};e.default=f},1016,[2,1010]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1])),u=r(d[2]),f=r(d[3]),c=t(r(d[4])),o='undefined'!=typeof window?f.useLayoutEffect:f.useEffect,p=function(t,p){var s=(0,c.default)(),l=(0,f.useRef)(t);return o(function(){l.current=t}),(0,f.useMemo)(function(){var t=l.current(s.dispatch,s);return(0,u.mapValues)(t,function(t,n){return'function'!=typeof t&&console.warn("Property "+n+" returned from dispatchMap in useDispatchWithMap must be a function."),function(){var t;return(t=l.current(s.dispatch,s))[n].apply(t,arguments)}})},[s].concat((0,n.default)(p)))};e.default=p},1017,[2,9,21,3,1010]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),u=t(r(d[2])),o=r(d[3]),l=r(d[4]),c=(0,o.createHigherOrderComponent)(function(t){return function(o){return(0,n.createElement)(l.RegistryConsumer,null,function(l){return(0,n.createElement)(t,(0,u.default)({},o,{registry:l}))})}},'withRegistry');e.default=c},1018,[2,3,16,975,1019]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"RegistryProvider",{enumerable:!0,get:function(){return u.default}}),Object.defineProperty(e,"RegistryConsumer",{enumerable:!0,get:function(){return u.RegistryConsumer}}),Object.defineProperty(e,"useRegistry",{enumerable:!0,get:function(){return o.default}});var u=n(r(d[2])),o=t(r(d[3]))},1019,[2,146,1011,1010]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"useAsyncMode",{enumerable:!0,get:function(){return u.default}}),Object.defineProperty(e,"AsyncModeProvider",{enumerable:!0,get:function(){return o.default}}),Object.defineProperty(e,"AsyncModeConsumer",{enumerable:!0,get:function(){return o.AsyncModeConsumer}});var u=t(r(d[2])),o=n(r(d[3]))},1020,[146,2,1012,1013]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.createRegistrySelector=function(t){var o=function n(){return t(n.registry.select).apply(void 0,arguments)};return o.isRegistrySelector=!0,o.registry=n.default,o},e.createRegistryControl=function(t){return t.isRegistryControl=!0,t};var n=t(r(d[1]))},1021,[2,913]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.initializeEditor=function(){if(c)return;(0,n.registerCoreBlocks)(),(0,o.unregisterBlockType)('core/code'),c=!0},Object.defineProperty(e,"Editor",{enumerable:!0,get:function(){return u.default}}),r(d[1]),r(d[2]),r(d[3]),r(d[4]),r(d[5]);var n=r(d[6]),o=r(d[7]);r(d[8]),r(d[9]);var u=t(r(d[10])),c=!1},1022,[2,1023,1044,1451,1156,1491,1499,1045,1766,1775,1784]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"EntityProvider",{enumerable:!0,get:function(){return b.default}}),Object.defineProperty(e,"useEntityId",{enumerable:!0,get:function(){return b.useEntityId}}),Object.defineProperty(e,"useEntityProp",{enumerable:!0,get:function(){return b.useEntityProp}}),Object.defineProperty(e,"__experimentalUseEntitySaving",{enumerable:!0,get:function(){return b.__experimentalUseEntitySaving}});var o=n(r(d[2])),u=r(d[3]),c=n(r(d[4])),f=n(r(d[5])),l=t(r(d[6])),s=t(r(d[7])),y=t(r(d[8])),p=r(d[9]),v=r(d[10]),b=t(r(d[11]));function E(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function O(t){for(var n=1;n1?n-1:0),f=1;f1?c-1:0),l=1;l0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RECEIVE_TERMS':return y({},t,(0,u.default)({},n.taxonomy,n.terms))}return t}function R(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{byId:{},queries:{}},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RECEIVE_USER_QUERY':return{byId:y({},t.byId,{},(0,s.keyBy)(n.users,'id')),queries:y({},t.queries,(0,u.default)({},n.queryID,(0,s.map)(n.users,function(t){return t.id})))}}return t}function I(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RECEIVE_CURRENT_USER':return n.currentUser}return t}function _(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RECEIVE_TAXONOMIES':return n.taxonomies}return t}function O(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RECEIVE_THEME_SUPPORTS':return y({},t,{},n.themeSupports)}return t}function b(t){return(0,s.flowRight)([(0,l.ifMatchingAction)(function(n){return n.name&&n.kind&&n.name===t.name&&n.kind===t.kind}),(0,l.replaceAction)(function(n){return y({},n,{key:t.key||v.DEFAULT_ENTITY_KEY})})])((0,c.combineReducers)({queriedData:E.reducer,edits:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RECEIVE_ITEMS':var o=y({},t),c=function(t){var u=t[n.key],c=o[u];if(!c)return"continue";var f=Object.keys(c).reduce(function(n,o){return(0,s.isEqual)(c[o],(0,s.get)(t[o],'raw',t[o]))||(n[o]=c[o]),n},{});Object.keys(f).length?o[u]=f:delete o[u]},f=n.items,l=Array.isArray(f),E=0;for(f=l?f:f["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var v;if(l){if(E>=f.length)break;v=f[E++]}else{if((E=f.next()).done)break;v=E.value}c(v)}return o;case'EDIT_ENTITY_RECORD':var h=y({},t[n.recordId],{},n.edits);return Object.keys(h).forEach(function(t){void 0===h[t]&&delete h[t]}),y({},t,(0,u.default)({},n.recordId,h))}return t},saving:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'SAVE_ENTITY_RECORD_START':case'SAVE_ENTITY_RECORD_FINISH':return y({},t,(0,u.default)({},n.recordId,{pending:'SAVE_ENTITY_RECORD_START'===n.type,error:n.error,isAutosave:n.isAutosave}))}return t}}))}function T(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:v.defaultEntities,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'ADD_ENTITIES':return[].concat((0,o.default)(t),(0,o.default)(n.entities))}return t}var S=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1?arguments[1]:void 0,f=T(t.config,o),l=t.reducer;if(!l||f!==t.config){var E=(0,s.groupBy)(f,'kind');l=(0,c.combineReducers)(Object.entries(E).reduce(function(t,o){var s=(0,n.default)(o,2),f=s[0],l=s[1],E=(0,c.combineReducers)(l.reduce(function(t,n){return y({},t,(0,u.default)({},n.name,b(n)))},{}));return t[f]=E,t},{}))}var v=l(t.data,o);return v===t.data&&f===t.config&&l===t.reducer?t:{reducer:l,data:v,config:f}};e.entities=S;var w,k=[];function U(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:k,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'EDIT_ENTITY_RECORD':case'CREATE_UNDO_LEVEL':var u,s='CREATE_UNDO_LEVEL'===n.type,c=!s&&(n.meta.isUndo||n.meta.isRedo);if(s?n=w:c||(w=Object.keys(n.edits).some(function(t){return!n.transientEdits[t]})?n:y({},n,{edits:y({},w&&w.edits,{},n.edits)})),c){if((u=(0,o.default)(t)).offset=t.offset+(n.meta.isUndo?-1:1),!t.flattenedUndo)return u;s=!0,n=w}if(!n.meta.undo)return t;if(!s&&!Object.keys(n.edits).some(function(t){return!n.transientEdits[t]}))return(u=(0,o.default)(t)).flattenedUndo=y({},t.flattenedUndo,{},n.edits),u.offset=t.offset,u;(u=u||t.slice(0,t.offset||void 0)).offset=u.offset||0,u.pop(),s||u.push({kind:n.meta.undo.kind,name:n.meta.undo.name,recordId:n.meta.undo.recordId,edits:y({},t.flattenedUndo,{},n.meta.undo.edits)});var l=Object.values(n.meta.undo.edits).filter(function(t){return'function'!=typeof t}),E=Object.values(n.edits).filter(function(t){return'function'!=typeof t});return(0,f.default)(l,E)||u.push({kind:n.kind,name:n.name,recordId:n.recordId,edits:s?y({},t.flattenedUndo,{},n.edits):n.edits}),u}return t}function A(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RECEIVE_EMBED_PREVIEW':var o=n.url,s=n.preview;return y({},t,(0,u.default)({},o,s))}return t}function D(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RECEIVE_USER_PERMISSION':return y({},t,(0,u.default)({},n.key,n.isAllowed))}return t}function j(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RECEIVE_AUTOSAVES':var o=n.postId,s=n.autosaves;return y({},t,(0,u.default)({},o,s))}return t}k.offset=0;var C=(0,c.combineReducers)({terms:p,users:R,currentUser:I,taxonomies:_,themeSupports:O,entities:S,undo:U,embedPreviews:A,userPermissions:D,autosaves:j});e.default=C},1024,[2,5,9,18,21,911,981,1025,1031,1037]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"conservativeMapItem",{enumerable:!0,get:function(){return n.default}}),Object.defineProperty(e,"ifMatchingAction",{enumerable:!0,get:function(){return u.default}}),Object.defineProperty(e,"onSubKey",{enumerable:!0,get:function(){return c.default}}),Object.defineProperty(e,"replaceAction",{enumerable:!0,get:function(){return f.default}}),Object.defineProperty(e,"withWeakMapCache",{enumerable:!0,get:function(){return o.default}});var n=t(r(d[1])),u=t(r(d[2])),c=t(r(d[3])),f=t(r(d[4])),o=t(r(d[5]))},1025,[2,1026,1027,1028,1029,1030]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(u,t){if(!u)return t;var f=!1,o={};for(var l in t)(0,n.isEqual)(u[l],t[l])?o[l]=u[l]:(f=!0,o[l]=t[l]);if(!f)return u;return o};var n=r(d[0])},1026,[21]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=function(n){return function(t){return function(u,o){return void 0===u||n(o)?t(u,o):u}}};e.default=n},1027,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.onSubKey=void 0;var n=t(r(d[1]));function o(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function u(t){for(var u=1;u0&&void 0!==arguments[0]?arguments[0]:{},f=arguments.length>1?arguments[1]:void 0,l=f[t];if(void 0===l)return c;var p=o(c[l],f);return p===c[l]?c:u({},c,(0,n.default)({},l,p))}}};e.onSubKey=c;var f=c;e.default=f},1028,[2,18]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=function(n){return function(t){return function(u,f){return t(u,n(f))}}};e.default=n},1029,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]);var n=function(n){var u=new WeakMap;return function(f){var o;return u.has(f)?o=u.get(f):(o=n(f),(0,t.isObjectLike)(f)&&u.set(f,o)),o}};e.default=n},1030,[21]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0});var n={reducer:!0};Object.defineProperty(e,"reducer",{enumerable:!0,get:function(){return c.default}});var o=r(d[1]);Object.keys(o).forEach(function(t){"default"!==t&&"__esModule"!==t&&(Object.prototype.hasOwnProperty.call(n,t)||Object.defineProperty(e,t,{enumerable:!0,get:function(){return o[t]}}))});var u=r(d[2]);Object.keys(u).forEach(function(t){"default"!==t&&"__esModule"!==t&&(Object.prototype.hasOwnProperty.call(n,t)||Object.defineProperty(e,t,{enumerable:!0,get:function(){return u[t]}}))});var c=t(r(d[3]))},1031,[2,1032,1033,1036]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.receiveItems=p,e.receiveQueriedItems=function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return u({},p(t),{query:n})};var n=t(r(d[1])),o=r(d[2]);function c(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function u(t){for(var o=1;o1&&void 0!==arguments[1]?arguments[1]:{},l=v.get(t);if(l){var s=l.get(n);if(void 0!==s)return s}else l=new u.default,v.set(t,l);var o=f(t,n);return l.set(n,o),o});e.getQueriedItems=s},1033,[2,1034,952,1035]); +__d(function(g,r,i,a,m,e,d){'use strict';var n,t;function u(n){return[n]}function l(){var n={clear:function(){n.head=null}};return n}function p(n,t,u){var l;if(n.length!==t.length)return!1;for(l=u;l=c&&p0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1?arguments[1]:void 0,u=n.type,c=n.page,l=n.perPage,p=n.key,s=void 0===p?f.DEFAULT_ENTITY_KEY:p;return'RECEIVE_ITEMS'!==u?t:y(t||[],(0,o.map)(n.items,s),c,l)}),b=(0,u.combineReducers)({items:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RECEIVE_ITEMS':var o=n.key||f.DEFAULT_ENTITY_KEY;return s({},t,{},n.items.reduce(function(n,u){var f=u[o];return n[f]=(0,c.conservativeMapItem)(t[f],u),n},{}))}return t},queries:v});e.default=b},1036,[2,18,21,911,1025,1037,1035]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.getKindEntities=x,e.getMethodName=e.kinds=e.defaultEntities=e.DEFAULT_ENTITY_KEY=void 0;var n=t(r(d[1])),s=r(d[2]),o=r(d[3]),u=r(d[4]),p=n.default.mark(b),c=n.default.mark(k),l=n.default.mark(x);e.DEFAULT_ENTITY_KEY='id';var f=[{name:'site',kind:'root',baseURL:'/wp/v2/settings'},{name:'postType',kind:'root',key:'slug',baseURL:'/wp/v2/types'},{name:'media',kind:'root',baseURL:'/wp/v2/media',plural:'mediaItems'},{name:'taxonomy',kind:'root',key:'slug',baseURL:'/wp/v2/taxonomies',plural:'taxonomies'},{name:'widgetArea',kind:'root',baseURL:'/__experimental/widget-areas',plural:'widgetAreas',transientEdits:{blocks:!0}}];e.defaultEntities=f;var v=[{name:'postType',loadEntities:b},{name:'taxonomy',loadEntities:k}];function b(){var t;return n.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,u.apiFetch)({path:'/wp/v2/types?context=edit'});case 2:return t=n.sent,n.abrupt("return",(0,s.map)(t,function(t,n){return{kind:'postType',baseURL:'/wp/v2/'+t.rest_base,name:n,transientEdits:{blocks:!0,selectionStart:!0,selectionEnd:!0},mergedEdits:{meta:!0}}}));case 4:case"end":return n.stop()}},p)}function k(){var t;return n.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,u.apiFetch)({path:'/wp/v2/taxonomies?context=edit'});case 2:return t=n.sent,n.abrupt("return",(0,s.map)(t,function(t,n){return{kind:'taxonomy',baseURL:'/wp/v2/'+t.rest_base,name:n}}));case 4:case"end":return n.stop()}},c)}e.kinds=v;function x(t){var p,c;return n.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,u.select)('getEntitiesByKind',t);case 2:if(!(p=n.sent)||0===p.length){n.next=5;break}return n.abrupt("return",p);case 5:if(c=(0,s.find)(v,{name:t})){n.next=8;break}return n.abrupt("return",[]);case 8:return n.next=10,c.loadEntities();case 10:return p=n.sent,n.next=13,(0,o.addEntities)(p);case 13:return n.abrupt("return",p);case 14:case"end":return n.stop()}},l)}e.getMethodName=function(t,n){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:'get',u=arguments.length>3&&void 0!==arguments[3]&&arguments[3],p=(0,s.find)(f,{kind:t,name:n}),c='root'===t?'':(0,s.upperFirst)((0,s.camelCase)(t)),l=(0,s.upperFirst)((0,s.camelCase)(n))+(u?'s':'');return""+o+c+(u&&p.plural?(0,s.upperFirst)((0,s.camelCase)(p.plural)):l)}},1037,[2,252,21,1038,1039]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.receiveUserQuery=function(t,n){return{type:'RECEIVE_USER_QUERY',users:(0,u.castArray)(n),queryID:t}},e.receiveCurrentUser=function(t){return{type:'RECEIVE_CURRENT_USER',currentUser:t}},e.addEntities=function(t){return{type:'ADD_ENTITIES',entities:t}},e.receiveEntityRecords=b,e.receiveThemeSupports=function(t){return{type:'RECEIVE_THEME_SUPPORTS',themeSupports:t}},e.receiveEmbedPreview=function(t,n){return{type:'RECEIVE_EMBED_PREVIEW',url:t,preview:n}},e.editEntityRecord=_,e.undo=I,e.redo=T,e.__unstableCreateUndoLevel=function(){return{type:'CREATE_UNDO_LEVEL'}},e.saveEntityRecord=O,e.saveEditedEntityRecord=k,e.receiveUploadPermissions=function(t){return{type:'RECEIVE_USER_PERMISSION',key:'create/media',isAllowed:t}},e.receiveUserPermission=function(t,n){return{type:'RECEIVE_USER_PERMISSION',key:t,isAllowed:n}},e.receiveAutosaves=w;var n=t(r(d[1])),s=t(r(d[2])),u=r(d[3]),c=r(d[4]),o=r(d[5]),E=r(d[6]),f=n.default.mark(_),p=n.default.mark(I),l=n.default.mark(T),v=n.default.mark(O),y=n.default.mark(k);function R(t,n){var s=Object.keys(t);return Object.getOwnPropertySymbols&&s.push.apply(s,Object.getOwnPropertySymbols(t)),n&&(s=s.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),s}function x(t){for(var n=1;n4&&void 0!==arguments[4]&&arguments[4];return'postType'===t&&(s=(0,u.castArray)(s).map(function(t){return'auto-draft'===t.status?x({},t,{title:''}):t})),x({},o?(0,c.receiveQueriedItems)(s,o):(0,c.receiveItems)(s),{kind:t,name:n,invalidateCache:E})}function _(t,s,c,o){var p,l,v,y,R,b,_,I,T,O=arguments;return n.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return p=O.length>4&&void 0!==O[4]?O[4]:{},n.next=3,(0,E.select)('getEntity',t,s);case 3:if(l=n.sent){n.next=6;break}throw new Error("The entity being edited ("+t+", "+s+") does not have a loaded config.");case 6:return v=l.transientEdits,y=void 0===v?{}:v,R=l.mergedEdits,b=void 0===R?{}:R,n.next=9,(0,E.select)('getRawEntityRecord',t,s,c);case 9:return _=n.sent,n.next=12,(0,E.select)('getEditedEntityRecord',t,s,c);case 12:return I=n.sent,T={kind:t,name:s,recordId:c,edits:Object.keys(o).reduce(function(t,n){var s=_[n],c=I[n],E=b[n]?x({},c,{},o[n]):o[n];return t[n]=(0,u.isEqual)(s,E)?void 0:E,t},{}),transientEdits:y},n.abrupt("return",x({type:'EDIT_ENTITY_RECORD'},T,{meta:{undo:!p.undoIgnore&&x({},T,{edits:Object.keys(o).reduce(function(t,n){return t[n]=I[n],t},{})})}}));case 15:case"end":return n.stop()}},f)}function I(){var t;return n.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,E.select)('getUndoEdit');case 2:if(t=n.sent){n.next=5;break}return n.abrupt("return");case 5:return n.next=7,x({type:'EDIT_ENTITY_RECORD'},t,{meta:{isUndo:!0}});case 7:case"end":return n.stop()}},p)}function T(){var t;return n.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,E.select)('getRedoEdit');case 2:if(t=n.sent){n.next=5;break}return n.abrupt("return");case 5:return n.next=7,x({type:'EDIT_ENTITY_RECORD'},t,{meta:{isRedo:!0}});case 7:case"end":return n.stop()}},l)}function O(t,s,c){var f,p,l,y,R,I,T,O,k,h,S,U,A,P,D,C,j,N,V,Y=arguments;return n.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return f=Y.length>3&&void 0!==Y[3]?Y[3]:{isAutosave:!1},p=f.isAutosave,l=void 0!==p&&p,n.next=3,(0,o.getKindEntities)(t);case 3:if(y=n.sent,R=(0,u.find)(y,{kind:t,name:s})){n.next=7;break}return n.abrupt("return");case 7:return I=R.key||o.DEFAULT_ENTITY_KEY,T=c[I],n.next=11,{type:'SAVE_ENTITY_RECORD_START',kind:t,name:s,recordId:T,isAutosave:l};case 11:return n.prev=11,U=R.baseURL+(T?'/'+T:''),n.next=15,(0,E.select)('getRawEntityRecord',t,s,T);case 15:if(A=n.sent,!l){n.next=40;break}return n.next=19,(0,E.select)('getCurrentUser');case 19:return P=n.sent,D=P?P.id:void 0,n.next=23,(0,E.select)('getAutosave',A.type,A.id,D);case 23:return C=n.sent,j=x({},A,{},C,{},c),j=Object.keys(j).reduce(function(t,n){return['title','excerpt','content'].includes(n)&&(t[n]=(0,u.get)(j[n],'raw',j[n])),t},{status:'auto-draft'===j.status?'draft':j.status}),n.next=28,(0,E.apiFetch)({path:U+"/autosaves",method:'POST',data:j});case 28:if(O=n.sent,A.id!==O.id){n.next=36;break}return N=x({},A,{},j,{},O),N=Object.keys(N).reduce(function(t,n){return['title','excerpt','content'].includes(n)?t[n]=(0,u.get)(N[n],'raw',N[n]):t[n]='status'===n?'auto-draft'===A.status&&'draft'===N.status?N.status:A.status:(0,u.get)(A[n],'raw',A[n]),t},{}),n.next=34,b(t,s,N,void 0,!0);case 34:n.next=38;break;case 36:return n.next=38,w(A.id,O);case 38:n.next=55;break;case 40:return V=c,'postType'===t&&A&&'auto-draft'===A.status&&(V.status||(V=x({},V,{status:'draft'})),V.title&&'Auto Draft'!==V.title||(V=x({},V,{title:''}))),n.next=44,(0,E.select)('getEntityRecord',t,s,T);case 44:return h=n.sent,n.next=47,(0,E.select)('getEntityRecordEdits',t,s,T);case 47:return S=n.sent,n.next=50,b(t,s,x({},h,{},V),void 0,!0);case 50:return n.next=52,(0,E.apiFetch)({path:U,method:T?'PUT':'POST',data:V});case 52:return O=n.sent,n.next=55,b(t,s,O,void 0,!0);case 55:n.next=78;break;case 57:if(n.prev=57,n.t0=n.catch(11),k=n.t0,!h||!S){n.next=78;break}return n.next=63,b(t,s,h,void 0,!0);case 63:return n.t1=_,n.t2=t,n.t3=s,n.t4=T,n.t5=x,n.t6={},n.t7=S,n.t8={},n.next=73,(0,E.select)('getEntityRecordEdits',t,s,T);case 73:return n.t9=n.sent,n.t10=(0,n.t5)(n.t6,n.t7,n.t8,n.t9),n.t11={undoIgnore:!0},n.next=78,(0,n.t1)(n.t2,n.t3,n.t4,n.t10,n.t11);case 78:return n.next=80,{type:'SAVE_ENTITY_RECORD_FINISH',kind:t,name:s,recordId:T,error:k,isAutosave:l};case 80:return n.abrupt("return",O);case 81:case"end":return n.stop()}},v,null,[[11,57]])}function k(t,s,u,c){var o,f;return n.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,E.select)('hasEditsForEntityRecord',t,s,u);case 2:if(n.sent){n.next=4;break}return n.abrupt("return");case 4:return n.next=6,(0,E.select)('getEntityRecordNonTransientEdits',t,s,u);case 6:return o=n.sent,f=x({id:u},o),n.delegateYield(O(t,s,f,c),"t0",9);case 9:case"end":return n.stop()}},y)}function w(t,n){return{type:'RECEIVE_AUTOSAVES',postId:t,autosaves:(0,u.castArray)(n)}}},1038,[2,252,18,21,1031,1037,1039]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.apiFetch=function(t){return{type:'API_FETCH',request:t}},e.select=function(t){for(var n=arguments.length,o=new Array(n>1?n-1:0),u=1;u1?n-1:0),u=1;u'+n+'';if(!u)return!1;return u.html===o},e.hasUploadPermissions=function(t){return(0,c.default)("select( 'core' ).hasUploadPermissions()",{alternative:"select( 'core' ).canUser( 'create', 'media' )"}),(0,o.defaultTo)(S(t,'create','media'),!0)},e.canUser=S,e.getAutosaves=function(t,n,u){return t.autosaves[u]},e.getAutosave=function(t,n,u,s){if(void 0===s)return;var c=t.autosaves[u];return(0,o.find)(c,{author:s})},e.getReferenceByDistinctEdits=e.hasFetchedAutosaves=e.getEditedEntityRecord=e.getEntityRecordNonTransientEdits=e.getEntityRecordChangesByRecord=e.getRawEntityRecord=e.getUserQueryResults=e.isRequestingEmbedPreview=void 0;var n=t(r(d[1])),u=t(r(d[2])),o=r(d[3]),s=r(d[4]),c=t(r(d[5])),f=r(d[6]),v=r(d[7]);function y(t,n){var u=Object.keys(t);return Object.getOwnPropertySymbols&&u.push.apply(u,Object.getOwnPropertySymbols(t)),n&&(u=u.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),u}function E(t){for(var u=1;u0}e.getEntityRecordNonTransientEdits=j;var U=(0,u.default)(function(t,n,u,o){return E({},p(t,n,u,o),{},P(t,n,u,o))},function(t){return[t.entities.data]});function k(t,n,u,s){return(0,o.get)(t.entities.data,[n,u,'saving',s,'pending'],!1)}function D(t){return t.undo.offset}function A(t){return t.undo[t.undo.length-2+D(t)]}function B(t){return t.undo[t.undo.length+D(t)]}function S(t,n,u,s){var c=(0,o.compact)([n,u,s]).join('/');return(0,o.get)(t,['userPermissions',c])}e.getEditedEntityRecord=U;var q=(0,s.createRegistrySelector)(function(t){return function(n,u,o){return t(f.REDUCER_KEY).hasFinishedResolution('getAutosaves',[u,o])}});e.hasFetchedAutosaves=q;var _=(0,u.default)(function(){return[]},function(t){return[t.undo.length,t.undo.offset]});e.getReferenceByDistinctEdits=_},1040,[2,18,1034,21,911,959,1041,1031]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.REDUCER_KEY=void 0;e.REDUCER_KEY='core'},1041,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.getAuthors=T,e.getCurrentUser=S,e.getEntityRecord=A,e.getEntityRecords=F,e.getThemeSupports=_,e.getEmbedPreview=R,e.hasUploadPermissions=D,e.canUser=I,e.getAutosaves=C,e.getAutosave=L;var n=t(r(d[1])),s=t(r(d[2])),c=r(d[3]),u=r(d[4]),o=t(r(d[5])),p=r(d[6]),f=r(d[7]),l=r(d[8]);function v(t,n){var s=Object.keys(t);return Object.getOwnPropertySymbols&&s.push.apply(s,Object.getOwnPropertySymbols(t)),n&&(s=s.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),s}function h(t){for(var s=1;s2&&void 0!==x[2]?x[2]:'',s.next=3,(0,f.getKindEntities)(t);case 3:if(o=s.sent,v=(0,c.find)(o,{kind:t,name:n})){s.next=7;break}return s.abrupt("return");case 7:return s.next=9,(0,l.apiFetch)({path:v.baseURL+"/"+u+"?context=edit"});case 9:return h=s.sent,s.next=12,(0,p.receiveEntityRecords)(t,n,h);case 12:case"end":return s.stop()}},b)}function F(t,n){var o,v,x,w,b,E=arguments;return s.default.wrap(function(s){for(;;)switch(s.prev=s.next){case 0:return o=E.length>2&&void 0!==E[2]?E[2]:{},s.next=3,(0,f.getKindEntities)(t);case 3:if(v=s.sent,x=(0,c.find)(v,{kind:t,name:n})){s.next=7;break}return s.abrupt("return");case 7:return w=(0,u.addQueryArgs)(x.baseURL,h({},o,{context:'edit'})),s.next=10,(0,l.apiFetch)({path:w});case 10:return b=s.sent,s.next=13,(0,p.receiveEntityRecords)(t,n,Object.values(b),o);case 13:case"end":return s.stop()}},y)}function _(){var t;return s.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,l.apiFetch)({path:'/wp/v2/themes?status=active'});case 2:return t=n.sent,n.next=5,(0,p.receiveThemeSupports)(t[0].theme_supports);case 5:case"end":return n.stop()}},E)}function R(t){var n;return s.default.wrap(function(s){for(;;)switch(s.prev=s.next){case 0:return s.prev=0,s.next=3,(0,l.apiFetch)({path:(0,u.addQueryArgs)('/oembed/1.0/proxy',{url:t})});case 3:return n=s.sent,s.next=6,(0,p.receiveEmbedPreview)(t,n);case 6:s.next=12;break;case 8:return s.prev=8,s.t0=s.catch(0),s.next=12,(0,p.receiveEmbedPreview)(t,!1);case 12:case"end":return s.stop()}},k,null,[[0,8]])}function D(){return s.default.wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return(0,o.default)("select( 'core' ).hasUploadPermissions()",{alternative:"select( 'core' ).canUser( 'create', 'media' )"}),t.delegateYield(I('create','media'),"t0",2);case 2:case"end":return t.stop()}},O)}function I(t,n,u){var o,f,v,h,x,w;return s.default.wrap(function(s){for(;;)switch(s.prev=s.next){case 0:if(o={create:'POST',read:'GET',update:'PUT',delete:'DELETE'}[t]){s.next=4;break}throw new Error("'"+t+"' is not a valid action.");case 4:return f=u?"/wp/v2/"+n+"/"+u:"/wp/v2/"+n,s.prev=5,s.next=8,(0,l.apiFetch)({path:f,method:u?'GET':'OPTIONS',parse:!1});case 8:v=s.sent,s.next=14;break;case 11:return s.prev=11,s.t0=s.catch(5),s.abrupt("return");case 14:return h=(0,c.hasIn)(v,['headers','get'])?v.headers.get('allow'):(0,c.get)(v,['headers','Allow'],''),x=(0,c.compact)([t,n,u]).join('/'),w=(0,c.includes)(h,o),s.next=19,(0,p.receiveUserPermission)(x,w);case 19:case"end":return s.stop()}},P,null,[[5,11]])}function C(t,n){var c,u,o;return s.default.wrap(function(s){for(;;)switch(s.prev=s.next){case 0:return s.next=2,(0,l.resolveSelect)('getPostType',t);case 2:return c=s.sent,u=c.rest_base,s.next=6,(0,l.apiFetch)({path:"/wp/v2/"+u+"/"+n+"/autosaves?context=edit"});case 6:if(!(o=s.sent)||!o.length){s.next=10;break}return s.next=10,(0,p.receiveAutosaves)(n,o);case 10:case"end":return s.stop()}},j)}function L(t,n){return s.default.wrap(function(s){for(;;)switch(s.prev=s.next){case 0:return s.next=2,(0,l.resolveSelect)('getAutosaves',t,n);case 2:case"end":return s.stop()}},U)}F.shouldInvalidate=function(t,n,s){return'RECEIVE_ITEMS'===t.type&&t.invalidateCache&&n===t.kind&&s===t.name}},1042,[2,18,252,21,881,959,1038,1037,1039]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var c=t.kind,o=t.type,u=t.id,s=t.children,f=p(c,o).context.Provider;return(0,n.createElement)(f,{value:u},s)},e.useEntityId=v,e.useEntityProp=function(t,c,s){var f=v(t,c),l=(0,u.useSelect)(function(n){var o=n('core'),u=o.getEntityRecord,l=o.getEditedEntityRecord;u(t,c,f);var y=l(t,c,f);return y&&y[s]},[t,c,f,s]),y=(0,u.useDispatch)('core').editEntityRecord,p=(0,n.useCallback)(function(n){y(t,c,f,(0,o.default)({},s,n))},[t,c,f,s]);return[l,p]},e.__experimentalUseEntitySaving=function(t,s,f){var y=v(t,s),p=(0,u.useSelect)(function(n){var c=n('core'),o=c.getEntityRecordNonTransientEdits,u=c.isSavingEntityRecord,l=o(t,s,y),p=Object.keys(l);return[f?p.some(function(t){return'string'==typeof f?t===f:f.includes(t)}):p.length>0,u(t,s,y),l]},[t,s,y,f]),O=(0,c.default)(p,3),b=O[0],E=O[1],j=O[2],P=(0,u.useDispatch)('core').saveEntityRecord,k=(0,n.useCallback)(function(){var n=j;'string'==typeof f?n=(0,o.default)({},f,n[f]):f&&(n=n.reduce(function(t,c){return f.includes(c)&&(t[c]=n[c]),t},{})),P(t,s,l({id:y},n))},[t,s,y,f,j]);return[b,E,k]};var n=r(d[1]),c=t(r(d[2])),o=t(r(d[3])),u=r(d[4]),s=r(d[5]);function f(t,n){var c=Object.keys(t);return Object.getOwnPropertySymbols&&c.push.apply(c,Object.getOwnPropertySymbols(t)),n&&(c=c.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),c}function l(t){for(var n=1;n0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'ADD_BLOCK_TYPES':return f({},t,{},(0,c.keyBy)((0,c.map)(n.blockTypes,function(t){return(0,c.omit)(t,'styles ')}),'name'));case'REMOVE_BLOCK_TYPES':return(0,c.omit)(t,n.names)}return t}function y(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1?arguments[1]:void 0;switch(o.type){case'ADD_BLOCK_TYPES':return f({},t,{},(0,c.mapValues)((0,c.keyBy)(o.blockTypes,'name'),function(l){return(0,c.uniqBy)([].concat((0,n.default)((0,c.get)(l,['styles'],[])),(0,n.default)((0,c.get)(t,[l.name],[]))),function(t){return t.name})}));case'ADD_BLOCK_STYLES':return f({},t,(0,l.default)({},o.blockName,(0,c.uniqBy)([].concat((0,n.default)((0,c.get)(t,[o.blockName],[])),(0,n.default)(o.styles)),function(t){return t.name})));case'REMOVE_BLOCK_STYLES':return f({},t,(0,l.default)({},o.blockName,(0,c.filter)((0,c.get)(t,[o.blockName],[]),function(t){return-1===o.styleNames.indexOf(t.name)})))}return t}function b(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1?arguments[1]:void 0;switch(o.type){case'ADD_BLOCK_TYPES':return f({},t,{},(0,c.mapValues)((0,c.keyBy)(o.blockTypes,'name'),function(l){return(0,c.uniqBy)([].concat((0,n.default)((0,c.get)(l,['patterns'],[])),(0,n.default)((0,c.get)(t,[l.name],[]))),function(t){return t.name})}));case'ADD_BLOCK_PATTERNS':return f({},t,(0,l.default)({},o.blockName,(0,c.uniqBy)([].concat((0,n.default)((0,c.get)(t,[o.blockName],[])),(0,n.default)(o.patterns)),function(t){return t.name})));case'REMOVE_BLOCK_PATTERNS':return f({},t,(0,l.default)({},o.blockName,(0,c.filter)((0,c.get)(t,[o.blockName],[]),function(t){return-1===o.patternNames.indexOf(t.name)})))}return t}function k(t){return function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,l=arguments.length>1?arguments[1]:void 0;switch(l.type){case'REMOVE_BLOCK_TYPES':return-1!==l.names.indexOf(n)?null:n;case t:return l.name||null}return n}}e.DEFAULT_CATEGORIES=_;var O=k('SET_DEFAULT_BLOCK_NAME');e.defaultBlockName=O;var p=k('SET_FREEFORM_FALLBACK_BLOCK_NAME');e.freeformFallbackBlockName=p;var B=k('SET_UNREGISTERED_FALLBACK_BLOCK_NAME');e.unregisteredFallbackBlockName=B;var N=k('SET_GROUPING_BLOCK_NAME');function T(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:_,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'SET_CATEGORIES':return n.categories||[];case'UPDATE_CATEGORY':if(!n.category||(0,c.isEmpty)(n.category))return t;if((0,c.find)(t,['slug',n.slug]))return(0,c.map)(t,function(t){return t.slug===n.slug?f({},t,{},n.category):t})}return t}e.groupingBlockName=N;var v=(0,o.combineReducers)({blockTypes:E,blockStyles:y,blockPatterns:b,defaultBlockName:O,freeformFallbackBlockName:p,unregisteredFallbackBlockName:B,groupingBlockName:N,categories:T});e.default=v},1047,[2,9,18,21,911,347]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.getBlockType=l,e.getBlockStyles=function(t,n){return t.blockStyles[n]},e.__experimentalGetBlockPatterns=s,e.__experimentalGetDefaultBlockPattern=function(t,n){var u=s(t,n);return(0,o.findLast)(u,'isDefault')||(0,o.first)(u)},e.getCategories=function(t){return t.categories},e.getDefaultBlockName=function(t){return t.defaultBlockName},e.getFreeformFallbackBlockName=function(t){return t.freeformFallbackBlockName},e.getUnregisteredFallbackBlockName=function(t){return t.unregisteredFallbackBlockName},e.getGroupingBlockName=function(t){return t.groupingBlockName},e.hasBlockSupport=p,e.isMatchingSearchTerm=function(t,n,c){var l=u(t,n),s=(0,o.flow)([o.deburr,function(t){return t.toLowerCase()},function(t){return t.trim()}]),f=s(c),k=(0,o.flow)([s,function(t){return(0,o.includes)(t,f)}]);return k(l.title)||(0,o.some)(l.keywords,k)||k(l.category)},e.hasChildBlocksWithInserterSupport=e.hasChildBlocks=e.getBlockSupport=e.getChildBlockNames=e.getBlockTypes=void 0;var n=t(r(d[1])),o=r(d[2]),u=function(t,n){return'string'==typeof n?l(t,n):n},c=(0,n.default)(function(t){return Object.values(t.blockTypes)},function(t){return[t.blockTypes]});function l(t,n){return t.blockTypes[n]}function s(t,n){return t.blockPatterns[n]}e.getBlockTypes=c;var f=(0,n.default)(function(t,n){return(0,o.map)((0,o.filter)(t.blockTypes,function(t){return(0,o.includes)(t.parent,n)}),function(t){return t.name})},function(t){return[t.blockTypes]});e.getChildBlockNames=f;var k=function(t,n,c,l){var s=u(t,n);return(0,o.get)(s,['supports',c],l)};function p(t,n,o,u){return!!k(t,n,o,u)}e.getBlockSupport=k;e.hasChildBlocks=function(t,n){return f(t,n).length>0};e.hasChildBlocksWithInserterSupport=function(t,n){return(0,o.some)(f(t,n),function(n){return p(t,n,'inserter',!0)})}},1048,[2,1034,21]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.addBlockTypes=function(n){return{type:'ADD_BLOCK_TYPES',blockTypes:(0,t.castArray)(n)}},e.removeBlockTypes=function(n){return{type:'REMOVE_BLOCK_TYPES',names:(0,t.castArray)(n)}},e.addBlockStyles=function(n,c){return{type:'ADD_BLOCK_STYLES',styles:(0,t.castArray)(c),blockName:n}},e.removeBlockStyles=function(n,c){return{type:'REMOVE_BLOCK_STYLES',styleNames:(0,t.castArray)(c),blockName:n}},e.__experimentalAddBlockPatterns=function(n,c){return{type:'ADD_BLOCK_PATTERNS',patterns:(0,t.castArray)(c),blockName:n}},e.__experimentalRemoveBlockPatterns=function(n,c){return{type:'REMOVE_BLOCK_PATTERNS',patternNames:(0,t.castArray)(c),blockName:n}},e.setDefaultBlockName=function(t){return{type:'SET_DEFAULT_BLOCK_NAME',name:t}},e.setFreeformFallbackBlockName=function(t){return{type:'SET_FREEFORM_FALLBACK_BLOCK_NAME',name:t}},e.setUnregisteredFallbackBlockName=function(t){return{type:'SET_UNREGISTERED_FALLBACK_BLOCK_NAME',name:t}},e.setGroupingBlockName=function(t){return{type:'SET_GROUPING_BLOCK_NAME',name:t}},e.setCategories=function(t){return{type:'SET_CATEGORIES',categories:t}},e.updateCategory=function(t,n){return{type:'UPDATE_CATEGORY',slug:t,category:n}};var t=r(d[0])},1049,[21]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"createBlock",{enumerable:!0,get:function(){return o.createBlock}}),Object.defineProperty(e,"cloneBlock",{enumerable:!0,get:function(){return o.cloneBlock}}),Object.defineProperty(e,"getPossibleBlockTransformations",{enumerable:!0,get:function(){return o.getPossibleBlockTransformations}}),Object.defineProperty(e,"switchToBlockType",{enumerable:!0,get:function(){return o.switchToBlockType}}),Object.defineProperty(e,"getBlockTransforms",{enumerable:!0,get:function(){return o.getBlockTransforms}}),Object.defineProperty(e,"findTransform",{enumerable:!0,get:function(){return o.findTransform}}),Object.defineProperty(e,"getBlockFromExample",{enumerable:!0,get:function(){return o.getBlockFromExample}}),Object.defineProperty(e,"parse",{enumerable:!0,get:function(){return u.default}}),Object.defineProperty(e,"getBlockAttributes",{enumerable:!0,get:function(){return u.getBlockAttributes}}),Object.defineProperty(e,"parseWithAttributeSchema",{enumerable:!0,get:function(){return u.parseWithAttributeSchema}}),Object.defineProperty(e,"pasteHandler",{enumerable:!0,get:function(){return c.pasteHandler}}),Object.defineProperty(e,"rawHandler",{enumerable:!0,get:function(){return c.rawHandler}}),Object.defineProperty(e,"getPhrasingContentSchema",{enumerable:!0,get:function(){return c.getPhrasingContentSchema}}),Object.defineProperty(e,"serialize",{enumerable:!0,get:function(){return l.default}}),Object.defineProperty(e,"getBlockContent",{enumerable:!0,get:function(){return l.getBlockContent}}),Object.defineProperty(e,"getBlockDefaultClassName",{enumerable:!0,get:function(){return l.getBlockDefaultClassName}}),Object.defineProperty(e,"getBlockMenuDefaultClassName",{enumerable:!0,get:function(){return l.getBlockMenuDefaultClassName}}),Object.defineProperty(e,"getSaveElement",{enumerable:!0,get:function(){return l.getSaveElement}}),Object.defineProperty(e,"getSaveContent",{enumerable:!0,get:function(){return l.getSaveContent}}),Object.defineProperty(e,"isValidBlockContent",{enumerable:!0,get:function(){return f.isValidBlockContent}}),Object.defineProperty(e,"getCategories",{enumerable:!0,get:function(){return b.getCategories}}),Object.defineProperty(e,"setCategories",{enumerable:!0,get:function(){return b.setCategories}}),Object.defineProperty(e,"updateCategory",{enumerable:!0,get:function(){return b.updateCategory}}),Object.defineProperty(e,"registerBlockType",{enumerable:!0,get:function(){return p.registerBlockType}}),Object.defineProperty(e,"unregisterBlockType",{enumerable:!0,get:function(){return p.unregisterBlockType}}),Object.defineProperty(e,"setFreeformContentHandlerName",{enumerable:!0,get:function(){return p.setFreeformContentHandlerName}}),Object.defineProperty(e,"getFreeformContentHandlerName",{enumerable:!0,get:function(){return p.getFreeformContentHandlerName}}),Object.defineProperty(e,"setUnregisteredTypeHandlerName",{enumerable:!0,get:function(){return p.setUnregisteredTypeHandlerName}}),Object.defineProperty(e,"getUnregisteredTypeHandlerName",{enumerable:!0,get:function(){return p.getUnregisteredTypeHandlerName}}),Object.defineProperty(e,"setDefaultBlockName",{enumerable:!0,get:function(){return p.setDefaultBlockName}}),Object.defineProperty(e,"getDefaultBlockName",{enumerable:!0,get:function(){return p.getDefaultBlockName}}),Object.defineProperty(e,"setGroupingBlockName",{enumerable:!0,get:function(){return p.setGroupingBlockName}}),Object.defineProperty(e,"getGroupingBlockName",{enumerable:!0,get:function(){return p.getGroupingBlockName}}),Object.defineProperty(e,"getBlockType",{enumerable:!0,get:function(){return p.getBlockType}}),Object.defineProperty(e,"getBlockTypes",{enumerable:!0,get:function(){return p.getBlockTypes}}),Object.defineProperty(e,"getBlockSupport",{enumerable:!0,get:function(){return p.getBlockSupport}}),Object.defineProperty(e,"hasBlockSupport",{enumerable:!0,get:function(){return p.hasBlockSupport}}),Object.defineProperty(e,"isReusableBlock",{enumerable:!0,get:function(){return p.isReusableBlock}}),Object.defineProperty(e,"getChildBlockNames",{enumerable:!0,get:function(){return p.getChildBlockNames}}),Object.defineProperty(e,"hasChildBlocks",{enumerable:!0,get:function(){return p.hasChildBlocks}}),Object.defineProperty(e,"hasChildBlocksWithInserterSupport",{enumerable:!0,get:function(){return p.hasChildBlocksWithInserterSupport}}),Object.defineProperty(e,"unstable__bootstrapServerSideBlockDefinitions",{enumerable:!0,get:function(){return p.unstable__bootstrapServerSideBlockDefinitions}}),Object.defineProperty(e,"registerBlockStyle",{enumerable:!0,get:function(){return p.registerBlockStyle}}),Object.defineProperty(e,"unregisterBlockStyle",{enumerable:!0,get:function(){return p.unregisterBlockStyle}}),Object.defineProperty(e,"__experimentalRegisterBlockPattern",{enumerable:!0,get:function(){return p.__experimentalRegisterBlockPattern}}),Object.defineProperty(e,"__experimentalUnregisterBlockPattern",{enumerable:!0,get:function(){return p.__experimentalUnregisterBlockPattern}}),Object.defineProperty(e,"isUnmodifiedDefaultBlock",{enumerable:!0,get:function(){return s.isUnmodifiedDefaultBlock}}),Object.defineProperty(e,"normalizeIconObject",{enumerable:!0,get:function(){return s.normalizeIconObject}}),Object.defineProperty(e,"isValidIcon",{enumerable:!0,get:function(){return s.isValidIcon}}),Object.defineProperty(e,"doBlocksMatchTemplate",{enumerable:!0,get:function(){return y.doBlocksMatchTemplate}}),Object.defineProperty(e,"synchronizeBlocksWithTemplate",{enumerable:!0,get:function(){return y.synchronizeBlocksWithTemplate}}),Object.defineProperty(e,"children",{enumerable:!0,get:function(){return k.default}}),Object.defineProperty(e,"node",{enumerable:!0,get:function(){return B.default}});var o=r(d[2]),u=n(r(d[3])),c=r(d[4]),l=n(r(d[5])),f=r(d[6]),b=r(d[7]),p=r(d[8]),s=r(d[9]),y=r(d[10]),k=t(r(d[11])),B=t(r(d[12]))},1050,[2,146,1051,1059,1073,1068,1063,1101,1055,1056,1102,1072,1071]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.createBlock=y,e.cloneBlock=function t(n){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};var c=arguments.length>2?arguments[2]:void 0;var l=(0,u.default)();return k({},n,{clientId:l,attributes:k({},n.attributes,{},o),innerBlocks:c||n.innerBlocks.map(function(n){return t(n)})})},e.getPossibleBlockTransformations=function(t){if((0,c.isEmpty)(t))return[];var o=b(t),u=B(t);return(0,c.uniq)([].concat((0,n.default)(o),(0,n.default)(u)))},e.findTransform=_,e.getBlockTransforms=j,e.switchToBlockType=function(t,n){var o=(0,c.castArray)(t),u=o.length>1,s=o[0],p=s.name;if(!h(n)&&u&&!T(o))return null;var y,v=j('from',n),b=_(j('to',p),function(t){return'block'===t.type&&(O(t)||-1!==t.blocks.indexOf(n))&&(!u||t.isMultiBlock)})||_(v,function(t){return'block'===t.type&&(O(t)||-1!==t.blocks.indexOf(p))&&(!u||t.isMultiBlock)});if(!b)return null;y=b.isMultiBlock?(0,c.has)(b,'__experimentalConvert')?b.__experimentalConvert(o):b.transform(o.map(function(t){return t.attributes}),o.map(function(t){return t.innerBlocks})):(0,c.has)(b,'__experimentalConvert')?b.__experimentalConvert(s):b.transform(s.attributes,s.innerBlocks);if(!(0,c.isObjectLike)(y))return null;if((y=(0,c.castArray)(y)).some(function(t){return!(0,f.getBlockType)(t.name)}))return null;var B=(0,c.findIndex)(y,function(t){return t.name===n});if(B<0)return null;return y.map(function(n,o){var u=k({},n,{clientId:o===B?s.clientId:n.clientId});return(0,l.applyFilters)('blocks.switchToBlockType.transformedBlock',u,t)})},e.getBlockFromExample=e.isBlockSelectionOfSameType=e.isContainerGroupBlock=e.isWildcardBlockTransform=void 0;var n=t(r(d[1])),o=t(r(d[2])),u=t(r(d[3])),c=r(d[4]),l=r(d[5]),f=r(d[6]),s=r(d[7]);function p(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function k(t){for(var n=1;n1&&void 0!==arguments[1]?arguments[1]:{},o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],l=(0,f.getBlockType)(t),s=(0,c.reduce)(l.attributes,function(t,o,u){var c=n[u];return void 0!==c?t[u]=c:o.hasOwnProperty('default')&&(t[u]=o.default),-1!==['node','children'].indexOf(o.source)&&('string'==typeof t[u]?t[u]=[t[u]]:Array.isArray(t[u])||(t[u]=[])),t},{});return{clientId:(0,u.default)(),name:t,isValid:!0,attributes:s,innerBlocks:o}}var v=function(t,n,o){if((0,c.isEmpty)(o))return!1;var u=o.length>1,l=(0,c.first)(o).name;if(!(O(t)||!u||t.isMultiBlock))return!1;if(!O(t)&&!(0,c.every)(o,{name:l}))return!1;if(!('block'===t.type))return!1;var f=(0,c.first)(o);if(!('from'!==n||-1!==t.blocks.indexOf(f.name)||O(t)))return!1;if(!u&&h(f.name)&&h(t.blockName))return!1;if((0,c.isFunction)(t.isMatch)){var s=t.isMultiBlock?o.map(function(t){return t.attributes}):f.attributes;if(!t.isMatch(s))return!1}return!0},b=function(t){if((0,c.isEmpty)(t))return[];var n=(0,f.getBlockTypes)();return(0,c.filter)(n,function(n){return!!_(j('from',n.name),function(n){return v(n,'from',t)})})},B=function(t){if((0,c.isEmpty)(t))return[];var n=(0,c.first)(t),o=j('to',(0,f.getBlockType)(n.name).name),u=(0,c.filter)(o,function(n){return n&&v(n,'to',t)});return(0,c.flatMap)(u,function(t){return t.blocks}).map(function(t){return(0,f.getBlockType)(t)})},O=function(t){return t&&'block'===t.type&&Array.isArray(t.blocks)&&t.blocks.includes('*')};e.isWildcardBlockTransform=O;var h=function(t){return t===(0,f.getGroupingBlockName)()};e.isContainerGroupBlock=h;var T=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];if(!t.length)return!1;var n=t[0].name;return(0,c.every)(t,['name',n])};function _(t,n){for(var o=(0,l.createHooks)(),u=function(u){var c=t[u];n(c)&&o.addFilter('transform','transform/'+u.toString(),function(t){return t||c},c.priority)},c=0;c>>((3&t)<<3)&255;return o}}},1053,[]); +__d(function(g,r,i,a,m,e,d){for(var n=[],t=0;t<256;++t)n[t]=(t+256).toString(16).substr(1);m.exports=function(t,o){var u=o||0,f=n;return[f[t[u++]],f[t[u++]],f[t[u++]],f[t[u++]],'-',f[t[u++]],f[t[u++]],'-',f[t[u++]],f[t[u++]],'-',f[t[u++]],f[t[u++]],'-',f[t[u++]],f[t[u++]],f[t[u++]],f[t[u++]],f[t[u++]],f[t[u++]]].join('')}},1054,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.unstable__bootstrapServerSideBlockDefinitions=function(t){e.serverSideBlockDefinitions=b=p({},b,{},t)},e.registerBlockType=function(t,o){if(o=p({name:t},f,{},(0,c.get)(b,t),{},o),'string'!=typeof t)return void console.error('Block names must be strings.');if(!/^[a-z][a-z0-9-]*\/[a-z][a-z0-9-]*$/.test(t))return void console.error('Block names must contain a namespace prefix, include only lowercase alphanumeric characters or dashes, and start with a letter. Example: my-plugin/my-custom-block');if((0,l.select)('core/blocks').getBlockType(t))return void console.error('Block "'+t+'" is already registered.');var k=p({},o);(o=(0,n.applyFilters)('blocks.registerBlockType',o,t)).deprecated&&(o.deprecated=o.deprecated.map(function(o){return(0,c.pick)((0,n.applyFilters)('blocks.registerBlockType',p({},(0,c.omit)(k,u.DEPRECATED_ENTRY_KEYS),{},o),t),u.DEPRECATED_ENTRY_KEYS)}));if(!(0,c.isPlainObject)(o))return void console.error('Block settings must be a valid object.');if(!(0,c.isFunction)(o.save))return void console.error('The "save" property must be a valid function.');if('edit'in o&&!(0,c.isFunction)(o.edit))return void console.error('The "edit" property must be a valid function.');if(!('category'in o))return void console.error('The block "'+t+'" must have a category.');if('category'in o&&!(0,c.some)((0,l.select)('core/blocks').getCategories(),{slug:o.category}))return void console.error('The block "'+t+'" must have a registered category.');if(!('title'in o)||''===o.title)return void console.error('The block "'+t+'" must have a title.');if('string'!=typeof o.title)return void console.error('Block titles must be strings.');if(o.icon=(0,s.normalizeIconObject)(o.icon),!(0,s.isValidIcon)(o.icon.src))return void console.error("The icon passed is invalid. The icon should be a string, an element, a function, or an object following the specifications documented in https://developer.wordpress.org/block-editor/developers/block-api/block-registration/#icon-optional");return(0,l.dispatch)('core/blocks').addBlockTypes(o),o},e.unregisterBlockType=function(t){var o=(0,l.select)('core/blocks').getBlockType(t);if(!o)return void console.error('Block "'+t+'" is not registered.');return(0,l.dispatch)('core/blocks').removeBlockTypes(t),o},e.setFreeformContentHandlerName=function(t){(0,l.dispatch)('core/blocks').setFreeformFallbackBlockName(t)},e.getFreeformContentHandlerName=function(){return(0,l.select)('core/blocks').getFreeformFallbackBlockName()},e.getGroupingBlockName=function(){return(0,l.select)('core/blocks').getGroupingBlockName()},e.setUnregisteredTypeHandlerName=function(t){(0,l.dispatch)('core/blocks').setUnregisteredFallbackBlockName(t)},e.getUnregisteredTypeHandlerName=function(){return(0,l.select)('core/blocks').getUnregisteredFallbackBlockName()},e.setDefaultBlockName=function(t){(0,l.dispatch)('core/blocks').setDefaultBlockName(t)},e.setGroupingBlockName=function(t){(0,l.dispatch)('core/blocks').setGroupingBlockName(t)},e.getDefaultBlockName=function(){return(0,l.select)('core/blocks').getDefaultBlockName()},e.getBlockType=function(t){return(0,l.select)('core/blocks').getBlockType(t)},e.getBlockTypes=function(){return(0,l.select)('core/blocks').getBlockTypes()},e.getBlockSupport=function(t,o,c){return(0,l.select)('core/blocks').getBlockSupport(t,o,c)},e.hasBlockSupport=function(t,o,c){return(0,l.select)('core/blocks').hasBlockSupport(t,o,c)},e.isReusableBlock=function(t){return'core/block'===t.name},e.__experimentalUnregisterBlockPattern=e.__experimentalRegisterBlockPattern=e.unregisterBlockStyle=e.registerBlockStyle=e.hasChildBlocksWithInserterSupport=e.hasChildBlocks=e.getChildBlockNames=e.serverSideBlockDefinitions=e.DEFAULT_BLOCK_TYPE_SETTINGS=void 0;var o=t(r(d[1])),c=r(d[2]),n=r(d[3]),l=r(d[4]),s=r(d[5]),u=r(d[6]);function k(t,o){var c=Object.keys(t);return Object.getOwnPropertySymbols&&c.push.apply(c,Object.getOwnPropertySymbols(t)),o&&(c=c.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),c}function p(t){for(var c=1;c.5?_/(2-u-c):_/(u+c),u){case t:o=(n-s)/_+(n1&&(s-=1),s<.16666666666666666?t+6*(n-t)*s:s<.5?n:s<.6666666666666666?t+(n-t)*(.6666666666666666-s)*6:t}if(t=P(t,360),n=P(n,100),s=P(s,100),0===n)o=f=h=s;else{var u=s<.5?s*(1+n):s+n-s*n,c=2*s-u;o=l(c,u,t+.3333333333333333),f=l(c,u,t),h=l(c,u,t-.3333333333333333)}return{r:255*o,g:255*f,b:255*h}}function v(t,n,s){t=P(t,255),n=P(n,255),s=P(s,255);var o,f,u=l(t,n,s),c=h(t,n,s),b=u,_=u-c;if(f=0===u?0:_/u,u==c)o=0;else{switch(u){case t:o=(n-s)/_+(n>1)+720)%360;--n;)o.h=(o.h+f)%360,h.push(c(o));return h}function E(t,n){n=n||6;for(var s=c(t).toHsv(),o=s.h,f=s.s,h=s.v,l=[],u=1/n;n--;)l.push(c({h:o,s:f,v:h})),h=(h+u)%1;return l}c.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var t=this.toRgb();return(299*t.r+587*t.g+114*t.b)/1e3},getLuminance:function(){var n,s,o,f=this.toRgb();return n=f.r/255,s=f.g/255,o=f.b/255,.2126*(n<=.03928?n/12.92:t.pow((n+.055)/1.055,2.4))+.7152*(s<=.03928?s/12.92:t.pow((s+.055)/1.055,2.4))+.0722*(o<=.03928?o/12.92:t.pow((o+.055)/1.055,2.4))},setAlpha:function(t){return this._a=O(t),this._roundA=f(100*this._a)/100,this},toHsv:function(){var t=v(this._r,this._g,this._b);return{h:360*t.h,s:t.s,v:t.v,a:this._a}},toHsvString:function(){var t=v(this._r,this._g,this._b),n=f(360*t.h),s=f(100*t.s),o=f(100*t.v);return 1==this._a?"hsv("+n+", "+s+"%, "+o+"%)":"hsva("+n+", "+s+"%, "+o+"%, "+this._roundA+")"},toHsl:function(){var t=_(this._r,this._g,this._b);return{h:360*t.h,s:t.s,l:t.l,a:this._a}},toHslString:function(){var t=_(this._r,this._g,this._b),n=f(360*t.h),s=f(100*t.s),o=f(100*t.l);return 1==this._a?"hsl("+n+", "+s+"%, "+o+"%)":"hsla("+n+", "+s+"%, "+o+"%, "+this._roundA+")"},toHex:function(t){return A(this._r,this._g,this._b,t)},toHexString:function(t){return'#'+this.toHex(t)},toHex8:function(t){return x(this._r,this._g,this._b,this._a,t)},toHex8String:function(t){return'#'+this.toHex8(t)},toRgb:function(){return{r:f(this._r),g:f(this._g),b:f(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+f(this._r)+", "+f(this._g)+", "+f(this._b)+")":"rgba("+f(this._r)+", "+f(this._g)+", "+f(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:f(100*P(this._r,255))+"%",g:f(100*P(this._g,255))+"%",b:f(100*P(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+f(100*P(this._r,255))+"%, "+f(100*P(this._g,255))+"%, "+f(100*P(this._b,255))+"%)":"rgba("+f(100*P(this._r,255))+"%, "+f(100*P(this._g,255))+"%, "+f(100*P(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(j[A(this._r,this._g,this._b,!0)]||!1)},toFilter:function(t){var n='#'+k(this._r,this._g,this._b,this._a),s=n,o=this._gradientType?"GradientType = 1, ":"";if(t){var f=c(t);s='#'+k(f._r,f._g,f._b,f._a)}return"progid:DXImageTransform.Microsoft.gradient("+o+"startColorstr="+n+",endColorstr="+s+")"},toString:function(t){var n=!!t;t=t||this._format;var s=!1,o=this._a<1&&this._a>=0;return n||!o||"hex"!==t&&"hex6"!==t&&"hex3"!==t&&"hex4"!==t&&"hex8"!==t&&"name"!==t?("rgb"===t&&(s=this.toRgbString()),"prgb"===t&&(s=this.toPercentageRgbString()),"hex"!==t&&"hex6"!==t||(s=this.toHexString()),"hex3"===t&&(s=this.toHexString(!0)),"hex4"===t&&(s=this.toHex8String(!0)),"hex8"===t&&(s=this.toHex8String()),"name"===t&&(s=this.toName()),"hsl"===t&&(s=this.toHslString()),"hsv"===t&&(s=this.toHsvString()),s||this.toHexString()):"name"===t&&0===this._a?this.toName():this.toRgbString()},clone:function(){return c(this.toString())},_applyModification:function(t,n){var s=t.apply(null,[this].concat([].slice.call(n)));return this._r=s._r,this._g=s._g,this._b=s._b,this.setAlpha(s._a),this},lighten:function(){return this._applyModification(R,arguments)},brighten:function(){return this._applyModification(F,arguments)},darken:function(){return this._applyModification(C,arguments)},desaturate:function(){return this._applyModification(w,arguments)},saturate:function(){return this._applyModification(S,arguments)},greyscale:function(){return this._applyModification(H,arguments)},spin:function(){return this._applyModification(q,arguments)},_applyCombination:function(t,n){return t.apply(null,[this].concat([].slice.call(n)))},analogous:function(){return this._applyCombination(z,arguments)},complement:function(){return this._applyCombination(M,arguments)},monochromatic:function(){return this._applyCombination(E,arguments)},splitcomplement:function(){return this._applyCombination(N,arguments)},triad:function(){return this._applyCombination(I,arguments)},tetrad:function(){return this._applyCombination(L,arguments)}},c.fromRatio=function(t,n){if("object"==typeof t){var s={};for(var o in t)t.hasOwnProperty(o)&&(s[o]="a"===o?t[o]:V(t[o]));t=s}return c(t,n)},c.equals=function(t,n){return!(!t||!n)&&c(t).toRgbString()==c(n).toRgbString()},c.random=function(){return c.fromRatio({r:u(),g:u(),b:u()})},c.mix=function(t,n,s){s=0===s?0:s||50;var o=c(t).toRgb(),f=c(n).toRgb(),h=s/100;return c({r:(f.r-o.r)*h+o.r,g:(f.g-o.g)*h+o.g,b:(f.b-o.b)*h+o.b,a:(f.a-o.a)*h+o.a})},c.readability=function(n,s){var o=c(n),f=c(s);return(t.max(o.getLuminance(),f.getLuminance())+.05)/(t.min(o.getLuminance(),f.getLuminance())+.05)},c.isReadable=function(t,n,s){var o,f,h=c.readability(t,n);switch(f=!1,(o=Y(s)).level+o.size){case"AAsmall":case"AAAlarge":f=h>=4.5;break;case"AAlarge":f=h>=3;break;case"AAAsmall":f=h>=7}return f},c.mostReadable=function(t,n,s){var o,f,h,l,u=null,b=0;f=(s=s||{}).includeFallbackColors,h=s.level,l=s.size;for(var _=0;_b&&(b=o,u=c(n[_]));return c.isReadable(t,u,{level:h,size:l})||!f?u:(s.includeFallbackColors=!1,c.mostReadable(t,["#fff","#000"],s))};var T=c.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},j=c.hexNames=(function(t){var n={};for(var s in t)t.hasOwnProperty(s)&&(n[t[s]]=s);return n})(T);function O(t){return t=parseFloat(t),(isNaN(t)||t<0||t>1)&&(t=1),t}function P(n,s){U(n)&&(n="100%");var o=B(n);return n=h(s,l(0,parseFloat(n))),o&&(n=parseInt(n*s,10)/100),t.abs(n-s)<1e-6?1:n%s/parseFloat(s)}function $(t){return h(1,l(0,t))}function D(t){return parseInt(t,16)}function U(t){return"string"==typeof t&&-1!=t.indexOf('.')&&1===parseFloat(t)}function B(t){return"string"==typeof t&&-1!=t.indexOf('%')}function G(t){return 1==t.length?'0'+t:''+t}function V(t){return t<=1&&(t=100*t+"%"),t}function X(n){return t.round(255*parseFloat(n)).toString(16)}function J(t){return D(t)/255}var K={CSS_UNIT:new RegExp("(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)"),rgb:new RegExp("rgb[\\s|\\(]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))\\s*\\)?"),rgba:new RegExp("rgba[\\s|\\(]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))\\s*\\)?"),hsl:new RegExp("hsl[\\s|\\(]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))\\s*\\)?"),hsla:new RegExp("hsla[\\s|\\(]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))\\s*\\)?"),hsv:new RegExp("hsv[\\s|\\(]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))\\s*\\)?"),hsva:new RegExp("hsva[\\s|\\(]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))[,|\\s]+((?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?))\\s*\\)?"),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function Q(t){return!!K.CSS_UNIT.exec(t)}function W(t){t=t.replace(n,'').replace(s,'').toLowerCase();var o,f=!1;if(T[t])t=T[t],f=!0;else if('transparent'==t)return{r:0,g:0,b:0,a:0,format:"name"};return(o=K.rgb.exec(t))?{r:o[1],g:o[2],b:o[3]}:(o=K.rgba.exec(t))?{r:o[1],g:o[2],b:o[3],a:o[4]}:(o=K.hsl.exec(t))?{h:o[1],s:o[2],l:o[3]}:(o=K.hsla.exec(t))?{h:o[1],s:o[2],l:o[3],a:o[4]}:(o=K.hsv.exec(t))?{h:o[1],s:o[2],v:o[3]}:(o=K.hsva.exec(t))?{h:o[1],s:o[2],v:o[3],a:o[4]}:(o=K.hex8.exec(t))?{r:D(o[1]),g:D(o[2]),b:D(o[3]),a:J(o[4]),format:f?"name":"hex8"}:(o=K.hex6.exec(t))?{r:D(o[1]),g:D(o[2]),b:D(o[3]),format:f?"name":"hex"}:(o=K.hex4.exec(t))?{r:D(o[1]+''+o[1]),g:D(o[2]+''+o[2]),b:D(o[3]+''+o[3]),a:J(o[4]+''+o[4]),format:f?"name":"hex8"}:!!(o=K.hex3.exec(t))&&{r:D(o[1]+''+o[1]),g:D(o[2]+''+o[2]),b:D(o[3]+''+o[3]),format:f?"name":"hex"}}function Y(t){var n,s;return n=((t=t||{level:"AA",size:"small"}).level||"AA").toUpperCase(),s=(t.size||"small").toLowerCase(),"AA"!==n&&"AAA"!==n&&(n="AA"),"small"!==s&&"large"!==s&&(s="small"),{level:n,size:s}}void 0!==m&&m.exports?m.exports=c:'function'==typeof define&&define.amd?define(function(){return c}):window.tinycolor=c})(Math)},1057,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.DEPRECATED_ENTRY_KEYS=void 0;e.DEPRECATED_ENTRY_KEYS=['attributes','supports','save','migrate','isEligible']},1058,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.isOfType=T,e.isOfTypes=D,e.isValidByType=E,e.isValidByEnum=N,e.isAmbiguousStringSource=function(t){var n=t.source,o=t.type;return j.has(n)&&'string'==typeof o},e.matcherFromSource=P,e.parseWithAttributeSchema=S,e.getBlockAttribute=I,e.getBlockAttributes=x,e.getMigratedBlock=_,e.createBlockWithFallback=F,e.serializeBlockNode=M,e.default=e.parseWithGrammar=e.toBooleanAttributeMatcher=void 0;var n=t(r(d[1])),o=t(r(d[2])),s=t(r(d[3])),c=t(r(d[4])),u=r(d[5]),l=r(d[6]),f=r(d[7]),v=r(d[8]),p=r(d[9]),y=r(d[10]),b=r(d[11]),h=r(d[12]),k=r(d[13]),B=r(d[14]),C=r(d[15]),O=r(d[16]);function w(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function A(t){for(var n=1;n2&&void 0!==arguments[2]?arguments[2]:{},s=(0,C.normalizeBlockType)(t),c=(0,l.mapValues)(s.attributes,function(t,s){return I(s,t,n,o)});return(0,v.applyFilters)('blocks.getBlockAttributes',c,s,n,o)}function _(t,s){var u=(0,y.getBlockType)(t.name),f=u.deprecated;if(!f||!f.length)return t;for(var v=t,p=v.originalContent,b=v.innerBlocks,k=0;k0&&(T.isValid?console.info('Block successfully updated for `%s` (%o).\n\nNew content generated by `save` function:\n\n%s\n\nContent retrieved from post body:\n\n%s',O.name,O,(0,k.getSaveContent)(O,T.attributes),T.originalContent):T.validationIssues.forEach(function(t){var n=t.log,s=t.args;return n.apply(void 0,(0,o.default)(s))})),T}}function M(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=n.isCommentDelimited,s=void 0===o||o,c=t.blockName,u=t.attrs,l=void 0===u?{}:u,f=t.innerBlocks,v=void 0===f?[]:f,p=t.innerContent,y=0,b=(void 0===p?[]:p).map(function(t){return null!==t?t:M(v[y++],n)}).join('\n').replace(/\n+/g,'\n').trim();return s?(0,k.getCommentDelimitedContent)(c,l,b):b}e.toBooleanAttributeMatcher=V;var q,R=(q=p.parse,function(t){return q(t).reduce(function(t,n){var o=F(n);return o&&t.push(o),t},[])});e.parseWithGrammar=R;var W=R;e.default=W},1059,[2,5,9,18,16,1060,21,1061,960,1062,1055,1051,1063,1068,1070,1056,1058]); +__d(function(g,r,i,a,m,e,d){var t,n;t=this,n=function(t){'use strict';function n(t,n){for(var u,o=n.split('.');u=o.shift();){if(!(u in t))return;t=t[u]}return t}var u,o=function(){return u||(u=document.implementation.createHTMLDocument('')),u};function f(t,n){if(n){if('string'==typeof t){var u=o();u.body.innerHTML=t,t=u.body}if('function'==typeof n)return n(t);if(Object===n.constructor)return Object.keys(n).reduce(function(u,o){return u[o]=f(t,n[o]),u},{})}}function c(t,u){return 1===arguments.length&&(u=t,t=void 0),function(o){var f=o;if(t&&(f=o.querySelector(t)),f)return n(f,u)}}t.parse=f,t.prop=c,t.attr=function(t,n){return 1===arguments.length&&(n=t,t=void 0),function(u){var o=c(t,'attributes')(u);if(o&&o.hasOwnProperty(n))return o[n].value}},t.html=function(t){return c(t,'innerHTML')},t.text=function(t){return c(t,'textContent')},t.query=function(t,n){return function(u){var o=u.querySelectorAll(t);return[].map.call(o,function(t){return f(t,n)})}},Object.defineProperty(t,'__esModule',{value:!0})},'object'==typeof e&&void 0!==m?n(e):'function'==typeof define&&define.amd?define(['exports'],n):n(t.hpq={})},1060,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.autop=function(t){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],l=[];if(''===t.trim())return'';if(-1!==(t+='\n').indexOf(''),s=c.pop();t='';for(var u=0;u';l.push([b,f.substr(h)+'']),t+=f.substr(0,h)+b}else t+=f}t+=s}-1!==(t=o(t=(t=(t=(t=t.replace(/\s*/g,'\n\n')).replace(new RegExp("(<(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|form|map|area|blockquote|address|math|style|p|h[1-6]|hr|fieldset|legend|section|article|aside|hgroup|header|footer|nav|figure|figcaption|details|menu|summary)[\\s/>])",'g'),'\n\n$1')).replace(new RegExp("()",'g'),'$1\n\n')).replace(/\r\n|\r/g,'\n'),{'\n':' \x3c!-- wpnl --\x3e '})).indexOf('\s*/g,''));-1!==t.indexOf('')&&(t=(t=(t=t.replace(/(]*>)\s*/g,'$1')).replace(/\s*<\/object>/g,'')).replace(/\s*(<\/?(?:param|embed)[^>]*>)\s*/g,'$1'));-1===t.indexOf('\]]*[>\]])\s*/g,'$1')).replace(/\s*([<\[]\/(?:audio|video)[>\]])/g,'$1')).replace(/\s*(<(?:source|track)[^>]*>)\s*/g,'$1'));-1!==t.indexOf(']*>)/,'$1')).replace(/<\/figcaption>\s*/,''));var v=(t=t.replace(/\n\n+/g,'\n\n')).split(/\n\s*\n/).filter(Boolean);t='',v.forEach(function(p){t+='

'+p.replace(/^\n*|\n*$/g,'')+'

\n'}),t=(t=(t=(t=(t=(t=(t=(t=t.replace(/

\s*<\/p>/g,'')).replace(/

([^<]+)<\/(div|address|form)>/g,'

$1

')).replace(new RegExp("

\\s*(]*>)\\s*

",'g'),'$1')).replace(/

(/g,'$1')).replace(/

]*)>/gi,'

')).replace(/<\/blockquote><\/p>/g,'

')).replace(new RegExp("

\\s*(]*>)",'g'),'$1')).replace(new RegExp("(]*>)\\s*

",'g'),'$1'),n&&(t=(t=(t=(t=t.replace(/<(script|style).*?<\/\\1>/g,function(t){return t[0].replace(/\n/g,'')})).replace(/
|/g,'
')).replace(/(
)?\s*\n/g,function(t,p){return p?t:'
\n'})).replace(//g,'\n'));t=(t=(t=t.replace(new RegExp("(]*>)\\s*
",'g'),'$1')).replace(/
(\s*<\/?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)[^>]*>)/g,'$1')).replace(/\n<\/p>$/g,'

'),l.forEach(function(n){var l=(0,p.default)(n,2),o=l[0],c=l[1];t=t.replace(o,c)}),-1!==t.indexOf('\x3c!-- wpnl --\x3e')&&(t=t.replace(/\s?\s?/g,'\n'));return t},e.removep=function(t){var p=[],n=!1,l=!1;if(!t)return'';-1===t.indexOf(']*>[\s\S]*?<\/\1>/g,function(t){return p.push(t),''}));-1!==t.indexOf(']*>[\s\S]+?<\/pre>/g,function(t){return(t=(t=t.replace(/
(\r\n|\n)?/g,'')).replace(/<\/?p( [^>]*)?>(\r\n|\n)?/g,'')).replace(/\r?\n/g,'')}));-1!==t.indexOf('[caption')&&(l=!0,t=t.replace(/\[caption[\s\S]+?\[\/caption\]/g,function(t){return t.replace(/]*)>/g,'').replace(/[\r\n\t]+/,'')}));-1!==(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=t.replace(new RegExp("\\s*\\s*",'g'),'\n')).replace(new RegExp("\\s*<((?:blockquote|ul|ol|li|dl|dt|dd|table|thead|tbody|tfoot|tr|th|td|h[1-6]|fieldset|figure|div|p)(?: [^>]*)?)>",'g'),'\n<$1>')).replace(/(

]+>[\s\S]*?)<\/p>/g,'$1')).replace(/]*)?>\s*

/gi,'\n\n')).replace(/\s*

/gi,'')).replace(/\s*<\/p>\s*/gi,'\n\n')).replace(/\n[\s\u00a0]+\n/g,'\n\n')).replace(/(\s*)
\s*/gi,function(t,p){return p&&-1!==p.indexOf('\n')?'\n\n':'\n'})).replace(/\s*

\s*/g,'
\n')).replace(/\s*\[caption([^\[]+)\[\/caption\]\s*/gi,'\n\n[caption$1[/caption]\n\n')).replace(/caption\]\n\n+\[caption/g,'caption]\n\n[caption')).replace(new RegExp("\\s*<((?:blockquote|ul|ol|li|dl|dt|dd|table|thead|tbody|tfoot|tr|th|td|h[1-6]|fieldset|figure|pre)(?: [^>]*)?)\\s*>",'g'),'\n<$1>')).replace(new RegExp("\\s*\\s*",'g'),'\n')).replace(/<((li|dt|dd)[^>]*)>/g,' \t<$1>')).indexOf('/g,'\n'));-1!==t.indexOf(']*)?>\s*/g,'\n\n\n\n'));-1!==t.indexOf('/g,function(t){return t.replace(/[\r\n]+/g,'')}));t=(t=(t=(t=t.replace(/<\/p#>/g,'

\n')).replace(/\s*(

]+>[\s\S]*?<\/p>)/g,'\n$1')).replace(/^\s+/,'')).replace(/[\s\u00a0]+$/,''),n&&(t=t.replace(//g,'\n'));l&&(t=t.replace(/]*)>/g,''));p.length&&(t=t.replace(//g,function(){return p.shift()}));return t};var p=t(r(d[1])),n=new RegExp("(<((?=!--|!\\[CDATA\\[)((?=!-)!(?:-(?!->)[^\\-]*)*(?:--\x3e)?|!\\[CDATA\\[[^\\]]*(?:](?!]>)[^\\]]*)*?(?:]]>)?)|[^>]*>?))");function l(t){for(var p,l=[],o=t;p=o.match(n);)l.push(o.slice(0,p.index)),l.push(p[0]),o=o.slice(p.index+p[0].length);return o.length&&l.push(o),l}function o(t,p){for(var n=l(t),o=!1,c=Object.keys(p),s=1;s)[^])*)\5|[^]*?)}\s+)?(\/)?-->/g;function f(n,t,o,u,s){return{blockName:n,attrs:t,innerBlocks:o,innerHTML:u,innerContent:s}}function p(n){return f(null,{},[],n,[n])}function k(n,t,o,u,s){return{block:n,tokenStart:t,tokenLength:o,prevOffset:u||t+o,leadingHtmlStart:s}}function b(){var n=h(),c=(0,l.default)(n,5),b=c[0],v=c[1],S=c[2],_=c[3],C=c[4],M=s.length,z=_>o?o:null;switch(b){case'no-more-tokens':if(0===M)return O(),!1;if(1===M)return L(),!1;for(;02&&void 0!==arguments[2]?arguments[2]:(0,y.createLogger)(),s=t.chars,u=n.chars,c=0;c2&&void 0!==arguments[2]?arguments[2]:(0,y.createLogger)();if(t.length!==n.length)return o.warning('Expected attributes %o, instead saw %o.',n,t),!1;var s=[t,n].map(p.fromPairs),c=(0,u.default)(s,2),l=c[0],f=c[1];for(var v in l){if(!f.hasOwnProperty(v))return o.warning('Encountered unexpected attribute `%s`.',v),!1;var h=l[v],w=f[v],b=M[v];if(b){if(!b(h,w))return o.warning('Expected attribute `%s` of value `%s`, saw `%s`.',v,w,h),!1}else if(h!==w)return o.warning('Expected attribute `%s` of value `%s`, saw `%s`.',v,w,h),!1}return!0}e.isEqualAttributesOfName=M;var I={StartTag:function(t,o){var s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:(0,y.createLogger)();return t.tagName!==o.tagName?(s.warning('Expected tag name `%s`, instead saw `%s`.',o.tagName,t.tagName),!1):A.apply(void 0,(0,n.default)([t,o].map($)).concat([s]))},Chars:z,Comment:z};function W(t){for(var n;n=t.shift();){if('Chars'!==n.type)return n;if(!O.test(n.chars))return n}}function _(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,y.createLogger)();try{return new f.Tokenizer(new L).tokenize(t)}catch(o){n.warning('Malformed HTML detected: %s',t)}return null}function H(t,n){return!!t.selfClosing&&!(!n||n.tagName!==t.tagName||'EndTag'!==n.type)}function R(t,n){var o,s,c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:(0,y.createLogger)(),l=[t,n].map(function(t){return _(t,c)}),f=(0,u.default)(l,2),p=f[0],v=f[1];if(!p||!v)return!1;for(;o=W(p);){if(!(s=W(v)))return c.warning('Expected end of content, instead saw %o.',o),!1;if(o.type!==s.type)return c.warning('Expected token of type `%s` (%o), instead saw `%s` (%o).',s.type,s,o.type,o),!1;var h=I[o.type];if(h&&!h(o,s,c))return!1;H(o,v[0])?W(v):H(s,p[0])&&W(p)}return!(s=W(v))||(c.warning('Expected %o, instead saw end of content.',s),!1)}function Q(t,n,o){var s,u=arguments.length>3&&void 0!==arguments[3]?arguments[3]:(0,y.createQueuedLogger)(),c=(0,w.normalizeBlockType)(t);try{s=(0,h.getSaveContent)(c,n)}catch(t){return u.error('Block validation failed because an error occurred while generating block content:\n\n%s',t.toString()),{isValid:!1,validationIssues:u.getItems()}}var l=R(o,s,u);return l||u.error('Block validation failed for `%s` (%o).\n\nContent generated by `save` function:\n\n%s\n\nContent retrieved from post body:\n\n%s',c.name,c,s,o),{isValid:l,validationIssues:u.getItems()}}e.isEqualTokensOfType=I},1063,[2,9,18,1064,5,34,35,1065,21,1066,1067,1068,1056]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=r(d[1]),o=r(d[2]);m.exports=function(u){return n(u)||t(u)||o()}},1064,[6,11,8]); +__d(function(g,r,i,a,m,e,d){var t,s;t=this,s=function(t){'use strict';var s={Aacute:"\xc1",aacute:"\xe1",Abreve:"\u0102",abreve:"\u0103",ac:"\u223e",acd:"\u223f",acE:"\u223e\u0333",Acirc:"\xc2",acirc:"\xe2",acute:"\xb4",Acy:"\u0410",acy:"\u0430",AElig:"\xc6",aelig:"\xe6",af:"\u2061",Afr:"\ud835\udd04",afr:"\ud835\udd1e",Agrave:"\xc0",agrave:"\xe0",alefsym:"\u2135",aleph:"\u2135",Alpha:"\u0391",alpha:"\u03b1",Amacr:"\u0100",amacr:"\u0101",amalg:"\u2a3f",AMP:"&",amp:"&",And:"\u2a53",and:"\u2227",andand:"\u2a55",andd:"\u2a5c",andslope:"\u2a58",andv:"\u2a5a",ang:"\u2220",ange:"\u29a4",angle:"\u2220",angmsd:"\u2221",angmsdaa:"\u29a8",angmsdab:"\u29a9",angmsdac:"\u29aa",angmsdad:"\u29ab",angmsdae:"\u29ac",angmsdaf:"\u29ad",angmsdag:"\u29ae",angmsdah:"\u29af",angrt:"\u221f",angrtvb:"\u22be",angrtvbd:"\u299d",angsph:"\u2222",angst:"\xc5",angzarr:"\u237c",Aogon:"\u0104",aogon:"\u0105",Aopf:"\ud835\udd38",aopf:"\ud835\udd52",ap:"\u2248",apacir:"\u2a6f",apE:"\u2a70",ape:"\u224a",apid:"\u224b",apos:"'",ApplyFunction:"\u2061",approx:"\u2248",approxeq:"\u224a",Aring:"\xc5",aring:"\xe5",Ascr:"\ud835\udc9c",ascr:"\ud835\udcb6",Assign:"\u2254",ast:"*",asymp:"\u2248",asympeq:"\u224d",Atilde:"\xc3",atilde:"\xe3",Auml:"\xc4",auml:"\xe4",awconint:"\u2233",awint:"\u2a11",backcong:"\u224c",backepsilon:"\u03f6",backprime:"\u2035",backsim:"\u223d",backsimeq:"\u22cd",Backslash:"\u2216",Barv:"\u2ae7",barvee:"\u22bd",Barwed:"\u2306",barwed:"\u2305",barwedge:"\u2305",bbrk:"\u23b5",bbrktbrk:"\u23b6",bcong:"\u224c",Bcy:"\u0411",bcy:"\u0431",bdquo:"\u201e",becaus:"\u2235",Because:"\u2235",because:"\u2235",bemptyv:"\u29b0",bepsi:"\u03f6",bernou:"\u212c",Bernoullis:"\u212c",Beta:"\u0392",beta:"\u03b2",beth:"\u2136",between:"\u226c",Bfr:"\ud835\udd05",bfr:"\ud835\udd1f",bigcap:"\u22c2",bigcirc:"\u25ef",bigcup:"\u22c3",bigodot:"\u2a00",bigoplus:"\u2a01",bigotimes:"\u2a02",bigsqcup:"\u2a06",bigstar:"\u2605",bigtriangledown:"\u25bd",bigtriangleup:"\u25b3",biguplus:"\u2a04",bigvee:"\u22c1",bigwedge:"\u22c0",bkarow:"\u290d",blacklozenge:"\u29eb",blacksquare:"\u25aa",blacktriangle:"\u25b4",blacktriangledown:"\u25be",blacktriangleleft:"\u25c2",blacktriangleright:"\u25b8",blank:"\u2423",blk12:"\u2592",blk14:"\u2591",blk34:"\u2593",block:"\u2588",bne:"=\u20e5",bnequiv:"\u2261\u20e5",bNot:"\u2aed",bnot:"\u2310",Bopf:"\ud835\udd39",bopf:"\ud835\udd53",bot:"\u22a5",bottom:"\u22a5",bowtie:"\u22c8",boxbox:"\u29c9",boxDL:"\u2557",boxDl:"\u2556",boxdL:"\u2555",boxdl:"\u2510",boxDR:"\u2554",boxDr:"\u2553",boxdR:"\u2552",boxdr:"\u250c",boxH:"\u2550",boxh:"\u2500",boxHD:"\u2566",boxHd:"\u2564",boxhD:"\u2565",boxhd:"\u252c",boxHU:"\u2569",boxHu:"\u2567",boxhU:"\u2568",boxhu:"\u2534",boxminus:"\u229f",boxplus:"\u229e",boxtimes:"\u22a0",boxUL:"\u255d",boxUl:"\u255c",boxuL:"\u255b",boxul:"\u2518",boxUR:"\u255a",boxUr:"\u2559",boxuR:"\u2558",boxur:"\u2514",boxV:"\u2551",boxv:"\u2502",boxVH:"\u256c",boxVh:"\u256b",boxvH:"\u256a",boxvh:"\u253c",boxVL:"\u2563",boxVl:"\u2562",boxvL:"\u2561",boxvl:"\u2524",boxVR:"\u2560",boxVr:"\u255f",boxvR:"\u255e",boxvr:"\u251c",bprime:"\u2035",Breve:"\u02d8",breve:"\u02d8",brvbar:"\xa6",Bscr:"\u212c",bscr:"\ud835\udcb7",bsemi:"\u204f",bsim:"\u223d",bsime:"\u22cd",bsol:"\\",bsolb:"\u29c5",bsolhsub:"\u27c8",bull:"\u2022",bullet:"\u2022",bump:"\u224e",bumpE:"\u2aae",bumpe:"\u224f",Bumpeq:"\u224e",bumpeq:"\u224f",Cacute:"\u0106",cacute:"\u0107",Cap:"\u22d2",cap:"\u2229",capand:"\u2a44",capbrcup:"\u2a49",capcap:"\u2a4b",capcup:"\u2a47",capdot:"\u2a40",CapitalDifferentialD:"\u2145",caps:"\u2229\ufe00",caret:"\u2041",caron:"\u02c7",Cayleys:"\u212d",ccaps:"\u2a4d",Ccaron:"\u010c",ccaron:"\u010d",Ccedil:"\xc7",ccedil:"\xe7",Ccirc:"\u0108",ccirc:"\u0109",Cconint:"\u2230",ccups:"\u2a4c",ccupssm:"\u2a50",Cdot:"\u010a",cdot:"\u010b",cedil:"\xb8",Cedilla:"\xb8",cemptyv:"\u29b2",cent:"\xa2",CenterDot:"\xb7",centerdot:"\xb7",Cfr:"\u212d",cfr:"\ud835\udd20",CHcy:"\u0427",chcy:"\u0447",check:"\u2713",checkmark:"\u2713",Chi:"\u03a7",chi:"\u03c7",cir:"\u25cb",circ:"\u02c6",circeq:"\u2257",circlearrowleft:"\u21ba",circlearrowright:"\u21bb",circledast:"\u229b",circledcirc:"\u229a",circleddash:"\u229d",CircleDot:"\u2299",circledR:"\xae",circledS:"\u24c8",CircleMinus:"\u2296",CirclePlus:"\u2295",CircleTimes:"\u2297",cirE:"\u29c3",cire:"\u2257",cirfnint:"\u2a10",cirmid:"\u2aef",cirscir:"\u29c2",ClockwiseContourIntegral:"\u2232",CloseCurlyDoubleQuote:"\u201d",CloseCurlyQuote:"\u2019",clubs:"\u2663",clubsuit:"\u2663",Colon:"\u2237",colon:":",Colone:"\u2a74",colone:"\u2254",coloneq:"\u2254",comma:",",commat:"@",comp:"\u2201",compfn:"\u2218",complement:"\u2201",complexes:"\u2102",cong:"\u2245",congdot:"\u2a6d",Congruent:"\u2261",Conint:"\u222f",conint:"\u222e",ContourIntegral:"\u222e",Copf:"\u2102",copf:"\ud835\udd54",coprod:"\u2210",Coproduct:"\u2210",COPY:"\xa9",copy:"\xa9",copysr:"\u2117",CounterClockwiseContourIntegral:"\u2233",crarr:"\u21b5",Cross:"\u2a2f",cross:"\u2717",Cscr:"\ud835\udc9e",cscr:"\ud835\udcb8",csub:"\u2acf",csube:"\u2ad1",csup:"\u2ad0",csupe:"\u2ad2",ctdot:"\u22ef",cudarrl:"\u2938",cudarrr:"\u2935",cuepr:"\u22de",cuesc:"\u22df",cularr:"\u21b6",cularrp:"\u293d",Cup:"\u22d3",cup:"\u222a",cupbrcap:"\u2a48",CupCap:"\u224d",cupcap:"\u2a46",cupcup:"\u2a4a",cupdot:"\u228d",cupor:"\u2a45",cups:"\u222a\ufe00",curarr:"\u21b7",curarrm:"\u293c",curlyeqprec:"\u22de",curlyeqsucc:"\u22df",curlyvee:"\u22ce",curlywedge:"\u22cf",curren:"\xa4",curvearrowleft:"\u21b6",curvearrowright:"\u21b7",cuvee:"\u22ce",cuwed:"\u22cf",cwconint:"\u2232",cwint:"\u2231",cylcty:"\u232d",Dagger:"\u2021",dagger:"\u2020",daleth:"\u2138",Darr:"\u21a1",dArr:"\u21d3",darr:"\u2193",dash:"\u2010",Dashv:"\u2ae4",dashv:"\u22a3",dbkarow:"\u290f",dblac:"\u02dd",Dcaron:"\u010e",dcaron:"\u010f",Dcy:"\u0414",dcy:"\u0434",DD:"\u2145",dd:"\u2146",ddagger:"\u2021",ddarr:"\u21ca",DDotrahd:"\u2911",ddotseq:"\u2a77",deg:"\xb0",Del:"\u2207",Delta:"\u0394",delta:"\u03b4",demptyv:"\u29b1",dfisht:"\u297f",Dfr:"\ud835\udd07",dfr:"\ud835\udd21",dHar:"\u2965",dharl:"\u21c3",dharr:"\u21c2",DiacriticalAcute:"\xb4",DiacriticalDot:"\u02d9",DiacriticalDoubleAcute:"\u02dd",DiacriticalGrave:"`",DiacriticalTilde:"\u02dc",diam:"\u22c4",Diamond:"\u22c4",diamond:"\u22c4",diamondsuit:"\u2666",diams:"\u2666",die:"\xa8",DifferentialD:"\u2146",digamma:"\u03dd",disin:"\u22f2",div:"\xf7",divide:"\xf7",divideontimes:"\u22c7",divonx:"\u22c7",DJcy:"\u0402",djcy:"\u0452",dlcorn:"\u231e",dlcrop:"\u230d",dollar:"$",Dopf:"\ud835\udd3b",dopf:"\ud835\udd55",Dot:"\xa8",dot:"\u02d9",DotDot:"\u20dc",doteq:"\u2250",doteqdot:"\u2251",DotEqual:"\u2250",dotminus:"\u2238",dotplus:"\u2214",dotsquare:"\u22a1",doublebarwedge:"\u2306",DoubleContourIntegral:"\u222f",DoubleDot:"\xa8",DoubleDownArrow:"\u21d3",DoubleLeftArrow:"\u21d0",DoubleLeftRightArrow:"\u21d4",DoubleLeftTee:"\u2ae4",DoubleLongLeftArrow:"\u27f8",DoubleLongLeftRightArrow:"\u27fa",DoubleLongRightArrow:"\u27f9",DoubleRightArrow:"\u21d2",DoubleRightTee:"\u22a8",DoubleUpArrow:"\u21d1",DoubleUpDownArrow:"\u21d5",DoubleVerticalBar:"\u2225",DownArrow:"\u2193",Downarrow:"\u21d3",downarrow:"\u2193",DownArrowBar:"\u2913",DownArrowUpArrow:"\u21f5",DownBreve:"\u0311",downdownarrows:"\u21ca",downharpoonleft:"\u21c3",downharpoonright:"\u21c2",DownLeftRightVector:"\u2950",DownLeftTeeVector:"\u295e",DownLeftVector:"\u21bd",DownLeftVectorBar:"\u2956",DownRightTeeVector:"\u295f",DownRightVector:"\u21c1",DownRightVectorBar:"\u2957",DownTee:"\u22a4",DownTeeArrow:"\u21a7",drbkarow:"\u2910",drcorn:"\u231f",drcrop:"\u230c",Dscr:"\ud835\udc9f",dscr:"\ud835\udcb9",DScy:"\u0405",dscy:"\u0455",dsol:"\u29f6",Dstrok:"\u0110",dstrok:"\u0111",dtdot:"\u22f1",dtri:"\u25bf",dtrif:"\u25be",duarr:"\u21f5",duhar:"\u296f",dwangle:"\u29a6",DZcy:"\u040f",dzcy:"\u045f",dzigrarr:"\u27ff",Eacute:"\xc9",eacute:"\xe9",easter:"\u2a6e",Ecaron:"\u011a",ecaron:"\u011b",ecir:"\u2256",Ecirc:"\xca",ecirc:"\xea",ecolon:"\u2255",Ecy:"\u042d",ecy:"\u044d",eDDot:"\u2a77",Edot:"\u0116",eDot:"\u2251",edot:"\u0117",ee:"\u2147",efDot:"\u2252",Efr:"\ud835\udd08",efr:"\ud835\udd22",eg:"\u2a9a",Egrave:"\xc8",egrave:"\xe8",egs:"\u2a96",egsdot:"\u2a98",el:"\u2a99",Element:"\u2208",elinters:"\u23e7",ell:"\u2113",els:"\u2a95",elsdot:"\u2a97",Emacr:"\u0112",emacr:"\u0113",empty:"\u2205",emptyset:"\u2205",EmptySmallSquare:"\u25fb",emptyv:"\u2205",EmptyVerySmallSquare:"\u25ab",emsp:"\u2003",emsp13:"\u2004",emsp14:"\u2005",ENG:"\u014a",eng:"\u014b",ensp:"\u2002",Eogon:"\u0118",eogon:"\u0119",Eopf:"\ud835\udd3c",eopf:"\ud835\udd56",epar:"\u22d5",eparsl:"\u29e3",eplus:"\u2a71",epsi:"\u03b5",Epsilon:"\u0395",epsilon:"\u03b5",epsiv:"\u03f5",eqcirc:"\u2256",eqcolon:"\u2255",eqsim:"\u2242",eqslantgtr:"\u2a96",eqslantless:"\u2a95",Equal:"\u2a75",equals:"=",EqualTilde:"\u2242",equest:"\u225f",Equilibrium:"\u21cc",equiv:"\u2261",equivDD:"\u2a78",eqvparsl:"\u29e5",erarr:"\u2971",erDot:"\u2253",Escr:"\u2130",escr:"\u212f",esdot:"\u2250",Esim:"\u2a73",esim:"\u2242",Eta:"\u0397",eta:"\u03b7",ETH:"\xd0",eth:"\xf0",Euml:"\xcb",euml:"\xeb",euro:"\u20ac",excl:"!",exist:"\u2203",Exists:"\u2203",expectation:"\u2130",ExponentialE:"\u2147",exponentiale:"\u2147",fallingdotseq:"\u2252",Fcy:"\u0424",fcy:"\u0444",female:"\u2640",ffilig:"\ufb03",fflig:"\ufb00",ffllig:"\ufb04",Ffr:"\ud835\udd09",ffr:"\ud835\udd23",filig:"\ufb01",FilledSmallSquare:"\u25fc",FilledVerySmallSquare:"\u25aa",fjlig:"fj",flat:"\u266d",fllig:"\ufb02",fltns:"\u25b1",fnof:"\u0192",Fopf:"\ud835\udd3d",fopf:"\ud835\udd57",ForAll:"\u2200",forall:"\u2200",fork:"\u22d4",forkv:"\u2ad9",Fouriertrf:"\u2131",fpartint:"\u2a0d",frac12:"\xbd",frac13:"\u2153",frac14:"\xbc",frac15:"\u2155",frac16:"\u2159",frac18:"\u215b",frac23:"\u2154",frac25:"\u2156",frac34:"\xbe",frac35:"\u2157",frac38:"\u215c",frac45:"\u2158",frac56:"\u215a",frac58:"\u215d",frac78:"\u215e",frasl:"\u2044",frown:"\u2322",Fscr:"\u2131",fscr:"\ud835\udcbb",gacute:"\u01f5",Gamma:"\u0393",gamma:"\u03b3",Gammad:"\u03dc",gammad:"\u03dd",gap:"\u2a86",Gbreve:"\u011e",gbreve:"\u011f",Gcedil:"\u0122",Gcirc:"\u011c",gcirc:"\u011d",Gcy:"\u0413",gcy:"\u0433",Gdot:"\u0120",gdot:"\u0121",gE:"\u2267",ge:"\u2265",gEl:"\u2a8c",gel:"\u22db",geq:"\u2265",geqq:"\u2267",geqslant:"\u2a7e",ges:"\u2a7e",gescc:"\u2aa9",gesdot:"\u2a80",gesdoto:"\u2a82",gesdotol:"\u2a84",gesl:"\u22db\ufe00",gesles:"\u2a94",Gfr:"\ud835\udd0a",gfr:"\ud835\udd24",Gg:"\u22d9",gg:"\u226b",ggg:"\u22d9",gimel:"\u2137",GJcy:"\u0403",gjcy:"\u0453",gl:"\u2277",gla:"\u2aa5",glE:"\u2a92",glj:"\u2aa4",gnap:"\u2a8a",gnapprox:"\u2a8a",gnE:"\u2269",gne:"\u2a88",gneq:"\u2a88",gneqq:"\u2269",gnsim:"\u22e7",Gopf:"\ud835\udd3e",gopf:"\ud835\udd58",grave:"`",GreaterEqual:"\u2265",GreaterEqualLess:"\u22db",GreaterFullEqual:"\u2267",GreaterGreater:"\u2aa2",GreaterLess:"\u2277",GreaterSlantEqual:"\u2a7e",GreaterTilde:"\u2273",Gscr:"\ud835\udca2",gscr:"\u210a",gsim:"\u2273",gsime:"\u2a8e",gsiml:"\u2a90",GT:">",Gt:"\u226b",gt:">",gtcc:"\u2aa7",gtcir:"\u2a7a",gtdot:"\u22d7",gtlPar:"\u2995",gtquest:"\u2a7c",gtrapprox:"\u2a86",gtrarr:"\u2978",gtrdot:"\u22d7",gtreqless:"\u22db",gtreqqless:"\u2a8c",gtrless:"\u2277",gtrsim:"\u2273",gvertneqq:"\u2269\ufe00",gvnE:"\u2269\ufe00",Hacek:"\u02c7",hairsp:"\u200a",half:"\xbd",hamilt:"\u210b",HARDcy:"\u042a",hardcy:"\u044a",hArr:"\u21d4",harr:"\u2194",harrcir:"\u2948",harrw:"\u21ad",Hat:"^",hbar:"\u210f",Hcirc:"\u0124",hcirc:"\u0125",hearts:"\u2665",heartsuit:"\u2665",hellip:"\u2026",hercon:"\u22b9",Hfr:"\u210c",hfr:"\ud835\udd25",HilbertSpace:"\u210b",hksearow:"\u2925",hkswarow:"\u2926",hoarr:"\u21ff",homtht:"\u223b",hookleftarrow:"\u21a9",hookrightarrow:"\u21aa",Hopf:"\u210d",hopf:"\ud835\udd59",horbar:"\u2015",HorizontalLine:"\u2500",Hscr:"\u210b",hscr:"\ud835\udcbd",hslash:"\u210f",Hstrok:"\u0126",hstrok:"\u0127",HumpDownHump:"\u224e",HumpEqual:"\u224f",hybull:"\u2043",hyphen:"\u2010",Iacute:"\xcd",iacute:"\xed",ic:"\u2063",Icirc:"\xce",icirc:"\xee",Icy:"\u0418",icy:"\u0438",Idot:"\u0130",IEcy:"\u0415",iecy:"\u0435",iexcl:"\xa1",iff:"\u21d4",Ifr:"\u2111",ifr:"\ud835\udd26",Igrave:"\xcc",igrave:"\xec",ii:"\u2148",iiiint:"\u2a0c",iiint:"\u222d",iinfin:"\u29dc",iiota:"\u2129",IJlig:"\u0132",ijlig:"\u0133",Im:"\u2111",Imacr:"\u012a",imacr:"\u012b",image:"\u2111",ImaginaryI:"\u2148",imagline:"\u2110",imagpart:"\u2111",imath:"\u0131",imof:"\u22b7",imped:"\u01b5",Implies:"\u21d2",in:"\u2208",incare:"\u2105",infin:"\u221e",infintie:"\u29dd",inodot:"\u0131",Int:"\u222c",int:"\u222b",intcal:"\u22ba",integers:"\u2124",Integral:"\u222b",intercal:"\u22ba",Intersection:"\u22c2",intlarhk:"\u2a17",intprod:"\u2a3c",InvisibleComma:"\u2063",InvisibleTimes:"\u2062",IOcy:"\u0401",iocy:"\u0451",Iogon:"\u012e",iogon:"\u012f",Iopf:"\ud835\udd40",iopf:"\ud835\udd5a",Iota:"\u0399",iota:"\u03b9",iprod:"\u2a3c",iquest:"\xbf",Iscr:"\u2110",iscr:"\ud835\udcbe",isin:"\u2208",isindot:"\u22f5",isinE:"\u22f9",isins:"\u22f4",isinsv:"\u22f3",isinv:"\u2208",it:"\u2062",Itilde:"\u0128",itilde:"\u0129",Iukcy:"\u0406",iukcy:"\u0456",Iuml:"\xcf",iuml:"\xef",Jcirc:"\u0134",jcirc:"\u0135",Jcy:"\u0419",jcy:"\u0439",Jfr:"\ud835\udd0d",jfr:"\ud835\udd27",jmath:"\u0237",Jopf:"\ud835\udd41",jopf:"\ud835\udd5b",Jscr:"\ud835\udca5",jscr:"\ud835\udcbf",Jsercy:"\u0408",jsercy:"\u0458",Jukcy:"\u0404",jukcy:"\u0454",Kappa:"\u039a",kappa:"\u03ba",kappav:"\u03f0",Kcedil:"\u0136",kcedil:"\u0137",Kcy:"\u041a",kcy:"\u043a",Kfr:"\ud835\udd0e",kfr:"\ud835\udd28",kgreen:"\u0138",KHcy:"\u0425",khcy:"\u0445",KJcy:"\u040c",kjcy:"\u045c",Kopf:"\ud835\udd42",kopf:"\ud835\udd5c",Kscr:"\ud835\udca6",kscr:"\ud835\udcc0",lAarr:"\u21da",Lacute:"\u0139",lacute:"\u013a",laemptyv:"\u29b4",lagran:"\u2112",Lambda:"\u039b",lambda:"\u03bb",Lang:"\u27ea",lang:"\u27e8",langd:"\u2991",langle:"\u27e8",lap:"\u2a85",Laplacetrf:"\u2112",laquo:"\xab",Larr:"\u219e",lArr:"\u21d0",larr:"\u2190",larrb:"\u21e4",larrbfs:"\u291f",larrfs:"\u291d",larrhk:"\u21a9",larrlp:"\u21ab",larrpl:"\u2939",larrsim:"\u2973",larrtl:"\u21a2",lat:"\u2aab",lAtail:"\u291b",latail:"\u2919",late:"\u2aad",lates:"\u2aad\ufe00",lBarr:"\u290e",lbarr:"\u290c",lbbrk:"\u2772",lbrace:"{",lbrack:"[",lbrke:"\u298b",lbrksld:"\u298f",lbrkslu:"\u298d",Lcaron:"\u013d",lcaron:"\u013e",Lcedil:"\u013b",lcedil:"\u013c",lceil:"\u2308",lcub:"{",Lcy:"\u041b",lcy:"\u043b",ldca:"\u2936",ldquo:"\u201c",ldquor:"\u201e",ldrdhar:"\u2967",ldrushar:"\u294b",ldsh:"\u21b2",lE:"\u2266",le:"\u2264",LeftAngleBracket:"\u27e8",LeftArrow:"\u2190",Leftarrow:"\u21d0",leftarrow:"\u2190",LeftArrowBar:"\u21e4",LeftArrowRightArrow:"\u21c6",leftarrowtail:"\u21a2",LeftCeiling:"\u2308",LeftDoubleBracket:"\u27e6",LeftDownTeeVector:"\u2961",LeftDownVector:"\u21c3",LeftDownVectorBar:"\u2959",LeftFloor:"\u230a",leftharpoondown:"\u21bd",leftharpoonup:"\u21bc",leftleftarrows:"\u21c7",LeftRightArrow:"\u2194",Leftrightarrow:"\u21d4",leftrightarrow:"\u2194",leftrightarrows:"\u21c6",leftrightharpoons:"\u21cb",leftrightsquigarrow:"\u21ad",LeftRightVector:"\u294e",LeftTee:"\u22a3",LeftTeeArrow:"\u21a4",LeftTeeVector:"\u295a",leftthreetimes:"\u22cb",LeftTriangle:"\u22b2",LeftTriangleBar:"\u29cf",LeftTriangleEqual:"\u22b4",LeftUpDownVector:"\u2951",LeftUpTeeVector:"\u2960",LeftUpVector:"\u21bf",LeftUpVectorBar:"\u2958",LeftVector:"\u21bc",LeftVectorBar:"\u2952",lEg:"\u2a8b",leg:"\u22da",leq:"\u2264",leqq:"\u2266",leqslant:"\u2a7d",les:"\u2a7d",lescc:"\u2aa8",lesdot:"\u2a7f",lesdoto:"\u2a81",lesdotor:"\u2a83",lesg:"\u22da\ufe00",lesges:"\u2a93",lessapprox:"\u2a85",lessdot:"\u22d6",lesseqgtr:"\u22da",lesseqqgtr:"\u2a8b",LessEqualGreater:"\u22da",LessFullEqual:"\u2266",LessGreater:"\u2276",lessgtr:"\u2276",LessLess:"\u2aa1",lesssim:"\u2272",LessSlantEqual:"\u2a7d",LessTilde:"\u2272",lfisht:"\u297c",lfloor:"\u230a",Lfr:"\ud835\udd0f",lfr:"\ud835\udd29",lg:"\u2276",lgE:"\u2a91",lHar:"\u2962",lhard:"\u21bd",lharu:"\u21bc",lharul:"\u296a",lhblk:"\u2584",LJcy:"\u0409",ljcy:"\u0459",Ll:"\u22d8",ll:"\u226a",llarr:"\u21c7",llcorner:"\u231e",Lleftarrow:"\u21da",llhard:"\u296b",lltri:"\u25fa",Lmidot:"\u013f",lmidot:"\u0140",lmoust:"\u23b0",lmoustache:"\u23b0",lnap:"\u2a89",lnapprox:"\u2a89",lnE:"\u2268",lne:"\u2a87",lneq:"\u2a87",lneqq:"\u2268",lnsim:"\u22e6",loang:"\u27ec",loarr:"\u21fd",lobrk:"\u27e6",LongLeftArrow:"\u27f5",Longleftarrow:"\u27f8",longleftarrow:"\u27f5",LongLeftRightArrow:"\u27f7",Longleftrightarrow:"\u27fa",longleftrightarrow:"\u27f7",longmapsto:"\u27fc",LongRightArrow:"\u27f6",Longrightarrow:"\u27f9",longrightarrow:"\u27f6",looparrowleft:"\u21ab",looparrowright:"\u21ac",lopar:"\u2985",Lopf:"\ud835\udd43",lopf:"\ud835\udd5d",loplus:"\u2a2d",lotimes:"\u2a34",lowast:"\u2217",lowbar:"_",LowerLeftArrow:"\u2199",LowerRightArrow:"\u2198",loz:"\u25ca",lozenge:"\u25ca",lozf:"\u29eb",lpar:"(",lparlt:"\u2993",lrarr:"\u21c6",lrcorner:"\u231f",lrhar:"\u21cb",lrhard:"\u296d",lrm:"\u200e",lrtri:"\u22bf",lsaquo:"\u2039",Lscr:"\u2112",lscr:"\ud835\udcc1",Lsh:"\u21b0",lsh:"\u21b0",lsim:"\u2272",lsime:"\u2a8d",lsimg:"\u2a8f",lsqb:"[",lsquo:"\u2018",lsquor:"\u201a",Lstrok:"\u0141",lstrok:"\u0142",LT:"<",Lt:"\u226a",lt:"<",ltcc:"\u2aa6",ltcir:"\u2a79",ltdot:"\u22d6",lthree:"\u22cb",ltimes:"\u22c9",ltlarr:"\u2976",ltquest:"\u2a7b",ltri:"\u25c3",ltrie:"\u22b4",ltrif:"\u25c2",ltrPar:"\u2996",lurdshar:"\u294a",luruhar:"\u2966",lvertneqq:"\u2268\ufe00",lvnE:"\u2268\ufe00",macr:"\xaf",male:"\u2642",malt:"\u2720",maltese:"\u2720",Map:"\u2905",map:"\u21a6",mapsto:"\u21a6",mapstodown:"\u21a7",mapstoleft:"\u21a4",mapstoup:"\u21a5",marker:"\u25ae",mcomma:"\u2a29",Mcy:"\u041c",mcy:"\u043c",mdash:"\u2014",mDDot:"\u223a",measuredangle:"\u2221",MediumSpace:"\u205f",Mellintrf:"\u2133",Mfr:"\ud835\udd10",mfr:"\ud835\udd2a",mho:"\u2127",micro:"\xb5",mid:"\u2223",midast:"*",midcir:"\u2af0",middot:"\xb7",minus:"\u2212",minusb:"\u229f",minusd:"\u2238",minusdu:"\u2a2a",MinusPlus:"\u2213",mlcp:"\u2adb",mldr:"\u2026",mnplus:"\u2213",models:"\u22a7",Mopf:"\ud835\udd44",mopf:"\ud835\udd5e",mp:"\u2213",Mscr:"\u2133",mscr:"\ud835\udcc2",mstpos:"\u223e",Mu:"\u039c",mu:"\u03bc",multimap:"\u22b8",mumap:"\u22b8",nabla:"\u2207",Nacute:"\u0143",nacute:"\u0144",nang:"\u2220\u20d2",nap:"\u2249",napE:"\u2a70\u0338",napid:"\u224b\u0338",napos:"\u0149",napprox:"\u2249",natur:"\u266e",natural:"\u266e",naturals:"\u2115",nbsp:"\xa0",nbump:"\u224e\u0338",nbumpe:"\u224f\u0338",ncap:"\u2a43",Ncaron:"\u0147",ncaron:"\u0148",Ncedil:"\u0145",ncedil:"\u0146",ncong:"\u2247",ncongdot:"\u2a6d\u0338",ncup:"\u2a42",Ncy:"\u041d",ncy:"\u043d",ndash:"\u2013",ne:"\u2260",nearhk:"\u2924",neArr:"\u21d7",nearr:"\u2197",nearrow:"\u2197",nedot:"\u2250\u0338",NegativeMediumSpace:"\u200b",NegativeThickSpace:"\u200b",NegativeThinSpace:"\u200b",NegativeVeryThinSpace:"\u200b",nequiv:"\u2262",nesear:"\u2928",nesim:"\u2242\u0338",NestedGreaterGreater:"\u226b",NestedLessLess:"\u226a",NewLine:"\n",nexist:"\u2204",nexists:"\u2204",Nfr:"\ud835\udd11",nfr:"\ud835\udd2b",ngE:"\u2267\u0338",nge:"\u2271",ngeq:"\u2271",ngeqq:"\u2267\u0338",ngeqslant:"\u2a7e\u0338",nges:"\u2a7e\u0338",nGg:"\u22d9\u0338",ngsim:"\u2275",nGt:"\u226b\u20d2",ngt:"\u226f",ngtr:"\u226f",nGtv:"\u226b\u0338",nhArr:"\u21ce",nharr:"\u21ae",nhpar:"\u2af2",ni:"\u220b",nis:"\u22fc",nisd:"\u22fa",niv:"\u220b",NJcy:"\u040a",njcy:"\u045a",nlArr:"\u21cd",nlarr:"\u219a",nldr:"\u2025",nlE:"\u2266\u0338",nle:"\u2270",nLeftarrow:"\u21cd",nleftarrow:"\u219a",nLeftrightarrow:"\u21ce",nleftrightarrow:"\u21ae",nleq:"\u2270",nleqq:"\u2266\u0338",nleqslant:"\u2a7d\u0338",nles:"\u2a7d\u0338",nless:"\u226e",nLl:"\u22d8\u0338",nlsim:"\u2274",nLt:"\u226a\u20d2",nlt:"\u226e",nltri:"\u22ea",nltrie:"\u22ec",nLtv:"\u226a\u0338",nmid:"\u2224",NoBreak:"\u2060",NonBreakingSpace:"\xa0",Nopf:"\u2115",nopf:"\ud835\udd5f",Not:"\u2aec",not:"\xac",NotCongruent:"\u2262",NotCupCap:"\u226d",NotDoubleVerticalBar:"\u2226",NotElement:"\u2209",NotEqual:"\u2260",NotEqualTilde:"\u2242\u0338",NotExists:"\u2204",NotGreater:"\u226f",NotGreaterEqual:"\u2271",NotGreaterFullEqual:"\u2267\u0338",NotGreaterGreater:"\u226b\u0338",NotGreaterLess:"\u2279",NotGreaterSlantEqual:"\u2a7e\u0338",NotGreaterTilde:"\u2275",NotHumpDownHump:"\u224e\u0338",NotHumpEqual:"\u224f\u0338",notin:"\u2209",notindot:"\u22f5\u0338",notinE:"\u22f9\u0338",notinva:"\u2209",notinvb:"\u22f7",notinvc:"\u22f6",NotLeftTriangle:"\u22ea",NotLeftTriangleBar:"\u29cf\u0338",NotLeftTriangleEqual:"\u22ec",NotLess:"\u226e",NotLessEqual:"\u2270",NotLessGreater:"\u2278",NotLessLess:"\u226a\u0338",NotLessSlantEqual:"\u2a7d\u0338",NotLessTilde:"\u2274",NotNestedGreaterGreater:"\u2aa2\u0338",NotNestedLessLess:"\u2aa1\u0338",notni:"\u220c",notniva:"\u220c",notnivb:"\u22fe",notnivc:"\u22fd",NotPrecedes:"\u2280",NotPrecedesEqual:"\u2aaf\u0338",NotPrecedesSlantEqual:"\u22e0",NotReverseElement:"\u220c",NotRightTriangle:"\u22eb",NotRightTriangleBar:"\u29d0\u0338",NotRightTriangleEqual:"\u22ed",NotSquareSubset:"\u228f\u0338",NotSquareSubsetEqual:"\u22e2",NotSquareSuperset:"\u2290\u0338",NotSquareSupersetEqual:"\u22e3",NotSubset:"\u2282\u20d2",NotSubsetEqual:"\u2288",NotSucceeds:"\u2281",NotSucceedsEqual:"\u2ab0\u0338",NotSucceedsSlantEqual:"\u22e1",NotSucceedsTilde:"\u227f\u0338",NotSuperset:"\u2283\u20d2",NotSupersetEqual:"\u2289",NotTilde:"\u2241",NotTildeEqual:"\u2244",NotTildeFullEqual:"\u2247",NotTildeTilde:"\u2249",NotVerticalBar:"\u2224",npar:"\u2226",nparallel:"\u2226",nparsl:"\u2afd\u20e5",npart:"\u2202\u0338",npolint:"\u2a14",npr:"\u2280",nprcue:"\u22e0",npre:"\u2aaf\u0338",nprec:"\u2280",npreceq:"\u2aaf\u0338",nrArr:"\u21cf",nrarr:"\u219b",nrarrc:"\u2933\u0338",nrarrw:"\u219d\u0338",nRightarrow:"\u21cf",nrightarrow:"\u219b",nrtri:"\u22eb",nrtrie:"\u22ed",nsc:"\u2281",nsccue:"\u22e1",nsce:"\u2ab0\u0338",Nscr:"\ud835\udca9",nscr:"\ud835\udcc3",nshortmid:"\u2224",nshortparallel:"\u2226",nsim:"\u2241",nsime:"\u2244",nsimeq:"\u2244",nsmid:"\u2224",nspar:"\u2226",nsqsube:"\u22e2",nsqsupe:"\u22e3",nsub:"\u2284",nsubE:"\u2ac5\u0338",nsube:"\u2288",nsubset:"\u2282\u20d2",nsubseteq:"\u2288",nsubseteqq:"\u2ac5\u0338",nsucc:"\u2281",nsucceq:"\u2ab0\u0338",nsup:"\u2285",nsupE:"\u2ac6\u0338",nsupe:"\u2289",nsupset:"\u2283\u20d2",nsupseteq:"\u2289",nsupseteqq:"\u2ac6\u0338",ntgl:"\u2279",Ntilde:"\xd1",ntilde:"\xf1",ntlg:"\u2278",ntriangleleft:"\u22ea",ntrianglelefteq:"\u22ec",ntriangleright:"\u22eb",ntrianglerighteq:"\u22ed",Nu:"\u039d",nu:"\u03bd",num:"#",numero:"\u2116",numsp:"\u2007",nvap:"\u224d\u20d2",nVDash:"\u22af",nVdash:"\u22ae",nvDash:"\u22ad",nvdash:"\u22ac",nvge:"\u2265\u20d2",nvgt:">\u20d2",nvHarr:"\u2904",nvinfin:"\u29de",nvlArr:"\u2902",nvle:"\u2264\u20d2",nvlt:"<\u20d2",nvltrie:"\u22b4\u20d2",nvrArr:"\u2903",nvrtrie:"\u22b5\u20d2",nvsim:"\u223c\u20d2",nwarhk:"\u2923",nwArr:"\u21d6",nwarr:"\u2196",nwarrow:"\u2196",nwnear:"\u2927",Oacute:"\xd3",oacute:"\xf3",oast:"\u229b",ocir:"\u229a",Ocirc:"\xd4",ocirc:"\xf4",Ocy:"\u041e",ocy:"\u043e",odash:"\u229d",Odblac:"\u0150",odblac:"\u0151",odiv:"\u2a38",odot:"\u2299",odsold:"\u29bc",OElig:"\u0152",oelig:"\u0153",ofcir:"\u29bf",Ofr:"\ud835\udd12",ofr:"\ud835\udd2c",ogon:"\u02db",Ograve:"\xd2",ograve:"\xf2",ogt:"\u29c1",ohbar:"\u29b5",ohm:"\u03a9",oint:"\u222e",olarr:"\u21ba",olcir:"\u29be",olcross:"\u29bb",oline:"\u203e",olt:"\u29c0",Omacr:"\u014c",omacr:"\u014d",Omega:"\u03a9",omega:"\u03c9",Omicron:"\u039f",omicron:"\u03bf",omid:"\u29b6",ominus:"\u2296",Oopf:"\ud835\udd46",oopf:"\ud835\udd60",opar:"\u29b7",OpenCurlyDoubleQuote:"\u201c",OpenCurlyQuote:"\u2018",operp:"\u29b9",oplus:"\u2295",Or:"\u2a54",or:"\u2228",orarr:"\u21bb",ord:"\u2a5d",order:"\u2134",orderof:"\u2134",ordf:"\xaa",ordm:"\xba",origof:"\u22b6",oror:"\u2a56",orslope:"\u2a57",orv:"\u2a5b",oS:"\u24c8",Oscr:"\ud835\udcaa",oscr:"\u2134",Oslash:"\xd8",oslash:"\xf8",osol:"\u2298",Otilde:"\xd5",otilde:"\xf5",Otimes:"\u2a37",otimes:"\u2297",otimesas:"\u2a36",Ouml:"\xd6",ouml:"\xf6",ovbar:"\u233d",OverBar:"\u203e",OverBrace:"\u23de",OverBracket:"\u23b4",OverParenthesis:"\u23dc",par:"\u2225",para:"\xb6",parallel:"\u2225",parsim:"\u2af3",parsl:"\u2afd",part:"\u2202",PartialD:"\u2202",Pcy:"\u041f",pcy:"\u043f",percnt:"%",period:".",permil:"\u2030",perp:"\u22a5",pertenk:"\u2031",Pfr:"\ud835\udd13",pfr:"\ud835\udd2d",Phi:"\u03a6",phi:"\u03c6",phiv:"\u03d5",phmmat:"\u2133",phone:"\u260e",Pi:"\u03a0",pi:"\u03c0",pitchfork:"\u22d4",piv:"\u03d6",planck:"\u210f",planckh:"\u210e",plankv:"\u210f",plus:"+",plusacir:"\u2a23",plusb:"\u229e",pluscir:"\u2a22",plusdo:"\u2214",plusdu:"\u2a25",pluse:"\u2a72",PlusMinus:"\xb1",plusmn:"\xb1",plussim:"\u2a26",plustwo:"\u2a27",pm:"\xb1",Poincareplane:"\u210c",pointint:"\u2a15",Popf:"\u2119",popf:"\ud835\udd61",pound:"\xa3",Pr:"\u2abb",pr:"\u227a",prap:"\u2ab7",prcue:"\u227c",prE:"\u2ab3",pre:"\u2aaf",prec:"\u227a",precapprox:"\u2ab7",preccurlyeq:"\u227c",Precedes:"\u227a",PrecedesEqual:"\u2aaf",PrecedesSlantEqual:"\u227c",PrecedesTilde:"\u227e",preceq:"\u2aaf",precnapprox:"\u2ab9",precneqq:"\u2ab5",precnsim:"\u22e8",precsim:"\u227e",Prime:"\u2033",prime:"\u2032",primes:"\u2119",prnap:"\u2ab9",prnE:"\u2ab5",prnsim:"\u22e8",prod:"\u220f",Product:"\u220f",profalar:"\u232e",profline:"\u2312",profsurf:"\u2313",prop:"\u221d",Proportion:"\u2237",Proportional:"\u221d",propto:"\u221d",prsim:"\u227e",prurel:"\u22b0",Pscr:"\ud835\udcab",pscr:"\ud835\udcc5",Psi:"\u03a8",psi:"\u03c8",puncsp:"\u2008",Qfr:"\ud835\udd14",qfr:"\ud835\udd2e",qint:"\u2a0c",Qopf:"\u211a",qopf:"\ud835\udd62",qprime:"\u2057",Qscr:"\ud835\udcac",qscr:"\ud835\udcc6",quaternions:"\u210d",quatint:"\u2a16",quest:"?",questeq:"\u225f",QUOT:"\"",quot:"\"",rAarr:"\u21db",race:"\u223d\u0331",Racute:"\u0154",racute:"\u0155",radic:"\u221a",raemptyv:"\u29b3",Rang:"\u27eb",rang:"\u27e9",rangd:"\u2992",range:"\u29a5",rangle:"\u27e9",raquo:"\xbb",Rarr:"\u21a0",rArr:"\u21d2",rarr:"\u2192",rarrap:"\u2975",rarrb:"\u21e5",rarrbfs:"\u2920",rarrc:"\u2933",rarrfs:"\u291e",rarrhk:"\u21aa",rarrlp:"\u21ac",rarrpl:"\u2945",rarrsim:"\u2974",Rarrtl:"\u2916",rarrtl:"\u21a3",rarrw:"\u219d",rAtail:"\u291c",ratail:"\u291a",ratio:"\u2236",rationals:"\u211a",RBarr:"\u2910",rBarr:"\u290f",rbarr:"\u290d",rbbrk:"\u2773",rbrace:"}",rbrack:"]",rbrke:"\u298c",rbrksld:"\u298e",rbrkslu:"\u2990",Rcaron:"\u0158",rcaron:"\u0159",Rcedil:"\u0156",rcedil:"\u0157",rceil:"\u2309",rcub:"}",Rcy:"\u0420",rcy:"\u0440",rdca:"\u2937",rdldhar:"\u2969",rdquo:"\u201d",rdquor:"\u201d",rdsh:"\u21b3",Re:"\u211c",real:"\u211c",realine:"\u211b",realpart:"\u211c",reals:"\u211d",rect:"\u25ad",REG:"\xae",reg:"\xae",ReverseElement:"\u220b",ReverseEquilibrium:"\u21cb",ReverseUpEquilibrium:"\u296f",rfisht:"\u297d",rfloor:"\u230b",Rfr:"\u211c",rfr:"\ud835\udd2f",rHar:"\u2964",rhard:"\u21c1",rharu:"\u21c0",rharul:"\u296c",Rho:"\u03a1",rho:"\u03c1",rhov:"\u03f1",RightAngleBracket:"\u27e9",RightArrow:"\u2192",Rightarrow:"\u21d2",rightarrow:"\u2192",RightArrowBar:"\u21e5",RightArrowLeftArrow:"\u21c4",rightarrowtail:"\u21a3",RightCeiling:"\u2309",RightDoubleBracket:"\u27e7",RightDownTeeVector:"\u295d",RightDownVector:"\u21c2",RightDownVectorBar:"\u2955",RightFloor:"\u230b",rightharpoondown:"\u21c1",rightharpoonup:"\u21c0",rightleftarrows:"\u21c4",rightleftharpoons:"\u21cc",rightrightarrows:"\u21c9",rightsquigarrow:"\u219d",RightTee:"\u22a2",RightTeeArrow:"\u21a6",RightTeeVector:"\u295b",rightthreetimes:"\u22cc",RightTriangle:"\u22b3",RightTriangleBar:"\u29d0",RightTriangleEqual:"\u22b5",RightUpDownVector:"\u294f",RightUpTeeVector:"\u295c",RightUpVector:"\u21be",RightUpVectorBar:"\u2954",RightVector:"\u21c0",RightVectorBar:"\u2953",ring:"\u02da",risingdotseq:"\u2253",rlarr:"\u21c4",rlhar:"\u21cc",rlm:"\u200f",rmoust:"\u23b1",rmoustache:"\u23b1",rnmid:"\u2aee",roang:"\u27ed",roarr:"\u21fe",robrk:"\u27e7",ropar:"\u2986",Ropf:"\u211d",ropf:"\ud835\udd63",roplus:"\u2a2e",rotimes:"\u2a35",RoundImplies:"\u2970",rpar:")",rpargt:"\u2994",rppolint:"\u2a12",rrarr:"\u21c9",Rrightarrow:"\u21db",rsaquo:"\u203a",Rscr:"\u211b",rscr:"\ud835\udcc7",Rsh:"\u21b1",rsh:"\u21b1",rsqb:"]",rsquo:"\u2019",rsquor:"\u2019",rthree:"\u22cc",rtimes:"\u22ca",rtri:"\u25b9",rtrie:"\u22b5",rtrif:"\u25b8",rtriltri:"\u29ce",RuleDelayed:"\u29f4",ruluhar:"\u2968",rx:"\u211e",Sacute:"\u015a",sacute:"\u015b",sbquo:"\u201a",Sc:"\u2abc",sc:"\u227b",scap:"\u2ab8",Scaron:"\u0160",scaron:"\u0161",sccue:"\u227d",scE:"\u2ab4",sce:"\u2ab0",Scedil:"\u015e",scedil:"\u015f",Scirc:"\u015c",scirc:"\u015d",scnap:"\u2aba",scnE:"\u2ab6",scnsim:"\u22e9",scpolint:"\u2a13",scsim:"\u227f",Scy:"\u0421",scy:"\u0441",sdot:"\u22c5",sdotb:"\u22a1",sdote:"\u2a66",searhk:"\u2925",seArr:"\u21d8",searr:"\u2198",searrow:"\u2198",sect:"\xa7",semi:";",seswar:"\u2929",setminus:"\u2216",setmn:"\u2216",sext:"\u2736",Sfr:"\ud835\udd16",sfr:"\ud835\udd30",sfrown:"\u2322",sharp:"\u266f",SHCHcy:"\u0429",shchcy:"\u0449",SHcy:"\u0428",shcy:"\u0448",ShortDownArrow:"\u2193",ShortLeftArrow:"\u2190",shortmid:"\u2223",shortparallel:"\u2225",ShortRightArrow:"\u2192",ShortUpArrow:"\u2191",shy:"\xad",Sigma:"\u03a3",sigma:"\u03c3",sigmaf:"\u03c2",sigmav:"\u03c2",sim:"\u223c",simdot:"\u2a6a",sime:"\u2243",simeq:"\u2243",simg:"\u2a9e",simgE:"\u2aa0",siml:"\u2a9d",simlE:"\u2a9f",simne:"\u2246",simplus:"\u2a24",simrarr:"\u2972",slarr:"\u2190",SmallCircle:"\u2218",smallsetminus:"\u2216",smashp:"\u2a33",smeparsl:"\u29e4",smid:"\u2223",smile:"\u2323",smt:"\u2aaa",smte:"\u2aac",smtes:"\u2aac\ufe00",SOFTcy:"\u042c",softcy:"\u044c",sol:"/",solb:"\u29c4",solbar:"\u233f",Sopf:"\ud835\udd4a",sopf:"\ud835\udd64",spades:"\u2660",spadesuit:"\u2660",spar:"\u2225",sqcap:"\u2293",sqcaps:"\u2293\ufe00",sqcup:"\u2294",sqcups:"\u2294\ufe00",Sqrt:"\u221a",sqsub:"\u228f",sqsube:"\u2291",sqsubset:"\u228f",sqsubseteq:"\u2291",sqsup:"\u2290",sqsupe:"\u2292",sqsupset:"\u2290",sqsupseteq:"\u2292",squ:"\u25a1",Square:"\u25a1",square:"\u25a1",SquareIntersection:"\u2293",SquareSubset:"\u228f",SquareSubsetEqual:"\u2291",SquareSuperset:"\u2290",SquareSupersetEqual:"\u2292",SquareUnion:"\u2294",squarf:"\u25aa",squf:"\u25aa",srarr:"\u2192",Sscr:"\ud835\udcae",sscr:"\ud835\udcc8",ssetmn:"\u2216",ssmile:"\u2323",sstarf:"\u22c6",Star:"\u22c6",star:"\u2606",starf:"\u2605",straightepsilon:"\u03f5",straightphi:"\u03d5",strns:"\xaf",Sub:"\u22d0",sub:"\u2282",subdot:"\u2abd",subE:"\u2ac5",sube:"\u2286",subedot:"\u2ac3",submult:"\u2ac1",subnE:"\u2acb",subne:"\u228a",subplus:"\u2abf",subrarr:"\u2979",Subset:"\u22d0",subset:"\u2282",subseteq:"\u2286",subseteqq:"\u2ac5",SubsetEqual:"\u2286",subsetneq:"\u228a",subsetneqq:"\u2acb",subsim:"\u2ac7",subsub:"\u2ad5",subsup:"\u2ad3",succ:"\u227b",succapprox:"\u2ab8",succcurlyeq:"\u227d",Succeeds:"\u227b",SucceedsEqual:"\u2ab0",SucceedsSlantEqual:"\u227d",SucceedsTilde:"\u227f",succeq:"\u2ab0",succnapprox:"\u2aba",succneqq:"\u2ab6",succnsim:"\u22e9",succsim:"\u227f",SuchThat:"\u220b",Sum:"\u2211",sum:"\u2211",sung:"\u266a",Sup:"\u22d1",sup:"\u2283",sup1:"\xb9",sup2:"\xb2",sup3:"\xb3",supdot:"\u2abe",supdsub:"\u2ad8",supE:"\u2ac6",supe:"\u2287",supedot:"\u2ac4",Superset:"\u2283",SupersetEqual:"\u2287",suphsol:"\u27c9",suphsub:"\u2ad7",suplarr:"\u297b",supmult:"\u2ac2",supnE:"\u2acc",supne:"\u228b",supplus:"\u2ac0",Supset:"\u22d1",supset:"\u2283",supseteq:"\u2287",supseteqq:"\u2ac6",supsetneq:"\u228b",supsetneqq:"\u2acc",supsim:"\u2ac8",supsub:"\u2ad4",supsup:"\u2ad6",swarhk:"\u2926",swArr:"\u21d9",swarr:"\u2199",swarrow:"\u2199",swnwar:"\u292a",szlig:"\xdf",Tab:"\t",target:"\u2316",Tau:"\u03a4",tau:"\u03c4",tbrk:"\u23b4",Tcaron:"\u0164",tcaron:"\u0165",Tcedil:"\u0162",tcedil:"\u0163",Tcy:"\u0422",tcy:"\u0442",tdot:"\u20db",telrec:"\u2315",Tfr:"\ud835\udd17",tfr:"\ud835\udd31",there4:"\u2234",Therefore:"\u2234",therefore:"\u2234",Theta:"\u0398",theta:"\u03b8",thetasym:"\u03d1",thetav:"\u03d1",thickapprox:"\u2248",thicksim:"\u223c",ThickSpace:"\u205f\u200a",thinsp:"\u2009",ThinSpace:"\u2009",thkap:"\u2248",thksim:"\u223c",THORN:"\xde",thorn:"\xfe",Tilde:"\u223c",tilde:"\u02dc",TildeEqual:"\u2243",TildeFullEqual:"\u2245",TildeTilde:"\u2248",times:"\xd7",timesb:"\u22a0",timesbar:"\u2a31",timesd:"\u2a30",tint:"\u222d",toea:"\u2928",top:"\u22a4",topbot:"\u2336",topcir:"\u2af1",Topf:"\ud835\udd4b",topf:"\ud835\udd65",topfork:"\u2ada",tosa:"\u2929",tprime:"\u2034",TRADE:"\u2122",trade:"\u2122",triangle:"\u25b5",triangledown:"\u25bf",triangleleft:"\u25c3",trianglelefteq:"\u22b4",triangleq:"\u225c",triangleright:"\u25b9",trianglerighteq:"\u22b5",tridot:"\u25ec",trie:"\u225c",triminus:"\u2a3a",TripleDot:"\u20db",triplus:"\u2a39",trisb:"\u29cd",tritime:"\u2a3b",trpezium:"\u23e2",Tscr:"\ud835\udcaf",tscr:"\ud835\udcc9",TScy:"\u0426",tscy:"\u0446",TSHcy:"\u040b",tshcy:"\u045b",Tstrok:"\u0166",tstrok:"\u0167",twixt:"\u226c",twoheadleftarrow:"\u219e",twoheadrightarrow:"\u21a0",Uacute:"\xda",uacute:"\xfa",Uarr:"\u219f",uArr:"\u21d1",uarr:"\u2191",Uarrocir:"\u2949",Ubrcy:"\u040e",ubrcy:"\u045e",Ubreve:"\u016c",ubreve:"\u016d",Ucirc:"\xdb",ucirc:"\xfb",Ucy:"\u0423",ucy:"\u0443",udarr:"\u21c5",Udblac:"\u0170",udblac:"\u0171",udhar:"\u296e",ufisht:"\u297e",Ufr:"\ud835\udd18",ufr:"\ud835\udd32",Ugrave:"\xd9",ugrave:"\xf9",uHar:"\u2963",uharl:"\u21bf",uharr:"\u21be",uhblk:"\u2580",ulcorn:"\u231c",ulcorner:"\u231c",ulcrop:"\u230f",ultri:"\u25f8",Umacr:"\u016a",umacr:"\u016b",uml:"\xa8",UnderBar:"_",UnderBrace:"\u23df",UnderBracket:"\u23b5",UnderParenthesis:"\u23dd",Union:"\u22c3",UnionPlus:"\u228e",Uogon:"\u0172",uogon:"\u0173",Uopf:"\ud835\udd4c",uopf:"\ud835\udd66",UpArrow:"\u2191",Uparrow:"\u21d1",uparrow:"\u2191",UpArrowBar:"\u2912",UpArrowDownArrow:"\u21c5",UpDownArrow:"\u2195",Updownarrow:"\u21d5",updownarrow:"\u2195",UpEquilibrium:"\u296e",upharpoonleft:"\u21bf",upharpoonright:"\u21be",uplus:"\u228e",UpperLeftArrow:"\u2196",UpperRightArrow:"\u2197",Upsi:"\u03d2",upsi:"\u03c5",upsih:"\u03d2",Upsilon:"\u03a5",upsilon:"\u03c5",UpTee:"\u22a5",UpTeeArrow:"\u21a5",upuparrows:"\u21c8",urcorn:"\u231d",urcorner:"\u231d",urcrop:"\u230e",Uring:"\u016e",uring:"\u016f",urtri:"\u25f9",Uscr:"\ud835\udcb0",uscr:"\ud835\udcca",utdot:"\u22f0",Utilde:"\u0168",utilde:"\u0169",utri:"\u25b5",utrif:"\u25b4",uuarr:"\u21c8",Uuml:"\xdc",uuml:"\xfc",uwangle:"\u29a7",vangrt:"\u299c",varepsilon:"\u03f5",varkappa:"\u03f0",varnothing:"\u2205",varphi:"\u03d5",varpi:"\u03d6",varpropto:"\u221d",vArr:"\u21d5",varr:"\u2195",varrho:"\u03f1",varsigma:"\u03c2",varsubsetneq:"\u228a\ufe00",varsubsetneqq:"\u2acb\ufe00",varsupsetneq:"\u228b\ufe00",varsupsetneqq:"\u2acc\ufe00",vartheta:"\u03d1",vartriangleleft:"\u22b2",vartriangleright:"\u22b3",Vbar:"\u2aeb",vBar:"\u2ae8",vBarv:"\u2ae9",Vcy:"\u0412",vcy:"\u0432",VDash:"\u22ab",Vdash:"\u22a9",vDash:"\u22a8",vdash:"\u22a2",Vdashl:"\u2ae6",Vee:"\u22c1",vee:"\u2228",veebar:"\u22bb",veeeq:"\u225a",vellip:"\u22ee",Verbar:"\u2016",verbar:"|",Vert:"\u2016",vert:"|",VerticalBar:"\u2223",VerticalLine:"|",VerticalSeparator:"\u2758",VerticalTilde:"\u2240",VeryThinSpace:"\u200a",Vfr:"\ud835\udd19",vfr:"\ud835\udd33",vltri:"\u22b2",vnsub:"\u2282\u20d2",vnsup:"\u2283\u20d2",Vopf:"\ud835\udd4d",vopf:"\ud835\udd67",vprop:"\u221d",vrtri:"\u22b3",Vscr:"\ud835\udcb1",vscr:"\ud835\udccb",vsubnE:"\u2acb\ufe00",vsubne:"\u228a\ufe00",vsupnE:"\u2acc\ufe00",vsupne:"\u228b\ufe00",Vvdash:"\u22aa",vzigzag:"\u299a",Wcirc:"\u0174",wcirc:"\u0175",wedbar:"\u2a5f",Wedge:"\u22c0",wedge:"\u2227",wedgeq:"\u2259",weierp:"\u2118",Wfr:"\ud835\udd1a",wfr:"\ud835\udd34",Wopf:"\ud835\udd4e",wopf:"\ud835\udd68",wp:"\u2118",wr:"\u2240",wreath:"\u2240",Wscr:"\ud835\udcb2",wscr:"\ud835\udccc",xcap:"\u22c2",xcirc:"\u25ef",xcup:"\u22c3",xdtri:"\u25bd",Xfr:"\ud835\udd1b",xfr:"\ud835\udd35",xhArr:"\u27fa",xharr:"\u27f7",Xi:"\u039e",xi:"\u03be",xlArr:"\u27f8",xlarr:"\u27f5",xmap:"\u27fc",xnis:"\u22fb",xodot:"\u2a00",Xopf:"\ud835\udd4f",xopf:"\ud835\udd69",xoplus:"\u2a01",xotime:"\u2a02",xrArr:"\u27f9",xrarr:"\u27f6",Xscr:"\ud835\udcb3",xscr:"\ud835\udccd",xsqcup:"\u2a06",xuplus:"\u2a04",xutri:"\u25b3",xvee:"\u22c1",xwedge:"\u22c0",Yacute:"\xdd",yacute:"\xfd",YAcy:"\u042f",yacy:"\u044f",Ycirc:"\u0176",ycirc:"\u0177",Ycy:"\u042b",ycy:"\u044b",yen:"\xa5",Yfr:"\ud835\udd1c",yfr:"\ud835\udd36",YIcy:"\u0407",yicy:"\u0457",Yopf:"\ud835\udd50",yopf:"\ud835\udd6a",Yscr:"\ud835\udcb4",yscr:"\ud835\udcce",YUcy:"\u042e",yucy:"\u044e",Yuml:"\u0178",yuml:"\xff",Zacute:"\u0179",zacute:"\u017a",Zcaron:"\u017d",zcaron:"\u017e",Zcy:"\u0417",zcy:"\u0437",Zdot:"\u017b",zdot:"\u017c",zeetrf:"\u2128",ZeroWidthSpace:"\u200b",Zeta:"\u0396",zeta:"\u03b6",Zfr:"\u2128",zfr:"\ud835\udd37",ZHcy:"\u0416",zhcy:"\u0436",zigrarr:"\u21dd",Zopf:"\u2124",zopf:"\ud835\udd6b",Zscr:"\ud835\udcb5",zscr:"\ud835\udccf",zwj:"\u200d",zwnj:"\u200c"},o=/^#[xX]([A-Fa-f0-9]+)$/,n=/^#([0-9]+)$/,l=/^([A-Za-z0-9]+)$/,c=(function(){function t(t){this.named=t}return t.prototype.parse=function(t){if(t){var s=t.match(o);return s?String.fromCharCode(parseInt(s[1],16)):(s=t.match(n))?String.fromCharCode(parseInt(s[1],10)):(s=t.match(l))?this.named[s[1]]:void 0}},t})(),u=/[\t\n\f ]/,p=/[A-Za-z]/,h=/\r\n?/g;function f(t){return u.test(t)}function b(t){return p.test(t)}function q(t){return t.replace(h,"\n")}function w(t,s){if(!t)throw new Error((s||'value')+" was null");return t}var y=(function(){function t(t,s){this.delegate=t,this.entityParser=s,this.state=null,this.input=null,this.index=-1,this.tagLine=-1,this.tagColumn=-1,this.line=-1,this.column=-1,this.states={beforeData:function(){"<"===this.peek()?(this.state='tagOpen',this.markTagStart(),this.consume()):(this.state='data',this.delegate.beginData())},data:function(){var t=this.peek();"<"===t?(this.delegate.finishData(),this.state='tagOpen',this.markTagStart(),this.consume()):"&"===t?(this.consume(),this.delegate.appendToData(this.consumeCharRef()||"&")):(this.consume(),this.delegate.appendToData(t))},tagOpen:function(){var t=this.consume();"!"===t?this.state='markupDeclaration':"/"===t?this.state='endTagOpen':b(t)&&(this.state='tagName',this.delegate.beginStartTag(),this.delegate.appendToTagName(t.toLowerCase()))},markupDeclaration:function(){"-"===this.consume()&&"-"===this.input.charAt(this.index)&&(this.consume(),this.state='commentStart',this.delegate.beginComment())},commentStart:function(){var t=this.consume();"-"===t?this.state='commentStartDash':">"===t?(this.delegate.finishComment(),this.state='beforeData'):(this.delegate.appendToCommentData(t),this.state='comment')},commentStartDash:function(){var t=this.consume();"-"===t?this.state='commentEnd':">"===t?(this.delegate.finishComment(),this.state='beforeData'):(this.delegate.appendToCommentData("-"),this.state='comment')},comment:function(){var t=this.consume();"-"===t?this.state='commentEndDash':this.delegate.appendToCommentData(t)},commentEndDash:function(){var t=this.consume();"-"===t?this.state='commentEnd':(this.delegate.appendToCommentData("-"+t),this.state='comment')},commentEnd:function(){var t=this.consume();">"===t?(this.delegate.finishComment(),this.state='beforeData'):(this.delegate.appendToCommentData("--"+t),this.state='comment')},tagName:function(){var t=this.consume();f(t)?this.state='beforeAttributeName':"/"===t?this.state='selfClosingStartTag':">"===t?(this.delegate.finishTag(),this.state='beforeData'):this.delegate.appendToTagName(t)},beforeAttributeName:function(){var t=this.peek();f(t)?this.consume():"/"===t?(this.state='selfClosingStartTag',this.consume()):">"===t?(this.consume(),this.delegate.finishTag(),this.state='beforeData'):'='===t?(this.delegate.reportSyntaxError("attribute name cannot start with equals sign"),this.state='attributeName',this.delegate.beginAttribute(),this.consume(),this.delegate.appendToAttributeName(t)):(this.state='attributeName',this.delegate.beginAttribute())},attributeName:function(){var t=this.peek();f(t)?(this.state='afterAttributeName',this.consume()):"/"===t?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.state='selfClosingStartTag'):"="===t?(this.state='beforeAttributeValue',this.consume()):">"===t?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.state='beforeData'):'"'===t||"'"===t||'<'===t?(this.delegate.reportSyntaxError(t+" is not a valid character within attribute names"),this.consume(),this.delegate.appendToAttributeName(t)):(this.consume(),this.delegate.appendToAttributeName(t))},afterAttributeName:function(){var t=this.peek();f(t)?this.consume():"/"===t?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.state='selfClosingStartTag'):"="===t?(this.consume(),this.state='beforeAttributeValue'):">"===t?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.state='beforeData'):(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.state='attributeName',this.delegate.beginAttribute(),this.delegate.appendToAttributeName(t))},beforeAttributeValue:function(){var t=this.peek();f(t)?this.consume():'"'===t?(this.state='attributeValueDoubleQuoted',this.delegate.beginAttributeValue(!0),this.consume()):"'"===t?(this.state='attributeValueSingleQuoted',this.delegate.beginAttributeValue(!0),this.consume()):">"===t?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.state='beforeData'):(this.state='attributeValueUnquoted',this.delegate.beginAttributeValue(!1),this.consume(),this.delegate.appendToAttributeValue(t))},attributeValueDoubleQuoted:function(){var t=this.consume();'"'===t?(this.delegate.finishAttributeValue(),this.state='afterAttributeValueQuoted'):"&"===t?this.delegate.appendToAttributeValue(this.consumeCharRef('"')||"&"):this.delegate.appendToAttributeValue(t)},attributeValueSingleQuoted:function(){var t=this.consume();"'"===t?(this.delegate.finishAttributeValue(),this.state='afterAttributeValueQuoted'):"&"===t?this.delegate.appendToAttributeValue(this.consumeCharRef("'")||"&"):this.delegate.appendToAttributeValue(t)},attributeValueUnquoted:function(){var t=this.peek();f(t)?(this.delegate.finishAttributeValue(),this.consume(),this.state='beforeAttributeName'):"&"===t?(this.consume(),this.delegate.appendToAttributeValue(this.consumeCharRef(">")||"&")):">"===t?(this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.state='beforeData'):(this.consume(),this.delegate.appendToAttributeValue(t))},afterAttributeValueQuoted:function(){var t=this.peek();f(t)?(this.consume(),this.state='beforeAttributeName'):"/"===t?(this.consume(),this.state='selfClosingStartTag'):">"===t?(this.consume(),this.delegate.finishTag(),this.state='beforeData'):this.state='beforeAttributeName'},selfClosingStartTag:function(){">"===this.peek()?(this.consume(),this.delegate.markTagAsSelfClosing(),this.delegate.finishTag(),this.state='beforeData'):this.state='beforeAttributeName'},endTagOpen:function(){var t=this.consume();b(t)&&(this.state='tagName',this.delegate.beginEndTag(),this.delegate.appendToTagName(t.toLowerCase()))}},this.reset()}return t.prototype.reset=function(){this.state='beforeData',this.input='',this.index=0,this.line=1,this.column=0,this.tagLine=-1,this.tagColumn=-1,this.delegate.reset()},t.prototype.tokenize=function(t){this.reset(),this.tokenizePart(t),this.tokenizeEOF()},t.prototype.tokenizePart=function(t){for(this.input+=q(t);this.index1?t-1:0),c=1;c2&&void 0!==arguments[2]?arguments[2]:[],b=(0,p.normalizeBlockType)(t),y=b.save;if(y.prototype instanceof n.Component){var k=new y({attributes:o});y=k.render.bind(k)}var O=y({attributes:o,innerBlocks:s});if((0,l.isObject)(O)&&(0,c.hasFilter)('blocks.getSaveContent.extraProps')){var B=(0,c.applyFilters)('blocks.getSaveContent.extraProps',v({},O.props),b,o);(0,u.default)(B,O.props)||(O=(0,n.cloneElement)(O,B))}return O=(0,c.applyFilters)('blocks.getSaveElement',O,b,o),(0,n.createElement)(f.default,{innerBlocks:s},O)}function k(t,o,l){var c=(0,p.normalizeBlockType)(t);return(0,n.renderToString)(y(c,o,l))}function O(t,n){return(0,l.reduce)(t.attributes,function(t,o,l){var c=n[l];return void 0===c?t:void 0!==o.source?t:'default'in o&&o.default===c?t:(t[l]=c,t)},{})}function B(t){return JSON.stringify(t).replace(/--/g,"\\u002d\\u002d").replace(//g,"\\u003e").replace(/&/g,"\\u0026").replace(/\\"/g,"\\u0022")}function C(t){var n=t.originalContent;if(t.isValid||t.innerBlocks.length)try{n=k(t.name,t.attributes,t.innerBlocks)}catch(t){}return n}function j(t,n,o){var c=(0,l.isEmpty)(n)?'':B(n)+' ',u=(0,l.startsWith)(t,'core/')?t.slice(5):t;return o?"\x3c!-- wp:"+u+" "+c+"--\x3e\n"+o+"\n\x3c!-- /wp:"+u+" --\x3e":"\x3c!-- wp:"+u+" "+c+"/--\x3e"}function w(t){var n=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).isInnerBlocks,o=void 0!==n&&n,l=t.name,c=C(t);return l===(0,s.getUnregisteredTypeHandlerName)()||!o&&l===(0,s.getFreeformContentHandlerName)()?c:j(l,O((0,s.getBlockType)(l),t.attributes),c)}},1068,[2,3,18,21,960,981,1055,1056,1069]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.withBlockContentContext=void 0;var n=r(d[1]),o=t(r(d[2])),l=r(d[3]),c=r(d[4]),u=(0,n.createContext)(function(){}),f=u.Consumer,C=u.Provider,v=(0,l.createHigherOrderComponent)(function(t){return function(l){return(0,n.createElement)(f,null,function(c){return(0,n.createElement)(t,(0,o.default)({},l,{BlockContent:c}))})}},'withBlockContentContext');e.withBlockContentContext=v;var k=function(t){var o=t.children,l=t.innerBlocks;return(0,n.createElement)(C,{value:function(){var t=(0,c.serialize)(l,{isInnerBlocks:!0});return(0,n.createElement)(n.RawHTML,null,t)}},o)};e.default=k},1069,[2,3,16,975,1050]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.html=function(t,n){return function(u){var o=u;if(t&&(o=u.querySelector(t)),!o)return'';if(n){for(var c='',f=o.children.length,l=0;l]+>/g,'')).replace(/^\s*]*>\s*]*>(?:\s*)?/i,'')).replace(/(?:\s*)?<\/body>\s*<\/html>\s*$/i,''),'INLINE'!==z){var q=B||C;if(-1!==q.indexOf('\x3c!-- wp:'))return(0,u.parseWithGrammar)(q)}String.prototype.normalize&&(B=B.normalize());!C||B&&!(0,x.isPlain)(B)||(B=(0,P.default)(C),'AUTO'===z&&-1===C.indexOf('\n')&&0!==C.indexOf('

')&&0===B.indexOf('

')&&(z='INLINE'));if('INLINE'===z)return E(B);var J=(0,H.default)(B),K=J.length>1;if('AUTO'===z&&!K&&(0,v.default)(B,G))return E(B);var Q=(0,o.filter)((0,l.getBlockTransforms)('from'),{type:'raw'}).map(function(t){return t.isMatch?t:S({},t,{isMatch:function(n){return t.selector&&n.matches(t.selector)}})}),R=(0,N.getPhrasingContentSchema)('paste'),V=(0,x.getBlockContentSchema)(Q,R,!0),X=(0,o.compact)((0,o.flatMap)(J,function(t){if('string'!=typeof t)return t;var n=[j.default,T.default,h.default,b.default,y.default,O.default,s.default,p.default,L.default,M.default];$||n.unshift(w.default);var o=S({},V,{},R);return t=(0,x.deepFilterHTML)(t,n,V),t=(0,x.removeInvalidHTML)(t,o),t=(0,c.default)(t),t=(0,x.deepFilterHTML)(t,[k.default,I.default,A.default],V),U.log('Processed HTML piece:\n\n',t),F({html:t,rawTransforms:Q})}));if('AUTO'===z&&1===X.length){var Y=C.trim();if(''!==Y&&-1===Y.indexOf('\n'))return(0,x.removeInvalidHTML)((0,f.getBlockContent)(X[0]),R)}return X};var n=t(r(d[1])),o=r(d[2]),l=r(d[3]),f=r(d[4]),u=r(d[5]),c=t(r(d[6])),s=t(r(d[7])),p=t(r(d[8])),v=t(r(d[9])),O=t(r(d[10])),h=t(r(d[11])),T=t(r(d[12])),b=t(r(d[13])),y=t(r(d[14])),M=t(r(d[15])),L=t(r(d[16])),H=t(r(d[17])),P=t(r(d[18])),w=t(r(d[19])),j=t(r(d[20])),k=t(r(d[21])),I=t(r(d[22])),N=r(d[23]),x=r(d[24]),A=t(r(d[25]));function B(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function S(t){for(var o=1;o])/i.test(t)},e.deepFilterNodeList=N,e.deepFilterHTML=function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],o=arguments.length>2?arguments[2]:void 0,c=document.implementation.createHTMLDocument('');return c.body.innerHTML=t,N(c.body.childNodes,n,c,o),c.body.innerHTML},e.removeInvalidHTML=function(t,n,o){var c=document.implementation.createHTMLDocument('');return c.body.innerHTML=t,O(c.body.childNodes,c,n,o),c.body.innerHTML},e.getSibling=function t(n,o){var c=n[o+"Sibling"];if(c&&(0,f.isPhrasingContent)(c))return c;var s=n.parentNode;if(!s||!(0,f.isPhrasingContent)(s))return;return t(s,o)};var n=t(r(d[1])),o=t(r(d[2])),c=r(d[3]),s=r(d[4]),u=r(d[5]),f=r(d[6]);function l(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function h(t){for(var o=1;o0||t.offsetHeight>0||t.getClientRects().length>0}function o(t){var o=t.closest('map[name]');if(!o)return!1;var f=document.querySelector('img[usemap="#'+o.name+'"]');return!!f&&n(f)}},1079,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isTabbableIndex=o,e.find=function(u){return(0,t.find)(u).filter(o).map(c).sort(l).map(f).reduce((v={},function(t,u){var o=u.nodeName,c=u.type,f=u.checked,l=u.name;if('INPUT'!==o||'radio'!==c||!l)return t.concat(u);var b=v.hasOwnProperty(l),p=f||!b;if(!p)return t;if(b){var s=v[l];t=(0,n.without)(t,s)}return v[l]=u,t.concat(u)}),[]);var v};var n=r(d[0]),t=r(d[1]);function u(n){var t=n.getAttribute('tabindex');return null===t?0:parseInt(t,10)}function o(n){return-1!==u(n)}function c(n,t){return{element:n,index:t}}function f(n){return n.element}function l(n,t){var o=u(n.element),c=u(t.element);return o===c?n.index-t.index:o-c}},1080,[21,1079]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isHorizontalEdge=function(t,n){return v(t,n)},e.isVerticalEdge=function(t,n){return v(t,n,!0)},e.getRectangleFromRange=p,e.computeCaretRect=function(){var t=window.getSelection(),n=t.rangeCount?t.getRangeAt(0):null;if(!n)return;return p(n)},e.placeCaretAtHorizontalEdge=C,e.placeCaretAtVerticalEdge=function t(n,o,l){var c=!(arguments.length>3&&void 0!==arguments[3])||arguments[3];if(!n)return;if(!l||!n.isContentEditable)return void C(n,o);var u=l.height/2;var s=n.getBoundingClientRect();var f=l.left;var v=o?s.bottom-u:s.top+u;var p=N(document,f,v,n);if(!p||!n.contains(p.startContainer))return!c||p&&p.startContainer&&p.startContainer.contains(n)?void C(n,o):(n.scrollIntoView(o),void t(n,o,l,!1));var h=window.getSelection();h.removeAllRanges();h.addRange(p);n.focus();h.removeAllRanges();h.addRange(p)},e.isTextField=E,e.documentHasSelection=function(){if(E(document.activeElement))return!0;var t=window.getSelection(),n=t.rangeCount?t.getRangeAt(0):null;return n&&!n.collapsed},e.isEntirelySelected=function(n){if((0,t.includes)(['INPUT','TEXTAREA'],n.nodeName))return 0===n.selectionStart&&n.value.length===n.selectionEnd;if(!n.isContentEditable)return!0;var o=window.getSelection(),c=o.rangeCount?o.getRangeAt(0):null;if(!c)return!0;var u=c.startContainer,s=c.endContainer,f=c.startOffset,v=c.endOffset;if(u===n&&s===n&&0===f&&v===n.childNodes.length)return!0;var p=n.lastChild,C=p.nodeType===l?p.data.length:p.childNodes.length;return u===n.firstChild&&s===n.lastChild&&0===f&&v===C},e.getScrollContainer=function t(n){if(!n)return;if(n.scrollHeight>n.clientHeight){var o=window.getComputedStyle(n),l=o.overflowY;if(/(auto|scroll)/.test(l))return n}return t(n.parentNode)},e.getOffsetParent=function(t){var o;for(;(o=t.parentNode)&&o.nodeType!==c;);if(!o)return null;if('static'!==n(o).position)return o;return o.offsetParent},e.replace=function(t,n){w(n,t.parentNode),R(t)},e.remove=R,e.insertAfter=w,e.unwrap=function(t){var n=t.parentNode;for(;t.firstChild;)n.insertBefore(t.firstChild,t);n.removeChild(t)},e.replaceTag=function(t,n){var o=t.ownerDocument.createElement(n);for(;t.firstChild;)o.appendChild(t.firstChild);return t.parentNode.replaceChild(o,t),o},e.wrap=function(t,n){n.parentNode.insertBefore(t,n),t.appendChild(n)};var t=r(d[0]),n=window.getComputedStyle,o=window.Node,l=o.TEXT_NODE,c=o.ELEMENT_NODE,u=o.DOCUMENT_POSITION_PRECEDING,s=o.DOCUMENT_POSITION_FOLLOWING;function f(t){var n=t.anchorNode,o=t.focusNode,l=t.anchorOffset,c=t.focusOffset,f=n.compareDocumentPosition(o);return!(f&u)&&(!!(f&s)||(0!==f||l<=c))}function v(n,o,l){if((0,t.includes)(['INPUT','TEXTAREA'],n.tagName))return n.selectionStart===n.selectionEnd&&(o?0===n.selectionStart:n.value.length===n.selectionStart);if(!n.isContentEditable)return!0;var c=window.getSelection();if(!c.rangeCount)return!1;var u=c.getRangeAt(0).cloneRange(),s=f(c),v=c.isCollapsed;v||u.collapse(!s);var C=p(u);if(!C)return!1;var h=window.getComputedStyle(n),E=parseInt(h.lineHeight,10)||0;if(!v&&C.height>E&&s===o)return!1;var R=parseInt(h["padding"+(o?'Top':'Bottom')],10)||0,w=3*parseInt(E,10)/4,T=n.getBoundingClientRect();if(!(o?T.top+R>C.top-w:T.bottom-R1&&void 0!==arguments[1]?arguments[1]:n,o=n.ownerDocument.createElement('figure');t.parentNode.insertBefore(o,t),o.appendChild(n)}},1091,[21,1074]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1])),o=t(r(d[2])),c=r(d[3]),s=r(d[4]),u=r(d[5]),f=r(d[6]),l=r(d[7]);function b(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function p(t){for(var o=1;o1&&void 0!==arguments[1]?arguments[1]:0,y=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],O=(0,u.getBlockTransforms)('from'),h=(0,u.findTransform)(O,function(t){return-1===y.indexOf(t.blockName)&&'shortcode'===t.type&&(0,c.some)((0,c.castArray)(t.tag),function(t){return(0,s.regexp)(t).test(n)})});if(!h)return[n];var v,j=(0,c.castArray)(h.tag),k=(0,c.find)(j,function(t){return(0,s.regexp)(t).test(n)}),P=b;if(v=(0,s.next)(k,n,b)){b=v.index+v.content.length;var w=n.substr(0,v.index),x=n.substr(b);if(!((0,c.includes)(v.shortcode.content||'','<')||/(\n|

)\s*$/.test(w)&&/^\s*(\n|<\/p>)/.test(x)))return t(n,b);if(h.isMatch&&!h.isMatch(v.shortcode.attrs))return t(n,P,[].concat((0,o.default)(y),[h.blockName]));var B=(0,c.mapValues)((0,c.pickBy)(h.attributes,function(t){return t.shortcode}),function(t){return t.shortcode(v.shortcode.attrs,v)});return[w,(0,u.createBlock)(h.blockName,(0,l.getBlockAttributes)(p({},(0,f.getBlockType)(h.blockName),{attributes:h.attributes}),v.shortcode.content,B))].concat((0,o.default)(t(n.substr(b))))}return[n]};e.default=y},1092,[2,18,9,21,1093,1051,1055,1059]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.next=s,e.replace=c,e.string=o,e.regexp=u,e.fromMatch=h,e.default=e.attrs=void 0;var n=r(d[1]);function s(t,n){var c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,o=u(t);o.lastIndex=c;var f=o.exec(n);if(f){if('['===f[1]&&']'===f[7])return s(t,n,o.lastIndex);var l={index:f.index,content:f[0],shortcode:h(f)};return f[1]&&(l.content=l.content.slice(1),l.index++),f[7]&&(l.content=l.content.slice(0,-1)),l}}function c(t,n,s){return n.replace(u(t),function(t,n,c,o,u,f,l,p){if('['===n&&']'===p)return t;var v=s(h(arguments));return v?n+v+p:t})}function o(t){return new l(t).string()}function u(t){return new RegExp('\\[(\\[?)('+t+')(?![\\w-])([^\\]\\/]*(?:\\/(?!\\])[^\\]\\/]*)*?)(?:(\\/)\\]|\\](?:([^\\[]*(?:\\[(?!\\/\\2\\])[^\\[]*)*)(\\[\\/\\2\\]))?)(\\]?)','g')}var f=(0,t(r(d[2])).default)(function(t){var n,s={},c=[],o=/([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*'([^']*)'(?:\s|$)|([\w-]+)\s*=\s*([^\s'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|'([^']*)'(?:\s|$)|(\S+)(?:\s|$)/g;for(t=t.replace(/[\u00a0\u200b]/g,' ');n=o.exec(t);)n[1]?s[n[1].toLowerCase()]=n[2]:n[3]?s[n[3].toLowerCase()]=n[4]:n[5]?s[n[5].toLowerCase()]=n[6]:n[7]?c.push(n[7]):n[8]?c.push(n[8]):n[9]&&c.push(n[9]);return{named:s,numeric:c}});function h(t){var n;return n=t[4]?'self-closing':t[6]?'closed':'single',new l({tag:t[2],attrs:t[3],type:n,content:t[5]})}e.attrs=f;var l=(0,n.extend)(function(t){var s=this;(0,n.extend)(this,(0,n.pick)(t||{},'tag','attrs','type','content'));var c=this.attrs;this.attrs={named:{},numeric:[]},c&&((0,n.isString)(c)?this.attrs=f(c):(0,n.isEqual)(Object.keys(c),['named','numeric'])?this.attrs=c:(0,n.forEach)(c,function(t,n){s.set(n,t)}))},{next:s,replace:c,string:o,regexp:u,attrs:f,fromMatch:h});(0,n.extend)(l.prototype,{get:function(t){return this.attrs[(0,n.isNumber)(t)?'numeric':'named'][t]},set:function(t,s){return this.attrs[(0,n.isNumber)(t)?'numeric':'named'][t]=s,this},string:function(){var t='['+this.tag;return(0,n.forEach)(this.attrs.numeric,function(n){/\s/.test(n)?t+=' "'+n+'"':t+=' '+n}),(0,n.forEach)(this.attrs.named,function(n,s){t+=' '+s+'="'+n+'"'}),'single'===this.type?t+']':'self-closing'===this.type?t+' /]':(t+=']',this.content&&(t+=this.content),t+'[/'+this.tag+']')}});var p=l;e.default=p},1093,[2,21,353]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(n){return t.makeHtml(o(n))};var t=new(n(r(d[1])).default.Converter)({noHeaderId:!0,tables:!0,literalMidWordUnderscores:!0,omitExtraWLInCodeBlocks:!0,simpleLineBreaks:!0,strikethrough:!0});function o(n){return n.replace(/((?:^|\n)```)([^\n`]+)(```(?:$|\n))/,function(n,t,o,u){return t+"\n"+o+"\n"+u})}},1094,[2,1095]); +__d(function(e,r,t,a,n,s,o){(function(){function e(e){'use strict';var r={omitExtraWLInCodeBlocks:{defaultValue:!1,describe:'Omit the default extra whiteline added to code blocks',type:'boolean'},noHeaderId:{defaultValue:!1,describe:'Turn on/off generated header id',type:'boolean'},prefixHeaderId:{defaultValue:!1,describe:'Add a prefix to the generated header ids. Passing a string will prefix that string to the header id. Setting to true will add a generic \'section-\' prefix',type:'string'},rawPrefixHeaderId:{defaultValue:!1,describe:'Setting this option to true will prevent showdown from modifying the prefix. This might result in malformed IDs (if, for instance, the " char is used in the prefix)',type:'boolean'},ghCompatibleHeaderId:{defaultValue:!1,describe:'Generate header ids compatible with github style (spaces are replaced with dashes, a bunch of non alphanumeric chars are removed)',type:'boolean'},rawHeaderId:{defaultValue:!1,describe:'Remove only spaces, \' and " from generated header ids (including prefixes), replacing them with dashes (-). WARNING: This might result in malformed ids',type:'boolean'},headerLevelStart:{defaultValue:!1,describe:'The header blocks level start',type:'integer'},parseImgDimensions:{defaultValue:!1,describe:'Turn on/off image dimension parsing',type:'boolean'},simplifiedAutoLink:{defaultValue:!1,describe:'Turn on/off GFM autolink style',type:'boolean'},excludeTrailingPunctuationFromURLs:{defaultValue:!1,describe:'Excludes trailing punctuation from links generated with autoLinking',type:'boolean'},literalMidWordUnderscores:{defaultValue:!1,describe:'Parse midword underscores as literal underscores',type:'boolean'},literalMidWordAsterisks:{defaultValue:!1,describe:'Parse midword asterisks as literal asterisks',type:'boolean'},strikethrough:{defaultValue:!1,describe:'Turn on/off strikethrough support',type:'boolean'},tables:{defaultValue:!1,describe:'Turn on/off tables support',type:'boolean'},tablesHeaderId:{defaultValue:!1,describe:'Add an id to table headers',type:'boolean'},ghCodeBlocks:{defaultValue:!0,describe:'Turn on/off GFM fenced code blocks support',type:'boolean'},tasklists:{defaultValue:!1,describe:'Turn on/off GFM tasklist support',type:'boolean'},smoothLivePreview:{defaultValue:!1,describe:'Prevents weird effects in live previews due to incomplete input',type:'boolean'},smartIndentationFix:{defaultValue:!1,description:'Tries to smartly fix indentation in es6 strings',type:'boolean'},disableForced4SpacesIndentedSublists:{defaultValue:!1,description:'Disables the requirement of indenting nested sublists by 4 spaces',type:'boolean'},simpleLineBreaks:{defaultValue:!1,description:'Parses simple line breaks as
(GFM Style)',type:'boolean'},requireSpaceBeforeHeadingText:{defaultValue:!1,description:'Makes adding a space between `#` and the header text mandatory (GFM Style)',type:'boolean'},ghMentions:{defaultValue:!1,description:'Enables github @mentions',type:'boolean'},ghMentionsLink:{defaultValue:'https://github.com/{u}',description:'Changes the link generated by @mentions. Only applies if ghMentions option is enabled.',type:'string'},encodeEmails:{defaultValue:!0,description:'Encode e-mail addresses through the use of Character Entities, transforming ASCII e-mail addresses into its equivalent decimal entities',type:'boolean'},openLinksInNewWindow:{defaultValue:!1,description:'Open all links in new windows',type:'boolean'},backslashEscapesHTMLTags:{defaultValue:!1,description:'Support for HTML Tag escaping. ex:

foo
',type:'boolean'},emoji:{defaultValue:!1,description:'Enable emoji support. Ex: `this is a :smile: emoji`',type:'boolean'},underline:{defaultValue:!1,description:'Enable support for underline. Syntax is double or triple underscores: `__underline word__`. With this option enabled, underscores no longer parses into `` and ``',type:'boolean'},completeHTMLDocument:{defaultValue:!1,description:'Outputs a complete html document, including ``, `` and `` tags',type:'boolean'},metadata:{defaultValue:!1,description:'Enable support for document metadata (defined at the top of the document between `\xab\xab\xab` and `\xbb\xbb\xbb` or between `---` and `---`).',type:'boolean'},splitAdjacentBlockquotes:{defaultValue:!1,description:'Split adjacent blockquote blocks',type:'boolean'}};if(!1===e)return JSON.parse(JSON.stringify(r));var t={};for(var a in r)r.hasOwnProperty(a)&&(t[a]=r[a].defaultValue);return t}var r={},t={},a={},s=e(!0),o='vanilla',i={github:{omitExtraWLInCodeBlocks:!0,simplifiedAutoLink:!0,excludeTrailingPunctuationFromURLs:!0,literalMidWordUnderscores:!0,strikethrough:!0,tables:!0,tablesHeaderId:!0,ghCodeBlocks:!0,tasklists:!0,disableForced4SpacesIndentedSublists:!0,simpleLineBreaks:!0,requireSpaceBeforeHeadingText:!0,ghCompatibleHeaderId:!0,ghMentions:!0,backslashEscapesHTMLTags:!0,emoji:!0,splitAdjacentBlockquotes:!0},original:{noHeaderId:!0,ghCodeBlocks:!1},ghost:{omitExtraWLInCodeBlocks:!0,parseImgDimensions:!0,simplifiedAutoLink:!0,excludeTrailingPunctuationFromURLs:!0,literalMidWordUnderscores:!0,strikethrough:!0,tables:!0,tablesHeaderId:!0,ghCodeBlocks:!0,tasklists:!0,smoothLivePreview:!0,simpleLineBreaks:!0,requireSpaceBeforeHeadingText:!0,ghMentions:!1,encodeEmails:!0},vanilla:e(!0),allOn:(function(){'use strict';var r=e(!0),t={};for(var a in r)r.hasOwnProperty(a)&&(t[a]=!0);return t})()};function l(e,t){'use strict';var a=t?'Error in '+t+' extension->':'Error in unnamed extension',n={valid:!0,error:''};r.helper.isArray(e)||(e=[e]);for(var s=0;s').replace(/&/g,'&')};var u=function(e,r,t,a){'use strict';var n,s,o,i,l,c=a||'',u=c.indexOf('g')>-1,d=new RegExp(r+'|'+t,'g'+c.replace(/g/g,'')),p=new RegExp(r,c.replace(/g/g,'')),h=[];do{for(n=0;o=d.exec(e);)if(p.test(o[0]))n++||(i=(s=d.lastIndex)-o[0].length);else if(n&&!--n){l=o.index+o[0].length;var _={left:{start:i,end:s},match:{start:s,end:o.index},right:{start:o.index,end:l},wholeMatch:{start:i,end:l}};if(h.push(_),!u)return h}}while(n&&(d.lastIndex=s));return h};r.helper.matchRecursiveRegExp=function(e,r,t,a){'use strict';for(var n=u(e,r,t,a),s=[],o=0;o0){var d=[];0!==i[0].wholeMatch.start&&d.push(e.slice(0,i[0].wholeMatch.start));for(var p=0;p=0?n+(a||0):n},r.helper.splitAtIndex=function(e,t){'use strict';if(!r.helper.isString(e))throw'InvalidArgumentError: first parameter of showdown.helper.regexIndexOf function must be a string';return[e.substring(0,t),e.substring(t)]},r.helper.encodeEmailAddress=function(e){'use strict';var r=[function(e){return'&#'+e.charCodeAt(0)+';'},function(e){return'&#x'+e.charCodeAt(0).toString(16)+';'},function(e){return e}];return e=e.replace(/./g,function(e){if('@'===e)e=r[Math.floor(2*Math.random())](e);else{var t=Math.random();e=t>.9?r[2](e):t>.45?r[1](e):r[0](e)}return e})},r.helper.padEnd=function(e,r,t){'use strict';return r>>=0,t=String(t||' '),e.length>r?String(e):((r-=e.length)>t.length&&(t+=t.repeat(r/t.length)),String(e)+t.slice(0,r))},'undefined'==typeof console&&(console={warn:function(e){'use strict';alert(e)},log:function(e){'use strict';alert(e)},error:function(e){'use strict';throw e}}),r.helper.regexes={asteriskDashAndColon:/([*_:~])/g},r.helper.emojis={'+1':"\ud83d\udc4d",'-1':"\ud83d\udc4e",100:"\ud83d\udcaf",1234:"\ud83d\udd22",'1st_place_medal':"\ud83e\udd47",'2nd_place_medal':"\ud83e\udd48",'3rd_place_medal':"\ud83e\udd49",'8ball':"\ud83c\udfb1",a:"\ud83c\udd70\ufe0f",ab:"\ud83c\udd8e",abc:"\ud83d\udd24",abcd:"\ud83d\udd21",accept:"\ud83c\ude51",aerial_tramway:"\ud83d\udea1",airplane:"\u2708\ufe0f",alarm_clock:"\u23f0",alembic:"\u2697\ufe0f",alien:"\ud83d\udc7d",ambulance:"\ud83d\ude91",amphora:"\ud83c\udffa",anchor:"\u2693\ufe0f",angel:"\ud83d\udc7c",anger:"\ud83d\udca2",angry:"\ud83d\ude20",anguished:"\ud83d\ude27",ant:"\ud83d\udc1c",apple:"\ud83c\udf4e",aquarius:"\u2652\ufe0f",aries:"\u2648\ufe0f",arrow_backward:"\u25c0\ufe0f",arrow_double_down:"\u23ec",arrow_double_up:"\u23eb",arrow_down:"\u2b07\ufe0f",arrow_down_small:"\ud83d\udd3d",arrow_forward:"\u25b6\ufe0f",arrow_heading_down:"\u2935\ufe0f",arrow_heading_up:"\u2934\ufe0f",arrow_left:"\u2b05\ufe0f",arrow_lower_left:"\u2199\ufe0f",arrow_lower_right:"\u2198\ufe0f",arrow_right:"\u27a1\ufe0f",arrow_right_hook:"\u21aa\ufe0f",arrow_up:"\u2b06\ufe0f",arrow_up_down:"\u2195\ufe0f",arrow_up_small:"\ud83d\udd3c",arrow_upper_left:"\u2196\ufe0f",arrow_upper_right:"\u2197\ufe0f",arrows_clockwise:"\ud83d\udd03",arrows_counterclockwise:"\ud83d\udd04",art:"\ud83c\udfa8",articulated_lorry:"\ud83d\ude9b",artificial_satellite:"\ud83d\udef0",astonished:"\ud83d\ude32",athletic_shoe:"\ud83d\udc5f",atm:"\ud83c\udfe7",atom_symbol:"\u269b\ufe0f",avocado:"\ud83e\udd51",b:"\ud83c\udd71\ufe0f",baby:"\ud83d\udc76",baby_bottle:"\ud83c\udf7c",baby_chick:"\ud83d\udc24",baby_symbol:"\ud83d\udebc",back:"\ud83d\udd19",bacon:"\ud83e\udd53",badminton:"\ud83c\udff8",baggage_claim:"\ud83d\udec4",baguette_bread:"\ud83e\udd56",balance_scale:"\u2696\ufe0f",balloon:"\ud83c\udf88",ballot_box:"\ud83d\uddf3",ballot_box_with_check:"\u2611\ufe0f",bamboo:"\ud83c\udf8d",banana:"\ud83c\udf4c",bangbang:"\u203c\ufe0f",bank:"\ud83c\udfe6",bar_chart:"\ud83d\udcca",barber:"\ud83d\udc88",baseball:"\u26be\ufe0f",basketball:"\ud83c\udfc0",basketball_man:"\u26f9\ufe0f",basketball_woman:"\u26f9\ufe0f‍\u2640\ufe0f",bat:"\ud83e\udd87",bath:"\ud83d\udec0",bathtub:"\ud83d\udec1",battery:"\ud83d\udd0b",beach_umbrella:"\ud83c\udfd6",bear:"\ud83d\udc3b",bed:"\ud83d\udecf",bee:"\ud83d\udc1d",beer:"\ud83c\udf7a",beers:"\ud83c\udf7b",beetle:"\ud83d\udc1e",beginner:"\ud83d\udd30",bell:"\ud83d\udd14",bellhop_bell:"\ud83d\udece",bento:"\ud83c\udf71",biking_man:"\ud83d\udeb4",bike:"\ud83d\udeb2",biking_woman:"\ud83d\udeb4‍\u2640\ufe0f",bikini:"\ud83d\udc59",biohazard:"\u2623\ufe0f",bird:"\ud83d\udc26",birthday:"\ud83c\udf82",black_circle:"\u26ab\ufe0f",black_flag:"\ud83c\udff4",black_heart:"\ud83d\udda4",black_joker:"\ud83c\udccf",black_large_square:"\u2b1b\ufe0f",black_medium_small_square:"\u25fe\ufe0f",black_medium_square:"\u25fc\ufe0f",black_nib:"\u2712\ufe0f",black_small_square:"\u25aa\ufe0f",black_square_button:"\ud83d\udd32",blonde_man:"\ud83d\udc71",blonde_woman:"\ud83d\udc71‍\u2640\ufe0f",blossom:"\ud83c\udf3c",blowfish:"\ud83d\udc21",blue_book:"\ud83d\udcd8",blue_car:"\ud83d\ude99",blue_heart:"\ud83d\udc99",blush:"\ud83d\ude0a",boar:"\ud83d\udc17",boat:"\u26f5\ufe0f",bomb:"\ud83d\udca3",book:"\ud83d\udcd6",bookmark:"\ud83d\udd16",bookmark_tabs:"\ud83d\udcd1",books:"\ud83d\udcda",boom:"\ud83d\udca5",boot:"\ud83d\udc62",bouquet:"\ud83d\udc90",bowing_man:"\ud83d\ude47",bow_and_arrow:"\ud83c\udff9",bowing_woman:"\ud83d\ude47‍\u2640\ufe0f",bowling:"\ud83c\udfb3",boxing_glove:"\ud83e\udd4a",boy:"\ud83d\udc66",bread:"\ud83c\udf5e",bride_with_veil:"\ud83d\udc70",bridge_at_night:"\ud83c\udf09",briefcase:"\ud83d\udcbc",broken_heart:"\ud83d\udc94",bug:"\ud83d\udc1b",building_construction:"\ud83c\udfd7",bulb:"\ud83d\udca1",bullettrain_front:"\ud83d\ude85",bullettrain_side:"\ud83d\ude84",burrito:"\ud83c\udf2f",bus:"\ud83d\ude8c",business_suit_levitating:"\ud83d\udd74",busstop:"\ud83d\ude8f",bust_in_silhouette:"\ud83d\udc64",busts_in_silhouette:"\ud83d\udc65",butterfly:"\ud83e\udd8b",cactus:"\ud83c\udf35",cake:"\ud83c\udf70",calendar:"\ud83d\udcc6",call_me_hand:"\ud83e\udd19",calling:"\ud83d\udcf2",camel:"\ud83d\udc2b",camera:"\ud83d\udcf7",camera_flash:"\ud83d\udcf8",camping:"\ud83c\udfd5",cancer:"\u264b\ufe0f",candle:"\ud83d\udd6f",candy:"\ud83c\udf6c",canoe:"\ud83d\udef6",capital_abcd:"\ud83d\udd20",capricorn:"\u2651\ufe0f",car:"\ud83d\ude97",card_file_box:"\ud83d\uddc3",card_index:"\ud83d\udcc7",card_index_dividers:"\ud83d\uddc2",carousel_horse:"\ud83c\udfa0",carrot:"\ud83e\udd55",cat:"\ud83d\udc31",cat2:"\ud83d\udc08",cd:"\ud83d\udcbf",chains:"\u26d3",champagne:"\ud83c\udf7e",chart:"\ud83d\udcb9",chart_with_downwards_trend:"\ud83d\udcc9",chart_with_upwards_trend:"\ud83d\udcc8",checkered_flag:"\ud83c\udfc1",cheese:"\ud83e\uddc0",cherries:"\ud83c\udf52",cherry_blossom:"\ud83c\udf38",chestnut:"\ud83c\udf30",chicken:"\ud83d\udc14",children_crossing:"\ud83d\udeb8",chipmunk:"\ud83d\udc3f",chocolate_bar:"\ud83c\udf6b",christmas_tree:"\ud83c\udf84",church:"\u26ea\ufe0f",cinema:"\ud83c\udfa6",circus_tent:"\ud83c\udfaa",city_sunrise:"\ud83c\udf07",city_sunset:"\ud83c\udf06",cityscape:"\ud83c\udfd9",cl:"\ud83c\udd91",clamp:"\ud83d\udddc",clap:"\ud83d\udc4f",clapper:"\ud83c\udfac",classical_building:"\ud83c\udfdb",clinking_glasses:"\ud83e\udd42",clipboard:"\ud83d\udccb",clock1:"\ud83d\udd50",clock10:"\ud83d\udd59",clock1030:"\ud83d\udd65",clock11:"\ud83d\udd5a",clock1130:"\ud83d\udd66",clock12:"\ud83d\udd5b",clock1230:"\ud83d\udd67",clock130:"\ud83d\udd5c",clock2:"\ud83d\udd51",clock230:"\ud83d\udd5d",clock3:"\ud83d\udd52",clock330:"\ud83d\udd5e",clock4:"\ud83d\udd53",clock430:"\ud83d\udd5f",clock5:"\ud83d\udd54",clock530:"\ud83d\udd60",clock6:"\ud83d\udd55",clock630:"\ud83d\udd61",clock7:"\ud83d\udd56",clock730:"\ud83d\udd62",clock8:"\ud83d\udd57",clock830:"\ud83d\udd63",clock9:"\ud83d\udd58",clock930:"\ud83d\udd64",closed_book:"\ud83d\udcd5",closed_lock_with_key:"\ud83d\udd10",closed_umbrella:"\ud83c\udf02",cloud:"\u2601\ufe0f",cloud_with_lightning:"\ud83c\udf29",cloud_with_lightning_and_rain:"\u26c8",cloud_with_rain:"\ud83c\udf27",cloud_with_snow:"\ud83c\udf28",clown_face:"\ud83e\udd21",clubs:"\u2663\ufe0f",cocktail:"\ud83c\udf78",coffee:"\u2615\ufe0f",coffin:"\u26b0\ufe0f",cold_sweat:"\ud83d\ude30",comet:"\u2604\ufe0f",computer:"\ud83d\udcbb",computer_mouse:"\ud83d\uddb1",confetti_ball:"\ud83c\udf8a",confounded:"\ud83d\ude16",confused:"\ud83d\ude15",congratulations:"\u3297\ufe0f",construction:"\ud83d\udea7",construction_worker_man:"\ud83d\udc77",construction_worker_woman:"\ud83d\udc77‍\u2640\ufe0f",control_knobs:"\ud83c\udf9b",convenience_store:"\ud83c\udfea",cookie:"\ud83c\udf6a",cool:"\ud83c\udd92",policeman:"\ud83d\udc6e",copyright:"\xa9\ufe0f",corn:"\ud83c\udf3d",couch_and_lamp:"\ud83d\udecb",couple:"\ud83d\udc6b",couple_with_heart_woman_man:"\ud83d\udc91",couple_with_heart_man_man:"\ud83d\udc68‍\u2764\ufe0f‍\ud83d\udc68",couple_with_heart_woman_woman:"\ud83d\udc69‍\u2764\ufe0f‍\ud83d\udc69",couplekiss_man_man:"\ud83d\udc68‍\u2764\ufe0f‍\ud83d\udc8b‍\ud83d\udc68",couplekiss_man_woman:"\ud83d\udc8f",couplekiss_woman_woman:"\ud83d\udc69‍\u2764\ufe0f‍\ud83d\udc8b‍\ud83d\udc69",cow:"\ud83d\udc2e",cow2:"\ud83d\udc04",cowboy_hat_face:"\ud83e\udd20",crab:"\ud83e\udd80",crayon:"\ud83d\udd8d",credit_card:"\ud83d\udcb3",crescent_moon:"\ud83c\udf19",cricket:"\ud83c\udfcf",crocodile:"\ud83d\udc0a",croissant:"\ud83e\udd50",crossed_fingers:"\ud83e\udd1e",crossed_flags:"\ud83c\udf8c",crossed_swords:"\u2694\ufe0f",crown:"\ud83d\udc51",cry:"\ud83d\ude22",crying_cat_face:"\ud83d\ude3f",crystal_ball:"\ud83d\udd2e",cucumber:"\ud83e\udd52",cupid:"\ud83d\udc98",curly_loop:"\u27b0",currency_exchange:"\ud83d\udcb1",curry:"\ud83c\udf5b",custard:"\ud83c\udf6e",customs:"\ud83d\udec3",cyclone:"\ud83c\udf00",dagger:"\ud83d\udde1",dancer:"\ud83d\udc83",dancing_women:"\ud83d\udc6f",dancing_men:"\ud83d\udc6f‍\u2642\ufe0f",dango:"\ud83c\udf61",dark_sunglasses:"\ud83d\udd76",dart:"\ud83c\udfaf",dash:"\ud83d\udca8",date:"\ud83d\udcc5",deciduous_tree:"\ud83c\udf33",deer:"\ud83e\udd8c",department_store:"\ud83c\udfec",derelict_house:"\ud83c\udfda",desert:"\ud83c\udfdc",desert_island:"\ud83c\udfdd",desktop_computer:"\ud83d\udda5",male_detective:"\ud83d\udd75\ufe0f",diamond_shape_with_a_dot_inside:"\ud83d\udca0",diamonds:"\u2666\ufe0f",disappointed:"\ud83d\ude1e",disappointed_relieved:"\ud83d\ude25",dizzy:"\ud83d\udcab",dizzy_face:"\ud83d\ude35",do_not_litter:"\ud83d\udeaf",dog:"\ud83d\udc36",dog2:"\ud83d\udc15",dollar:"\ud83d\udcb5",dolls:"\ud83c\udf8e",dolphin:"\ud83d\udc2c",door:"\ud83d\udeaa",doughnut:"\ud83c\udf69",dove:"\ud83d\udd4a",dragon:"\ud83d\udc09",dragon_face:"\ud83d\udc32",dress:"\ud83d\udc57",dromedary_camel:"\ud83d\udc2a",drooling_face:"\ud83e\udd24",droplet:"\ud83d\udca7",drum:"\ud83e\udd41",duck:"\ud83e\udd86",dvd:"\ud83d\udcc0",'e-mail':"\ud83d\udce7",eagle:"\ud83e\udd85",ear:"\ud83d\udc42",ear_of_rice:"\ud83c\udf3e",earth_africa:"\ud83c\udf0d",earth_americas:"\ud83c\udf0e",earth_asia:"\ud83c\udf0f",egg:"\ud83e\udd5a",eggplant:"\ud83c\udf46",eight_pointed_black_star:"\u2734\ufe0f",eight_spoked_asterisk:"\u2733\ufe0f",electric_plug:"\ud83d\udd0c",elephant:"\ud83d\udc18",email:"\u2709\ufe0f",end:"\ud83d\udd1a",envelope_with_arrow:"\ud83d\udce9",euro:"\ud83d\udcb6",european_castle:"\ud83c\udff0",european_post_office:"\ud83c\udfe4",evergreen_tree:"\ud83c\udf32",exclamation:"\u2757\ufe0f",expressionless:"\ud83d\ude11",eye:"\ud83d\udc41",eye_speech_bubble:"\ud83d\udc41‍\ud83d\udde8",eyeglasses:"\ud83d\udc53",eyes:"\ud83d\udc40",face_with_head_bandage:"\ud83e\udd15",face_with_thermometer:"\ud83e\udd12",fist_oncoming:"\ud83d\udc4a",factory:"\ud83c\udfed",fallen_leaf:"\ud83c\udf42",family_man_woman_boy:"\ud83d\udc6a",family_man_boy:"\ud83d\udc68‍\ud83d\udc66",family_man_boy_boy:"\ud83d\udc68‍\ud83d\udc66‍\ud83d\udc66",family_man_girl:"\ud83d\udc68‍\ud83d\udc67",family_man_girl_boy:"\ud83d\udc68‍\ud83d\udc67‍\ud83d\udc66",family_man_girl_girl:"\ud83d\udc68‍\ud83d\udc67‍\ud83d\udc67",family_man_man_boy:"\ud83d\udc68‍\ud83d\udc68‍\ud83d\udc66",family_man_man_boy_boy:"\ud83d\udc68‍\ud83d\udc68‍\ud83d\udc66‍\ud83d\udc66",family_man_man_girl:"\ud83d\udc68‍\ud83d\udc68‍\ud83d\udc67",family_man_man_girl_boy:"\ud83d\udc68‍\ud83d\udc68‍\ud83d\udc67‍\ud83d\udc66",family_man_man_girl_girl:"\ud83d\udc68‍\ud83d\udc68‍\ud83d\udc67‍\ud83d\udc67",family_man_woman_boy_boy:"\ud83d\udc68‍\ud83d\udc69‍\ud83d\udc66‍\ud83d\udc66",family_man_woman_girl:"\ud83d\udc68‍\ud83d\udc69‍\ud83d\udc67",family_man_woman_girl_boy:"\ud83d\udc68‍\ud83d\udc69‍\ud83d\udc67‍\ud83d\udc66",family_man_woman_girl_girl:"\ud83d\udc68‍\ud83d\udc69‍\ud83d\udc67‍\ud83d\udc67",family_woman_boy:"\ud83d\udc69‍\ud83d\udc66",family_woman_boy_boy:"\ud83d\udc69‍\ud83d\udc66‍\ud83d\udc66",family_woman_girl:"\ud83d\udc69‍\ud83d\udc67",family_woman_girl_boy:"\ud83d\udc69‍\ud83d\udc67‍\ud83d\udc66",family_woman_girl_girl:"\ud83d\udc69‍\ud83d\udc67‍\ud83d\udc67",family_woman_woman_boy:"\ud83d\udc69‍\ud83d\udc69‍\ud83d\udc66",family_woman_woman_boy_boy:"\ud83d\udc69‍\ud83d\udc69‍\ud83d\udc66‍\ud83d\udc66",family_woman_woman_girl:"\ud83d\udc69‍\ud83d\udc69‍\ud83d\udc67",family_woman_woman_girl_boy:"\ud83d\udc69‍\ud83d\udc69‍\ud83d\udc67‍\ud83d\udc66",family_woman_woman_girl_girl:"\ud83d\udc69‍\ud83d\udc69‍\ud83d\udc67‍\ud83d\udc67",fast_forward:"\u23e9",fax:"\ud83d\udce0",fearful:"\ud83d\ude28",feet:"\ud83d\udc3e",female_detective:"\ud83d\udd75\ufe0f‍\u2640\ufe0f",ferris_wheel:"\ud83c\udfa1",ferry:"\u26f4",field_hockey:"\ud83c\udfd1",file_cabinet:"\ud83d\uddc4",file_folder:"\ud83d\udcc1",film_projector:"\ud83d\udcfd",film_strip:"\ud83c\udf9e",fire:"\ud83d\udd25",fire_engine:"\ud83d\ude92",fireworks:"\ud83c\udf86",first_quarter_moon:"\ud83c\udf13",first_quarter_moon_with_face:"\ud83c\udf1b",fish:"\ud83d\udc1f",fish_cake:"\ud83c\udf65",fishing_pole_and_fish:"\ud83c\udfa3",fist_raised:"\u270a",fist_left:"\ud83e\udd1b",fist_right:"\ud83e\udd1c",flags:"\ud83c\udf8f",flashlight:"\ud83d\udd26",fleur_de_lis:"\u269c\ufe0f",flight_arrival:"\ud83d\udeec",flight_departure:"\ud83d\udeeb",floppy_disk:"\ud83d\udcbe",flower_playing_cards:"\ud83c\udfb4",flushed:"\ud83d\ude33",fog:"\ud83c\udf2b",foggy:"\ud83c\udf01",football:"\ud83c\udfc8",footprints:"\ud83d\udc63",fork_and_knife:"\ud83c\udf74",fountain:"\u26f2\ufe0f",fountain_pen:"\ud83d\udd8b",four_leaf_clover:"\ud83c\udf40",fox_face:"\ud83e\udd8a",framed_picture:"\ud83d\uddbc",free:"\ud83c\udd93",fried_egg:"\ud83c\udf73",fried_shrimp:"\ud83c\udf64",fries:"\ud83c\udf5f",frog:"\ud83d\udc38",frowning:"\ud83d\ude26",frowning_face:"\u2639\ufe0f",frowning_man:"\ud83d\ude4d‍\u2642\ufe0f",frowning_woman:"\ud83d\ude4d",middle_finger:"\ud83d\udd95",fuelpump:"\u26fd\ufe0f",full_moon:"\ud83c\udf15",full_moon_with_face:"\ud83c\udf1d",funeral_urn:"\u26b1\ufe0f",game_die:"\ud83c\udfb2",gear:"\u2699\ufe0f",gem:"\ud83d\udc8e",gemini:"\u264a\ufe0f",ghost:"\ud83d\udc7b",gift:"\ud83c\udf81",gift_heart:"\ud83d\udc9d",girl:"\ud83d\udc67",globe_with_meridians:"\ud83c\udf10",goal_net:"\ud83e\udd45",goat:"\ud83d\udc10",golf:"\u26f3\ufe0f",golfing_man:"\ud83c\udfcc\ufe0f",golfing_woman:"\ud83c\udfcc\ufe0f‍\u2640\ufe0f",gorilla:"\ud83e\udd8d",grapes:"\ud83c\udf47",green_apple:"\ud83c\udf4f",green_book:"\ud83d\udcd7",green_heart:"\ud83d\udc9a",green_salad:"\ud83e\udd57",grey_exclamation:"\u2755",grey_question:"\u2754",grimacing:"\ud83d\ude2c",grin:"\ud83d\ude01",grinning:"\ud83d\ude00",guardsman:"\ud83d\udc82",guardswoman:"\ud83d\udc82‍\u2640\ufe0f",guitar:"\ud83c\udfb8",gun:"\ud83d\udd2b",haircut_woman:"\ud83d\udc87",haircut_man:"\ud83d\udc87‍\u2642\ufe0f",hamburger:"\ud83c\udf54",hammer:"\ud83d\udd28",hammer_and_pick:"\u2692",hammer_and_wrench:"\ud83d\udee0",hamster:"\ud83d\udc39",hand:"\u270b",handbag:"\ud83d\udc5c",handshake:"\ud83e\udd1d",hankey:"\ud83d\udca9",hatched_chick:"\ud83d\udc25",hatching_chick:"\ud83d\udc23",headphones:"\ud83c\udfa7",hear_no_evil:"\ud83d\ude49",heart:"\u2764\ufe0f",heart_decoration:"\ud83d\udc9f",heart_eyes:"\ud83d\ude0d",heart_eyes_cat:"\ud83d\ude3b",heartbeat:"\ud83d\udc93",heartpulse:"\ud83d\udc97",hearts:"\u2665\ufe0f",heavy_check_mark:"\u2714\ufe0f",heavy_division_sign:"\u2797",heavy_dollar_sign:"\ud83d\udcb2",heavy_heart_exclamation:"\u2763\ufe0f",heavy_minus_sign:"\u2796",heavy_multiplication_x:"\u2716\ufe0f",heavy_plus_sign:"\u2795",helicopter:"\ud83d\ude81",herb:"\ud83c\udf3f",hibiscus:"\ud83c\udf3a",high_brightness:"\ud83d\udd06",high_heel:"\ud83d\udc60",hocho:"\ud83d\udd2a",hole:"\ud83d\udd73",honey_pot:"\ud83c\udf6f",horse:"\ud83d\udc34",horse_racing:"\ud83c\udfc7",hospital:"\ud83c\udfe5",hot_pepper:"\ud83c\udf36",hotdog:"\ud83c\udf2d",hotel:"\ud83c\udfe8",hotsprings:"\u2668\ufe0f",hourglass:"\u231b\ufe0f",hourglass_flowing_sand:"\u23f3",house:"\ud83c\udfe0",house_with_garden:"\ud83c\udfe1",houses:"\ud83c\udfd8",hugs:"\ud83e\udd17",hushed:"\ud83d\ude2f",ice_cream:"\ud83c\udf68",ice_hockey:"\ud83c\udfd2",ice_skate:"\u26f8",icecream:"\ud83c\udf66",id:"\ud83c\udd94",ideograph_advantage:"\ud83c\ude50",imp:"\ud83d\udc7f",inbox_tray:"\ud83d\udce5",incoming_envelope:"\ud83d\udce8",tipping_hand_woman:"\ud83d\udc81",information_source:"\u2139\ufe0f",innocent:"\ud83d\ude07",interrobang:"\u2049\ufe0f",iphone:"\ud83d\udcf1",izakaya_lantern:"\ud83c\udfee",jack_o_lantern:"\ud83c\udf83",japan:"\ud83d\uddfe",japanese_castle:"\ud83c\udfef",japanese_goblin:"\ud83d\udc7a",japanese_ogre:"\ud83d\udc79",jeans:"\ud83d\udc56",joy:"\ud83d\ude02",joy_cat:"\ud83d\ude39",joystick:"\ud83d\udd79",kaaba:"\ud83d\udd4b",key:"\ud83d\udd11",keyboard:"\u2328\ufe0f",keycap_ten:"\ud83d\udd1f",kick_scooter:"\ud83d\udef4",kimono:"\ud83d\udc58",kiss:"\ud83d\udc8b",kissing:"\ud83d\ude17",kissing_cat:"\ud83d\ude3d",kissing_closed_eyes:"\ud83d\ude1a",kissing_heart:"\ud83d\ude18",kissing_smiling_eyes:"\ud83d\ude19",kiwi_fruit:"\ud83e\udd5d",koala:"\ud83d\udc28",koko:"\ud83c\ude01",label:"\ud83c\udff7",large_blue_circle:"\ud83d\udd35",large_blue_diamond:"\ud83d\udd37",large_orange_diamond:"\ud83d\udd36",last_quarter_moon:"\ud83c\udf17",last_quarter_moon_with_face:"\ud83c\udf1c",latin_cross:"\u271d\ufe0f",laughing:"\ud83d\ude06",leaves:"\ud83c\udf43",ledger:"\ud83d\udcd2",left_luggage:"\ud83d\udec5",left_right_arrow:"\u2194\ufe0f",leftwards_arrow_with_hook:"\u21a9\ufe0f",lemon:"\ud83c\udf4b",leo:"\u264c\ufe0f",leopard:"\ud83d\udc06",level_slider:"\ud83c\udf9a",libra:"\u264e\ufe0f",light_rail:"\ud83d\ude88",link:"\ud83d\udd17",lion:"\ud83e\udd81",lips:"\ud83d\udc44",lipstick:"\ud83d\udc84",lizard:"\ud83e\udd8e",lock:"\ud83d\udd12",lock_with_ink_pen:"\ud83d\udd0f",lollipop:"\ud83c\udf6d",loop:"\u27bf",loud_sound:"\ud83d\udd0a",loudspeaker:"\ud83d\udce2",love_hotel:"\ud83c\udfe9",love_letter:"\ud83d\udc8c",low_brightness:"\ud83d\udd05",lying_face:"\ud83e\udd25",m:"\u24c2\ufe0f",mag:"\ud83d\udd0d",mag_right:"\ud83d\udd0e",mahjong:"\ud83c\udc04\ufe0f",mailbox:"\ud83d\udceb",mailbox_closed:"\ud83d\udcea",mailbox_with_mail:"\ud83d\udcec",mailbox_with_no_mail:"\ud83d\udced",man:"\ud83d\udc68",man_artist:"\ud83d\udc68‍\ud83c\udfa8",man_astronaut:"\ud83d\udc68‍\ud83d\ude80",man_cartwheeling:"\ud83e\udd38‍\u2642\ufe0f",man_cook:"\ud83d\udc68‍\ud83c\udf73",man_dancing:"\ud83d\udd7a",man_facepalming:"\ud83e\udd26‍\u2642\ufe0f",man_factory_worker:"\ud83d\udc68‍\ud83c\udfed",man_farmer:"\ud83d\udc68‍\ud83c\udf3e",man_firefighter:"\ud83d\udc68‍\ud83d\ude92",man_health_worker:"\ud83d\udc68‍\u2695\ufe0f",man_in_tuxedo:"\ud83e\udd35",man_judge:"\ud83d\udc68‍\u2696\ufe0f",man_juggling:"\ud83e\udd39‍\u2642\ufe0f",man_mechanic:"\ud83d\udc68‍\ud83d\udd27",man_office_worker:"\ud83d\udc68‍\ud83d\udcbc",man_pilot:"\ud83d\udc68‍\u2708\ufe0f",man_playing_handball:"\ud83e\udd3e‍\u2642\ufe0f",man_playing_water_polo:"\ud83e\udd3d‍\u2642\ufe0f",man_scientist:"\ud83d\udc68‍\ud83d\udd2c",man_shrugging:"\ud83e\udd37‍\u2642\ufe0f",man_singer:"\ud83d\udc68‍\ud83c\udfa4",man_student:"\ud83d\udc68‍\ud83c\udf93",man_teacher:"\ud83d\udc68‍\ud83c\udfeb",man_technologist:"\ud83d\udc68‍\ud83d\udcbb",man_with_gua_pi_mao:"\ud83d\udc72",man_with_turban:"\ud83d\udc73",tangerine:"\ud83c\udf4a",mans_shoe:"\ud83d\udc5e",mantelpiece_clock:"\ud83d\udd70",maple_leaf:"\ud83c\udf41",martial_arts_uniform:"\ud83e\udd4b",mask:"\ud83d\ude37",massage_woman:"\ud83d\udc86",massage_man:"\ud83d\udc86‍\u2642\ufe0f",meat_on_bone:"\ud83c\udf56",medal_military:"\ud83c\udf96",medal_sports:"\ud83c\udfc5",mega:"\ud83d\udce3",melon:"\ud83c\udf48",memo:"\ud83d\udcdd",men_wrestling:"\ud83e\udd3c‍\u2642\ufe0f",menorah:"\ud83d\udd4e",mens:"\ud83d\udeb9",metal:"\ud83e\udd18",metro:"\ud83d\ude87",microphone:"\ud83c\udfa4",microscope:"\ud83d\udd2c",milk_glass:"\ud83e\udd5b",milky_way:"\ud83c\udf0c",minibus:"\ud83d\ude90",minidisc:"\ud83d\udcbd",mobile_phone_off:"\ud83d\udcf4",money_mouth_face:"\ud83e\udd11",money_with_wings:"\ud83d\udcb8",moneybag:"\ud83d\udcb0",monkey:"\ud83d\udc12",monkey_face:"\ud83d\udc35",monorail:"\ud83d\ude9d",moon:"\ud83c\udf14",mortar_board:"\ud83c\udf93",mosque:"\ud83d\udd4c",motor_boat:"\ud83d\udee5",motor_scooter:"\ud83d\udef5",motorcycle:"\ud83c\udfcd",motorway:"\ud83d\udee3",mount_fuji:"\ud83d\uddfb",mountain:"\u26f0",mountain_biking_man:"\ud83d\udeb5",mountain_biking_woman:"\ud83d\udeb5‍\u2640\ufe0f",mountain_cableway:"\ud83d\udea0",mountain_railway:"\ud83d\ude9e",mountain_snow:"\ud83c\udfd4",mouse:"\ud83d\udc2d",mouse2:"\ud83d\udc01",movie_camera:"\ud83c\udfa5",moyai:"\ud83d\uddff",mrs_claus:"\ud83e\udd36",muscle:"\ud83d\udcaa",mushroom:"\ud83c\udf44",musical_keyboard:"\ud83c\udfb9",musical_note:"\ud83c\udfb5",musical_score:"\ud83c\udfbc",mute:"\ud83d\udd07",nail_care:"\ud83d\udc85",name_badge:"\ud83d\udcdb",national_park:"\ud83c\udfde",nauseated_face:"\ud83e\udd22",necktie:"\ud83d\udc54",negative_squared_cross_mark:"\u274e",nerd_face:"\ud83e\udd13",neutral_face:"\ud83d\ude10",new:"\ud83c\udd95",new_moon:"\ud83c\udf11",new_moon_with_face:"\ud83c\udf1a",newspaper:"\ud83d\udcf0",newspaper_roll:"\ud83d\uddde",next_track_button:"\u23ed",ng:"\ud83c\udd96",no_good_man:"\ud83d\ude45‍\u2642\ufe0f",no_good_woman:"\ud83d\ude45",night_with_stars:"\ud83c\udf03",no_bell:"\ud83d\udd15",no_bicycles:"\ud83d\udeb3",no_entry:"\u26d4\ufe0f",no_entry_sign:"\ud83d\udeab",no_mobile_phones:"\ud83d\udcf5",no_mouth:"\ud83d\ude36",no_pedestrians:"\ud83d\udeb7",no_smoking:"\ud83d\udead",'non-potable_water':"\ud83d\udeb1",nose:"\ud83d\udc43",notebook:"\ud83d\udcd3",notebook_with_decorative_cover:"\ud83d\udcd4",notes:"\ud83c\udfb6",nut_and_bolt:"\ud83d\udd29",o:"\u2b55\ufe0f",o2:"\ud83c\udd7e\ufe0f",ocean:"\ud83c\udf0a",octopus:"\ud83d\udc19",oden:"\ud83c\udf62",office:"\ud83c\udfe2",oil_drum:"\ud83d\udee2",ok:"\ud83c\udd97",ok_hand:"\ud83d\udc4c",ok_man:"\ud83d\ude46‍\u2642\ufe0f",ok_woman:"\ud83d\ude46",old_key:"\ud83d\udddd",older_man:"\ud83d\udc74",older_woman:"\ud83d\udc75",om:"\ud83d\udd49",on:"\ud83d\udd1b",oncoming_automobile:"\ud83d\ude98",oncoming_bus:"\ud83d\ude8d",oncoming_police_car:"\ud83d\ude94",oncoming_taxi:"\ud83d\ude96",open_file_folder:"\ud83d\udcc2",open_hands:"\ud83d\udc50",open_mouth:"\ud83d\ude2e",open_umbrella:"\u2602\ufe0f",ophiuchus:"\u26ce",orange_book:"\ud83d\udcd9",orthodox_cross:"\u2626\ufe0f",outbox_tray:"\ud83d\udce4",owl:"\ud83e\udd89",ox:"\ud83d\udc02",package:"\ud83d\udce6",page_facing_up:"\ud83d\udcc4",page_with_curl:"\ud83d\udcc3",pager:"\ud83d\udcdf",paintbrush:"\ud83d\udd8c",palm_tree:"\ud83c\udf34",pancakes:"\ud83e\udd5e",panda_face:"\ud83d\udc3c",paperclip:"\ud83d\udcce",paperclips:"\ud83d\udd87",parasol_on_ground:"\u26f1",parking:"\ud83c\udd7f\ufe0f",part_alternation_mark:"\u303d\ufe0f",partly_sunny:"\u26c5\ufe0f",passenger_ship:"\ud83d\udef3",passport_control:"\ud83d\udec2",pause_button:"\u23f8",peace_symbol:"\u262e\ufe0f",peach:"\ud83c\udf51",peanuts:"\ud83e\udd5c",pear:"\ud83c\udf50",pen:"\ud83d\udd8a",pencil2:"\u270f\ufe0f",penguin:"\ud83d\udc27",pensive:"\ud83d\ude14",performing_arts:"\ud83c\udfad",persevere:"\ud83d\ude23",person_fencing:"\ud83e\udd3a",pouting_woman:"\ud83d\ude4e",phone:"\u260e\ufe0f",pick:"\u26cf",pig:"\ud83d\udc37",pig2:"\ud83d\udc16",pig_nose:"\ud83d\udc3d",pill:"\ud83d\udc8a",pineapple:"\ud83c\udf4d",ping_pong:"\ud83c\udfd3",pisces:"\u2653\ufe0f",pizza:"\ud83c\udf55",place_of_worship:"\ud83d\uded0",plate_with_cutlery:"\ud83c\udf7d",play_or_pause_button:"\u23ef",point_down:"\ud83d\udc47",point_left:"\ud83d\udc48",point_right:"\ud83d\udc49",point_up:"\u261d\ufe0f",point_up_2:"\ud83d\udc46",police_car:"\ud83d\ude93",policewoman:"\ud83d\udc6e‍\u2640\ufe0f",poodle:"\ud83d\udc29",popcorn:"\ud83c\udf7f",post_office:"\ud83c\udfe3",postal_horn:"\ud83d\udcef",postbox:"\ud83d\udcee",potable_water:"\ud83d\udeb0",potato:"\ud83e\udd54",pouch:"\ud83d\udc5d",poultry_leg:"\ud83c\udf57",pound:"\ud83d\udcb7",rage:"\ud83d\ude21",pouting_cat:"\ud83d\ude3e",pouting_man:"\ud83d\ude4e‍\u2642\ufe0f",pray:"\ud83d\ude4f",prayer_beads:"\ud83d\udcff",pregnant_woman:"\ud83e\udd30",previous_track_button:"\u23ee",prince:"\ud83e\udd34",princess:"\ud83d\udc78",printer:"\ud83d\udda8",purple_heart:"\ud83d\udc9c",purse:"\ud83d\udc5b",pushpin:"\ud83d\udccc",put_litter_in_its_place:"\ud83d\udeae",question:"\u2753",rabbit:"\ud83d\udc30",rabbit2:"\ud83d\udc07",racehorse:"\ud83d\udc0e",racing_car:"\ud83c\udfce",radio:"\ud83d\udcfb",radio_button:"\ud83d\udd18",radioactive:"\u2622\ufe0f",railway_car:"\ud83d\ude83",railway_track:"\ud83d\udee4",rainbow:"\ud83c\udf08",rainbow_flag:"\ud83c\udff3\ufe0f‍\ud83c\udf08",raised_back_of_hand:"\ud83e\udd1a",raised_hand_with_fingers_splayed:"\ud83d\udd90",raised_hands:"\ud83d\ude4c",raising_hand_woman:"\ud83d\ude4b",raising_hand_man:"\ud83d\ude4b‍\u2642\ufe0f",ram:"\ud83d\udc0f",ramen:"\ud83c\udf5c",rat:"\ud83d\udc00",record_button:"\u23fa",recycle:"\u267b\ufe0f",red_circle:"\ud83d\udd34",registered:"\xae\ufe0f",relaxed:"\u263a\ufe0f",relieved:"\ud83d\ude0c",reminder_ribbon:"\ud83c\udf97",repeat:"\ud83d\udd01",repeat_one:"\ud83d\udd02",rescue_worker_helmet:"\u26d1",restroom:"\ud83d\udebb",revolving_hearts:"\ud83d\udc9e",rewind:"\u23ea",rhinoceros:"\ud83e\udd8f",ribbon:"\ud83c\udf80",rice:"\ud83c\udf5a",rice_ball:"\ud83c\udf59",rice_cracker:"\ud83c\udf58",rice_scene:"\ud83c\udf91",right_anger_bubble:"\ud83d\uddef",ring:"\ud83d\udc8d",robot:"\ud83e\udd16",rocket:"\ud83d\ude80",rofl:"\ud83e\udd23",roll_eyes:"\ud83d\ude44",roller_coaster:"\ud83c\udfa2",rooster:"\ud83d\udc13",rose:"\ud83c\udf39",rosette:"\ud83c\udff5",rotating_light:"\ud83d\udea8",round_pushpin:"\ud83d\udccd",rowing_man:"\ud83d\udea3",rowing_woman:"\ud83d\udea3‍\u2640\ufe0f",rugby_football:"\ud83c\udfc9",running_man:"\ud83c\udfc3",running_shirt_with_sash:"\ud83c\udfbd",running_woman:"\ud83c\udfc3‍\u2640\ufe0f",sa:"\ud83c\ude02\ufe0f",sagittarius:"\u2650\ufe0f",sake:"\ud83c\udf76",sandal:"\ud83d\udc61",santa:"\ud83c\udf85",satellite:"\ud83d\udce1",saxophone:"\ud83c\udfb7",school:"\ud83c\udfeb",school_satchel:"\ud83c\udf92",scissors:"\u2702\ufe0f",scorpion:"\ud83e\udd82",scorpius:"\u264f\ufe0f",scream:"\ud83d\ude31",scream_cat:"\ud83d\ude40",scroll:"\ud83d\udcdc",seat:"\ud83d\udcba",secret:"\u3299\ufe0f",see_no_evil:"\ud83d\ude48",seedling:"\ud83c\udf31",selfie:"\ud83e\udd33",shallow_pan_of_food:"\ud83e\udd58",shamrock:"\u2618\ufe0f",shark:"\ud83e\udd88",shaved_ice:"\ud83c\udf67",sheep:"\ud83d\udc11",shell:"\ud83d\udc1a",shield:"\ud83d\udee1",shinto_shrine:"\u26e9",ship:"\ud83d\udea2",shirt:"\ud83d\udc55",shopping:"\ud83d\udecd",shopping_cart:"\ud83d\uded2",shower:"\ud83d\udebf",shrimp:"\ud83e\udd90",signal_strength:"\ud83d\udcf6",six_pointed_star:"\ud83d\udd2f",ski:"\ud83c\udfbf",skier:"\u26f7",skull:"\ud83d\udc80",skull_and_crossbones:"\u2620\ufe0f",sleeping:"\ud83d\ude34",sleeping_bed:"\ud83d\udecc",sleepy:"\ud83d\ude2a",slightly_frowning_face:"\ud83d\ude41",slightly_smiling_face:"\ud83d\ude42",slot_machine:"\ud83c\udfb0",small_airplane:"\ud83d\udee9",small_blue_diamond:"\ud83d\udd39",small_orange_diamond:"\ud83d\udd38",small_red_triangle:"\ud83d\udd3a",small_red_triangle_down:"\ud83d\udd3b",smile:"\ud83d\ude04",smile_cat:"\ud83d\ude38",smiley:"\ud83d\ude03",smiley_cat:"\ud83d\ude3a",smiling_imp:"\ud83d\ude08",smirk:"\ud83d\ude0f",smirk_cat:"\ud83d\ude3c",smoking:"\ud83d\udeac",snail:"\ud83d\udc0c",snake:"\ud83d\udc0d",sneezing_face:"\ud83e\udd27",snowboarder:"\ud83c\udfc2",snowflake:"\u2744\ufe0f",snowman:"\u26c4\ufe0f",snowman_with_snow:"\u2603\ufe0f",sob:"\ud83d\ude2d",soccer:"\u26bd\ufe0f",soon:"\ud83d\udd1c",sos:"\ud83c\udd98",sound:"\ud83d\udd09",space_invader:"\ud83d\udc7e",spades:"\u2660\ufe0f",spaghetti:"\ud83c\udf5d",sparkle:"\u2747\ufe0f",sparkler:"\ud83c\udf87",sparkles:"\u2728",sparkling_heart:"\ud83d\udc96",speak_no_evil:"\ud83d\ude4a",speaker:"\ud83d\udd08",speaking_head:"\ud83d\udde3",speech_balloon:"\ud83d\udcac",speedboat:"\ud83d\udea4",spider:"\ud83d\udd77",spider_web:"\ud83d\udd78",spiral_calendar:"\ud83d\uddd3",spiral_notepad:"\ud83d\uddd2",spoon:"\ud83e\udd44",squid:"\ud83e\udd91",stadium:"\ud83c\udfdf",star:"\u2b50\ufe0f",star2:"\ud83c\udf1f",star_and_crescent:"\u262a\ufe0f",star_of_david:"\u2721\ufe0f",stars:"\ud83c\udf20",station:"\ud83d\ude89",statue_of_liberty:"\ud83d\uddfd",steam_locomotive:"\ud83d\ude82",stew:"\ud83c\udf72",stop_button:"\u23f9",stop_sign:"\ud83d\uded1",stopwatch:"\u23f1",straight_ruler:"\ud83d\udccf",strawberry:"\ud83c\udf53",stuck_out_tongue:"\ud83d\ude1b",stuck_out_tongue_closed_eyes:"\ud83d\ude1d",stuck_out_tongue_winking_eye:"\ud83d\ude1c",studio_microphone:"\ud83c\udf99",stuffed_flatbread:"\ud83e\udd59",sun_behind_large_cloud:"\ud83c\udf25",sun_behind_rain_cloud:"\ud83c\udf26",sun_behind_small_cloud:"\ud83c\udf24",sun_with_face:"\ud83c\udf1e",sunflower:"\ud83c\udf3b",sunglasses:"\ud83d\ude0e",sunny:"\u2600\ufe0f",sunrise:"\ud83c\udf05",sunrise_over_mountains:"\ud83c\udf04",surfing_man:"\ud83c\udfc4",surfing_woman:"\ud83c\udfc4‍\u2640\ufe0f",sushi:"\ud83c\udf63",suspension_railway:"\ud83d\ude9f",sweat:"\ud83d\ude13",sweat_drops:"\ud83d\udca6",sweat_smile:"\ud83d\ude05",sweet_potato:"\ud83c\udf60",swimming_man:"\ud83c\udfca",swimming_woman:"\ud83c\udfca‍\u2640\ufe0f",symbols:"\ud83d\udd23",synagogue:"\ud83d\udd4d",syringe:"\ud83d\udc89",taco:"\ud83c\udf2e",tada:"\ud83c\udf89",tanabata_tree:"\ud83c\udf8b",taurus:"\u2649\ufe0f",taxi:"\ud83d\ude95",tea:"\ud83c\udf75",telephone_receiver:"\ud83d\udcde",telescope:"\ud83d\udd2d",tennis:"\ud83c\udfbe",tent:"\u26fa\ufe0f",thermometer:"\ud83c\udf21",thinking:"\ud83e\udd14",thought_balloon:"\ud83d\udcad",ticket:"\ud83c\udfab",tickets:"\ud83c\udf9f",tiger:"\ud83d\udc2f",tiger2:"\ud83d\udc05",timer_clock:"\u23f2",tipping_hand_man:"\ud83d\udc81‍\u2642\ufe0f",tired_face:"\ud83d\ude2b",tm:"\u2122\ufe0f",toilet:"\ud83d\udebd",tokyo_tower:"\ud83d\uddfc",tomato:"\ud83c\udf45",tongue:"\ud83d\udc45",top:"\ud83d\udd1d",tophat:"\ud83c\udfa9",tornado:"\ud83c\udf2a",trackball:"\ud83d\uddb2",tractor:"\ud83d\ude9c",traffic_light:"\ud83d\udea5",train:"\ud83d\ude8b",train2:"\ud83d\ude86",tram:"\ud83d\ude8a",triangular_flag_on_post:"\ud83d\udea9",triangular_ruler:"\ud83d\udcd0",trident:"\ud83d\udd31",triumph:"\ud83d\ude24",trolleybus:"\ud83d\ude8e",trophy:"\ud83c\udfc6",tropical_drink:"\ud83c\udf79",tropical_fish:"\ud83d\udc20",truck:"\ud83d\ude9a",trumpet:"\ud83c\udfba",tulip:"\ud83c\udf37",tumbler_glass:"\ud83e\udd43",turkey:"\ud83e\udd83",turtle:"\ud83d\udc22",tv:"\ud83d\udcfa",twisted_rightwards_arrows:"\ud83d\udd00",two_hearts:"\ud83d\udc95",two_men_holding_hands:"\ud83d\udc6c",two_women_holding_hands:"\ud83d\udc6d",u5272:"\ud83c\ude39",u5408:"\ud83c\ude34",u55b6:"\ud83c\ude3a",u6307:"\ud83c\ude2f\ufe0f",u6708:"\ud83c\ude37\ufe0f",u6709:"\ud83c\ude36",u6e80:"\ud83c\ude35",u7121:"\ud83c\ude1a\ufe0f",u7533:"\ud83c\ude38",u7981:"\ud83c\ude32",u7a7a:"\ud83c\ude33",umbrella:"\u2614\ufe0f",unamused:"\ud83d\ude12",underage:"\ud83d\udd1e",unicorn:"\ud83e\udd84",unlock:"\ud83d\udd13",up:"\ud83c\udd99",upside_down_face:"\ud83d\ude43",v:"\u270c\ufe0f",vertical_traffic_light:"\ud83d\udea6",vhs:"\ud83d\udcfc",vibration_mode:"\ud83d\udcf3",video_camera:"\ud83d\udcf9",video_game:"\ud83c\udfae",violin:"\ud83c\udfbb",virgo:"\u264d\ufe0f",volcano:"\ud83c\udf0b",volleyball:"\ud83c\udfd0",vs:"\ud83c\udd9a",vulcan_salute:"\ud83d\udd96",walking_man:"\ud83d\udeb6",walking_woman:"\ud83d\udeb6‍\u2640\ufe0f",waning_crescent_moon:"\ud83c\udf18",waning_gibbous_moon:"\ud83c\udf16",warning:"\u26a0\ufe0f",wastebasket:"\ud83d\uddd1",watch:"\u231a\ufe0f",water_buffalo:"\ud83d\udc03",watermelon:"\ud83c\udf49",wave:"\ud83d\udc4b",wavy_dash:"\u3030\ufe0f",waxing_crescent_moon:"\ud83c\udf12",wc:"\ud83d\udebe",weary:"\ud83d\ude29",wedding:"\ud83d\udc92",weight_lifting_man:"\ud83c\udfcb\ufe0f",weight_lifting_woman:"\ud83c\udfcb\ufe0f‍\u2640\ufe0f",whale:"\ud83d\udc33",whale2:"\ud83d\udc0b",wheel_of_dharma:"\u2638\ufe0f",wheelchair:"\u267f\ufe0f",white_check_mark:"\u2705",white_circle:"\u26aa\ufe0f",white_flag:"\ud83c\udff3\ufe0f",white_flower:"\ud83d\udcae",white_large_square:"\u2b1c\ufe0f",white_medium_small_square:"\u25fd\ufe0f",white_medium_square:"\u25fb\ufe0f",white_small_square:"\u25ab\ufe0f",white_square_button:"\ud83d\udd33",wilted_flower:"\ud83e\udd40",wind_chime:"\ud83c\udf90",wind_face:"\ud83c\udf2c",wine_glass:"\ud83c\udf77",wink:"\ud83d\ude09",wolf:"\ud83d\udc3a",woman:"\ud83d\udc69",woman_artist:"\ud83d\udc69‍\ud83c\udfa8",woman_astronaut:"\ud83d\udc69‍\ud83d\ude80",woman_cartwheeling:"\ud83e\udd38‍\u2640\ufe0f",woman_cook:"\ud83d\udc69‍\ud83c\udf73",woman_facepalming:"\ud83e\udd26‍\u2640\ufe0f",woman_factory_worker:"\ud83d\udc69‍\ud83c\udfed",woman_farmer:"\ud83d\udc69‍\ud83c\udf3e",woman_firefighter:"\ud83d\udc69‍\ud83d\ude92",woman_health_worker:"\ud83d\udc69‍\u2695\ufe0f",woman_judge:"\ud83d\udc69‍\u2696\ufe0f",woman_juggling:"\ud83e\udd39‍\u2640\ufe0f",woman_mechanic:"\ud83d\udc69‍\ud83d\udd27",woman_office_worker:"\ud83d\udc69‍\ud83d\udcbc",woman_pilot:"\ud83d\udc69‍\u2708\ufe0f",woman_playing_handball:"\ud83e\udd3e‍\u2640\ufe0f",woman_playing_water_polo:"\ud83e\udd3d‍\u2640\ufe0f",woman_scientist:"\ud83d\udc69‍\ud83d\udd2c",woman_shrugging:"\ud83e\udd37‍\u2640\ufe0f",woman_singer:"\ud83d\udc69‍\ud83c\udfa4",woman_student:"\ud83d\udc69‍\ud83c\udf93",woman_teacher:"\ud83d\udc69‍\ud83c\udfeb",woman_technologist:"\ud83d\udc69‍\ud83d\udcbb",woman_with_turban:"\ud83d\udc73‍\u2640\ufe0f",womans_clothes:"\ud83d\udc5a",womans_hat:"\ud83d\udc52",women_wrestling:"\ud83e\udd3c‍\u2640\ufe0f",womens:"\ud83d\udeba",world_map:"\ud83d\uddfa",worried:"\ud83d\ude1f",wrench:"\ud83d\udd27",writing_hand:"\u270d\ufe0f",x:"\u274c",yellow_heart:"\ud83d\udc9b",yen:"\ud83d\udcb4",yin_yang:"\u262f\ufe0f",yum:"\ud83d\ude0b",zap:"\u26a1\ufe0f",zipper_mouth_face:"\ud83e\udd10",zzz:"\ud83d\udca4",octocat:':octocat:',showdown:'S'},r.Converter=function(e){'use strict';var t={},n=[],c=[],u={},d=o,p={parsed:{},raw:'',format:''};function h(e,t){if(t=t||null,r.helper.isString(e)){if(t=e=r.helper.stdExtName(e),r.extensions[e])return console.warn('DEPRECATION WARNING: '+e+" is an old extension that uses a deprecated loading method.Please inform the developer that the extension should be updated!"),void _(r.extensions[e],e);if(r.helper.isUndefined(a[e]))throw Error('Extension "'+e+'" could not be loaded. It was either not found or is not a valid extension.');e=a[e]}'function'==typeof e&&(e=e()),r.helper.isArray(e)||(e=[e]);var s=l(e,t);if(!s.valid)throw Error(s.error);for(var o=0;o[ \t]+\xa8NBSP;<'),!t){if(!window||!window.document)throw new Error('HTMLParser is undefined. If in a webworker or nodejs environment, you need to provide a WHATWG DOM and HTML such as JSDOM');t=window.document}var a=t.createElement('div');a.innerHTML=e;var n={preList:(function(e){for(var t=e.querySelectorAll('pre'),a=[],n=0;n'}else a.push(t[n].innerHTML),t[n].innerHTML='',t[n].setAttribute('prenum',n.toString());return a})(a)};!(function e(r){for(var t=0;t? ?(['"].*['"])?\)$/m)>-1)o='';else if(!o){if(s||(s=n.toLowerCase().replace(/ ?\n/g,' ')),o='#'+s,r.helper.isUndefined(a.gUrls[s]))return e;o=a.gUrls[s],r.helper.isUndefined(a.gTitles[s])||(c=a.gTitles[s])}var u=''};return e=(e=(e=(e=(e=a.converter._dispatch('anchors.before',e,t,a)).replace(/\[((?:\[[^\]]*]|[^\[\]])*)] ?(?:\n *)?\[(.*?)]()()()()/g,n)).replace(/\[((?:\[[^\]]*]|[^\[\]])*)]()[ \t]*\([ \t]?<([^>]*)>(?:[ \t]*((["'])([^"]*?)\5))?[ \t]?\)/g,n)).replace(/\[((?:\[[^\]]*]|[^\[\]])*)]()[ \t]*\([ \t]??(?:[ \t]*((["'])([^"]*?)\5))?[ \t]?\)/g,n)).replace(/\[([^\[\]]+)]()()()()()/g,n),t.ghMentions&&(e=e.replace(/(^|\s)(\\)?(@([a-z\d]+(?:[a-z\d.-]+?[a-z\d]+)*))/gim,function(e,a,n,s,o){if('\\'===n)return a+s;if(!r.helper.isString(t.ghMentionsLink))throw new Error('ghMentionsLink option must be a string');var i=t.ghMentionsLink.replace(/\{u}/g,o),l='';return t.openLinksInNewWindow&&(l=' target="\xa8E95Eblank"'),a+''+s+''})),e=a.converter._dispatch('anchors.after',e,t,a)});var d=/([*~_]+|\b)(((https?|ftp|dict):\/\/|www\.)[^'">\s]+?\.[^'">\s]+?)()(\1)?(?=\s|$)(?!["<>])/gi,p=/([*~_]+|\b)(((https?|ftp|dict):\/\/|www\.)[^'">\s]+\.[^'">\s]+?)([.!?,()\[\]])?(\1)?(?=\s|$)(?!["<>])/gi,h=/()<(((https?|ftp|dict):\/\/|www\.)[^'">\s]+)()>()/gi,_=/(^|\s)(?:mailto:)?([A-Za-z0-9!#$%&'*+-/=?^_`{|}~.]+@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)(?=$|\s)/gim,g=/<()(?:mailto:)?([-.\w]+@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)>/gi,m=function(e){'use strict';return function(t,a,n,s,o,i,l){var c=n=n.replace(r.helper.regexes.asteriskDashAndColon,r.helper.escapeCharactersCallback),u='',d='',p=a||'',h=l||'';return/^www\./i.test(n)&&(n=n.replace(/^www\./i,'http://www.')),e.excludeTrailingPunctuationFromURLs&&i&&(u=i),e.openLinksInNewWindow&&(d=' target="\xa8E95Eblank"'),p+''+c+''+u+h}},f=function(e,t){'use strict';return function(a,n,s){var o='mailto:';return n=n||'',s=r.subParser('unescapeSpecialChars')(s,e,t),e.encodeEmails?(o=r.helper.encodeEmailAddress(o+s),s=r.helper.encodeEmailAddress(s)):o+=s,n+''+s+''}};r.subParser('autoLinks',function(e,r,t){'use strict';return e=(e=(e=t.converter._dispatch('autoLinks.before',e,r,t)).replace(h,m(r))).replace(g,f(r,t)),e=t.converter._dispatch('autoLinks.after',e,r,t)}),r.subParser('simplifiedAutoLinks',function(e,r,t){'use strict';return r.simplifiedAutoLink?(e=t.converter._dispatch('simplifiedAutoLinks.before',e,r,t),e=(e=r.excludeTrailingPunctuationFromURLs?e.replace(p,m(r)):e.replace(d,m(r))).replace(_,f(r,t)),e=t.converter._dispatch('simplifiedAutoLinks.after',e,r,t)):e}),r.subParser('blockGamut',function(e,t,a){'use strict';return e=a.converter._dispatch('blockGamut.before',e,t,a),e=r.subParser('blockQuotes')(e,t,a),e=r.subParser('headers')(e,t,a),e=r.subParser('horizontalRule')(e,t,a),e=r.subParser('lists')(e,t,a),e=r.subParser('codeBlocks')(e,t,a),e=r.subParser('tables')(e,t,a),e=r.subParser('hashHTMLBlocks')(e,t,a),e=r.subParser('paragraphs')(e,t,a),e=a.converter._dispatch('blockGamut.after',e,t,a)}),r.subParser('blockQuotes',function(e,t,a){'use strict';e=a.converter._dispatch('blockQuotes.before',e,t,a),e+='\n\n';var n=/(^ {0,3}>[ \t]?.+\n(.+\n)*\n*)+/gm;return t.splitAdjacentBlockquotes&&(n=/^ {0,3}>[\s\S]*?(?:\n\n)/gm),e=e.replace(n,function(e){return e=(e=(e=e.replace(/^[ \t]*>[ \t]?/gm,'')).replace(/\xa80/g,'')).replace(/^[ \t]+$/gm,''),e=r.subParser('githubCodeBlocks')(e,t,a),e=(e=(e=r.subParser('blockGamut')(e,t,a)).replace(/(^|\n)/g,'$1 ')).replace(/(\s*
[^\r]+?<\/pre>)/gm,function(e,r){var t=r;return t=(t=t.replace(/^  /gm,'\xa80')).replace(/\xa80/g,'')}),r.subParser('hashBlock')('
\n'+e+'\n
',t,a)}),e=a.converter._dispatch('blockQuotes.after',e,t,a)}),r.subParser('codeBlocks',function(e,t,a){'use strict';e=a.converter._dispatch('codeBlocks.before',e,t,a);return e=(e=(e+='\xa80').replace(/(?:\n\n|^)((?:(?:[ ]{4}|\t).*\n+)+)(\n*[ ]{0,3}[^ \t\n]|(?=\xa80))/g,function(e,n,s){var o=n,i=s,l='\n';return o=r.subParser('outdent')(o,t,a),o=r.subParser('encodeCode')(o,t,a),o=(o=(o=r.subParser('detab')(o,t,a)).replace(/^\n+/g,'')).replace(/\n+$/g,''),t.omitExtraWLInCodeBlocks&&(l=''),o='
'+o+l+'
',r.subParser('hashBlock')(o,t,a)+i})).replace(/\xa80/,''),e=a.converter._dispatch('codeBlocks.after',e,t,a)}),r.subParser('codeSpans',function(e,t,a){'use strict';return void 0===(e=a.converter._dispatch('codeSpans.before',e,t,a))&&(e=''),e=e.replace(/(^|[^\\])(`+)([^\r]*?[^`])\2(?!`)/gm,function(e,n,s,o){var i=o;return i=(i=i.replace(/^([ \t]*)/g,'')).replace(/[ \t]*$/g,''),i=n+''+(i=r.subParser('encodeCode')(i,t,a))+'',i=r.subParser('hashHTMLSpans')(i,t,a)}),e=a.converter._dispatch('codeSpans.after',e,t,a)}),r.subParser('completeHTMLDocument',function(e,r,t){'use strict';if(!r.completeHTMLDocument)return e;e=t.converter._dispatch('completeHTMLDocument.before',e,r,t);var a='html',n='\n',s='',o='\n',i='',l='';for(var c in void 0!==t.metadata.parsed.doctype&&(n='\n','html'!==(a=t.metadata.parsed.doctype.toString().toLowerCase())&&'html5'!==a||(o='')),t.metadata.parsed)if(t.metadata.parsed.hasOwnProperty(c))switch(c.toLowerCase()){case'doctype':break;case'title':s=''+t.metadata.parsed.title+'\n';break;case'charset':o='html'===a||'html5'===a?'\n':'\n';break;case'language':case'lang':i=' lang="'+t.metadata.parsed[c]+'"',l+='\n';break;default:l+='\n'}return e=n+'\n\n'+s+o+l+'\n\n'+e.trim()+'\n\n',e=t.converter._dispatch('completeHTMLDocument.after',e,r,t)}),r.subParser('detab',function(e,r,t){'use strict';return e=(e=(e=(e=(e=(e=t.converter._dispatch('detab.before',e,r,t)).replace(/\t(?=\t)/g,' ')).replace(/\t/g,'\xa8A\xa8B')).replace(/\xa8B(.+?)\xa8A/g,function(e,r){for(var t=r,a=4-t.length%4,n=0;n/g,'>'),e=t.converter._dispatch('encodeAmpsAndAngles.after',e,r,t)}),r.subParser('encodeBackslashEscapes',function(e,t,a){'use strict';return e=(e=(e=a.converter._dispatch('encodeBackslashEscapes.before',e,t,a)).replace(/\\(\\)/g,r.helper.escapeCharactersCallback)).replace(/\\([`*_{}\[\]()>#+.!~=|-])/g,r.helper.escapeCharactersCallback),e=a.converter._dispatch('encodeBackslashEscapes.after',e,t,a)}),r.subParser('encodeCode',function(e,t,a){'use strict';return e=(e=a.converter._dispatch('encodeCode.before',e,t,a)).replace(/&/g,'&').replace(//g,'>').replace(/([*_{}\[\]\\=~-])/g,r.helper.escapeCharactersCallback),e=a.converter._dispatch('encodeCode.after',e,t,a)}),r.subParser('escapeSpecialCharsWithinTagAttributes',function(e,t,a){'use strict';return e=(e=(e=a.converter._dispatch('escapeSpecialCharsWithinTagAttributes.before',e,t,a)).replace(/<\/?[a-z\d_:-]+(?:[\s]+[\s\S]+?)?>/gi,function(e){return e.replace(/(.)<\/?code>(?=.)/g,'$1`').replace(/([\\`*_~=|])/g,r.helper.escapeCharactersCallback)})).replace(/-]|-[^>])(?:[^-]|-[^-])*)--)>/gi,function(e){return e.replace(/([\\`*_~=|])/g,r.helper.escapeCharactersCallback)}),e=a.converter._dispatch('escapeSpecialCharsWithinTagAttributes.after',e,t,a)}),r.subParser('githubCodeBlocks',function(e,t,a){'use strict';return t.ghCodeBlocks?(e=a.converter._dispatch('githubCodeBlocks.before',e,t,a),e=(e=(e+='\xa80').replace(/(?:^|\n)(?: {0,3})(```+|~~~+)(?: *)([^\s`~]*)\n([\s\S]*?)\n(?: {0,3})\1/g,function(e,n,s,o){var i=t.omitExtraWLInCodeBlocks?'':'\n';return o=r.subParser('encodeCode')(o,t,a),o=(o=(o=r.subParser('detab')(o,t,a)).replace(/^\n+/g,'')).replace(/\n+$/g,''),o='
'+o+i+'
',o=r.subParser('hashBlock')(o,t,a),'\n\n\xa8G'+(a.ghCodeBlocks.push({text:e,codeblock:o})-1)+'G\n\n'})).replace(/\xa80/,''),a.converter._dispatch('githubCodeBlocks.after',e,t,a)):e}),r.subParser('hashBlock',function(e,r,t){'use strict';return e=(e=t.converter._dispatch('hashBlock.before',e,r,t)).replace(/(^\n+|\n+$)/g,''),e='\n\n\xa8K'+(t.gHtmlBlocks.push(e)-1)+'K\n\n',e=t.converter._dispatch('hashBlock.after',e,r,t)}),r.subParser('hashCodeTags',function(e,t,a){'use strict';e=a.converter._dispatch('hashCodeTags.before',e,t,a);return e=r.helper.replaceRecursiveRegExp(e,function(e,n,s,o){var i=s+r.subParser('encodeCode')(n,t,a)+o;return'\xa8C'+(a.gHtmlSpans.push(i)-1)+'C'},']*>','','gim'),e=a.converter._dispatch('hashCodeTags.after',e,t,a)}),r.subParser('hashElement',function(e,r,t){'use strict';return function(e,r){var a=r;return a=(a=(a=a.replace(/\n\n/g,'\n')).replace(/^\n/,'')).replace(/\n+$/g,''),a='\n\n\xa8K'+(t.gHtmlBlocks.push(a)-1)+'K\n\n'}}),r.subParser('hashHTMLBlocks',function(e,t,a){'use strict';e=a.converter._dispatch('hashHTMLBlocks.before',e,t,a);var n=['pre','div','h1','h2','h3','h4','h5','h6','blockquote','table','dl','ol','ul','script','noscript','form','fieldset','iframe','math','style','section','header','footer','nav','article','aside','address','audio','canvas','figure','hgroup','output','video','p'],s=function(e,r,t,n){var s=e;return-1!==t.search(/\bmarkdown\b/)&&(s=t+a.converter.makeHtml(r)+n),'\n\n\xa8K'+(a.gHtmlBlocks.push(s)-1)+'K\n\n'};t.backslashEscapesHTMLTags&&(e=e.replace(/\\<(\/?[^>]+?)>/g,function(e,r){return'<'+r+'>'}));for(var o=0;o]*>)','im'),c='<'+n[o]+'\\b[^>]*>',u='';-1!==(i=r.helper.regexIndexOf(e,l));){var d=r.helper.splitAtIndex(e,i),p=r.helper.replaceRecursiveRegExp(d[1],s,c,u,'im');if(p===d[1])break;e=d[0].concat(p)}return e=e.replace(/(\n {0,3}(<(hr)\b([^<>])*?\/?>)[ \t]*(?=\n{2,}))/g,r.subParser('hashElement')(e,t,a)),e=(e=r.helper.replaceRecursiveRegExp(e,function(e){return'\n\n\xa8K'+(a.gHtmlBlocks.push(e)-1)+'K\n\n'},'^ {0,3}\x3c!--','--\x3e','gm')).replace(/(?:\n\n)( {0,3}(?:<([?%])[^\r]*?\2>)[ \t]*(?=\n{2,}))/g,r.subParser('hashElement')(e,t,a)),e=a.converter._dispatch('hashHTMLBlocks.after',e,t,a)}),r.subParser('hashHTMLSpans',function(e,r,t){'use strict';function a(e){return'\xa8C'+(t.gHtmlSpans.push(e)-1)+'C'}return e=(e=(e=(e=(e=t.converter._dispatch('hashHTMLSpans.before',e,r,t)).replace(/<[^>]+?\/>/gi,function(e){return a(e)})).replace(/<([^>]+?)>[\s\S]*?<\/\1>/g,function(e){return a(e)})).replace(/<([^>]+?)\s[^>]+?>[\s\S]*?<\/\1>/g,function(e){return a(e)})).replace(/<[^>]+?>/gi,function(e){return a(e)}),e=t.converter._dispatch('hashHTMLSpans.after',e,r,t)}),r.subParser('unhashHTMLSpans',function(e,r,t){'use strict';e=t.converter._dispatch('unhashHTMLSpans.before',e,r,t);for(var a=0;a]*>\\s*]*>','^ {0,3}\\s*
','gim'),e=a.converter._dispatch('hashPreCodeTags.after',e,t,a)}),r.subParser('headers',function(e,t,a){'use strict';e=a.converter._dispatch('headers.before',e,t,a);var n=isNaN(parseInt(t.headerLevelStart))?1:parseInt(t.headerLevelStart),s=t.smoothLivePreview?/^(.+)[ \t]*\n={2,}[ \t]*\n+/gm:/^(.+)[ \t]*\n=+[ \t]*\n+/gm,o=t.smoothLivePreview?/^(.+)[ \t]*\n-{2,}[ \t]*\n+/gm:/^(.+)[ \t]*\n-+[ \t]*\n+/gm;e=(e=e.replace(s,function(e,s){var o=r.subParser('spanGamut')(s,t,a),i=t.noHeaderId?'':' id="'+l(s)+'"',c=''+o+'';return r.subParser('hashBlock')(c,t,a)})).replace(o,function(e,s){var o=r.subParser('spanGamut')(s,t,a),i=t.noHeaderId?'':' id="'+l(s)+'"',c=n+1,u=''+o+'';return r.subParser('hashBlock')(u,t,a)});var i=t.requireSpaceBeforeHeadingText?/^(#{1,6})[ \t]+(.+?)[ \t]*#*\n+/gm:/^(#{1,6})[ \t]*(.+?)[ \t]*#*\n+/gm;function l(e){var n,s;if(t.customizedHeaderId){var o=e.match(/\{([^{]+?)}\s*$/);o&&o[1]&&(e=o[1])}return n=e,s=r.helper.isString(t.prefixHeaderId)?t.prefixHeaderId:!0===t.prefixHeaderId?'section-':'',t.rawPrefixHeaderId||(n=s+n),n=t.ghCompatibleHeaderId?n.replace(/ /g,'-').replace(/&/g,'').replace(/\xa8T/g,'').replace(/\xa8D/g,'').replace(/[&+$,\/:;=?@"#{}|^\xa8~\[\]`\\*)(%.!'<>]/g,'').toLowerCase():t.rawHeaderId?n.replace(/ /g,'-').replace(/&/g,'&').replace(/\xa8T/g,'\xa8').replace(/\xa8D/g,'$').replace(/["']/g,'-').toLowerCase():n.replace(/[^\w]/g,'').toLowerCase(),t.rawPrefixHeaderId&&(n=s+n),a.hashLinkCounts[n]?n=n+'-'+a.hashLinkCounts[n]++:a.hashLinkCounts[n]=1,n}return e=e.replace(i,function(e,s,o){var i=o;t.customizedHeaderId&&(i=o.replace(/\s?\{([^{]+?)}\s*$/,''));var c=r.subParser('spanGamut')(i,t,a),u=t.noHeaderId?'':' id="'+l(o)+'"',d=n-1+s.length,p=''+c+'';return r.subParser('hashBlock')(p,t,a)}),e=a.converter._dispatch('headers.after',e,t,a)}),r.subParser('horizontalRule',function(e,t,a){'use strict';e=a.converter._dispatch('horizontalRule.before',e,t,a);var n=r.subParser('hashBlock')('
',t,a);return e=(e=(e=e.replace(/^ {0,2}( ?-){3,}[ \t]*$/gm,n)).replace(/^ {0,2}( ?\*){3,}[ \t]*$/gm,n)).replace(/^ {0,2}( ?_){3,}[ \t]*$/gm,n),e=a.converter._dispatch('horizontalRule.after',e,t,a)}),r.subParser('images',function(e,t,a){'use strict';function n(e,t,n,s,o,i,l,c){var u=a.gUrls,d=a.gTitles,p=a.gDimensions;if(n=n.toLowerCase(),c||(c=''),e.search(/\(? ?(['"].*['"])?\)$/m)>-1)s='';else if(''===s||null===s){if(''!==n&&null!==n||(n=t.toLowerCase().replace(/ ?\n/g,' ')),s='#'+n,r.helper.isUndefined(u[n]))return e;s=u[n],r.helper.isUndefined(d[n])||(c=d[n]),r.helper.isUndefined(p[n])||(o=p[n].width,i=p[n].height)}t=t.replace(/"/g,'"').replace(r.helper.regexes.asteriskDashAndColon,r.helper.escapeCharactersCallback);var h=''+t+''}return e=(e=(e=(e=(e=(e=a.converter._dispatch('images.before',e,t,a)).replace(/!\[([^\]]*?)] ?(?:\n *)?\[([\s\S]*?)]()()()()()/g,n)).replace(/!\[([^\]]*?)][ \t]*()\([ \t]??(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*(?:(["'])([^"]*?)\6)?[ \t]?\)/g,function(e,r,t,a,s,o,i,l){return n(e,r,t,a=a.replace(/\s/g,''),s,o,0,l)})).replace(/!\[([^\]]*?)][ \t]*()\([ \t]?<([^>]*)>(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*(?:(?:(["'])([^"]*?)\6))?[ \t]?\)/g,n)).replace(/!\[([^\]]*?)][ \t]*()\([ \t]??(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*(?:(["'])([^"]*?)\6)?[ \t]?\)/g,n)).replace(/!\[([^\[\]]+)]()()()()()/g,n),e=a.converter._dispatch('images.after',e,t,a)}),r.subParser('italicsAndBold',function(e,r,t){'use strict';function a(e,r,t){return r+e+t}return e=t.converter._dispatch('italicsAndBold.before',e,r,t),e=r.literalMidWordUnderscores?(e=(e=e.replace(/\b___(\S[\s\S]*?)___\b/g,function(e,r){return a(r,'','')})).replace(/\b__(\S[\s\S]*?)__\b/g,function(e,r){return a(r,'','')})).replace(/\b_(\S[\s\S]*?)_\b/g,function(e,r){return a(r,'','')}):(e=(e=e.replace(/___(\S[\s\S]*?)___/g,function(e,r){return/\S$/.test(r)?a(r,'',''):e})).replace(/__(\S[\s\S]*?)__/g,function(e,r){return/\S$/.test(r)?a(r,'',''):e})).replace(/_([^\s_][\s\S]*?)_/g,function(e,r){return/\S$/.test(r)?a(r,'',''):e}),e=r.literalMidWordAsterisks?(e=(e=e.replace(/([^*]|^)\B\*\*\*(\S[\s\S]*?)\*\*\*\B(?!\*)/g,function(e,r,t){return a(t,r+'','')})).replace(/([^*]|^)\B\*\*(\S[\s\S]*?)\*\*\B(?!\*)/g,function(e,r,t){return a(t,r+'','')})).replace(/([^*]|^)\B\*(\S[\s\S]*?)\*\B(?!\*)/g,function(e,r,t){return a(t,r+'','')}):(e=(e=e.replace(/\*\*\*(\S[\s\S]*?)\*\*\*/g,function(e,r){return/\S$/.test(r)?a(r,'',''):e})).replace(/\*\*(\S[\s\S]*?)\*\*/g,function(e,r){return/\S$/.test(r)?a(r,'',''):e})).replace(/\*([^\s*][\s\S]*?)\*/g,function(e,r){return/\S$/.test(r)?a(r,'',''):e}),e=t.converter._dispatch('italicsAndBold.after',e,r,t)}),r.subParser('lists',function(e,t,a){'use strict';function n(e,n){a.gListLevel++,e=e.replace(/\n{2,}$/,'\n');var s=/(\n)?(^ {0,3})([*+-]|\d+[.])[ \t]+((\[(x|X| )?])?[ \t]*[^\r]+?(\n{1,2}))(?=\n*(\xa80| {0,3}([*+-]|\d+[.])[ \t]+))/gm,o=/\n[ \t]*\n(?!\xa80)/.test(e+='\xa80');return t.disableForced4SpacesIndentedSublists&&(s=/(\n)?(^ {0,3})([*+-]|\d+[.])[ \t]+((\[(x|X| )?])?[ \t]*[^\r]+?(\n{1,2}))(?=\n*(\xa80|\2([*+-]|\d+[.])[ \t]+))/gm),e=(e=e.replace(s,function(e,n,s,i,l,c,u){u=u&&''!==u.trim();var d=r.subParser('outdent')(l,t,a),p='';return c&&t.tasklists&&(p=' class="task-list-item" style="list-style-type: none;"',d=d.replace(/^[ \t]*\[(x|X| )?]/m,function(){var e='-1?(d=r.subParser('githubCodeBlocks')(d,t,a),d=r.subParser('blockGamut')(d,t,a)):(d=(d=r.subParser('lists')(d,t,a)).replace(/\n$/,''),d=(d=r.subParser('hashHTMLBlocks')(d,t,a)).replace(/\n\n+/g,'\n\n'),d=o?r.subParser('paragraphs')(d,t,a):r.subParser('spanGamut')(d,t,a)),d=''+(d=d.replace('\xa8A',''))+'\n'})).replace(/\xa80/g,''),a.gListLevel--,n&&(e=e.replace(/\s+$/,'')),e}function s(e,r){if('ol'===r){var t=e.match(/^ *(\d+)\./);if(t&&'1'!==t[1])return' start="'+t[1]+'"'}return''}function o(e,r,a){var o=t.disableForced4SpacesIndentedSublists?/^ ?\d+\.[ \t]/gm:/^ {0,3}\d+\.[ \t]/gm,i=t.disableForced4SpacesIndentedSublists?/^ ?[*+-][ \t]/gm:/^ {0,3}[*+-][ \t]/gm,l='ul'===r?o:i,c='';if(-1!==e.search(l))!(function t(u){var d=u.search(l),p=s(e,r);-1!==d?(c+='\n\n<'+r+p+'>\n'+n(u.slice(0,d),!!a)+'\n',l='ul'===(r='ul'===r?'ol':'ul')?o:i,t(u.slice(d))):c+='\n\n<'+r+p+'>\n'+n(u,!!a)+'\n'})(e);else{var u=s(e,r);c='\n\n<'+r+u+'>\n'+n(e,!!a)+'\n'}return c}return e=a.converter._dispatch('lists.before',e,t,a),e+='\xa80',e=(e=a.gListLevel?e.replace(/^(( {0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(\xa80|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm,function(e,r,t){return o(r,t.search(/[*+-]/g)>-1?'ul':'ol',!0)}):e.replace(/(\n\n|^\n?)(( {0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(\xa80|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm,function(e,r,t,a){return o(t,a.search(/[*+-]/g)>-1?'ul':'ol',!1)})).replace(/\xa80/,''),e=a.converter._dispatch('lists.after',e,t,a)}),r.subParser('metadata',function(e,r,t){'use strict';if(!r.metadata)return e;function a(e){t.metadata.raw=e,(e=(e=e.replace(/&/g,'&').replace(/"/g,'"')).replace(/\n {4}/g,' ')).replace(/^([\S ]+): +([\s\S]+?)$/gm,function(e,r,a){return t.metadata.parsed[r]=a,''})}return e=(e=(e=(e=t.converter._dispatch('metadata.before',e,r,t)).replace(/^\s*\xab\xab\xab+(\S*?)\n([\s\S]+?)\n\xbb\xbb\xbb+\n/,function(e,r,t){return a(t),'\xa8M'})).replace(/^\s*---+(\S*?)\n([\s\S]+?)\n---+\n/,function(e,r,n){return r&&(t.metadata.format=r),a(n),'\xa8M'})).replace(/\xa8M/g,''),e=t.converter._dispatch('metadata.after',e,r,t)}),r.subParser('outdent',function(e,r,t){'use strict';return e=(e=(e=t.converter._dispatch('outdent.before',e,r,t)).replace(/^(\t|[ ]{1,4})/gm,'\xa80')).replace(/\xa80/g,''),e=t.converter._dispatch('outdent.after',e,r,t)}),r.subParser('paragraphs',function(e,t,a){'use strict';for(var n=(e=(e=(e=a.converter._dispatch('paragraphs.before',e,t,a)).replace(/^\n+/g,'')).replace(/\n+$/g,'')).split(/\n{2,}/g),s=[],o=n.length,i=0;i=0?s.push(l):l.search(/\S/)>=0&&(l=(l=r.subParser('spanGamut')(l,t,a)).replace(/^([ \t]*)/g,'

'),l+='

',s.push(l))}for(o=s.length,i=0;i]*>\s*]*>/.test(u)&&(d=!0)}s[i]=u}return e=(e=(e=s.join('\n')).replace(/^\n+/g,'')).replace(/\n+$/g,''),a.converter._dispatch('paragraphs.after',e,t,a)}),r.subParser('runExtension',function(e,r,t,a){'use strict';if(e.filter)r=e.filter(r,a.converter,t);else if(e.regex){var n=e.regex;n instanceof RegExp||(n=new RegExp(n,'g')),r=r.replace(n,e.replace)}return r}),r.subParser('spanGamut',function(e,t,a){'use strict';return e=a.converter._dispatch('spanGamut.before',e,t,a),e=r.subParser('codeSpans')(e,t,a),e=r.subParser('escapeSpecialCharsWithinTagAttributes')(e,t,a),e=r.subParser('encodeBackslashEscapes')(e,t,a),e=r.subParser('images')(e,t,a),e=r.subParser('anchors')(e,t,a),e=r.subParser('autoLinks')(e,t,a),e=r.subParser('simplifiedAutoLinks')(e,t,a),e=r.subParser('emoji')(e,t,a),e=r.subParser('underline')(e,t,a),e=r.subParser('italicsAndBold')(e,t,a),e=r.subParser('strikethrough')(e,t,a),e=r.subParser('ellipsis')(e,t,a),e=r.subParser('hashHTMLSpans')(e,t,a),e=r.subParser('encodeAmpsAndAngles')(e,t,a),t.simpleLineBreaks?/\n\n\xa8K/.test(e)||(e=e.replace(/\n+/g,'
\n')):e=e.replace(/ +\n/g,'
\n'),e=a.converter._dispatch('spanGamut.after',e,t,a)}),r.subParser('strikethrough',function(e,t,a){'use strict';function n(e){return t.simplifiedAutoLink&&(e=r.subParser('simplifiedAutoLinks')(e,t,a)),''+e+''}return t.strikethrough&&(e=(e=a.converter._dispatch('strikethrough.before',e,t,a)).replace(/(?:~){2}([\s\S]+?)(?:~){2}/g,function(e,r){return n(r)}),e=a.converter._dispatch('strikethrough.after',e,t,a)),e}),r.subParser('stripLinkDefinitions',function(e,t,a){'use strict';var n=function(e,n,s,o,i,l,c){return n=n.toLowerCase(),s.match(/^data:.+?\/.+?;base64,/)?a.gUrls[n]=s.replace(/\s/g,''):a.gUrls[n]=r.subParser('encodeAmpsAndAngles')(s,t,a),l?l+c:(c&&(a.gTitles[n]=c.replace(/"|'/g,'"')),t.parseImgDimensions&&o&&i&&(a.gDimensions[n]={width:o,height:i}),'')};return e=(e=(e=(e+='\xa80').replace(/^ {0,3}\[(.+)]:[ \t]*\n?[ \t]*?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*\n?[ \t]*(?:(\n*)["|'(](.+?)["|')][ \t]*)?(?:\n\n|(?=\xa80)|(?=\n\[))/gm,n)).replace(/^ {0,3}\[(.+)]:[ \t]*\n?[ \t]*\s]+)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*\n?[ \t]*(?:(\n*)["|'(](.+?)["|')][ \t]*)?(?:\n+|(?=\xa80))/gm,n)).replace(/\xa80/,'')}),r.subParser('tables',function(e,t,a){'use strict';if(!t.tables)return e;function n(e,n){return''+r.subParser('spanGamut')(e,t,a)+'\n'}function s(e,r){for(var t='\n\n\n',a=e.length,n=0;n\n\n\n',n=0;n\n';for(var s=0;s\n'}return t+='\n
\n'}function o(e){var o,i=e.split('\n');for(o=0;o'+(c=r.subParser('spanGamut')(c,t,a))+'\n'));for(o=0;o<_.length;++o){for(var b=[],w=0;w'+r+''})).replace(/\b__(\S[\s\S]*?)__\b/g,function(e,r){return''+r+''}):(e=e.replace(/___(\S[\s\S]*?)___/g,function(e,r){return/\S$/.test(r)?''+r+'':e})).replace(/__(\S[\s\S]*?)__/g,function(e,r){return/\S$/.test(r)?''+r+'':e})).replace(/(_)/g,r.helper.escapeCharactersCallback),e=a.converter._dispatch('underline.after',e,t,a)):e}),r.subParser('unescapeSpecialChars',function(e,r,t){'use strict';return e=(e=t.converter._dispatch('unescapeSpecialChars.before',e,r,t)).replace(/\xa8E(\d+)E/g,function(e,r){var t=parseInt(r);return String.fromCharCode(t)}),e=t.converter._dispatch('unescapeSpecialChars.after',e,r,t)}),r.subParser('makeMarkdown.blockquote',function(e,t){'use strict';var a='';if(e.hasChildNodes())for(var n=e.childNodes,s=n.length,o=0;o ')}),r.subParser('makeMarkdown.codeBlock',function(e,r){'use strict';var t=e.getAttribute('language'),a=e.getAttribute('precodenum');return'```'+t+'\n'+r.preList[a]+'\n```'}),r.subParser('makeMarkdown.codeSpan',function(e){'use strict';return'`'+e.innerHTML+'`'}),r.subParser('makeMarkdown.emphasis',function(e,t){'use strict';var a='';if(e.hasChildNodes()){a+='*';for(var n=e.childNodes,s=n.length,o=0;o',e.hasAttribute('width')&&e.hasAttribute('height')&&(r+=' ='+e.getAttribute('width')+'x'+e.getAttribute('height')),e.hasAttribute('title')&&(r+=' "'+e.getAttribute('title')+'"'),r+=')'),r}),r.subParser('makeMarkdown.links',function(e,t){'use strict';var a='';if(e.hasChildNodes()&&e.hasAttribute('href')){var n=e.childNodes,s=n.length;a='[';for(var o=0;o',e.hasAttribute('title')&&(a+=' "'+e.getAttribute('title')+'"'),a+=')'}return a}),r.subParser('makeMarkdown.list',function(e,t,a){'use strict';var n='';if(!e.hasChildNodes())return'';for(var s=e.childNodes,o=s.length,i=e.getAttribute('start')||1,l=0;l'+r.preList[t]+''}),r.subParser('makeMarkdown.strikethrough',function(e,t){'use strict';var a='';if(e.hasChildNodes()){a+='~~';for(var n=e.childNodes,s=n.length,o=0;otr>th'),l=e.querySelectorAll('tbody>tr');for(a=0;a_&&(_=g)}for(a=0;a/g,'\\$1>')).replace(/^#/gm,'\\#')).replace(/^(\s*)([-=]{3,})(\s*)$/,'$1\\$2$3')).replace(/^( {0,3}\d+)\./gm,'$1\\.')).replace(/^( {0,3})([+-])/gm,'$1\\$2')).replace(/]([\s]*)\(/g,'\\]$1\\(')).replace(/^ {0,3}\[([\S \t]*?)]:/gm,'\\[$1]:')});'function'==typeof define&&define.amd?define(function(){'use strict';return r}):void 0!==n&&n.exports?n.exports=r:this.showdown=r}).call(this)},1095,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(o){'IFRAME'===o.nodeName&&(0,n.remove)(o)};var n=r(d[0])},1096,[1078]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(u){if(!u.id||0!==u.id.indexOf('docs-internal-guid-'))return;(0,n.unwrap)(u)};var n=r(d[0])},1097,[1078]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(n){if(n.nodeType!==n.TEXT_NODE)return;if(n.parentElement.closest('pre'))return;var o=n.data.replace(/[ \r\n\t]+/g,' ');if(' '===o[0]){var l=(0,t.getSibling)(n,'previous');l&&'BR'!==l.nodeName&&' '!==l.textContent.slice(-1)||(o=o.slice(1))}if(' '===o[o.length-1]){var c=(0,t.getSibling)(n,'next');(!c||'BR'===c.nodeName||c.nodeType===c.TEXT_NODE&&(' '===(f=c.textContent[0])||'\r'===f||'\n'===f||'\t'===f))&&(o=o.slice(0,-1))}var f;o?n.data=o:n.parentNode.removeChild(n)};var t=r(d[0])},1098,[1077]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){if('BR'!==t.nodeName)return;if((0,n.getSibling)(t,'next'))return;t.parentNode.removeChild(t)};var n=r(d[0])},1099,[1077]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(n){if('P'!==n.nodeName)return;if(n.hasChildNodes())return;n.parentNode.removeChild(n)}},1100,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getCategories=function(){return(0,t.select)('core/blocks').getCategories()},e.setCategories=function(o){(0,t.dispatch)('core/blocks').setCategories(o)},e.updateCategory=function(o,c){(0,t.dispatch)('core/blocks').updateCategory(o,c)};var t=r(d[0])},1101,[911]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.doBlocksMatchTemplate=function t(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];var c=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return n.length===c.length&&(0,u.every)(c,function(u,c){var l=(0,o.default)(u,3),f=l[0],s=l[2],p=n[c];return f===p.name&&t(p.innerBlocks,s)})},e.synchronizeBlocksWithTemplate=function t(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];var s=arguments.length>1?arguments[1]:void 0;if(!s)return n;return(0,u.map)(s,function(s,v){var y=(0,o.default)(s,3),O=y[0],b=y[1],h=y[2],j=n[v];if(j&&j.name===O){var P=t(j.innerBlocks,h);return p({},j,{innerBlocks:P})}var k=(0,f.getBlockType)(O),B=function(t){return'html'===(0,u.get)(t,['source'])},w=function(t){return'query'===(0,u.get)(t,['source'])},D=function(t,n){return(0,u.mapValues)(n,function(n,o){return T(t[o],n)})},T=function(t,n){return B(t)&&(0,u.isArray)(n)?(0,c.renderToString)(n):w(t)&&n?n.map(function(n){return D(t.query,n)}):n},_=D((0,u.get)(k,['attributes'],{}),b);return(0,l.createBlock)(O,_,t([],h))})};var n=t(r(d[1])),o=t(r(d[2])),u=r(d[3]),c=r(d[4]),l=r(d[5]),f=r(d[6]);function s(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function p(t){for(var o=1;o0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'ADD_FORMAT_TYPES':return u({},t,{},(0,o.keyBy)(n.formatTypes,'name'));case'REMOVE_FORMAT_TYPES':return(0,o.omit)(t,n.names)}return t}var p=(0,r(d[3]).combineReducers)({formatTypes:f});e.default=p},1105,[2,18,21,911]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.getFormatType=function(t,n){return t.formatTypes[n]},e.getFormatTypeForBareElement=function(t,n){return(0,o.find)(u(t),function(t){var o=t.className,u=t.tagName;return null===o&&n===u})},e.getFormatTypeForClassName=function(t,n){return(0,o.find)(u(t),function(t){var o=t.className;return null!==o&&(" "+n+" ").indexOf(" "+o+" ")>=0})},e.getFormatTypes=void 0;var n=t(r(d[1])),o=r(d[2]),u=(0,n.default)(function(t){return Object.values(t.formatTypes)},function(t){return[t.formatTypes]});e.getFormatTypes=u},1106,[2,1034,21]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.addFormatTypes=function(n){return{type:'ADD_FORMAT_TYPES',formatTypes:(0,t.castArray)(n)}},e.removeFormatTypes=function(n){return{type:'REMOVE_FORMAT_TYPES',names:(0,t.castArray)(n)}};var t=r(d[0])},1107,[21]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.applyFormat=function(t,o){var p=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t.start,u=arguments.length>3&&void 0!==arguments[3]?arguments[3]:t.end,y=t.formats,v=t.activeFormats,O=y.slice();if(p===u){var b=(0,c.find)(O[p],{type:o.type});if(b){for(var j=O[p].indexOf(b);O[p]&&O[p][j]===b;)O[p]=l(O[p],j,o),p--;for(u++;O[u]&&O[u][j]===b;)O[u]=l(O[u],j,o),u++}}else{for(var P=1/0,h=p;h0&&void 0!==arguments[0]?arguments[0]:{},n=t.element,l=t.text,s=t.html,o=t.range,u=t.multilineTag,p=t.multilineWrapperTags,f=t.__unstableIsEditableTree,h=t.preserveWhiteSpace;return'string'==typeof l&&l.length>0?{formats:Array(l.length),replacements:Array(l.length),text:l}:('string'==typeof s&&s.length>0&&(n=(0,c.createElement)(document,s)),'object'!=typeof n?{formats:[],replacements:[],text:''}:u?A({element:n,range:o,multilineTag:u,multilineWrapperTags:p,isEditableTree:f,preserveWhiteSpace:h}):_({element:n,range:o,isEditableTree:f,preserveWhiteSpace:h}))}function x(t,n,l,s){if(l){var o=n.parentNode,c=l.startContainer,u=l.startOffset,p=l.endContainer,f=l.endOffset,h=t.text.length;void 0!==s.start?t.start=h+s.start:n===c&&n.nodeType===b?t.start=h+u:o===c&&n===c.childNodes[u]?t.start=h:o===c&&n===c.childNodes[u-1]?t.start=h+s.text.length:n===c&&(t.start=h),void 0!==s.end?t.end=h+s.end:n===p&&n.nodeType===b?t.end=h+f:o===p&&n===p.childNodes[f-1]?t.end=h+s.text.length:o===p&&n===p.childNodes[f]?t.end=h:n===p&&(t.end=h+f)}}function N(t,n,l){if(n){var s=n.startContainer,o=n.endContainer,c=n.startOffset,u=n.endOffset;return t===s&&(c=l(t.nodeValue.slice(0,c)).length),t===o&&(u=l(t.nodeValue.slice(0,u)).length),{startContainer:s,startOffset:c,endContainer:o,endOffset:u}}}function P(t){return t.replace(/[\n\r\t]+/g,' ')}var W=new RegExp(p.ZWNBSP,'g');function C(t){return t.replace(W,'')}function _(t){var n=t.element,s=t.range,c=t.multilineTag,f=t.multilineWrapperTags,v=t.currentWrapperTags,y=void 0===v?[]:v,W=t.isEditableTree,j=t.preserveWhiteSpace,w={formats:[],replacements:[],text:''};if(!n)return w;if(!n.hasChildNodes())return x(w,n,s,{formats:[],replacements:[],text:''}),w;for(var D=n.childNodes.length,R=function(t){var v=n.childNodes[t],D=v.nodeName.toLowerCase();if(v.nodeType===b){var R=C;j||(R=function(t){return C(P(t))});var F=R(v.nodeValue);return s=N(v,s,R),x(w,v,s,{text:F}),w.formats.length+=F.length,w.replacements.length+=F.length,w.text+=F,"continue"}if(v.nodeType!==T)return"continue";if(W&&(v.getAttribute('data-rich-text-placeholder')||'br'===D&&!v.getAttribute('data-rich-text-line-break')))return x(w,v,s,{formats:[],replacements:[],text:''}),"continue";if('br'===D)return x(w,v,s,{formats:[],replacements:[],text:''}),(0,u.mergePair)(w,O({text:'\n'})),"continue";var L=w.formats[w.formats.length-1],V=L&&L[L.length-1],B=E({type:D,attributes:S({element:v})}),M=(0,o.isFormatEqual)(B,V)?V:B;if(f&&-1!==f.indexOf(D)){var k=A({element:v,range:s,multilineTag:c,multilineWrapperTags:f,currentWrapperTags:[].concat((0,l.default)(y),[M]),isEditableTree:W,preserveWhiteSpace:j});return x(w,v,s,k),(0,u.mergePair)(w,k),"continue"}var I=_({element:v,range:s,multilineTag:c,multilineWrapperTags:f,isEditableTree:W,preserveWhiteSpace:j});x(w,v,s,I),M?0===I.text.length?M.attributes&&(0,u.mergePair)(w,{formats:[,],replacements:[M],text:p.OBJECT_REPLACEMENT_CHARACTER}):(0,u.mergePair)(w,h({},I,{formats:Array.from(I.formats,function(t){return t?[M].concat((0,l.default)(t)):[M]})})):(0,u.mergePair)(w,I)},F=0;F0)&&(0,u.mergePair)(b,{formats:[,],replacements:f.length>0?[f]:[,],text:p.LINE_SEPARATOR}),x(b,E,l,O),(0,u.mergePair)(b,O)}}return b}function S(t){var n=t.element;if(n.hasAttributes()){for(var l,s=n.attributes.length,o=0;o1&&void 0!==arguments[1]?arguments[1]:o;for(;u--;)if(f[u]===t.LINE_SEPARATOR)return u};var t=r(d[0])},1120,[1114]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isActiveListType=function(n,u,c){var l=n.replacements,s=n.start,f=(0,t.getLineIndex)(n,s),o=l[f];if(!o||0===o.length)return u===c;return o[o.length-1].type===u};var t=r(d[0])},1121,[1120]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isCollapsed=function(n){var t=n.start,o=n.end;if(void 0===t||void 0===o)return;return t===o}},1122,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isEmpty=function(t){return 0===t.text.length},e.isEmptyLine=function(n){var u=n.text,E=n.start,f=n.end;if(E!==f)return!1;if(0===u.length)return!0;if(0===E&&u.slice(0,1)===t.LINE_SEPARATOR)return!0;if(E===u.length&&u.slice(-1)===t.LINE_SEPARATOR)return!0;return u.slice(E-1,f+1)===""+t.LINE_SEPARATOR+t.LINE_SEPARATOR};var t=r(d[0])},1123,[1114]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.join=function(o){var c=arguments.length>1&&void 0!==arguments[1]?arguments[1]:'';'string'==typeof c&&(c=(0,t.create)({text:c}));return(0,n.normaliseFormats)(o.reduce(function(t,n){var o=n.formats,s=n.replacements,f=n.text;return{formats:t.formats.concat(c.formats,o),replacements:t.replacements.concat(c.replacements,s),text:t.text+c.text+f}}))};var t=r(d[0]),n=r(d[1])},1124,[1112,1109]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.registerFormatType=function(t,o){if('string'!=typeof(o=l({name:t},o)).name)return void window.console.error('Format names must be strings.');if(!/^[a-z][a-z0-9-]*\/[a-z][a-z0-9-]*$/.test(o.name))return void window.console.error('Format names must contain a namespace prefix, include only lowercase alphanumeric characters or dashes, and start with a letter. Example: my-plugin/my-custom-format');if((0,n.select)('core/rich-text').getFormatType(o.name))return void window.console.error('Format "'+o.name+'" is already registered.');if('string'!=typeof o.tagName||''===o.tagName)return void window.console.error('Format tag names must be a string.');if(('string'!=typeof o.className||''===o.className)&&null!==o.className)return void window.console.error('Format class names must be a string, or null to handle bare elements.');if(!/^[_a-zA-Z]+[a-zA-Z0-9-]*$/.test(o.className))return void window.console.error('A class name must begin with a letter, followed by any number of hyphens, letters, or numbers.');if(null===o.className){var s=(0,n.select)('core/rich-text').getFormatTypeForBareElement(o.tagName);if(s)return void window.console.error("Format \""+s.name+"\" is already registered to handle bare tag name \""+o.tagName+"\".")}else{var c=(0,n.select)('core/rich-text').getFormatTypeForClassName(o.className);if(c)return void window.console.error("Format \""+c.name+"\" is already registered to handle class name \""+o.className+"\".")}if(!('title'in o)||''===o.title)return void window.console.error('The format "'+o.name+'" must have a title.');if('keywords'in o&&o.keywords.length>3)return void window.console.error('The format "'+o.name+'" can have a maximum of 3 keywords.');if('string'!=typeof o.title)return void window.console.error('Format titles must be strings.');return(0,n.dispatch)('core/rich-text').addFormatTypes(o),o};var o=t(r(d[1])),n=r(d[2]);function s(t,o){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),o&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n}function l(t){for(var n=1;n2&&void 0!==arguments[2]?arguments[2]:t.start,l=arguments.length>3&&void 0!==arguments[3]?arguments[3]:t.end,p=t.formats,O=t.activeFormats,v=p.slice();if(f===l){var y=(0,o.find)(v[f],{type:n});if(y){for(;(0,o.find)(v[f],y);)u(v,f,n),f--;for(l++;(0,o.find)(v[l],y);)u(v,l,n),l++}}else for(var b=f;b2&&void 0!==arguments[2]?arguments[2]:s.start,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:s.end,f=s.formats,v=s.replacements,p=s.text;'string'==typeof c&&(c=(0,t.create)({text:c}));var u=l+c.text.length;return(0,n.normaliseFormats)({formats:f.slice(0,l).concat(c.formats,f.slice(o)),replacements:v.slice(0,l).concat(c.replacements,v.slice(o)),text:p.slice(0,l)+c.text+p.slice(o),start:u,end:u})};var t=r(d[0]),n=r(d[1])},1128,[1112,1109]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.replace=function(n,l,c){var o=n.formats,s=n.replacements,f=n.text,p=n.start,u=n.end;return f=f.replace(l,function(t){for(var n=arguments.length,l=new Array(n>1?n-1:0),f=1;f1&&void 0!==arguments[1]?arguments[1]:s.start,c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:s.end,v=(0,t.getTextContent)(s).slice(0,l).lastIndexOf(o.LINE_SEPARATOR),_=s.replacements[v],f=[,];_&&(f=[_]);var u={formats:[,],replacements:f,text:o.LINE_SEPARATOR};return(0,n.insert)(s,u,l,c)};var t=r(d[0]),n=r(d[1]),o=r(d[2])},1130,[1118,1128,1114]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.removeLineSeparator=function(t){var n,p=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],u=t.replacements,f=t.text,O=t.start,b=t.end,y=(0,c.isCollapsed)(t),v=O-1,j=y?O-1:O,P=b;p||(v=b,j=O,P=y?b+1:b);if(f[v]!==o.LINE_SEPARATOR)return;if(y&&u[v]&&u[v].length){var h=u.slice();h[v]=u[v].slice(0,-1),n=s({},t,{replacements:h})}else n=(0,l.remove)(t,j,P);return n};var n=t(r(d[1])),o=r(d[2]),c=r(d[3]),l=r(d[4]);function p(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function s(t){for(var o=1;o1&&void 0!==arguments[1]?arguments[1]:t.start,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t.end,s=t.formats,l=t.replacements,f=t.text;if(void 0===n||void 0===o)return c({},t);return{formats:s.slice(n,o),replacements:l.slice(n,o),text:f.slice(n,o)}};var n=t(r(d[1]));function o(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function c(t){for(var c=1;c=n&&pn&&(o.start=0),f>=n&&fu&&(o.end=t.length)),o})};var t=r(d[0]);function n(n){var l=n.formats,s=n.replacements,c=n.text,o=n.start,p=n.end,f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:o,u=arguments.length>2&&void 0!==arguments[2]?arguments[2]:p,v={formats:l.slice(0,f),replacements:s.slice(0,f),text:c.slice(0,f)},h={formats:l.slice(u),replacements:s.slice(u),text:c.slice(u),start:0,end:0};return[(0,t.replace)(v,/\u2028+$/,''),(0,t.replace)(h,/^\u2028+/,'')]}},1134,[1129]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.toDom=w,e.apply=function(t){var n=t.value,o=t.current,l=t.multilineTag,u=t.prepareEditableTree,f=t.__unstableDomOnly,c=t.placeholder,s=w({value:n,multilineTag:l,prepareEditableTree:u,placeholder:c}),p=s.body,v=s.selection;N(p,o),void 0===n.start||f||D(v,o)},e.applyValue=N,e.applySelection=D;var n=t(r(d[1])),o=t(r(d[2])),l=r(d[3]),u=r(d[4]);function f(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function c(t){for(var o=1;o1;)t=t.childNodes[n.shift()];return{node:t,offset:n[0]}}var h=function(){return(0,u.createElement)(document,'')};function b(t,n){'string'==typeof n&&(n=t.ownerDocument.createTextNode(n));var o=n,l=o.type,u=o.attributes;if(l)for(var f in n=t.ownerDocument.createElement(l),u)n.setAttribute(f,u[f]);return t.appendChild(n)}function y(t,n){t.appendData(n)}function O(t){return t.lastChild}function T(t){return t.parentNode}function E(t){return t.nodeType===s}function C(t){return t.nodeValue}function P(t){return t.parentNode.removeChild(t)}function w(t){var n=t.value,o=t.multilineTag,u=t.prepareEditableTree,f=t.isEditableTree,s=void 0===f||f,v=t.placeholder,w=[],N=[];return u&&(n=c({},n,{formats:u(n)})),{body:(0,l.toTree)({value:n,multilineTag:o,createEmpty:h,append:b,getLastChild:O,getParent:T,isText:E,getText:C,remove:P,appendText:y,onStartIndex:function(t,n){w=p(n,t,[n.nodeValue.length])},onEndIndex:function(t,n){N=p(n,t,[n.nodeValue.length])},isEditableTree:s,placeholder:v}),selection:{startPath:w,endPath:N}}}function N(t,n){for(var o,l=0;o=t.firstChild;){var u=n.childNodes[l];if(u)if(u.isEqualNode(o))t.removeChild(o);else if(u.nodeName!==o.nodeName||u.nodeType===s&&u.data!==o.data)n.replaceChild(o,u);else{var f=u.attributes,c=o.attributes;if(f)for(var p=f.length;p--;){var v=f[p].name;o.getAttribute(v)||u.removeAttribute(v)}if(c)for(var h=0;h0){if(o=E,l=O.getRangeAt(0),o.startContainer===l.startContainer&&o.startOffset===l.startOffset&&o.endContainer===l.endContainer&&o.endOffset===l.endOffset)return;O.removeAllRanges()}O.addRange(E)}},1135,[2,18,9,1136,1113]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.toTree=function(t){var o,s,l,y=t.value,E=t.multilineTag,O=t.preserveWhiteSpace,A=t.createEmpty,h=t.append,v=t.getLastChild,P=t.getParent,R=t.isText,T=t.getText,j=t.remove,N=t.appendText,S=t.onStartIndex,_=t.onEndIndex,x=t.isEditableTree,I=t.placeholder,L=y.formats,w=y.replacements,C=y.text,D=y.start,B=y.end,W=L.length+1,k=A(),F={type:E},M=(0,c.getActiveFormats)(y),Z=M[M.length-1];E?(h(h(k,{type:E}),''),s=o=[F]):h(k,'');for(var H=function(t){var c=C.charAt(t),y=x&&(!l||l===u.LINE_SEPARATOR||'\n'===l),A=L[t];E&&(A=c===u.LINE_SEPARATOR?o=(w[t]||[]).reduce(function(t,n){return t.push(n,F),t},[F]):[].concat((0,n.default)(o),(0,n.default)(A||[])));var W=v(k);if(y&&c===u.LINE_SEPARATOR){for(var M=W;!R(M);)M=v(M);h(P(M),u.ZWNBSP)}if(l===u.LINE_SEPARATOR){for(var H=W;!R(H);)H=v(H);S&&D===t&&S(k,H),_&&B===t&&_(k,H)}if(A&&A.forEach(function(t,n){if(W&&s&&f(A,s,n)&&(c!==u.LINE_SEPARATOR||A.length-1!==n))W=v(W);else{var o=t.type,l=t.attributes,b=t.unregisteredAttributes,y=x&&c!==u.LINE_SEPARATOR&&t===Z,E=P(W),O=h(E,p({type:o,attributes:l,unregisteredAttributes:b,boundaryClass:y}));R(W)&&0===T(W).length&&j(W),W=h(O,'')}}),c===u.LINE_SEPARATOR)return s=A,l=c,"continue";0===t&&(S&&0===D&&S(k,W),_&&0===B&&_(k,W)),c===u.OBJECT_REPLACEMENT_CHARACTER?(W=h(P(W),p(b({},w[t],{object:!0}))),W=h(P(W),'')):O||'\n'!==c?R(W)?N(W,c):W=h(P(W),c):(W=h(P(W),{type:'br',attributes:x?{'data-rich-text-line-break':'true'}:void 0,object:!0}),W=h(P(W),'')),S&&D===t+1&&S(k,W),_&&B===t+1&&_(k,W),y&&t===C.length&&(h(P(W),u.ZWNBSP),I&&0===C.length&&h(P(W),{type:'span',attributes:{'data-rich-text-placeholder':I,contenteditable:'false'}})),s=A,l=c},J=0;J":"<"+u+p+">"+x(l)+""}function x(){return(arguments.length>0&&void 0!==arguments[0]?arguments[0]:[]).map(function(n){return void 0===n.text?s(n):(0,t.escapeEditableHTML)(n.text)}).join('')}},1138,[344,1136]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.toggleFormat=function(u,p){if((0,t.getActiveFormat)(u,p.type))return(0,o.removeFormat)(u,p.type);return(0,n.applyFormat)(u,p)};var t=r(d[0]),o=r(d[1]),n=r(d[2])},1139,[1115,1126,1108]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.unregisterFormatType=function(o){var n=(0,t.select)('core/rich-text').getFormatType(o);if(!n)return void window.console.error("Format "+o+" is not registered.");return(0,t.dispatch)('core/rich-text').removeFormatTypes(o),n};var t=r(d[0])},1140,[911]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.canIndentListItems=function(t){var u=(0,n.getLineIndex)(t);if(void 0===u)return!1;var c=t.replacements,l=(0,n.getLineIndex)(t,u),o=c[u]||[],v=c[l]||[];return o.length<=v.length};var n=r(d[0])},1141,[1120]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.canOutdentListItems=function(n){var u=n.replacements,c=n.start,o=(0,t.getLineIndex)(n,c);return void 0!==u[o]};var t=r(d[0])},1142,[1120]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.indentListItems=function(t,n){if(!(0,l.canIndentListItems)(t))return t;for(var f=(0,o.getLineIndex)(t),p=(0,o.getLineIndex)(t,f),O=t.text,b=t.replacements,y=t.end,h=b.slice(),v=u(t,f),P=f;P=0;)if(o[s]===c.LINE_SEPARATOR){var u=l[s]||[];if(u.length===f.length+1)return s;if(u.length<=f.length)return}}},1143,[2,18,1114,1120,1141]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.outdentListItems=function(t){if(!(0,l.canOutdentListItems)(t))return t;for(var n=t.text,f=t.replacements,O=t.start,b=t.end,y=(0,o.getLineIndex)(t,O),P=f.slice(0),j=f[(0,s.getParentLineIndex)(t,y)]||[],v=(0,o.getLineIndex)(t,b),h=(0,u.getLastChildIndex)(t,v),I=y;I<=h;I++)if(n[I]===c.LINE_SEPARATOR){var L=P[I]||[];P[I]=j.concat(L.slice(j.length+1)),0===P[I].length&&delete P[I]}return p({},t,{replacements:P})};var n=t(r(d[1])),c=r(d[2]),o=r(d[3]),s=r(d[4]),u=r(d[5]),l=r(d[6]);function f(t,n){var c=Object.keys(t);return Object.getOwnPropertySymbols&&c.push.apply(c,Object.getOwnPropertySymbols(t)),n&&(c=c.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),c}function p(t){for(var c=1;c=0;)if(l[_]===n.LINE_SEPARATOR){var c=o[_]||[];if(c.length===u.length-1)return _}};var n=r(d[0])},1145,[1114]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getLastChildIndex=function(n,l){for(var f=n.text,u=n.replacements,o=u[l]||[],_=l,c=l||0;c=o.length))return _;_=c}return _};var t=r(d[0])},1146,[1114]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.changeListType=function(t,n){for(var p,l=t.text,s=t.replacements,O=t.start,b=t.end,y=(0,o.getLineIndex)(t,O),P=s[y]||[],j=s[(0,o.getLineIndex)(t,b)]||[],h=(0,f.getParentLineIndex)(t,y),v=s.slice(),w=P.length-1,L=j.length-1,_=h+1||0;_L?t:n}))}if(!p)return t;return u({},t,{replacements:v})};var n=t(r(d[1])),c=r(d[2]),o=r(d[3]),f=r(d[4]);function p(t,n){var c=Object.keys(t);return Object.getOwnPropertySymbols&&c.push.apply(c,Object.getOwnPropertySymbols(t)),n&&(c=c.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),c}function u(t){for(var c=1;c]*>','gim'),s=RegExp('$','gim');return n.replace(o,'').replace(s,'')}},{key:"removeTag",value:function(t,n){var o=RegExp('<'+t+'>','gim'),s=RegExp('','gim');return n.replace(o,'').replace(s,'')}},{key:"onChange",value:function(t){this.removeRootTagsProduceByAztec(H(t.nativeEvent.text))!==this.value&&(this.lastEventCount=t.nativeEvent.eventCount,this.comesFromAztec=!0,this.firedAfterTextChanged=!0,this.onTextUpdate(t),this.lastAztecEventType='input')}},{key:"onTextUpdate",value:function(t){var n=this.removeRootTagsProduceByAztec(H(t.nativeEvent.text)),o=this.value!==n;this.value=n,o&&this.props.onChange(n)}},{key:"onContentSizeChange",value:function(t){var n=t.height;this.setState({height:n}),this.lastAztecEventType='content size change'}},{key:"handleEnter",value:function(t){var n=this.props.onEnter;n&&(n({value:this.createRecord(),onChange:this.onFormatChange,shiftKey:t.shiftKey}),this.lastAztecEventType='input')}},{key:"handleDelete",value:function(t){var n=F.BACKSPACE===F.BACKSPACE,o=this.props,s=o.onDelete,l=o.__unstableMultilineTag,h=this.state.activeFormats,c=void 0===h?[]:h;this.lastEventCount=t.nativeEvent.eventCount,this.comesFromAztec=!0,this.firedAfterTextChanged=t.nativeEvent.firedAfterTextChanged;var u,p=this.createRecord(),v=p.start,f=p.end,T=p.text;return 0===v&&0!==f&&f>=T.length?(u=(0,M.remove)(p),this.onFormatChange(u),void t.preventDefault()):l&&(u=n&&0===p.start&&0===p.end&&(0,_.isEmptyLine)(p)?(0,w.removeLineSeparator)(p,!n):(0,w.removeLineSeparator)(p,n))?(this.onFormatChange(u),void t.preventDefault()):void(!s||!(0,B.isCollapsed)(p)||c.length||n&&0!==v||!n&&f!==T.length||(s({isReverse:n,value:p}),t.preventDefault(),this.lastAztecEventType='input'))}},{key:"onPaste",value:function(t){var n=this.props,o=n.onPaste,s=n.onChange,l=this.state.activeFormats,h=void 0===l?[]:l,c=t.nativeEvent,u=c.pastedText,p=c.pastedHtml,v=c.files,f=this.createRecord();if(t.preventDefault(),!(0,B.isCollapsed)(f)){var T=(p||u).replace(/<[^>]+>/g,'').trim();if((0,x.isURL)(T)){var C=(0,k.applyFormat)(f,{type:'a',attributes:{href:(0,b.decodeEntities)(T)}});return this.value=this.valueToFormat(C),s(this.value),void window.console.log('Created link:\n\n',T)}}o&&o({value:f,onChange:this.onFormatChange,html:p,plainText:u,files:v,activeFormats:h})}},{key:"onFocus",value:function(){this.isTouched=!0;var t=this.props,n=t.unstableOnFocus,o=t.onSelectionChange;n&&n();o(void 0,void 0),this.lastAztecEventType='focus'}},{key:"onBlur",value:function(t){this.isTouched=!1,this.props.onBlur&&this.props.onBlur(t),this.lastAztecEventType='blur'}},{key:"onSelectionChange",value:function(t,n){var o=this.selectionStart!==t||this.selectionEnd!==n;this.selectionStart=t,this.selectionEnd=n;var s='input'!==this.lastAztecEventType&&this.props.value===this.value;if(o&&s){var l=this.createRecord(),h=(0,R.getActiveFormats)(l);this.setState({activeFormats:h})}this.props.onSelectionChange(t,n)}},{key:"onSelectionChangeFromAztec",value:function(t,n,o,s){var l=Math.min(t,n),h=Math.max(t,n);this.removeRootTagsProduceByAztec(H(s.nativeEvent.text))===this.value&&l===this.selectionStart&&h===this.selectionEnd||(this.comesFromAztec=!0,this.firedAfterTextChanged=!0,this.onTextUpdate(s),this.onSelectionChange(l,h),this.lastEventCount=s.nativeEvent.eventCount,this.lastAztecEventType='selection change')}},{key:"isEmpty",value:function(){return(0,_.isEmpty)(this.formatToValue(this.props.value))}},{key:"formatToValue",value:function(t){var n=this.props.preserveWhiteSpace;return Array.isArray(t)?(0,P.create)({html:E.childrenBlock.toHTML(t),multilineTag:this.multilineTag,multilineWrapperTags:this.multilineWrapperTags,preserveWhiteSpace:n}):'string'===this.props.format?(0,P.create)({html:t,multilineTag:this.multilineTag,multilineWrapperTags:this.multilineWrapperTags,preserveWhiteSpace:n}):null===t?(0,P.create)():t}},{key:"shouldComponentUpdate",value:function(t){return t.tagName!==this.props.tagName||t.reversed!==this.props.reversed||t.start!==this.props.start?(this.lastEventCount=void 0,this.value=void 0,!0):(void 0===t.value||void 0===this.props.value||this.comesFromAztec&&this.firedAfterTextChanged||t.value===this.props.value||(void 0!==t.selectionStart&&void 0!==t.selectionEnd&&(this.needsSelectionUpdate=!0),this.lastEventCount=void 0),this.comesFromAztec||void 0!==t.selectionStart&&void 0!==t.selectionEnd&&t.selectionStart!==this.props.selectionStart&&t.selectionStart!==this.selectionStart&&t.__unstableIsSelected&&(this.needsSelectionUpdate=!0,this.lastEventCount=void 0),!0)}},{key:"componentDidMount",value:function(){this.props.blockIsSelected&&!this.props.__unstableMobileNoFocusOnMount&&(this._editor.focus(),this.onSelectionChange(this.props.selectionStart||0,this.props.selectionEnd||0))}},{key:"componentWillUnmount",value:function(){this._editor.isFocused()&&this.props.shouldBlurOnUnmount&&this._editor.blur()}},{key:"componentDidUpdate",value:function(t){this.props.value!==this.value&&(this.value=this.props.value,this.lastEventCount=void 0);var n=this.props.__unstableIsSelected,o=t.__unstableIsSelected;n&&!o?(this._editor.focus(),this.onSelectionChange(this.props.selectionStart||0,this.props.selectionEnd||0)):!n&&o&&this._editor.blur()}},{key:"willTrimSpaces",value:function(t){if('pre'===this.props.tagName)return!1;var n=new RegExp("(\\s+)|(\\s+)",'g'),o=t.match(n);return!!(o&&o.length>0)}},{key:"getHtmlToRender",value:function(t,n){var o=this.valueToFormat(t);if(void 0===o&&(this.lastEventCount=void 0,o=''),!this.isIOS&&''===o)return o;if(n){var s="";"ol"===n&&(this.props.reversed&&(s+=" reversed"),this.props.start&&(s+=" start="+this.props.start)),o="<"+n+" "+s+">"+o+""}return o}},{key:"render",value:function(){var t=this,o=this.props,s=o.tagName,l=o.style,h=o.__unstableIsSelected,c=o.children,u=o.getStylesFromColorScheme,p=o.formatTypes,T=this.getRecord(),C=this.getHtmlToRender(T,s),y=D.default.richText.minHeight;l&&l.minHeight&&(y=l.minHeight);var S=u(D.default.richTextPlaceholder,D.default.richTextPlaceholderDark).color,E=u(D.default.richText,D.default.richTextDark),b=E.color,F=E.textDecorationColor,x=E.fontFamily,k=null;if(this.needsSelectionUpdate&&(this.needsSelectionUpdate=!1,k={start:this.props.selectionStart,end:this.props.selectionEnd},!this.isIOS))if(this.willTrimSpaces(C))console.warn('RichText value will be trimmed for spaces! Avoiding setting the caret position manually.'),k=null;else if(this.props.selectionStart>T.text.length||this.props.selectionEnd>T.text.length)console.warn('Oops, selection will land outside the text, skipping setting it...'),k=null;else{var z=C.match(/(
)+<\/p>$/g);if(z){console.warn('Oops, BR tag(s) at the end of content. Aztec will remove them, adapting the selection...');var R=(z[0].match(/br/g)||[]).length;if(R>0){var _=this.props.selectionStart-R;_<0&&(_=0);var P=this.props.selectionEnd-R;P<0&&(P=0),k={start:_,end:P}}}}return this.comesFromAztec&&(this.comesFromAztec=!1,this.firedAfterTextChanged=!1),(0,n.createElement)(f.View,null,c&&c({isSelected:h,value:T,onChange:this.onFormatChange}),(0,n.createElement)(v.default,{ref:function(n){t._editor=n,t.props.setRef&&t.props.setRef(n)},style:W({},l,{minHeight:Math.max(y,this.state.height)}),text:{text:C,eventCount:this.lastEventCount,selection:k},placeholder:this.props.placeholder,placeholderTextColor:this.props.placeholderTextColor||S,deleteEnter:this.props.deleteEnter,onChange:this.onChange,onFocus:this.onFocus,onBlur:this.onBlur,onEnter:this.handleEnter,onBackspace:this.handleDelete,onPaste:this.onPaste,activeFormats:this.getActiveFormatNames(T),onContentSizeChange:this.onContentSizeChange,onCaretVerticalPositionChange:this.props.onCaretVerticalPositionChange,onSelectionChange:this.onSelectionChangeFromAztec,blockType:{tag:s},color:l&&l.color||b,linkTextColor:F,maxImagesWidth:200,fontFamily:this.props.fontFamily||x,fontSize:this.props.fontSize||l&&l.fontSize,fontWeight:this.props.fontWeight,fontStyle:this.props.fontStyle,disableEditingMenu:this.props.disableEditingMenu,isMultiline:this.isMultiline,textAlign:this.props.textAlign}),h&&(0,n.createElement)(A.default,{formatTypes:p,value:T,onChange:this.onFormatChange}))}}]),o})(n.Component);e.RichText=V,V.defaultProps={format:'string',value:'',tagName:'div'};var L=(0,y.compose)([(0,S.withSelect)(function(t){return{formatTypes:t('core/rich-text').getFormatTypes()}}),y.withPreferredColorScheme])(V);e.default=L},1148,[2,3,18,34,35,42,45,44,48,1149,25,21,353,975,911,1045,1066,1152,881,1154,1108,1115,1116,1123,1112,1138,1131,1122,1127,1155]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=t(r(d[1])).default;e.default=u},1149,[2,1150]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[2]),u=n(r(d[3])),c=n(r(d[4])),l=n(r(d[5])),s=n(r(d[6])),f=n(r(d[7])),p=n(r(d[8])),C=n(r(d[9])),h=n(r(d[10])),v=n(r(d[11])),E=n(r(d[12])),b=n(r(d[13])),y=t(r(d[14])),T=n(r(d[15]));function _(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}var P=y.UIManager.getViewManagerConfig('RCTAztecView'),S=(function(t){function n(){var t,o;(0,s.default)(this,n);for(var u=arguments.length,c=new Array(u),l=0;l1&&void 0!==arguments[1]?arguments[1]:l.isAppleOS;return[].concat((0,u.default)(t(o)),[n.toLowerCase()]).join('+')}});e.rawShortcut=A;var S=(0,o.mapValues)(v,function(t){return function(c){var v,A=arguments.length>1&&void 0!==arguments[1]?arguments[1]:l.isAppleOS,S=A(),E=(v={},(0,n.default)(v,f,S?'\u2325':'Alt'),(0,n.default)(v,s,S?'^':'Ctrl'),(0,n.default)(v,"meta",'\u2318'),(0,n.default)(v,p,S?'\u21e7':'Shift'),v),h=t(A).reduce(function(t,n){var c=(0,o.get)(E,n,n);return[].concat((0,u.default)(t),S?[c]:[c,'+'])},[]),C=(0,o.capitalize)(c);return[].concat((0,u.default)(h),[C])}});e.displayShortcutList=S;var E=(0,o.mapValues)(S,function(t){return function(n){var u=arguments.length>1&&void 0!==arguments[1]?arguments[1]:l.isAppleOS;return t(n,u).join('')}});e.displayShortcut=E;var h=(0,o.mapValues)(v,function(t){return function(v){var A,S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:l.isAppleOS,E=S(),h=(A={},(0,n.default)(A,p,'Shift'),(0,n.default)(A,"meta",E?'Command':'Control'),(0,n.default)(A,s,'Control'),(0,n.default)(A,f,E?'Option':'Alt'),(0,n.default)(A,',',(0,c.__)('Comma')),(0,n.default)(A,'.',(0,c.__)('Period')),(0,n.default)(A,'`',(0,c.__)('Backtick')),A);return[].concat((0,u.default)(t(S)),[v]).map(function(t){return(0,o.capitalize)((0,o.get)(h,t,t))}).join(E?' ':' + ')}});e.shortcutAriaLabel=h;var C=(0,o.mapValues)(v,function(t){return function(n,u){var c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:l.isAppleOS,f=t(c);return!!f.every(function(t){return n[t+"Key"]})&&(u?n.key===u:(0,o.includes)(f,n.key.toLowerCase()))}});e.isKeyboardEvent=C},1152,[2,18,9,21,347,1153]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isAppleOS=function(){return'ios'===n.Platform.OS};var n=r(d[0])},1153,[25]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(o){var v=o.formatTypes,c=o.onChange,s=o.value,b=o.allowedFormats,f=o.withoutInteractiveFormatting;return v.map(function(o){var v=o.name,A=o.edit,p=o.tagName;if(!A)return null;if(b&&-1===b.indexOf(v))return null;if(f&&l.has(p))return null;var O=(0,n.getActiveFormat)(s,v),h=void 0!==O,j=(0,u.getActiveObject)(s),y=void 0!==j&&j.type===v;return(0,t.createElement)(A,{key:v,isActive:h,activeAttributes:h&&O.attributes||{},isObjectActive:y,activeObjectAttributes:y&&j.attributes||{},value:s,onChange:c})})};var t=r(d[0]),n=r(d[1]),u=r(d[2]),l=new Set(['a','audio','button','details','embed','iframe','input','label','select','textarea','video'])},1154,[3,1115,1117]); +__d(function(g,r,i,a,m,e,d){m.exports={richText:{fontFamily:"serif",minHeight:50,color:"#1a1a1a",textDecorationColor:"#016087"},richTextDark:{color:"#fff",textDecorationColor:"#5198d9"},richTextPlaceholder:{color:"#87a6bc"},richTextPlaceholderDark:{color:"#646970"}}},1155,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"ifViewportMatches",{enumerable:!0,get:function(){return u.default}}),Object.defineProperty(e,"withViewportMatch",{enumerable:!0,get:function(){return l.default}}),r(d[1]);var n=t(r(d[2])),u=t(r(d[3])),l=t(r(d[4]));(0,n.default)({huge:1440,wide:1280,large:960,medium:782,small:600,mobile:480},{'<':'max-width','>=':'min-width'})},1156,[2,1157,1161,1162,1163]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),o=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=r(d[2]),c=o(r(d[3])),l=t(r(d[4])),f=t(r(d[5])),s=(0,u.registerStore)('core/viewport',{reducer:c.default,actions:l,selectors:f});e.default=s},1157,[146,2,911,1158,1159,1160]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'SET_IS_MATCHING':return n.values}return t};e.default=t},1158,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.setIsMatching=function(t){return{type:'SET_IS_MATCHING',values:t}}},1159,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.isViewportMatch=function(n,t){-1===t.indexOf(' ')&&(t='>= '+t);return!!n[t]}},1160,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[0]),t=r(d[1]),o=r(d[2]),u=function(n,o){var u=t.Dimensions.get('window').width;if('max-width'===n)return u=o;throw new Error("Unsupported viewport operator: "+n)},c=function(c,f){var s=function(){var t=(0,n.reduce)(c,function(t,o,c){return(0,n.forEach)(f,function(n,f){var s=[f,c].join(' ');t[s]=u(n,o)}),t},{});(0,o.dispatch)('core/viewport').setIsMatching(t)};t.Dimensions.addEventListener('change',s),s()};e.default=c},1161,[21,25,911]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),n=t(r(d[2])),u=function(t){return(0,o.createHigherOrderComponent)((0,o.compose)([(0,n.default)({isViewportMatch:t}),(0,o.ifCondition)(function(t){return t.isViewportMatch})]),'ifViewportMatches')};e.default=u},1162,[2,975,1163]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),n=r(d[1]),o=r(d[2]),u=function(u){return(0,n.createHigherOrderComponent)((0,o.withSelect)(function(n){return(0,t.mapValues)(u,function(t){return n('core/viewport').isViewportMatch(t)})}),'withViewportMatch')};e.default=u},1163,[21,975,911]); +__d(function(g,r,i,a,m,e,d){r(d[0]),r(d[1])},1164,[1165,1167]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.addAttribute=u,e.addSaveProps=p,e.getHTMLRootElementClasses=f,e.addParsedDifference=b;var s=t(r(d[1])),c=r(d[2]),o=t(r(d[3])),l=r(d[4]),n=r(d[5]);function u(t){return(0,n.hasBlockSupport)(t,'customClassName',!0)&&(t.attributes=(0,c.assign)(t.attributes,{className:{type:'string'}})),t}function p(t,s,c){return(0,n.hasBlockSupport)(s,'customClassName',!0)&&c.className&&(t.className=(0,o.default)(t.className,c.className)),t}function f(t){t="
"+t+"
";var s=(0,n.parseWithAttributeSchema)(t,{type:'string',source:'attribute',selector:'[data-custom-class-name] > *',attribute:'class'});return s?s.trim().split(/\s+/):[]}function b(t,o,l){if((0,n.hasBlockSupport)(o,'customClassName',!0)){var u=f((0,n.getSaveContent)(o,t)),p=f(l),b=(0,c.difference)(p,u),v=(0,c.compact)([t.className].concat((0,s.default)(b))).join(' ');v?t.className=v:delete t.className}return t}(0,l.addFilter)('blocks.registerBlockType','core/custom-class-name/attribute',u),(0,l.addFilter)('blocks.getSaveContent.extraProps','core/custom-class-name/save-props',p),(0,l.addFilter)('blocks.getBlockAttributes','core/custom-class-name/addParsedDifference',b)},1165,[2,9,21,1166,960,1045]); +__d(function(g,r,i,a,m,e,d){!(function(){'use strict';var n={}.hasOwnProperty;function t(){for(var f=[],o=0;o>>0===n&&n>=0&&n<=4294967295)return[0,(0,t.integerColor)(n)];if(!n||'none'===n)return null;if('currentColor'===n)return o;var l='string'==typeof n&&n.match(u);if(l)return[1,l[1]];var f=(0,t.default)(n);if('number'==typeof f)return[0,f];return console.warn("\""+n+"\" is not a valid color or brush"),null};var t=n(r(d[1])),u=/^url\(#(.+)\)$/,o=[2]},1177,[146,1178]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(l){if('number'==typeof l)return l>>>0===l&&l>=0&&l<=4294967295?O(l):null;var n='string'==typeof l?I(l):l;if(!Array.isArray(n))return n;var t=n[0],o=n[1],s=n[2],u=n[3],h=((void 0===u?4278190080:Math.round(255*u)<<24)|Math.round(255*t)<<16|Math.round(255*o)<<8|Math.round(255*s))>>>0;return O(h)},e.integerColor=e.colorNames=void 0;var l=r(d[0]),n={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]};for(var t in e.colorNames=n,n)if(n.hasOwnProperty(t)){var o=n[t],s=o[0],u=o[1],h=o[2];n[t]=(4278190080|s<<16|u<<8|h)>>>0}function c(l){var n,t,o,s,u,h=l[0]/360,c=l[1]/100,f=l[2]/100;if(0===c)return[u=255*f,u,u];n=2*f-(t=f<.5?f*(1+c):f+c-f*c),s=[0,0,0];for(var b=0;b<3;b++)(o=h+.3333333333333333*-(b-1))<0&&o++,o>1&&o--,u=6*o<1?n+6*(t-n)*o:2*o<1?t:3*o<2?n+(t-n)*(.6666666666666666-o)*6:n,s[b]=u;return s}function f(l){var n,t,o,s,u,h,c,f=l[0]/360,b=l[1]/100,p=l[2]/100,y=b+p;switch(y>1&&(b/=y,p/=y),t=1-p,o=6*f-(n=Math.floor(6*f)),0!=(1&n)&&(o=1-o),s=b+o*(t-b),n){default:case 6:case 0:u=t,h=s,c=b;break;case 1:u=s,h=t,c=b;break;case 2:u=b,h=t,c=s;break;case 3:u=b,h=s,c=t;break;case 4:u=s,h=b,c=t;break;case 5:u=t,h=b,c=s}return[u,h,c]}function b(l,n,t){return Math.min(Math.max(n,l),t)}Object.freeze(n);var p=/^#([a-f0-9]{3,4})$/i,y=/^#([a-f0-9]{6})([a-f0-9]{2})?$/i,k=/^rgba?\(\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*(?:,\s*([+-]?[\d.]+)\s*)?\)$/,v=/^rgba?\(\s*([+-]?[\d.]+)%\s*,\s*([+-]?[\d.]+)%\s*,\s*([+-]?[\d.]+)%\s*(?:,\s*([+-]?[\d.]+)\s*)?\)$/,w=/(\D+)/;function F(l){var t,o,s,u=[0,0,0,1];if(t=l.match(y)){for(s=t[2],t=t[1],o=0;o<3;o++){var h=2*o;u[o]=parseInt(t.slice(h,h+2),16)/255}s&&(u[3]=Math.round(parseInt(s,16)/255*100)/100)}else if(t=l.match(p)){for(s=(t=t[1])[3],o=0;o<3;o++)u[o]=parseInt(t[o]+t[o],16)/255;s&&(u[3]=Math.round(parseInt(s+s,16)/255*100)/100)}else if(t=l.match(k)){for(o=0;o<3;o++)u[o]=parseInt(t[o+1],0)/255;t[4]&&(u[3]=parseFloat(t[4]))}else{if(!(t=l.match(v)))return(t=l.match(w))?'transparent'===t[1]?[0,0,0,0]:'number'!=typeof(u=n[t[1]])?null:O(u):null;for(o=0;o<3;o++)u[o]=parseFloat(t[o+1])/100;t[4]&&(u[3]=parseFloat(t[4]))}for(o=0;o<4;o++)u[o]=b(u[o],0,1);return u}var M=/^hsla?\(\s*([+-]?(?:\d*\.)?\d+)(?:deg)?\s*,\s*([+-]?[\d.]+)%\s*,\s*([+-]?[\d.]+)%\s*(?:,\s*([+-]?[\d.]+)\s*)?\)$/;function q(l){var n=l.match(M);if(!n)return null;var t=parseFloat(n[4]);return c([(parseFloat(n[1])+360)%360,b(parseFloat(n[2]),0,100),b(parseFloat(n[3]),0,100),b(isNaN(t)?1:t,0,1)])}var N=/^hwb\(\s*([+-]?\d*[.]?\d+)(?:deg)?\s*,\s*([+-]?[\d.]+)%\s*,\s*([+-]?[\d.]+)%\s*(?:,\s*([+-]?[\d.]+)\s*)?\)$/;function $(l){var n=l.match(N);if(!n)return null;var t=parseFloat(n[4]);return f([(parseFloat(n[1])%360+360)%360,b(parseFloat(n[2]),0,100),b(parseFloat(n[3]),0,100),b(isNaN(t)?1:t,0,1)])}function I(l){switch(l.substring(0,3).toLowerCase()){case'hsl':return q(l);case'hwb':return $(l);default:return F(l)}}var O='android'===l.Platform.OS?function(l){return 0|l}:function(l){return l};e.integerColor=O},1178,[25]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(n){var t=+n;return'number'!=typeof t||isNaN(t)?1:t}},1179,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t,h){null!=t.stroke&&h.push('stroke');null!=t.strokeWidth&&h.push('strokeWidth');null!=t.strokeOpacity&&h.push('strokeOpacity');null!=t.strokeDasharray&&h.push('strokeDasharray');null!=t.strokeDashoffset&&h.push('strokeDashoffset');null!=t.strokeLinecap&&h.push('strokeLinecap');null!=t.strokeLinejoin&&h.push('strokeLinejoin');null!=t.strokeMiterlimit&&h.push('strokeMiterlimit');var f=t.stroke,c=t.strokeWidth,p=void 0===c?1:c,y=t.strokeDasharray,v=y&&'none'!==y?(0,n.default)(y):null;return{stroke:(0,o.default)(f),strokeOpacity:(0,s.default)(t.strokeOpacity),strokeLinecap:l[t.strokeLinecap]||0,strokeLinejoin:k[t.strokeLinejoin]||0,strokeDasharray:v&&v.length%2==1?v.concat(v):v,strokeWidth:p,strokeDashoffset:y?+t.strokeDashoffset||0:null,strokeMiterlimit:parseFloat(t.strokeMiterlimit)||4,vectorEffect:u[t.vectorEffect]||0}};var o=t(r(d[1])),s=t(r(d[2])),n=t(r(d[3])),l={butt:0,square:2,round:1},k={miter:0,bevel:2,round:1},u={none:0,default:0,nonScalingStroke:1,'non-scaling-stroke':1,inherit:2,uri:3}},1180,[2,1177,1179,1181]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(u){return Array.isArray(u)?u:'number'==typeof u?[u]:'string'==typeof u?u.trim().replace(n,' ').split(t):[]};var t=/\s+/,n=/,/g},1181,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),e.props2transform=c,e.transformToMatrix=p,e.default=function(t){if(Array.isArray(t))return t;if('string'==typeof t)try{var n=o.default.parse(t);return[n[0],n[3],n[1],n[4],n[2],n[5]]}catch(t){return console.error(t),s.identity}return p(c(t),t.transform)};var s=n(r(d[2])),o=t(r(d[3])),l=new s.default;function f(t){l.appendTransform(t.x+t.originX,t.y+t.originY,t.scaleX,t.scaleY,t.rotation,t.skewX,t.skewY,t.originX,t.originY)}function u(t,n,s,o){var l,f;if('number'==typeof t)l=f=t;else if('string'==typeof t){var u=t.split(/\s*,\s*/);2===u.length?(l=+u[0],f=+u[1]):1===u.length&&(l=f=+u[0])}return n=+n,isNaN(n)||(l=n),s=+s,isNaN(s)||(f=s),[l||o||0,f||o||0]}function c(t){var n=u(t.origin,t.originX,t.originY),s=u(t.scale,t.scaleX,t.scaleY,1),o=u(t.skew,t.skewX,t.skewY),l=u(t.translate,null==t.translateX?t.x||0:t.translateX,null==t.translateY?t.y||0:t.translateY);return{rotation:+t.rotation||0,scaleX:s[0],scaleY:s[1],originX:n[0],originY:n[1],skewX:o[0],skewY:o[1],x:l[0],y:l[1]}}function p(t,n){if(l.reset(),f(t),n)if(Array.isArray(n))'number'==typeof n[0]&&l.append(n[0],n[1],n[2],n[3],n[4],n[5]);else if('string'==typeof n)try{var s=o.default.parse(n);l.append(s[0],s[3],s[1],s[4],s[2],s[5])}catch(t){console.error(t)}else f(c(n));return l.toArray()}},1182,[2,146,1183,1184]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.identity=void 0;var s=t(r(d[1])),h=Math.PI/180,n=[1,0,0,1,0,0];e.identity=n;e.default=function t(){(0,s.default)(this,t),this.reset=function(){this.hasInitialState||(this.a=this.d=1,this.b=this.c=this.tx=this.ty=0,this.hasInitialState=!0)},this.toArray=function(){return this.hasInitialState?n:[this.a,this.b,this.c,this.d,this.tx,this.ty]},this.append=function(t,s,h,n,f,c){if(this.hasInitialState)return this.hasInitialState=!1,this.a=t,this.b=s,this.c=h,this.d=n,this.tx=f,void(this.ty=c);var o=this.a,u=this.b,l=this.c,v=this.d;1===t&&0===s&&0===h&&1===n||(this.a=o*t+l*s,this.b=u*t+v*s,this.c=o*h+l*n,this.d=u*h+v*n),this.tx=o*f+l*c+this.tx,this.ty=u*f+v*c+this.ty},this.appendTransform=function(t,s,n,f,c,o,u,l,v){if(0!==t||0!==s||1!==n||1!==f||0!==c||0!==o||0!==u||0!==l||0!==v){var y,p;if(c%360){var b=c*h;y=Math.cos(b),p=Math.sin(b)}else y=1,p=0;var x=y*n,I=p*n,M=-p*f,S=y*f;if(o||u){var _=Math.tan(u*h),P=Math.tan(o*h);this.append(x+P*I,_*x+I,M+P*S,_*M+S,t,s)}else this.append(x,I,M,S,t,s);(l||v)&&(this.tx-=l*this.a+v*this.c,this.ty-=l*this.b+v*this.d)}},this.reset()}},1183,[2,34]); +__d(function(g,r,i,a,m,e,d){"use strict";function n(t,u,o,f){this.message=t,this.expected=u,this.found=o,this.location=f,this.name="SyntaxError","function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,n)}!(function(n,t){function u(){this.constructor=n}u.prototype=t.prototype,n.prototype=new u})(n,Error),n.buildMessage=function(n,t){var u={literal:function(n){return"\""+f(n.text)+"\""},class:function(n){var t,u="";for(t=0;t0){for(t=1,o=1;tse&&(se=ie,le=[]),le.push(n))}function ve(){var n,t,u,o,s;for(n=ie,t=[],u=Pe();u!==f;)t.push(u),u=Pe();if(t!==f)if((u=Ae())===f&&(u=null),u!==f){for(o=[],s=Pe();s!==f;)o.push(s),s=Pe();o!==f?n=t=c(u):(ie=n,n=f)}else ie=n,n=f;else ie=n,n=f;return n}function Ae(){var n,t,u,o;if(n=ie,(t=xe())!==f){for(u=[],o=ke();o!==f;)u.push(o),o=ke();u!==f&&(o=Ae())!==f?n=t=h(t,o):(ie=n,n=f)}else ie=n,n=f;return n===f&&(n=xe()),n}function xe(){var n;return(n=Ce())===f&&(n=me())===f&&(n=ye())===f&&(n=je())===f&&(n=we())===f&&(n=be()),n}function Ce(){var n,u,o,s,l,c,h,w,b,E,F,M,k;if(n=ie,t.substr(ie,6)===p?(u=p,ie+=6):(u=f,0===ae&&de(v)),u!==f){for(o=[],s=Pe();s!==f;)o.push(s),s=Pe();if(o!==f)if(40===t.charCodeAt(ie)?(s=A,ie++):(s=f,0===ae&&de(x)),s!==f){for(l=[],c=Pe();c!==f;)l.push(c),c=Pe();if(l!==f)if((c=Ee())!==f)if(ke()!==f)if((h=Ee())!==f)if(ke()!==f)if((w=Ee())!==f)if(ke()!==f)if((b=Ee())!==f)if(ke()!==f)if((E=Ee())!==f)if(ke()!==f)if((F=Ee())!==f){for(M=[],k=Pe();k!==f;)M.push(k),k=Pe();M!==f?(41===t.charCodeAt(ie)?(k=C,ie++):(k=f,0===ae&&de(y)),k!==f?n=u=j(c,h,w,b,E,F):(ie=n,n=f)):(ie=n,n=f)}else ie=n,n=f;else ie=n,n=f;else ie=n,n=f;else ie=n,n=f;else ie=n,n=f;else ie=n,n=f;else ie=n,n=f;else ie=n,n=f;else ie=n,n=f;else ie=n,n=f;else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;return n}function me(){var n,u,o,s,l,c,h,p,v;if(n=ie,t.substr(ie,9)===w?(u=w,ie+=9):(u=f,0===ae&&de(b)),u!==f){for(o=[],s=Pe();s!==f;)o.push(s),s=Pe();if(o!==f)if(40===t.charCodeAt(ie)?(s=A,ie++):(s=f,0===ae&&de(x)),s!==f){for(l=[],c=Pe();c!==f;)l.push(c),c=Pe();if(l!==f)if((c=Ee())!==f)if((h=Fe())===f&&(h=null),h!==f){for(p=[],v=Pe();v!==f;)p.push(v),v=Pe();p!==f?(41===t.charCodeAt(ie)?(v=C,ie++):(v=f,0===ae&&de(y)),v!==f?n=u=E(c,h):(ie=n,n=f)):(ie=n,n=f)}else ie=n,n=f;else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;return n}function ye(){var n,u,o,s,l,c,h,p,v;if(n=ie,t.substr(ie,5)===F?(u=F,ie+=5):(u=f,0===ae&&de(M)),u!==f){for(o=[],s=Pe();s!==f;)o.push(s),s=Pe();if(o!==f)if(40===t.charCodeAt(ie)?(s=A,ie++):(s=f,0===ae&&de(x)),s!==f){for(l=[],c=Pe();c!==f;)l.push(c),c=Pe();if(l!==f)if((c=Ee())!==f)if((h=Fe())===f&&(h=null),h!==f){for(p=[],v=Pe();v!==f;)p.push(v),v=Pe();p!==f?(41===t.charCodeAt(ie)?(v=C,ie++):(v=f,0===ae&&de(y)),v!==f?n=u=k(c,h):(ie=n,n=f)):(ie=n,n=f)}else ie=n,n=f;else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;return n}function je(){var n,u,o,s,l,c,h,p,v;if(n=ie,t.substr(ie,6)===S?(u=S,ie+=6):(u=f,0===ae&&de(R)),u!==f){for(o=[],s=Pe();s!==f;)o.push(s),s=Pe();if(o!==f)if(40===t.charCodeAt(ie)?(s=A,ie++):(s=f,0===ae&&de(x)),s!==f){for(l=[],c=Pe();c!==f;)l.push(c),c=Pe();if(l!==f)if((c=Ee())!==f)if((h=Me())===f&&(h=null),h!==f){for(p=[],v=Pe();v!==f;)p.push(v),v=Pe();p!==f?(41===t.charCodeAt(ie)?(v=C,ie++):(v=f,0===ae&&de(y)),v!==f?n=u=I(c,h):(ie=n,n=f)):(ie=n,n=f)}else ie=n,n=f;else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;return n}function we(){var n,u,o,s,l,c,h,p;if(n=ie,t.substr(ie,5)===T?(u=T,ie+=5):(u=f,0===ae&&de(X)),u!==f){for(o=[],s=Pe();s!==f;)o.push(s),s=Pe();if(o!==f)if(40===t.charCodeAt(ie)?(s=A,ie++):(s=f,0===ae&&de(x)),s!==f){for(l=[],c=Pe();c!==f;)l.push(c),c=Pe();if(l!==f)if((c=Ee())!==f){for(h=[],p=Pe();p!==f;)h.push(p),p=Pe();h!==f?(41===t.charCodeAt(ie)?(p=C,ie++):(p=f,0===ae&&de(y)),p!==f?n=u=Y(c):(ie=n,n=f)):(ie=n,n=f)}else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;return n}function be(){var n,u,o,s,l,c,h,p;if(n=ie,t.substr(ie,5)===_?(u=_,ie+=5):(u=f,0===ae&&de(L)),u!==f){for(o=[],s=Pe();s!==f;)o.push(s),s=Pe();if(o!==f)if(40===t.charCodeAt(ie)?(s=A,ie++):(s=f,0===ae&&de(x)),s!==f){for(l=[],c=Pe();c!==f;)l.push(c),c=Pe();if(l!==f)if((c=Ee())!==f){for(h=[],p=Pe();p!==f;)h.push(p),p=Pe();h!==f?(41===t.charCodeAt(ie)?(p=C,ie++):(p=f,0===ae&&de(y)),p!==f?n=u=P(c):(ie=n,n=f)):(ie=n,n=f)}else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;else ie=n,n=f}else ie=n,n=f;return n}function Ee(){var n,t,u,o;return n=ie,t=ie,(u=Ye())===f&&(u=null),u!==f&&(o=Ie())!==f?t=u=[u,o]:(ie=t,t=f),t!==f&&(t=U(t)),(n=t)===f&&(n=ie,t=ie,(u=Ye())===f&&(u=null),u!==f&&(o=Re())!==f?t=u=[u,o]:(ie=t,t=f),t!==f&&(t=q(t)),n=t),n}function Fe(){var n,t;return n=ie,ke()!==f&&(t=Ee())!==f?n=z(t):(ie=n,n=f),n}function Me(){var n,t,u;return n=ie,ke()!==f&&(t=Ee())!==f&&ke()!==f&&(u=Ee())!==f?n=B(t,u):(ie=n,n=f),n}function ke(){var n,t,u,o,s;if(n=ie,t=[],(u=Pe())!==f)for(;u!==f;)t.push(u),u=Pe();else t=f;if(t!==f)if((u=Se())===f&&(u=null),u!==f){for(o=[],s=Pe();s!==f;)o.push(s),s=Pe();o!==f?n=t=[t,u,o]:(ie=n,n=f)}else ie=n,n=f;else ie=n,n=f;if(n===f)if(n=ie,(t=Se())!==f){for(u=[],o=Pe();o!==f;)u.push(o),o=Pe();u!==f?n=t=[t,u]:(ie=n,n=f)}else ie=n,n=f;return n}function Se(){var n;return 44===t.charCodeAt(ie)?(n=D,ie++):(n=f,0===ae&&de(G)),n}function Re(){var n;return ie,(n=_e())!==f&&(n=H(n)),n}function Ie(){var n,t,u,o;return n=ie,t=ie,(u=Te())!==f?((o=Xe())===f&&(o=null),o!==f?t=u=[u,o]:(ie=t,t=f)):(ie=t,t=f),t!==f&&(t=J(t)),(n=t)===f&&(n=ie,t=ie,(u=_e())!==f&&(o=Xe())!==f?t=u=[u,o]:(ie=t,t=f),t!==f&&(t=K(t)),n=t),n}function Te(){var n,u,o,s;return ae++,n=ie,(u=_e())===f&&(u=null),u!==f?(46===t.charCodeAt(ie)?(o=O,ie++):(o=f,0===ae&&de(Q)),o!==f&&(s=_e())!==f?n=u=V(u,s):(ie=n,n=f)):(ie=n,n=f),n===f&&(n=ie,(u=_e())!==f?(46===t.charCodeAt(ie)?(o=O,ie++):(o=f,0===ae&&de(Q)),o!==f?n=u=K(u):(ie=n,n=f)):(ie=n,n=f)),ae--,n===f&&(u=f,0===ae&&de(N)),n}function Xe(){var n,u,o,s;return ie,n=ie,W.test(t.charAt(ie))?(u=t.charAt(ie),ie++):(u=f,0===ae&&de(Z)),u!==f?((o=Ye())===f&&(o=null),o!==f&&(s=_e())!==f?n=u=[u,o,s]:(ie=n,n=f)):(ie=n,n=f),n!==f&&(n=$(n)),n}function Ye(){var n;return ee.test(t.charAt(ie))?(n=t.charAt(ie),ie++):(n=f,0===ae&&de(re)),n}function _e(){var n,t;if(n=[],(t=Le())!==f)for(;t!==f;)n.push(t),t=Le();else n=f;return n}function Le(){var n;return ne.test(t.charAt(ie))?(n=t.charAt(ie),ie++):(n=f,0===ae&&de(te)),n}function Pe(){var n;return ue.test(t.charAt(ie))?(n=t.charAt(ie),ie++):(n=f,0===ae&&de(oe)),n}var Ue,qe,ze,Be=Math.PI/180;if((o=l())!==f&&ie===t.length)return o;throw o!==f&&ie1||Array.isArray(S)?l.Children.map(S,P):S;return{content:null===v?String(S):null,children:v,baselineShift:b,verticalAlign:h,alignmentBaseline:O,font:j(t),x:(0,f.default)(o),y:(0,f.default)(c),dx:(0,f.default)(u),dy:(0,f.default)(s),rotate:(0,f.default)(y)}};var o=n(r(d[2])),l=t(r(d[3])),f=n(r(d[4])),c=r(d[5]);function u(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function s(t){for(var n=1;n0&&void 0!==arguments[0]?arguments[0]:.01,t=this.props,o=t.hsl,s=t.onChange,u=void 0===s?p.noop:s;n=parseInt(100*n,10),u({h:o.h,s:o.s,l:o.l,a:(parseInt(100*o.a,10)+n)/100,source:'rgb'})}},{key:"decrease",value:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:.01,t=this.props,o=t.hsl,s=t.onChange,u=void 0===s?p.noop:s,l=parseInt(100*o.a,10)-parseInt(100*n,10);u({h:o.h,s:o.s,l:o.l,a:o.a<=n?0:l/100,source:'rgb'})}},{key:"handleChange",value:function(n){var t=this.props.onChange,o=void 0===t?p.noop:t,s=(0,w.calculateAlphaChange)(n,this.props,this.container.current);s&&o(s,n)}},{key:"handleMouseDown",value:function(n){this.handleChange(n),window.addEventListener('mousemove',this.handleChange),window.addEventListener('mouseup',this.handleMouseUp)}},{key:"handleMouseUp",value:function(){this.unbindEventListeners()}},{key:"preventKeyEvents",value:function(n){n.keyCode!==v.TAB&&n.preventDefault()}},{key:"unbindEventListeners",value:function(){window.removeEventListener('mousemove',this.handleChange),window.removeEventListener('mouseup',this.handleMouseUp)}},{key:"render",value:function(){var n=this,o=this.props.rgb,s=o.r+","+o.g+","+o.b,u={background:"linear-gradient(to right, rgba("+s+", 0) 0%, rgba("+s+", 1) 100%)"},l={left:100*o.a+"%"},h={up:function(){return n.increase()},right:function(){return n.increase()},'shift+up':function(){return n.increase(.1)},'shift+right':function(){return n.increase(.1)},pageup:function(){return n.increase(.1)},end:function(){return n.increase(1)},down:function(){return n.decrease()},left:function(){return n.decrease()},'shift+down':function(){return n.decrease(.1)},'shift+left':function(){return n.decrease(.1)},pagedown:function(){return n.decrease(.1)},home:function(){return n.decrease(1)}};return(0,t.createElement)(y.default,{shortcuts:h},(0,t.createElement)("div",{className:"components-color-picker__alpha"},(0,t.createElement)("div",{className:"components-color-picker__alpha-gradient",style:u}),(0,t.createElement)("div",{className:"components-color-picker__alpha-bar",ref:this.container,onMouseDown:this.handleMouseDown,onTouchMove:this.handleChange,onTouchStart:this.handleChange},(0,t.createElement)("div",{tabIndex:"0",role:"slider","aria-valuemax":"1","aria-valuemin":"0","aria-valuenow":o.a,"aria-orientation":"horizontal","aria-label":(0,f.__)('Alpha value, from 0 (transparent) to 1 (fully opaque).'),className:"components-color-picker__alpha-pointer",style:l,onKeyDown:this.preventKeyEvents}))))}}]),b})(t.Component);e.Alpha=k;var C=(0,b.pure)(k);e.default=C},1224,[2,3,34,35,42,45,44,48,21,347,1152,975,1225,1226]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.colorToState=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},h=arguments.length>1&&void 0!==arguments[1]&&arguments[1],l=t.hex?(0,n.default)(t.hex):(0,n.default)(t),o=l.toHsl();o.h=Math.round(o.h),o.s=Math.round(100*o.s),o.l=Math.round(100*o.l);var u=l.toHsv();u.h=Math.round(u.h),u.s=Math.round(100*u.s),u.v=Math.round(100*u.v);var s=l.toRgb(),c=l.toHex();0===o.s&&(o.h=h||0,u.h=h||0);var f='000000'===c&&0===s.a;return{color:l,hex:f?'transparent':"#"+c,hsl:o,hsv:u,oldHue:t.h||h||o.h,rgb:s,source:t.source}},e.isValidHex=function(t){var h='#'===String(t).charAt(0)?1:0;return t.length!==4+h&&t.length<7+h&&(0,n.default)(t).isValid()},e.simpleCheckForValidColor=function(t){var n=0,l=0;return(0,h.each)(['r','g','b','a','h','s','l','v'],function(h){t[h]&&(n+=1,isNaN(t[h])||(l+=1))}),n===l&&t},e.calculateAlphaChange=function(t,h,n){var o=l(t,n),u=o.left,s=o.width,c=u<0?0:Math.round(100*u/s)/100;if(h.hsl.a!==c)return{h:h.hsl.h,s:h.hsl.s,l:h.hsl.l,a:c,source:'rgb'};return null},e.calculateHueChange=function(t,h,n){var o=l(t,n),u=o.left,s=o.width,c=u>=s?359:100*u/s*360/100;if(h.hsl.h!==c)return{h:c,s:h.hsl.s,l:h.hsl.l,a:h.hsl.a,source:'rgb'};return null},e.calculateSaturationChange=function(t,h,n){var o=l(t,n),u=o.top,s=o.left,c=o.width,f=o.height,v=s<0?0:100*s/c,p=u>=f?0:-100*u/f+100;p<1&&(p=0);return{h:h.hsl.h,s:v,v:p,a:h.hsl.a,source:'rgb'}};var h=r(d[1]),n=t(r(d[2]));function l(t,h){t.preventDefault();var n=h.getBoundingClientRect(),l=n.left,o=n.top,u=n.width,s=n.height,c='number'==typeof t.pageX?t.pageX:t.touches[0].pageX,f='number'==typeof t.pageY?t.pageY:t.touches[0].pageY,v=c-(l+window.pageXOffset),p=f-(o+window.pageYOffset);return v<0?v=0:v>u?v=u:p<0?p=0:p>s&&(p=s),{top:p,left:v,width:u,height:s}}},1225,[2,21,1057]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=function(){return null};e.default=u},1226,[]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.Hue=void 0;var t=r(d[1]),o=n(r(d[2])),s=n(r(d[3])),u=n(r(d[4])),c=n(r(d[5])),l=n(r(d[6])),h=n(r(d[7])),f=r(d[8]),p=r(d[9]),v=r(d[10]),w=r(d[11]),_=r(d[12]),y=n(r(d[13])),b=n(r(d[14])),k=(function(n){function p(){var n;return(0,o.default)(this,p),(n=(0,u.default)(this,(0,c.default)(p).apply(this,arguments))).container=(0,t.createRef)(),n.increase=n.increase.bind((0,l.default)(n)),n.decrease=n.decrease.bind((0,l.default)(n)),n.handleChange=n.handleChange.bind((0,l.default)(n)),n.handleMouseDown=n.handleMouseDown.bind((0,l.default)(n)),n.handleMouseUp=n.handleMouseUp.bind((0,l.default)(n)),n}return(0,h.default)(p,n),(0,s.default)(p,[{key:"componentWillUnmount",value:function(){this.unbindEventListeners()}},{key:"increase",value:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,t=this.props,o=t.hsl,s=t.onChange;(void 0===s?f.noop:s)({h:o.h+n>=359?359:o.h+n,s:o.s,l:o.l,a:o.a,source:'rgb'})}},{key:"decrease",value:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,t=this.props,o=t.hsl,s=t.onChange;(void 0===s?f.noop:s)({h:o.h<=n?0:o.h-n,s:o.s,l:o.l,a:o.a,source:'rgb'})}},{key:"handleChange",value:function(n){var t=this.props.onChange,o=void 0===t?f.noop:t,s=(0,_.calculateHueChange)(n,this.props,this.container.current);s&&o(s,n)}},{key:"handleMouseDown",value:function(n){this.handleChange(n),window.addEventListener('mousemove',this.handleChange),window.addEventListener('mouseup',this.handleMouseUp)}},{key:"handleMouseUp",value:function(){this.unbindEventListeners()}},{key:"preventKeyEvents",value:function(n){n.keyCode!==w.TAB&&n.preventDefault()}},{key:"unbindEventListeners",value:function(){window.removeEventListener('mousemove',this.handleChange),window.removeEventListener('mouseup',this.handleMouseUp)}},{key:"render",value:function(){var n=this,o=this.props,s=o.hsl,u=void 0===s?{}:s,c=o.instanceId,l={left:100*u.h/360+"%"},h={up:function(){return n.increase()},right:function(){return n.increase()},'shift+up':function(){return n.increase(10)},'shift+right':function(){return n.increase(10)},pageup:function(){return n.increase(10)},end:function(){return n.increase(359)},down:function(){return n.decrease()},left:function(){return n.decrease()},'shift+down':function(){return n.decrease(10)},'shift+left':function(){return n.decrease(10)},pagedown:function(){return n.decrease(10)},home:function(){return n.decrease(359)}};return(0,t.createElement)(y.default,{shortcuts:h},(0,t.createElement)("div",{className:"components-color-picker__hue"},(0,t.createElement)("div",{className:"components-color-picker__hue-gradient"}),(0,t.createElement)("div",{className:"components-color-picker__hue-bar",ref:this.container,onMouseDown:this.handleMouseDown,onTouchMove:this.handleChange,onTouchStart:this.handleChange},(0,t.createElement)("div",{tabIndex:"0",role:"slider","aria-valuemax":"1","aria-valuemin":"359","aria-valuenow":u.h,"aria-orientation":"horizontal","aria-label":(0,v.__)('Hue value in degrees, from 0 to 359.'),"aria-describedby":"components-color-picker__hue-description-"+c,className:"components-color-picker__hue-pointer",style:l,onKeyDown:this.preventKeyEvents}),(0,t.createElement)(b.default,{as:"p",id:"components-color-picker__hue-description-"+c},(0,v.__)('Move the arrow left or right to change hue.')))))}}]),p})(t.Component);e.Hue=k;var E=(0,p.compose)(p.pure,p.withInstanceId)(k);e.default=E},1227,[2,3,34,35,42,45,44,48,21,975,347,1152,1225,1226,1228]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1])),o=t(r(d[2])),c=r(d[3]);function s(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function u(t){for(var o=1;o4&&(0,E.isValidHex)(t)?s({source:u,state:'commit',value:t,valueKey:n}):s({source:u,state:'draft',value:t,valueKey:n})}},{key:"handleKeyDown",value:function(t){var l=t.keyCode;if(l===C.ENTER||l===C.UP||l===C.DOWN){var n=this.props,s=n.value,u=n.valueKey;(0,n.onChange)({source:n.source,state:'commit',value:s,valueKey:u})}}},{key:"render",value:function(){var t=this,u=this.props,o=u.label,h=u.value,v=(0,s.default)(u,["label","value"]);return(0,l.createElement)(K.default,(0,n.default)({className:"components-color-picker__inputs-field",label:o,value:h,onChange:function(l){return t.handleChange(l)},onBlur:this.handleBlur,onKeyDown:this.handleKeyDown},(0,f.omit)(v,['onChange','valueKey','source'])))}}]),y})(l.Component);e.Input=x;var V=(0,w.pure)(_.default),D=(function(t){function n(t){var l,s=t.hsl;(0,u.default)(this,n),l=(0,h.default)(this,(0,v.default)(n).apply(this,arguments));var o=1===s.a?'hex':'rgb';return l.state={view:o},l.toggleViews=l.toggleViews.bind((0,c.default)(l)),l.resetDraftValues=l.resetDraftValues.bind((0,c.default)(l)),l.handleChange=l.handleChange.bind((0,c.default)(l)),l.normalizeValue=l.normalizeValue.bind((0,c.default)(l)),l}return(0,p.default)(n,t),(0,o.default)(n,[{key:"toggleViews",value:function(){'hex'===this.state.view?(this.setState({view:'rgb'},this.resetDraftValues),(0,y.speak)((0,b.__)('RGB mode active'))):'rgb'===this.state.view?(this.setState({view:'hsl'},this.resetDraftValues),(0,y.speak)((0,b.__)('Hue/saturation/lightness mode active'))):'hsl'===this.state.view&&(1===this.props.hsl.a?(this.setState({view:'hex'},this.resetDraftValues),(0,y.speak)((0,b.__)('Hex color mode active'))):(this.setState({view:'rgb'},this.resetDraftValues),(0,y.speak)((0,b.__)('RGB mode active'))))}},{key:"resetDraftValues",value:function(){return this.props.onChange({state:'reset'})}},{key:"normalizeValue",value:function(t,l){return'a'!==t?l:l<0?0:l>1?1:Math.round(100*l)/100}},{key:"handleChange",value:function(t){var l=t.source,n=t.state,s=t.value,u=t.valueKey;this.props.onChange({source:l,state:n,valueKey:u,value:this.normalizeValue(u,s)})}},{key:"renderFields",value:function(){var t=this.props.disableAlpha,n=void 0!==t&&t;return'hex'===this.state.view?(0,l.createElement)("div",{className:"components-color-picker__inputs-fields"},(0,l.createElement)(x,{source:this.state.view,label:(0,b.__)('Color value in hexadecimal'),valueKey:"hex",value:this.props.hex,onChange:this.handleChange})):'rgb'===this.state.view?(0,l.createElement)("fieldset",null,(0,l.createElement)(k.default,{as:"legend"},(0,b.__)('Color value in RGB')),(0,l.createElement)("div",{className:"components-color-picker__inputs-fields"},(0,l.createElement)(x,{source:this.state.view,label:"r",valueKey:"r",value:this.props.rgb.r,onChange:this.handleChange,type:"number",min:"0",max:"255"}),(0,l.createElement)(x,{source:this.state.view,label:"g",valueKey:"g",value:this.props.rgb.g,onChange:this.handleChange,type:"number",min:"0",max:"255"}),(0,l.createElement)(x,{source:this.state.view,label:"b",valueKey:"b",value:this.props.rgb.b,onChange:this.handleChange,type:"number",min:"0",max:"255"}),n?null:(0,l.createElement)(x,{source:this.state.view,label:"a",valueKey:"a",value:this.props.rgb.a,onChange:this.handleChange,type:"number",min:"0",max:"1",step:"0.05"}))):'hsl'===this.state.view?(0,l.createElement)("fieldset",null,(0,l.createElement)(k.default,{as:"legend"},(0,b.__)('Color value in HSL')),(0,l.createElement)("div",{className:"components-color-picker__inputs-fields"},(0,l.createElement)(x,{source:this.state.view,label:"h",valueKey:"h",value:this.props.hsl.h,onChange:this.handleChange,type:"number",min:"0",max:"359"}),(0,l.createElement)(x,{source:this.state.view,label:"s",valueKey:"s",value:this.props.hsl.s,onChange:this.handleChange,type:"number",min:"0",max:"100"}),(0,l.createElement)(x,{source:this.state.view,label:"l",valueKey:"l",value:this.props.hsl.l,onChange:this.handleChange,type:"number",min:"0",max:"100"}),n?null:(0,l.createElement)(x,{source:this.state.view,label:"a",valueKey:"a",value:this.props.hsl.a,onChange:this.handleChange,type:"number",min:"0",max:"1",step:"0.05"}))):void 0}},{key:"render",value:function(){return(0,l.createElement)("div",{className:"components-color-picker__inputs-wrapper"},this.renderFields(),(0,l.createElement)("div",{className:"components-color-picker__inputs-toggle"},(0,l.createElement)(V,{icon:"arrow-down-alt2",label:(0,b.__)('Change color format'),onClick:this.toggleViews})))}}],[{key:"getDerivedStateFromProps",value:function(t,l){return 1!==t.hsl.a&&'hex'===l.view?{view:'rgb'}:null}}]),n})(l.Component);e.Inputs=D;var B=D;e.default=B},1230,[2,3,16,19,34,35,42,45,44,48,21,1231,347,1152,975,1233,1238,1228,1225]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.speak=void 0;var o=n(r(d[1]));e.speak=function(n,t){n=(0,o.default)(n)}},1231,[2,1232]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t='',u=function(u){return u=u.replace(/<[^<>]+>/g,' '),t===u&&(u+="\xa0"),t=u,u};e.default=u},1232,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),o=t(r(d[2])),n=t(r(d[3])),s=t(r(d[4])),c=r(d[5]),u=t(r(d[6])),f=t(r(d[7])),b=t(r(d[8]));var h=(0,l.forwardRef)(function(t,h){var v=t.icon,p=t.children,_=t.label,z=t.className,E=t.tooltip,N=t.shortcut,P=t.labelPosition,x=t.size,y=(0,n.default)(t,["icon","children","label","className","tooltip","shortcut","labelPosition","size"]),j=(0,s.default)('components-icon-button',z,{'has-text':p}),w=E||_,A=!y.disabled&&(E||N||!!_&&(!p||(0,c.isArray)(p)&&!p.length)&&!1!==E),M=(0,l.createElement)(f.default,(0,o.default)({"aria-label":_},y,{className:j,ref:h}),(0,l.createElement)(b.default,{icon:v,size:x}),p);return A&&(M=(0,l.createElement)(u.default,{text:w,shortcut:N,position:P},M)),M});e.default=h},1233,[2,3,16,19,1166,21,1234,1235,1236]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[0]),l=function(l){return n.Children.only(l.children)};e.default=l},1234,[3]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.Button=p,e.default=void 0;var n=r(d[1]),o=t(r(d[2])),c=r(d[3]),l=r(d[4]);function s(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function b(t){for(var n=1;n0&&void 0!==arguments[0]?arguments[0]:.01,n=this.props,o=n.hsv,u=n.onChange,s=void 0===u?v.noop:u,h=(0,v.clamp)(o.s+Math.round(100*t),0,100);s({h:o.h,s:h,v:o.v,a:o.a,source:'rgb'})}},{key:"brighten",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:.01,n=this.props,o=n.hsv,u=n.onChange,s=void 0===u?v.noop:u,h=(0,v.clamp)(o.v+Math.round(100*t),0,100);s({h:o.h,s:o.s,v:h,a:o.a,source:'rgb'})}},{key:"handleChange",value:function(t){var n=this.props.onChange,o=void 0===n?v.noop:n,u=(0,w.calculateSaturationChange)(t,this.props,this.container.current);this.throttle(o,u,t)}},{key:"handleMouseDown",value:function(t){this.handleChange(t),window.addEventListener('mousemove',this.handleChange),window.addEventListener('mouseup',this.handleMouseUp)}},{key:"handleMouseUp",value:function(){this.unbindEventListeners()}},{key:"preventKeyEvents",value:function(t){t.keyCode!==p.TAB&&t.preventDefault()}},{key:"unbindEventListeners",value:function(){window.removeEventListener('mousemove',this.handleChange),window.removeEventListener('mouseup',this.handleMouseUp)}},{key:"render",value:function(){var t=this,o=this.props,u=o.hsv,s=o.hsl,h=o.instanceId,l={top:100-u.v+"%",left:u.s+"%"},c={up:function(){return t.brighten()},'shift+up':function(){return t.brighten(.1)},pageup:function(){return t.brighten(1)},down:function(){return t.brighten(-.01)},'shift+down':function(){return t.brighten(-.1)},pagedown:function(){return t.brighten(-1)},right:function(){return t.saturate()},'shift+right':function(){return t.saturate(.1)},end:function(){return t.saturate(1)},left:function(){return t.saturate(-.01)},'shift+left':function(){return t.saturate(-.1)},home:function(){return t.saturate(-1)}};return(0,n.createElement)(y.default,{shortcuts:c},(0,n.createElement)("div",{style:{background:"hsl("+s.h+",100%, 50%)"},className:"components-color-picker__saturation-color",ref:this.container,onMouseDown:this.handleMouseDown,onTouchMove:this.handleChange,onTouchStart:this.handleChange,role:"application"},(0,n.createElement)("div",{className:"components-color-picker__saturation-white"}),(0,n.createElement)("div",{className:"components-color-picker__saturation-black"}),(0,n.createElement)(k.default,{"aria-label":(0,f.__)('Choose a shade'),"aria-describedby":"color-picker-saturation-"+h,className:"components-color-picker__saturation-pointer",style:l,onKeyDown:this.preventKeyEvents}),(0,n.createElement)(_.default,{id:"color-picker-saturation-"+h},(0,f.__)('Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.'))))}}]),b})(n.Component);e.Saturation=C;var E=(0,b.compose)(b.pure,b.withInstanceId)(C);e.default=E},1243,[2,3,34,35,42,45,44,48,21,347,1152,975,1225,1235,1226,1228]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=_;var n=r(d[1]),c=t(r(d[2])),o=t(r(d[3])),l=t(r(d[4])),s=t(r(d[5])),u=t(r(d[6])),p=t(r(d[7])),f=t(r(d[8]));function _(t){var c=t.actions,o=t.className,s=t.options,u=t.children;return(0,n.createElement)("div",{className:(0,l.default)('components-circular-option-picker',o)},s,u,c&&(0,n.createElement)("div",{className:"components-circular-option-picker__custom-clear-wrapper"},c))}_.Option=function(t){var u=t.className,_=t.isSelected,v=t.tooltipText,N=(0,o.default)(t,["className","isSelected","tooltipText"]),k=(0,n.createElement)(s.default,(0,c.default)({isPressed:_,className:(0,l.default)(u,'components-circular-option-picker__option')},N));return(0,n.createElement)("div",{className:"components-circular-option-picker__option-wrapper"},v?(0,n.createElement)(p.default,{text:v},k):k,_&&(0,n.createElement)(f.default,{icon:"saved"}))},_.ButtonAction=function(t){var u=t.className,p=t.children,f=(0,o.default)(t,["className","children"]);return(0,n.createElement)(s.default,(0,c.default)({className:(0,l.default)('components-circular-option-picker__clear',u),isSmall:!0,isSecondary:!0},f),p)},_.DropdownLinkAction=function(t){var o=t.buttonProps,p=t.className,f=t.dropdownProps,_=t.linkText;return(0,n.createElement)(u.default,(0,c.default)({className:(0,l.default)('components-circular-option-picker__dropdown-link-action',p),renderToggle:function(t){var l=t.isOpen,u=t.onToggle;return(0,n.createElement)(s.default,(0,c.default)({"aria-expanded":l,onClick:u,isLink:!0},o),_)}},f))}},1244,[2,3,16,19,1166,1235,1245,1234,1237]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),o=t(r(d[2])),s=t(r(d[3])),l=t(r(d[4])),u=t(r(d[5])),p=t(r(d[6])),f=t(r(d[7])),c=(function(t){function c(){var t;return(0,o.default)(this,c),(t=(0,l.default)(this,(0,u.default)(c).apply(this,arguments))).toggle=t.toggle.bind((0,p.default)(t)),t.close=t.close.bind((0,p.default)(t)),t.state={isOpen:!1},t}return(0,f.default)(c,t),(0,s.default)(c,[{key:"componentWillUnmount",value:function(){var t=this.state.isOpen,n=this.props.onToggle;t&&n&&n(!1)}},{key:"componentDidUpdate",value:function(t,n){var o=this.state.isOpen,s=this.props.onToggle;n.isOpen!==o&&s&&s(o)}},{key:"toggle",value:function(){this.setState(function(t){return{isOpen:!t.isOpen}})}},{key:"close",value:function(){this.setState({isOpen:!1})}},{key:"render",value:function(){var t=this.state.isOpen,o=this.props,s=o.renderContent,l=o.renderToggle,u={isOpen:t,onToggle:this.toggle,onClose:this.close};return(0,n.createElement)(n.Fragment,null,l(u),t&&s(u))}}]),c})(n.Component);e.default=c},1245,[2,3,34,35,42,45,44,48]); +__d(function(g,r,i,a,m,e,d){var l=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[1]),c=l(r(d[2])),s=l(r(d[3])),u=l(r(d[4])),n=l(r(d[5])),f=l(r(d[6]));var b=function(l){var b=l.className,o=l.__experimentalAccessibilityLabel,_=(0,s.default)(l,["className","__experimentalAccessibilityLabel"]);return o?(0,t.createElement)(f.default,(0,c.default)({className:(0,u.default)('components-accessible-toolbar',b),accessibilityLabel:o},_)):(0,t.createElement)(n.default,(0,c.default)({},_,{className:b}))};e.default=b},1246,[2,3,16,19,1166,1247,1256]); +__d(function(g,r,i,a,m,e,d){var l=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[1]),n=l(r(d[2])),o=l(r(d[3])),u=l(r(d[4])),c=r(d[5]),s=l(r(d[6])),f=l(r(d[7])),v=l(r(d[8])),p=l(r(d[9]));var h=function(l){var h=l.controls,N=void 0===h?[]:h,b=l.children,y=l.className,C=l.isCollapsed,_=l.icon,E=l.title,j=(0,o.default)(l,["controls","children","className","isCollapsed","icon","title"]),A=(0,t.useContext)(p.default);if(!(N&&N.length||b))return null;var M=(0,u.default)(A?'components-toolbar-group':'components-toolbar',y),k=N;return Array.isArray(k[0])||(k=[k]),C?(0,t.createElement)(v.default,(0,n.default)({icon:_,label:E,controls:k,className:M,children:b},j)):(0,t.createElement)(f.default,(0,n.default)({className:M},j),(0,c.flatMap)(k,function(l,o){return l.map(function(l,u){return(0,t.createElement)(s.default,(0,n.default)({key:[o,u].join(),containerClassName:o>0&&0===u?'has-left-divider':null},l))})}),b)};e.default=h},1247,[2,3,16,19,1166,21,1248,1252,1254,1249]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),s=t(r(d[2])),c=t(r(d[3])),o=t(r(d[4])),n=t(r(d[5])),u=t(r(d[6])),f=t(r(d[7]));var b=function(t){var b=t.containerClassName,p=t.icon,v=t.title,_=t.shortcut,N=t.subscript,C=t.onClick,P=t.className,h=t.isActive,E=t.isDisabled,k=t.extraProps,x=t.children,j=(0,l.useContext)(n.default),y=(0,l.createElement)(o.default,(0,s.default)({icon:p,label:v,shortcut:_,"data-subscript":N,onClick:function(t){t.stopPropagation(),C&&C(t)},className:(0,c.default)('components-toolbar__control',P),isPressed:h,disabled:E},k));return j?(0,l.createElement)(u.default,{className:b},y):(0,l.createElement)(f.default,{className:b},y,x)};e.default=b},1248,[2,3,16,1166,1233,1249,1250,1251]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=(0,r(d[0]).createContext)();e.default=t},1249,[3]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=t(r(d[1])).default;e.default=u},1250,[2,1251]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[0]),t=r(d[1]);e.default=function(l){return(0,n.createElement)(t.View,null,l.children)}},1251,[3,25]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=r(d[2]),o=r(d[3]),c=t(r(d[4])),u=(0,o.withPreferredColorScheme)(function(t){var o=t.getStylesFromColorScheme,u=t.passedStyle,f=t.children;return(0,l.createElement)(n.View,{style:[o(c.default.container,c.default.containerDark),u]},f)});e.default=u},1252,[2,3,25,975,1253]); +__d(function(g,r,i,a,m,e,d){m.exports={container:{flexDirection:"row",borderLeftWidth:1,borderColor:"#e9eff3",paddingLeft:5,paddingRight:5},containerDark:{borderColor:"#525354"}}},1253,[]); +__d(function(g,r,i,a,m,e,d){var l=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),t=l(r(d[2]));var n=function(l){var n=l.controls,c=void 0===n?[]:n,s=l.className,u=l.icon,v=l.label;return(0,o.createElement)(t.default,{hasArrowIndicator:!0,icon:u,label:v,controls:c,className:s})};e.default=n},1254,[2,3,1255]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=function(){return null};e.default=u},1255,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[0]),t=r(d[1]),l=function(l){var u=l.children;return(0,n.createElement)(t.View,null,u)};e.default=l},1256,[3,25]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var f=t.progress+'%';return(0,n.createElement)(u.View,{style:[l.default.spinner,{width:f}]})};var n=r(d[1]),u=r(d[2]),l=t(r(d[3]))},1257,[2,3,25,1258]); +__d(function(g,r,i,a,m,e,d){m.exports={spinner:{height:6,backgroundColor:"#0087be"}}},1258,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),e.createSlotFill=function(t){var n=function(n){return(0,u.createElement)(f.default,(0,l.default)({name:t},n))};n.displayName=t+'Fill';var c=function(n){return(0,u.createElement)(o.default,(0,l.default)({name:t},n))};return c.displayName=t+'Slot',{Fill:n,Slot:c}},Object.defineProperty(e,"Slot",{enumerable:!0,get:function(){return o.default}}),Object.defineProperty(e,"Fill",{enumerable:!0,get:function(){return f.default}}),Object.defineProperty(e,"Provider",{enumerable:!0,get:function(){return c.default}}),Object.defineProperty(e,"Consumer",{enumerable:!0,get:function(){return c.Consumer}});var u=r(d[2]),l=n(r(d[3])),o=n(r(d[4])),f=n(r(d[5])),c=t(r(d[6]))},1259,[146,2,3,16,1260,1262,1261]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),l=t(r(d[2])),o=t(r(d[3])),u=t(r(d[4])),s=t(r(d[5])),c=t(r(d[6])),f=t(r(d[7])),p=t(r(d[8])),h=r(d[9]),v=r(d[10]),y=(function(t){function l(){var t;return(0,o.default)(this,l),(t=(0,s.default)(this,(0,c.default)(l).apply(this,arguments))).bindNode=t.bindNode.bind((0,f.default)(t)),t}return(0,p.default)(l,t),(0,u.default)(l,[{key:"componentDidMount",value:function(){(0,this.props.registerSlot)(this.props.name,this)}},{key:"componentWillUnmount",value:function(){(0,this.props.unregisterSlot)(this.props.name,this)}},{key:"componentDidUpdate",value:function(t){var n=this.props,l=n.name,o=n.unregisterSlot,u=n.registerSlot;t.name!==l&&(o(t.name),u(l,this))}},{key:"bindNode",value:function(t){this.node=t}},{key:"render",value:function(){var t=this.props,l=t.children,o=t.name,u=t.bubblesVirtually,s=void 0!==u&&u,c=t.fillProps,f=void 0===c?{}:c,p=t.getFills,v=t.className;if(s)return(0,n.createElement)("div",{ref:this.bindNode,className:v});var y=(0,h.map)(p(o,this),function(t){var l=t.occurrence,o=(0,h.isFunction)(t.children)?t.children(f):t.children;return n.Children.map(o,function(t,o){if(!t||(0,h.isString)(t))return t;var u=l+"---"+(t.key||o);return(0,n.cloneElement)(t,{key:u})})}).filter((0,h.negate)(n.isEmptyElement));return(0,n.createElement)(n.Fragment,null,(0,h.isFunction)(l)?l(y):y)}}]),l})(n.Component),b=function(t){return(0,n.createElement)(v.Consumer,null,function(o){var u=o.registerSlot,s=o.unregisterSlot,c=o.getFills;return(0,n.createElement)(y,(0,l.default)({},t,{registerSlot:u,unregisterSlot:s,getFills:c}))})};e.default=b},1260,[2,3,16,34,35,42,45,44,48,21,1261]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.Consumer=e.default=e.useSlot=void 0;var l=r(d[1]),s=t(r(d[2])),n=t(r(d[3])),u=t(r(d[4])),o=t(r(d[5])),f=t(r(d[6])),c=t(r(d[7])),h=t(r(d[8])),S=t(r(d[9])),v=r(d[10]),F=(0,l.createContext)({registerSlot:function(){},unregisterSlot:function(){},registerFill:function(){},unregisterFill:function(){},getSlot:function(){},getFills:function(){},subscribe:function(){}}),b=F.Provider,y=F.Consumer;e.Consumer=y;var p=(function(t){function s(){var t;return(0,u.default)(this,s),(t=(0,f.default)(this,(0,c.default)(s).apply(this,arguments))).registerSlot=t.registerSlot.bind((0,h.default)(t)),t.registerFill=t.registerFill.bind((0,h.default)(t)),t.unregisterSlot=t.unregisterSlot.bind((0,h.default)(t)),t.unregisterFill=t.unregisterFill.bind((0,h.default)(t)),t.getSlot=t.getSlot.bind((0,h.default)(t)),t.getFills=t.getFills.bind((0,h.default)(t)),t.hasFills=t.hasFills.bind((0,h.default)(t)),t.subscribe=t.subscribe.bind((0,h.default)(t)),t.slots={},t.fills={},t.listeners=[],t.contextValue={registerSlot:t.registerSlot,unregisterSlot:t.unregisterSlot,registerFill:t.registerFill,unregisterFill:t.unregisterFill,getSlot:t.getSlot,getFills:t.getFills,hasFills:t.hasFills,subscribe:t.subscribe},t}return(0,S.default)(s,t),(0,o.default)(s,[{key:"registerSlot",value:function(t,l){var s=this.slots[t];this.slots[t]=l,this.triggerListeners(),this.forceUpdateSlot(t),s&&s.forceUpdate()}},{key:"registerFill",value:function(t,l){this.fills[t]=[].concat((0,n.default)(this.fills[t]||[]),[l]),this.forceUpdateSlot(t)}},{key:"unregisterSlot",value:function(t,l){this.slots[t]===l&&(delete this.slots[t],this.triggerListeners())}},{key:"unregisterFill",value:function(t,l){this.fills[t]=(0,v.without)(this.fills[t],l),this.resetFillOccurrence(t),this.forceUpdateSlot(t)}},{key:"getSlot",value:function(t){return this.slots[t]}},{key:"getFills",value:function(t,l){return this.slots[t]!==l?[]:(0,v.sortBy)(this.fills[t],'occurrence')}},{key:"hasFills",value:function(t){return this.fills[t]&&!!this.fills[t].length}},{key:"resetFillOccurrence",value:function(t){(0,v.forEach)(this.fills[t],function(t){t.occurrence=void 0})}},{key:"forceUpdateSlot",value:function(t){var l=this.getSlot(t);l&&l.forceUpdate()}},{key:"triggerListeners",value:function(){this.listeners.forEach(function(t){return t()})}},{key:"subscribe",value:function(t){var l=this;return this.listeners.push(t),function(){l.listeners=(0,v.without)(l.listeners,t)}}},{key:"render",value:function(){return(0,l.createElement)(b,{value:this.contextValue},this.props.children)}}]),s})(l.Component);e.useSlot=function(t){var n=(0,l.useContext)(F),u=n.getSlot,o=n.subscribe,f=(0,l.useState)(u(t)),c=(0,s.default)(f,2),h=c[0],S=c[1];return(0,l.useEffect)(function(){return S(u(t)),o(function(){S(u(t))})},[t]),h};var k=p;e.default=k},1261,[2,3,5,9,34,35,42,45,44,48,21]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[1]),u=n(r(d[2])),c=r(d[3]),l=r(d[4]),o=0;function f(n){var u=n.name,f=n.children,s=n.registerFill,p=n.unregisterFill,b=(0,l.useSlot)(u),v=(0,t.useRef)({name:u,children:f});return v.current.occurrence||(v.current.occurrence=++o),(0,t.useLayoutEffect)(function(){return s(u,v.current),function(){return p(u,v.current)}},[]),(0,t.useLayoutEffect)(function(){v.current.children=f,b&&!b.props.bubblesVirtually&&b.forceUpdate()},[f]),(0,t.useLayoutEffect)(function(){u!==v.current.name&&(p(v.current.name,v.current),v.current.name=u,s(u,v.current))},[u]),b&&b.node&&b.props.bubblesVirtually?((0,c.isFunction)(f)&&(f=f(b.props.fillProps)),(0,t.createPortal)(f,b.node)):null}var s=function(n){return(0,t.createElement)(l.Consumer,null,function(c){var l=c.registerFill,o=c.unregisterFill;return(0,t.createElement)(f,(0,u.default)({},n,{registerFill:l,unregisterFill:o}))})};e.default=s},1262,[2,3,16,21,1261]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(n){var c=n.label,u=n.help,b=n.children;return(0,l.createElement)(t.View,{accessible:!0,accessibilityLabel:c},c&&(0,l.createElement)(t.Text,null,c),b,u&&(0,l.createElement)(t.Text,null,u))};var l=r(d[0]),t=r(d[1])},1263,[3,25]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=r(d[2]),o=t(r(d[3]));var u=function(t){var u=t.label,v=t.value,f=t.help,h=t.onChange,b=t.rows,c=void 0===b?4:b;return(0,l.createElement)(o.default,{label:u,help:f},(0,l.createElement)(n.TextInput,{style:{height:80,borderColor:'gray',borderWidth:1},value:v,onChangeText:h,numberOfLines:c,multiline:c>1,textAlignVertical:"top"}))};e.default=u},1264,[2,3,25,1263]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.PanelBody=void 0;var n=r(d[1]),l=t(r(d[2])),u=t(r(d[3])),f=t(r(d[4])),o=t(r(d[5])),s=t(r(d[6])),c=r(d[7]),v=t(r(d[8])),p=(function(t){function p(){var t;return(0,l.default)(this,p),(t=(0,f.default)(this,(0,o.default)(p).apply(this,arguments))).state={},t}return(0,s.default)(p,t),(0,u.default)(p,[{key:"render",value:function(){var t=this.props,l=t.children,u=t.title;return(0,n.createElement)(c.View,{style:v.default.panelContainer},u&&(0,n.createElement)(c.Text,{style:v.default.sectionHeaderText},u),l)}}]),p})(n.Component);e.PanelBody=p;var y=p;e.default=y},1265,[2,3,34,35,42,45,48,25,1266]); +__d(function(g,r,i,a,m,e,d){m.exports={panelContainer:{paddingTop:0,paddingRight:16,paddingBottom:0,paddingLeft:16},sectionHeaderText:{color:"#87a6bc",paddingTop:24,paddingBottom:8,fontSize:14,fontWeight:"500"}}},1266,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=r(d[2]),o=r(d[3]),u=t(r(d[4]));var f=function(t){var f=t.actions;return(0,l.createElement)(n.View,{style:u.default.panelActionsContainer},f.map(function(t){var n=t.label,f=t.onPress;return(0,l.createElement)(o.TextControl,{label:n,separatorType:"topFullWidth",onPress:f,labelStyle:u.default.defaultLabelStyle,key:n})}))};e.default=f},1267,[2,3,25,1170,1268]); +__d(function(g,r,i,a,m,e,d){m.exports={panelActionsContainer:{paddingTop:24},defaultLabelStyle:{color:"#d94f4f"}}},1268,[]); +__d(function(g,r,i,a,m,e,d){var l=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),t=l(r(d[2])),c=l(r(d[3])),o=l(r(d[4]));var u=function(l){var u=l.label,s=l.checked,h=l.help,f=l.instanceId,v=l.className,b=l.onChange,p=(0,c.default)(l,["label","checked","help","instanceId","className","onChange"]),_="inspector-toggle-control-"+f;return(0,n.createElement)(o.default,(0,t.default)({label:u,id:_,help:h,className:v,value:s,onValueChange:b,"aria-describedby":h?_+'__help':void 0},p))};e.default=u},1269,[2,3,16,19,1270]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var f=t.value,b=t.onValueChange,v=(0,o.default)(t,["value","onValueChange"]),_=f?(0,c.sprintf)((0,c._x)('%s. On','switch control'),v.label):(0,c.sprintf)((0,c._x)('%s. Off','switch control'),v.label);return(0,l.createElement)(s.default,(0,n.default)({},v,{accessibilityLabel:_,accessibilityRole:'none',accessibilityHint:(0,c.__)('Double tap to toggle setting'),onPress:function(){b(!f)},editable:!1,value:''}),(0,l.createElement)(u.Switch,{value:f,onValueChange:b}))};var l=r(d[1]),n=t(r(d[2])),o=t(r(d[3])),u=r(d[4]),c=r(d[5]),s=t(r(d[6]))},1270,[2,3,16,19,25,347,1239]); +__d(function(g,r,i,a,m,e,d){var l=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),n=l(r(d[2])),t=l(r(d[3])),s=l(r(d[4]));var u=function(l){var u=l.help,c=l.instanceId,p=l.label,h=l.multiple,b=void 0!==h&&h,v=l.onChange,f=l.options,_=void 0===f?[]:f,V=l.className,C=l.hideLabelFromVision,F=(0,t.default)(l,["help","instanceId","label","multiple","onChange","options","className","hideLabelFromVision"]),L="inspector-select-control-"+c;return(0,o.createElement)(s.default,(0,n.default)({label:p,hideLabelFromVision:C,id:L,help:u,className:V,onChangeValue:v,"aria-describedby":u?L+"__help":void 0,multiple:b,options:_},F))};e.default=u},1271,[2,3,16,19,1272]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(n){var c,s=n.options,h=n.hideCancelButton,C=n.onChangeValue,p=(0,u.default)(n,["options","hideCancelButton","onChangeValue"]);return(0,t.createElement)(l.default,(0,o.default)({onPress:function(){c.presentPicker()},editable:!1},p),(0,t.createElement)(f.default,{leftAlign:!0,hideCancelButton:h,ref:function(n){return c=n},options:s,onChange:function(n){C(n)}}))};var t=r(d[1]),o=n(r(d[2])),u=n(r(d[3])),l=n(r(d[4])),f=n(r(d[5]))},1272,[2,3,16,19,1239,1273]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=t(r(d[2])),s=t(r(d[3])),o=t(r(d[4])),u=t(r(d[5])),f=t(r(d[6])),p=t(r(d[7])),c=(t(r(d[8])),r(d[9])),C=r(d[10]),h=t(r(d[11])),b=(function(t){function b(){var t;return(0,n.default)(this,b),(t=(0,o.default)(this,(0,u.default)(b).apply(this,arguments))).onClose=t.onClose.bind((0,f.default)(t)),t.onCellPress=t.onCellPress.bind((0,f.default)(t)),t.state={isVisible:!1},t}return(0,p.default)(b,t),(0,s.default)(b,[{key:"presentPicker",value:function(){this.setState({isVisible:!0})}},{key:"onClose",value:function(){this.setState({isVisible:!1})}},{key:"onCellPress",value:function(t){this.props.onChange(t),this.onClose()}},{key:"render",value:function(){var t=this;return(0,l.createElement)(h.default,{isVisible:this.state.isVisible,onClose:this.onClose,style:{paddingBottom:20},hideHeader:!0},(0,l.createElement)(c.View,null,this.props.options.map(function(n,s){return(0,l.createElement)(h.default.Cell,{icon:n.icon,key:s,leftAlign:t.props.leftAlign,label:n.label,separatorType:'none',onPress:function(){return t.onCellPress(n.value)}})}),!this.props.hideCancelButton&&(0,l.createElement)(h.default.Cell,{label:(0,C.__)('Cancel'),onPress:this.onClose,separatorType:'none'})))}}]),b})(l.Component);e.default=b},1273,[2,3,34,35,42,45,44,48,13,25,347,1274]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),o=t(r(d[2])),s=t(r(d[3])),l=t(r(d[4])),u=t(r(d[5])),f=t(r(d[6])),c=t(r(d[7])),p=t(r(d[8])),h=r(d[9]),y=t(r(d[10])),v=t(r(d[11])),b=r(d[12]),S=t(r(d[13])),w=t(r(d[14])),E=t(r(d[15])),O=t(r(d[16])),A=t(r(d[17])),I=t(r(d[18])),P=t(r(d[19]));function C(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function k(t){for(var n=1;n3)return n.dy=0,!0}}),A=E(S.default.background,S.default.backgroundDark);return(0,n.createElement)(y.default,{isVisible:l,style:S.default.bottomModal,animationInTiming:600,animationOutTiming:250,backdropTransitionInTiming:50,backdropTransitionOutTiming:50,backdropOpacity:.2,onBackdropPress:this.props.onClose,onBackButtonPress:this.props.onClose,onSwipe:this.props.onClose,onDismiss:'ios'===h.Platform.OS?this.props.onDismiss:void 0,onModalHide:'android'===h.Platform.OS?this.props.onDismiss:void 0,swipeDirection:"down",onMoveShouldSetResponder:O.panHandlers.onMoveShouldSetResponder,onMoveShouldSetResponderCapture:O.panHandlers.onMoveShouldSetResponderCapture,onAccessibilityEscape:this.props.onClose},(0,n.createElement)(P.default,{behavior:'ios'===h.Platform.OS&&'padding',style:k({},A,{borderColor:'rgba(0, 0, 0, 0.1)'},v),keyboardVerticalOffset:-this.state.safeAreaBottomInset},(0,n.createElement)(h.View,{style:S.default.dragIndicator}),c&&(0,n.createElement)(h.View,{style:S.default.emptyHeaderSpace}),!c&&(0,n.createElement)(h.View,null,(0,n.createElement)(h.View,{style:S.default.head},(0,n.createElement)(h.View,{style:{flex:1}},u),(0,n.createElement)(h.View,{style:S.default.titleContainer},(0,n.createElement)(h.Text,{style:S.default.title},s)),(0,n.createElement)(h.View,{style:{flex:1}},f)),(0,n.createElement)(h.View,{style:S.default.separator})),(0,n.createElement)(h.View,{style:[S.default.content,w]},this.props.children),(0,n.createElement)(h.View,{style:{height:this.state.safeAreaBottomInset}})))}}]),o})(n.Component);var D=(0,b.withPreferredColorScheme)(V);D.getWidth=function(){return Math.min(h.Dimensions.get('window').width,S.default.background.maxWidth)},D.Button=w.default,D.Cell=E.default,D.PickerCell=O.default,D.SwitchCell=A.default,D.RangeCell=I.default;var B=D;e.default=B},1274,[2,3,18,34,35,42,45,44,48,25,1275,1299,975,1240,1303,1239,1272,1270,1304,1310]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),e.ReactNativeModal=e.default=void 0;var o=n(r(d[2])),s=n(r(d[3])),p=n(r(d[4])),l=n(r(d[5])),c=n(r(d[6])),u=n(r(d[7])),f=n(r(d[8])),b=n(r(d[9])),h=t(r(d[10])),w=r(d[11]),v=n(r(d[12])),O=r(d[13]),y=t(r(d[14])),k=n(r(d[15]));function T(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function D(t){for(var n=1;n0)},onPanResponderMove:function(n,s){var p=1-o.getAccDistancePerDirection(s)/o.state.deviceWidth;if(o.isSwipeDirectionAllowed(s))o.backdropRef&&o.backdropRef.transitionTo({opacity:o.props.backdropOpacity*p}),t(n,s);else if(o.props.scrollTo){var l=-s.dy;l>o.props.scrollOffsetMax&&(l-=(l-o.props.scrollOffsetMax)/2),o.props.scrollTo({y:l,animated:!1})}},onPanResponderRelease:function(t,n){if(o.getAccDistancePerDirection(n)>o.props.swipeThreshold&&o.props.onSwipe)return o.inSwipeClosingState=!0,void o.props.onSwipe();o.backdropRef&&o.backdropRef.transitionTo({opacity:o.props.backdropOpacity},o.props.backdropTransitionInTiming),w.Animated.spring(o.state.pan,{toValue:{x:0,y:0},bounciness:0}).start(),o.props.scrollOffset>o.props.scrollOffsetMax&&o.props.scrollTo({y:o.props.scrollOffsetMax,animated:!0})}})},o.getAccDistancePerDirection=function(t){switch(o.props.swipeDirection){case"up":return-t.dy;case"down":return t.dy;case"right":return t.dx;case"left":return-t.dx;default:return 0}},o.isSwipeDirectionAllowed=function(t){var n=t.dy,s=t.dx,p=n>0,l=n<0,c=s<0,u=s>0;return!("up"!==o.props.swipeDirection||!l)||(!("down"!==o.props.swipeDirection||!p)||(!("right"!==o.props.swipeDirection||!u)||!("left"!==o.props.swipeDirection||!c)))},o.buildAnimations=function(t){var n=t.animationIn,s=t.animationOut;if(R(n)){var p=JSON.stringify(n);S(p,n),n=p}if(R(s)){var l=JSON.stringify(s);S(l,s),s=l}o.animationIn=n,o.animationOut=s},o.handleDimensionsUpdate=function(t){var n=w.Dimensions.get("window").width,s=w.Dimensions.get("window").height;n===o.state.deviceWidth&&s===o.state.deviceHeight||o.setState({deviceWidth:n,deviceHeight:s})},o.open=function(){o.transitionLock||(o.transitionLock=!0,o.backdropRef&&o.backdropRef.transitionTo({opacity:o.props.backdropOpacity},o.props.backdropTransitionInTiming),o.state.isSwipeable&&o.state.pan.setValue({x:0,y:0}),o.contentRef&&o.contentRef[o.animationIn](o.props.animationInTiming).then(function(){o.transitionLock=!1,o.props.isVisible?o.props.onModalShow():o._close()}))},o._close=function(){if(!o.transitionLock){o.transitionLock=!0,o.backdropRef&&o.backdropRef.transitionTo({opacity:0},o.props.backdropTransitionOutTiming);var t=o.animationOut;o.inSwipeClosingState&&(o.inSwipeClosingState=!1,"up"===o.props.swipeDirection?t="slideOutUp":"down"===o.props.swipeDirection?t="slideOutDown":"right"===o.props.swipeDirection?t="slideOutRight":"left"===o.props.swipeDirection&&(t="slideOutLeft")),o.contentRef&&o.contentRef[t](o.props.animationOutTiming).then(function(){o.transitionLock=!1,o.props.isVisible?o.open():(o.setState({showContent:!1},function(){o.setState({isVisible:!1})}),o.props.onModalHide())})}},o.buildAnimations(t),o.state.isSwipeable&&(o.state=D({},o.state,{pan:new w.Animated.ValueXY}),o.buildPanResponder()),o.props.isVisible&&(o.state=D({},o.state,{isVisible:!0,showContent:!0})),o}return(0,b.default)(n,t),(0,c.default)(n,[{key:"componentWillReceiveProps",value:function(t){!this.state.isVisible&&t.isVisible&&this.setState({isVisible:!0,showContent:!0}),this.props.animationIn===t.animationIn&&this.props.animationOut===t.animationOut||this.buildAnimations(t),this.props.backdropOpacity!==t.backdropOpacity&&this.backdropRef&&this.backdropRef.transitionTo({opacity:t.backdropOpacity},this.props.backdropTransitionInTiming)}},{key:"componentDidMount",value:function(){this.state.isVisible&&this.open(),w.DeviceEventEmitter.addListener("didUpdateDimensions",this.handleDimensionsUpdate)}},{key:"componentWillUnmount",value:function(){w.DeviceEventEmitter.removeListener("didUpdateDimensions",this.handleDimensionsUpdate)}},{key:"componentDidUpdate",value:function(t,n){this.props.isVisible&&!t.isVisible?this.open():!this.props.isVisible&&t.isVisible&&this._close()}},{key:"render",value:function(){var t=this,n=this.props,p=(n.animationIn,n.animationInTiming,n.animationOut,n.animationOutTiming,n.avoidKeyboard),l=n.backdropColor,c=(n.backdropOpacity,n.backdropTransitionInTiming,n.backdropTransitionOutTiming,n.children),u=(n.isVisible,n.onModalShow,n.onBackdropPress),f=n.onBackButtonPress,b=n.useNativeDriver,v=n.style,y=(0,s.default)(n,["animationIn","animationInTiming","animationOut","animationOutTiming","avoidKeyboard","backdropColor","backdropOpacity","backdropTransitionInTiming","backdropTransitionOutTiming","children","isVisible","onModalShow","onBackdropPress","onBackButtonPress","useNativeDriver","style"]),T=this.state,S=T.deviceWidth,R=T.deviceHeight,P=[{margin:.05*S,transform:[{translateY:0}]},k.default.content,v],V={},M={};this.state.isSwipeable&&(V=D({},this.panResponder.panHandlers),M=this.state.pan.getLayout());var I=this.props.hideModalContentWhileAnimating&&this.props.useNativeDriver&&!this.state.showContent?h.default.createElement(O.View,null):c,C=h.default.createElement(O.View,(0,o.default)({},V,{ref:function(n){return t.contentRef=n},style:[M,P],pointerEvents:"box-none",useNativeDriver:b},y),I);return h.default.createElement(w.Modal,(0,o.default)({transparent:!0,animationType:"none",visible:this.state.isVisible,onRequestClose:f},y),h.default.createElement(w.TouchableWithoutFeedback,{onPress:u},h.default.createElement(O.View,{ref:function(n){return t.backdropRef=n},useNativeDriver:b,style:[k.default.backdrop,{backgroundColor:this.state.showContent?l:"transparent",width:S,height:R}]})),p&&h.default.createElement(w.KeyboardAvoidingView,{behavior:"ios"===w.Platform.OS?"padding":null,pointerEvents:"box-none",style:P.concat([{margin:0}])},C),!p&&C)}}]),n})(h.Component);e.ReactNativeModal=P,P.propTypes={animationIn:v.default.oneOfType([v.default.string,v.default.object]),animationInTiming:v.default.number,animationOut:v.default.oneOfType([v.default.string,v.default.object]),animationOutTiming:v.default.number,avoidKeyboard:v.default.bool,backdropColor:v.default.string,backdropOpacity:v.default.number,backdropTransitionInTiming:v.default.number,backdropTransitionOutTiming:v.default.number,children:v.default.node.isRequired,isVisible:v.default.bool.isRequired,hideModalContentWhileAnimating:v.default.bool,onModalShow:v.default.func,onModalHide:v.default.func,onBackButtonPress:v.default.func,onBackdropPress:v.default.func,onSwipe:v.default.func,swipeThreshold:v.default.number,swipeDirection:v.default.oneOf(["up","down","left","right"]),useNativeDriver:v.default.bool,style:v.default.any,scrollTo:v.default.func,scrollOffset:v.default.number,scrollOffsetMax:v.default.number,supportedOrientations:v.default.arrayOf(v.default.oneOf(["portrait","portrait-upside-down","landscape","landscape-left","landscape-right"]))},P.defaultProps={animationIn:"slideInUp",animationInTiming:300,animationOut:"slideOutDown",animationOutTiming:300,avoidKeyboard:!1,backdropColor:"black",backdropOpacity:.7,backdropTransitionInTiming:300,backdropTransitionOutTiming:300,onModalShow:function(){return null},onModalHide:function(){return null},isVisible:!1,hideModalContentWhileAnimating:!1,onBackdropPress:function(){return null},onBackButtonPress:function(){return null},swipeThreshold:100,useNativeDriver:!1,scrollTo:null,scrollOffset:0,scrollOffsetMax:0,supportedOrientations:["portrait","landscape"]};var V=P;e.default=V},1275,[146,2,16,19,18,34,35,42,45,48,13,25,67,1276,1297,1298]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"registerAnimation",{enumerable:!0,get:function(){return f.registerAnimation}}),Object.defineProperty(e,"initializeRegistryWithDefinitions",{enumerable:!0,get:function(){return f.initializeRegistryWithDefinitions}}),Object.defineProperty(e,"createAnimation",{enumerable:!0,get:function(){return c.default}}),e.Image=e.Text=e.View=e.createAnimatableComponent=void 0;var o=r(d[2]),u=n(r(d[3])),f=r(d[4]),l=t(r(d[5])),c=n(r(d[6]));(0,f.initializeRegistryWithDefinitions)(l);var b=u.default;e.createAnimatableComponent=b;var s=(0,u.default)(o.View);e.View=s;var v=(0,u.default)(o.Text);e.Text=v;var y=(0,u.default)(o.Image);e.Image=y},1276,[146,2,25,1277,1283,1285,1282]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var n,o,V=t.displayName||t.name||'Component',E=T.Animated.createAnimatedComponent(t);return o=n=(function(t){function n(t){var o;(0,s.default)(this,n),(o=(0,l.default)(this,(0,f.default)(n).call(this,t))).ref=null,o.handleRef=function(t){o.ref=t};var u=new T.Animated.Value(P(0,o.props.direction)),p={},y={};return t.animation&&(y=B(t.animation),p=x(y,u)),o.state={animationValue:u,animationStyle:p,compiledAnimation:y,transitionStyle:{},transitionValues:{},currentTransitionValues:{}},t.transition&&(o.state=w({},o.state,{},o.initializeTransitionState(t.transition))),o.delayTimer=null,(0,k.getAnimationNames)().forEach(function(t){t in(0,c.default)(o)||(o[t]=o.animate.bind((0,c.default)(o),t))}),o}return(0,p.default)(n,t),(0,u.default)(n,[{key:"initializeTransitionState",value:function(t){var n={},o={},s=(0,O.default)(t,this.props.style);return Object.keys(s).forEach(function(t){var u=s[t];if(-1!==j.indexOf(t)||'number'!=typeof u)n[t]=new T.Animated.Value(0),o[t]=u;else{var l=new T.Animated.Value(u);n[t]=l,o[t]=l}}),{currentTransitionValues:s,transitionStyle:o,transitionValues:n}}},{key:"getTransitionState",value:function(t){var n=this,o='string'==typeof t?[t]:t,s=this.state,u=s.transitionValues,l=s.currentTransitionValues,f=s.transitionStyle,c=o.filter(function(t){return!n.state.transitionValues[t]});if(c.length){var p=this.initializeTransitionState(c);u=w({},u,{},p.transitionValues),l=w({},l,{},p.currentTransitionValues),f=w({},f,{},p.transitionStyle)}return{transitionValues:u,currentTransitionValues:l,transitionStyle:f}}},{key:"setNativeProps",value:function(t){this.ref&&this.ref.setNativeProps(t)}},{key:"componentDidMount",value:function(){var t=this,n=this.props,o=n.animation,s=n.duration,u=n.delay,l=n.onAnimationBegin,f=n.iterationDelay;if(o){var c=function(){l(),t.startAnimation(s,0,f,function(n){return t.props.onAnimationEnd(n)}),t.delayTimer=null};u?this.delayTimer=setTimeout(c,u):c()}}},{key:"componentWillReceiveProps",value:function(t){var n,o,s=this,u=t.animation,l=t.delay,f=t.duration,c=t.easing,p=t.iterationDelay,y=t.transition,v=t.onAnimationBegin;if(y){var h=(0,O.default)(y,t.style);this.transitionTo(h,f,c,l)}else n=u,o=this.props.animation,n!==o&&JSON.stringify(n)!==JSON.stringify(o)&&(u?this.delayTimer?this.setAnimation(u):(v(),this.animate(u,f,p).then(function(t){return s.props.onAnimationEnd(t)})):this.stopAnimation())}},{key:"componentWillUnmount",value:function(){this.delayTimer&&clearTimeout(this.delayTimer)}},{key:"setAnimation",value:function(t,n){var o=B(t),s=x(o,this.state.animationValue);this.setState({animationStyle:s,compiledAnimation:o},n)}},{key:"animate",value:function(t,n,o){var s=this;return new Promise(function(u){s.setAnimation(t,function(){s.startAnimation(n,0,o,u)})})}},{key:"stopAnimation",value:function(){this.setState({scheduledAnimation:!1,animationStyle:{}}),this.state.animationValue.stopAnimation(),this.delayTimer&&(clearTimeout(this.delayTimer),this.delayTimer=null)}},{key:"startAnimation",value:function(t,n,o,s){var u=this,l=this.state,f=l.animationValue,c=l.compiledAnimation,p=this.props,y=p.direction,v=p.iterationCount,h=p.useNativeDriver,b=this.props.easing||c.easing||'ease',O=n||0,A=P(O,y),V=C(O,y);f.setValue(A),'string'==typeof b&&(b=S.default[b]);var k='reverse'===y||'alternate'===y&&!V||'alternate-reverse'===y&&!V;k&&(b=T.Easing.out(b));var E={toValue:V,easing:b,isInteraction:v<=1,duration:t||this.props.duration||1e3,useNativeDriver:h,delay:o||0};T.Animated.timing(f,E).start(function(n){O+=1,n.finished&&u.props.animation&&('infinite'===v||O=1?null:new Error('iterationCount must be a positive number or "infinite"')},iterationDelay:h.default.number,onAnimationBegin:h.default.func,onAnimationEnd:h.default.func,onTransitionBegin:h.default.func,onTransitionEnd:h.default.func,style:h.default.oneOfType([h.default.number,h.default.array,h.default.object]),transition:h.default.oneOfType([h.default.string,h.default.arrayOf(h.default.string)]),useNativeDriver:h.default.bool},n.defaultProps={animation:void 0,delay:0,direction:'normal',duration:void 0,easing:void 0,iterationCount:1,iterationDelay:0,onAnimationBegin:function(){},onAnimationEnd:function(){},onTransitionBegin:function(){},onTransitionEnd:function(){},style:void 0,transition:void 0,useNativeDriver:!1},o};var o=n(r(d[2])),s=n(r(d[3])),u=n(r(d[4])),l=n(r(d[5])),f=n(r(d[6])),c=n(r(d[7])),p=n(r(d[8])),y=n(r(d[9])),v=t(r(d[10])),h=n(r(d[11])),T=r(d[12]),b=n(r(d[13])),O=n(r(d[14])),A=n(r(d[15])),V=n(r(d[16])),k=r(d[17]),S=n(r(d[18]));function E(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function w(t){for(var n=1;n5&&void 0!==arguments[5]&&arguments[5],f=arguments.length>6?arguments[6]:void 0,c=arguments.length>7?arguments[7]:void 0,p=arguments.length>8?arguments[8]:void 0,y=s||u||f?T.Animated.timing(n,{toValue:o,delay:f,duration:s||1e3,easing:'function'==typeof u?u:S.default[u||'ease'],useNativeDriver:l}):T.Animated.spring(n,{toValue:o,useNativeDriver:l});setTimeout(function(){return c(t)},f),y.start(function(){return p(t)})}},1277,[146,2,18,34,35,42,45,44,48,16,13,67,25,1278,1279,1280,1282,1283,1284]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var o={};return Object.keys(t).forEach(function(f){-1!==s.indexOf(f)?(o.transform||(o.transform=[]),o.transform.push((0,n.default)({},f,t[f]))):o[f]=t[f]}),o};var n=t(r(d[1])),s=['perspective','rotate','rotateX','rotateY','rotateZ','scale','scaleX','scaleY','skewX','skewY','translateX','translateY']},1278,[2,18]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t,u){var o={},c=(0,n.default)(u);return('string'==typeof t?[t]:t).forEach(function(t){o[t]=t in c?c[t]:(0,f.default)(t,c)}),o};var n=t(r(d[1])),f=t(r(d[2]))},1279,[2,1280,1281]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var o=(0,n.default)({},f.StyleSheet.flatten(t));o.transform&&(o.transform.forEach(function(t){var n=Object.keys(t)[0];o[n]=t[n]}),delete o.transform);return o};var n=t(r(d[1])),f=r(d[2])},1280,[2,16,25]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(o,f){if('backgroundColor'===o)return'rgba(0,0,0,0)';if('color'===o||-1!==o.indexOf('Color'))return'rgba(0,0,0,1)';if(0===o.indexOf('rotate')||0===o.indexOf('skew'))return'0deg';if('opacity'===o||0===o.indexOf('scale'))return 1;if('fontSize'===o)return 14;if(0===o.indexOf('margin')||0===o.indexOf('padding'))for(var l,u=0;u1?null:t}var s={}},1282,[2,1280]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.registerAnimation=u,e.getAnimationByName=function(n){return o[n]},e.getAnimationNames=function(){return Object.keys(o)},e.initializeRegistryWithDefinitions=function(n){Object.keys(n).forEach(function(o){u(o,(0,t.default)(n[o]))})};var t=n(r(d[1])),o={};function u(n,t){o[n]=t}},1283,[2,1282]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var s=r(d[0]),n={linear:s.Easing.linear,ease:s.Easing.bezier(.25,.1,.25,1),'ease-in':s.Easing.bezier(.42,0,1,1),'ease-out':s.Easing.bezier(0,0,.58,1),'ease-in-out':s.Easing.bezier(.42,0,.58,1),'ease-in-cubic':s.Easing.bezier(.55,.055,.675,.19),'ease-out-cubic':s.Easing.bezier(.215,.61,.355,1),'ease-in-out-cubic':s.Easing.bezier(.645,.045,.355,1),'ease-in-circ':s.Easing.bezier(.6,.04,.98,.335),'ease-out-circ':s.Easing.bezier(.075,.82,.165,1),'ease-in-out-circ':s.Easing.bezier(.785,.135,.15,.86),'ease-in-expo':s.Easing.bezier(.95,.05,.795,.035),'ease-out-expo':s.Easing.bezier(.19,1,.22,1),'ease-in-out-expo':s.Easing.bezier(1,0,0,1),'ease-in-quad':s.Easing.bezier(.55,.085,.68,.53),'ease-out-quad':s.Easing.bezier(.25,.46,.45,.94),'ease-in-out-quad':s.Easing.bezier(.455,.03,.515,.955),'ease-in-quart':s.Easing.bezier(.895,.03,.685,.22),'ease-out-quart':s.Easing.bezier(.165,.84,.44,1),'ease-in-out-quart':s.Easing.bezier(.77,0,.175,1),'ease-in-quint':s.Easing.bezier(.755,.05,.855,.06),'ease-out-quint':s.Easing.bezier(.23,1,.32,1),'ease-in-out-quint':s.Easing.bezier(.86,0,.07,1),'ease-in-sine':s.Easing.bezier(.47,0,.745,.715),'ease-out-sine':s.Easing.bezier(.39,.575,.565,1),'ease-in-out-sine':s.Easing.bezier(.445,.05,.55,.95),'ease-in-back':s.Easing.bezier(.6,-.28,.735,.045),'ease-out-back':s.Easing.bezier(.175,.885,.32,1.275),'ease-in-out-back':s.Easing.bezier(.68,-.55,.265,1.55)};e.default=n},1284,[25]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0});var t=r(d[0]);Object.keys(t).forEach(function(n){"default"!==n&&"__esModule"!==n&&Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[n]}})});var n=r(d[1]);Object.keys(n).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return n[t]}})});var u=r(d[2]);Object.keys(u).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return u[t]}})});var o=r(d[3]);Object.keys(o).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return o[t]}})});var c=r(d[4]);Object.keys(c).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return c[t]}})});var f=r(d[5]);Object.keys(f).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return f[t]}})});var l=r(d[6]);Object.keys(l).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return l[t]}})});var b=r(d[7]);Object.keys(b).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return b[t]}})});var _=r(d[8]);Object.keys(_).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return _[t]}})});var j=r(d[9]);Object.keys(j).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return j[t]}})});var s=r(d[10]);Object.keys(s).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return s[t]}})})},1285,[1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.wobble=e.tada=e.rubberBand=e.swing=e.shake=e.rotate=e.pulse=e.jello=e.flash=e.bounce=void 0;e.bounce={0:{translateY:0},.2:{translateY:0},.4:{translateY:-30},.43:{translateY:-30},.53:{translateY:0},.7:{translateY:-15},.8:{translateY:0},.9:{translateY:-4},1:{translateY:0}};e.flash={0:{opacity:1},.25:{opacity:0},.5:{opacity:1},.75:{opacity:0},1:{opacity:1}};e.jello={0:{skewX:'0deg',skewY:'0deg'},.111:{skewX:'0deg',skewY:'0deg'},.222:{skewX:'-12.5deg',skewY:'-12.5deg'},.333:{skewX:'6.25deg',skewY:'6.25deg'},.444:{skewX:'-3.125deg',skewY:'-3.125deg'},.555:{skewX:'1.5625deg',skewY:'1.5625deg'},.666:{skewX:'-0.78125deg',skewY:'-0.78125deg'},.777:{skewX:'0.390625deg',skewY:'0.390625deg'},.888:{skewX:'-0.1953125deg',skewY:'-0.1953125deg'},1:{skewX:'0deg',skewY:'0deg'}};e.pulse={0:{scale:1},.5:{scale:1.05},1:{scale:1}};e.rotate={0:{rotate:'0deg'},.25:{rotate:'90deg'},.5:{rotate:'180deg'},.75:{rotate:'270deg'},1:{rotate:'360deg'}};e.shake={0:{translateX:0},.1:{translateX:-10},.2:{translateX:10},.3:{translateX:-10},.4:{translateX:10},.5:{translateX:-10},.6:{translateX:10},.7:{translateX:-10},.8:{translateX:10},.9:{translateX:-10},1:{translateX:0}};e.swing={0:{rotate:'0deg'},.2:{rotate:'15deg'},.4:{rotate:'-10deg'},.6:{rotate:'5deg'},.8:{rotate:'-5deg'},1:{rotate:'0deg'}};e.rubberBand={0:{scaleX:1,scaleY:1},.3:{scaleX:1.25,scaleY:.75},.4:{scaleX:.75,scaleY:1.25},.5:{scaleX:1.15,scaleY:.85},.65:{scaleX:.95,scaleY:1.05},.75:{scaleX:1.05,scaleY:.95},1:{scaleX:1,scaleY:1}};e.tada={0:{scale:1,rotate:'0deg'},.1:{scale:.9,rotate:'-3deg'},.2:{scale:.9,rotate:'-3deg'},.3:{scale:1.1,rotate:'-3deg'},.4:{rotate:'3deg'},.5:{rotate:'-3deg'},.6:{rotate:'3deg'},.7:{rotate:'-3deg'},.8:{rotate:'3deg'},.9:{scale:1.1,rotate:'3deg'},1:{scale:1,rotate:'0deg'}};e.wobble={0:{translateX:0,rotate:'0deg'},.15:{translateX:-25,rotate:'-5deg'},.3:{translateX:20,rotate:'3deg'},.45:{translateX:-15,rotate:'-3deg'},.6:{translateX:10,rotate:'2deg'},.75:{translateX:-5,rotate:'-1deg'},1:{translateX:0,rotate:'0deg'}}},1286,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.bounceInLeft=e.bounceInRight=e.bounceInDown=e.bounceInUp=e.bounceIn=void 0;e.bounceIn={0:{opacity:0,scale:.3},.2:{scale:1.1},.4:{scale:.9},.6:{opacity:1,scale:1.03},.8:{scale:.97},1:{opacity:1,scale:1}};e.bounceInUp={0:{opacity:0,translateY:800},.6:{opacity:1,translateY:-25},.75:{translateY:10},.9:{translateY:-5},1:{translateY:0}};e.bounceInDown={0:{opacity:0,translateY:-800},.6:{opacity:1,translateY:25},.75:{translateY:-10},.9:{translateY:5},1:{translateY:0}};e.bounceInRight={0:{opacity:0,translateX:600},.6:{opacity:1,translateX:-20},.75:{translateX:8},.9:{translateX:-4},1:{translateX:0}};e.bounceInLeft={0:{opacity:0,translateX:-600},.6:{opacity:1,translateX:20},.75:{translateX:-8},.9:{translateX:4},1:{translateX:0}}},1287,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.bounceOutLeft=e.bounceOutRight=e.bounceOutDown=e.bounceOutUp=e.bounceOut=void 0;e.bounceOut={0:{opacity:1,scale:1},.2:{scale:.9},.5:{opacity:1,scale:1.11},.55:{scale:1.11},1:{opacity:0,scale:.3}};e.bounceOutUp={0:{opacity:1,translateY:0},.2:{opacity:1,translateY:-10},.4:{translateY:20},.45:{translateY:20},.55:{opacity:1},1:{opacity:0,translateY:-800}};e.bounceOutDown={0:{opacity:1,translateY:0},.2:{opacity:1,translateY:10},.4:{translateY:-20},.45:{translateY:-20},.55:{opacity:1},1:{opacity:0,translateY:800}};e.bounceOutRight={0:{opacity:1,translateX:0},.2:{opacity:1,translateX:10},.4:{translateX:-20},.45:{translateX:-20},.55:{opacity:1},1:{opacity:0,translateX:600}};e.bounceOutLeft={0:{opacity:1,translateX:0},.2:{opacity:1,translateX:-10},.4:{translateX:20},.45:{translateX:20},.55:{opacity:1},1:{opacity:0,translateX:-600}}},1288,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.fadeInRightBig=e.fadeInLeftBig=e.fadeInUpBig=e.fadeInDownBig=e.fadeInRight=e.fadeInLeft=e.fadeInUp=e.fadeInDown=e.fadeIn=void 0;var n=t(r(d[1]));function f(t,f){return{from:(0,n.default)({opacity:0},t,f),to:(0,n.default)({opacity:1},t,0)}}e.fadeIn={from:{opacity:0},to:{opacity:1}};var I=f('translateY',-100);e.fadeInDown=I;var o=f('translateY',100);e.fadeInUp=o;var l=f('translateX',-100);e.fadeInLeft=l;var v=f('translateX',100);e.fadeInRight=v;var p=f('translateY',-500);e.fadeInDownBig=p;var s=f('translateY',500);e.fadeInUpBig=s;var B=f('translateX',-500);e.fadeInLeftBig=B;var c=f('translateX',500);e.fadeInRightBig=c},1289,[2,18]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.fadeOutRightBig=e.fadeOutLeftBig=e.fadeOutUpBig=e.fadeOutDownBig=e.fadeOutRight=e.fadeOutLeft=e.fadeOutUp=e.fadeOutDown=e.fadeOut=void 0;var f=t(r(d[1]));function u(t,u){return{from:(0,f.default)({opacity:1},t,0),to:(0,f.default)({opacity:0},t,u)}}e.fadeOut={from:{opacity:1},to:{opacity:0}};var O=u('translateY',100);e.fadeOutDown=O;var n=u('translateY',-100);e.fadeOutUp=n;var o=u('translateX',-100);e.fadeOutLeft=o;var l=u('translateX',100);e.fadeOutRight=l;var v=u('translateY',500);e.fadeOutDownBig=v;var p=u('translateY',-500);e.fadeOutUpBig=p;var s=u('translateX',-500);e.fadeOutLeftBig=s;var B=u('translateX',500);e.fadeOutRightBig=B},1290,[2,18]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.flipOutY=e.flipOutX=e.flipInY=e.flipInX=void 0;e.flipInX={easing:'ease-in',style:{backfaceVisibility:'visible',perspective:400},0:{opacity:0,rotateX:'90deg'},.4:{rotateX:'-20deg'},.6:{opacity:1,rotateX:'10deg'},.8:{rotateX:'-5deg'},1:{opacity:1,rotateX:'0deg'}};e.flipInY={easing:'ease-in',style:{backfaceVisibility:'visible',perspective:400},0:{opacity:0,rotateY:'90deg'},.4:{rotateY:'-20deg'},.6:{opacity:1,rotateY:'10deg'},.8:{rotateY:'-5deg'},1:{opacity:1,rotateY:'0deg'}};e.flipOutX={style:{backfaceVisibility:'visible',perspective:400},0:{opacity:1,rotateX:'0deg'},.3:{opacity:1,rotateX:'-20deg'},1:{opacity:0,rotateX:'90deg'}};e.flipOutY={style:{backfaceVisibility:'visible',perspective:400},0:{opacity:1,rotateY:'0deg'},.3:{opacity:1,rotateY:'-20deg'},1:{opacity:0,rotateY:'90deg'}}},1291,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.lightSpeedOut=e.lightSpeedIn=void 0;e.lightSpeedIn={easing:'ease-out',0:{opacity:0,translateX:200,skewX:'-30deg'},.6:{opacity:1,translateX:0,skewX:'20deg'},.8:{skewX:'-5deg'},1:{opacity:1,translateX:0,skewX:'0deg'}};e.lightSpeedOut={easing:'ease-in',0:{opacity:1,translateX:0,skewX:'0deg'},1:{opacity:0,translateX:200,skewX:'30deg'}}},1292,[]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.slideInRight=e.slideInLeft=e.slideInUp=e.slideInDown=void 0;var t=n(r(d[1]));function l(n,l){return{from:(0,t.default)({},n,l),to:(0,t.default)({},n,0)}}var s=l('translateY',-100);e.slideInDown=s;var o=l('translateY',100);e.slideInUp=o;var f=l('translateX',-100);e.slideInLeft=f;var v=l('translateX',100);e.slideInRight=v},1293,[2,18]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.slideOutRight=e.slideOutLeft=e.slideOutUp=e.slideOutDown=void 0;var l=t(r(d[1]));function u(t,u){return{from:(0,l.default)({},t,0),to:(0,l.default)({},t,u)}}var s=u('translateY',100);e.slideOutDown=s;var n=u('translateY',-100);e.slideOutUp=n;var o=u('translateX',-100);e.slideOutLeft=o;var O=u('translateX',100);e.slideOutRight=O},1294,[2,18]); +__d(function(g,r,i,a,m,e,d){var o=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.zoomInRight=e.zoomInLeft=e.zoomInUp=e.zoomInDown=e.zoomIn=void 0;var t=o(r(d[1])),n=r(d[2]);function l(o,l){var c=Math.min(1,Math.max(-1,l));return{easing:n.Easing.bezier(.175,.885,.32,1),0:(0,t.default)({opacity:0,scale:.1},o,-1e3*c),.6:(0,t.default)({opacity:1,scale:.457},o,l),1:(0,t.default)({scale:1},o,0)}}e.zoomIn={from:{opacity:0,scale:.3},.5:{opacity:1},to:{opacity:1,scale:1}};var c=l('translateY',60);e.zoomInDown=c;var s=l('translateY',-60);e.zoomInUp=s;var z=l('translateX',10);e.zoomInLeft=z;var I=l('translateX',-10);e.zoomInRight=I},1295,[2,18,25]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.zoomOutRight=e.zoomOutLeft=e.zoomOutUp=e.zoomOutDown=e.zoomOut=void 0;var o=t(r(d[1])),u=r(d[2]);function c(t,c){var l=Math.min(1,Math.max(-1,c));return{easing:u.Easing.bezier(.175,.885,.32,1),0:(0,o.default)({opacity:1,scale:1},t,0),.4:(0,o.default)({opacity:1,scale:.457},t,c),1:(0,o.default)({opacity:0,scale:.1},t,-1e3*l)}}e.zoomOut={from:{opacity:1,scale:1},.5:{opacity:1,scale:.3},to:{opacity:0,scale:0}};var l=c('translateY',60);e.zoomOutDown=l;var n=c('translateY',-60);e.zoomOutUp=n;var s=c('translateX',10);e.zoomOutLeft=s;var z=c('translateX',-10);e.zoomOutRight=z},1296,[2,18,25]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.slideOutRight=e.slideOutLeft=e.slideOutUp=e.slideOutDown=e.slideInRight=e.slideInLeft=e.slideInUp=e.slideInDown=void 0;var n=t(r(d[1])),l=r(d[2]).Dimensions.get("window"),s=l.height,u=l.width,o=function(t,l,s){return{from:(0,n.default)({},t,l),to:(0,n.default)({},t,s)}},v=o("translateY",-s,0);e.slideInDown=v;var f=o("translateY",s,0);e.slideInUp=f;var O=o("translateX",-u,0);e.slideInLeft=O;var I=o("translateX",u,0);e.slideInRight=I;var h=o("translateY",0,s);e.slideOutDown=h;var w=o("translateY",0,-s);e.slideOutUp=w;var p=o("translateX",0,-u);e.slideOutLeft=p;var D=o("translateX",0,u);e.slideOutRight=D},1297,[2,18,25]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]).StyleSheet.create({backdrop:{position:"absolute",top:0,bottom:0,left:0,right:0,opacity:0,backgroundColor:"black"},content:{flex:1,justifyContent:"center"}});e.default=t},1298,[25]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0});var o={};e.default=void 0;var n=t(r(d[1])),u=r(d[2]);Object.keys(u).forEach(function(t){"default"!==t&&"__esModule"!==t&&(Object.prototype.hasOwnProperty.call(o,t)||Object.defineProperty(e,t,{enumerable:!0,get:function(){return u[t]}}))});var c=r(d[3]);Object.keys(c).forEach(function(t){"default"!==t&&"__esModule"!==t&&(Object.prototype.hasOwnProperty.call(o,t)||Object.defineProperty(e,t,{enumerable:!0,get:function(){return c[t]}}))});var f=n.default;e.default=f},1299,[2,1300,1301,1302]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1])),u=t(r(d[2])),o=new((function(){function t(){(0,n.default)(this,t)}return(0,u.default)(t,[{key:"getSafeAreaInsetsForRootView",value:function(){return Promise.resolve({safeAreaInsets:{top:0,left:0,bottom:0,right:0}})}},{key:"addEventListener",value:function(t,n,u){return null}},{key:"removeEventListener",value:function(t,n){}}]),t})());e.default=o},1300,[2,34,35]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),e.withSafeArea=function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:'margin',o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:'all',I=o,R=I.match(/^(top|bottom)(Left|Right)$/);R&&(I=R[1]+"And"+R[2],console.warn("'"+o+"' is deprecated. Use '"+I+"' instead."));var O='top'===I||'topAndLeft'===I||'topAndRight'===I||'vertical'===I||'verticalAndLeft'===I||'verticalAndRight'===I||'horizontalAndTop'===I||'all'===I,w='bottom'===I||'bottomAndLeft'===I||'bottomAndRight'===I||'vertical'===I||'verticalAndLeft'===I||'verticalAndRight'===I||'horizontalAndBottom'===I||'all'===I,S='left'===I||'topAndLeft'===I||'bottomAndLeft'===I||'horizontal'===I||'horizontalAndTop'===I||'horizontalAndBottom'===I||'verticalAndLeft'===I||'all'===I,z='right'===I||'topAndRight'===I||'bottomAndRight'===I||'horizontal'===I||'horizontalAndTop'===I||'horizontalAndBottom'===I||'verticalAndRight'===I||'all'===I;return(function(o){function I(){var t,n;(0,l.default)(this,I);for(var o=arguments.length,s=new Array(o),f=0;f0&&void 0!==arguments[0])||arguments[0],l={hasFocus:!this.state.hasFocus};if(t){var n=this.validateInput(this.state.sliderValue);this.handleValueSave(n)}this.setState(l)}},{key:"validateInput",value:function(t){var l=this.props,n=l.minimumValue,u=l.maximumValue;return t?'number'==typeof t?Math.min(Math.max(t,n),u):Math.min(Math.max(t.replace(/[^0-9]/g,'').replace(/^0+(?=\d)/,''),n),u):n}},{key:"handleValueSave",value:function(t){isNaN(Number(t))||(this.onChangeValue(t),this.setState({sliderValue:t}),this.announceCurrentValue(t))}},{key:"onChangeValue",value:function(t){var l=this.props,n=l.minimumValue,u=l.maximumValue,o=l.onChange,s=t;su&&(s=u),o(s)}},{key:"onCellPress",value:function(){if(this.setState({accessible:!1}),this.sliderRef){var t=(0,C.findNodeHandle)(this.sliderRef);C.AccessibilityInfo.setAccessibilityFocus(t)}}},{key:"announceCurrentValue",value:function(t){var l=(0,S.sprintf)((0,S.__)('Current value is %s'),t);C.AccessibilityInfo.announceForAccessibility(l)}},{key:"render",value:function(){var t=this,o=this.props,s=o.value,c=o.defaultValue,h=o.minimumValue,f=void 0===h?0:h,v=o.maximumValue,p=void 0===v?10:v,x=o.disabled,k=o.step,F=void 0===k?1:k,P=o.preferredColorScheme,R=o.minimumTrackTintColor,I=void 0===R?'light'===P?'#00669b':'#5198d9':R,_=o.maximumTrackTintColor,N=void 0===_?'ios'===C.Platform.OS?'#e9eff3':'#909090':_,A=o.thumbTintColor,E=void 0===A?'android'===C.Platform.OS&&'#00669b':A,M=o.getStylesFromColorScheme,w=(0,u.default)(o,["value","defaultValue","minimumValue","maximumValue","disabled","step","preferredColorScheme","minimumTrackTintColor","maximumTrackTintColor","thumbTintColor","getStylesFromColorScheme"]),O=this.state,D=O.hasFocus,L=O.sliderValue,j=O.accessible,H=O.fontScale,$=(0,S.sprintf)((0,S._x)('%1$s. Current value is %2$s','Slider for picking a number inside a range'),w.label,s),B=M(V.default.sliderTextInput,V.default.sliderDarkTextInput);return(0,l.createElement)(y.default,(0,n.default)({},w,{cellContainerStyle:V.default.cellContainerStyles,cellRowContainerStyle:V.default.cellRowStyles,accessibilityRole:'none',value:'',editable:!1,accessible:j,onPress:this.onCellPress,accessibilityLabel:$,accessibilityHint:(0,S.__)('Double tap to change the value using slider')}),(0,l.createElement)(C.View,{style:V.default.container},(0,l.createElement)(b.default,{value:this.validateInput(L),defaultValue:c,disabled:x,step:F,minimumValue:f,maximumValue:p,minimumTrackTintColor:I,maximumTrackTintColor:N,thumbTintColor:E,onValueChange:this.handleChange,onSlidingComplete:this.handleValueSave,ref:function(l){t.sliderRef=l},style:V.default.slider,accessibilityRole:'adjustable'}),(0,l.createElement)(C.TextInput,{style:[B,T.borderStyle,D&&T.isSelected,{width:40*H}],onChangeText:this.handleChange,onFocus:this.handleToggleFocus,onBlur:this.handleToggleFocus,keyboardType:"number-pad",returnKeyType:"done",value:""+L})))}}]),p})(l.Component),k=(0,p.withPreferredColorScheme)(x);e.default=k},1304,[2,3,16,19,34,35,42,45,44,48,25,1305,347,975,1239,1307,1308,1309]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n,l=t(r(d[1])),o=t(r(d[2])),u=t(r(d[3])),S=r(d[4]),f=t(r(d[5])),v=u.default.forwardRef(function(t,v){var s=S.StyleSheet.compose(n.slider,t.style),c=t.onValueChange,h=t.onSlidingStart,C=t.onSlidingComplete,p=(0,o.default)(t,["onValueChange","onSlidingStart","onSlidingComplete"]),R=c?function(t){var n=!0;'android'===S.Platform.OS&&(n=null!=t.nativeEvent.fromUser&&t.nativeEvent.fromUser),n&&c(t.nativeEvent.value)}:null,b=R,y=h?function(t){h(t.nativeEvent.value)}:null,E=C?function(t){C(t.nativeEvent.value)}:null;return u.default.createElement(f.default,(0,l.default)({},p,{thumbImage:S.Image.resolveAssetSource(t.thumbImage),ref:v,style:s,onChange:b,onRNCSliderSlidingStart:y,onRNCSliderSlidingComplete:E,onRNCSliderValueChange:R,enabled:!t.disabled,onStartShouldSetResponder:function(){return!0},onResponderTerminationRequest:function(){return!1}}))});v.defaultProps={disabled:!1,value:0,minimumValue:0,maximumValue:1,step:0,inverted:!1},n='ios'===S.Platform.OS?S.StyleSheet.create({slider:{height:40}}):S.StyleSheet.create({slider:{}});var s=v;e.default=s},1305,[2,16,19,13,25,1306]); +__d(function(g,r,i,a,m,e,d){'use strict';Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=(0,r(d[0]).requireNativeComponent)('RNCSlider');e.default=t},1306,[25]); +__d(function(g,r,i,a,m,e,d){m.exports={slider:{flexGrow:1},sliderTextInput:{minHeight:25,alignSelf:"center",marginLeft:10,borderColor:"#e8eaeb",paddingTop:0,paddingBottom:0,textAlign:"center"},sliderDarkTextInput:{borderColor:"#3c434a"},isSelected:{borderWidth:2,borderColor:"#0087be"},container:{flexDirection:"row",alignItems:"center",minHeight:48},cellContainerStyles:{flexDirection:"column",alignItems:"flex-start"},cellRowStyles:{minHeight:48,marginBottom:-13,width:"100%",justifyContent:"space-between"}}},1307,[]); +__d(function(g,r,i,a,m,e,d){m.exports={isSelected:{borderWidth:2,borderColor:"#0087be"},borderStyle:{borderWidth:1,borderRadius:4}}},1308,[]); +__d(function(g,r,i,a,m,e,d){m.exports={borderStyle:{borderBottomWidth:1},isSelected:{borderBottomWidth:2,borderColor:"#0087be"}}},1309,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),n=t(r(d[2])),s=t(r(d[3])),u=t(r(d[4])),l=t(r(d[5])),f=t(r(d[6])),y=t(r(d[7])),h=t(r(d[8])),b=t(r(d[9])),c=t(r(d[10])),p=r(d[11]),v=(function(t){function c(){var t;return(0,u.default)(this,c),(t=(0,f.default)(this,(0,y.default)(c).apply(this,arguments)))._onKeyboardChange=t._onKeyboardChange.bind((0,h.default)(t)),t._subscriptions=[],t.state={bottom:0},t}return(0,b.default)(c,t),(0,l.default)(c,[{key:"_relativeKeyboardHeight",value:function(t){if(!t)return 0;var o=p.Dimensions.get('window').height,n=t.screenY-this.props.keyboardVerticalOffset;return Math.max(o-n,0)}},{key:"_onKeyboardChange",value:function(t){if(null!==t){var o=t.duration,n=t.easing,s=t.endCoordinates,u=this._relativeKeyboardHeight(s);this.state.bottom!==u&&(o&&n&&p.LayoutAnimation.configureNext({duration:o,update:{duration:o,type:p.LayoutAnimation.Types[n]||'keyboard'}}),this.setState({bottom:u}))}else this.setState({bottom:0})}},{key:"componentDidMount",value:function(){'ios'===p.Platform.OS&&(this._subscriptions=[p.Keyboard.addListener('keyboardWillChangeFrame',this._onKeyboardChange)])}},{key:"componentWillUnmount",value:function(){this._subscriptions.forEach(function(t){t.remove()})}},{key:"render",value:function(){var t=this.props,u=t.children,l=t.enabled,f=(t.keyboardVerticalOffset,t.style),y=(0,s.default)(t,["children","enabled","keyboardVerticalOffset","style"]),h=f;if('ios'===p.Platform.OS){var b=l?this.state.bottom:0;h=p.StyleSheet.compose(f,{paddingBottom:b})}return(0,o.createElement)(p.View,(0,n.default)({style:h},y),u)}}]),c})(c.default.Component);v.defaultProps={enabled:!0,keyboardVerticalOffset:0};var _=v;e.default=_},1310,[2,3,16,19,34,35,42,45,44,48,13,25]); +__d(function(g,r,i,a,m,e,d){var l=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),t=l(r(d[2])),o=l(r(d[3])),u=l(r(d[4]));var c=function(l){var c=l.className,s=l.currentInput,f=l.label,v=l.value,I=l.instanceId,b=l.onChange,p=l.beforeIcon,h=l.afterIcon,_=l.help,w=l.allowReset,x=l.initialPosition,C=l.min,N=l.max,P=(0,o.default)(l,["className","currentInput","label","value","instanceId","onChange","beforeIcon","afterIcon","help","allowReset","initialPosition","min","max"]),R="inspector-range-control-"+I,V=null===s?v:s,y=isFinite(V)?V:x;return(0,n.createElement)(u.default,(0,t.default)({label:f,id:R,help:_,className:c,onChange:b,"aria-describedby":_?R+"__help":void 0,minimumValue:C,maximumValue:N,value:v,beforeIcon:p,afterIcon:h,allowReset:w,defaultValue:y},P))};e.default=c},1311,[2,3,16,19,1304]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),u=t(r(d[2])),f=t(r(d[3])),o=t(r(d[4])),l=t(r(d[5])),h=t(r(d[6])),c=t(r(d[7])),s=r(d[8]),v=r(d[9]),b=r(d[10]),p=(0,s.createHigherOrderComponent)(function(t){return(function(s){function p(){var t;return(0,u.default)(this,p),(t=(0,o.default)(this,(0,l.default)(p).apply(this,arguments))).focusContainRef=(0,n.createRef)(),t.handleTabBehaviour=t.handleTabBehaviour.bind((0,h.default)(t)),t}return(0,c.default)(p,s),(0,f.default)(p,[{key:"handleTabBehaviour",value:function(t){if(t.keyCode===v.TAB){var n=b.focus.tabbable.find(this.focusContainRef.current);if(n.length){var u=n[0],f=n[n.length-1];t.shiftKey&&t.target===u?(t.preventDefault(),f.focus()):(t.shiftKey||t.target!==f)&&n.includes(t.target)||(t.preventDefault(),u.focus())}}}},{key:"render",value:function(){return(0,n.createElement)("div",{onKeyDown:this.handleTabBehaviour,ref:this.focusContainRef,tabIndex:"-1"},(0,n.createElement)(t,this.props))}}]),p})(n.Component)},'withConstrainedTabbing');e.default=p},1312,[2,3,34,35,42,45,44,48,975,1152,1078]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=t(r(d[2])),o=t(r(d[3])),s=t(r(d[4])),f=t(r(d[5])),u=t(r(d[6])),c=t(r(d[7])),b=t(r(d[8])),p=r(d[9]),y=r(d[10]);e.default=function(t){return(0,y.createHigherOrderComponent)(function(y){return(function(h){function v(){var t;return(0,o.default)(this,v),(t=(0,f.default)(this,(0,u.default)(v).apply(this,arguments))).nodeRef=t.props.node,t.state={fallbackStyles:void 0,grabStylesCompleted:!1},t.bindRef=t.bindRef.bind((0,c.default)(t)),t}return(0,b.default)(v,h),(0,s.default)(v,[{key:"bindRef",value:function(t){t&&(this.nodeRef=t)}},{key:"componentDidMount",value:function(){this.grabFallbackStyles()}},{key:"componentDidUpdate",value:function(){this.grabFallbackStyles()}},{key:"grabFallbackStyles",value:function(){var l=this.state,n=l.grabStylesCompleted,o=l.fallbackStyles;if(this.nodeRef&&!n){var s=t(this.nodeRef,this.props);(0,p.isEqual)(s,o)||this.setState({fallbackStyles:s,grabStylesCompleted:!!(0,p.every)(s)})}}},{key:"render",value:function(){var t=(0,l.createElement)(y,(0,n.default)({},this.props,this.state.fallbackStyles));return this.props.node?t:(0,l.createElement)("div",{ref:this.bindRef}," ",t," ")}}]),v})(l.Component)},'withFallbackStyles')}},1313,[2,3,16,34,35,42,45,44,48,21,975]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(n){return(0,p.createHigherOrderComponent)(function(p){var k,y='core/with-filters/'+n;function A(){void 0===k&&(k=(0,h.applyFilters)(n,p))}var _=(function(n){function p(){var n;return(0,o.default)(this,p),n=(0,c.default)(this,(0,s.default)(p).apply(this,arguments)),A(),n}return(0,l.default)(p,n),(0,u.default)(p,[{key:"componentDidMount",value:function(){p.instances.push(this),1===p.instances.length&&((0,h.addAction)('hookRemoved',y,F),(0,h.addAction)('hookAdded',y,F))}},{key:"componentWillUnmount",value:function(){p.instances=(0,f.without)(p.instances,this),0===p.instances.length&&((0,h.removeAction)('hookRemoved',y),(0,h.removeAction)('hookAdded',y))}},{key:"render",value:function(){return(0,t.createElement)(k,this.props)}}]),p})(t.Component);_.instances=[];var w=(0,f.debounce)(function(){k=(0,h.applyFilters)(n,p),_.instances.forEach(function(n){n.forceUpdate()})},v);function F(t){t===n&&w()}return _},'withFilters')};var t=r(d[1]),o=n(r(d[2])),u=n(r(d[3])),c=n(r(d[4])),s=n(r(d[5])),l=n(r(d[6])),f=r(d[7]),h=r(d[8]),p=r(d[9]),v=16},1314,[2,3,34,35,42,45,48,21,960,975]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=r(d[1]),n=t(r(d[2])),o=t(r(d[3])),c=t(r(d[4])),l=t(r(d[5])),s=t(r(d[6])),h=t(r(d[7])),f=t(r(d[8])),B=r(d[9]),k=r(d[10]),p=['button','submit'];function v(t){switch(t.nodeName){case'A':case'BUTTON':return!0;case'INPUT':return(0,B.includes)(p,t.type)}return!1}var C=(0,r(d[11]).createHigherOrderComponent)(function(t){return(function(p){function C(){var t;return(0,o.default)(this,C),(t=(0,l.default)(this,(0,s.default)(C).apply(this,arguments))).bindNode=t.bindNode.bind((0,h.default)(t)),t.cancelBlurCheck=t.cancelBlurCheck.bind((0,h.default)(t)),t.queueBlurCheck=t.queueBlurCheck.bind((0,h.default)(t)),t.normalizeButtonFocus=t.normalizeButtonFocus.bind((0,h.default)(t)),t}return(0,f.default)(C,p),(0,c.default)(C,[{key:"componentWillUnmount",value:function(){this.cancelBlurCheck()}},{key:"bindNode",value:function(t){t?this.node=t:(delete this.node,this.cancelBlurCheck())}},{key:"queueBlurCheck",value:function(t){var u=this;t.persist(),this.preventBlurCheck||(this.blurCheckTimeout=setTimeout(function(){'function'==typeof u.node.handleFocusOutside&&u.node.handleFocusOutside(t)},0))}},{key:"cancelBlurCheck",value:function(){clearTimeout(this.blurCheckTimeout)}},{key:"normalizeButtonFocus",value:function(t){var u=t.type,n=t.target;(0,B.includes)(['mouseup','touchend'],u)?this.preventBlurCheck=!1:v(n)&&(this.preventBlurCheck=!0)}},{key:"render",value:function(){return(0,u.createElement)(k.View,{onFocus:this.cancelBlurCheck,onMouseDown:this.normalizeButtonFocus,onMouseUp:this.normalizeButtonFocus,onTouchStart:this.normalizeButtonFocus,onTouchEnd:this.normalizeButtonFocus,onBlur:this.queueBlurCheck},(0,u.createElement)(t,(0,n.default)({ref:this.bindNode},this.props)))}}]),C})(u.Component)},'withFocusOutside');e.default=C},1315,[2,3,16,34,35,42,45,44,48,21,25,975]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"Provider",{enumerable:!0,get:function(){return F.default}}),e.default=void 0;var o=r(d[2]),u=n(r(d[3])),s=n(r(d[4])),c=n(r(d[5])),l=n(r(d[6])),f=n(r(d[7])),v=n(r(d[8])),p=r(d[9]),h=r(d[10]),F=t(r(d[11]));var E=(0,h.createHigherOrderComponent)(function t(n){if((E=n)instanceof o.Component||'function'==typeof E){var h=n;return t({})(h)}var E,y=n.onFocusReturn,w=void 0===y?p.stubTrue:y;return function(t){var n=(function(n){function h(){var t;return(0,s.default)(this,h),(t=(0,l.default)(this,(0,f.default)(h).apply(this,arguments))).ownFocusedElements=new Set,t.activeElementOnMount=document.activeElement,t.setIsFocusedFalse=function(){return t.isFocused=!1},t.setIsFocusedTrue=function(n){t.ownFocusedElements.add(n.target),t.isFocused=!0},t}return(0,v.default)(h,n),(0,c.default)(h,[{key:"componentWillUnmount",value:function(){var t=this.activeElementOnMount,n=this.isFocused,o=this.ownFocusedElements;if(n&&!1!==w())for(var s,c=[].concat((0,u.default)(p.without.apply(void 0,[this.props.focus.focusHistory].concat((0,u.default)(o)))),[t]);s=c.pop();)if(document.body.contains(s))return void s.focus()}},{key:"render",value:function(){return(0,o.createElement)("div",{onFocus:this.setIsFocusedTrue,onBlur:this.setIsFocusedFalse},(0,o.createElement)(t,this.props.childProps))}}]),h})(o.Component);return function(t){return(0,o.createElement)(F.Consumer,null,function(u){return(0,o.createElement)(n,{childProps:t,focus:u})})}}},'withFocusReturn');e.default=E},1316,[146,2,3,9,34,35,42,45,48,21,975,1317]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.Consumer=e.default=void 0;var s=r(d[1]),u=t(r(d[2])),o=t(r(d[3])),n=t(r(d[4])),c=t(r(d[5])),l=t(r(d[6])),f=t(r(d[7])),v=t(r(d[8])),y=r(d[9]),h=(0,s.createContext)({focusHistory:[]}),p=h.Provider,F=h.Consumer;e.Consumer=F,p.displayName='FocusReturnProvider',F.displayName='FocusReturnConsumer';var C=(function(t){function h(){var t;return(0,o.default)(this,h),(t=(0,c.default)(this,(0,l.default)(h).apply(this,arguments))).onFocus=t.onFocus.bind((0,f.default)(t)),t.state={focusHistory:[]},t}return(0,v.default)(h,t),(0,n.default)(h,[{key:"onFocus",value:function(t){var s=this.state.focusHistory,o=(0,y.uniq)([].concat((0,u.default)(s),[t.target]).slice(-100).reverse()).reverse();this.setState({focusHistory:o})}},{key:"render",value:function(){var t=this.props,u=t.children,o=t.className;return(0,s.createElement)(p,{value:this.state},(0,s.createElement)("div",{onFocus:this.onFocus,className:o},u))}}]),h})(s.Component);e.default=C},1317,[2,3,9,34,35,42,45,44,48,21]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),n=t(r(d[2])),c=t(r(d[3])),s=t(r(d[4])),u=t(r(d[5])),l=t(r(d[6])),f=t(r(d[7])),v=t(r(d[8])),p=t(r(d[9])),N=t(r(d[10])),h=t(r(d[11])),O=r(d[12]),y=t(r(d[13]));function b(t,o){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),o&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n}function j(t){for(var o=1;o0&&(0,o.createElement)(y.default,{className:"components-with-notices-ui",notices:this.state.noticeList,onRemove:this.removeNotice})},this.props))}}]),O})(o.Component)});e.default=L},1318,[2,3,16,9,18,34,35,42,45,44,48,1052,975,1319]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),o=t(r(d[2])),c=t(r(d[3])),u=t(r(d[4])),l=r(d[5]),v=t(r(d[6]));var f=function(t){var f=t.notices,s=t.onRemove,p=void 0===s?l.noop:s,_=t.className,y=t.children;return _=(0,u.default)('components-notice-list',_),(0,n.createElement)("div",{className:_},y,(0,c.default)(f).reverse().map(function(t){return(0,n.createElement)(v.default,(0,o.default)({},(0,l.omit)(t,['content']),{key:t.id,onRemove:(c=t.id,function(){return p(c)})}),t.content);var c}))};e.default=f},1319,[2,3,16,9,1166,21,1320]); +__d(function(g,r,i,a,m,e,d){var n=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[1]),o=r(d[2]),s=n(r(d[3])),l=r(d[4]),c=r(d[5]);var u=function(n){var u=n.className,v=n.status,_=n.children,f=n.onRemove,p=void 0===f?o.noop:f,b=n.isDismissible,N=void 0===b||b,k=n.actions,E=void 0===k?[]:k,C=n.__unstableHTML,h=(0,s.default)(u,'components-notice','is-'+v,{'is-dismissible':N});return C&&(_=(0,t.createElement)(t.RawHTML,null,_)),(0,t.createElement)("div",{className:h},(0,t.createElement)("div",{className:"components-notice__content"},_,E.map(function(n,o){var l=n.className,u=n.label,v=n.noDefaultClasses,_=void 0!==v&&v,f=n.onClick,p=n.url;return(0,t.createElement)(c.Button,{key:o,href:p,isSecondary:!_&&!p,isLink:!_&&!!p,onClick:p?void 0:f,className:(0,s.default)('components-notice__action',l)},u)})),N&&(0,t.createElement)(c.IconButton,{className:"components-notice__dismiss",icon:"no-alt",label:(0,l.__)('Dismiss this notice'),onClick:p,tooltip:!1}))};e.default=u},1320,[2,3,21,1166,347,1170]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),u=t(r(d[2])),o=t(r(d[3])),l=t(r(d[4])),p=t(r(d[5])),c=t(r(d[6])),f=t(r(d[7])),s=t(r(d[8])),k=r(d[9]),h=r(d[10]),v=(0,r(d[11]).createHigherOrderComponent)(function(t){return(function(v){function b(){var t;return(0,o.default)(this,b),(t=(0,p.default)(this,(0,c.default)(b).apply(this,arguments))).debouncedSpeak=(0,k.debounce)(t.speak.bind((0,f.default)(t)),500),t}return(0,s.default)(b,v),(0,l.default)(b,[{key:"speak",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:'polite';(0,h.speak)(t,n)}},{key:"componentWillUnmount",value:function(){this.debouncedSpeak.cancel()}},{key:"render",value:function(){return(0,n.createElement)(t,(0,u.default)({},this.props,{speak:this.speak,debouncedSpeak:this.debouncedSpeak}))}}]),b})(n.Component)},'withSpokenMessages');e.default=v},1321,[2,3,16,34,35,42,45,44,48,21,1231,975]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.HTMLTextInput=void 0;var o=r(d[1]),l=t(r(d[2])),n=t(r(d[3])),s=t(r(d[4])),u=t(r(d[5])),c=t(r(d[6])),h=t(r(d[7])),p=r(d[8]),v=r(d[9]),f=r(d[10]),y=r(d[11]),E=r(d[12]),T=r(d[13]),C=t(r(d[14])),b="ios"===p.Platform.OS?r(d[15]):r(d[16]),w=(function(t){function f(){var t;return(0,l.default)(this,f),(t=(0,s.default)(this,(0,u.default)(f).apply(this,arguments))).edit=t.edit.bind((0,c.default)(t)),t.stopEditing=t.stopEditing.bind((0,c.default)(t)),(0,E.addAction)('native-editor.persist-html','core/editor',t.stopEditing),t.state={},t}return(0,h.default)(f,t),(0,n.default)(f,[{key:"componentWillUnmount",value:function(){(0,E.removeAction)('native-editor.persist-html','core/editor'),this.stopEditing()}},{key:"edit",value:function(t){this.props.onChange(t),this.setState({value:t,isDirty:!0})}},{key:"stopEditing",value:function(){this.state.isDirty&&(this.props.onPersist(this.state.value),this.setState({isDirty:!1}))}},{key:"render",value:function(){var t=this.props.getStylesFromColorScheme,l=t(b.htmlView,b.htmlViewDark),n=t(b.placeholder,b.placeholderDark);return(0,o.createElement)(C.default,{parentHeight:this.props.parentHeight},(0,o.createElement)(p.TextInput,{autoCorrect:!1,accessibilityLabel:"html-view-title",textAlignVertical:"center",numberOfLines:1,style:b.htmlViewTitle,value:this.props.title,placeholder:(0,v.__)('Add title'),placeholderTextColor:n.color,onChangeText:this.props.editTitle}),(0,o.createElement)(p.TextInput,{autoCorrect:!1,accessibilityLabel:"html-view-content",textAlignVertical:"top",multiline:!0,style:l,value:this.state.value,onChangeText:this.edit,onBlur:this.stopEditing,placeholder:(0,v.__)('Start writing\u2026'),placeholderTextColor:n.color,scrollEnabled:C.default.scrollEnabled}))}}],[{key:"getDerivedStateFromProps",value:function(t,o){return o.isDirty?null:{value:t.value,isDirty:!1}}}]),f})(o.Component);e.HTMLTextInput=w;var x=(0,T.compose)([(0,y.withSelect)(function(t){var o=t('core/editor'),l=o.getEditedPostAttribute,n=o.getEditedPostContent;return{title:l('title'),value:n()}}),(0,y.withDispatch)(function(t){var o=t('core/editor'),l=o.editPost,n=o.resetEditorBlocks;return{editTitle:function(t){l({title:t})},onChange:function(t){l({content:t})},onPersist:function(t){var o=(0,f.parse)(t);n(o)}}}),T.withInstanceId,T.withPreferredColorScheme])(w);e.default=x},1322,[2,3,34,35,42,45,44,48,25,347,1045,911,960,975,1323,1326,1325]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=r(d[2]),o=t(r(d[3])),u=t(r(d[4])),c=function(t){var c=t.children,f=t.parentHeight;return(0,l.createElement)(o.default,{style:u.default.keyboardAvoidingView,parentHeight:f},(0,l.createElement)(n.ScrollView,{style:u.default.scrollView},c))};c.scrollEnabled=!1;var f=c;e.default=f},1323,[2,3,25,1324,1325]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.KeyboardAvoidingView=void 0;var o=r(d[0]).KeyboardAvoidingView;e.KeyboardAvoidingView=o;var v=o;e.default=v},1324,[25]); +__d(function(g,r,i,a,m,e,d){m.exports={keyboardAvoidingView:{position:"absolute",top:0,right:0,left:0,bottom:0},container:{flexGrow:1,flexShrink:1,flexBasis:0},placeholder:{color:"#87a6bc"},placeholderDark:{color:"#646970"},htmlView:{fontFamily:"monospace",paddingLeft:8,paddingRight:8,paddingTop:8,paddingBottom:24},htmlViewTitle:{fontFamily:"monospace",paddingLeft:8,paddingRight:8,paddingTop:8,paddingBottom:8},scrollView:{flexGrow:1,flexShrink:1,flexBasis:0}}},1325,[]); +__d(function(g,r,i,a,m,e,d){m.exports={keyboardAvoidingView:{position:"absolute",top:0,right:0,left:0,bottom:0},container:{flexGrow:1,flexShrink:1,flexBasis:0},placeholder:{color:"#87a6bc"},placeholderDark:{color:"#646970"},htmlView:{fontFamily:"monospace",paddingLeft:8,paddingRight:8,paddingBottom:40},htmlViewDark:{color:"#fff"},htmlViewTitle:{fontFamily:"monospace",paddingLeft:8,paddingRight:8,paddingTop:8,paddingBottom:8,height:32}}},1326,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.KeyboardAwareFlatList=void 0;var l=r(d[1]),n=r(d[2]),o=t(r(d[3])),u=function(t){return(0,l.createElement)(o.default,{style:{flex:1}},(0,l.createElement)(n.FlatList,t))};e.KeyboardAwareFlatList=u,u.handleCaretVerticalPositionChange=function(){};var f=u;e.default=f},1327,[2,3,25,1324]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),l=r(d[2]),o=t(r(d[3])),u=function(t){var u=t.reversed,c=t.children;return(0,n.createElement)(l.View,{style:o.default.container},(0,n.createElement)(l.View,{style:u?o.default.reversedCenteredContent:o.default.centeredContent},c))};u.isContentMaxWidth=function(){return l.Dimensions.get('window').width>o.default.centeredContent.maxWidth};var c=u;e.default=c},1328,[2,3,25,1329]); +__d(function(g,r,i,a,m,e,d){m.exports={container:{alignItems:"center"},centeredContent:{width:"100%",maxWidth:580},reversedCenteredContent:{flexDirection:"column-reverse",width:"100%",maxWidth:580}}},1329,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.useBlockEditContext=function(){return(0,n.useContext)(u)},e.ifBlockEditSelected=e.withBlockEditContext=e.BlockEditContextProvider=void 0;var n=r(d[1]),o=t(r(d[2])),c=r(d[3]),l=r(d[4]),u=(0,n.createContext)({name:'',isSelected:!1,focusedElement:null,setFocusedElement:c.noop,clientId:null}),f=u.Provider,E=u.Consumer;e.BlockEditContextProvider=f;e.withBlockEditContext=function(t){return(0,l.createHigherOrderComponent)(function(c){return function(l){return(0,n.createElement)(E,null,function(u){return(0,n.createElement)(c,(0,o.default)({},l,t(u,l)))})}},'withBlockEditContext')};var C=(0,l.createHigherOrderComponent)(function(t){return function(o){return(0,n.createElement)(E,null,function(c){return c.isSelected&&(0,n.createElement)(t,o)})}},'ifBlockEditSelected');e.ifBlockEditSelected=C},1330,[2,3,16,21,975]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[0]),t=r(d[1]),o=r(d[2]),n=(0,t.createSlotFill)('BlockControls'),c=n.Fill,u=n.Slot,f=(0,o.ifBlockEditSelected)(function(o){var n=o.controls,u=o.children;return(0,l.createElement)(c,null,(0,l.createElement)(t.Toolbar,{controls:n}),u)});f.Slot=u;var v=f;e.default=v},1331,[3,1170,1330]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"useBlockEditContext",{enumerable:!0,get:function(){return v.useBlockEditContext}}),e.default=void 0;var n=r(d[1]),o=t(r(d[2])),u=t(r(d[3])),l=t(r(d[4])),c=t(r(d[5])),s=t(r(d[6])),f=t(r(d[7])),p=t(r(d[8])),C=t(r(d[9])),v=r(d[10]),h=(function(t){function h(){var t;return(0,o.default)(this,h),(t=(0,l.default)(this,(0,c.default)(h).apply(this,arguments))).propsToContext=(0,p.default)(t.propsToContext.bind((0,s.default)(t)),{maxSize:1}),t}return(0,f.default)(h,t),(0,u.default)(h,[{key:"propsToContext",value:function(t,n,o,u,l){return{name:t,isSelected:n,clientId:o,onFocus:u,onCaretVerticalPositionChange:l}}},{key:"render",value:function(){var t=this.props,o=t.name,u=t.isSelected,l=t.clientId,c=t.onFocus,s=t.onCaretVerticalPositionChange,f=this.propsToContext(o,u,l,c,s);return(0,n.createElement)(v.BlockEditContextProvider,{value:f},(0,n.createElement)(C.default,this.props))}}]),h})(n.Component);e.default=h},1332,[2,3,34,35,42,45,44,48,353,1333,1330]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.Edit=void 0;var t=r(d[0]),l=r(d[1]),n=r(d[2]),u=function(l){var u=l.name,o=(0,n.getBlockType)(u);if(!o)return null;var c=o.edit;return(0,t.createElement)(c,l)};e.Edit=u;var o=(0,l.withFilters)('editor.BlockEdit')(u);e.default=o},1333,[3,1170,1045]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[0]),t=r(d[1]),o=(0,l.createSlotFill)('BlockFormatControls'),c=o.Fill,f=o.Slot,u=(0,t.ifBlockEditSelected)(c);u.Slot=f;var n=u;e.default=n},1334,[1170,1330]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(l){var v=l.icon,s=l.showColors,u=void 0!==s&&s;'block-default'===(0,c.get)(v,['src'])&&(v={src:(0,o.createElement)(n.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)(n.Path,{d:"M19 7h-1V5h-4v2h-4V5H6v2H5c-1.1 0-2 .9-2 2v10h18V9c0-1.1-.9-2-2-2zm0 10H5V9h14v8z"}))});var h=(0,o.createElement)(n.Icon,{icon:v&&v.src?v.src:v}),w=u?{backgroundColor:v&&v.background,color:v&&v.foreground}:{};return(0,o.createElement)(t.View,{style:w},h)};var o=r(d[0]),c=r(d[1]),t=r(d[2]),n=r(d[3])},1335,[3,21,25,1170]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.BlockVerticalAlignmentToolbar=O,e.default=void 0;var n=r(d[1]),o=t(r(d[2])),l=r(d[3]),c=r(d[4]),p=r(d[5]);function u(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function s(t){for(var n=1;n1&&void 0!==arguments[1]?arguments[1]:{panelTitle:(0,C.__)('Color Settings')},u=c.panelTitle,y=void 0===u?(0,C.__)('Color Settings'):u,k=c.colorPanelProps,h=c.contrastCheckers,O=c.panelChildren,E=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],w=(0,S.useBlockEditContext)().clientId,D=(0,b.useSelect)(function(t){var o=t('core/block-editor'),n=o.getBlockAttributes,l=o.getSettings,c=l().colors;return{attributes:n(w),settingsColors:c&&!0!==c?c:x}},[w]),M=D.attributes,R=D.settingsColors,B=(0,b.useDispatch)('core/block-editor').updateBlockAttributes,q=(0,o.useCallback)(function(t){return B(w,t)},[B,w]),T=(0,o.useMemo)(function(){return(0,s.default)(function(t,n,c,u,s,C){return function(b){var v=b.children,y=b.className,k=void 0===y?'':y,h=b.style,S=void 0===h?{}:h;return o.Children.map(v,function(b){var v,y={};return u?y=(0,l.default)({},n,s):C&&(y=(0,l.default)({},n,C)),(0,o.cloneElement)(b,{className:(0,f.default)(k,b.props.className,(v={},(0,l.default)(v,"has-"+(0,p.kebabCase)(u)+"-"+(0,p.kebabCase)(n),u),(0,l.default)(v,c||"has-"+(0,p.kebabCase)(t),u||C),v)),style:P({},y,{},S,{},b.props.style||{})})})}},{maxSize:t.length})},[t.length]),z=(0,o.useMemo)(function(){return(0,s.default)(function(t,o){return function(n){var c=o.find(function(t){return t.color===n});q((0,l.default)({},c?(0,p.camelCase)("custom "+t):t,void 0)),q((0,l.default)({},c?t:(0,p.camelCase)("custom "+t),c?c.slug:n))}},{maxSize:t.length})},[q,t.length]),F=(0,o.useRef)(),I=(0,o.useRef)(),L=(0,o.useMemo)(function(){if(h){for(var t=!1,n=!1,l=(0,p.castArray)(h),c=Array.isArray(l),u=0,l=c?l:l["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var s;if(c){if(u>=l.length)break;s=l[u++]}else{if((u=l.next()).done)break;s=u.value}var f=s,C=f.backgroundColor,b=f.textColor;if(t||(t=!0===C),n||(n=!0===b),t&&n)break}return(t||n)&&(0,v.withFallbackStyles)(function(o,n){var l,c=n.querySelector,u=n.backgroundColorSelector,s=void 0===u?c:u,f=n.textColorSelector,p=void 0===f?c:f,C=o,b=o;s&&(C=o.parentNode.querySelector(s)),p&&(b=o.parentNode.querySelector(p));var v=N(b).color;if(t)for(l=N(C).backgroundColor;'rgba(0, 0, 0, 0)'===l&&C.parentNode&&C.parentNode===j.ELEMENT_NODE;)C=C.parentNode,l=N(C).backgroundColor;return F.current=l,I.current=v,{backgroundColor:l,color:v}})(function(){return(0,o.createElement)(o.Fragment,null)})}},[t.reduce(function(t,o){return t+" | "+M[o.name]+" | "+M[(0,p.camelCase)("custom "+o.name)]},'')].concat((0,n.default)(E)));return(0,o.useMemo)(function(){var n={},l=t.reduce(function(t,o){'string'==typeof o&&(o={name:o});var l=P({},o,{color:M[o.name]}),c=l.name,u=l.property,s=void 0===u?c:u,f=l.className,C=l.panelLabel,b=void 0===C?(0,p.startCase)(c):C,v=l.componentName,y=void 0===v?b.replace(/\s/g,''):v,k=l.color,h=void 0===k?o.color:k,S=l.colors,O=void 0===S?R:S,E=M[(0,p.camelCase)("custom "+c)],N=E?void 0:O.find(function(t){return t.slug===h});return t[y]=T(c,s,f,h,N&&N.color,E),t[y].displayName=y,t[y].color=E||N&&N.color,t[y].slug=h,t[y].setColor=z(c,O),n[y]={value:N?N.color:M[(0,p.camelCase)("custom "+c)],onChange:t[y].setColor,label:b,colors:O},O||delete n[y].colors,t},{}),c={title:y,colorSettings:n,colorPanelProps:k,contrastCheckers:h,detectedBackgroundColorRef:F,detectedColorRef:I,panelChildren:O};return P({},l,{ColorPanel:(0,o.createElement)(_,c),InspectorControlsColorPanel:(0,o.createElement)(A,c),ColorDetector:L})},[M,q].concat((0,n.default)(E)))};var o=r(d[1]),n=t(r(d[2])),l=t(r(d[3])),c=t(r(d[4])),u=t(r(d[5])),s=t(r(d[6])),f=t(r(d[7])),p=r(d[8]),C=r(d[9]),b=r(d[10]),v=r(d[11]),y=t(r(d[12])),k=t(r(d[13])),h=t(r(d[14])),S=r(d[15]);function O(t,o){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),o&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n}function P(t){for(var o=1;o0&&void 0!==arguments[0]?arguments[0]:[],o=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0;return!P(o,n)||(n.colors||t).length>0},h=(0,b.__)('(%s: %s)'),_=function(t,n){return t.map(function(t,l){var s=t.value,c=t.label,f=t.colors;if(!s)return null;var p=(0,C.getColorObjectByColorValue)(f||n,s),v=p&&p.name,O=(0,b.sprintf)(h,c.toLowerCase(),v||s);return(0,o.createElement)(u.ColorIndicator,{key:l,colorValue:s,"aria-label":O})})},w=(0,f.ifCondition)(function(t){var o=t.colors,n=t.disableCustomColors,l=t.colorSettings;return(0,c.some)(l,function(t){return j(o,n,t)})})(function(t){var l=t.children,c=t.colors,f=t.colorSettings,b=t.disableCustomColors,v=t.title,C=(0,s.default)(t,["children","colors","colorSettings","disableCustomColors","title"]),O=(0,o.createElement)("span",{className:"block-editor-panel-color-settings__panel-title"},v,_(f,c));return(0,o.createElement)(u.PanelBody,(0,n.default)({className:"block-editor-panel-color-settings",title:O},C),f.map(function(t,l){return(0,o.createElement)(p.default,(0,n.default)({key:l},y({colors:c,disableCustomColors:b},t)))}),l)});e.PanelColorSettings=w;var S=(0,v.default)(w);e.default=S},1342,[2,3,16,18,19,21,1170,975,347,1343,1345,1338]); +__d(function(g,r,i,a,m,e,d){var o=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.ColorPaletteControl=v,e.default=void 0;var l=r(d[1]),t=o(r(d[2])),n=r(d[3]),c=r(d[4]),s=r(d[5]),u=o(r(d[6])),C=o(r(d[7])),f=r(d[8]),b=(0,s.__)('(current %s: %s)');function v(o){var c=o.colors,C=o.disableCustomColors,v=o.label,_=o.onChange,p=o.value,h=(0,f.getColorObjectByColorValue)(c,p),E=h&&h.name,B=(0,s.sprintf)(b,v.toLowerCase(),E||p);return(0,l.createElement)(n.BaseControl,{className:"block-editor-color-palette-control"},(0,l.createElement)(n.BaseControl.VisualLabel,null,v,p&&(0,l.createElement)(n.ColorIndicator,{colorValue:p,"aria-label":B})),(0,l.createElement)(u.default,(0,t.default)({className:"block-editor-color-palette-control__color-palette",value:p,onChange:_},{colors:c,disableCustomColors:C})))}var _=(0,c.compose)([C.default,(0,c.ifCondition)(function(o){return o.hasColorsToChoose})])(v);e.default=_},1343,[2,3,16,1170,975,347,1344,1345,1338]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),o=(0,t(r(d[2])).default)(l.ColorPalette);e.default=o},1344,[2,1170,1345]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[0]),t=r(d[1]),s=r(d[2]),l=(0,t.createHigherOrderComponent)((0,s.withSelect)(function(t,s){var l=t('core/block-editor').getSettings(),C=void 0===s.colors?l.colors:s.colors,c=void 0===s.disableCustomColors?l.disableCustomColors:s.disableCustomColors;return{colors:C,disableCustomColors:c,hasColorsToChoose:!(0,o.isEmpty)(C)||!c}}),'withColorContext');e.default=l},1345,[21,975,911]); +__d(function(g,r,i,a,m,e,d){var o=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[1]),l=o(r(d[2])),n=r(d[3]),c=r(d[4]),u=r(d[5]);function s(o){var l=o.tinyBackgroundColor,s=o.tinyTextColor,b=o.backgroundColor,f=o.textColor,k=l.getBrightness()=24?'large':'small'})?null:(0,t.createElement)(s,{backgroundColor:n,textColor:k,tinyBackgroundColor:h,tinyTextColor:C})};e.default=b},1346,[2,3,1057,1231,347,1170]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=t(r(d[2])),o=t(r(d[3])),c=r(d[4]),u=r(d[5]),f=r(d[6]),v=(0,c.createSlotFill)('InspectorControls'),S=v.Fill,s=v.Slot,E=(0,u.ifBlockEditSelected)(function(t){var c=t.children,u=(0,n.default)(t,["children"]);return(0,l.createElement)(l.Fragment,null,(0,l.createElement)(S,u,c),o.default.Children.count(c)>0&&(0,l.createElement)(f.BlockSettingsButton,null))});E.Slot=s;var _=E;e.default=_},1347,[2,3,19,13,1170,1330,1348]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"BlockSettingsButton",{enumerable:!0,get:function(){return n.default}}),Object.defineProperty(e,"BottomSheetSettings",{enumerable:!0,get:function(){return u.default}});var n=t(r(d[1])),u=t(r(d[2]))},1348,[2,1349,1350]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),n=r(d[1]),o=r(d[2]),l=r(d[3]),c=(0,n.createSlotFill)('SettingsToolbarButton'),u=c.Fill,f=c.Slot,p=function(l){var c=l.openGeneralSidebar;return(0,t.createElement)(n.ToolbarButton,{title:(0,o.__)('Open Settings'),icon:"admin-generic",onClick:c})},S=(0,l.withDispatch)(function(t){var n=t('core/edit-post').openGeneralSidebar;return{openGeneralSidebar:function(){return n('edit-post/block')}}})(function(n){return(0,t.createElement)(u,null,(0,t.createElement)(p,n))});S.Slot=f;var b=S;e.default=b},1349,[3,1170,347,911]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),n=t(r(d[2])),l=t(r(d[3])),c=r(d[4]),s=r(d[5]),u=r(d[6]),S=r(d[7]),b=t(r(d[8]));var f=(0,u.compose)([(0,s.withSelect)(function(t){return{editorSidebarOpened:(0,t('core/edit-post').isEditorSidebarOpened)()}}),(0,s.withDispatch)(function(t){return{closeGeneralSidebar:t('core/edit-post').closeGeneralSidebar}})])(function(t){var s=t.editorSidebarOpened,u=t.closeGeneralSidebar,f=(0,l.default)(t,["editorSidebarOpened","closeGeneralSidebar"]);return(0,o.createElement)(c.BottomSheet,(0,n.default)({isVisible:s,onClose:u,hideHeader:!0,contentStyle:b.default.content},f),(0,o.createElement)(S.InspectorControls.Slot,null))});e.default=f},1350,[2,3,16,19,1170,911,975,1044,1351]); +__d(function(g,r,i,a,m,e,d){m.exports={content:{paddingLeft:0,paddingRight:0}}},1351,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"getFontSize",{enumerable:!0,get:function(){return t.getFontSize}}),Object.defineProperty(e,"getFontSizeClass",{enumerable:!0,get:function(){return t.getFontSizeClass}});var t=r(d[0])},1352,[1353]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getFontSizeClass=function(t){if(!t)return;return"has-"+(0,n.kebabCase)(t)+"-font-size"},e.getFontSize=void 0;var n=r(d[0]);e.getFontSize=function(t,o,u){if(o){var f=(0,n.find)(t,{slug:o});if(f)return f}return{size:u}}},1353,[21]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.AlignmentToolbar=v,e.default=void 0;var n=r(d[1]),o=t(r(d[2])),l=r(d[3]),c=r(d[4]),u=r(d[5]);function f(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function p(t){for(var n=1;n0&&(0,o.createElement)(k.View,{style:I.default.paddingToContent},(0,o.createElement)(v.default,{rootClientId:this.props.rootClientId,renderAppender:this.props.renderAppender})))}},{key:"isReplaceable",value:function(t){return!!t&&(0,y.isUnmodifiedDefaultBlock)(t)}},{key:"renderItem",value:function(t){var l=t.item,n=t.index,c=this.props,s=c.shouldShowBlockAtIndex,u=c.shouldShowInsertionPointBefore,p=c.shouldShowInsertionPointAfter;return(0,o.createElement)(b.ReadableContentView,null,u(l)&&this.renderAddBlockSeparator(),s(n)&&(0,o.createElement)(A.default,{key:l,showTitle:!1,clientId:l,rootClientId:this.props.rootClientId,onCaretVerticalPositionChange:this.onCaretVerticalPositionChange,isSmallScreen:!this.props.isFullyBordered}),p(l)&&this.renderAddBlockSeparator())}},{key:"renderAddBlockSeparator",value:function(){var t=this.props.getStylesFromColorScheme(I.default.lineStyleAddHere,I.default.lineStyleAddHereDark),l=this.props.getStylesFromColorScheme(I.default.labelStyleAddHere,I.default.labelStyleAddHereDark);return(0,o.createElement)(k.View,{style:I.default.containerStyleAddHere},(0,o.createElement)(k.View,{style:t}),(0,o.createElement)(k.Text,{style:l},(0,B.__)('ADD BLOCK HERE')),(0,o.createElement)(k.View,{style:t}))}},{key:"renderBlockListFooter",value:function(){var t=this,l=(0,y.createBlock)('core/paragraph');return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(k.TouchableWithoutFeedback,{onPress:function(){t.addBlockToEndOfPost(l)}},(0,o.createElement)(k.View,{style:I.default.blockListFooter})),(0,o.createElement)(w.default.Slot,null))}}]),S})(o.Component);e.BlockList=P;var E=(0,C.compose)([(0,S.withSelect)(function(t,o){var l=o.rootClientId,n=t('core/block-editor'),c=n.getBlockCount,s=n.getBlockIndex,u=n.getBlockOrder,p=n.getSelectedBlockClientId,h=n.getBlockInsertionPoint,f=n.isBlockInsertionPointVisible,k=n.getSelectedBlock,B=t('core/blocks').getGroupingBlockName,S=p(),C=u(l),y=h(),b=f(),I=k(),A=I&&I.name===B(),v=s(S,l);return{blockClientIds:C,blockCount:c(l),isBlockInsertionPointVisible:f(),shouldShowBlockAtIndex:function(t){return!(!A&&b&&t===y.index&&t===v)},shouldShowInsertionPointBefore:function(t){return b&&y.rootClientId===l&&(0===C.length||C[y.index]===t)},shouldShowInsertionPointAfter:function(t){return b&&y.rootClientId===l&&C.length===y.index&&C[y.index-1]===t},selectedBlockClientId:S,isRootList:void 0===l}}),(0,S.withDispatch)(function(t){var o=t('core/block-editor'),l=o.insertBlock,n=o.replaceBlock;return{clearSelectedBlock:o.clearSelectedBlock,insertBlock:l,replaceBlock:n}}),C.withPreferredColorScheme])(P);e.default=E},1367,[2,3,16,34,35,42,45,44,48,21,25,347,911,975,1045,1170,1368,1369,1384,1386]); +__d(function(g,r,i,a,m,e,d){m.exports={container:{flexGrow:1,flexShrink:1,flexBasis:0,justifyContent:"flex-start",backgroundColor:"#fff"},switch:{flexDirection:"row",justifyContent:"flex-start",alignItems:"center",marginTop:10,marginRight:10,marginBottom:10,marginLeft:10},switchLabel:{marginLeft:10},lineStyleAddHere:{flexGrow:1,flexShrink:1,flexBasis:0,backgroundColor:"#0087be",alignSelf:"center",height:2},lineStyleAddHereDark:{backgroundColor:"#646970"},labelStyleAddHere:{flexGrow:1,flexShrink:1,flexBasis:0,textAlign:"center",fontFamily:"monospace",fontSize:12,fontWeight:"bold"},labelStyleAddHereDark:{color:"#a7aaad"},containerStyleAddHere:{flexDirection:"row"},blockListFooter:{height:80},paddingToContent:{paddingLeft:9,paddingRight:9}}},1368,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),o=t(r(d[2])),n=t(r(d[3])),c=t(r(d[4])),s=t(r(d[5])),u=t(r(d[6])),f=t(r(d[7])),p=t(r(d[8])),h=r(d[9]),k=r(d[10]),b=r(d[11]),y=r(d[12]),B=r(d[13]),S=r(d[14]),v=t(r(d[15])),C=t(r(d[16])),I=t(r(d[17])),O=t(r(d[18])),P=t(r(d[19])),E=t(r(d[20])),T=t(r(d[21]));function w(t,l){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),l&&(o=o.filter(function(l){return Object.getOwnPropertyDescriptor(t,l).enumerable})),o}function A(t){for(var l=1;l0&&void 0!==arguments[0]?arguments[0]:l.clientId,o=arguments.length>1?arguments[1]:void 0;p(t,o)},onChange:function(t){h(l.clientId,t)},onReplace:function(t,o){f([l.clientId],t,o)}}}),y.withPreferredColorScheme])(F);e.default=L},1369,[2,3,18,34,35,42,45,44,48,25,1170,911,975,1045,347,1370,1332,1371,1374,1377,1379,1383]); +__d(function(g,r,i,a,m,e,d){m.exports={blockHolder:{flexGrow:1,flexShrink:1,flexBasis:"auto"},semiSolidBordered:{borderTopWidth:1,borderBottomWidth:1,borderLeftWidth:0,borderRightWidth:0,borderStyle:"solid"},fullSolidBordered:{borderWidth:1,borderRadius:4,borderStyle:"solid"},dashedBordered:{borderWidth:1,borderRadius:2,borderStyle:"dashed"},solidBorderColor:{borderColor:"#0087be"},solidBorderColorDark:{borderColor:"#5198d9"},dashedBorderColor:{borderColor:"#87a6bc"},dashedBorderColorDark:{borderColor:"#3c434a"},dimmed:{opacity:.2},horizontalSpaceNone:{paddingLeft:0,paddingRight:0,marginLeft:0,marginRight:0},marginHorizontalNone:{marginLeft:0,marginRight:0},blockTitle:{backgroundColor:"#87a6bc",paddingLeft:8,paddingTop:4,paddingBottom:4},neutral:{marginTop:0,marginRight:0,marginBottom:0,marginLeft:0,borderWidth:0,borderColor:"black",borderStyle:"solid",paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0},full:{marginTop:16,marginRight:16,marginBottom:16,marginLeft:16,borderWidth:0,borderColor:"black",borderStyle:"solid",paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0},selectedLeaf:{marginTop:3,marginRight:3,marginBottom:3,marginLeft:3,paddingTop:12,paddingRight:12,paddingBottom:12,paddingLeft:12},selectedRootLeaf:{marginTop:0,marginRight:0,marginBottom:0,marginLeft:0,paddingTop:16,paddingRight:16,paddingBottom:16,paddingLeft:16},selectedParent:{marginTop:3,marginRight:3,marginBottom:3,marginLeft:3,paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0},childOfSelected:{marginTop:5,marginRight:5,marginBottom:5,marginLeft:5,paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0},childOfSelectedLeaf:{marginTop:5,marginRight:5,marginBottom:5,marginLeft:5,paddingTop:6,paddingRight:6,paddingBottom:6,paddingLeft:6},descendantOfSelectedLeaf:{marginTop:6,marginRight:6,marginBottom:6,marginLeft:6},aztec_container:{flexGrow:1,flexShrink:1,flexBasis:0},blockCode:{fontFamily:"monospace"},blockText:{minHeight:50},toolbar:{borderLeftWidth:0,marginRight:"auto",paddingLeft:2,height:44},pipe:{marginTop:"auto",marginBottom:"auto",marginLeft:2,height:28,width:1,backgroundColor:"#e9eff3",opacity:.4}}},1370,[]); +__d(function(g,r,i,a,m,e,d){var l=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(l){var o=l.blockTitle,s=l.icon,b=(0,c.sprintf)((0,c.__)('%s block. This block has invalid content'),o);return(0,t.createElement)(n.default,{title:o,message:(0,c.__)('Problem displaying block'),icon:s,accessible:!0,accessibilityLabel:b})};var t=r(d[1]),c=r(d[2]),n=l(r(d[3]))},1371,[2,3,347,1372]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),o=t(r(d[2])),c=t(r(d[3])),n=r(d[4]),s=r(d[5]),f=r(d[6]),u=r(d[7]),v=t(r(d[8]));var y=(0,f.withPreferredColorScheme)(function(t){var f=t.title,y=t.message,C=t.icon,S=t.iconClass,h=t.preferredColorScheme,E=t.getStylesFromColorScheme,w=(0,c.default)(t,["title","message","icon","iconClass","preferredColorScheme","getStylesFromColorScheme"]);C=C&&(0,u.normalizeIconObject)(C);var _="warning-icon-"+h,k=E(v.default.title,v.default.titleDark),p=E(v.default.message,v.default.messageDark);return(0,l.createElement)(n.View,(0,o.default)({style:E(v.default.container,v.default.containerDark)},w),C&&(0,l.createElement)(n.View,{style:v.default.icon},(0,l.createElement)(s.Icon,{className:S||_,icon:C&&C.src?C.src:C})),f&&(0,l.createElement)(n.Text,{style:k},f),y&&(0,l.createElement)(n.Text,{style:p},y))});e.default=y},1372,[2,3,16,19,25,1170,975,1045,1373]); +__d(function(g,r,i,a,m,e,d){m.exports={container:{backgroundColor:"#e9eff3",paddingTop:24,paddingBottom:24,paddingLeft:8,paddingRight:8,borderTopLeftRadius:4,borderTopRightRadius:4,borderBottomLeftRadius:4,borderBottomRightRadius:4,alignItems:"center",justifyContent:"center"},containerDark:{backgroundColor:"#1e2327"},icon:{width:24,height:24,marginBottom:4,fill:"#2e4453"},title:{textAlign:"center",marginBottom:6,fontSize:14,color:"#2e4453"},titleDark:{color:"#fff"},message:{textAlign:"center",color:"#537994",fontSize:12},messageDark:{color:"#fff"}}},1373,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),l=r(d[2]),n=r(d[3]),c=r(d[4]),u=r(d[5]),s=r(d[6]),f=t(r(d[7])),v=t(r(d[8])),b=r(d[9]),k=(0,s.compose)((0,u.withSelect)(function(t,o){var l=o.clientId;return{order:(0,t('core/block-editor').getBlockIndex)(l)}}),(0,u.withDispatch)(function(t,o){var n=o.clientId,c=o.rootClientId,u=t('core/block-editor').removeBlock;return{onDelete:function(){l.Keyboard.dismiss(),u(n,c)}}}))(function(t){var u=t.clientId,s=t.onDelete,k=t.order;return(0,o.createElement)(l.View,{style:f.default.toolbar},(0,o.createElement)(v.default,{clientIds:[u]}),(0,o.createElement)(l.View,{style:f.default.spacer}),(0,o.createElement)(b.BlockSettingsButton.Slot,null),(0,o.createElement)(n.ToolbarButton,{title:(0,c.sprintf)((0,c.__)('Remove block at row %s'),k+1),onClick:s,icon:"trash",extraProps:{hint:(0,c.__)('Double tap to remove the block')}}))});e.default=k},1374,[2,3,25,1170,347,911,975,1375,1376,1348]); +__d(function(g,r,i,a,m,e,d){m.exports={toolbar:{flexDirection:"row",height:44,alignItems:"flex-start",marginLeft:2,marginRight:2},spacer:{flexGrow:1}}},1375,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[0]),t=r(d[1]),n=r(d[2]),l=r(d[3]),c=r(d[4]),s=r(d[5]),u=(0,s.compose)((0,c.withSelect)(function(o,n){var l=n.clientIds,c=o('core/block-editor'),s=c.getBlockIndex,u=c.getTemplateLock,p=c.getBlockRootClientId,k=c.getBlockOrder,v=(0,t.castArray)(l),w=(0,t.first)(v),_=p(w),b=k(_),f=s(w,_);return{firstIndex:f,isFirst:0===f,isLast:s((0,t.last)(v),_)===b.length-1,isLocked:'all'===u(_),rootClientId:_}}),(0,c.withDispatch)(function(o,n){var l=n.clientIds,c=n.rootClientId,s=o('core/block-editor'),u=s.moveBlocksDown,p=s.moveBlocksUp;return{onMoveDown:(0,t.partial)(u,l,c),onMoveUp:(0,t.partial)(p,l,c)}}),s.withInstanceId)(function(t){var c=t.isFirst,s=t.isLast,u=t.isLocked,p=t.onMoveDown,k=t.onMoveUp,v=t.firstIndex,w=t.rootClientId;return u||c&&s&&!w?null:(0,o.createElement)(o.Fragment,null,(0,o.createElement)(n.ToolbarButton,{title:c?(0,l.__)('Move block up'):(0,l.sprintf)((0,l.__)('Move block up from row %1$s to row %2$s'),v+1,v),isDisabled:c,onClick:k,icon:"arrow-up-alt",extraProps:{hint:(0,l.__)('Double tap to move the block up')}}),(0,o.createElement)(n.ToolbarButton,{title:s?(0,l.__)('Move block down'):(0,l.sprintf)((0,l.__)('Move block down from row %1$s to row %2$s'),v+1,v+2),isDisabled:s,onClick:p,icon:"arrow-down-alt",extraProps:{hint:(0,l.__)('Double tap to move the block down')}}))});e.default=u},1376,[3,21,1170,347,911,975]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=r(d[2]),u=t(r(d[3])),o=function(t){var o=t.children;return(0,l.createElement)(n.TouchableWithoutFeedback,null,(0,l.createElement)(n.View,{style:u.default.floatingToolbar},o))};e.default=o},1377,[2,3,25,1378]); +__d(function(g,r,i,a,m,e,d){m.exports={floatingToolbar:{backgroundColor:"#555d66",marginTop:"auto",marginRight:"auto",marginBottom:8,marginLeft:"auto",minWidth:100,maxHeight:44,borderRadius:22,flexDirection:"row",zIndex:100,height:44,alignItems:"center",justifyContent:"center",alignSelf:"center"},floatingToolbarFillColor:{backgroundColor:"rgba(29, 35, 39, 0.85)"},floatingToolbarFillColorDark:{backgroundColor:"rgba(60, 67, 74, 0.85)"}}},1378,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),c=r(d[2]),l=r(d[3]),n=r(d[4]),u=r(d[5]),f=r(d[6]),I=t(r(d[7])),s=t(r(d[8])),b=t(r(d[9])),k=(0,n.compose)([(0,l.withSelect)(function(t,o){var c=o.clientId,l=t('core/block-editor'),n=l.getBlockRootClientId,f=l.getBlockName,I=f(c),s=(0,u.getBlockType)(I).icon,b=n(c);if(!b)return{clientId:c,blockIcon:s};var k=f(b);return{clientId:c,blockIcon:s,rootClientId:b,rootBlockIcon:(0,u.getBlockType)(k).icon}})])(function(t){var l=t.clientId,n=t.blockIcon,u=t.rootClientId,k=t.rootBlockIcon;return(0,o.createElement)(f.View,{style:b.default.breadcrumbContainer},(0,o.createElement)(f.TouchableOpacity,{style:b.default.button,onPress:function(){}},u&&k&&[(0,o.createElement)(c.Icon,{key:"parent-icon",size:20,icon:k.src,fill:b.default.icon.color}),(0,o.createElement)(f.View,{key:"subdirectory-icon",style:b.default.arrow},(0,o.createElement)(s.default,{fill:b.default.arrow.color}))],(0,o.createElement)(c.Icon,{size:24,icon:n.src,fill:b.default.icon.color}),(0,o.createElement)(f.Text,{style:b.default.breadcrumbTitle},(0,o.createElement)(I.default,{clientId:l}))))});e.default=k},1379,[2,3,1170,911,975,1045,25,1380,1381,1382]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.BlockTitle=n,e.default=void 0;var t=r(d[0]),l=r(d[1]);function n(t){var n=t.name;if(!n)return null;var o=(0,l.getBlockType)(n);return o?o.title:null}var o=(0,t.withSelect)(function(t,l){return{name:(0,t('core/block-editor').getBlockName)(l.clientId)}})(n);e.default=o},1380,[911,1045]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=t(r(d[2])),u=r(d[3]),v=function(t){var v=(0,n.default)({},t);return(0,l.createElement)(u.SVG,(0,n.default)({xmlns:"http://www.w3.org/2000/svg",width:14,height:14,viewBox:"0 0 20 20"},v),(0,l.createElement)(u.Path,{d:"M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z"}))};e.default=v},1381,[2,3,16,1170]); +__d(function(g,r,i,a,m,e,d){m.exports={breadcrumbContainer:{flexDirection:"row",alignItems:"center",justifyContent:"flex-start",paddingLeft:5,paddingRight:15},breadcrumbTitle:{color:"#fff",marginLeft:4},icon:{color:"#fff"},button:{flexDirection:"row",alignItems:"center"},arrow:{color:"rgba(255, 255, 255, 0.4)",marginTop:-4,marginLeft:4,marginRight:4}}},1382,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),l=r(d[1]),n=(0,t.createElement)(l.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)(l.Path,{fill:"none",d:"M0 0h24v24H0V0z"}),(0,t.createElement)(l.Path,{fill:"white",fillRule:"evenodd",clipRule:"evenodd",d:"M17,11 z L15.58,12.42 L12,8.83 L12,18 L22,18 L22,20 L10,20 L10,8.83 L6.42,12.42 L5,11 L11,5 L17,11"}));e.default=n},1383,[3,1170]); +__d(function(g,r,i,a,m,e,d){var l=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[1]),n=r(d[2]),o=r(d[3]),c=r(d[4]),u=l(r(d[5])),k=l(r(d[6]));var f=(0,o.withSelect)(function(l,t){var n=t.rootClientId,o=l('core/block-editor'),u=o.getBlockOrder,k=o.canInsertBlockType;return{isLocked:!!(0,o.getTemplateLock)(n),blockClientIds:u(n),canInsertDefaultBlock:k((0,c.getDefaultBlockName)(),n)}})(function(l){var o=l.blockClientIds,c=l.rootClientId,f=l.canInsertDefaultBlock,s=l.isLocked,I=l.renderAppender;return s?null:I?(0,t.createElement)(I,null):f?(0,t.createElement)(u.default,{rootClientId:c,lastBlockClientId:(0,n.last)(o),containerStyle:k.default.blockListAppender,placeholder:o.length>0?'':null}):null});e.default=f},1384,[2,3,21,911,1045,1365,1385]); +__d(function(g,r,i,a,m,e,d){m.exports={blockListAppender:{paddingLeft:16,paddingRight:16,paddingTop:12,paddingBottom:0,borderColor:"transparent"}}},1385,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=(0,r(d[0]).createSlotFill)('__experimentalBlockListFooter'),t=l.Fill,o=l.Slot;t.Slot=o;var _=t;e.default=_},1386,[1170]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),o=t(r(d[2])),u=t(r(d[3])),s=t(r(d[4])),l=t(r(d[5])),p=t(r(d[6])),f=t(r(d[7])),c=r(d[8]),h=t(r(d[9])),y=(function(t){function y(){var t;return(0,u.default)(this,y),(t=(0,l.default)(this,(0,p.default)(y).apply(this,arguments))).isIOS='ios'===c.Platform.OS,t}return(0,f.default)(y,t),(0,s.default)(y,[{key:"componentDidMount",value:function(){!1===this._input.isFocused()&&!0===this._input.props.isSelected&&this.focus()}},{key:"componentDidUpdate",value:function(t){!this.props.isSelected&&t.isSelected&&this.isIOS&&this._input.blur()}},{key:"focus",value:function(){this._input.focus()}},{key:"render",value:function(){var t=this;return(0,n.createElement)(c.TextInput,(0,o.default)({},this.props,{ref:function(n){return t._input=n},onChange:function(n){t.props.onChange(n.nativeEvent.text)},onFocus:this.props.onFocus,onBlur:this.props.onBlur,fontFamily:this.props.style&&this.props.style.fontFamily||h.default['block-editor-plain-text'].fontFamily,style:this.props.style||h.default['block-editor-plain-text']}))}}]),y})(n.Component);e.default=y},1387,[2,3,16,34,35,42,45,48,25,1388]); +__d(function(g,r,i,a,m,e,d){m.exports={"block-editor-plain-text":{fontFamily:"serif",shadowOffset:{width:0,height:0},shadowRadius:0,shadowColor:"black",shadowOpacity:1,borderWidth:0,paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0,marginTop:0,marginRight:0,marginBottom:0,marginLeft:0}}},1388,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"RichTextShortcut",{enumerable:!0,get:function(){return P.RichTextShortcut}}),Object.defineProperty(e,"RichTextToolbarButton",{enumerable:!0,get:function(){return L.RichTextToolbarButton}}),Object.defineProperty(e,"__unstableRichTextInputEvent",{enumerable:!0,get:function(){return M.__unstableRichTextInputEvent}}),e.default=void 0;var n=r(d[1]),o=t(r(d[2])),l=t(r(d[3])),s=t(r(d[4])),c=t(r(d[5])),u=t(r(d[6])),f=t(r(d[7])),p=t(r(d[8])),h=t(r(d[9])),v=t(r(d[10])),b=t(r(d[11])),S=t(r(d[12])),_=t(r(d[13])),T=r(d[14]),C=r(d[15]),E=r(d[16]),y=r(d[17]),x=r(d[18]),w=t(r(d[19])),O=r(d[20]),R=t(r(d[21])),k=r(d[22]),I=r(d[23]),F=r(d[24]),U=t(r(d[25])),P=r(d[26]),L=r(d[27]),M=r(d[28]);function A(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function N(t){for(var n=1;n0&&(h&&(0,x.isEmpty)(n)?h(w):this.onSplit(n,w))}},{key:"onSplit",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],o=this.props,l=o.onReplace,s=o.onSplit,f=o.__unstableOnSplitMiddle,p=o.multiline;if(l&&s){var h=[],v=(0,x.split)(t),b=(0,c.default)(v,2),S=b[0],_=b[1],T=n.length>0,C=H(p);T&&(0,x.isEmpty)(S)||h.push(s((0,x.toHTMLString)({value:S,multilineTag:C}))),T?h.push.apply(h,(0,u.default)(n)):f&&h.push(f()),!T&&f&&(0,x.isEmpty)(_)||h.push(s((0,x.toHTMLString)({value:_,multilineTag:C}))),l(h,T?h.length-1:1)}}},{key:"inputRule",value:function(t,n){var o=this.props,l=o.onReplace,s=o.markAutomaticChange;if(l){var c=t.start,u=t.text;if(' '===u.slice(c-1,c)){var f=u.slice(0,c).trim(),p=(0,E.getBlockTransforms)('from').filter(function(t){return'prefix'===t.type}),h=(0,E.findTransform)(p,function(t){var n=t.prefix;return f===n});if(h){var v=n((0,x.slice)(t,c,u.length));l([h.transform(v)]),s()}}}}},{key:"getAllowedFormats",value:function(){var t=this.props,n=t.allowedFormats,o=t.formattingControls;if(n||o)return n||((0,w.default)('wp.blockEditor.RichText formattingControls prop',{alternative:'allowedFormats'}),o.map(function(t){return"core/"+t}))}},{key:"render",value:function(){var t=this,o=this.props,c=o.children,u=o.tagName,f=o.value,p=o.onChange,h=o.selectionStart,v=o.selectionEnd,b=o.onSelectionChange,S=o.multiline,T=o.inlineToolbar,C=o.wrapperClassName,y=o.className,O=o.autocompleters,k=o.onReplace,F=o.isCaretWithinFormattedText,P=o.onEnterFormattedText,L=o.onExitFormattedText,M=o.isSelected,A=o.onCreateUndoLevel,N=o.markAutomaticChange,D=o.didAutomaticChange,B=o.undo,j=o.placeholder,W=o.keepPlaceholderOnFocus,K=(o.allowedFormats,o.withoutInteractiveFormatting),V=(o.onRemove,o.onMerge,o.onSplit,o.canUserUseUnfilteredHTML,o.instanceId,o.start),G=o.reversed,q=o.style,z=o.preserveWhiteSpace,J=o.disabled,Q=(0,s.default)(o,["children","tagName","value","onChange","selectionStart","selectionEnd","onSelectionChange","multiline","inlineToolbar","wrapperClassName","className","autocompleters","onReplace","isCaretWithinFormattedText","onEnterFormattedText","onExitFormattedText","isSelected","onCreateUndoLevel","markAutomaticChange","didAutomaticChange","undo","placeholder","keepPlaceholderOnFocus","allowedFormats","withoutInteractiveFormatting","onRemove","onMerge","onSplit","canUserUseUnfilteredHTML","instanceId","start","reversed","style","preserveWhiteSpace","disabled"]),X=H(S),Y=this.getAllowedFormats(),Z=!Y||Y.length>0,$=f,ee=p;Array.isArray(f)&&($=E.children.toHTML(f),ee=function(t){return p(E.children.fromDOM((0,x.__unstableCreateElement)(document,t).childNodes))});var te=(0,n.createElement)(x.__experimentalRichText,(0,l.default)({},Q,{ref:this.ref,value:$,onChange:ee,selectionStart:h,selectionEnd:v,onSelectionChange:b,tagName:u,className:(0,_.default)("block-editor-rich-text__editable",y,{'is-selected':M,'keep-placeholder-on-focus':W}),placeholder:j,allowedFormats:Y,withoutInteractiveFormatting:K,onEnter:this.onEnter,onDelete:this.onDelete,onPaste:this.onPaste,__unstableIsSelected:M,__unstableInputRule:this.inputRule,__unstableMultilineTag:X,__unstableIsCaretWithinFormattedText:F,__unstableOnEnterFormattedText:P,__unstableOnExitFormattedText:L,__unstableOnCreateUndoLevel:A,__unstableMarkAutomaticChange:N,__unstableDidAutomaticChange:D,__unstableUndo:B,style:q,preserveWhiteSpace:z,disabled:J,start:V,reversed:G}),function(o){var l=o.isSelected,s=o.value,u=o.onChange,f=o.Editable;return(0,n.createElement)(n.Fragment,null,c&&c({value:s,onChange:u}),l&&Z&&(0,n.createElement)(U.default,{inline:T,anchorRef:t.ref.current}),l&&(0,n.createElement)(I.RemoveBrowserShortcuts,null),(0,n.createElement)(R.default,{onReplace:k,completers:O,record:s,onChange:u,isSelected:l},function(t){var o=t.listBoxId,l=t.activeId,s=t.onKeyDown;return(0,n.createElement)(f,{"aria-autocomplete":o?'list':void 0,"aria-owns":o,"aria-activedescendant":l,start:V,reversed:G,onKeyDown:s})}))});return C?((0,w.default)('wp.blockEditor.RichText wrapperClassName prop',{alternative:'className prop or create your own wrapper div'}),(0,n.createElement)("div",{className:(0,_.default)("block-editor-rich-text",C)},te)):te}}]),o})(n.Component),B=(0,y.compose)([y.withInstanceId,(0,k.withBlockEditContext)(function(t,o){var l=t.clientId,s=t.onCaretVerticalPositionChange,c=t.isSelected;return'web'===n.Platform.OS?{clientId:l}:{clientId:l,blockIsSelected:void 0!==o.isSelected?o.isSelected:c,onCaretVerticalPositionChange:s}}),(0,C.withSelect)(function(t,o){var l=o.clientId,s=o.instanceId,c=o.identifier,u=void 0===c?s:c,f=o.isSelected,p=t('core/block-editor'),h=p.isCaretWithinFormattedText,v=p.getSelectionStart,b=p.getSelectionEnd,S=p.getSettings,_=p.didAutomaticChange,T=p.__unstableGetBlockWithoutInnerBlocks,C=p.isMultiSelecting,y=p.hasMultiSelection,x=v(),w=b(),O=S().__experimentalCanUserUseUnfilteredHTML;void 0===f?f=x.clientId===l&&x.attributeKey===u:f&&(f=x.clientId===l);var R={};if('native'===n.Platform.OS){var k=l&&T(l);R={shouldBlurOnUnmount:k&&f&&(0,E.isUnmodifiedDefaultBlock)(k)}}return N({canUserUseUnfilteredHTML:O,isCaretWithinFormattedText:h(),selectionStart:f?x.offset:void 0,selectionEnd:f?w.offset:void 0,isSelected:f,didAutomaticChange:_(),disabled:C()||y()},R)}),(0,C.withDispatch)(function(t,n){var o=n.clientId,l=n.instanceId,s=n.identifier,c=void 0===s?l:s,u=t('core/block-editor'),f=u.__unstableMarkLastChangeAsPersistent,p=u.enterFormattedText,h=u.exitFormattedText,v=u.selectionChange;return{onCreateUndoLevel:f,onEnterFormattedText:p,onExitFormattedText:h,onSelectionChange:function(t,n){v(o,c,t,n)},markAutomaticChange:u.__unstableMarkAutomaticChange,undo:t('core/editor').undo}})])(D);B.Content=function(t){var o=t.value,l=t.tagName,c=t.multiline,u=(0,s.default)(t,["value","tagName","multiline"]);Array.isArray(o)&&(o=E.children.toHTML(o));var f=H(c);!o&&f&&(o="<"+f+">");var p=(0,n.createElement)(n.RawHTML,null,o);return l?(0,n.createElement)(l,(0,T.omit)(u,['format']),p):p},B.isEmpty=function(t){return!t||0===t.length},B.Content.defaultProps={format:'string',value:''};var j=B;e.default=j},1389,[2,3,18,16,19,5,9,34,35,42,45,44,48,1166,21,911,1045,975,1103,959,881,1390,1330,1391,1392,1393,1395,1396,1397]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default=function(){return null}},1390,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.RemoveBrowserShortcuts=void 0;e.RemoveBrowserShortcuts=function(){return null}},1391,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.filePasteHandler=function(n){return n.map(function(n){return""}).join('')}},1392,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),u=t(r(d[2])),n=t(r(d[3])),f=function(){return(0,l.createElement)(u.default,null,(0,l.createElement)(n.default,null))};e.default=f},1393,[2,3,1334,1394]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),l=r(d[1]),o=function(){return(0,t.createElement)(l.Toolbar,null,['bold','italic','link'].map(function(o){return(0,t.createElement)(l.Slot,{name:"RichText.ToolbarControls."+o,key:o})}),(0,t.createElement)(l.Slot,{name:"RichText.ToolbarControls"}))};e.default=o},1394,[3,1170]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.RichTextShortcut=void 0;var u=t(r(d[1])),n=t(r(d[2])),l=t(r(d[3])),o=t(r(d[4])),f=t(r(d[5])),c=(function(t){function c(){return(0,u.default)(this,c),(0,l.default)(this,(0,o.default)(c).apply(this,arguments))}return(0,f.default)(c,t),(0,n.default)(c,[{key:"render",value:function(){return null}}]),c})(r(d[6]).Component);e.RichTextShortcut=c},1395,[2,34,35,42,45,48,3]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.RichTextToolbarButton=function(t){var h,s=t.name,T=t.shortcutType,f=t.shortcutCharacter,b=(0,u.default)(t,["name","shortcutType","shortcutCharacter"]),p='RichText.ToolbarControls';s&&(p+="."+s);T&&f&&(h=l.displayShortcut[T](f));return(0,o.createElement)(n.Fill,{name:p},(0,o.createElement)(n.ToolbarButton,(0,c.default)({},b,{shortcut:h})))};var o=r(d[1]),c=t(r(d[2])),u=t(r(d[3])),n=r(d[4]),l=r(d[5])},1396,[2,3,16,19,1170,1152]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.__unstableRichTextInputEvent=void 0;var n=t(r(d[1])),u=t(r(d[2])),l=t(r(d[3])),f=t(r(d[4])),o=t(r(d[5])),_=(function(t){function _(){return(0,n.default)(this,_),(0,l.default)(this,(0,f.default)(_).apply(this,arguments))}return(0,o.default)(_,t),(0,u.default)(_,[{key:"render",value:function(){return null}}]),_})(r(d[6]).Component);e.__unstableRichTextInputEvent=_},1397,[2,34,35,42,45,48,3]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=t(r(d[2])),o=r(d[3]),u=r(d[4]),c=r(d[5]),s=r(d[6]),_=r(d[7]),p=r(d[8]),f=t(r(d[9]));var v=(0,p.withPreferredColorScheme)(function(t){var p=t.addToGallery,v=t.allowedTypes,y=void 0===v?[]:v,D=t.labels,E=void 0===D?{}:D,b=t.icon,M=t.onSelect,I=t.isAppender,S=t.disableMediaButtons,T=t.getStylesFromColorScheme,A=t.multiple,h=t.value,V=void 0===h?[]:h,k=A&&p?function(t){return M((0,u.uniqWith)([].concat((0,n.default)(V),(0,n.default)(t)),function(t,l){return t.id===l.id||t.url===l.url}))}:M,w=1===y.length,O=w&&y.includes(s.MEDIA_TYPE_IMAGE),P=w&&y.includes(s.MEDIA_TYPE_VIDEO),C=E.title;void 0===C&&(C=(0,c.__)('Media'),O?C=(0,c.__)('Image'):P&&(C=(0,c.__)('Video')));var F=E.instructions;void 0===F&&(F=O?(0,c.__)('ADD IMAGE'):P?(0,c.__)('ADD VIDEO'):(0,c.__)('ADD IMAGE OR VIDEO'));var G=(0,c.__)('Double tap to select');O?G=(0,c.__)('Double tap to select an image'):P&&(G=(0,c.__)('Double tap to select a video'));var x=T(f.default.emptyStateTitle,f.default.emptyStateTitleDark),B=T(f.default.addMediaButton,f.default.addMediaButtonDark);if(I&&S)return null;var z=T(f.default.appender,f.default.appenderDark),R=T(f.default.emptyStateContainer,f.default.emptyStateContainerDark);return(0,l.createElement)(o.View,{style:{flex:1}},(0,l.createElement)(s.MediaUpload,{allowedTypes:y,onSelect:k,multiple:A,render:function(n){var u=n.open,s=n.getMediaOptions;return(0,l.createElement)(o.TouchableWithoutFeedback,{accessibilityLabel:(0,c.sprintf)((0,c.__)('%s block. Empty'),C),accessibilityRole:'button',accessibilityHint:G,onPress:function(l){t.onFocus(l),u()}},(0,l.createElement)(o.View,{style:[R,I&&z]},s(),void 0!==I&&I?I&&!S?(0,l.createElement)(_.Dashicon,{icon:"plus-alt",style:B,color:B.color,size:B.size}):void 0:(0,l.createElement)(l.Fragment,null,(0,l.createElement)(o.View,{style:f.default.modalIcon},b),(0,l.createElement)(o.Text,{style:x},C),(0,l.createElement)(o.Text,{style:f.default.emptyStateDescription},F))))}}))});e.default=v},1398,[2,3,9,25,21,347,1044,1170,975,1399]); +__d(function(g,r,i,a,m,e,d){m.exports={emptyStateContainer:{flexGrow:1,flexShrink:1,flexBasis:0,height:142,flexDirection:"column",alignItems:"center",justifyContent:"center",backgroundColor:"#e9eff3",paddingLeft:12,paddingRight:12,paddingTop:12,paddingBottom:12,borderTopLeftRadius:4,borderTopRightRadius:4,borderBottomLeftRadius:4,borderBottomRightRadius:4},emptyStateContainerDark:{backgroundColor:"#1e2327"},emptyStateTitle:{textAlign:"center",marginTop:8,marginBottom:10,fontSize:14,color:"#2e4453"},emptyStateTitleDark:{color:"#fff"},emptyStateDescription:{textAlign:"center",color:"#0087be",fontSize:14,fontWeight:"500"},modalIcon:{width:24,height:24,justifyContent:"center",alignItems:"center",fill:"#2e4453"},appender:{height:"auto",backgroundColor:"#fff",borderWidth:1,borderColor:"#e2e4e7",borderStyle:"solid",borderRadius:4},appenderDark:{backgroundColor:"#1e2327",borderWidth:1,borderColor:"#3c434a",borderStyle:"solid"},addMediaButton:{color:"#fff",backgroundColor:"#555d66",borderRadius:12,overflow:"hidden",size:24},addMediaButtonDark:{color:"#1e2327",backgroundColor:"#787c82"}}},1399,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.MediaUpload=e.OPTION_TAKE_PHOTO_OR_VIDEO=e.OPTION_TAKE_PHOTO=e.OPTION_TAKE_VIDEO=e.MEDIA_TYPE_VIDEO=e.MEDIA_TYPE_IMAGE=void 0;var o=r(d[1]),n=t(r(d[2])),c=t(r(d[3])),u=t(r(d[4])),s=t(r(d[5])),l=t(r(d[6])),p=t(r(d[7])),v=t(r(d[8])),f=t(r(d[9])),O=r(d[10]),P=r(d[11]),_=r(d[12]);function h(t,o){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),o&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n}function y(t){for(var o=1;o0}).map(function(o){return y({},o,{icon:o.icon||t.getChooseFromDeviceIcon()})})}},{key:"getChooseFromDeviceIcon",value:function(){var t=this.props.allowedTypes,o=void 0===t?[]:t,n=1===o.length,c=n&&o.includes("image"),u=n&&o.includes("video");return c||!n?'format-image':u?'format-video':void 0}},{key:"onPickerPresent",value:function(){this.picker&&this.picker.presentPicker()}},{key:"onPickerSelect",value:function(t){var o=this.props,n=o.allowedTypes,c=void 0===n?[]:n,u=o.onSelect,s=o.multiple,l=void 0!==s&&s,p=this.getAllSources().filter(function(o){return o.value===t}).shift(),v=c.filter(function(t){return p.types.includes(t)});(0,O.requestMediaPicker)(p.id,v,l,function(t){(l&&t||t&&t.id)&&u(t)})}},{key:"render",value:function(){var t=this;return this.props.render({open:this.onPickerPresent,getMediaOptions:function(){return(0,o.createElement)(_.Picker,{hideCancelButton:!0,ref:function(o){return t.picker=o},options:t.getMediaOptionsItems(),onChange:t.onPickerSelect})}})}}]),n})(f.default.Component);e.MediaUpload=D;var w=D;e.default=w},1400,[2,3,18,34,35,42,45,44,48,13,821,347,1170]); +__d(function(g,r,i,a,m,e,d){var s=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.MediaUploadProgress=e.MEDIA_UPLOAD_STATE_RESET=e.MEDIA_UPLOAD_STATE_FAILED=e.MEDIA_UPLOAD_STATE_SUCCEEDED=e.MEDIA_UPLOAD_STATE_UPLOADING=void 0;var t=r(d[1]),o=s(r(d[2])),n=s(r(d[3])),l=s(r(d[4])),p=s(r(d[5])),h=s(r(d[6])),u=s(r(d[7])),U=s(r(d[8])),c=r(d[9]),M=r(d[10]),f=r(d[11]),E=r(d[12]),P=s(r(d[13])),_=s(r(d[14]));e.MEDIA_UPLOAD_STATE_UPLOADING=1;e.MEDIA_UPLOAD_STATE_SUCCEEDED=2;e.MEDIA_UPLOAD_STATE_FAILED=3;e.MEDIA_UPLOAD_STATE_RESET=4;var A=(function(s){function U(s){var t;return(0,o.default)(this,U),(t=(0,l.default)(this,(0,p.default)(U).call(this,s))).state={progress:0,isUploadInProgress:!1,isUploadFailed:!1},t.mediaUpload=t.mediaUpload.bind((0,h.default)(t)),t}return(0,u.default)(U,s),(0,n.default)(U,[{key:"componentDidMount",value:function(){this.addMediaUploadListener()}},{key:"componentWillUnmount",value:function(){this.removeMediaUploadListener()}},{key:"mediaUpload",value:function(s){var t=this.props.mediaId;if(s.mediaId===t)switch(s.state){case 1:this.updateMediaProgress(s);break;case 2:this.finishMediaUploadWithSuccess(s);break;case 3:this.finishMediaUploadWithFailure(s);break;case 4:this.mediaUploadStateReset(s)}}},{key:"updateMediaProgress",value:function(s){this.setState({progress:s.progress,isUploadInProgress:!0,isUploadFailed:!1}),this.props.onUpdateMediaProgress&&this.props.onUpdateMediaProgress(s)}},{key:"finishMediaUploadWithSuccess",value:function(s){this.setState({isUploadInProgress:!1}),this.props.onFinishMediaUploadWithSuccess&&this.props.onFinishMediaUploadWithSuccess(s)}},{key:"finishMediaUploadWithFailure",value:function(s){this.setState({isUploadInProgress:!1,isUploadFailed:!0}),this.props.onFinishMediaUploadWithFailure&&this.props.onFinishMediaUploadWithFailure(s)}},{key:"mediaUploadStateReset",value:function(s){this.setState({isUploadInProgress:!1,isUploadFailed:!1}),this.props.onMediaUploadStateReset&&this.props.onMediaUploadStateReset(s)}},{key:"addMediaUploadListener",value:function(){var s=this;this.subscriptionParentMediaUpload||(this.subscriptionParentMediaUpload=(0,M.subscribeMediaUpload)(function(t){s.mediaUpload(t)}))}},{key:"removeMediaUploadListener",value:function(){this.subscriptionParentMediaUpload&&this.subscriptionParentMediaUpload.remove()}},{key:"render",value:function(){var s=this,o=this.props,n=o.coverUrl,l=o.width,p=o.height,h=this.state,u=h.isUploadInProgress,U=h.isUploadFailed,M=this.state.isUploadInProgress,A=100*this.state.progress,v=(0,E.__)('Failed to insert media.\nPlease tap for options.');return(0,t.createElement)(c.View,{style:_.default.mediaUploadProgress},M&&(0,t.createElement)(c.View,{style:_.default.progressBar},(0,t.createElement)(f.Spinner,{progress:A})),n&&(0,t.createElement)(P.default,{src:n},function(t){var o=t.imageWidthWithinContainer,n=t.imageHeightWithinContainer,h=n;p>0&&p0&&ln,s=t.height/t.width,{width:o?n:t.width,height:o?n*s:t.height}),u=c.width,l=c.height;this.setState({width:u,height:l})}}},{key:"onLayout",value:function(t){var h=t.nativeEvent.layout,n=h.width,o=h.height;this.container={clientWidth:n,clientHeight:o},this.calculateSize()}},{key:"render",value:function(){var t={imageWidth:this.image&&this.image.width,imageHeight:this.image&&this.image.height,containerWidth:this.container&&this.container.width,containerHeight:this.container&&this.container.height,imageWidthWithinContainer:this.state.width,imageHeightWithinContainer:this.state.height};return(0,h.createElement)(v.View,{onLayout:this.onLayout},this.props.children(t))}}]),f})(h.Component);e.default=f},1402,[2,3,34,35,42,45,44,48,25]); +__d(function(g,r,i,a,m,e,d){m.exports={mediaUploadProgress:{flexGrow:1,flexShrink:1,flexBasis:0},progressBar:{backgroundColor:"#e9eff3"}}},1403,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var v=t.value,s=void 0===v?'':v,f=t.autoFocus,C=void 0===f||f,_=t.onChange,p=(0,n.default)(t,["value","autoFocus","onChange"]);return(0,o.createElement)(l.TextInput,(0,u.default)({autoFocus:C,editable:!0,selectTextOnFocus:!0,autoCapitalize:"none",autoCorrect:!1,textContentType:"URL",value:s,onChangeText:_,placeholder:(0,c.__)('Paste URL')},p))};var o=r(d[1]),u=t(r(d[2])),n=t(r(d[3])),l=r(d[4]),c=r(d[5])},1404,[2,3,16,19,25,347]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),l=r(d[1]),n=r(d[2]),o=r(d[3]),c=r(d[4]),s=r(d[5]),u=(0,o.compose)([(0,c.withSelect)(function(t,l){var o=l.accessibilityLabelCreator,c=l.clientId,s=t('core/block-editor'),u=s.getBlockAttributes,b=s.getSelectedBlockClientId,p=u(c).caption,f=o?o(p):void 0,h=b()===c;return{accessibilityLabel:f,shouldDisplay:!n.RichText.isEmpty(p)>0||h,text:p}}),(0,c.withDispatch)(function(t,l){var n=l.clientId,o=t('core/block-editor').updateBlockAttributes;return{onChange:function(t){o(n,{caption:t})}}})])(function(o){var c=o.accessible,u=o.accessibilityLabel,b=o.onBlur,p=o.onChange,f=o.onFocus,h=o.isSelected,y=o.shouldDisplay,v=o.text;return(0,t.createElement)(l.View,{style:{padding:12,flex:1,display:y?'flex':'none'},accessible:c,accessibilityLabel:u,accessibilityRole:'button'},(0,t.createElement)(n.RichText,{rootTagsToEliminate:['p'],placeholder:(0,s.__)('Write caption\u2026'),value:v,onChange:p,unstableOnFocus:f,onBlur:b,isSelected:h,__unstableMobileNoFocusOnMount:!0,fontSize:14,underlineColorAndroid:"transparent",textAlign:'center',tagName:'p'}))});e.default=u},1405,[3,25,1044,975,911,347]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.VIDEO_ASPECT_RATIO=void 0;var n=r(d[1]),o=t(r(d[2])),l=t(r(d[3])),s=t(r(d[4])),u=t(r(d[5])),c=t(r(d[6])),f=t(r(d[7])),h=t(r(d[8])),y=r(d[9]),p=r(d[10]),v=r(d[11]),P=t(r(d[12])),_=t(r(d[13])),S=t(r(d[14]));e.VIDEO_ASPECT_RATIO=1.7777777777777777;var L=(function(t){function L(){var t;return(0,l.default)(this,L),(t=(0,u.default)(this,(0,c.default)(L).apply(this,arguments))).isIOS='ios'===v.Platform.OS,t.state={isFullScreen:!1,videoContainerHeight:0},t.onPressPlay=t.onPressPlay.bind((0,f.default)(t)),t.onVideoLayout=t.onVideoLayout.bind((0,f.default)(t)),t}return(0,h.default)(L,t),(0,s.default)(L,[{key:"onVideoLayout",value:function(t){var n=t.nativeEvent.layout.height;n!==this.state.videoContainerHeight&&this.setState({videoContainerHeight:n})}},{key:"onPressPlay",value:function(){if(this.isIOS)this.player&&this.player.presentFullscreenPlayer();else{var t=this.props.source;t&&t.uri&&this.openURL(t.uri)}}},{key:"openURL",value:function(t){v.Linking.canOpenURL(t).then(function(n){if(n)return v.Linking.openURL(t);v.Alert.alert((0,p.__)('Problem opening the video'),(0,p.__)('No application can handle this request. Please install a Web browser.')),window.console.warn('No application found that can open the video with URL: '+t)}).catch(function(n){v.Alert.alert((0,p.__)('Problem opening the video'),(0,p.__)('An unknown error occurred. Please try again.')),window.console.error('An error occurred while opening the video URL: '+t,n)})}},{key:"render",value:function(){var t=this,l=this.props,s=l.isSelected,u=l.style,c=this.state,f=c.isFullScreen,h=c.videoContainerHeight>0;return(0,n.createElement)(v.View,{style:_.default.videoContainer},(0,n.createElement)(P.default,(0,o.default)({},this.props,{ref:function(n){t.player=n},controls:!1,ignoreSilentSwitch:'ignore',paused:!f,onLayout:this.onVideoLayout,onFullscreenPlayerWillPresent:function(){t.setState({isFullScreen:!0})},onFullscreenPlayerDidDismiss:function(){t.setState({isFullScreen:!1})}})),h&&(0,n.createElement)(v.TouchableOpacity,{disabled:!s,onPress:this.onPressPlay,style:[u,_.default.overlayContainer]},(0,n.createElement)(v.View,{style:_.default.blackOverlay}),(0,n.createElement)(y.Icon,{icon:S.default,style:_.default.playIcon,size:_.default.playIcon.size})))}}]),L})(n.Component);e.default=L},1406,[2,3,16,34,35,42,45,44,48,1170,347,25,1407,1412,1413]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"TextTrackType",{enumerable:!0,get:function(){return E.default}}),Object.defineProperty(e,"FilterType",{enumerable:!0,get:function(){return S.default}}),e.default=void 0;var o=n(r(d[2])),l=n(r(d[3])),s=n(r(d[4])),u=n(r(d[5])),f=n(r(d[6])),c=n(r(d[7])),p=n(r(d[8])),y=n(r(d[9])),P=t(r(d[10])),h=n(r(d[11])),b=r(d[12]),v=n(r(d[13])),E=n(r(d[14])),S=n(r(d[15])),F=n(r(d[16]));function O(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function _(t){for(var n=1;n1&&void 0!==arguments[1]?arguments[1]:100;if(isNaN(t))throw new Error('Specified time is not a number');'ios'===b.Platform.OS?o.setNativeProps({seek:{time:t,tolerance:n}}):o.setNativeProps({seek:t})},o.presentFullscreenPlayer=function(){o.setNativeProps({fullscreen:!0})},o.dismissFullscreenPlayer=function(){o.setNativeProps({fullscreen:!1})},o.save=function(t){return s.default.async(function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,s.default.awrap(b.NativeModules.VideoManager.save(t,(0,b.findNodeHandle)(o._root)));case 2:return n.abrupt("return",n.sent);case 3:case"end":return n.stop()}})},o.restoreUserInterfaceForPictureInPictureStopCompleted=function(t){o.setNativeProps({restoreUserInterfaceForPIPStopCompletionHandler:t})},o._assignRoot=function(t){o._root=t},o._onLoadStart=function(t){o.props.onLoadStart&&o.props.onLoadStart(t.nativeEvent)},o._onLoad=function(t){o.props.onLoad&&o.props.onLoad(t.nativeEvent)},o._onError=function(t){o.props.onError&&o.props.onError(t.nativeEvent)},o._onProgress=function(t){o.props.onProgress&&o.props.onProgress(t.nativeEvent)},o._onBandwidthUpdate=function(t){o.props.onBandwidthUpdate&&o.props.onBandwidthUpdate(t.nativeEvent)},o._onSeek=function(t){o.state.showPoster&&!o.props.audioOnly&&o.setState({showPoster:!1}),o.props.onSeek&&o.props.onSeek(t.nativeEvent)},o._onEnd=function(t){o.props.onEnd&&o.props.onEnd(t.nativeEvent)},o._onTimedMetadata=function(t){o.props.onTimedMetadata&&o.props.onTimedMetadata(t.nativeEvent)},o._onFullscreenPlayerWillPresent=function(t){o.props.onFullscreenPlayerWillPresent&&o.props.onFullscreenPlayerWillPresent(t.nativeEvent)},o._onFullscreenPlayerDidPresent=function(t){o.props.onFullscreenPlayerDidPresent&&o.props.onFullscreenPlayerDidPresent(t.nativeEvent)},o._onFullscreenPlayerWillDismiss=function(t){o.props.onFullscreenPlayerWillDismiss&&o.props.onFullscreenPlayerWillDismiss(t.nativeEvent)},o._onFullscreenPlayerDidDismiss=function(t){o.props.onFullscreenPlayerDidDismiss&&o.props.onFullscreenPlayerDidDismiss(t.nativeEvent)},o._onReadyForDisplay=function(t){o.props.onReadyForDisplay&&o.props.onReadyForDisplay(t.nativeEvent)},o._onPlaybackStalled=function(t){o.props.onPlaybackStalled&&o.props.onPlaybackStalled(t.nativeEvent)},o._onPlaybackResume=function(t){o.props.onPlaybackResume&&o.props.onPlaybackResume(t.nativeEvent)},o._onPlaybackRateChange=function(t){o.state.showPoster&&0!==t.nativeEvent.playbackRate&&!o.props.audioOnly&&o.setState({showPoster:!1}),o.props.onPlaybackRateChange&&o.props.onPlaybackRateChange(t.nativeEvent)},o._onExternalPlaybackChange=function(t){o.props.onExternalPlaybackChange&&o.props.onExternalPlaybackChange(t.nativeEvent)},o._onAudioBecomingNoisy=function(){o.props.onAudioBecomingNoisy&&o.props.onAudioBecomingNoisy()},o._onPictureInPictureStatusChanged=function(t){o.props.onPictureInPictureStatusChanged&&o.props.onPictureInPictureStatusChanged(t.nativeEvent)},o._onRestoreUserInterfaceForPictureInPictureStop=function(t){o.props.onRestoreUserInterfaceForPictureInPictureStop&&o.props.onRestoreUserInterfaceForPictureInPictureStop()},o._onAudioFocusChanged=function(t){o.props.onAudioFocusChanged&&o.props.onAudioFocusChanged(t.nativeEvent)},o._onBuffer=function(t){o.props.onBuffer&&o.props.onBuffer(t.nativeEvent)},o.getViewManagerConfig=function(t){return b.NativeModules.UIManager.getViewManagerConfig?b.NativeModules.UIManager.getViewManagerConfig(t):b.NativeModules.UIManager[t]},o.state={showPoster:!0},o}return(0,y.default)(n,t),(0,f.default)(n,[{key:"setNativeProps",value:function(t){this._root.setNativeProps(t)}},{key:"toTypeString",value:function(t){switch(typeof t){case"object":return t instanceof Date?t.toISOString():JSON.stringify(t);case"undefined":return"";default:return t.toString()}}},{key:"stringsOnlyObject",value:function(t){var n=this,o={};return Object.keys(t).forEach(function(l){o[l]=n.toTypeString(t[l])}),o}},{key:"render",value:function(){var t=this.props.resizeMode,n=(0,v.default)(this.props.source)||{},o=!Boolean(n.__packager_asset),s=n.uri||'';s&&s.match(/^\//)&&(s="file://"+s),s||console.warn('Trying to load empty source.');var u,f=!(!s||!s.match(/^https?:/)),c=!(!s||!s.match(/^(assets-library|ipod-library|file|content|ms-appx|ms-appdata):/)),p=this.getViewManagerConfig('RCTVideo');u=t===F.default.stretch?p.Constants.ScaleToFill:t===F.default.contain?p.Constants.ScaleAspectFit:t===F.default.cover?p.Constants.ScaleAspectFill:p.Constants.ScaleNone;var y=(0,l.default)({},this.props);(0,l.default)(y,{style:[k.base,y.style],resizeMode:u,src:{uri:s,isNetwork:f,isAsset:c,shouldCache:o,type:n.type||'',mainVer:n.mainVer||0,patchVer:n.patchVer||0,requestHeaders:n.headers?this.stringsOnlyObject(n.headers):{}},onVideoLoadStart:this._onLoadStart,onVideoLoad:this._onLoad,onVideoError:this._onError,onVideoProgress:this._onProgress,onVideoSeek:this._onSeek,onVideoEnd:this._onEnd,onVideoBuffer:this._onBuffer,onVideoBandwidthUpdate:this._onBandwidthUpdate,onTimedMetadata:this._onTimedMetadata,onVideoAudioBecomingNoisy:this._onAudioBecomingNoisy,onVideoExternalPlaybackChange:this._onExternalPlaybackChange,onVideoFullscreenPlayerWillPresent:this._onFullscreenPlayerWillPresent,onVideoFullscreenPlayerDidPresent:this._onFullscreenPlayerDidPresent,onVideoFullscreenPlayerWillDismiss:this._onFullscreenPlayerWillDismiss,onVideoFullscreenPlayerDidDismiss:this._onFullscreenPlayerDidDismiss,onReadyForDisplay:this._onReadyForDisplay,onPlaybackStalled:this._onPlaybackStalled,onPlaybackResume:this._onPlaybackResume,onPlaybackRateChange:this._onPlaybackRateChange,onAudioFocusChanged:this._onAudioFocusChanged,onAudioBecomingNoisy:this._onAudioBecomingNoisy,onPictureInPictureStatusChanged:this._onPictureInPictureStatusChanged,onRestoreUserInterfaceForPictureInPictureStop:this._onRestoreUserInterfaceForPictureInPictureStop});var h=_({},b.StyleSheet.absoluteFillObject,{resizeMode:this.props.posterResizeMode||'contain'});return P.default.createElement(P.default.Fragment,null,P.default.createElement(C,(0,l.default)({ref:this._assignRoot},y)),this.props.poster&&this.state.showPoster&&P.default.createElement(b.View,{style:y.style},P.default.createElement(b.Image,{style:h,source:{uri:this.props.poster}})))}}]),n})(P.Component);e.default=R,R.propTypes=_({filter:h.default.oneOf([S.default.NONE,S.default.INVERT,S.default.MONOCHROME,S.default.POSTERIZE,S.default.FALSE,S.default.MAXIMUMCOMPONENT,S.default.MINIMUMCOMPONENT,S.default.CHROME,S.default.FADE,S.default.INSTANT,S.default.MONO,S.default.NOIR,S.default.PROCESS,S.default.TONAL,S.default.TRANSFER,S.default.SEPIA]),filterEnabled:h.default.bool,src:h.default.object,seek:h.default.oneOfType([h.default.number,h.default.object]),fullscreen:h.default.bool,onVideoLoadStart:h.default.func,onVideoLoad:h.default.func,onVideoBuffer:h.default.func,onVideoError:h.default.func,onVideoProgress:h.default.func,onVideoBandwidthUpdate:h.default.func,onVideoSeek:h.default.func,onVideoEnd:h.default.func,onTimedMetadata:h.default.func,onVideoAudioBecomingNoisy:h.default.func,onVideoExternalPlaybackChange:h.default.func,onVideoFullscreenPlayerWillPresent:h.default.func,onVideoFullscreenPlayerDidPresent:h.default.func,onVideoFullscreenPlayerWillDismiss:h.default.func,onVideoFullscreenPlayerDidDismiss:h.default.func,source:h.default.oneOfType([h.default.shape({uri:h.default.string}),h.default.number]),minLoadRetryCount:h.default.number,maxBitRate:h.default.number,resizeMode:h.default.string,poster:h.default.string,posterResizeMode:b.Image.propTypes.resizeMode,repeat:h.default.bool,allowsExternalPlayback:h.default.bool,selectedAudioTrack:h.default.shape({type:h.default.string.isRequired,value:h.default.oneOfType([h.default.string,h.default.number])}),selectedVideoTrack:h.default.shape({type:h.default.string.isRequired,value:h.default.oneOfType([h.default.string,h.default.number])}),selectedTextTrack:h.default.shape({type:h.default.string.isRequired,value:h.default.oneOfType([h.default.string,h.default.number])}),textTracks:h.default.arrayOf(h.default.shape({title:h.default.string,uri:h.default.string.isRequired,type:h.default.oneOf([E.default.SRT,E.default.TTML,E.default.VTT]),language:h.default.string.isRequired})),paused:h.default.bool,muted:h.default.bool,volume:h.default.number,bufferConfig:h.default.shape({minBufferMs:h.default.number,maxBufferMs:h.default.number,bufferForPlaybackMs:h.default.number,bufferForPlaybackAfterRebufferMs:h.default.number}),stereoPan:h.default.number,rate:h.default.number,pictureInPicture:h.default.bool,playInBackground:h.default.bool,playWhenInactive:h.default.bool,ignoreSilentSwitch:h.default.oneOf(['ignore','obey']),reportBandwidth:h.default.bool,disableFocus:h.default.bool,controls:h.default.bool,audioOnly:h.default.bool,currentTime:h.default.number,fullscreenAutorotate:h.default.bool,fullscreenOrientation:h.default.oneOf(['all','landscape','portrait']),progressUpdateInterval:h.default.number,useTextureView:h.default.bool,hideShutterView:h.default.bool,onLoadStart:h.default.func,onLoad:h.default.func,onBuffer:h.default.func,onError:h.default.func,onProgress:h.default.func,onBandwidthUpdate:h.default.func,onSeek:h.default.func,onEnd:h.default.func,onFullscreenPlayerWillPresent:h.default.func,onFullscreenPlayerDidPresent:h.default.func,onFullscreenPlayerWillDismiss:h.default.func,onFullscreenPlayerDidDismiss:h.default.func,onReadyForDisplay:h.default.func,onPlaybackStalled:h.default.func,onPlaybackResume:h.default.func,onPlaybackRateChange:h.default.func,onAudioFocusChanged:h.default.func,onAudioBecomingNoisy:h.default.func,onPictureInPictureStatusChanged:h.default.func,needsToRestoreUserInterfaceForPictureInPictureStop:h.default.func,onExternalPlaybackChange:h.default.func,scaleX:h.default.number,scaleY:h.default.number,translateX:h.default.number,translateY:h.default.number,rotation:h.default.number},b.ViewPropTypes);var C=(0,b.requireNativeComponent)('RCTVideo',R,{nativeOnly:{src:!0,seek:!0,fullscreen:!0}})},1407,[146,2,18,16,252,34,35,42,45,48,13,67,25,160,1408,1409,1410]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={SRT:'application/x-subrip',TTML:'application/ttml+xml',VTT:'text/vtt'}},1408,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={NONE:'',INVERT:'CIColorInvert',MONOCHROME:'CIColorMonochrome',POSTERIZE:'CIColorPosterize',FALSE:'CIFalseColor',MAXIMUMCOMPONENT:'CIMaximumComponent',MINIMUMCOMPONENT:'CIMinimumComponent',CHROME:'CIPhotoEffectChrome',FADE:'CIPhotoEffectFade',INSTANT:'CIPhotoEffectInstant',MONO:'CIPhotoEffectMono',NOIR:'CIPhotoEffectNoir',PROCESS:'CIPhotoEffectProcess',TONAL:'CIPhotoEffectTonal',TRANSFER:'CIPhotoEffectTransfer',SEPIA:'CISepiaTone'}},1409,[]); +__d(function(g,r,i,a,m,e,d){var l=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=(0,l(r(d[1])).default)({contain:null,cover:null,stretch:null});e.default=t},1410,[2,1411]); +__d(function(g,r,i,a,m,e,d){"use strict";m.exports=function(t){var n,o={};if(!(t instanceof Object)||Array.isArray(t))throw new Error('keyMirror(...): Argument must be an object.');for(n in t)t.hasOwnProperty(n)&&(o[n]=n);return o}},1411,[]); +__d(function(g,r,i,a,m,e,d){m.exports={videoContainer:{flexGrow:1,flexShrink:1,flexBasis:0,justifyContent:"center",alignItems:"center"},overlayContainer:{justifyContent:"center",alignItems:"center",alignSelf:"center",position:"absolute"},blackOverlay:{width:"100%",height:"100%",backgroundColor:"#000",opacity:.4},playIcon:{position:"absolute",opacity:.7,size:64}}},1412,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),l=r(d[1]),n=(0,t.createElement)(l.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)(l.Path,{d:"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm-2 14.5v-9l6 4.5z",fill:"white"}));e.default=n},1413,[3,1170]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"__experimentalPageTemplatePicker",{enumerable:!0,get:function(){return n.default}}),Object.defineProperty(e,"__experimentalWithPageTemplatePickerVisible",{enumerable:!0,get:function(){return l.default}}),Object.defineProperty(e,"__experimentalUsePageTemplatePickerVisible",{enumerable:!0,get:function(){return u.default}});var n=t(r(d[1])),l=t(r(d[2])),u=t(r(d[3]))},1414,[2,1415,1419,1420]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),o=r(d[2]),u=r(d[3]),l=t(r(d[4])),c=t(r(d[5])),f=t(r(d[6])),s=t(r(d[7])),v=(0,u.withDispatch)(function(t){var n=t('core/editor').resetEditorBlocks;return{resetContent:function(t){var u=(0,o.parse)(t);return n(u)}}})(function(t){var o=t.templates,u=void 0===o?s.default:o,v=t.resetContent;return(0,n.createElement)(l.default,null,(0,n.createElement)(f.default,{style:{flexDirection:'row'}},u.map(function(t){var o=t.name,u=t.content;return(0,n.createElement)(c.default,{key:o,onPress:function(){return v(u)},label:o})})))});e.default=v},1415,[2,3,1045,911,1386,1416,1417,1418]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),n=r(d[1]),l=function(l){var o=l.label,u=l.onPress;return(0,t.createElement)(n.Button,{onPress:u,title:o})};e.default=l},1416,[3,25]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]).View;e.default=t},1417,[25]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=[{name:'About',content:'\x3c!-- wp:paragraph {"align":"left"} --\x3e

Visitors will want to know who is on the other side of the page. Use this space to write about yourself, your site, your business, or anything you want. Use the testimonials below to quote others, talking about the same thing \u2013 in their own words.

\x3c!-- /wp:paragraph --\x3e'},{name:'Contact',content:'\x3c!-- wp:paragraph {"align":"left"} --\x3e

Let\'s talk \ud83d\udc4b Don\'t hesitate to reach out with the contact information below, or send a message using the form.

\x3c!-- /wp:paragraph --\x3e'}];e.default=t},1418,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),l=t(r(d[2])),u=r(d[3]),o=t(r(d[4])),c=(0,u.createHigherOrderComponent)(function(t){return function(u){var c=(0,o.default)();return(0,n.createElement)(t,(0,l.default)({},u,{showPageTemplatePicker:c}))}},'__experimentalWithPageTemplatePickerVisible');e.default=c},1419,[2,3,16,975,1420]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),n=r(d[1]),o=function(){return(0,n.useSelect)(function(n){var o=n('core/editor').getCurrentPostType,l=n('core/block-editor'),u=l.getBlockOrder,c=l.getBlock,f=(0,l.getSettings)().__experimentalEnablePageTemplates,s=u(),_=0===s.length,p=!_&&c(s[0]),k=1===s.length&&(0,t.isUnmodifiedDefaultBlock)(p),v=_||k,b='page'===o();return f&&v&&b},[])};e.default=o},1420,[1045,911]); +__d(function(g,r,i,a,m,e,d){var l=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){var l=(0,n.useSelect)(function(l){var t=l('core/block-editor'),n=t.getBlockMode,u=t.getSelectedBlockClientIds,c=t.isBlockValid,o=u();return{blockClientIds:o,isValid:1===o.length?c(o[0]):null,mode:1===o.length?n(o[0]):null}},[]),f=l.blockClientIds,s=l.isValid,k=l.mode;if(0===f.length)return null;return(0,t.createElement)(t.Fragment,null,'visual'===k&&s&&(0,t.createElement)(t.Fragment,null,(0,t.createElement)(o.default,null),(0,t.createElement)(u.default.Slot,null),(0,t.createElement)(c.default.Slot,null)))};var t=r(d[1]),n=r(d[2]),u=l(r(d[3])),c=l(r(d[4])),o=l(r(d[5]))},1421,[2,3,911,1331,1334,1422]); +__d(function(g,r,i,a,m,e,d){var o=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.UngroupButton=s,e.default=void 0;var n=r(d[1]),t=r(d[2]),l=r(d[3]),c=r(d[4]),u=r(d[5]),k=r(d[6]),p=o(r(d[7]));function s(o){var t=o.onConvertFromGroup,u=o.isUngroupable;return void 0!==u&&u?(0,n.createElement)(l.Toolbar,null,(0,n.createElement)(l.ToolbarButton,{title:(0,c.__)('Ungroup'),icon:p.default,onClick:t})):null}var v=(0,k.compose)([(0,u.withSelect)(function(o){var n=o('core/block-editor'),t=n.getSelectedBlockClientId,l=n.getBlock,c=o('core/blocks').getGroupingBlockName,u=t(),k=l(u),p=c(),s=k&&k.innerBlocks&&!!k.innerBlocks.length&&k.name===p;return{isUngroupable:s,clientId:u,innerBlocks:s?k.innerBlocks:[]}}),(0,u.withDispatch)(function(o,n){var l=n.clientId,c=n.innerBlocks,u=n.onToggle,k=void 0===u?t.noop:u,p=o('core/block-editor').replaceBlocks;return{onConvertFromGroup:function(){c.length&&(p(l,c),k())}}})])(s);e.default=v},1422,[2,3,21,1170,347,911,975,1423]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[0]),t=r(d[1]),n=(0,l.createElement)(t.SVG,{width:"20",height:"20",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)(t.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M9 2H15C16.1 2 17 2.9 17 4V7C17 8.1 16.1 9 15 9H9C7.9 9 7 8.1 7 7V4C7 2.9 7.9 2 9 2ZM9 7H15V4H9V7Z"}),(0,l.createElement)(t.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M5 11H11C12.1 11 13 11.9 13 13V16C13 17.1 12.1 18 11 18H5C3.9 18 3 17.1 3 16V13C3 11.9 3.9 11 5 11ZM5 16H11V13H5V16Z"}));e.default=n},1423,[3,1170]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),s=t(r(d[2])),u=t(r(d[3])),o=t(r(d[4])),c=t(r(d[5])),l=t(r(d[6])),h=t(r(d[7])),p=r(d[8]),f=r(d[9]),v=r(d[10]),y=(0,v.createHigherOrderComponent)(function(t){return function(s){return(0,n.createElement)(f.RegistryConsumer,null,function(u){return(0,n.createElement)(t,(0,h.default)({},s,{registry:u}))})}},'withRegistry'),b=(function(t){function h(){return(0,s.default)(this,h),(0,o.default)(this,(0,c.default)(h).apply(this,arguments))}return(0,l.default)(h,t),(0,u.default)(h,[{key:"componentDidMount",value:function(){this.props.updateSettings(this.props.settings),this.props.resetBlocks(this.props.value),this.attachChangeObserver(this.props.registry)}},{key:"componentDidUpdate",value:function(t){var n=this.props,s=n.settings,u=n.updateSettings,o=n.value,c=n.resetBlocks,l=n.registry;s!==t.settings&&u(s),l!==t.registry&&this.attachChangeObserver(l),this.isSyncingOutcomingValue?this.isSyncingOutcomingValue=!1:o!==t.value&&(this.isSyncingIncomingValue=!0,c(o))}},{key:"componentWillUnmount",value:function(){this.unsubscribe&&this.unsubscribe()}},{key:"attachChangeObserver",value:function(t){var n=this;this.unsubscribe&&this.unsubscribe();var s=t.select('core/block-editor'),u=s.getBlocks,o=s.isLastBlockChangePersistent,c=u(),l=o();this.unsubscribe=t.subscribe(function(){var t=n.props,s=t.onChange,h=t.onInput,p=u(),f=o();if(p!==c&&n.isSyncingIncomingValue)return n.isSyncingIncomingValue=!1,c=p,void(l=f);(p!==c||f&&!l)&&(c=p,l=f,n.isSyncingOutcomingValue=!0,l?s(c):h(c))})}},{key:"render",value:function(){var t=this.props.children;return(0,n.createElement)(p.SlotFillProvider,null,t)}}]),h})(n.Component),k=(0,v.compose)([(0,f.withDispatch)(function(t){var n=t('core/block-editor');return{updateSettings:n.updateSettings,resetBlocks:n.resetBlocks}}),y])(b);e.default=k},1424,[2,3,34,35,42,45,48,16,1170,911,975]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"transformStyles",{enumerable:!0,get:function(){return n.default}});var n=t(r(d[1]))},1425,[2,1426]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=r(d[1]),n=r(d[2]),f=t(r(d[3])),l=t(r(d[4])),o=t(r(d[5])),s=function(t){var s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:'';return(0,u.map)(t,function(t){var u=t.css,v=t.baseURL,c=[];return s&&c.push((0,o.default)(s)),v&&c.push((0,l.default)(v)),c.length?(0,f.default)(u,(0,n.compose)(c)):u})};e.default=s},1426,[2,21,975,1427,1435,1439]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1])),u=r(d[2]);var f=function(t,f){try{var l=(0,u.parse)(t),o=n.default.map(l,function(t){if(!t)return t;var n=f(t);return this.update(n)});return(0,u.stringify)(o)}catch(t){return console.warn('Error while traversing the CSS: '+t),null}};e.default=f},1427,[2,1428,1429]); +__d(function(g,r,i,a,m,e,d){var t=m.exports=function(t){return new n(t)};function n(t){this.value=t}function o(t,n,o){var f=[],l=[],p=!0;return(function t(s){var h={},v=!0,k={node:o?u(s):s,node_:s,path:[].concat(f),parent:l[l.length-1],parents:l,key:f.slice(-1)[0],isRoot:0===f.length,level:f.length,circular:null,update:function(t,n){k.isRoot||(k.parent.node[k.key]=t),k.node=t,n&&(v=!1)},delete:function(t){delete k.parent.node[k.key],t&&(v=!1)},remove:function(t){y(k.parent.node)?k.parent.node.splice(k.key,1):delete k.parent.node[k.key],t&&(v=!1)},keys:null,before:function(t){h.before=t},after:function(t){h.after=t},pre:function(t){h.pre=t},post:function(t){h.post=t},stop:function(){p=!1},block:function(){v=!1}};if(!p)return k;function O(){if('object'==typeof k.node&&null!==k.node){k.keys&&k.node_===k.node||(k.keys=c(k.node)),k.isLeaf=0==k.keys.length;for(var t=0;t','"','`',' ','\r','\n','\t']),c=['\''].concat(p),f=['%','/','?',';','#'].concat(c),u=['/','?','#'],v=/^[+a-z0-9A-Z_-]{0,63}$/,y=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,b={javascript:!0,'javascript:':!0},O={javascript:!0,'javascript:':!0},j={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,'http:':!0,'https:':!0,'ftp:':!0,'gopher:':!0,'file:':!0},q=r(d[2]);function x(t,o,n){if(t&&s.isObject(t)&&t instanceof h)return t;var l=new h;return l.parse(t,o,n),l}h.prototype.parse=function(h,n,p){if(!s.isString(h))throw new TypeError("Parameter 'url' must be a string, not "+typeof h);var x=h.indexOf('?'),A=-1!==x&&x127?P+='x':P+=E[T];if(!P.match(v)){var D=L.slice(0,_),F=L.slice(_+1),G=E.match(y);G&&(D.push(G[1]),F.unshift(G[2])),F.length&&(I='/'+F.join('.')+I),this.hostname=D.join('.');break}}}this.hostname.length>255?this.hostname='':this.hostname=this.hostname.toLowerCase(),H||(this.hostname=t.toASCII(this.hostname));var J=this.port?':'+this.port:'',K=this.hostname||'';this.host=K+J,this.href+=this.host,H&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),'/'!==I[0]&&(I='/'+I))}if(!b[k])for(_=0,Z=c.length;_0)&&n.host.split('@'))&&(n.auth=H.shift(),n.host=n.hostname=H.shift());return n.search=t.search,n.query=t.query,s.isNull(n.pathname)&&s.isNull(n.search)||(n.path=(n.pathname?n.pathname:'')+(n.search?n.search:'')),n.href=n.format(),n}if(!N.length)return n.pathname=null,n.search?n.path='/'+n.search:n.path=null,n.href=n.format(),n;for(var S=N.slice(-1)[0],$=(n.host||t.host||N.length>1)&&('.'===S||'..'===S)||''===S,_=0,z=N.length;z>=0;z--)'.'===(S=N[z])?N.splice(z,1):'..'===S?(N.splice(z,1),_++):_&&(N.splice(z,1),_--);if(!U&&!k)for(;_--;_)N.unshift('..');!U||''===N[0]||N[0]&&'/'===N[0].charAt(0)||N.unshift(''),$&&'/'!==N.join('/').substr(-1)&&N.push('');var H,L=''===N[0]||N[0]&&'/'===N[0].charAt(0);R&&(n.hostname=n.host=L?'':N.length?N.shift():'',(H=!!(n.host&&n.host.indexOf('@')>0)&&n.host.split('@'))&&(n.auth=H.shift(),n.host=n.hostname=H.shift()));return(U=U||n.host&&N.length)&&!L&&N.unshift(''),N.length?n.pathname=N.join('/'):(n.pathname=null,n.path=null),s.isNull(n.pathname)&&s.isNull(n.search)||(n.path=(n.pathname?n.pathname:'')+(n.search?n.search:'')),n.auth=t.auth||n.auth,n.slashes=n.slashes||t.slashes,n.href=n.format(),n},h.prototype.parseHost=function(){var t=this.host,s=n.exec(t);s&&(':'!==(s=s[0])&&(this.port=s.substr(1)),t=t.substr(0,t.length-s.length)),t&&(this.hostname=t)}},1436,[1437,1438,361]); +__d(function(g,r,i,a,m,e,d){!(function(n){var o='object'==typeof e&&e&&!e.nodeType&&e,t='object'==typeof m&&m&&!m.nodeType&&m,f='object'==typeof g&&g;f.global!==f&&f.window!==f&&f.self!==f||(n=f);var u,c,l=2147483647,s=36,p=1,h=26,v=38,w=700,y=72,x=128,C='-',b=/^xn--/,j=/[^\x20-\x7E]/,A=/[\x2E\u3002\uFF0E\uFF61]/g,I={overflow:'Overflow: input needs wider integers to process','not-basic':'Illegal input >= 0x80 (not a basic code point)','invalid-input':'Invalid input'},E=35,F=Math.floor,O=String.fromCharCode;function S(n){throw RangeError(I[n])}function T(n,o){for(var t=n.length,f=[];t--;)f[t]=o(n[t]);return f}function _(n,o){var t=n.split('@'),f='';return t.length>1&&(f=t[0]+'@',n=t[1]),f+T((n=n.replace(A,'.')).split('.'),o).join('.')}function L(n){for(var o,t,f=[],u=0,c=n.length;u=55296&&o<=56319&&u65535&&(o+=O((n-=65536)>>>10&1023|55296),n=56320|1023&n),o+=O(n)}).join('')}function P(n,o){return n+22+75*(n<26)-((0!=o)<<5)}function R(n,o,t){var f=0;for(n=t?F(n/w):n>>1,n+=F(n/o);n>455;f+=s)n=F(n/E);return F(f+36*n/(n+v))}function U(n){var o,t,f,u,c,v,w,b,j,A,I,E=[],O=n.length,T=0,_=x,L=y;for((t=n.lastIndexOf(C))<0&&(t=0),f=0;f=128&&S('not-basic'),E.push(n.charCodeAt(f));for(u=t>0?t+1:0;u=O&&S('invalid-input'),((b=(I=n.charCodeAt(u++))-48<10?I-22:I-65<26?I-65:I-97<26?I-97:s)>=s||b>F((l-T)/v))&&S('overflow'),T+=b*v,!(b<(j=w<=L?p:w>=L+h?h:w-L));w+=s)v>F(l/(A=s-j))&&S('overflow'),v*=A;L=R(T-c,o=E.length+1,0==c),F(T/o)>l-_&&S('overflow'),_+=F(T/o),T%=o,E.splice(T++,0,_)}return M(E)}function k(n){var o,t,f,u,c,v,w,b,j,A,I,E,T,_,M,U=[];for(E=(n=L(n)).length,o=x,t=0,c=y,v=0;v=o&&IF((l-t)/(T=f+1))&&S('overflow'),t+=(w-o)*T,o=w,v=0;vl&&S('overflow'),I==o){for(b=t,j=s;!(b<(A=j<=c?p:j>=c+h?h:j-c));j+=s)M=b-A,_=s-A,U.push(O(P(A+M%_,0))),b=F(M/_);U.push(O(P(b,0))),c=R(t,T,f==u),t=0,++f}++t,++o}return U.join('')}if(u={version:'1.3.2',ucs2:{decode:L,encode:M},decode:U,encode:k,toASCII:function(n){return _(n,function(n){return j.test(n)?'xn--'+k(n):n})},toUnicode:function(n){return _(n,function(n){return b.test(n)?U(n.slice(4).toLowerCase()):n})}},'function'==typeof define&&'object'==typeof define.amd&&define.amd)define('punycode',function(){return u});else if(o&&t)if(m.exports==o)t.exports=u;else for(c in u)u.hasOwnProperty(c)&&(o[c]=u[c]);else n.punycode=u})(this)},1437,[]); +__d(function(g,r,i,a,m,e,d){'use strict';m.exports={isString:function(n){return'string'==typeof n},isObject:function(n){return'object'==typeof n&&null!==n},isNull:function(n){return null===n},isNullOrUndefined:function(n){return null==n}}},1438,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1])),o=r(d[2]);function c(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function u(t){for(var o=1;o1&&void 0!==arguments[1]?arguments[1]:[];return function(c){return'rule'===c.type?u({},c,{selectors:c.selectors.map(function(c){return(0,o.includes)(n,c.trim())?c:c.match(l)?c.replace(/^(body|html|:root)/,t):t+' '+c})}):c}};e.default=f},1439,[2,18,21]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),o=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.storeConfig=void 0;var n=o(r(d[2])),c=r(d[3]),f=o(r(d[4])),s=o(r(d[5])),u=t(r(d[6])),l=t(r(d[7])),p=o(r(d[8]));function O(t,o){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),o&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n}var b={reducer:f.default,selectors:u,actions:l,controls:p.default};e.storeConfig=b;var y=(0,c.registerStore)('core/block-editor',(function(t){for(var o=1;o1&&void 0!==arguments[1]?arguments[1]:'',c=(0,s.default)({},n,[]);return t.forEach(function(t){var s=t.clientId,u=t.innerBlocks;c[n].push(s),(0,o.default)(c,T(u,s))}),c}function O(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:'';return t.reduce(function(t,c){return(0,o.default)(t,(0,s.default)({},c.clientId,n),O(c.innerBlocks,c.clientId))},{})}function v(t){for(var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:u.identity,s={},l=(0,c.default)(t);l.length;){var E=l.shift(),I=E.innerBlocks,C=(0,n.default)(E,["innerBlocks"]);l.push.apply(l,(0,c.default)(I)),s[C.clientId]=o(C)}return s}function S(t){return v(t,function(t){return(0,u.omit)(t,'attributes')})}function h(t){return v(t,function(t){return t.attributes})}function L(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:'';return(0,u.reduce)(t[n],function(n,o){return[].concat((0,c.default)(n),[o],(0,c.default)(L(t,o)))},[])}function p(t,n){return(0,u.isEqual)((0,u.keys)(t),(0,u.keys)(n))}function b(t,n){return'UPDATE_BLOCK_ATTRIBUTES'===t.type&&void 0!==n&&'UPDATE_BLOCK_ATTRIBUTES'===n.type&&t.clientId===n.clientId&&p(t.attributes,n.attributes)}var R=function(t){return t.reduce(function(t,n){return t[n]={},t},{})};var B=(0,u.flow)(l.combineReducers,function(t){return function(n,c){if(n&&'SAVE_REUSABLE_BLOCK_SUCCESS'===c.type){var o=c.id,s=c.updatedId;if(o===s)return n;(n=f({},n)).attributes=(0,u.mapValues)(n.attributes,function(t,c){return'core/block'===n.byClientId[c].name&&t.ref===o?f({},t,{ref:s}):t})}return t(n,c)}},function(t){return function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},c=arguments.length>1?arguments[1]:void 0,o=t(n,c);if(o===n)return n;o.cache=n.cache?n.cache:{};var s=function(t){return t.reduce(function(t,c){var o=c;do{t.push(o),o=n.parents[o]}while(o);return t},[])};switch(c.type){case'RESET_BLOCKS':o.cache=(0,u.mapValues)(v(c.blocks),function(){return{}});break;case'RECEIVE_BLOCKS':case'INSERT_BLOCKS':var l=(0,u.keys)(v(c.blocks));c.rootClientId&&l.push(c.rootClientId),o.cache=f({},o.cache,{},R(s(l)));break;case'UPDATE_BLOCK':case'UPDATE_BLOCK_ATTRIBUTES':o.cache=f({},o.cache,{},R(s([c.clientId])));break;case'REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN':var E=R(s(c.replacedClientIds));o.cache=f({},(0,u.omit)(o.cache,c.replacedClientIds),{},(0,u.omit)(E,c.replacedClientIds),{},R((0,u.keys)(v(c.blocks))));break;case'REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN':o.cache=f({},(0,u.omit)(o.cache,c.removedClientIds),{},R((0,u.difference)(s(c.clientIds),c.clientIds)));break;case'MOVE_BLOCK_TO_POSITION':var I=[c.clientId];c.fromRootClientId&&I.push(c.fromRootClientId),c.toRootClientId&&I.push(c.toRootClientId),o.cache=f({},o.cache,{},R(s(I)));break;case'MOVE_BLOCKS_UP':case'MOVE_BLOCKS_DOWN':var C=[];c.rootClientId&&C.push(c.rootClientId),o.cache=f({},o.cache,{},R(s(C)));break;case'SAVE_REUSABLE_BLOCK_SUCCESS':var _=(0,u.keys)((0,u.omitBy)(o.attributes,function(t,n){return'core/block'!==o.byClientId[n].name||t.ref!==c.updatedId}));o.cache=f({},o.cache,{},R(s(_)))}return o}},function(t){return function(n,o){var s=function(t){for(var o=t,s=0;s0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RESET_BLOCKS':return S(n.blocks);case'RECEIVE_BLOCKS':case'INSERT_BLOCKS':return f({},t,{},S(n.blocks));case'UPDATE_BLOCK':if(!t[n.clientId])return t;var c=(0,u.omit)(n.updates,'attributes');return(0,u.isEmpty)(c)?t:f({},t,(0,s.default)({},n.clientId,f({},t[n.clientId],{},c)));case'REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN':return n.blocks?f({},(0,u.omit)(t,n.replacedClientIds),{},S(n.blocks)):t;case'REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN':return(0,u.omit)(t,n.removedClientIds)}return t},attributes:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RESET_BLOCKS':return h(n.blocks);case'RECEIVE_BLOCKS':case'INSERT_BLOCKS':return f({},t,{},h(n.blocks));case'UPDATE_BLOCK':return t[n.clientId]&&n.updates.attributes?f({},t,(0,s.default)({},n.clientId,f({},t[n.clientId],{},n.updates.attributes))):t;case'UPDATE_BLOCK_ATTRIBUTES':if(!t[n.clientId])return t;var c=(0,u.reduce)(n.attributes,function(c,o,s){var u,l;return o!==c[s]&&((c=(u=t[n.clientId])===(l=c)?f({},u):l)[s]=o),c},t[n.clientId]);return c===t[n.clientId]?t:f({},t,(0,s.default)({},n.clientId,c));case'REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN':return n.blocks?f({},(0,u.omit)(t,n.replacedClientIds),{},h(n.blocks)):t;case'REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN':return(0,u.omit)(t,n.removedClientIds)}return t},order:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RESET_BLOCKS':return T(n.blocks);case'RECEIVE_BLOCKS':return f({},t,{},(0,u.omit)(T(n.blocks),''));case'INSERT_BLOCKS':var o=n.rootClientId,l=void 0===o?'':o,E=t[l]||[],I=T(n.blocks,l),_=n.index,O=void 0===_?E.length:_;return f({},t,{},I,(0,s.default)({},l,(0,C.insertAt)(E,I[l],O)));case'MOVE_BLOCK_TO_POSITION':var v,S=n.fromRootClientId,h=void 0===S?'':S,L=n.toRootClientId,p=void 0===L?'':L,b=n.clientId,R=n.index,B=void 0===R?t[p].length:R;if(h===p){var A=t[p].indexOf(b);return f({},t,(0,s.default)({},p,(0,C.moveTo)(t[p],A,B)))}return f({},t,(v={},(0,s.default)(v,h,(0,u.without)(t[h],b)),(0,s.default)(v,p,(0,C.insertAt)(t[p],b,B)),v));case'MOVE_BLOCKS_UP':var K=n.clientIds,N=n.rootClientId,y=void 0===N?'':N,k=(0,u.first)(K),P=t[y];if(!P.length||k===(0,u.first)(P))return t;var D=P.indexOf(k);return f({},t,(0,s.default)({},y,(0,C.moveTo)(P,D,D-1,K.length)));case'MOVE_BLOCKS_DOWN':var M=n.clientIds,U=n.rootClientId,V=void 0===U?'':U,w=(0,u.first)(M),G=(0,u.last)(M),H=t[V];if(!H.length||G===(0,u.last)(H))return t;var W=H.indexOf(w);return f({},t,(0,s.default)({},V,(0,C.moveTo)(H,W,W+1,M.length)));case'REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN':var x=n.clientIds;if(!n.blocks)return t;var j=T(n.blocks);return(0,u.flow)([function(t){return(0,u.omit)(t,n.replacedClientIds)},function(t){return f({},t,{},(0,u.omit)(j,''))},function(t){return(0,u.mapValues)(t,function(t){return(0,u.reduce)(t,function(t,n){return n===x[0]?[].concat((0,c.default)(t),(0,c.default)(j[''])):(-1===x.indexOf(n)&&t.push(n),t)},[])})}])(t);case'REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN':return(0,u.flow)([function(t){return(0,u.omit)(t,n.removedClientIds)},function(t){return(0,u.mapValues)(t,function(t){return u.without.apply(void 0,[t].concat((0,c.default)(n.removedClientIds)))})}])(t)}return t},parents:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'RESET_BLOCKS':return O(n.blocks);case'RECEIVE_BLOCKS':return f({},t,{},O(n.blocks));case'INSERT_BLOCKS':return f({},t,{},O(n.blocks,n.rootClientId||''));case'MOVE_BLOCK_TO_POSITION':return f({},t,(0,s.default)({},n.clientId,n.toRootClientId||''));case'REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN':return f({},(0,u.omit)(t,n.replacedClientIds),{},O(n.blocks,t[n.clientIds[0]]));case'REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN':return(0,u.omit)(t,n.removedClientIds)}return t}});function A(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];switch((arguments.length>1?arguments[1]:void 0).type){case'START_TYPING':return!0;case'STOP_TYPING':return!1}return t}function K(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];switch((arguments.length>1?arguments[1]:void 0).type){case'START_DRAGGING_BLOCKS':return!0;case'STOP_DRAGGING_BLOCKS':return!1}return t}function N(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];switch((arguments.length>1?arguments[1]:void 0).type){case'ENTER_FORMATTED_TEXT':return!0;case'EXIT_FORMATTED_TEXT':return!1}return t}function y(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'CLEAR_SELECTED_BLOCK':return t.clientId?{}:t;case'SELECT_BLOCK':return n.clientId===t.clientId?t:{clientId:n.clientId};case'REPLACE_INNER_BLOCKS':case'INSERT_BLOCKS':return n.updateSelection?{clientId:n.blocks[0].clientId}:t;case'REMOVE_BLOCKS':return n.clientIds&&n.clientIds.length&&-1!==n.clientIds.indexOf(t.clientId)?{}:t;case'REPLACE_BLOCKS':if(-1===n.clientIds.indexOf(t.clientId))return t;var c=n.indexToSelect||n.blocks.length-1,o=n.blocks[c];return o?o.clientId===t.clientId?t:{clientId:o.clientId}:{}}return t}function k(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'SELECTION_CHANGE':return{clientId:n.clientId,attributeKey:n.attributeKey,offset:n.startOffset};case'RESET_SELECTION':return n.selectionStart;case'MULTI_SELECT':return{clientId:n.start}}return y(t,n)}function P(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'SELECTION_CHANGE':return{clientId:n.clientId,attributeKey:n.attributeKey,offset:n.endOffset};case'RESET_SELECTION':return n.selectionEnd;case'MULTI_SELECT':return{clientId:n.end}}return y(t,n)}function D(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];switch((arguments.length>1?arguments[1]:void 0).type){case'START_MULTI_SELECT':return!0;case'STOP_MULTI_SELECT':return!1}return t}function M(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'TOGGLE_SELECTION':return n.isSelectionEnabled}return t}function U(t,n){return'SELECT_BLOCK'===n.type?n.initialPosition:'REMOVE_BLOCKS'===n.type?t:void 0}function V(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;if('TOGGLE_BLOCK_MODE'===n.type){var c=n.clientId;return f({},t,(0,s.default)({},c,t[c]&&'html'===t[c]?'visual':'html'))}return t}function w(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'SHOW_INSERTION_POINT':return{rootClientId:n.rootClientId,index:n.index};case'HIDE_INSERTION_POINT':return null}return t}function G(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{isValid:!0},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'SET_TEMPLATE_VALIDITY':return f({},t,{isValid:n.isValid})}return t}function H(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:I.SETTINGS_DEFAULTS,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'UPDATE_SETTINGS':return f({},t,{},n.settings)}return t}function W(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:I.PREFERENCES_DEFAULTS,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'INSERT_BLOCKS':case'REPLACE_BLOCKS':return n.blocks.reduce(function(t,c){var o=c.name,u={name:c.name};return(0,E.isReusableBlock)(c)&&(u.ref=c.attributes.ref,o+='/'+c.attributes.ref),f({},t,{insertUsage:f({},t.insertUsage,(0,s.default)({},o,{time:n.time,count:t.insertUsage[o]?t.insertUsage[o].count+1:1,insert:u}))})},t)}return t}e.blocks=B;var x=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'REPLACE_BLOCKS':case'REMOVE_BLOCKS':return(0,u.omit)(t,n.clientIds);case'UPDATE_BLOCK_LIST_SETTINGS':var c=n.clientId;return n.settings?(0,u.isEqual)(t[c],n.settings)?t:f({},t,(0,s.default)({},c,n.settings)):t.hasOwnProperty(c)?(0,u.omit)(t,c):t}return t};function j(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],n=arguments.length>1?arguments[1]:void 0;return'SET_NAVIGATION_MODE'===n.type?n.isNavigationMode:t}function F(t,n){switch(n.type){case'UPDATE_BLOCK':if(!n.updates.attributes)break;return(0,s.default)({},n.clientId,n.updates.attributes);case'UPDATE_BLOCK_ATTRIBUTES':return(0,s.default)({},n.clientId,n.attributes)}return null}function Y(t,n){switch(n.type){case'MARK_AUTOMATIC_CHANGE':return'pending';case'MARK_AUTOMATIC_CHANGE_FINAL':return'pending'===t?'final':void 0;case'SELECTION_CHANGE':return'final'!==t?t:void 0;case'STOP_TYPING':return t}}e.blockListSettings=x;var X=(0,l.combineReducers)({blocks:B,isTyping:A,isDraggingBlocks:K,isCaretWithinFormattedText:N,selectionStart:k,selectionEnd:P,isMultiSelecting:D,isSelectionEnabled:M,initialPosition:U,blocksMode:V,blockListSettings:x,insertionPoint:w,template:G,settings:H,preferences:W,lastBlockAttributesChange:F,isNavigationMode:j,automaticChangeStatus:Y});e.default=X},1441,[2,19,9,16,18,21,911,1045,1442,1443]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.SETTINGS_DEFAULTS=e.PREFERENCES_DEFAULTS=void 0;var l=r(d[0]);e.PREFERENCES_DEFAULTS={insertUsage:{}};var n={alignWide:!1,colors:[{name:(0,l.__)('Pale pink'),slug:'pale-pink',color:'#f78da7'},{name:(0,l.__)('Vivid red'),slug:'vivid-red',color:'#cf2e2e'},{name:(0,l.__)('Luminous vivid orange'),slug:'luminous-vivid-orange',color:'#ff6900'},{name:(0,l.__)('Luminous vivid amber'),slug:'luminous-vivid-amber',color:'#fcb900'},{name:(0,l.__)('Light green cyan'),slug:'light-green-cyan',color:'#7bdcb5'},{name:(0,l.__)('Vivid green cyan'),slug:'vivid-green-cyan',color:'#00d084'},{name:(0,l.__)('Pale cyan blue'),slug:'pale-cyan-blue',color:'#8ed1fc'},{name:(0,l.__)('Vivid cyan blue'),slug:'vivid-cyan-blue',color:'#0693e3'},{name:(0,l.__)('Vivid purple'),slug:'vivid-purple',color:'#9b51e0'},{name:(0,l.__)('Very light gray'),slug:'very-light-gray',color:'#eeeeee'},{name:(0,l.__)('Cyan bluish gray'),slug:'cyan-bluish-gray',color:'#abb8c3'},{name:(0,l.__)('Very dark gray'),slug:'very-dark-gray',color:'#313131'}],fontSizes:[{name:(0,l._x)('Small','font size name'),size:13,slug:'small'},{name:(0,l._x)('Normal','font size name'),size:16,slug:'normal'},{name:(0,l._x)('Medium','font size name'),size:20,slug:'medium'},{name:(0,l._x)('Large','font size name'),size:36,slug:'large'},{name:(0,l._x)('Huge','font size name'),size:48,slug:'huge'}],imageSizes:[{slug:'thumbnail',label:(0,l.__)('Thumbnail')},{slug:'medium',label:(0,l.__)('Medium')},{slug:'large',label:(0,l.__)('Large')},{slug:'full',label:(0,l.__)('Full Size')}],maxWidth:580,allowedBlockTypes:!0,maxUploadFileSize:0,allowedMimeTypes:null,availableLegacyWidgets:{},hasPermissionsToManageWidgets:!1,showInserterHelpPanel:!0,__experimentalCanUserUseUnfilteredHTML:!1,__experimentalEnableLegacyWidgetBlock:!1,__experimentalBlockDirectory:!1,__experimentalEnableFullSiteEditing:!1,__experimentalEnableFullSiteEditingDemo:!1,__experimentalEnablePageTemplates:!1,gradients:[{name:(0,l.__)('Vivid cyan blue to vivid purple'),gradient:'linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)',slug:'vivid-cyan-blue-to-vivid-purple'},{name:(0,l.__)('Light green cyan to vivid green cyan'),gradient:'linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%)',slug:'light-green-cyan-to-vivid-green-cyan'},{name:(0,l.__)('Luminous vivid amber to luminous vivid orange'),gradient:'linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)',slug:'luminous-vivid-amber-to-luminous-vivid-orange'},{name:(0,l.__)('Luminous vivid orange to vivid red'),gradient:'linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%)',slug:'luminous-vivid-orange-to-vivid-red'},{name:(0,l.__)('Very light gray to cyan bluish gray'),gradient:'linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%)',slug:'very-light-gray-to-cyan-bluish-gray'},{name:(0,l.__)('Cool to warm spectrum'),gradient:'linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%)',slug:'cool-to-warm-spectrum'},{name:(0,l.__)('Blush light purple'),gradient:'linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%)',slug:'blush-light-purple'},{name:(0,l.__)('Blush bordeaux'),gradient:'linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%)',slug:'blush-bordeaux'},{name:(0,l.__)('Luminous dusk'),gradient:'linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%)',slug:'luminous-dusk'},{name:(0,l.__)('Pale ocean'),gradient:'linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%)',slug:'pale-ocean'},{name:(0,l.__)('Electric grass'),gradient:'linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%)',slug:'electric-grass'},{name:(0,l.__)('Midnight'),gradient:'linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%)',slug:'midnight'}]};e.SETTINGS_DEFAULTS=n},1442,[347]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.insertAt=l,e.moveTo=function(t,c,u){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:1,f=(0,n.default)(t);return f.splice(c,o),l(f,t.slice(c,c+o),u)};var n=t(r(d[1])),c=r(d[2]);function l(t,l,u){return[].concat((0,n.default)(t.slice(0,u)),(0,n.default)((0,c.castArray)(l)),(0,n.default)(t.slice(u)))}},1443,[2,9,21]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1])),o=t(r(d[2])),u=t(r(d[3])),l=r(d[4]),c=t(r(d[5]));var f=function(t){var f,p=[(0,o.default)(c.default),u.default],h=function(){throw new Error("Dispatching while constructing your middleware is not allowed. Other middleware would not be applied to this dispatch.")},s={getState:t.getState,dispatch:function(){return h.apply(void 0,arguments)}};return f=p.map(function(t){return t(s)}),h=l.flowRight.apply(void 0,(0,n.default)(f))(t.dispatch),t.dispatch=h,t};e.default=f},1444,[2,9,1445,1446,21,1447]); +__d(function(g,r,i,a,m,e,d){'use strict';function n(t,f){var c;if(Array.isArray(f))for(c=0;c0&&void 0!==arguments[0])||arguments[0]}},e.replaceBlocks=A,e.replaceBlock=function(t,n){return A(t,n)},e.moveBlockToPosition=R,e.insertBlock=w,e.insertBlocks=D,e.showInsertionPoint=function(t,n){return{type:'SHOW_INSERTION_POINT',rootClientId:t,index:n}},e.hideInsertionPoint=function(){return{type:'HIDE_INSERTION_POINT'}},e.setTemplateValidity=function(t){return{type:'SET_TEMPLATE_VALIDITY',isValid:t}},e.synchronizeTemplate=function(){return{type:'SYNCHRONIZE_TEMPLATE'}},e.mergeBlocks=function(t,n){return{type:'MERGE_BLOCKS',blocks:[t,n]}},e.removeBlocks=M,e.removeBlock=function(t,n){return M([t],n)},e.replaceInnerBlocks=function(t,n){var o=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];return{type:'REPLACE_INNER_BLOCKS',rootClientId:t,blocks:n,updateSelection:o,time:Date.now()}},e.toggleBlockMode=function(t){return{type:'TOGGLE_BLOCK_MODE',clientId:t}},e.startTyping=function(){return{type:'START_TYPING'}},e.stopTyping=function(){return{type:'STOP_TYPING'}},e.startDraggingBlocks=function(){return{type:'START_DRAGGING_BLOCKS'}},e.stopDraggingBlocks=function(){return{type:'STOP_DRAGGING_BLOCKS'}},e.enterFormattedText=function(){return{type:'ENTER_FORMATTED_TEXT'}},e.exitFormattedText=function(){return{type:'EXIT_FORMATTED_TEXT'}},e.selectionChange=function(t,n,o,c){return{type:'SELECTION_CHANGE',clientId:t,attributeKey:n,startOffset:o,endOffset:c}},e.insertDefaultBlock=K,e.updateBlockListSettings=function(t,n){return{type:'UPDATE_BLOCK_LIST_SETTINGS',clientId:t,settings:n}},e.updateSettings=function(t){return{type:'UPDATE_SETTINGS',settings:t}},e.__unstableSaveReusableBlock=function(t,n){return{type:'SAVE_REUSABLE_BLOCK_SUCCESS',id:t,updatedId:n}},e.__unstableMarkLastChangeAsPersistent=function(){return{type:'MARK_LAST_CHANGE_AS_PERSISTENT'}},e.__unstableMarkAutomaticChange=function(){return{type:'MARK_AUTOMATIC_CHANGE'}},e.setNavigationMode=G,e.moveBlocksUp=e.moveBlocksDown=void 0;var n=t(r(d[1])),o=t(r(d[2])),c=r(d[3]),u=r(d[4]),s=r(d[5]),l=r(d[6]),f=r(d[7]);function p(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function k(t){for(var o=1;o1&&void 0!==arguments[1]?arguments[1]:null,clientId:t}}function x(t){var n;return o.default.wrap(function(o){for(;;)switch(o.prev=o.next){case 0:return o.next=2,(0,f.select)('core/block-editor','getPreviousBlockClientId',t);case 2:if(!(n=o.sent)){o.next=6;break}return o.next=6,B(n,-1);case 6:case"end":return o.stop()}},E)}function C(t){var n;return o.default.wrap(function(o){for(;;)switch(o.prev=o.next){case 0:return o.next=2,(0,f.select)('core/block-editor','getNextBlockClientId',t);case 2:if(!(n=o.sent)){o.next=6;break}return o.next=6,B(n);case 6:case"end":return o.stop()}},_)}function L(t,n){var o=(0,c.get)(n,['__experimentalPreferredStyleVariations','value'],{});return t.map(function(t){var n=t.name;if(!o[n])return t;var u=(0,c.get)(t,['attributes','className']);if((0,c.includes)(u,'is-style-'))return t;var s=t.attributes,l=void 0===s?{}:s,f=o[n];return k({},t,{attributes:k({},l,{className:((u||'')+" is-style-"+f).trim()})})})}function A(t,n,u){var s,l,p;return o.default.wrap(function(o){for(;;)switch(o.prev=o.next){case 0:return t=(0,c.castArray)(t),o.t0=L,o.t1=(0,c.castArray)(n),o.next=5,(0,f.select)('core/block-editor','getSettings');case 5:return o.t2=o.sent,n=(0,o.t0)(o.t1,o.t2),o.next=9,(0,f.select)('core/block-editor','getBlockRootClientId',(0,c.first)(t));case 9:s=o.sent,l=0;case 11:if(!(l1&&void 0!==k[1]?k[1]:'',c=k.length>2&&void 0!==k[2]?k[2]:'',u=k.length>3?k[3]:void 0,o.next=5,(0,f.select)('core/block-editor','getTemplateLock',n);case 5:if('all'!==(s=o.sent)){o.next=8;break}return o.abrupt("return");case 8:if(l={type:'MOVE_BLOCK_TO_POSITION',fromRootClientId:n,toRootClientId:c,clientId:t,index:u},n!==c){o.next=13;break}return o.next=12,l;case 12:return o.abrupt("return");case 13:if('insert'!==s){o.next=15;break}return o.abrupt("return");case 15:return o.next=17,(0,f.select)('core/block-editor','getBlockName',t);case 17:return p=o.sent,o.next=20,(0,f.select)('core/block-editor','canInsertBlockType',p,c);case 20:if(!o.sent){o.next=24;break}return o.next=24,l;case 24:case"end":return o.stop()}},b)}function w(t,n,o){return D([t],n,o,!(arguments.length>3&&void 0!==arguments[3])||arguments[3])}function D(t,n,u){var s,l,p,k,T,E,_,y=arguments;return o.default.wrap(function(o){for(;;)switch(o.prev=o.next){case 0:return s=!(y.length>3&&void 0!==y[3])||y[3],o.t0=L,o.t1=(0,c.castArray)(t),o.next=5,(0,f.select)('core/block-editor','getSettings');case 5:o.t2=o.sent,t=(0,o.t0)(o.t1,o.t2),l=[],p=t,k=Array.isArray(p),T=0,p=k?p:p["function"==typeof Symbol&&"function"==typeof Symbol?Symbol.iterator:"@@iterator"]();case 9:if(!k){o.next=15;break}if(!(T>=p.length)){o.next=12;break}return o.abrupt("break",26);case 12:E=p[T++],o.next=19;break;case 15:if(!(T=p.next()).done){o.next=18;break}return o.abrupt("break",26);case 18:E=T.value;case 19:return _=E,o.next=22,(0,f.select)('core/block-editor','canInsertBlockType',_.name,u);case 22:o.sent&&l.push(_);case 24:o.next=9;break;case 26:if(!l.length){o.next=28;break}return o.abrupt("return",{type:'INSERT_BLOCKS',blocks:l,index:n,rootClientId:u,time:Date.now(),updateSelection:s});case 28:case"end":return o.stop()}},S)}function M(t){var n,u=arguments;return o.default.wrap(function(o){for(;;)switch(o.prev=o.next){case 0:if(n=!(u.length>1&&void 0!==u[1])||u[1],t=(0,c.castArray)(t),!n){o.next=5;break}return o.next=5,x(t[0]);case 5:return o.next=7,{type:'REMOVE_BLOCKS',clientIds:t};case 7:return o.delegateYield(I(),"t0",8);case 8:case"end":return o.stop()}},O)}function K(t,n,o){var c=(0,u.getDefaultBlockName)();if(c)return w((0,u.createBlock)(c,t),o,n)}function G(){var t,n=arguments;return o.default.wrap(function(o){for(;;)switch(o.prev=o.next){case 0:return t=!(n.length>0&&void 0!==n[0])||n[0],o.next=3,{type:'SET_NAVIGATION_MODE',isNavigationMode:t};case 3:t?(0,s.speak)((0,l.__)('You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.')):(0,s.speak)((0,l.__)('You are currently in edit mode. To return to the navigation mode, press Escape.'));case 4:case"end":return o.stop()}},v)}e.moveBlocksUp=P},1448,[2,18,252,21,1045,1231,347,1449]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.select=function(t,n){for(var o=arguments.length,l=new Array(o>2?o-2:0),u=2;u2&&void 0!==arguments[2]&&arguments[2];return(0,o.some)(U(n,l),function(l){return W(n,l)||A(n,l)||c&&t(n,l,c)})},e.isBlockWithinSelection=function(t,n){if(!n)return!1;var l=x(t),c=l.indexOf(n);return c>-1&&c2&&void 0!==arguments[2]&&arguments[2],c=[],o=n;t.blocks.parents[o];)o=t.blocks.parents[o],c.push(o);return l?c:c.reverse()},function(t){return[t.blocks.parents]});function M(t,n){var l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1;if(void 0===n&&(n=L(t)),void 0===n&&(n=l<0?D(t):N(t)),!n)return null;var c=O(t,n);if(null===c)return null;var o=t.blocks.order[c],u=o.indexOf(n)+1*l;return u<0?null:u===o.length?null:o[u]}e.getBlockParents=w;var P=(0,u.default)(function(t){var n=t.selectionStart,l=t.selectionEnd;if(void 0===n.clientId||void 0===l.clientId)return v;if(n.clientId===l.clientId)return[n.clientId];var c=O(t,n.clientId);if(null===c)return v;var o=U(t,c),u=o.indexOf(n.clientId),s=o.indexOf(l.clientId);return u>s?o.slice(s,u+1):o.slice(u,s+1)},function(t){return[t.blocks.order,t.selectionStart.clientId,t.selectionEnd.clientId]});function x(t){var n=t.selectionStart,l=t.selectionEnd;return n.clientId===l.clientId?v:P(t)}e.getSelectedBlockClientIds=P;var R=(0,u.default)(function(t){var n=x(t);return n.length?n.map(function(n){return S(t,n)}):v},function(t){return[].concat((0,l.default)(P.getDependants(t)),[t.blocks.byClientId,t.blocks.order,t.blocks.attributes])});function D(t){return(0,o.first)(x(t))||null}function N(t){return(0,o.last)(x(t))||null}function A(t,n){return-1!==x(t).indexOf(n)}e.getMultiSelectedBlocks=R;var G=(0,u.default)(function(t,n){for(var l=n,c=!1;l&&!c;)c=A(t,l=O(t,l));return c},function(t){return[t.blocks.order,t.selectionStart.clientId,t.selectionEnd.clientId]});function U(t,n){return t.blocks.order[n||'']||v}function j(t,n,l){return U(t,l).indexOf(n)}function W(t,n){var l=t.selectionStart,c=t.selectionEnd;return l.clientId===c.clientId&&l.clientId===n}function V(t,n){if(!n)return t.settings.templateLock;var l=Q(t,n);return l?l.templateLock:null}e.isAncestorMultiSelected=G;var Y=function(t,n){var l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,c=function(t,n){var l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return(0,o.isBoolean)(t)?t:(0,o.isArray)(t)?!(!(0,o.includes)(t,'core/post-content')||null!==n)||(0,o.includes)(t,n):l},u=(0,s.getBlockType)(n);if(!u)return!1;if(!c(X(t).allowedBlockTypes,n,!0))return!1;if(!!V(t,l))return!1;var f=Q(t,l),k=c((0,o.get)(f,['allowedBlocks']),n),I=c(u.parent,B(t,l));return null!==k&&null!==I?k||I:null!==k?k:null===I||I},H=(0,u.default)(Y,function(t,n,l){return[t.blockListSettings[l],t.blocks.byClientId[l],t.settings.allowedBlockTypes,t.settings.templateLock]});function F(t,n){return(0,o.get)(t.preferences.insertUsage,[n],null)}e.canInsertBlockType=H;var z=function(t,n,l){return!!(0,s.hasBlockSupport)(n,'inserter',!0)&&Y(t,n.name,l)},q=(0,u.default)(function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,c=function(t,n,l){return l?3:n>0?2:'common'===t?1:0},u=function(t,n){if(!t)return n;var l=Date.now()-t;switch(!0){case l<36e5:return 4*n;case l<864e5:return 2*n;case l<6048e5:return n/2;default:return n/4}},f=(0,s.getBlockTypes)().filter(function(l){return z(t,l,n)}).map(function(n){var l=n.name,f=!1;(0,s.hasBlockSupport)(n.name,'multiple',!0)||(f=(0,o.some)(_(t,T(t)),{name:n.name}));var k=(0,o.isArray)(n.parent),I=F(t,l)||{},b=I.time,v=I.count,B=void 0===v?0:v;return{id:l,name:n.name,initialAttributes:{},title:n.title,icon:n.icon,category:n.category,keywords:n.keywords,isDisabled:f,utility:c(n.category,B,k),frecency:u(b,B)}}),k=Y(t,'core/block',n)?tt(t).map(function(n){var l,o="core/block/"+n.id,f=$(t,n.id);1===f.length&&(l=(0,s.getBlockType)(f[0].name));var k=F(t,o)||{},I=k.time,v=k.count,B=void 0===v?0:v,p=c('reusable',B,!1),S=u(I,B);return{id:o,name:'core/block',initialAttributes:{ref:n.id},title:n.title,icon:l?l.icon:b,category:'reusable',keywords:[],isDisabled:!1,utility:p,frecency:S}}):[];return(0,o.orderBy)([].concat((0,l.default)(f),(0,l.default)(k)),['utility','frecency'],['desc','desc'])},function(t,n){return[t.blockListSettings[n],t.blocks.byClientId,t.blocks.order,t.preferences.insertUsage,t.settings.allowedBlockTypes,t.settings.templateLock,tt(t),(0,s.getBlockTypes)()]});e.getInserterItems=q;var J=(0,u.default)(function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return!!(0,o.some)((0,s.getBlockTypes)(),function(l){return z(t,l,n)})||Y(t,'core/block',n)&&tt(t).length>0},function(t,n){return[t.blockListSettings[n],t.blocks.byClientId,t.settings.allowedBlockTypes,t.settings.templateLock,tt(t),(0,s.getBlockTypes)()]});e.hasInserterItems=J;var K=(0,u.default)(function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(n)return(0,o.filter)((0,s.getBlockTypes)(),function(l){return z(t,l,n)})},function(t,n){return[t.blockListSettings[n],t.blocks.byClientId,t.settings.allowedBlockTypes,t.settings.templateLock,(0,s.getBlockTypes)()]});function Q(t,n){return t.blockListSettings[n]}function X(t){return t.settings}e.__experimentalGetAllowedBlocks=K;var Z=(0,u.default)(function(t,n){return(0,o.filter)(t.blockListSettings,function(t,l){return n.includes(l)})},function(t){return[t.blockListSettings]});e.__experimentalGetBlockListSettingsForBlocks=Z;var $=(0,u.default)(function(t,n){var l=(0,o.find)(tt(t),function(t){return t.id===n});return l?(0,s.parse)(l.content):null},function(t){return[tt(t)]});function tt(t){return(0,o.get)(t,['settings','__experimentalReusableBlocks'],v)}e.__experimentalGetParsedReusableBlock=$},1450,[2,3,9,18,21,1034,1045,1170]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),r(d[0]),r(d[1]),r(d[2]),r(d[3]),r(d[4]),r(d[5]);var t=r(d[6]);Object.keys(t).forEach(function(n){"default"!==n&&"__esModule"!==n&&Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[n]}})});var n=r(d[7]);Object.keys(n).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return n[t]}})})},1451,[1044,1045,1023,1103,1452,1476,1477,1486]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),o=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.storeConfig=void 0;var n=o(r(d[2])),c=r(d[3]),s=r(d[4]),f=o(r(d[5])),u=o(r(d[6])),l=t(r(d[7])),p=t(r(d[8])),O=o(r(d[9])),b=r(d[10]);function y(t,o){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),o&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n}function j(t){for(var o=1;o2?o-2:0),s=2;s2?o-2:0),s=2;s0&&void 0!==arguments[0]&&arguments[0],o=arguments.length>1?arguments[1]:void 0;switch(o.type){case'TOGGLE_POST_TITLE_SELECTION':return o.isSelected}return t}});e.postTitle=l;var p=(0,s.default)((0,n.combineReducers)({postId:c.postId,postType:c.postType,postTitle:l,preferences:c.preferences,saving:c.saving,postLock:c.postLock,postSavingLock:c.postSavingLock,reusableBlocks:c.reusableBlocks,template:c.template,isReady:c.isReady,editorSettings:c.editorSettings}));e.default=p},1454,[2,1455,911,1457,1458]); +__d(function(g,r,i,a,m,e,d){m.exports=r(d[0])},1455,[1456]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=Object.assign||function(t){for(var o=1;o=0||Object.prototype.hasOwnProperty.call(t,s)&&(n[s]=t[s]);return n}var n='BEGIN',s='COMMIT',c='REVERT',p=[];function u(t,o){return t.optimist&&t.optimist.id===o}function f(t,o){if(!t||'object'!=typeof t||Array.isArray(t))throw new TypeError('Error while handling "'+o.type+'": Optimist requires that state is always a plain object.')}function h(t){if(t){var n=t.optimist;return{optimist:void 0===n?p:n,innerState:o(t,['optimist'])}}return{optimist:p,innerState:t}}m.exports=function(o){function p(n,s){var c=h(n),p=c.optimist,u=c.innerState;return p=p.concat([{beforeState:u,action:s}]),f(u=o(u,s),s),t({optimist:p},u)}function b(t,o){var n=h(t),s=n.optimist,c=n.innerState,p=[],f=!1,b=!1;return s.forEach(function(t){f?t.beforeState&&u(t.action,o.optimist.id)?(b=!0,p.push({action:t.action})):p.push(t):t.beforeState&&!u(t.action,o.optimist.id)?(f=!0,p.push(t)):t.beforeState&&u(t.action,o.optimist.id)&&(b=!0)}),b||console.error('Cannot commit transaction with id "'+o.optimist.id+'" because it does not exist'),S(s=p,c,o)}function v(t,n){var s=h(t),c=s.optimist,p=s.innerState,b=[],v=!1,l=!1,y=p;return c.forEach(function(t){t.beforeState&&u(t.action,n.optimist.id)&&(y=t.beforeState,l=!0),u(t.action,n.optimist.id)||(t.beforeState&&(v=!0),v&&(l&&t.beforeState?b.push({beforeState:y,action:t.action}):b.push(t)),l&&(y=o(y,t.action),f(p,n)))}),l||console.error('Cannot revert transaction with id "'+n.optimist.id+'" because it does not exist'),S(c=b,y,n)}function S(n,s,c){return n.length&&(n=n.concat([{action:c}])),f(s=o(s,c),c),t({optimist:n},s)}return function(u,l){if(l.optimist)switch(l.optimist.type){case n:return p(u,l);case s:return b(u,l);case c:return v(u,l)}var y=h(u),E=y.optimist,w=y.innerState;if(u&&!E.length){var O=o(w,l);return O===w?u:(f(O,l),t({optimist:E},O))}return S(E,w,l)}},m.exports.BEGIN=n,m.exports.COMMIT=s,m.exports.REVERT=c},1456,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.getPostRawValue=function(t){if(t&&'object'==typeof t&&'raw'in t)return t.raw;return t},e.hasSameKeys=l,e.isUpdatingSamePostProperty=_,e.shouldOverwriteState=function(t,n){if('RESET_EDITOR_BLOCKS'===t.type)return!t.shouldCreateUndoLevel;if(!n||t.type!==n.type)return!1;return _(t,n)},e.postId=T,e.postType=v,e.template=p,e.preferences=O,e.saving=h,e.postLock=f,e.postSavingLock=A,e.postAutosavingLock=L,e.isReady=P,e.editorSettings=R,e.default=e.reusableBlocks=void 0;var n=t(r(d[1])),o=t(r(d[2])),s=r(d[3]),c=r(d[4]),u=r(d[5]);function E(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function S(t){for(var o=1;o0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'SETUP_EDITOR_STATE':case'RESET_POST':case'UPDATE_POST':return n.post.id}return t}function v(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'SETUP_EDITOR_STATE':case'RESET_POST':case'UPDATE_POST':return n.post.type}return t}function p(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{isValid:!0},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'SET_TEMPLATE_VALIDITY':return S({},t,{isValid:n.isValid})}return t}function O(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:u.PREFERENCES_DEFAULTS;switch((arguments.length>1?arguments[1]:void 0).type){case'ENABLE_PUBLISH_SIDEBAR':return S({},t,{isPublishSidebarEnabled:!0});case'DISABLE_PUBLISH_SIDEBAR':return S({},t,{isPublishSidebarEnabled:!1})}return t}function h(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'REQUEST_POST_UPDATE_START':case'REQUEST_POST_UPDATE_FINISH':return{pending:'REQUEST_POST_UPDATE_START'===n.type,options:n.options||{}}}return t}function f(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{isLocked:!1},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'UPDATE_POST_LOCK':return n.lock}return t}function A(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1?arguments[1]:void 0;switch(o.type){case'LOCK_POST_SAVING':return S({},t,(0,n.default)({},o.lockName,!0));case'UNLOCK_POST_SAVING':return(0,s.omit)(t,o.lockName)}return t}function L(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1?arguments[1]:void 0;switch(o.type){case'LOCK_POST_AUTOSAVING':return S({},t,(0,n.default)({},o.lockName,!0));case'UNLOCK_POST_AUTOSAVING':return(0,s.omit)(t,o.lockName)}return t}var y=(0,c.combineReducers)({data:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1?arguments[1]:void 0;switch(o.type){case'RECEIVE_REUSABLE_BLOCKS':return S({},t,{},(0,s.keyBy)(o.results,'id'));case'UPDATE_REUSABLE_BLOCK':var c=o.id,u=o.changes;return S({},t,(0,n.default)({},c,S({},t[c],{},u)));case'SAVE_REUSABLE_BLOCK_SUCCESS':var E=o.id,l=o.updatedId;if(E===l)return t;var _=t[E];return S({},(0,s.omit)(t,E),(0,n.default)({},l,S({},_,{id:l})));case'REMOVE_REUSABLE_BLOCK':var T=o.id;return(0,s.omit)(t,T)}return t},isFetching:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1?arguments[1]:void 0;switch(o.type){case'FETCH_REUSABLE_BLOCKS':var c=o.id;return c?S({},t,(0,n.default)({},c,!0)):t;case'FETCH_REUSABLE_BLOCKS_SUCCESS':case'FETCH_REUSABLE_BLOCKS_FAILURE':var u=o.id;return(0,s.omit)(t,u)}return t},isSaving:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1?arguments[1]:void 0;switch(o.type){case'SAVE_REUSABLE_BLOCK':return S({},t,(0,n.default)({},o.id,!0));case'SAVE_REUSABLE_BLOCK_SUCCESS':case'SAVE_REUSABLE_BLOCK_FAILURE':var c=o.id;return(0,s.omit)(t,c)}return t}});function P(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];switch((arguments.length>1?arguments[1]:void 0).type){case'SETUP_EDITOR_STATE':return!0;case'TEAR_DOWN_EDITOR':return!1}return t}function R(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:u.EDITOR_SETTINGS_DEFAULTS,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'UPDATE_EDITOR_SETTINGS':return S({},t,{},n.settings)}return t}e.reusableBlocks=y;var U=(0,o.default)((0,c.combineReducers)({postId:T,postType:v,preferences:O,saving:h,postLock:f,reusableBlocks:y,template:p,postSavingLock:A,isReady:P,editorSettings:R,postAutosavingLock:L}));e.default=U},1457,[2,18,1455,21,911,1458]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.EDITOR_SETTINGS_DEFAULTS=e.PREFERENCES_DEFAULTS=void 0;var n=t(r(d[1])),o=r(d[2]);function E(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}e.PREFERENCES_DEFAULTS={insertUsage:{},isPublishSidebarEnabled:!0};var c=(function(t){for(var o=1;o0&&void 0!==arguments[0])||arguments[0]}},e.autosave=s;var n=t(r(d[1])),u=t(r(d[2])),c=r(d[3]);Object.keys(c).forEach(function(t){"default"!==t&&"__esModule"!==t&&(Object.prototype.hasOwnProperty.call(o,t)||Object.defineProperty(e,t,{enumerable:!0,get:function(){return c[t]}}))});var l=n.default.mark(s);function s(){return n.default.wrap(function(t){for(;;)switch(t.prev=t.next){case 0:u.default.editorDidAutosave();case 1:case"end":return t.stop()}},l)}},1462,[2,252,821,1463]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.setupEditor=w,e.__experimentalTearDownEditor=function(){return{type:'TEAR_DOWN_EDITOR'}},e.resetPost=L,e.resetAutosave=C,e.__experimentalRequestPostUpdateStart=U,e.__experimentalRequestPostUpdateFinish=I,e.updatePost=D,e.setupEditorState=K,e.editPost=N,e.__experimentalOptimisticUpdatePost=function(t){return T({},D(t),{optimist:{id:v.POST_UPDATE_TRANSACTION_ID}})},e.savePost=Y,e.refreshPost=F,e.trashPost=V,e.autosave=j,e.__experimentalLocalAutosave=M,e.redo=G,e.undo=H,e.createUndoLevel=function(){return{type:'CREATE_UNDO_LEVEL'}},e.updatePostLock=function(t){return{type:'UPDATE_POST_LOCK',lock:t}},e.__experimentalFetchReusableBlocks=function(t){return{type:'FETCH_REUSABLE_BLOCKS',id:t}},e.__experimentalReceiveReusableBlocks=function(t){return{type:'RECEIVE_REUSABLE_BLOCKS',results:t}},e.__experimentalSaveReusableBlock=function(t){return{type:'SAVE_REUSABLE_BLOCK',id:t}},e.__experimentalDeleteReusableBlock=function(t){return{type:'DELETE_REUSABLE_BLOCK',id:t}},e.__experimentalUpdateReusableBlock=function(t,n){return{type:'UPDATE_REUSABLE_BLOCK',id:t,changes:n}},e.__experimentalConvertBlockToStatic=function(t){return{type:'CONVERT_BLOCK_TO_STATIC',clientId:t}},e.__experimentalConvertBlockToReusable=function(t){return{type:'CONVERT_BLOCK_TO_REUSABLE',clientIds:(0,c.castArray)(t)}},e.enablePublishSidebar=function(){return{type:'ENABLE_PUBLISH_SIDEBAR'}},e.disablePublishSidebar=function(){return{type:'DISABLE_PUBLISH_SIDEBAR'}},e.lockPostSaving=function(t){return{type:'LOCK_POST_SAVING',lockName:t}},e.unlockPostSaving=function(t){return{type:'UNLOCK_POST_SAVING',lockName:t}},e.lockPostAutosaving=function(t){return{type:'LOCK_POST_AUTOSAVING',lockName:t}},e.unlockPostAutosaving=function(t){return{type:'UNLOCK_POST_AUTOSAVING',lockName:t}},e.resetEditorBlocks=z,e.updateEditorSettings=function(t){return{type:'UPDATE_EDITOR_SETTINGS',settings:t}},e.updateBlockListSettings=e.insertDefaultBlock=e.exitFormattedText=e.enterFormattedText=e.stopTyping=e.startTyping=e.toggleBlockMode=e.removeBlock=e.removeBlocks=e.mergeBlocks=e.synchronizeTemplate=e.setTemplateValidity=e.hideInsertionPoint=e.showInsertionPoint=e.insertBlocks=e.insertBlock=e.moveBlockToPosition=e.moveBlocksUp=e.moveBlocksDown=e.replaceBlock=e.replaceBlocks=e.toggleSelection=e.clearSelectedBlock=e.multiSelect=e.stopMultiSelect=e.startMultiSelect=e.selectBlock=e.updateBlockAttributes=e.updateBlock=e.receiveBlocks=e.resetBlocks=void 0;var n=t(r(d[1])),o=t(r(d[2])),s=t(r(d[3])),c=r(d[4]),u=t(r(d[5])),l=r(d[6]),p=r(d[7]),v=r(d[8]),f=r(d[9]),E=t(r(d[10]));function _(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function T(t){for(var n=1;n0&&void 0!==arguments[0]?arguments[0]:{}}}function I(){return{type:'REQUEST_POST_UPDATE_FINISH',options:arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}}}function D(t){return{type:'UPDATE_POST',edits:t}}function K(t){return{type:'SETUP_EDITOR_STATE',post:t}}function N(t,n){var o,c,u;return s.default.wrap(function(s){for(;;)switch(s.prev=s.next){case 0:return s.next=2,(0,l.select)(v.STORE_KEY,'getCurrentPost');case 2:return o=s.sent,c=o.id,u=o.type,s.next=7,(0,l.dispatch)('core','editEntityRecord','postType',u,c,t,n);case 7:case"end":return s.stop()}},x)}function Y(){var t,o,c,u,p,E,_,k=arguments;return s.default.wrap(function(s){for(;;)switch(s.prev=s.next){case 0:return t=k.length>0&&void 0!==k[0]?k[0]:{},s.next=3,(0,l.select)(v.STORE_KEY,'isEditedPostSaveable');case 3:if(s.sent){s.next=5;break}return s.abrupt("return");case 5:return s.next=7,(0,l.select)(v.STORE_KEY,'getEditedPostContent');case 7:if(s.t0=s.sent,o={content:s.t0},t.isAutosave){s.next=12;break}return s.next=12,(0,l.dispatch)(v.STORE_KEY,'editPost',o,{undoIgnore:!0});case 12:return s.next=14,U(t);case 14:return s.next=16,(0,l.select)(v.STORE_KEY,'getCurrentPost');case 16:return c=s.sent,s.t1=T,s.t2={id:c.id},s.next=21,(0,l.select)('core','getEntityRecordNonTransientEdits','postType',c.type,c.id);case 21:return s.t3=s.sent,s.t4={},s.t5=o,o=(0,s.t1)(s.t2,s.t3,s.t4,s.t5),s.next=27,(0,l.dispatch)('core','saveEntityRecord','postType',c.type,o,t);case 27:return s.next=29,I(t);case 29:return s.next=31,(0,l.select)('core','getLastEntitySaveError','postType',c.type,c.id);case 31:if(!(u=s.sent)){s.next=39;break}if(!(p=(0,f.getNotificationArgumentsForSaveFail)({post:c,edits:o,error:u})).length){s.next=37;break}return s.next=37,l.dispatch.apply(void 0,['core/notices','createErrorNotice'].concat((0,n.default)(p)));case 37:s.next=57;break;case 39:return s.next=41,(0,l.select)(v.STORE_KEY,'getCurrentPost');case 41:return E=s.sent,s.t6=f.getNotificationArgumentsForSaveSuccess,s.t7=c,s.t8=E,s.next=47,(0,l.select)('core','getPostType',E.type);case 47:if(s.t9=s.sent,s.t10=t,s.t11={previousPost:s.t7,post:s.t8,postType:s.t9,options:s.t10},!(_=(0,s.t6)(s.t11)).length){s.next=54;break}return s.next=54,l.dispatch.apply(void 0,['core/notices','createSuccessNotice'].concat((0,n.default)(_)));case 54:if(t.isAutosave){s.next=57;break}return s.next=57,(0,l.dispatch)('core/block-editor','__unstableMarkLastChangeAsPersistent');case 57:case"end":return s.stop()}},B)}function F(){var t,n,o,c;return s.default.wrap(function(s){for(;;)switch(s.prev=s.next){case 0:return s.next=2,(0,l.select)(v.STORE_KEY,'getCurrentPost');case 2:return t=s.sent,s.next=5,(0,l.select)(v.STORE_KEY,'getCurrentPostType');case 5:return n=s.sent,s.next=8,(0,l.select)('core','getPostType',n);case 8:return o=s.sent,s.next=11,(0,l.apiFetch)({path:"/wp/v2/"+o.rest_base+"/"+t.id+"?context=edit&_timestamp="+Date.now()});case 11:return c=s.sent,s.next=14,(0,l.dispatch)(v.STORE_KEY,'resetPost',c);case 14:case"end":return s.stop()}},y)}function V(){var t,o,c;return s.default.wrap(function(s){for(;;)switch(s.prev=s.next){case 0:return s.next=2,(0,l.select)(v.STORE_KEY,'getCurrentPostType');case 2:return t=s.sent,s.next=5,(0,l.select)('core','getPostType',t);case 5:return o=s.sent,s.next=8,(0,l.dispatch)('core/notices','removeNotice',v.TRASH_POST_NOTICE_ID);case 8:return s.prev=8,s.next=11,(0,l.select)(v.STORE_KEY,'getCurrentPost');case 11:return c=s.sent,s.next=14,(0,l.apiFetch)({path:"/wp/v2/"+o.rest_base+"/"+c.id,method:'DELETE'});case 14:return s.next=16,(0,l.dispatch)(v.STORE_KEY,'savePost');case 16:s.next=22;break;case 18:return s.prev=18,s.t0=s.catch(8),s.next=22,l.dispatch.apply(void 0,['core/notices','createErrorNotice'].concat((0,n.default)((0,f.getNotificationArgumentsForTrashFail)({error:s.t0}))));case 22:case"end":return s.stop()}},P,null,[[8,18]])}function j(t){return s.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,(0,l.dispatch)(v.STORE_KEY,'savePost',T({isAutosave:!0},t));case 2:case"end":return n.stop()}},O)}function M(){var t,n,o,c;return s.default.wrap(function(s){for(;;)switch(s.prev=s.next){case 0:return s.next=2,(0,l.select)(v.STORE_KEY,'getCurrentPost');case 2:return t=s.sent,s.next=5,(0,l.select)(v.STORE_KEY,'getEditedPostAttribute','title');case 5:return n=s.sent,s.next=8,(0,l.select)(v.STORE_KEY,'getEditedPostAttribute','content');case 8:return o=s.sent,s.next=11,(0,l.select)(v.STORE_KEY,'getEditedPostAttribute','excerpt');case 11:return c=s.sent,s.next=14,{type:'LOCAL_AUTOSAVE_SET',postId:t.id,title:n,content:o,excerpt:c};case 14:case"end":return s.stop()}},h)}function G(){return s.default.wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,(0,l.dispatch)('core','redo');case 2:case"end":return t.stop()}},b)}function H(){return s.default.wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,(0,l.dispatch)('core','undo');case 2:case"end":return t.stop()}},A)}function z(t){var n,o,c,u,p,f,_,T,k=arguments;return s.default.wrap(function(s){for(;;)switch(s.prev=s.next){case 0:if(n=k.length>1&&void 0!==k[1]?k[1]:{},o=n.__unstableShouldCreateUndoLevel,c=n.selectionStart,u=n.selectionEnd,p={blocks:t,selectionStart:c,selectionEnd:u},!1===o){s.next=19;break}return s.next=6,(0,l.select)(v.STORE_KEY,'getCurrentPost');case 6:return f=s.sent,_=f.id,T=f.type,s.next=11,(0,l.select)('core','getEditedEntityRecord','postType',T,_);case 11:if(s.t0=s.sent.blocks,s.t1=p.blocks,!(s.t0===s.t1)){s.next=18;break}return s.next=17,(0,l.dispatch)('core','__unstableCreateUndoLevel','postType',T,_);case 17:return s.abrupt("return",s.sent);case 18:p.content=function(t){var n=t.blocks,o=void 0===n?[]:n;return(0,E.default)(o)};case 19:return s.delegateYield(N(p),"t2",20);case 20:case"end":return s.stop()}},R)}var q=function(t){return s.default.mark(function n(){var o,c,p,v=arguments;return s.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:for((0,u.default)('`wp.data.dispatch( \'core/editor\' ).'+t+'`',{alternative:'`wp.data.dispatch( \'core/block-editor\' ).'+t+'`'}),o=v.length,c=new Array(o),p=0;p]*>/.test(o.message)&&(v=[v,o.message].join(' '));return[v,{id:s.SAVE_POST_NOTICE_ID}]},e.getNotificationArgumentsForTrashFail=function(u){return[u.error.message&&'unknown_error'!==u.error.code?u.error.message:(0,t.__)('Trashing failed'),{id:s.TRASH_POST_NOTICE_ID}]};var t=r(d[0]),s=r(d[1]),u=r(d[2])},1465,[347,1464,21]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1])),l=r(d[2]),o=r(d[3]),f=(0,n.default)(function(t){1===t.length&&(0,l.isUnmodifiedDefaultBlock)(t[0])&&(t=[]);var n=(0,l.serialize)(t);return 1===t.length&&t[0].name===(0,l.getFreeformContentHandlerName)()&&(n=(0,o.removep)(n)),n},{maxSize:1});e.default=f},1466,[2,353,1045,1061]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0});var t={isPostTitleSelected:!0,isEditedPostAutosaveable:!0};e.isPostTitleSelected=function(t){return t.postTitle.isSelected},e.isEditedPostAutosaveable=void 0;var o=r(d[0]),s=r(d[1]);Object.keys(s).forEach(function(o){"default"!==o&&"__esModule"!==o&&(Object.prototype.hasOwnProperty.call(t,o)||Object.defineProperty(e,o,{enumerable:!0,get:function(){return s[o]}}))});var n=(0,o.createRegistrySelector)(function(){return function(t){return!!(0,s.isEditedPostSaveable)(t)&&(!!(0,s.hasChangedContent)(t)||!!(0,s.isEditedPostDirty)(t))}});e.isEditedPostAutosaveable=n},1467,[911,1468]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.isEditedPostNew=R,e.hasChangedContent=T,e.isCleanNewPost=function(t){return!_(t)&&R(t)},e.getCurrentPostType=O,e.getCurrentPostId=w,e.getCurrentPostRevisionsCount=function(t){return(0,c.get)(M(t),['_links','version-history',0,'count'],0)},e.getCurrentPostLastRevisionId=function(t){return(0,c.get)(M(t),['_links','predecessor-version',0,'id'],null)},e.getCurrentPostAttribute=D,e.getEditedPostAttribute=x,e.getEditedPostVisibility=function(t){if('private'===x(t,'status'))return'private';if(x(t,'password'))return'password';return'public'},e.isCurrentPostPending=function(t){return'pending'===M(t).status},e.isCurrentPostPublished=U,e.isCurrentPostScheduled=function(t){return'future'===M(t).status&&!U(t)},e.isEditedPostPublishable=function(t){var n=M(t);return _(t)||-1===['publish','private','future'].indexOf(n.status)},e.isEditedPostSaveable=V,e.isEditedPostEmpty=G,e.isEditedPostBeingScheduled=function(t){var n=x(t,'date'),o=new Date(Number((0,u.getDate)(n))-p.ONE_MINUTE_IN_MS);return(0,u.isInTheFuture)(o)},e.isEditedPostDateFloating=function(t){var n=x(t,'date'),o=x(t,'modified'),c=x(t,'status');if('draft'===c||'auto-draft'===c||'pending'===c)return n===o;return!1},e.isAutosavingPost=function(t){if(!z(t))return!1;return!!(0,c.get)(t.saving,['options','isAutosave'])},e.isPreviewingPost=function(t){if(!z(t))return!1;return!!t.saving.options.isPreview},e.getEditedPostPreviewLink=function(t){if(t.saving.pending||z(t))return;var n=j(t,'preview_link');n||(n=x(t,'link'))&&(n=(0,v.addQueryArgs)(n,{preview:!0}));var o=x(t,'featured_media');if(n&&o)return(0,v.addQueryArgs)(n,{_thumbnail_id:o});return n},e.getSuggestedPostFormat=function(t){var n,o=re(t);1===o.length&&(n=o[0].name);2===o.length&&'core/paragraph'===o[1].name&&(n=o[0].name);switch(n){case'core/image':return'image';case'core/quote':case'core/pullquote':return'quote';case'core/gallery':return'gallery';case'core/video':case'core-embed/youtube':case'core-embed/vimeo':return'video';case'core/audio':case'core-embed/spotify':case'core-embed/soundcloud':return'audio'}return null},e.getBlocksForSerialization=function(t){(0,f.default)('`core/editor` getBlocksForSerialization selector',{plugin:'Gutenberg',alternative:'getEditorBlocks',hint:'Blocks serialization pre-processing occurs at save time'});var n=t.editor.present.blocks.value;if(1===n.length&&(0,l.isUnmodifiedDefaultBlock)(n[0]))return[];return n},e.__experimentalIsSavingReusableBlock=function(t,n){return t.reusableBlocks.isSaving[n]||!1},e.__experimentalIsFetchingReusableBlock=function(t,n){return!!t.reusableBlocks.isFetching[n]},e.getStateBeforeOptimisticTransaction=Z,e.isPublishingPost=function(t){if(!z(t))return!1;if(!U(t))return!1;var n=Z(t,p.POST_UPDATE_TRANSACTION_ID);return!!n&&!U(null,n.currentPost)},e.isPermalinkEditable=$,e.getPermalink=function(t){var n=ee(t);if(!n)return null;var o=n.prefix,c=n.postName,s=n.suffix;if($(t))return o+c+s;return o},e.getPermalinkParts=ee,e.inSomeHistory=function(t,n){var o=t.optimist;if(!o)return!1;return o.some(function(t){var o=t.beforeState;return o&&n(o)})},e.isPostLocked=function(t){return t.postLock.isLocked},e.isPostSavingLocked=function(t){return Object.keys(t.postSavingLock).length>0},e.isPostAutosavingLocked=te,e.isPostLockTakeover=function(t){return t.postLock.isTakeover},e.getPostLockUser=function(t){return t.postLock.user},e.getActivePostLock=function(t){return t.postLock.activePostLock},e.canUserUseUnfilteredHTML=function(t){return(0,c.has)(M(t),['_links','wp:action-unfiltered-html'])},e.isPublishSidebarEnabled=function(t){if(t.preferences.hasOwnProperty('isPublishSidebarEnabled'))return t.preferences.isPublishSidebarEnabled;return B.PREFERENCES_DEFAULTS.isPublishSidebarEnabled},e.getEditorBlocks=re,e.getEditorSelectionStart=function(t){return x(t,'selectionStart')},e.getEditorSelectionEnd=function(t){return x(t,'selectionEnd')},e.__unstableIsEditorReady=function(t){return t.isReady},e.getEditorSettings=ne,e.getBlockListSettings=e.hasInserterItems=e.getInserterItems=e.canInsertBlockType=e.getTemplateLock=e.getTemplate=e.isValidTemplate=e.isBlockInsertionPointVisible=e.getBlockInsertionPoint=e.isCaretWithinFormattedText=e.isTyping=e.getBlockMode=e.isSelectionEnabled=e.isMultiSelecting=e.hasMultiSelection=e.isBlockWithinSelection=e.hasSelectedInnerBlock=e.isBlockSelected=e.getBlockIndex=e.getBlockOrder=e.getMultiSelectedBlocksEndClientId=e.getMultiSelectedBlocksStartClientId=e.isAncestorMultiSelected=e.isBlockMultiSelected=e.isFirstMultiSelectedBlock=e.getLastMultiSelectedBlockClientId=e.getFirstMultiSelectedBlockClientId=e.getMultiSelectedBlocks=e.getMultiSelectedBlockClientIds=e.getSelectedBlocksInitialCaretPosition=e.getNextBlockClientId=e.getPreviousBlockClientId=e.getAdjacentBlockClientId=e.getBlockHierarchyRootClientId=e.getBlockRootClientId=e.getSelectedBlock=e.getSelectedBlockClientId=e.hasSelectedBlock=e.getSelectedBlockCount=e.getBlockSelectionEnd=e.getBlockSelectionStart=e.getBlockCount=e.getBlocksByClientId=e.getGlobalBlockCount=e.getClientIdsWithDescendants=e.getClientIdsOfDescendants=e.__unstableGetBlockWithoutInnerBlocks=e.getBlocks=e.getBlock=e.getBlockAttributes=e.isBlockValid=e.getBlockName=e.__experimentalGetReusableBlocks=e.__experimentalGetReusableBlock=e.getEditedPostContent=e.didPostSaveRequestFail=e.didPostSaveRequestSucceed=e.isSavingPost=e.hasAutosave=e.getAutosave=e.isEditedPostAutosaveable=e.getAutosaveAttribute=e.getReferenceByDistinctEdits=e.getPostEdits=e.getCurrentPost=e.hasNonPostEntityChanges=e.isEditedPostDirty=e.hasEditorRedo=e.hasEditorUndo=void 0;var n=t(r(d[1])),o=t(r(d[2])),c=r(d[3]),s=t(r(d[4])),l=r(d[5]),u=r(d[6]),v=r(d[7]),k=r(d[8]),f=t(r(d[9])),B=r(d[10]),p=r(d[11]),S=r(d[12]),P=t(r(d[13]));function y(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function I(t){for(var n=1;n1||1===c.length&&!o.postType)return!0;if(!o.postType)return!1;var s=M(n),l=s.type,u=s.id,v=Object.keys(o.postType);if(v.length>1||1===v.length&&!o.postType[l])return!0;var k=Object.keys(o.postType[l]);return k.length>1||1===k.length&&!o.postType[l][u]}});e.hasNonPostEntityChanges=A;var M=(0,k.createRegistrySelector)(function(t){return function(n){var o=w(n),c=O(n),s=t('core').getRawEntityRecord('postType',c,o);return s||b}});function O(t){return t.postType}function w(t){return t.postId}e.getCurrentPost=M;var L=(0,k.createRegistrySelector)(function(t){return function(n){var o=O(n),c=w(n);return t('core').getEntityRecordEdits('postType',o,c)||b}});e.getPostEdits=L;var N=(0,k.createRegistrySelector)(function(t){return function(){return(0,f.default)('`wp.data.select( \'core/editor\' ).getReferenceByDistinctEdits`',{alternative:'`wp.data.select( \'core\' ).getReferenceByDistinctEdits`'}),t('core').getReferenceByDistinctEdits()}});function D(t,n){switch(n){case'type':return O(t);case'id':return w(t);default:var o=M(t);if(!o.hasOwnProperty(n))break;return(0,S.getPostRawValue)(o[n])}}e.getReferenceByDistinctEdits=N;var F=function(t,n){var o=L(t);return o.hasOwnProperty(n)?I({},D(t,n),{},o[n]):D(t,n)};function x(t,n){switch(n){case'content':return X(t)}var o=L(t);return o.hasOwnProperty(n)?p.EDIT_MERGE_PROPERTIES.has(n)?F(t,n):o[n]:D(t,n)}var j=(0,k.createRegistrySelector)(function(t){return function(n,o){if((0,c.includes)(p.AUTOSAVE_PROPERTIES,o)||'preview_link'===o){var s=O(n),l=w(n),u=(0,c.get)(t('core').getCurrentUser(),['id']),v=t('core').getAutosave(s,l,u);return v?(0,S.getPostRawValue)(v[o]):void 0}}});function U(t,n){var o=n||M(t);return-1!==['publish','private'].indexOf(o.status)||'future'===o.status&&!(0,u.isInTheFuture)(new Date(Number((0,u.getDate)(o.date))-p.ONE_MINUTE_IN_MS))}function V(t){return!z(t)&&(!!x(t,'title')||!!x(t,'excerpt')||!G(t))}function G(t){var n=re(t);if(n.length){if(n.length>1)return!1;var o=n[0].name;if(o!==(0,l.getDefaultBlockName)()&&o!==(0,l.getFreeformContentHandlerName)())return!1}return!X(t)}e.getAutosaveAttribute=j;var W=(0,k.createRegistrySelector)(function(t){return function(n){if(!V(n))return!1;if(te(n))return!1;var o=O(n),s=w(n),l=t('core').hasFetchedAutosaves(o,s),u=(0,c.get)(t('core').getCurrentUser(),['id']),v=t('core').getAutosave(o,s,u);return!!l&&(!v||(!!T(n)||['title','excerpt'].some(function(t){return(0,S.getPostRawValue)(v[t])!==x(n,t)})))}});e.isEditedPostAutosaveable=W;var q=(0,k.createRegistrySelector)(function(t){return function(n){(0,f.default)('`wp.data.select( \'core/editor\' ).getAutosave()`',{alternative:'`wp.data.select( \'core\' ).getAutosave( postType, postId, userId )`',plugin:'Gutenberg'});var o=O(n),s=w(n),l=(0,c.get)(t('core').getCurrentUser(),['id']),u=t('core').getAutosave(o,s,l);return(0,c.mapValues)((0,c.pick)(u,p.AUTOSAVE_PROPERTIES),S.getPostRawValue)}});e.getAutosave=q;var H=(0,k.createRegistrySelector)(function(t){return function(n){(0,f.default)('`wp.data.select( \'core/editor\' ).hasAutosave()`',{alternative:'`!! wp.data.select( \'core\' ).getAutosave( postType, postId, userId )`',plugin:'Gutenberg'});var o=O(n),s=w(n),l=(0,c.get)(t('core').getCurrentUser(),['id']);return!!t('core').getAutosave(o,s,l)}});e.hasAutosave=H;var z=(0,k.createRegistrySelector)(function(t){return function(n){var o=O(n),c=w(n);return t('core').isSavingEntityRecord('postType',o,c)}});e.isSavingPost=z;var K=(0,k.createRegistrySelector)(function(t){return function(n){var o=O(n),c=w(n);return!t('core').getLastEntitySaveError('postType',o,c)}});e.didPostSaveRequestSucceed=K;var Q=(0,k.createRegistrySelector)(function(t){return function(n){var o=O(n),c=w(n);return!!t('core').getLastEntitySaveError('postType',o,c)}});e.didPostSaveRequestFail=Q;var X=(0,k.createRegistrySelector)(function(t){return function(n){var o=w(n),c=O(n),s=t('core').getEditedEntityRecord('postType',c,o);if(s){if('function'==typeof s.content)return s.content(s);if(s.blocks)return(0,P.default)(s.blocks);if(s.content)return s.content}return''}});e.getEditedPostContent=X;var J=(0,s.default)(function(t,n){var o=t.reusableBlocks.data[n];if(!o)return null;var c=isNaN(parseInt(n));return I({},o,{id:c?n:+n,isTemporary:c})},function(t,n){return[t.reusableBlocks.data[n]]});e.__experimentalGetReusableBlock=J;var Y=(0,s.default)(function(t){return(0,c.map)(t.reusableBlocks.data,function(n,o){return J(t,o)})},function(t){return[t.reusableBlocks.data]});function Z(t,n){var o=(0,c.find)(t.optimist,function(t){return t.beforeState&&(0,c.get)(t.action,['optimist','id'])===n});return o?o.beforeState:null}function $(t){var n=x(t,'permalink_template');return p.PERMALINK_POSTNAME_REGEX.test(n)}function ee(t){var o=x(t,'permalink_template');if(!o)return null;var c=x(t,'slug')||x(t,'generated_slug'),s=o.split(p.PERMALINK_POSTNAME_REGEX),l=(0,n.default)(s,2);return{prefix:l[0],postName:c,suffix:l[1]}}function te(t){return Object.keys(t.postAutosavingLock).length>0}function re(t){return x(t,'blocks')||E}function ne(t){return t.editorSettings}function ie(t){return(0,k.createRegistrySelector)(function(n){return function(o){var c;(0,f.default)('`wp.data.select( \'core/editor\' ).'+t+'`',{alternative:'`wp.data.select( \'core/block-editor\' ).'+t+'`'});for(var s=arguments.length,l=new Array(s>1?s-1:0),u=1;u1&&void 0!==arguments[1]?arguments[1]:new Date,s=u.timezone.offset*f,l=(0,n.default)(o).utcOffset(s,!0);return c(t,l)},e.gmdate=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:new Date,u=(0,n.default)(o).utc();return c(t,u)},e.dateI18n=function(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:new Date,s=arguments.length>2&&void 0!==arguments[2]&&arguments[2]?0:u.timezone.offset*f,l=(0,n.default)(o).utcOffset(s,!0);return l.locale(u.l10n.locale),c(t,l)},e.isInTheFuture=function(t){var u=n.default.tz(o);return n.default.tz(t,o).isAfter(u)},e.getDate=function(t){if(!t)return n.default.tz(o).toDate();return n.default.tz(t,o).toDate()};var n=t(r(d[1]));r(d[2]),r(d[3]);var o='WP',u={l10n:{locale:'en',months:['January','February','March','April','May','June','July','August','September','October','November','December'],monthsShort:['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'],weekdays:['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],weekdaysShort:['Sun','Mon','Tue','Wed','Thu','Fri','Sat'],meridiem:{am:'am',pm:'pm',AM:'AM',PM:'PM'},relative:{future:'%s from now',past:'%s ago',s:'a few seconds',ss:'%d seconds',m:'a minute',mm:'%d minutes',h:'an hour',hh:'%d hours',d:'a day',dd:'%d days',M:'a month',MM:'%d months',y:'a year',yy:'%d years'}},formats:{time:'g: i a',date:'F j, Y',datetime:'F j, Y g: i a',datetimeAbbreviated:'M j, Y g: i a'},timezone:{offset:'0',string:''}};function s(){n.default.tz.add(n.default.tz.pack({name:o,abbrs:[o],untils:[null],offsets:[60*-u.timezone.offset||0]}))}var f=60,l={d:'DD',D:'ddd',j:'D',l:'dddd',N:'E',S:function(t){var n=t.format('D');return t.format('Do').replace(n,'')},w:'d',z:function(t){return''+parseInt(t.format('DDD'),10)-1},W:'W',F:'MMMM',m:'MM',M:'MMM',n:'M',t:function(t){return t.daysInMonth()},L:function(t){return t.isLeapYear()?'1':'0'},o:'GGGG',Y:'YYYY',y:'YY',a:'a',A:'A',B:function(t){var o=(0,n.default)(t).utcOffset(60),u=parseInt(o.format('s'),10),s=parseInt(o.format('m'),10),f=parseInt(o.format('H'),10);return parseInt((u+60*s+3600*f)/86.4,10)},g:'h',G:'H',h:'hh',H:'HH',i:'mm',s:'ss',u:'SSSSSS',v:'SSS',e:'zz',I:function(t){return t.isDST()?'1':'0'},O:'ZZ',P:'Z',T:'z',Z:function(t){var n=t.format('Z'),o='-'===n[0]?-1:1,u=n.substring(1).split(':');return o*(u[0]*f+u[1])*60},c:'YYYY-MM-DDTHH:mm:ssZ',r:'ddd, D MMM YYYY HH:mm:ss ZZ',U:'X'};function c(t){var o,u,s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:new Date,f=[],c=(0,n.default)(s);for(o=0;o>>0,o=0;o0)for(s=0;s=0?s?'+':'':'-')+Math.pow(10,Math.max(0,u)).toString().substr(1)+o}var $=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,q=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,J={},B={};function Q(t,n,s,o){var u=o;'string'==typeof o&&(u=function(){return this[o]()}),t&&(B[t]=u),n&&(B[n[0]]=function(){return z(u.apply(this,arguments),n[1],n[2])}),s&&(B[s]=function(){return this.localeData().ordinal(u.apply(this,arguments),t)})}function X(t){var n,s,o,u=t.match($);for(n=0,s=u.length;n=0&&q.test(t);)t=t.replace(q,o),q.lastIndex=0,s-=1;return t}var te=/\d/,ne=/\d\d/,se=/\d{3}/,ie=/\d{4}/,re=/[+-]?\d{6}/,ae=/\d\d?/,oe=/\d\d\d\d?/,ue=/\d\d\d\d\d\d?/,he=/\d{1,3}/,le=/\d{1,4}/,de=/[+-]?\d{1,6}/,ce=/\d+/,fe=/[+-]?\d+/,me=/Z|[+-]\d\d:?\d\d/gi,_e=/Z|[+-]\d\d(?::?\d\d)?/gi,ye=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,ge={};function ve(t,n,s){ge[t]=F(n)?n:function(t,o){return t&&s?s:n}}function pe(t,n){return y(ge,t)?ge[t](n._strict,n._locale):new RegExp(we(t.replace('\\','').replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,n,s,o,u){return n||s||o||u})))}function we(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,'\\$&')}var Me={};function ke(t,n){var s,o=n;for('string'==typeof t&&(t=[t]),c(n)&&(o=function(t,s){s[n]=x(t)}),s=0;s68?1900:2e3)};var Fe,Le=Ne('FullYear',!0);function Ne(t,n){return function(o){return null!=o?(Ve(this,t,o),s.updateOffset(this,n),this):Ge(this,t)}}function Ge(t,n){return t.isValid()?t._d['get'+(t._isUTC?'UTC':'')+n]():NaN}function Ve(t,n,s){t.isValid()&&!isNaN(s)&&('FullYear'===n&&Ue(t.year())&&1===t.month()&&29===t.date()?t._d['set'+(t._isUTC?'UTC':'')+n](s,t.month(),Ee(s,t.month())):t._d['set'+(t._isUTC?'UTC':'')+n](s))}function Ee(t,n){if(isNaN(t)||isNaN(n))return NaN;var s,o=(n%(s=12)+s)%s;return t+=(n-o)/12,1===o?Ue(t)?29:28:31-o%7%2}Fe=Array.prototype.indexOf?Array.prototype.indexOf:function(t){var n;for(n=0;n=0?(c=new Date(t+400,n,s,o,u,h,l),isFinite(c.getFullYear())&&c.setFullYear(t)):c=new Date(t,n,s,o,u,h,l),c}function Xe(t){var n;if(t<100&&t>=0){var s=Array.prototype.slice.call(arguments);s[0]=t+400,n=new Date(Date.UTC.apply(null,s)),isFinite(n.getUTCFullYear())&&n.setUTCFullYear(t)}else n=new Date(Date.UTC.apply(null,arguments));return n}function Ke(t,n,s){var o=7+n-s;return-((7+Xe(t,0,o).getUTCDay()-n)%7)+o-1}function et(t,n,s,o,u){var h,l,c=1+7*(n-1)+(7+s-o)%7+Ke(t,o,u);return c<=0?l=Re(h=t-1)+c:c>Re(t)?(h=t+1,l=c-Re(t)):(h=t,l=c),{year:h,dayOfYear:l}}function tt(t,n,s){var o,u,h=Ke(t.year(),n,s),l=Math.floor((t.dayOfYear()-h-1)/7)+1;return l<1?o=l+nt(u=t.year()-1,n,s):l>nt(t.year(),n,s)?(o=l-nt(t.year(),n,s),u=t.year()+1):(u=t.year(),o=l),{week:o,year:u}}function nt(t,n,s){var o=Ke(t,n,s),u=Ke(t+1,n,s);return(Re(t)-o+u)/7}Q('w',['ww',2],'wo','week'),Q('W',['WW',2],'Wo','isoWeek'),V('week','w'),V('isoWeek','W'),j('week',5),j('isoWeek',5),ve('w',ae),ve('ww',ae,ne),ve('W',ae),ve('WW',ae,ne),Se(['w','ww','W','WW'],function(t,n,s,o){n[o.substr(0,1)]=x(t)});function st(t,n){return'string'!=typeof t?t:isNaN(t)?'number'==typeof(t=n.weekdaysParse(t))?t:null:parseInt(t,10)}function it(t,n){return'string'==typeof t?n.weekdaysParse(t)%7||7:isNaN(t)?null:t}function rt(t,n){return t.slice(n,7).concat(t.slice(0,n))}Q('d',0,'do','day'),Q('dd',0,0,function(t){return this.localeData().weekdaysMin(this,t)}),Q('ddd',0,0,function(t){return this.localeData().weekdaysShort(this,t)}),Q('dddd',0,0,function(t){return this.localeData().weekdays(this,t)}),Q('e',0,0,'weekday'),Q('E',0,0,'isoWeekday'),V('day','d'),V('weekday','e'),V('isoWeekday','E'),j('day',11),j('weekday',11),j('isoWeekday',11),ve('d',ae),ve('e',ae),ve('E',ae),ve('dd',function(t,n){return n.weekdaysMinRegex(t)}),ve('ddd',function(t,n){return n.weekdaysShortRegex(t)}),ve('dddd',function(t,n){return n.weekdaysRegex(t)}),Se(['dd','ddd','dddd'],function(t,n,s,o){var u=s._locale.weekdaysParse(t,o,s._strict);null!=u?n.d=u:w(s).invalidWeekday=t}),Se(['d','e','E'],function(t,n,s,o){n[o]=x(t)});var at='Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_');var ot='Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_');var ut='Su_Mo_Tu_We_Th_Fr_Sa'.split('_');function ht(t,n,s){var o,u,h,l=t.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],o=0;o<7;++o)h=p([2e3,1]).day(o),this._minWeekdaysParse[o]=this.weekdaysMin(h,'').toLocaleLowerCase(),this._shortWeekdaysParse[o]=this.weekdaysShort(h,'').toLocaleLowerCase(),this._weekdaysParse[o]=this.weekdays(h,'').toLocaleLowerCase();return s?'dddd'===n?-1!==(u=Fe.call(this._weekdaysParse,l))?u:null:'ddd'===n?-1!==(u=Fe.call(this._shortWeekdaysParse,l))?u:null:-1!==(u=Fe.call(this._minWeekdaysParse,l))?u:null:'dddd'===n?-1!==(u=Fe.call(this._weekdaysParse,l))?u:-1!==(u=Fe.call(this._shortWeekdaysParse,l))?u:-1!==(u=Fe.call(this._minWeekdaysParse,l))?u:null:'ddd'===n?-1!==(u=Fe.call(this._shortWeekdaysParse,l))?u:-1!==(u=Fe.call(this._weekdaysParse,l))?u:-1!==(u=Fe.call(this._minWeekdaysParse,l))?u:null:-1!==(u=Fe.call(this._minWeekdaysParse,l))?u:-1!==(u=Fe.call(this._weekdaysParse,l))?u:-1!==(u=Fe.call(this._shortWeekdaysParse,l))?u:null}var lt=ye;var dt=ye;var ct=ye;function ft(){function t(t,n){return n.length-t.length}var n,s,o,u,h,l=[],c=[],f=[],_=[];for(n=0;n<7;n++)s=p([2e3,1]).day(n),o=this.weekdaysMin(s,''),u=this.weekdaysShort(s,''),h=this.weekdays(s,''),l.push(o),c.push(u),f.push(h),_.push(o),_.push(u),_.push(h);for(l.sort(t),c.sort(t),f.sort(t),_.sort(t),n=0;n<7;n++)c[n]=we(c[n]),f[n]=we(f[n]),_[n]=we(_[n]);this._weekdaysRegex=new RegExp('^('+_.join('|')+')','i'),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp('^('+f.join('|')+')','i'),this._weekdaysShortStrictRegex=new RegExp('^('+c.join('|')+')','i'),this._weekdaysMinStrictRegex=new RegExp('^('+l.join('|')+')','i')}function mt(){return this.hours()%12||12}function _t(t,n){Q(t,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),n)})}function yt(t,n){return n._meridiemParse}Q('H',['HH',2],0,'hour'),Q('h',['hh',2],0,mt),Q('k',['kk',2],0,function(){return this.hours()||24}),Q('hmm',0,0,function(){return''+mt.apply(this)+z(this.minutes(),2)}),Q('hmmss',0,0,function(){return''+mt.apply(this)+z(this.minutes(),2)+z(this.seconds(),2)}),Q('Hmm',0,0,function(){return''+this.hours()+z(this.minutes(),2)}),Q('Hmmss',0,0,function(){return''+this.hours()+z(this.minutes(),2)+z(this.seconds(),2)}),_t('a',!0),_t('A',!1),V('hour','h'),j('hour',13),ve('a',yt),ve('A',yt),ve('H',ae),ve('h',ae),ve('k',ae),ve('HH',ae,ne),ve('hh',ae,ne),ve('kk',ae,ne),ve('hmm',oe),ve('hmmss',ue),ve('Hmm',oe),ve('Hmmss',ue),ke(['H','HH'],be),ke(['k','kk'],function(t,n,s){var o=x(t);n[be]=24===o?0:o}),ke(['a','A'],function(t,n,s){s._isPm=s._locale.isPM(t),s._meridiem=t}),ke(['h','hh'],function(t,n,s){n[be]=x(t),w(s).bigHour=!0}),ke('hmm',function(t,n,s){var o=t.length-2;n[be]=x(t.substr(0,o)),n[xe]=x(t.substr(o)),w(s).bigHour=!0}),ke('hmmss',function(t,n,s){var o=t.length-4,u=t.length-2;n[be]=x(t.substr(0,o)),n[xe]=x(t.substr(o,2)),n[Pe]=x(t.substr(u)),w(s).bigHour=!0}),ke('Hmm',function(t,n,s){var o=t.length-2;n[be]=x(t.substr(0,o)),n[xe]=x(t.substr(o))}),ke('Hmmss',function(t,n,s){var o=t.length-4,u=t.length-2;n[be]=x(t.substr(0,o)),n[xe]=x(t.substr(o,2)),n[Pe]=x(t.substr(u))});var gt,vt=Ne('Hours',!0),pt={calendar:{sameDay:'[Today at] LT',nextDay:'[Tomorrow at] LT',nextWeek:'dddd [at] LT',lastDay:'[Yesterday at] LT',lastWeek:'[Last] dddd [at] LT',sameElse:'L'},longDateFormat:{LTS:'h:mm:ss A',LT:'h:mm A',L:'MM/DD/YYYY',LL:'MMMM D, YYYY',LLL:'MMMM D, YYYY h:mm A',LLLL:'dddd, MMMM D, YYYY h:mm A'},invalidDate:'Invalid date',ordinal:'%d',dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:'in %s',past:'%s ago',s:'a few seconds',ss:'%d seconds',m:'a minute',mm:'%d minutes',h:'an hour',hh:'%d hours',d:'a day',dd:'%d days',M:'a month',MM:'%d months',y:'a year',yy:'%d years'},months:Ae,monthsShort:je,week:{dow:0,doy:6},weekdays:at,weekdaysMin:ut,weekdaysShort:ot,meridiemParse:/[ap]\.?m?\.?/i},wt={},Mt={};function kt(t){return t?t.toLowerCase().replace('_','-'):t}function St(t){for(var n,s,o,u,h=0;h0;){if(o=Dt(u.slice(0,n).join('-')))return o;if(s&&s.length>=n&&P(u,s,!0)>=n-1)break;n--}h++}return gt}function Dt(t){var n=null;if(!wt[t]&&void 0!==m&&m&&m.exports)try{n=gt._abbr,r('./locale/'+t),Yt(n)}catch(t){}return wt[t]}function Yt(t,n){var s;return t&&((s=l(n)?Tt(t):Ot(t,n))?gt=s:'undefined'!=typeof console&&console.warn&&console.warn('Locale '+t+' not found. Did you forget to load it?')),gt._abbr}function Ot(t,n){if(null!==n){var s,o=pt;if(n.abbr=t,null!=wt[t])U('defineLocaleOverride',"use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),o=wt[t]._config;else if(null!=n.parentLocale)if(null!=wt[n.parentLocale])o=wt[n.parentLocale]._config;else{if(null==(s=Dt(n.parentLocale)))return Mt[n.parentLocale]||(Mt[n.parentLocale]=[]),Mt[n.parentLocale].push({name:t,config:n}),null;o=s._config}return wt[t]=new N(L(o,n)),Mt[t]&&Mt[t].forEach(function(t){Ot(t.name,t.config)}),Yt(t),wt[t]}return delete wt[t],null}function Tt(t){var n;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return gt;if(!o(t)){if(n=Dt(t))return n;t=[t]}return St(t)}function bt(t){var n,s=t._a;return s&&-2===w(t).overflow&&(n=s[Oe]<0||s[Oe]>11?Oe:s[Te]<1||s[Te]>Ee(s[Ye],s[Oe])?Te:s[be]<0||s[be]>24||24===s[be]&&(0!==s[xe]||0!==s[Pe]||0!==s[We])?be:s[xe]<0||s[xe]>59?xe:s[Pe]<0||s[Pe]>59?Pe:s[We]<0||s[We]>999?We:-1,w(t)._overflowDayOfYear&&(nTe)&&(n=Te),w(t)._overflowWeeks&&-1===n&&(n=Ce),w(t)._overflowWeekday&&-1===n&&(n=He),w(t).overflow=n),t}function xt(t,n,s){return null!=t?t:null!=n?n:s}function Pt(t){var n=new Date(s.now());return t._useUTC?[n.getUTCFullYear(),n.getUTCMonth(),n.getUTCDate()]:[n.getFullYear(),n.getMonth(),n.getDate()]}function Wt(t){var n,s,o,u,h,l=[];if(!t._d){for(o=Pt(t),t._w&&null==t._a[Te]&&null==t._a[Oe]&&Ct(t),null!=t._dayOfYear&&(h=xt(t._a[Ye],o[Ye]),(t._dayOfYear>Re(h)||0===t._dayOfYear)&&(w(t)._overflowDayOfYear=!0),s=Xe(h,0,t._dayOfYear),t._a[Oe]=s.getUTCMonth(),t._a[Te]=s.getUTCDate()),n=0;n<3&&null==t._a[n];++n)t._a[n]=l[n]=o[n];for(;n<7;n++)t._a[n]=l[n]=null==t._a[n]?2===n?1:0:t._a[n];24===t._a[be]&&0===t._a[xe]&&0===t._a[Pe]&&0===t._a[We]&&(t._nextDay=!0,t._a[be]=0),t._d=(t._useUTC?Xe:Qe).apply(null,l),u=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[be]=24),t._w&&void 0!==t._w.d&&t._w.d!==u&&(w(t).weekdayMismatch=!0)}}function Ct(t){var n,s,o,u,h,l,c,f;if(null!=(n=t._w).GG||null!=n.W||null!=n.E)h=1,l=4,s=xt(n.GG,t._a[Ye],tt(en(),1,4).year),o=xt(n.W,1),((u=xt(n.E,1))<1||u>7)&&(f=!0);else{h=t._locale._week.dow,l=t._locale._week.doy;var _=tt(en(),h,l);s=xt(n.gg,t._a[Ye],_.year),o=xt(n.w,_.week),null!=n.d?((u=n.d)<0||u>6)&&(f=!0):null!=n.e?(u=n.e+h,(n.e<0||n.e>6)&&(f=!0)):u=h}o<1||o>nt(s,h,l)?w(t)._overflowWeeks=!0:null!=f?w(t)._overflowWeekday=!0:(c=et(s,o,u,h,l),t._a[Ye]=c.year,t._dayOfYear=c.dayOfYear)}var Ht=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Rt=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Ut=/Z|[+-]\d\d(?::?\d\d)?/,Ft=[['YYYYYY-MM-DD',/[+-]\d{6}-\d\d-\d\d/],['YYYY-MM-DD',/\d{4}-\d\d-\d\d/],['GGGG-[W]WW-E',/\d{4}-W\d\d-\d/],['GGGG-[W]WW',/\d{4}-W\d\d/,!1],['YYYY-DDD',/\d{4}-\d{3}/],['YYYY-MM',/\d{4}-\d\d/,!1],['YYYYYYMMDD',/[+-]\d{10}/],['YYYYMMDD',/\d{8}/],['GGGG[W]WWE',/\d{4}W\d{3}/],['GGGG[W]WW',/\d{4}W\d{2}/,!1],['YYYYDDD',/\d{7}/]],Lt=[['HH:mm:ss.SSSS',/\d\d:\d\d:\d\d\.\d+/],['HH:mm:ss,SSSS',/\d\d:\d\d:\d\d,\d+/],['HH:mm:ss',/\d\d:\d\d:\d\d/],['HH:mm',/\d\d:\d\d/],['HHmmss.SSSS',/\d\d\d\d\d\d\.\d+/],['HHmmss,SSSS',/\d\d\d\d\d\d,\d+/],['HHmmss',/\d\d\d\d\d\d/],['HHmm',/\d\d\d\d/],['HH',/\d\d/]],Nt=/^\/?Date\((\-?\d+)/i;function Gt(t){var n,s,o,u,h,l,c=t._i,f=Ht.exec(c)||Rt.exec(c);if(f){for(w(t).iso=!0,n=0,s=Ft.length;n0&&w(t).unusedInput.push(l),c=c.slice(c.indexOf(o)+o.length),_+=o.length),B[h]?(o?w(t).empty=!1:w(t).unusedTokens.push(h),De(h,o,t)):t._strict&&!o&&w(t).unusedTokens.push(h);w(t).charsLeftOver=f-_,c.length>0&&w(t).unusedInput.push(c),t._a[be]<=12&&!0===w(t).bigHour&&t._a[be]>0&&(w(t).bigHour=void 0),w(t).parsedDateParts=t._a.slice(0),w(t).meridiem=t._meridiem,t._a[be]=qt(t._locale,t._a[be],t._meridiem),Wt(t),bt(t)}else Zt(t);else Gt(t)}function qt(t,n,s){var o;return null==s?n:null!=t.meridiemHour?t.meridiemHour(n,s):null!=t.isPM?((o=t.isPM(s))&&n<12&&(n+=12),o||12!==n||(n=0),n):n}function Jt(t){var n,s,o,u,h;if(0===t._f.length)return w(t).invalidFormat=!0,void(t._d=new Date(NaN));for(u=0;uthis?this:t:k()});function sn(t,n){var s,u;if(1===n.length&&o(n[0])&&(n=n[0]),!n.length)return en();for(s=n[0],u=1;u=0?new Date(t+400,n,s)-Hn:new Date(t,n,s).valueOf()}function Fn(t,n,s){return t<100&&t>=0?Date.UTC(t+400,n,s)-Hn:Date.UTC(t,n,s)}function Ln(t,n){Q(0,[t,t.length],0,n)}function Nn(t,n,s,o,u){var h;return null==t?tt(this,o,u).year:(n>(h=nt(t,o,u))&&(n=h),Gn.call(this,t,n,s,o,u))}function Gn(t,n,s,o,u){var h=et(t,n,s,o,u),l=Xe(h.year,0,h.dayOfYear);return this.year(l.getUTCFullYear()),this.month(l.getUTCMonth()),this.date(l.getUTCDate()),this}Q(0,['gg',2],0,function(){return this.weekYear()%100}),Q(0,['GG',2],0,function(){return this.isoWeekYear()%100}),Ln('gggg','weekYear'),Ln('ggggg','weekYear'),Ln('GGGG','isoWeekYear'),Ln('GGGGG','isoWeekYear'),V('weekYear','gg'),V('isoWeekYear','GG'),j('weekYear',1),j('isoWeekYear',1),ve('G',fe),ve('g',fe),ve('GG',ae,ne),ve('gg',ae,ne),ve('GGGG',le,ie),ve('gggg',le,ie),ve('GGGGG',de,re),ve('ggggg',de,re),Se(['gggg','ggggg','GGGG','GGGGG'],function(t,n,s,o){n[o.substr(0,2)]=x(t)}),Se(['gg','GG'],function(t,n,o,u){n[u]=s.parseTwoDigitYear(t)}),Q('Q',0,'Qo','quarter'),V('quarter','Q'),j('quarter',7),ve('Q',te),ke('Q',function(t,n){n[Oe]=3*(x(t)-1)}),Q('D',['DD',2],'Do','date'),V('date','D'),j('date',9),ve('D',ae),ve('DD',ae,ne),ve('Do',function(t,n){return t?n._dayOfMonthOrdinalParse||n._ordinalParse:n._dayOfMonthOrdinalParseLenient}),ke(['D','DD'],Te),ke('Do',function(t,n){n[Te]=x(t.match(ae)[0])});var Vn=Ne('Date',!0);Q('DDD',['DDDD',3],'DDDo','dayOfYear'),V('dayOfYear','DDD'),j('dayOfYear',4),ve('DDD',he),ve('DDDD',se),ke(['DDD','DDDD'],function(t,n,s){s._dayOfYear=x(t)}),Q('m',['mm',2],0,'minute'),V('minute','m'),j('minute',14),ve('m',ae),ve('mm',ae,ne),ke(['m','mm'],xe);var En=Ne('Minutes',!1);Q('s',['ss',2],0,'second'),V('second','s'),j('second',15),ve('s',ae),ve('ss',ae,ne),ke(['s','ss'],Pe);var In,An=Ne('Seconds',!1);for(Q('S',0,0,function(){return~~(this.millisecond()/100)}),Q(0,['SS',2],0,function(){return~~(this.millisecond()/10)}),Q(0,['SSS',3],0,'millisecond'),Q(0,['SSSS',4],0,function(){return 10*this.millisecond()}),Q(0,['SSSSS',5],0,function(){return 100*this.millisecond()}),Q(0,['SSSSSS',6],0,function(){return 1e3*this.millisecond()}),Q(0,['SSSSSSS',7],0,function(){return 1e4*this.millisecond()}),Q(0,['SSSSSSSS',8],0,function(){return 1e5*this.millisecond()}),Q(0,['SSSSSSSSS',9],0,function(){return 1e6*this.millisecond()}),V('millisecond','ms'),j('millisecond',16),ve('S',he,te),ve('SS',he,ne),ve('SSS',he,se),In='SSSS';In.length<=9;In+='S')ve(In,ce);function jn(t,n){n[We]=x(1e3*('0.'+t))}for(In='S';In.length<=9;In+='S')ke(In,jn);var Zn=Ne('Milliseconds',!1);Q('z',0,0,'zoneAbbr'),Q('zz',0,0,'zoneName');var zn=O.prototype;function $n(t){return t}zn.add=Dn,zn.calendar=function(t,n){var o=t||en(),u=fn(o,this).startOf('day'),h=s.calendarFormat(this,u)||'sameElse',l=n&&(F(n[h])?n[h].call(this,o):n[h]);return this.format(l||this.localeData().calendar(h,this,en(o)))},zn.clone=function(){return new O(this)},zn.diff=function(t,n,s){var o,u,h;if(!this.isValid())return NaN;if(!(o=fn(t,this)).isValid())return NaN;switch(u=6e4*(o.utcOffset()-this.utcOffset()),n=E(n)){case'year':h=On(this,o)/12;break;case'month':h=On(this,o);break;case'quarter':h=On(this,o)/3;break;case'second':h=(this-o)/1e3;break;case'minute':h=(this-o)/6e4;break;case'hour':h=(this-o)/36e5;break;case'day':h=(this-o-u)/864e5;break;case'week':h=(this-o-u)/6048e5;break;default:h=this-o}return s?h:b(h)},zn.endOf=function(t){var n;if(void 0===(t=E(t))||'millisecond'===t||!this.isValid())return this;var o=this._isUTC?Fn:Un;switch(t){case'year':n=o(this.year()+1,0,1)-1;break;case'quarter':n=o(this.year(),this.month()-this.month()%3+3,1)-1;break;case'month':n=o(this.year(),this.month()+1,1)-1;break;case'week':n=o(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case'isoWeek':n=o(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case'day':case'date':n=o(this.year(),this.month(),this.date()+1)-1;break;case'hour':n=this._d.valueOf(),n+=Cn-Rn(n+(this._isUTC?0:this.utcOffset()*Wn),Cn)-1;break;case'minute':n=this._d.valueOf(),n+=Wn-Rn(n,Wn)-1;break;case'second':n=this._d.valueOf(),n+=Pn-Rn(n,Pn)-1}return this._d.setTime(n),s.updateOffset(this,!0),this},zn.format=function(t){t||(t=this.isUtc()?s.defaultFormatUtc:s.defaultFormat);var n=K(this,t);return this.localeData().postformat(n)},zn.from=function(t,n){return this.isValid()&&(T(t)&&t.isValid()||en(t).isValid())?vn({to:this,from:t}).locale(this.locale()).humanize(!n):this.localeData().invalidDate()},zn.fromNow=function(t){return this.from(en(),t)},zn.to=function(t,n){return this.isValid()&&(T(t)&&t.isValid()||en(t).isValid())?vn({from:this,to:t}).locale(this.locale()).humanize(!n):this.localeData().invalidDate()},zn.toNow=function(t){return this.to(en(),t)},zn.get=function(t){return F(this[t=E(t)])?this[t]():this},zn.invalidAt=function(){return w(this).overflow},zn.isAfter=function(t,n){var s=T(t)?t:en(t);return!(!this.isValid()||!s.isValid())&&('millisecond'===(n=E(n)||'millisecond')?this.valueOf()>s.valueOf():s.valueOf()9999?K(s,n?'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]':'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ'):F(Date.prototype.toISOString)?n?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace('Z',K(s,'Z')):K(s,n?'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]':'YYYY-MM-DD[T]HH:mm:ss.SSSZ')},zn.inspect=function(){if(!this.isValid())return'moment.invalid(/* '+this._i+' */)';var t='moment',n='';this.isLocal()||(t=0===this.utcOffset()?'moment.utc':'moment.parseZone',n='Z');var s='['+t+'("]',o=0<=this.year()&&this.year()<=9999?'YYYY':'YYYYYY',u=n+'[")]';return this.format(s+o+'-MM-DD[T]HH:mm:ss.SSS'+u)},zn.toJSON=function(){return this.isValid()?this.toISOString():null},zn.toString=function(){return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ')},zn.unix=function(){return Math.floor(this.valueOf()/1e3)},zn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},zn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},zn.year=Le,zn.isLeapYear=function(){return Ue(this.year())},zn.weekYear=function(t){return Nn.call(this,t,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},zn.isoWeekYear=function(t){return Nn.call(this,t,this.isoWeek(),this.isoWeekday(),1,4)},zn.quarter=zn.quarters=function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},zn.month=$e,zn.daysInMonth=function(){return Ee(this.year(),this.month())},zn.week=zn.weeks=function(t){var n=this.localeData().week(this);return null==t?n:this.add(7*(t-n),'d')},zn.isoWeek=zn.isoWeeks=function(t){var n=tt(this,1,4).week;return null==t?n:this.add(7*(t-n),'d')},zn.weeksInYear=function(){var t=this.localeData()._week;return nt(this.year(),t.dow,t.doy)},zn.isoWeeksInYear=function(){return nt(this.year(),1,4)},zn.date=Vn,zn.day=zn.days=function(t){if(!this.isValid())return null!=t?this:NaN;var n=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=st(t,this.localeData()),this.add(t-n,'d')):n},zn.weekday=function(t){if(!this.isValid())return null!=t?this:NaN;var n=(this.day()+7-this.localeData()._week.dow)%7;return null==t?n:this.add(t-n,'d')},zn.isoWeekday=function(t){if(!this.isValid())return null!=t?this:NaN;if(null!=t){var n=it(t,this.localeData());return this.day(this.day()%7?n:n-7)}return this.day()||7},zn.dayOfYear=function(t){var n=Math.round((this.clone().startOf('day')-this.clone().startOf('year'))/864e5)+1;return null==t?n:this.add(t-n,'d')},zn.hour=zn.hours=vt,zn.minute=zn.minutes=En,zn.second=zn.seconds=An,zn.millisecond=zn.milliseconds=Zn,zn.utcOffset=function(t,n,o){var u,h=this._offset||0;if(!this.isValid())return null!=t?this:NaN;if(null!=t){if('string'==typeof t){if(null===(t=cn(_e,t)))return this}else Math.abs(t)<16&&!o&&(t*=60);return!this._isUTC&&n&&(u=mn(this)),this._offset=t,this._isUTC=!0,null!=u&&this.add(u,'m'),h!==t&&(!n||this._changeInProgress?Sn(this,vn(t-h,'m'),1,!1):this._changeInProgress||(this._changeInProgress=!0,s.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?h:mn(this)},zn.utc=function(t){return this.utcOffset(0,t)},zn.local=function(t){return this._isUTC&&(this.utcOffset(0,t),this._isUTC=!1,t&&this.subtract(mn(this),'m')),this},zn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if('string'==typeof this._i){var t=cn(me,this._i);null!=t?this.utcOffset(t):this.utcOffset(0,!0)}return this},zn.hasAlignedHourOffset=function(t){return!!this.isValid()&&(t=t?en(t).utcOffset():0,(this.utcOffset()-t)%60==0)},zn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},zn.isLocal=function(){return!!this.isValid()&&!this._isUTC},zn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},zn.isUtc=_n,zn.isUTC=_n,zn.zoneAbbr=function(){return this._isUTC?'UTC':''},zn.zoneName=function(){return this._isUTC?'Coordinated Universal Time':''},zn.dates=C('dates accessor is deprecated. Use date instead.',Vn),zn.months=C('months accessor is deprecated. Use month instead',$e),zn.years=C('years accessor is deprecated. Use year instead',Le),zn.zone=C('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/',function(t,n){return null!=t?('string'!=typeof t&&(t=-t),this.utcOffset(t,n),this):-this.utcOffset()}),zn.isDSTShifted=C('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information',function(){if(!l(this._isDSTShifted))return this._isDSTShifted;var t={};if(D(t,this),(t=Qt(t))._a){var n=t._isUTC?p(t._a):en(t._a);this._isDSTShifted=this.isValid()&&P(t._a,n.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted});var qn=N.prototype;function Jn(t,n,s,o){var u=Tt(),h=p().set(o,n);return u[s](h,t)}function Bn(t,n,s){if(c(t)&&(n=t,t=void 0),t=t||'',null!=n)return Jn(t,n,s,'month');var o,u=[];for(o=0;o<12;o++)u[o]=Jn(t,o,s,'month');return u}function Qn(t,n,s,o){'boolean'==typeof t?(c(n)&&(s=n,n=void 0),n=n||''):(s=n=t,t=!1,c(n)&&(s=n,n=void 0),n=n||'');var u,h=Tt(),l=t?h._week.dow:0;if(null!=s)return Jn(n,(s+l)%7,o,'day');var f=[];for(u=0;u<7;u++)f[u]=Jn(n,(u+l)%7,o,'day');return f}qn.calendar=function(t,n,s){var o=this._calendar[t]||this._calendar.sameElse;return F(o)?o.call(n,s):o},qn.longDateFormat=function(t){var n=this._longDateFormat[t],s=this._longDateFormat[t.toUpperCase()];return n||!s?n:(this._longDateFormat[t]=s.replace(/MMMM|MM|DD|dddd/g,function(t){return t.slice(1)}),this._longDateFormat[t])},qn.invalidDate=function(){return this._invalidDate},qn.ordinal=function(t){return this._ordinal.replace('%d',t)},qn.preparse=$n,qn.postformat=$n,qn.relativeTime=function(t,n,s,o){var u=this._relativeTime[s];return F(u)?u(t,n,s,o):u.replace(/%d/i,t)},qn.pastFuture=function(t,n){var s=this._relativeTime[t>0?'future':'past'];return F(s)?s(n):s.replace(/%s/i,n)},qn.set=function(t){var n,s;for(s in t)F(n=t[s])?this[s]=n:this['_'+s]=n;this._config=t,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+'|'+/\d{1,2}/.source)},qn.months=function(t,n){return t?o(this._months)?this._months[t.month()]:this._months[(this._months.isFormat||Ie).test(n)?'format':'standalone'][t.month()]:o(this._months)?this._months:this._months.standalone},qn.monthsShort=function(t,n){return t?o(this._monthsShort)?this._monthsShort[t.month()]:this._monthsShort[Ie.test(n)?'format':'standalone'][t.month()]:o(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},qn.monthsParse=function(t,n,s){var o,u,h;if(this._monthsParseExact)return Ze.call(this,t,n,s);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),o=0;o<12;o++){if(u=p([2e3,o]),s&&!this._longMonthsParse[o]&&(this._longMonthsParse[o]=new RegExp('^'+this.months(u,'').replace('.','')+'$','i'),this._shortMonthsParse[o]=new RegExp('^'+this.monthsShort(u,'').replace('.','')+'$','i')),s||this._monthsParse[o]||(h='^'+this.months(u,'')+'|^'+this.monthsShort(u,''),this._monthsParse[o]=new RegExp(h.replace('.',''),'i')),s&&'MMMM'===n&&this._longMonthsParse[o].test(t))return o;if(s&&'MMM'===n&&this._shortMonthsParse[o].test(t))return o;if(!s&&this._monthsParse[o].test(t))return o}},qn.monthsRegex=function(t){return this._monthsParseExact?(y(this,'_monthsRegex')||Be.call(this),t?this._monthsStrictRegex:this._monthsRegex):(y(this,'_monthsRegex')||(this._monthsRegex=Je),this._monthsStrictRegex&&t?this._monthsStrictRegex:this._monthsRegex)},qn.monthsShortRegex=function(t){return this._monthsParseExact?(y(this,'_monthsRegex')||Be.call(this),t?this._monthsShortStrictRegex:this._monthsShortRegex):(y(this,'_monthsShortRegex')||(this._monthsShortRegex=qe),this._monthsShortStrictRegex&&t?this._monthsShortStrictRegex:this._monthsShortRegex)},qn.week=function(t){return tt(t,this._week.dow,this._week.doy).week},qn.firstDayOfYear=function(){return this._week.doy},qn.firstDayOfWeek=function(){return this._week.dow},qn.weekdays=function(t,n){var s=o(this._weekdays)?this._weekdays:this._weekdays[t&&!0!==t&&this._weekdays.isFormat.test(n)?'format':'standalone'];return!0===t?rt(s,this._week.dow):t?s[t.day()]:s},qn.weekdaysMin=function(t){return!0===t?rt(this._weekdaysMin,this._week.dow):t?this._weekdaysMin[t.day()]:this._weekdaysMin},qn.weekdaysShort=function(t){return!0===t?rt(this._weekdaysShort,this._week.dow):t?this._weekdaysShort[t.day()]:this._weekdaysShort},qn.weekdaysParse=function(t,n,s){var o,u,h;if(this._weekdaysParseExact)return ht.call(this,t,n,s);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),o=0;o<7;o++){if(u=p([2e3,1]).day(o),s&&!this._fullWeekdaysParse[o]&&(this._fullWeekdaysParse[o]=new RegExp('^'+this.weekdays(u,'').replace('.','\\.?')+'$','i'),this._shortWeekdaysParse[o]=new RegExp('^'+this.weekdaysShort(u,'').replace('.','\\.?')+'$','i'),this._minWeekdaysParse[o]=new RegExp('^'+this.weekdaysMin(u,'').replace('.','\\.?')+'$','i')),this._weekdaysParse[o]||(h='^'+this.weekdays(u,'')+'|^'+this.weekdaysShort(u,'')+'|^'+this.weekdaysMin(u,''),this._weekdaysParse[o]=new RegExp(h.replace('.',''),'i')),s&&'dddd'===n&&this._fullWeekdaysParse[o].test(t))return o;if(s&&'ddd'===n&&this._shortWeekdaysParse[o].test(t))return o;if(s&&'dd'===n&&this._minWeekdaysParse[o].test(t))return o;if(!s&&this._weekdaysParse[o].test(t))return o}},qn.weekdaysRegex=function(t){return this._weekdaysParseExact?(y(this,'_weekdaysRegex')||ft.call(this),t?this._weekdaysStrictRegex:this._weekdaysRegex):(y(this,'_weekdaysRegex')||(this._weekdaysRegex=lt),this._weekdaysStrictRegex&&t?this._weekdaysStrictRegex:this._weekdaysRegex)},qn.weekdaysShortRegex=function(t){return this._weekdaysParseExact?(y(this,'_weekdaysRegex')||ft.call(this),t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(y(this,'_weekdaysShortRegex')||(this._weekdaysShortRegex=dt),this._weekdaysShortStrictRegex&&t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},qn.weekdaysMinRegex=function(t){return this._weekdaysParseExact?(y(this,'_weekdaysRegex')||ft.call(this),t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(y(this,'_weekdaysMinRegex')||(this._weekdaysMinRegex=ct),this._weekdaysMinStrictRegex&&t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},qn.isPM=function(t){return'p'===(t+'').toLowerCase().charAt(0)},qn.meridiem=function(t,n,s){return t>11?s?'pm':'PM':s?'am':'AM'},Yt('en',{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var n=t%10;return t+(1===x(t%100/10)?'th':1===n?'st':2===n?'nd':3===n?'rd':'th')}}),s.lang=C('moment.lang is deprecated. Use moment.locale instead.',Yt),s.langData=C('moment.langData is deprecated. Use moment.localeData instead.',Tt);var Xn=Math.abs;function Kn(t,n,s,o){var u=vn(n,s);return t._milliseconds+=o*u._milliseconds,t._days+=o*u._days,t._months+=o*u._months,t._bubble()}function es(t){return t<0?Math.floor(t):Math.ceil(t)}function ts(t){return 4800*t/146097}function ns(t){return 146097*t/4800}function ss(t){return function(){return this.as(t)}}var is=ss('ms'),rs=ss('s'),as=ss('m'),os=ss('h'),us=ss('d'),hs=ss('w'),ls=ss('M'),ds=ss('Q'),cs=ss('y');function fs(t){return function(){return this.isValid()?this._data[t]:NaN}}var ms=fs('milliseconds'),_s=fs('seconds'),ys=fs('minutes'),gs=fs('hours'),vs=fs('days'),ps=fs('months'),ws=fs('years');var Ms=Math.round,ks={ss:44,s:45,m:45,h:22,d:26,M:11};function Ss(t,n,s,o,u){return u.relativeTime(n||1,!!s,t,o)}function Ds(t,n,s){var o=vn(t).abs(),u=Ms(o.as('s')),h=Ms(o.as('m')),l=Ms(o.as('h')),c=Ms(o.as('d')),f=Ms(o.as('M')),_=Ms(o.as('y')),y=u<=ks.ss&&['s',u]||u0,y[4]=s,Ss.apply(null,y)}var Ys=Math.abs;function Os(t){return(t>0)-(t<0)||+t}function Ts(){if(!this.isValid())return this.localeData().invalidDate();var t,n,s=Ys(this._milliseconds)/1e3,o=Ys(this._days),u=Ys(this._months);n=b((t=b(s/60))/60),s%=60,t%=60;var h=b(u/12),l=u%=12,c=o,f=n,_=t,y=s?s.toFixed(3).replace(/\.?0+$/,''):'',v=this.asSeconds();if(!v)return'P0D';var p=v<0?'-':'',w=Os(this._months)!==Os(v)?'-':'',M=Os(this._days)!==Os(v)?'-':'',k=Os(this._milliseconds)!==Os(v)?'-':'';return p+'P'+(h?w+h+'Y':'')+(l?w+l+'M':'')+(c?M+c+'D':'')+(f||_||y?'T':'')+(f?k+f+'H':'')+(_?k+_+'M':'')+(y?k+y+'S':'')}var bs=on.prototype;return bs.isValid=function(){return this._isValid},bs.abs=function(){var t=this._data;return this._milliseconds=Xn(this._milliseconds),this._days=Xn(this._days),this._months=Xn(this._months),t.milliseconds=Xn(t.milliseconds),t.seconds=Xn(t.seconds),t.minutes=Xn(t.minutes),t.hours=Xn(t.hours),t.months=Xn(t.months),t.years=Xn(t.years),this},bs.add=function(t,n){return Kn(this,t,n,1)},bs.subtract=function(t,n){return Kn(this,t,n,-1)},bs.as=function(t){if(!this.isValid())return NaN;var n,s,o=this._milliseconds;if('month'===(t=E(t))||'quarter'===t||'year'===t)switch(n=this._days+o/864e5,s=this._months+ts(n),t){case'month':return s;case'quarter':return s/3;case'year':return s/12}else switch(n=this._days+Math.round(ns(this._months)),t){case'week':return n/7+o/6048e5;case'day':return n+o/864e5;case'hour':return 24*n+o/36e5;case'minute':return 1440*n+o/6e4;case'second':return 86400*n+o/1e3;case'millisecond':return Math.floor(864e5*n)+o;default:throw new Error('Unknown unit '+t)}},bs.asMilliseconds=is,bs.asSeconds=rs,bs.asMinutes=as,bs.asHours=os,bs.asDays=us,bs.asWeeks=hs,bs.asMonths=ls,bs.asQuarters=ds,bs.asYears=cs,bs.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*x(this._months/12):NaN},bs._bubble=function(){var t,n,s,o,u,h=this._milliseconds,l=this._days,c=this._months,f=this._data;return h>=0&&l>=0&&c>=0||h<=0&&l<=0&&c<=0||(h+=864e5*es(ns(c)+l),l=0,c=0),f.milliseconds=h%1e3,t=b(h/1e3),f.seconds=t%60,n=b(t/60),f.minutes=n%60,s=b(n/60),f.hours=s%24,c+=u=b(ts(l+=b(s/24))),l-=es(ns(u)),o=b(c/12),c%=12,f.days=l,f.months=c,f.years=o,this},bs.clone=function(){return vn(this)},bs.get=function(t){return t=E(t),this.isValid()?this[t+'s']():NaN},bs.milliseconds=ms,bs.seconds=_s,bs.minutes=ys,bs.hours=gs,bs.days=vs,bs.weeks=function(){return b(this.days()/7)},bs.months=ps,bs.years=ws,bs.humanize=function(t){if(!this.isValid())return this.localeData().invalidDate();var n=this.localeData(),s=Ds(this,!t,n);return t&&(s=n.pastFuture(+this,s)),n.postformat(s)},bs.toISOString=Ts,bs.toString=Ts,bs.toJSON=Ts,bs.locale=Tn,bs.localeData=xn,bs.toIsoString=C('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)',Ts),bs.lang=bn,Q('X',0,0,'unix'),Q('x',0,0,'valueOf'),ve('x',fe),ve('X',/[+-]?\d+(\.\d{1,3})?/),ke('X',function(t,n,s){s._d=new Date(1e3*parseFloat(t,10))}),ke('x',function(t,n,s){s._d=new Date(x(t))}),s.version='2.24.0',t=en,s.fn=zn,s.min=function(){return sn('isBefore',[].slice.call(arguments,0))},s.max=function(){return sn('isAfter',[].slice.call(arguments,0))},s.now=function(){return Date.now?Date.now():+new Date},s.utc=p,s.unix=function(t){return en(1e3*t)},s.months=function(t,n){return Bn(t,n,'months')},s.isDate=f,s.locale=Yt,s.invalid=k,s.duration=vn,s.isMoment=T,s.weekdays=function(t,n,s){return Qn(t,n,s,'weekdays')},s.parseZone=function(){return en.apply(null,arguments).parseZone()},s.localeData=Tt,s.isDuration=un,s.monthsShort=function(t,n){return Bn(t,n,'monthsShort')},s.weekdaysMin=function(t,n,s){return Qn(t,n,s,'weekdaysMin')},s.defineLocale=Ot,s.updateLocale=function(t,n){if(null!=n){var s,o,u=pt;null!=(o=Dt(t))&&(u=o._config),(s=new N(n=L(u,n))).parentLocale=wt[t],wt[t]=s,Yt(t)}else null!=wt[t]&&(null!=wt[t].parentLocale?wt[t]=wt[t].parentLocale:null!=wt[t]&&delete wt[t]);return wt[t]},s.locales=function(){return H(wt)},s.weekdaysShort=function(t,n,s){return Qn(t,n,s,'weekdaysShort')},s.normalizeUnits=E,s.relativeTimeRounding=function(t){return void 0===t?Ms:'function'==typeof t&&(Ms=t,!0)},s.relativeTimeThreshold=function(t,n){return void 0!==ks[t]&&(void 0===n?ks[t]:(ks[t]=n,'s'===t&&(ks.ss=n-1),!0))},s.calendarFormat=function(t,n){var s=t.diff(n,'days',!0);return s<-6?'sameElse':s<-1?'lastWeek':s<0?'lastDay':s<1?'sameDay':s<2?'nextDay':s<7?'nextWeek':'sameElse'},s.prototype=zn,s.HTML5_FMT={DATETIME_LOCAL:'YYYY-MM-DDTHH:mm',DATETIME_LOCAL_SECONDS:'YYYY-MM-DDTHH:mm:ss',DATETIME_LOCAL_MS:'YYYY-MM-DDTHH:mm:ss.SSS',DATE:'YYYY-MM-DD',TIME:'HH:mm',TIME_SECONDS:'HH:mm:ss',TIME_MS:'HH:mm:ss.SSS',WEEK:'GGGG-[W]WW',MONTH:'YYYY-MM'},s},'object'==typeof e&&void 0!==m?m.exports=n():'function'==typeof define&&define.amd?define(n):t.moment=n()},1470,[]); +__d(function(g,r,i,a,m,e,d){!(function(t,n){"use strict";'object'==typeof m&&m.exports?m.exports=n(r(d[0])):'function'==typeof define&&define.amd?define(['moment'],n):n(t.moment)})(this,function(t){"use strict";var n,o={},s={},f={},u={};t&&'string'==typeof t.version||I('Moment Timezone requires Moment.js. See https://momentjs.com/timezone/docs/#/use-it/browser/');var c=t.version.split('.'),l=+c[0],h=+c[1];function p(t){return t>96?t-87:t>64?t-29:t-48}function z(t){var n=0,o=t.split('.'),s=o[0],f=o[1]||'',u=1,c=0,l=1;for(45===t.charCodeAt(0)&&(n=1,l=-1);n3){var n=f[Z(t)];if(n)return n;I("Moment Timezone found "+t+" from the Intl api, but did not have that data loaded.")}}catch(t){}var o,s,u,c=A(),l=c.length,h=D(c),p=[];for(s=0;s0?p[0].zone.name:void 0}function Z(t){return(t||'').toLowerCase().replace(/\//g,'_')}function C(t){var n,s,u,c;for("string"==typeof t&&(t=[t]),n=0;n= 2.6.0. You are using Moment.js '+t.version+'. See momentjs.com'),y.prototype={_set:function(t){this.name=t.name,this.abbrs=t.abbrs,this.untils=t.untils,this.offsets=t.offsets,this.population=t.population},_index:function(t){var n,o=+t,s=this.untils;for(n=0;ns&&P.moveInvalidForward&&(n=s),u0&&(this._z=null),q.apply(this,arguments)}),t.tz.setDefault=function(n){return(l<2||2===l&&h<9)&&I('Moment Timezone setDefault() requires Moment.js >= 2.9.0. You are using Moment.js '+t.version+'.'),t.defaultZone=n?F(n):null,t};var B=t.momentProperties;return'[object Array]'===Object.prototype.toString.call(B)?(B.push('_z'),B.push('_a')):B&&(B._z=null),t})},1471,[1470]); +__d(function(g,r,i,a,m,e,d){!(function(n,t){"use strict";'object'==typeof m&&m.exports?m.exports=t(r(d[0])):'function'==typeof define&&define.amd?define(['moment'],t):t(n.moment)})(this,function(n){"use strict";if(!n.tz)throw new Error("moment-timezone-utils.js must be loaded after moment-timezone.js");var t='0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWX',o=1e-6;function s(n,s){for(var f,u='.',l='';s>0;)s-=1,n*=60,f=Math.floor(n+o),u+=t[f],n-=f,f&&(l+=u,u='');return l}function f(n,o){for(var f='',u=Math.abs(n),l=Math.floor(u),h=s(u-l,Math.min(~~o,10));l>0;)f=t[l%60]+f,l=Math.floor(l/60);return n<0&&(f='-'+f),f&&h?f+h:(h||'-'!==f)&&(f||h)||'0'}function u(n){var t,o=[],s=0;for(t=0;th.population?p.unshift(l):l.population===h.population&&s&&s[l.name]?p.unshift(l):p.push(l),c=!0);c||b.push([l])}for(f=0;fo&&(f=t,t=o,o=f),f=0;fo&&(l=Math.min(l,f+1)));return[u,l]}function k(n,t,o){var s=Array.prototype.slice,f=w(n.untils,t,o),u=s.apply(n.untils,f);return u[u.length-1]=null,{name:n.name,abbrs:s.apply(n.abbrs,f),untils:u,offsets:s.apply(n.offsets,f),population:n.population}}return n.tz.pack=c,n.tz.packBase60=f,n.tz.createLinks=M,n.tz.filterYears=k,n.tz.filterLinkPack=function(n,t,o,s){var f,u,l=n.zones,h=[];for(f=0;f0&&void 0!==arguments[0]?arguments[0]:[],o=arguments.length>1?arguments[1]:void 0;switch(o.type){case'CREATE_NOTICE':return[].concat((0,n.default)((0,c.reject)(t,{id:o.notice.id})),[o.notice]);case'REMOVE_NOTICE':return(0,c.reject)(t,{id:o.id})}return t});e.default=o},1493,[2,9,21,1494]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.onSubKey=void 0;var n=t(r(d[1]));function o(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function u(t){for(var u=1;u0&&void 0!==arguments[0]?arguments[0]:{},f=arguments.length>1?arguments[1]:void 0,l=f[t];if(void 0===l)return c;var p=o(c[l],f);return p===c[l]?c:u({},c,(0,n.default)({},l,p))}}};e.onSubKey=c;var f=c;e.default=f},1494,[2,18]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.createNotice=u,e.createSuccessNotice=function(t,n){return u('success',t,n)},e.createInfoNotice=function(t,n){return u('info',t,n)},e.createErrorNotice=function(t,n){return u('error',t,n)},e.createWarningNotice=function(t,n){return u('warning',t,n)},e.removeNotice=function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:c.DEFAULT_CONTEXT;return{type:'REMOVE_NOTICE',id:t,context:n}};var n=t(r(d[1])),o=r(d[2]),c=r(d[3]),s=n.default.mark(u);function u(){var t,u,v,f,l,T,E,_,p,N,b,x,y,A,L,O,h=arguments;return n.default.wrap(function(n){for(;;)switch(n.prev=n.next){case 0:if(t=h.length>0&&void 0!==h[0]?h[0]:c.DEFAULT_STATUS,u=h.length>1?h[1]:void 0,v=h.length>2&&void 0!==h[2]?h[2]:{},f=v.speak,l=void 0===f||f,T=v.isDismissible,E=void 0===T||T,_=v.context,p=void 0===_?c.DEFAULT_CONTEXT:_,N=v.id,b=void 0===N?(0,o.uniqueId)(p):N,x=v.actions,y=void 0===x?[]:x,A=v.type,L=void 0===A?'default':A,O=v.__unstableHTML,u=String(u),!l){n.next=8;break}return n.next=8,{type:'SPEAK',message:u,ariaLive:'snackbar'===L?'polite':'assertive'};case 8:return n.next=10,{type:'CREATE_NOTICE',context:p,notice:{id:b,status:t,content:u,__unstableHTML:O,isDismissible:E,actions:y,type:L}};case 10:case"end":return n.stop()}},s)}},1495,[2,252,21,1496]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.DEFAULT_STATUS=e.DEFAULT_CONTEXT=void 0;e.DEFAULT_CONTEXT='global';e.DEFAULT_STATUS='info'},1496,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getNotices=function(o){var u=arguments.length>1&&void 0!==arguments[1]?arguments[1]:t.DEFAULT_CONTEXT;return o[u]||n};var t=r(d[0]),n=[]},1497,[1496]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),s={SPEAK:function(s){(0,t.speak)(s.message,s.ariaLive||'assertive')}};e.default=s},1498,[1231]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),e.registerCoreBlocks=e.coreBlocks=void 0;var o=n(r(d[2])),c=n(r(d[3])),s=r(d[4]),u=t(r(d[5])),l=t(r(d[6])),f=t(r(d[7])),p=t(r(d[8])),O=t(r(d[9])),y=t(r(d[10])),b=t(r(d[11])),j=t(r(d[12])),v=t(r(d[13])),P=t(r(d[14])),k=t(r(d[15])),B=t(r(d[16])),h=t(r(d[17])),w=t(r(d[18])),D=t(r(d[19])),_=t(r(d[20])),E=t(r(d[21])),N=t(r(d[22])),C=t(r(d[23])),S=t(r(d[24])),T=t(r(d[25])),G=t(r(d[26])),H=t(r(d[27])),M=t(r(d[28])),U=t(r(d[29])),q=t(r(d[30])),x=t(r(d[31])),z=t(r(d[32])),A=t(r(d[33])),F=t(r(d[34])),I=t(r(d[35])),J=t(r(d[36])),K=t(r(d[37])),L=t(r(d[38])),Q=t(r(d[39])),R=t(r(d[40])),V=t(r(d[41])),W=t(r(d[42])),X=t(r(d[43]));function Y(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function Z(t){for(var n=1;n a',attribute:'href'},rel:{type:'string',source:'attribute',selector:'figure > a',attribute:'rel'},linkClass:{type:'string',source:'attribute',selector:'figure > a',attribute:'class'},id:{type:'number'},width:{type:'number'},height:{type:'number'},linkDestination:{type:'string',default:'none'},linkTarget:{type:'string',source:'attribute',selector:'figure > a',attribute:'target'}},o=[{attributes:h,save:function(t){var n,h=t.attributes,o=h.url,f=h.alt,p=h.caption,b=h.align,y=h.href,E=h.width,v=h.height,w=h.id,N=(0,s.default)((n={},(0,u.default)(n,"align"+b,b),(0,u.default)(n,'is-resized',E||v),n)),x=(0,l.createElement)("img",{src:o,alt:f,className:w?"wp-image-"+w:null,width:E,height:v});return(0,l.createElement)("figure",{className:N},y?(0,l.createElement)("a",{href:y},x):x,!c.RichText.isEmpty(p)&&(0,l.createElement)(c.RichText.Content,{tagName:"figcaption",value:p}))}},{attributes:h,save:function(t){var n=t.attributes,u=n.url,s=n.alt,h=n.caption,o=n.align,f=n.href,p=n.width,b=n.height,y=n.id,E=(0,l.createElement)("img",{src:u,alt:s,className:y?"wp-image-"+y:null,width:p,height:b});return(0,l.createElement)("figure",{className:o?"align"+o:null},f?(0,l.createElement)("a",{href:f},E):E,!c.RichText.isEmpty(h)&&(0,l.createElement)(c.RichText.Content,{tagName:"figcaption",value:h}))}},{attributes:h,save:function(t){var u=t.attributes,s=u.url,h=u.alt,o=u.caption,f=u.align,p=u.href,b=u.width,y=u.height,E=b||y?{width:b,height:y}:{},v=(0,l.createElement)("img",(0,n.default)({src:s,alt:h},E)),w={};return b?w={width:b}:'left'!==f&&'right'!==f||(w={maxWidth:'50%'}),(0,l.createElement)("figure",{className:f?"align"+f:null,style:w},p?(0,l.createElement)("a",{href:p},v):v,!c.RichText.isEmpty(o)&&(0,l.createElement)(c.RichText.Content,{tagName:"figcaption",value:o}))}}];e.default=o},1510,[2,3,16,18,1166,1044]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.ImageEdit=void 0;var l,o=r(d[2]),s=t(r(d[3])),u=t(r(d[4])),c=t(r(d[5])),p=t(r(d[6])),h=t(r(d[7])),f=t(r(d[8])),b=t(r(d[9])),S=t(r(d[10])),v=t(r(d[11])),y=r(d[12]),I=r(d[13]),U=r(d[14]),k=r(d[15]),C=r(d[16]),_=r(d[17]),E=r(d[18]),P=r(d[19]),M=r(d[20]),A=r(d[21]),w=t(r(d[22])),T=n(r(d[23])),O=t(r(d[24])),F=r(d[25]),D=r(d[26]);function L(t,n){var l=Object.keys(t);return Object.getOwnPropertySymbols&&l.push.apply(l,Object.getOwnPropertySymbols(t)),n&&(l=l.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),l}function R(t){for(var n=1;nh,c=t.height/t.width,l=o?h:t.width,u=o?h*c:t.height;return{width:l,height:u}},e.removeNewTabRel=h,e.getUpdatedLinkTargetSettings=function(t,n){var o,c=n.rel,l=t?'_blank':void 0;o=l||c?h(c):void 0;return{linkTarget:l,rel:o}};var t=r(d[0]),n=r(d[1]);function h(h){var o=h;return void 0===h||(0,t.isEmpty)(o)||(0,t.isEmpty)(o)||((0,t.each)(n.NEW_TAB_REL,function(t){var n=new RegExp('\\b'+t+'\\b','gi');o=o.replace(n,'')}),o!==h&&(o=o.trim()),(0,t.isEmpty)(o)&&(o=void 0)),o}},1515,[21,1516]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.DEFAULT_SIZE_SLUG=e.ALLOWED_MEDIA_TYPES=e.NEW_TAB_REL=e.LINK_DESTINATION_CUSTOM=e.LINK_DESTINATION_ATTACHMENT=e.LINK_DESTINATION_MEDIA=e.LINK_DESTINATION_NONE=e.MIN_SIZE=void 0;e.MIN_SIZE=20;e.LINK_DESTINATION_NONE='none';e.LINK_DESTINATION_MEDIA='media';e.LINK_DESTINATION_ATTACHMENT='attachment';e.LINK_DESTINATION_CUSTOM='custom';e.NEW_TAB_REL=['noreferrer','noopener'];e.ALLOWED_MEDIA_TYPES=['image'];e.DEFAULT_SIZE_SLUG='large'},1516,[]); +__d(function(t,e,r,i,s,u,a){s.exports={name:"core/image",category:"common",attributes:{align:{type:"string"},url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"string",source:"html",selector:"figcaption"},title:{type:"string",source:"attribute",selector:"img",attribute:"title"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number"},width:{type:"number"},height:{type:"number"},sizeSlug:{type:"string"},linkDestination:{type:"string",default:"none"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}}}},1517,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var f,h=t.attributes,E=h.url,o=h.alt,v=h.caption,p=h.align,N=h.href,_=h.rel,w=h.linkClass,y=h.width,z=h.height,T=h.id,b=h.linkTarget,k=h.sizeSlug,x=h.title,C=(0,u.isEmpty)(_)?void 0:_,R=(0,c.default)((f={},(0,n.default)(f,"align"+p,p),(0,n.default)(f,"size-"+k,k),(0,n.default)(f,'is-resized',y||z),f)),j=(0,l.createElement)("img",{src:E,alt:o,className:T?"wp-image-"+T:null,width:y,height:z,title:x}),F=(0,l.createElement)(l.Fragment,null,N?(0,l.createElement)("a",{className:w,href:N,target:b,rel:C},j):j,!s.RichText.isEmpty(v)&&(0,l.createElement)(s.RichText.Content,{tagName:"figcaption",value:v}));if('left'===p||'right'===p||'center'===p)return(0,l.createElement)("div",null,(0,l.createElement)("figure",{className:R},F));return(0,l.createElement)("figure",{className:R},F)};var l=r(d[1]),n=t(r(d[2])),c=t(r(d[3])),u=r(d[4]),s=r(d[5])},1518,[2,3,18,1166,21,1044]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.stripFirstImage=u,e.default=void 0;var n=t(r(d[1])),o=r(d[2]),c=r(d[3]);function l(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function s(t){for(var o=1;o'+(0,o.__)('In quoting others, we cite ourselves.')+'

',citation:'Julio Cort\xe1zar',className:'is-style-large'}},styles:[{name:'default',label:(0,o._x)('Default','block style'),isDefault:!0},{name:'large',label:(0,o._x)('Large','block style')}],transforms:p.default,edit:u.default,save:f.default,merge:function(t,n){var o=n.value,l=n.citation;return l||(l=t.citation),v({},t,o&&'

'!==o?{value:t.value+o,citation:l}:{citation:l})},deprecated:l.default};e.settings=O},1532,[2,18,347,1533,1534,1535,1536,1537,1538]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=t(r(d[2])),c=r(d[3]),u=r(d[4]);function o(t,l){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),l&&(n=n.filter(function(l){return Object.getOwnPropertyDescriptor(t,l).enumerable})),n}function s(t){for(var l=1;l"+o+"

"})}},{type:'block',blocks:['core/pullquote'],transform:function(t){var o=t.value,n=t.citation;return(0,l.createBlock)('core/quote',{value:o,citation:n})}},{type:'prefix',prefix:'>',transform:function(t){return(0,l.createBlock)('core/quote',{value:"

"+t+"

"})}},{type:'raw',isMatch:function(t){var o,n=(o=!1,function(t){return'P'===t.nodeName||(o||'CITE'!==t.nodeName?void 0:(o=!0,!0))});return'BLOCKQUOTE'===t.nodeName&&Array.from(t.childNodes).every(n)},schema:function(t){var o=t.phrasingContentSchema;return{blockquote:{children:{p:{children:o},cite:{children:o}}}}}}],to:[{type:'block',blocks:['core/paragraph'],transform:function(t){var o=t.value,n=t.citation,p=[];return o&&'

'!==o&&p.push.apply(p,(0,c.default)((0,u.split)((0,u.create)({html:o,multilineTag:'p'}),"\u2028").map(function(t){return(0,l.createBlock)('core/paragraph',{content:(0,u.toHTMLString)({value:t})})}))),n&&'

'!==n&&p.push((0,l.createBlock)('core/paragraph',{content:n})),0===p.length?(0,l.createBlock)('core/paragraph',{content:''}):p}},{type:'block',blocks:['core/heading'],transform:function(t){var o=t.value,c=t.citation,p=(0,n.default)(t,["value","citation"]);if('

'===o)return(0,l.createBlock)('core/heading',{content:c});var s=(0,u.split)((0,u.create)({html:o,multilineTag:'p'}),"\u2028"),v=(0,l.createBlock)('core/heading',{content:(0,u.toHTMLString)({value:s[0]})});if(!c&&1===s.length)return v;var h=s.slice(1);return[v,(0,l.createBlock)('core/quote',f({},p,{citation:c,value:(0,u.toHTMLString)({value:h.length?(0,u.join)(s.slice(1),"\u2028"):(0,u.create)(),multilineTag:'p'})}))]}},{type:'block',blocks:['core/pullquote'],transform:function(t){var o=t.value,n=t.citation;return(0,l.createBlock)('core/pullquote',{value:o,citation:n})}}]};e.default=s},1538,[2,18,19,9,1045,1103]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return o.default}}),e.settings=e.name=void 0;var s=r(d[1]),l=t(r(d[2])),n=t(r(d[3])),u=r(d[4]),o=t(r(d[5])),_=t(r(d[6])),c=t(r(d[7])),p=o.default.name;e.name=p;var f={title:(0,s.__)('Gallery'),description:(0,s.__)('Display multiple images in a rich gallery.'),icon:u.icon,keywords:[(0,s.__)('images'),(0,s.__)('photos')],example:{attributes:{columns:2,images:[{url:'https://s.w.org/images/core/5.3/Glacial_lakes%2C_Bhutan.jpg'},{url:'https://s.w.org/images/core/5.3/Sediment_off_the_Yucatan_Peninsula.jpg'}]}},supports:{align:!0},transforms:c.default,edit:n.default,save:_.default,deprecated:l.default};e.settings=f},1539,[2,347,1540,1542,1544,1553,1554,1555]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=t(r(d[2])),u=t(r(d[3])),c=r(d[4]),o=r(d[5]),s=r(d[6]);function p(t,l){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),l&&(n=n.filter(function(l){return Object.getOwnPropertyDescriptor(t,l).enumerable})),n}function b(t){for(var l=1;l0&&(0,l.createElement)(o.RichText.Content,{tagName:"figcaption",value:t.caption})))}))}},{attributes:{images:{type:'array',default:[],source:'query',selector:'ul.wp-block-gallery .blocks-gallery-item',query:{url:{source:'attribute',selector:'img',attribute:'src'},alt:{source:'attribute',selector:'img',attribute:'alt',default:''},id:{source:'attribute',selector:'img',attribute:'data-id'},link:{source:'attribute',selector:'img',attribute:'data-link'},caption:{type:'array',source:'children',selector:'figcaption'}}},columns:{type:'number'},imageCrop:{type:'boolean',default:!0},linkTo:{type:'string',default:'none'}},isEligible:function(t){var l=t.images,n=t.ids;return l&&l.length>0&&(!n&&l||n&&l&&n.length!==l.length||(0,c.some)(l,function(t,l){return!t&&null!==n[l]||parseInt(t,10)!==n[l]}))},migrate:function(t){return b({},t,{ids:(0,c.map)(t.images,function(t){var l=t.id;return l?parseInt(l,10):null})})},save:function(t){var n=t.attributes,u=n.images,c=n.columns,p=void 0===c?(0,s.defaultColumnsNumber)(n):c,b=n.imageCrop,f=n.linkTo;return(0,l.createElement)("ul",{className:"columns-"+p+" "+(b?'is-cropped':'')},u.map(function(t){var n;switch(f){case'media':n=t.url;break;case'attachment':n=t.link}var u=(0,l.createElement)("img",{src:t.url,alt:t.alt,"data-id":t.id,"data-link":t.link,className:t.id?"wp-image-"+t.id:null});return(0,l.createElement)("li",{key:t.id||t.url,className:"blocks-gallery-item"},(0,l.createElement)("figure",null,n?(0,l.createElement)("a",{href:n},u):u,t.caption&&t.caption.length>0&&(0,l.createElement)(o.RichText.Content,{tagName:"figcaption",value:t.caption})))}))}},{attributes:{images:{type:'array',default:[],source:'query',selector:'div.wp-block-gallery figure.blocks-gallery-image img',query:{url:{source:'attribute',attribute:'src'},alt:{source:'attribute',attribute:'alt',default:''},id:{source:'attribute',attribute:'data-id'}}},columns:{type:'number'},imageCrop:{type:'boolean',default:!0},linkTo:{type:'string',default:'none'},align:{type:'string',default:'none'}},save:function(t){var n=t.attributes,c=n.images,o=n.columns,p=void 0===o?(0,s.defaultColumnsNumber)(n):o,b=n.align,f=n.imageCrop,y=n.linkTo,k=(0,u.default)("columns-"+p,{alignnone:'none'===b,'is-cropped':f});return(0,l.createElement)("div",{className:k},c.map(function(t){var n;switch(y){case'media':n=t.url;break;case'attachment':n=t.link}var u=(0,l.createElement)("img",{src:t.url,alt:t.alt,"data-id":t.id});return(0,l.createElement)("figure",{key:t.id||t.url,className:"blocks-gallery-image"},n?(0,l.createElement)("a",{href:n},u):u)}))}}];e.default=f},1540,[2,3,18,1166,21,1044,1541]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.defaultColumnsNumber=function(l){return Math.min(3,l.images.length)},e.pickRelevantMediaFiles=void 0;var l=r(d[0]);e.pickRelevantMediaFiles=function(t){var u=arguments.length>1&&void 0!==arguments[1]?arguments[1]:'large',n=(0,l.pick)(t,['alt','id','link','caption']);n.url=(0,l.get)(t,['sizes',u,'url'])||(0,l.get)(t,['media_details','sizes',u,'source_url'])||t.url;var s=(0,l.get)(t,['sizes','full','url'])||(0,l.get)(t,['media_details','sizes','full','source_url']);return s&&(n.fullUrl=s),n}},1541,[21]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),o=t(r(d[2])),s=t(r(d[3])),l=t(r(d[4])),u=t(r(d[5])),c=t(r(d[6])),p=t(r(d[7])),f=t(r(d[8])),h=t(r(d[9])),v=t(r(d[10])),b=r(d[11]),I=r(d[12]),y=r(d[13]),S=r(d[14]),k=r(d[15]),C=r(d[16]),_=r(d[17]),w=r(d[18]),M=r(d[19]),A=r(d[20]),O=t(r(d[21]));function E(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function z(t){for(var n=1;n0&&(0,b.every)(l,function(t){var n=t.url;return(0,C.isBlobURL)(n)})){var u=(0,b.map)(l,function(t){var n=t.url;return(0,C.getBlobByURL)(n)});(0,b.forEach)(l,function(t){var n=t.url;return(0,C.revokeBlobURL)(n)}),s({filesList:u,onFileChange:this.onSelectImages,allowedTypes:['image']})}}},{key:"componentDidUpdate",value:function(t){!this.props.isSelected&&t.isSelected&&this.setState({selectedImage:null,captionSelected:!1})}},{key:"render",value:function(){var t=this.props,s=t.attributes,l=t.className,u=t.isSelected,c=t.noticeUI,p=s.columns,f=void 0===p?(0,A.defaultColumnsNumber)(s):p,h=s.imageCrop,v=s.images,I=s.linkTo,C=s.sizeSlug,_=!!v.length,w=_&&(0,b.some)(v,function(t){return t.id}),E=(0,n.createElement)(S.MediaPlaceholder,{addToGallery:w,isAppender:_,className:l,disableMediaButtons:_&&!u,icon:!_&&M.sharedIcon,labels:{title:!_&&(0,k.__)('Gallery'),instructions:!_&&T},onSelect:this.onSelectImages,accept:"image/*",allowedTypes:P,multiple:!0,value:w?v:void 0,onError:this.onUploadError,notices:_?void 0:c,onFocus:this.props.onFocus});if(!_)return E;var z=this.getImagesSizeOptions();return(0,n.createElement)(n.Fragment,null,(0,n.createElement)(S.InspectorControls,null,(0,n.createElement)(y.PanelBody,{title:(0,k.__)('Gallery Settings')},v.length>1&&(0,n.createElement)(y.RangeControl,(0,o.default)({label:(0,k.__)('Columns')},N,{value:f,onChange:this.setColumnsNumber,min:1,max:Math.min(8,v.length),required:!0})),(0,n.createElement)(y.ToggleControl,(0,o.default)({label:(0,k.__)('Crop Images')},N,{checked:!!h,onChange:this.toggleImageCrop,help:this.getImageCropHelp})),(0,n.createElement)(y.SelectControl,(0,o.default)({label:(0,k.__)('Link To')},N,{value:I,onChange:this.setLinkTo,options:F})),_&&!(0,b.isEmpty)(z)&&(0,n.createElement)(y.SelectControl,{label:(0,k.__)('Images Size'),value:C,options:z,onChange:this.updateImagesSize}))),c,(0,n.createElement)(O.default,(0,o.default)({},this.props,{selectedImage:this.state.selectedImage,mediaPlaceholder:E,onMoveBackward:this.onMoveBackward,onMoveForward:this.onMoveForward,onRemoveImage:this.onRemoveImage,onSelectImage:this.onSelectImage,onSetImageAttributes:this.setImageAttributes,onFocusGalleryCaption:this.onFocusGalleryCaption})))}}]),l})(n.Component),B=(0,I.compose)([(0,_.withSelect)(function(t,n){var o=n.attributes.ids,s=n.isSelected,u=t('core').getMedia,c=(0,t('core/block-editor').getSettings)(),p=c.imageSizes,f=c.mediaUpload,h={};return s&&(h=(0,b.reduce)(o,function(t,n){if(!n)return t;var o=u(n),s=(0,b.reduce)(p,function(t,n){var s=(0,b.get)(o,['sizes',n.slug,'url']),u=(0,b.get)(o,['media_details','sizes',n.slug,'source_url']);return z({},t,(0,l.default)({},n.slug,s||u))},{});return z({},t,(0,l.default)({},parseInt(n,10),s))},{})),{imageSizes:p,mediaUpload:f,resizedImages:h}}),y.withNotices,(0,w.withViewportMatch)({isNarrow:'< small'})])(U);e.default=B},1542,[2,3,16,9,18,34,35,42,45,44,48,21,975,1170,1044,347,1520,911,1156,1543,1541,1546]); +__d(function(g,r,i,a,m,e,d){var o=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.sharedIcon=void 0;var n=r(d[1]),t=o(r(d[2])),c=r(d[3]),l=r(d[4]),u=r(d[5]),f=o(r(d[6])),h=(0,l.withPreferredColorScheme)(function(o){var l=(0,o.getStylesFromColorScheme)(f.default.icon,f.default.iconDark);return(0,n.createElement)(c.Icon,(0,t.default)({icon:u.icon},l))}),v=(0,n.createElement)(h,null);e.sharedIcon=v},1543,[2,3,16,1170,975,1544,1545]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.rightArrow=e.leftArrow=e.icon=void 0;var t=r(d[0]),w=r(d[1]),l=(0,t.createElement)(w.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)(w.Path,{fill:"none",d:"M0 0h24v24H0V0z"}),(0,t.createElement)(w.G,null,(0,t.createElement)(w.Path,{d:"M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"})));e.icon=l;var h=(0,t.createElement)(w.SVG,{width:"18",height:"18",viewBox:"0 0 18 18",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)(w.Path,{d:"M5 8.70002L10.6 14.4L12 12.9L7.8 8.70002L12 4.50002L10.6 3.00002L5 8.70002Z"}));e.leftArrow=h;var n=(0,t.createElement)(w.SVG,{width:"18",height:"18",viewBox:"0 0 18 18",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)(w.Path,{d:"M13 8.7L7.4 3L6 4.5L10.2 8.7L6 12.9L7.4 14.4L13 8.7Z"}));e.rightArrow=n},1544,[3,1170]); +__d(function(g,r,i,a,m,e,d){m.exports={icon:{fill:"#2e4453"},iconDark:{fill:"#fff"}}},1545,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.Gallery=void 0;var l=r(d[1]),n=t(r(d[2])),o=r(d[3]),c=r(d[4]),u=t(r(d[5])),s=r(d[6]),f=t(r(d[7])),p=t(r(d[8])),v=r(d[9]),y=r(d[10]),S=function(t){var S=(0,l.useState)(!1),b=(0,n.default)(S,2),I=b[0],_=b[1],C=t.clientId,M=t.selectedImage,w=t.mediaPlaceholder,B=t.onBlur,E=t.onMoveBackward,F=t.onMoveForward,h=t.onRemoveImage,k=t.onSelectImage,G=t.onSetImageAttributes,A=t.onFocusGalleryCaption,L=t.attributes,N=t.isSelected,P=t.isNarrow,R=t.onFocus,$=L.columns,j=void 0===$?(0,s.defaultColumnsNumber)(L):$,O=L.imageCrop,T=L.images,V=P?Math.min(j,2):Math.min(j,4),q=function(t){return function(){I&&_(!1),k(t)()}};return(0,l.createElement)(o.View,null,(0,l.createElement)(p.default,{columns:V,spacing:15,style:N?f.default.galleryTilesContainerSelected:void 0},T.map(function(t,n){var o=(0,v.sprintf)((0,v.__)('image %1$d of %2$d in gallery'),n+1,T.length);return(0,l.createElement)(u.default,{key:t.id||t.url,url:t.url,alt:t.alt,id:t.id,isCropped:O,isFirstItem:0===n,isLastItem:n+1===T.length,isSelected:N&&M===n,isBlockSelected:N,onMoveBackward:E(n),onMoveForward:F(n),onRemove:h(n),onSelect:q(n),onSelectBlock:R,setAttributes:function(t){return G(n,t)},caption:t.caption,"aria-label":o})})),w,(0,l.createElement)(y.Caption,{clientId:C,isSelected:I,accessible:!0,accessibilityLabelCreator:function(t){return(0,c.isEmpty)(t)?'Gallery caption. Empty':(0,v.sprintf)((0,v.__)('Gallery caption. %s'),t)},onFocus:function(){I||_(!0),A()},onBlur:B}))};e.Gallery=S;var b=S;e.default=b},1546,[2,3,5,25,21,1547,1541,1550,1551,347,1044]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),o=t(r(d[2])),n=t(r(d[3])),s=t(r(d[4])),c=t(r(d[5])),u=t(r(d[6])),p=t(r(d[7])),h=t(r(d[8])),f=r(d[9]),S=r(d[10]),b=r(d[11]),y=r(d[12]),v=r(d[13]),C=r(d[14]),U=r(d[15]),I=r(d[16]),M=t(r(d[17])),F=t(r(d[18])),E=f.StyleSheet.compose,P=E(F.default.separator,{borderRightWidth:f.StyleSheet.hairlineWidth}),k=E(F.default.button,{aspectRatio:1}),w=E(F.default.removeButton,{aspectRatio:1}),_=f.Platform.select({ios:'p',android:''}),W=(function(t){function I(){var t;return(0,n.default)(this,I),(t=(0,c.default)(this,(0,u.default)(I).apply(this,arguments))).onSelectImage=t.onSelectImage.bind((0,p.default)(t)),t.onSelectCaption=t.onSelectCaption.bind((0,p.default)(t)),t.onMediaPressed=t.onMediaPressed.bind((0,p.default)(t)),t.bindContainer=t.bindContainer.bind((0,p.default)(t)),t.updateMediaProgress=t.updateMediaProgress.bind((0,p.default)(t)),t.finishMediaUploadWithSuccess=t.finishMediaUploadWithSuccess.bind((0,p.default)(t)),t.finishMediaUploadWithFailure=t.finishMediaUploadWithFailure.bind((0,p.default)(t)),t.renderContent=t.renderContent.bind((0,p.default)(t)),t.state={captionSelected:!1,isUploadInProgress:!1,didUploadFail:!1},t}return(0,h.default)(I,t),(0,s.default)(I,[{key:"bindContainer",value:function(t){this.container=t}},{key:"onSelectCaption",value:function(){this.state.captionSelected||this.setState({captionSelected:!0}),this.props.isSelected||this.props.onSelect()}},{key:"onMediaPressed",value:function(){var t=this.props,l=t.id,o=t.url;this.onSelectImage(),this.state.isUploadInProgress?(0,S.requestImageUploadCancelDialog)(l):(this.state.didUploadFail||l&&!(0,U.isURL)(o))&&(0,S.requestImageFailedRetryDialog)(l)}},{key:"onSelectImage",value:function(){this.props.isBlockSelected||this.props.onSelectBlock(),this.props.isSelected||this.props.onSelect(),this.state.captionSelected&&this.setState({captionSelected:!1})}},{key:"componentDidUpdate",value:function(t){var l=this.props,o=l.isSelected,n=l.image,s=l.url;n&&!s&&this.props.setAttributes({url:n.source_url,alt:n.alt_text}),this.state.captionSelected&&!o&&t.isSelected&&this.setState({captionSelected:!1})}},{key:"updateMediaProgress",value:function(){this.state.isUploadInProgress||this.setState({isUploadInProgress:!0})}},{key:"finishMediaUploadWithSuccess",value:function(t){this.props.setAttributes({id:t.mediaServerId,url:t.mediaUrl}),this.setState({isUploadInProgress:!1,didUploadFail:!1})}},{key:"finishMediaUploadWithFailure",value:function(){this.setState({isUploadInProgress:!1,didUploadFail:!0})}},{key:"renderContent",value:function(t){var n=this.props,s=n.url,c=n.isFirstItem,u=n.isLastItem,p=n.isSelected,h=n.caption,S=n.onRemove,b=n.onMoveForward,U=n.onMoveBackward,I=n.setAttributes,W=n['aria-label'],R=n.isCropped,x=n.getStylesFromColorScheme,L=this.state.isUploadInProgress,T=t.isUploadFailed,V=t.retryMessage,z=R?'cover':'contain',B=[F.default.image,{resizeMode:z},L?F.default.imageUploading:void 0],D=E(F.default.overlay,p?F.default.overlaySelected:void 0),A=x(F.default.captionPlaceholder,F.default.captionPlaceholderDark),q=!T&&p,O=!T&&!p&&!!h,j=O?F.default.captionExpandedContainer:F.default.captionContainer,N=O?F.default.captionExpanded:x(F.default.caption,F.default.captionDark);return(0,l.createElement)(l.Fragment,null,(0,l.createElement)(f.Image,{style:B,source:{uri:s},accessibilityLabel:W,ref:this.bindContainer}),T&&(0,l.createElement)(f.View,{style:F.default.uploadFailedContainer},(0,l.createElement)(f.View,{style:F.default.uploadFailed},(0,l.createElement)(y.Icon,(0,o.default)({icon:'warning'},F.default.uploadFailedIcon))),(0,l.createElement)(f.Text,{style:F.default.uploadFailedText},V)),(0,l.createElement)(f.View,{style:D},!L&&(0,l.createElement)(l.Fragment,null,p&&(0,l.createElement)(f.View,{style:F.default.toolbar},(0,l.createElement)(f.View,{style:F.default.moverButtonContainer},(0,l.createElement)(M.default,{style:k,icon:"arrow-left-alt",iconSize:15,onClick:c?void 0:U,accessibilityLabel:(0,v.__)('Move Image Backward'),"aria-disabled":c,disabled:!p}),(0,l.createElement)(f.View,{style:P}),(0,l.createElement)(M.default,{style:k,icon:"arrow-right-alt",iconSize:15,onClick:u?void 0:b,accessibilityLabel:(0,v.__)('Move Image Forward'),"aria-disabled":u,disabled:!p})),(0,l.createElement)(M.default,{style:w,icon:"no-alt",iconSize:20,onClick:S,accessibilityLabel:(0,v.__)('Remove Image'),disabled:!p})),(q||O)&&(0,l.createElement)(f.View,{style:j},(0,l.createElement)(f.ScrollView,{nestedScrollEnabled:!0,keyboardShouldPersistTaps:"handled"},(0,l.createElement)(C.RichText,{tagName:_,rootTagsToEliminate:['p'],placeholder:p?(0,v.__)('Write caption\u2026'):null,value:h,isSelected:this.state.captionSelected,onChange:function(t){return I({caption:t})},unstableOnFocus:this.onSelectCaption,fontSize:N.fontSize,style:N,textAlign:N.textAlign,placeholderTextColor:A.color,inlineToolbar:!0}))))))}},{key:"render",value:function(){var t=this.props,o=t.id,n=t.onRemove,s=t.getStylesFromColorScheme,c=t.isSelected,u=s(F.default.galleryImageContainer,F.default.galleryImageContainerDark);return(0,l.createElement)(f.TouchableWithoutFeedback,{onPress:this.onMediaPressed,accessible:!c,accessibilityLabel:this.accessibilityLabelImageContainer(),accessibilityRole:'imagebutton'},(0,l.createElement)(f.View,{style:u},(0,l.createElement)(C.MediaUploadProgress,{mediaId:o,onUpdateMediaProgress:this.updateMediaProgress,onFinishMediaUploadWithSuccess:this.finishMediaUploadWithSuccess,onFinishMediaUploadWithFailure:this.finishMediaUploadWithFailure,onMediaUploadStateReset:n,renderContent:this.renderContent})))}},{key:"accessibilityLabelImageContainer",value:function(){var t=this.props,l=t.caption,o=t['aria-label'];return(0,b.isEmpty)(l)?o:o+'. '+(0,v.sprintf)((0,v.__)('Image caption. %s'),l)}}]),I})(l.Component),R=(0,I.withPreferredColorScheme)(W);e.default=R},1547,[2,3,16,34,35,42,45,44,48,25,821,21,1170,347,1044,881,975,1548,1549]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.Button=s,e.default=void 0;var l=r(d[1]),o=r(d[2]),c=r(d[3]),n=t(r(d[4]));function s(t){var s=t.icon,u=t.iconSize,b=void 0===u?24:u,f=t.onClick,v=t.disabled,y=t['aria-disabled'],p=t.accessibilityLabel,_=void 0===p?'button':p,O=t.style,S=o.StyleSheet.compose(n.default.buttonActive,O),h=v||y,z=(h?n.default.buttonDisabled:n.default.button).fill;return(0,l.createElement)(o.TouchableOpacity,{style:S,activeOpacity:.7,accessibilityLabel:_,accessibilityRole:'button',onPress:f,disabled:h},(0,l.createElement)(c.Icon,{icon:s,fill:z,size:b}))}var u=s;e.default=u},1548,[2,3,25,1170,1549]); +__d(function(g,r,i,a,m,e,d){m.exports={galleryImageContainer:{flexGrow:1,flexShrink:1,flexBasis:0,height:150,backgroundColor:"#e9eff3"},galleryImageContainerDark:{backgroundColor:"#1d2327"},image:{position:"absolute",top:0,bottom:0,left:0,right:0,opacity:1},imageUploading:{opacity:.3},overlay:{position:"absolute",top:0,bottom:0,left:0,right:0,borderWidth:3,borderColor:"#0000"},overlaySelected:{borderColor:"#0087be"},button:{fill:"#f6f7f7",width:30},buttonDisabled:{fill:"#8e9196"},buttonActive:{flexDirection:"row",justifyContent:"center",alignItems:"center",borderRadius:6,borderColor:"#3c434a",backgroundColor:"#3c434a"},moverButtonContainer:{flexDirection:"row",alignItems:"center",borderRadius:3,backgroundColor:"#3c434a"},separator:{borderRightColor:"#8e9196",borderRightWidth:1,height:20},removeButton:{width:30,borderRadius:30},toolbar:{paddingTop:5,paddingRight:5,paddingBottom:5,paddingLeft:5,flexDirection:"row",justifyContent:"space-between"},uploadFailedContainer:{position:"absolute",backgroundColor:"rgba(0, 0, 0, 0.5)",width:"100%",height:"100%",justifyContent:"center",alignItems:"center"},uploadFailed:{width:24,height:24,justifyContent:"center",alignItems:"center"},uploadFailedIcon:{fill:"#fff",width:"100%",height:"100%"},uploadFailedText:{color:"#fff",fontSize:14,marginTop:5},captionContainer:{flexGrow:1,flexShrink:1,flexBasis:0,flexDirection:"row",alignItems:"flex-end"},caption:{fontSize:12,backgroundColor:"rgba(0, 0, 0, 0.4)",color:"#fff",fontFamily:"serif",minHeight:50,textAlign:"center"},captionPlaceholder:{color:"#ccc"},captionExpandedContainer:{maxHeight:150,position:"absolute",bottom:-3,left:-3,right:-3,paddingBottom:3,paddingLeft:3,paddingRight:3,backgroundColor:"rgba(0, 0, 0, 0.4)"},captionExpanded:{fontSize:12,backgroundColor:"#0000",color:"#fff",fontFamily:"serif",minHeight:50,textAlign:"center"}}},1549,[]); +__d(function(g,r,i,a,m,e,d){m.exports={galleryTilesContainerSelected:{marginBottom:16}}},1550,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),l=r(d[2]),o=t(r(d[3]));var u=function(t){var u=t.columns,c=t.children,f=t.spacing,p=void 0===f?10:f,h=t.style,v=l.StyleSheet.compose,s=n.Children.count(c)-1,y=Math.floor(s/u),S=n.Children.map(c,function(t,c){var f=Math.floor(c/u),h=f===y?s%u+1:u,v=c%u;return(0,n.createElement)(l.View,{style:[o.default.tileStyle,{width:100/h+"%",paddingLeft:p*(v/h),paddingRight:p*(1-(v+1)/h),paddingTop:0===f?0:p/2,paddingBottom:f===y?0:p/2}]},t)}),_=v(o.default.containerStyle,h);return(0,n.createElement)(l.View,{style:_},S)};e.default=u},1551,[2,3,25,1552]); +__d(function(g,r,i,a,m,e,d){m.exports={containerStyle:{flexDirection:"row",flexWrap:"wrap"},tileStyle:{overflow:"hidden",flexDirection:"row",alignItems:"center",borderColor:"transparent"}}},1552,[]); +__d(function(t,e,r,a,l,i,o){l.exports={name:"core/gallery",category:"common",attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{source:"attribute",selector:"img",attribute:"src"},fullUrl:{source:"attribute",selector:"img",attribute:"data-full-url"},link:{source:"attribute",selector:"img",attribute:"data-link"},alt:{source:"attribute",selector:"img",attribute:"alt",default:""},id:{source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",default:[]},columns:{type:"number"},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"},sizeSlug:{type:"string",default:"large"}}}},1553,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(n){var s=n.attributes,u=s.images,o=s.columns,p=void 0===o?(0,c.defaultColumnsNumber)(s):o,f=s.imageCrop,k=s.caption,E=s.linkTo;return(0,l.createElement)("figure",{className:"columns-"+p+" "+(f?'is-cropped':'')},(0,l.createElement)("ul",{className:"blocks-gallery-grid"},u.map(function(c){var n;switch(E){case'media':n=c.fullUrl||c.url;break;case'attachment':n=c.link}var s=(0,l.createElement)("img",{src:c.url,alt:c.alt,"data-id":c.id,"data-full-url":c.fullUrl,"data-link":c.link,className:c.id?"wp-image-"+c.id:null});return(0,l.createElement)("li",{key:c.id||c.url,className:"blocks-gallery-item"},(0,l.createElement)("figure",null,n?(0,l.createElement)("a",{href:n},s):s,!t.RichText.isEmpty(c.caption)&&(0,l.createElement)(t.RichText.Content,{tagName:"figcaption",className:"blocks-gallery-item__caption",value:c.caption})))})),!t.RichText.isEmpty(k)&&(0,l.createElement)(t.RichText.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:k}))};var l=r(d[0]),t=r(d[1]),c=r(d[2])},1554,[3,1044,1541]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),n=r(d[1]),o=r(d[2]),u=r(d[3]),l=function(t){return t?t.split(',').map(function(t){return parseInt(t,10)}):[]},c={from:[{type:'block',isMultiBlock:!0,blocks:['core/image'],transform:function(o){var u=o[0],l=u.align,c=u.sizeSlug;l=(0,t.every)(o,['align',l])?l:void 0,c=(0,t.every)(o,['sizeSlug',c])?c:void 0;var s=(0,t.filter)(o,function(t){return t.url});return(0,n.createBlock)('core/gallery',{images:s.map(function(t){return{id:t.id,url:t.url,alt:t.alt,caption:t.caption}}),ids:s.map(function(t){return t.id}),align:l,sizeSlug:c})}},{type:'shortcode',tag:'gallery',attributes:{images:{type:'array',shortcode:function(t){var n=t.named.ids;return l(n).map(function(t){return{id:t}})}},ids:{type:'array',shortcode:function(t){var n=t.named.ids;return l(n)}},columns:{type:'number',shortcode:function(t){var n=t.named.columns;return parseInt(void 0===n?'3':n,10)}},linkTo:{type:'string',shortcode:function(t){var n=t.named.link,o=void 0===n?'attachment':n;return'file'===o?'media':o}}}},{type:'files',isMatch:function(n){return 1!==n.length&&(0,t.every)(n,function(t){return 0===t.type.indexOf('image/')})},transform:function(t){return(0,n.createBlock)('core/gallery',{images:t.map(function(t){return(0,u.pickRelevantMediaFiles)({url:(0,o.createBlobURL)(t)})})})}}],to:[{type:'block',blocks:['core/image'],transform:function(t){var o=t.images,u=t.align,l=t.sizeSlug;return o.length>0?o.map(function(t){var o=t.id,c=t.url,s=t.alt,f=t.caption;return(0,n.createBlock)('core/image',{id:o,url:c,alt:s,caption:f,align:u,sizeSlug:l})}):(0,n.createBlock)('core/image',{align:u})}}]};e.default=c},1555,[21,1045,1520,1541]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.settings=e.name=void 0;var s=r(d[1]),o=t(r(d[2])),n=t(r(d[3]));e.name='core/archives';var c={title:(0,s.__)('Archives'),description:(0,s.__)('Display a monthly archive of your posts.'),icon:n.default,category:'widgets',supports:{align:!0,html:!1},edit:o.default};e.settings=c},1556,[2,347,1557,1560]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var u=t.attributes,_=t.setAttributes,h=u.showPostCounts,b=u.displayAsDropdown;return(0,n.createElement)(n.Fragment,null,(0,n.createElement)(s.InspectorControls,null,(0,n.createElement)(o.PanelBody,{title:(0,l.__)('Archives Settings')},(0,n.createElement)(o.ToggleControl,{label:(0,l.__)('Display as Dropdown'),checked:b,onChange:function(){return _({displayAsDropdown:!b})}}),(0,n.createElement)(o.ToggleControl,{label:(0,l.__)('Show Post Counts'),checked:h,onChange:function(){return _({showPostCounts:!h})}}))),(0,n.createElement)(o.Disabled,null,(0,n.createElement)(c.default,{block:"core/archives",attributes:u})))};var n=r(d[1]),o=r(d[2]),l=r(d[3]),s=r(d[4]),c=t(r(d[5]))},1557,[2,3,1170,347,1044,1558]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),o=t(r(d[2])),u=t(r(d[3])),c=t(r(d[4])),f=r(d[5]),l=t(r(d[6])),p=t(r(d[7]));function s(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function w(t){for(var n=1;n1&&void 0!==arguments[1]?arguments[1]:null,s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return(0,P.addQueryArgs)("/wp/v2/block-renderer/"+t,O({context:'edit'},null!==n?{attributes:n}:{},{},s))}var R=(function(t){function h(t){var n;return(0,o.default)(this,h),(n=(0,c.default)(this,(0,u.default)(h).call(this,t))).state={response:null},n}return(0,p.default)(h,t),(0,l.default)(h,[{key:"componentDidMount",value:function(){this.isStillMounted=!0,this.fetch(this.props),this.fetch=(0,f.debounce)(this.fetch,500)}},{key:"componentWillUnmount",value:function(){this.isStillMounted=!1}},{key:"componentDidUpdate",value:function(t){(0,f.isEqual)(t,this.props)||this.fetch(this.props)}},{key:"fetch",value:function(t){var n=this;if(this.isStillMounted){null!==this.state.response&&this.setState({response:null});var s=t.block,o=t.attributes,l=void 0===o?null:o,c=t.urlQueryArgs,u=S(s,l,void 0===c?{}:c),p=this.currentFetchRequest=(0,y.default)({path:u}).then(function(t){n.isStillMounted&&p===n.currentFetchRequest&&t&&n.setState({response:t.rendered})}).catch(function(t){n.isStillMounted&&p===n.currentFetchRequest&&n.setState({response:{error:!0,errorMsg:t.message}})});return p}}},{key:"render",value:function(){var t=this.state.response,o=this.props,l=o.className,c=o.EmptyResponsePlaceholder,u=o.ErrorResponsePlaceholder,p=o.LoadingResponsePlaceholder;return''===t?(0,n.createElement)(c,(0,s.default)({response:t},this.props)):t?t.error?(0,n.createElement)(u,(0,s.default)({response:t},this.props)):(0,n.createElement)(n.RawHTML,{key:"html",className:l},t):(0,n.createElement)(p,(0,s.default)({response:t},this.props))}}]),h})(n.Component);e.ServerSideRender=R,R.defaultProps={EmptyResponsePlaceholder:function(t){var s=t.className;return(0,n.createElement)(b.Placeholder,{className:s},(0,v.__)('Block rendered as empty.')+s)},ErrorResponsePlaceholder:function(t){var s=t.response,o=t.className,l=(0,v.sprintf)((0,v.__)('Error loading block: %s'),s.errorMsg);return(0,n.createElement)(b.Placeholder,{className:o},l)},LoadingResponsePlaceholder:function(t){var s=t.className;return(0,n.createElement)(b.Placeholder,{className:s},(0,n.createElement)(b.Spinner,null))}};var k=R;e.default=k},1559,[2,3,16,34,35,42,45,48,18,21,347,875,881,1170]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var H=r(d[0]),V=r(d[1]),t=(0,H.createElement)(V.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,H.createElement)(V.Path,{d:"M21 6V20C21 21.1 20.1 22 19 22H5C3.89 22 3 21.1 3 20L3.01 6C3.01 4.9 3.89 4 5 4H6V2H8V4H16V2H18V4H19C20.1 4 21 4.9 21 6ZM5 8H19V6H5V8ZM19 20V10H5V20H19ZM11 12H17V14H11V12ZM17 16H11V18H17V16ZM7 12H9V14H7V12ZM9 18V16H7V18H9Z"}));e.default=t},1560,[3,1170]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return _.default}}),e.settings=e.name=void 0;var n=r(d[1]),u=t(r(d[2])),o=t(r(d[3])),s=t(r(d[4])),_=t(r(d[5])),l=t(r(d[6])),f=t(r(d[7])),c=_.default.name;e.name=c;var p={title:(0,n.__)('Audio'),description:(0,n.__)('Embed a simple audio player.'),keywords:[(0,n.__)('music'),(0,n.__)('sound'),(0,n.__)('podcast'),(0,n.__)('recording')],icon:s.default,transforms:f.default,deprecated:u.default,supports:{align:!0},edit:o.default,save:l.default};e.settings=p},1561,[2,347,1562,1563,1564,1570,1571,1572]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),o=r(d[1]),u=[{attributes:{src:{type:'string',source:'attribute',selector:'audio',attribute:'src'},caption:{type:'string',source:'html',selector:'figcaption'},id:{type:'number'},autoplay:{type:'boolean',source:'attribute',selector:'audio',attribute:'autoplay'},loop:{type:'boolean',source:'attribute',selector:'audio',attribute:'loop'},preload:{type:'string',source:'attribute',selector:'audio',attribute:'preload'}},supports:{align:!0},save:function(u){var l=u.attributes,c=l.autoplay,s=l.caption,n=l.loop,p=l.preload,b=l.src;return(0,t.createElement)("figure",null,(0,t.createElement)("audio",{controls:"controls",src:b,autoPlay:c,loop:n,preload:p}),!o.RichText.isEmpty(s)&&(0,t.createElement)(o.RichText.Content,{tagName:"figcaption",value:s}))}}];e.default=u},1562,[3,1044]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),l=t(r(d[2])),n=t(r(d[3])),c=t(r(d[4])),u=t(r(d[5])),s=t(r(d[6])),p=t(r(d[7])),f=t(r(d[8])),v=t(r(d[9])),b=r(d[10]),h=r(d[11]),E=r(d[12]),_=r(d[13]),y=r(d[14]),A=r(d[15]),U=t(r(d[16])),S=r(d[17]),k=['audio'],C=(function(t){function h(){var t;return(0,c.default)(this,h),(t=(0,s.default)(this,(0,p.default)(h).apply(this,arguments))).state={editing:!t.props.attributes.src},t.toggleAttribute=t.toggleAttribute.bind((0,f.default)(t)),t.onSelectURL=t.onSelectURL.bind((0,f.default)(t)),t.onUploadError=t.onUploadError.bind((0,f.default)(t)),t}return(0,v.default)(h,t),(0,u.default)(h,[{key:"componentDidMount",value:function(){var t=this,o=this.props,l=o.attributes,c=o.mediaUpload,u=o.noticeOperations,s=o.setAttributes,p=l.id,f=l.src,v=void 0===f?'':f;if(!p&&(0,b.isBlobURL)(v)){var h=(0,b.getBlobByURL)(v);h&&c({filesList:[h],onFileChange:function(t){var o=(0,n.default)(t,1)[0],l=o.id,c=o.url;s({id:l,src:c})},onError:function(o){s({src:void 0,id:void 0}),t.setState({editing:!0}),u.createErrorNotice(o)},allowedTypes:k})}}},{key:"toggleAttribute",value:function(t){var o=this;return function(n){o.props.setAttributes((0,l.default)({},t,n))}}},{key:"onSelectURL",value:function(t){var o=this.props,l=o.attributes,n=o.setAttributes;if(t!==l.src){var c=(0,S.createUpgradedEmbedBlock)({attributes:{url:t}});if(void 0!==c)return void this.props.onReplace(c);n({src:t,id:void 0})}this.setState({editing:!1})}},{key:"onUploadError",value:function(t){var o=this.props.noticeOperations;o.removeAllNotices(),o.createErrorNotice(t)}},{key:"getAutoplayHelp",value:function(t){return t?(0,y.__)('Note: Autoplaying audio may cause usability issues for some visitors.'):null}},{key:"render",value:function(){var t=this,l=this.props.attributes,n=l.autoplay,c=l.caption,u=l.loop,s=l.preload,p=l.src,f=this.props,v=f.setAttributes,b=f.isSelected,h=f.className,A=f.noticeUI,S=function(){t.setState({editing:!0})};return this.state.editing?(0,o.createElement)(_.MediaPlaceholder,{icon:(0,o.createElement)(_.BlockIcon,{icon:U.default}),className:h,onSelect:function(o){if(!o||!o.url)return v({src:void 0,id:void 0}),void S();v({src:o.url,id:o.id}),t.setState({src:o.url,editing:!1})},onSelectURL:this.onSelectURL,accept:"audio/*",allowedTypes:k,value:this.props.attributes,notices:A,onError:this.onUploadError}):(0,o.createElement)(o.Fragment,null,(0,o.createElement)(_.BlockControls,null,(0,o.createElement)(E.ToolbarGroup,null,(0,o.createElement)(E.IconButton,{className:"components-icon-button components-toolbar__control",label:(0,y.__)('Edit audio'),onClick:S,icon:"edit"}))),(0,o.createElement)(_.InspectorControls,null,(0,o.createElement)(E.PanelBody,{title:(0,y.__)('Audio Settings')},(0,o.createElement)(E.ToggleControl,{label:(0,y.__)('Autoplay'),onChange:this.toggleAttribute('autoplay'),checked:n,help:this.getAutoplayHelp}),(0,o.createElement)(E.ToggleControl,{label:(0,y.__)('Loop'),onChange:this.toggleAttribute('loop'),checked:u}),(0,o.createElement)(E.SelectControl,{label:(0,y.__)('Preload'),value:void 0!==s?s:'none',onChange:function(t){return v({preload:'none'!==t?t:void 0})},options:[{value:'auto',label:(0,y.__)('Auto')},{value:'metadata',label:(0,y.__)('Metadata')},{value:'none',label:(0,y.__)('None')}]}))),(0,o.createElement)("figure",{className:h},(0,o.createElement)(E.Disabled,null,(0,o.createElement)("audio",{controls:"controls",src:p})),(!_.RichText.isEmpty(c)||b)&&(0,o.createElement)(_.RichText,{tagName:"figcaption",placeholder:(0,y.__)('Write caption\u2026'),value:c,onChange:function(t){return v({caption:t})},inlineToolbar:!0})))}}]),h})(o.Component),N=(0,h.compose)([(0,A.withSelect)(function(t){return{mediaUpload:(0,t('core/block-editor').getSettings)().mediaUpload}}),E.withNotices])(C);e.default=N},1563,[2,3,18,5,34,35,42,45,44,48,1520,975,1170,1044,347,911,1564,1565]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),l=r(d[1]),n=(0,t.createElement)(l.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)(l.Path,{d:"M0,0h24v24H0V0z",fill:"none"}),(0,t.createElement)(l.Path,{d:"m12 3l0.01 10.55c-0.59-0.34-1.27-0.55-2-0.55-2.22 0-4.01 1.79-4.01 4s1.79 4 4.01 4 3.99-1.79 3.99-4v-10h4v-4h-6zm-1.99 16c-1.1 0-2-0.9-2-2s0.9-2 2-2 2 0.9 2 2-0.9 2-2 2z"}));e.default=n},1564,[3,1170]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.getClassNames=_,e.fallback=function(t,o){var c=(0,n.createElement)("a",{href:t},t);o((0,v.createBlock)('core/paragraph',{content:(0,n.renderToString)(c)}))},e.getAttributesFromPreview=e.createUpgradedEmbedBlock=e.getPhotoHtml=e.isFromWordPress=e.findBlock=e.matchesPatterns=void 0;var n=r(d[1]),o=t(r(d[2])),c=t(r(d[3])),l=r(d[4]),u=r(d[5]),f=r(d[6]),s=t(r(d[7])),p=t(r(d[8])),v=r(d[9]);function h(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function O(t){for(var n=1;n1&&void 0!==arguments[1]?arguments[1]:[]).some(function(n){return t.match(n)})};e.matchesPatterns=b;var E=function(t){for(var n=0,o=[].concat((0,c.default)(l.common),(0,c.default)(l.others));n1&&void 0!==arguments[1]?arguments[1]:'',c=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(!c){for(var l={'wp-has-aspect-ratio':!1},f=0;f=E.ratio)return(0,s.default)(n,(b={},(0,o.default)(b,E.className,c),(0,o.default)(b,'wp-has-aspect-ratio',c),b))}return n}e.createUpgradedEmbedBlock=function(t,n){var o=t.preview,c=t.name,l=t.attributes.url;if(l){var f=E(l);if((0,v.getBlockType)(f)){if(u.WORDPRESS_EMBED_BLOCK!==c&&u.DEFAULT_EMBED_BLOCK!==f&&c!==f)return(0,v.createBlock)(f,{url:l});if(o){var s=o.html;if(P(s)&&u.WORDPRESS_EMBED_BLOCK!==c)return(0,v.createBlock)(u.WORDPRESS_EMBED_BLOCK,O({url:l},n))}}}};var S=(0,p.default)(function(t,n,o,c){var l=!(arguments.length>4&&void 0!==arguments[4])||arguments[4];if(!t)return{};var u={},s=t.type,p=void 0===s?'rich':s,v=t.html,h=t.provider_name,O=(0,f.kebabCase)((0,f.toLower)(''!==h?h:n));return P(v)&&(p='wp-embed'),(v||'photo'===p)&&(u.type=p,u.providerNameSlug=O),u.className=_(v,o,c&&l),u});e.getAttributesFromPreview=S},1565,[2,3,18,9,1566,1568,21,1569,353,1045]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.others=e.common=void 0;var t=r(d[0]),o=r(d[1]),n=r(d[2]),s=[{name:'core-embed/twitter',settings:{title:'Twitter',icon:t.embedTwitterIcon,keywords:['tweet'],description:(0,o.__)('Embed a tweet.')},patterns:[/^https?:\/\/(www\.)?twitter\.com\/.+/i]},{name:'core-embed/youtube',settings:{title:'YouTube',icon:t.embedYouTubeIcon,keywords:[(0,o.__)('music'),(0,o.__)('video')],description:(0,o.__)('Embed a YouTube video.')},patterns:[/^https?:\/\/((m|www)\.)?youtube\.com\/.+/i,/^https?:\/\/youtu\.be\/.+/i]},{name:'core-embed/facebook',settings:{title:'Facebook',icon:t.embedFacebookIcon,description:(0,o.__)('Embed a Facebook post.')},patterns:[/^https?:\/\/www\.facebook.com\/.+/i]},{name:'core-embed/instagram',settings:{title:'Instagram',icon:t.embedInstagramIcon,keywords:[(0,o.__)('image')],description:(0,o.__)('Embed an Instagram post.')},patterns:[/^https?:\/\/(www\.)?instagr(\.am|am\.com)\/.+/i]},{name:'core-embed/wordpress',settings:{title:'WordPress',icon:t.embedWordPressIcon,keywords:[(0,o.__)('post'),(0,o.__)('blog')],responsive:!1,description:(0,o.__)('Embed a WordPress post.')}},{name:'core-embed/soundcloud',settings:{title:'SoundCloud',icon:t.embedAudioIcon,keywords:[(0,o.__)('music'),(0,o.__)('audio')],description:(0,o.__)('Embed SoundCloud content.')},patterns:[/^https?:\/\/(www\.)?soundcloud\.com\/.+/i]},{name:'core-embed/spotify',settings:{title:'Spotify',icon:t.embedSpotifyIcon,keywords:[(0,o.__)('music'),(0,o.__)('audio')],description:(0,o.__)('Embed Spotify content.')},patterns:[/^https?:\/\/(open|play)\.spotify\.com\/.+/i]},{name:'core-embed/flickr',settings:{title:'Flickr',icon:t.embedFlickrIcon,keywords:[(0,o.__)('image')],description:(0,o.__)('Embed Flickr content.')},patterns:[/^https?:\/\/(www\.)?flickr\.com\/.+/i,/^https?:\/\/flic\.kr\/.+/i]},{name:'core-embed/vimeo',settings:{title:'Vimeo',icon:t.embedVimeoIcon,keywords:[(0,o.__)('video')],description:(0,o.__)('Embed a Vimeo video.')},patterns:[/^https?:\/\/(www\.)?vimeo\.com\/.+/i]}];e.common=s;var c=[{name:'core-embed/animoto',settings:{title:'Animoto',icon:t.embedVideoIcon,description:(0,o.__)('Embed an Animoto video.')},patterns:[/^https?:\/\/(www\.)?(animoto|video214)\.com\/.+/i]},{name:'core-embed/cloudup',settings:{title:'Cloudup',icon:t.embedContentIcon,description:(0,o.__)('Embed Cloudup content.')},patterns:[/^https?:\/\/cloudup\.com\/.+/i]},{name:'core-embed/collegehumor',settings:{title:'CollegeHumor',icon:t.embedVideoIcon,description:(0,o.__)('Embed CollegeHumor content.'),supports:{inserter:!1}},patterns:[]},{name:'core-embed/crowdsignal',settings:{title:'Crowdsignal',icon:t.embedContentIcon,keywords:['polldaddy'],transform:[{type:'block',blocks:['core-embed/polldaddy'],transform:function(t){return(0,n.createBlock)('core-embed/crowdsignal',{content:t})}}],description:(0,o.__)('Embed Crowdsignal (formerly Polldaddy) content.')},patterns:[/^https?:\/\/((.+\.)?polldaddy\.com|poll\.fm|.+\.survey\.fm)\/.+/i]},{name:'core-embed/dailymotion',settings:{title:'Dailymotion',icon:t.embedVideoIcon,description:(0,o.__)('Embed a Dailymotion video.')},patterns:[/^https?:\/\/(www\.)?dailymotion\.com\/.+/i]},{name:'core-embed/hulu',settings:{title:'Hulu',icon:t.embedVideoIcon,description:(0,o.__)('Embed Hulu content.')},patterns:[/^https?:\/\/(www\.)?hulu\.com\/.+/i]},{name:'core-embed/imgur',settings:{title:'Imgur',icon:t.embedPhotoIcon,description:(0,o.__)('Embed Imgur content.')},patterns:[/^https?:\/\/(.+\.)?imgur\.com\/.+/i]},{name:'core-embed/issuu',settings:{title:'Issuu',icon:t.embedContentIcon,description:(0,o.__)('Embed Issuu content.')},patterns:[/^https?:\/\/(www\.)?issuu\.com\/.+/i]},{name:'core-embed/kickstarter',settings:{title:'Kickstarter',icon:t.embedContentIcon,description:(0,o.__)('Embed Kickstarter content.')},patterns:[/^https?:\/\/(www\.)?kickstarter\.com\/.+/i,/^https?:\/\/kck\.st\/.+/i]},{name:'core-embed/meetup-com',settings:{title:'Meetup.com',icon:t.embedContentIcon,description:(0,o.__)('Embed Meetup.com content.')},patterns:[/^https?:\/\/(www\.)?meetu(\.ps|p\.com)\/.+/i]},{name:'core-embed/mixcloud',settings:{title:'Mixcloud',icon:t.embedAudioIcon,keywords:[(0,o.__)('music'),(0,o.__)('audio')],description:(0,o.__)('Embed Mixcloud content.')},patterns:[/^https?:\/\/(www\.)?mixcloud\.com\/.+/i]},{name:'core-embed/polldaddy',settings:{title:'Polldaddy',icon:t.embedContentIcon,description:(0,o.__)('Embed Polldaddy content.'),supports:{inserter:!1}},patterns:[]},{name:'core-embed/reddit',settings:{title:'Reddit',icon:t.embedRedditIcon,description:(0,o.__)('Embed a Reddit thread.')},patterns:[/^https?:\/\/(www\.)?reddit\.com\/.+/i]},{name:'core-embed/reverbnation',settings:{title:'ReverbNation',icon:t.embedAudioIcon,description:(0,o.__)('Embed ReverbNation content.')},patterns:[/^https?:\/\/(www\.)?reverbnation\.com\/.+/i]},{name:'core-embed/screencast',settings:{title:'Screencast',icon:t.embedVideoIcon,description:(0,o.__)('Embed Screencast content.')},patterns:[/^https?:\/\/(www\.)?screencast\.com\/.+/i]},{name:'core-embed/scribd',settings:{title:'Scribd',icon:t.embedContentIcon,description:(0,o.__)('Embed Scribd content.')},patterns:[/^https?:\/\/(www\.)?scribd\.com\/.+/i]},{name:'core-embed/slideshare',settings:{title:'Slideshare',icon:t.embedContentIcon,description:(0,o.__)('Embed Slideshare content.')},patterns:[/^https?:\/\/(.+?\.)?slideshare\.net\/.+/i]},{name:'core-embed/smugmug',settings:{title:'SmugMug',icon:t.embedPhotoIcon,description:(0,o.__)('Embed SmugMug content.')},patterns:[/^https?:\/\/(www\.)?smugmug\.com\/.+/i]},{name:'core-embed/speaker',settings:{title:'Speaker',icon:t.embedAudioIcon,supports:{inserter:!1}},patterns:[]},{name:'core-embed/speaker-deck',settings:{title:'Speaker Deck',icon:t.embedContentIcon,transform:[{type:'block',blocks:['core-embed/speaker'],transform:function(t){return(0,n.createBlock)('core-embed/speaker-deck',{content:t})}}],description:(0,o.__)('Embed Speaker Deck content.')},patterns:[/^https?:\/\/(www\.)?speakerdeck\.com\/.+/i]},{name:'core-embed/ted',settings:{title:'TED',icon:t.embedVideoIcon,description:(0,o.__)('Embed a TED video.')},patterns:[/^https?:\/\/(www\.|embed\.)?ted\.com\/.+/i]},{name:'core-embed/tumblr',settings:{title:'Tumblr',icon:t.embedTumblrIcon,description:(0,o.__)('Embed a Tumblr post.')},patterns:[/^https?:\/\/(www\.)?tumblr\.com\/.+/i]},{name:'core-embed/videopress',settings:{title:'VideoPress',icon:t.embedVideoIcon,keywords:[(0,o.__)('video')],description:(0,o.__)('Embed a VideoPress video.')},patterns:[/^https?:\/\/videopress\.com\/.+/i]},{name:'core-embed/wordpress-tv',settings:{title:'WordPress.tv',icon:t.embedVideoIcon,description:(0,o.__)('Embed a WordPress.tv video.')},patterns:[/^https?:\/\/wordpress\.tv\/.+/i]},{name:'core-embed/amazon-kindle',settings:{title:'Amazon Kindle',icon:t.embedAmazonIcon,keywords:[(0,o.__)('ebook')],responsive:!1,description:(0,o.__)('Embed Amazon Kindle content.')},patterns:[/^https?:\/\/([a-z0-9-]+\.)?(amazon|amzn)(\.[a-z]{2,4})+\/.+/i,/^https?:\/\/(www\.)?(a\.co|z\.cn)\/.+/i]}];e.others=c},1566,[1567,347,1045]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.embedAmazonIcon=e.embedTumblrIcon=e.embedRedditIcon=e.embedVimeoIcon=e.embedFlickrIcon=e.embedSpotifyIcon=e.embedWordPressIcon=e.embedInstagramIcon=e.embedFacebookIcon=e.embedYouTubeIcon=e.embedTwitterIcon=e.embedVideoIcon=e.embedPhotoIcon=e.embedAudioIcon=e.embedContentIcon=void 0;var c=r(d[0]),t=r(d[1]),n=(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,c.createElement)(t.Path,{d:"M0,0h24v24H0V0z",fill:"none"}),(0,c.createElement)(t.Path,{d:"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z"}));e.embedContentIcon=n;var o=(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,c.createElement)(t.Path,{fill:"none",d:"M0 0h24v24H0V0z"}),(0,c.createElement)(t.Path,{d:"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z"}));e.embedAudioIcon=o;var l=(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,c.createElement)(t.Path,{d:"M0,0h24v24H0V0z",fill:"none"}),(0,c.createElement)(t.Path,{d:"M21,4H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V6C23,4.9,22.1,4,21,4z M21,18H3V6h18V18z"}),(0,c.createElement)(t.Polygon,{points:"14.5 11 11 15.51 8.5 12.5 5 17 19 17"}));e.embedPhotoIcon=l;var v=(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,c.createElement)(t.Path,{d:"M0,0h24v24H0V0z",fill:"none"}),(0,c.createElement)(t.Path,{d:"m10 8v8l5-4-5-4zm9-5h-14c-1.1 0-2 0.9-2 2v14c0 1.1 0.9 2 2 2h14c1.1 0 2-0.9 2-2v-14c0-1.1-0.9-2-2-2zm0 16h-14v-14h14v14z"}));e.embedVideoIcon=v;var h={foreground:'#1da1f2',src:(0,c.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,c.createElement)(t.G,null,(0,c.createElement)(t.Path,{d:"M22.23 5.924c-.736.326-1.527.547-2.357.646.847-.508 1.498-1.312 1.804-2.27-.793.47-1.67.812-2.606.996C18.325 4.498 17.258 4 16.078 4c-2.266 0-4.103 1.837-4.103 4.103 0 .322.036.635.106.935-3.41-.17-6.433-1.804-8.457-4.287-.353.607-.556 1.312-.556 2.064 0 1.424.724 2.68 1.825 3.415-.673-.022-1.305-.207-1.86-.514v.052c0 1.988 1.415 3.647 3.293 4.023-.344.095-.707.145-1.08.145-.265 0-.522-.026-.773-.074.522 1.63 2.038 2.817 3.833 2.85-1.404 1.1-3.174 1.757-5.096 1.757-.332 0-.66-.02-.98-.057 1.816 1.164 3.973 1.843 6.29 1.843 7.547 0 11.675-6.252 11.675-11.675 0-.178-.004-.355-.012-.53.802-.578 1.497-1.3 2.047-2.124z"})))};e.embedTwitterIcon=h;var s={foreground:'#ff0000',src:(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24"},(0,c.createElement)(t.Path,{d:"M21.8 8s-.195-1.377-.795-1.984c-.76-.797-1.613-.8-2.004-.847-2.798-.203-6.996-.203-6.996-.203h-.01s-4.197 0-6.996.202c-.39.046-1.242.05-2.003.846C2.395 6.623 2.2 8 2.2 8S2 9.62 2 11.24v1.517c0 1.618.2 3.237.2 3.237s.195 1.378.795 1.985c.76.797 1.76.77 2.205.855 1.6.153 6.8.2 6.8.2s4.203-.005 7-.208c.392-.047 1.244-.05 2.005-.847.6-.607.795-1.985.795-1.985s.2-1.618.2-3.237v-1.517C22 9.62 21.8 8 21.8 8zM9.935 14.595v-5.62l5.403 2.82-5.403 2.8z"}))};e.embedYouTubeIcon=s;var z={foreground:'#3b5998',src:(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24"},(0,c.createElement)(t.Path,{d:"M20 3H4c-.6 0-1 .4-1 1v16c0 .5.4 1 1 1h8.6v-7h-2.3v-2.7h2.3v-2c0-2.3 1.4-3.6 3.5-3.6 1 0 1.8.1 2.1.1v2.4h-1.4c-1.1 0-1.3.5-1.3 1.3v1.7h2.7l-.4 2.8h-2.3v7H20c.5 0 1-.4 1-1V4c0-.6-.4-1-1-1z"}))};e.embedFacebookIcon=z;var w=(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24"},(0,c.createElement)(t.G,null,(0,c.createElement)(t.Path,{d:"M12 4.622c2.403 0 2.688.01 3.637.052.877.04 1.354.187 1.67.31.42.163.72.358 1.036.673.315.315.51.615.673 1.035.123.317.27.794.31 1.67.043.95.052 1.235.052 3.638s-.01 2.688-.052 3.637c-.04.877-.187 1.354-.31 1.67-.163.42-.358.72-.673 1.036-.315.315-.615.51-1.035.673-.317.123-.794.27-1.67.31-.95.043-1.234.052-3.638.052s-2.688-.01-3.637-.052c-.877-.04-1.354-.187-1.67-.31-.42-.163-.72-.358-1.036-.673-.315-.315-.51-.615-.673-1.035-.123-.317-.27-.794-.31-1.67-.043-.95-.052-1.235-.052-3.638s.01-2.688.052-3.637c.04-.877.187-1.354.31-1.67.163-.42.358-.72.673-1.036.315-.315.615-.51 1.035-.673.317-.123.794-.27 1.67-.31.95-.043 1.235-.052 3.638-.052M12 3c-2.444 0-2.75.01-3.71.054s-1.613.196-2.185.418c-.592.23-1.094.538-1.594 1.04-.5.5-.807 1-1.037 1.593-.223.572-.375 1.226-.42 2.184C3.01 9.25 3 9.555 3 12s.01 2.75.054 3.71.196 1.613.418 2.186c.23.592.538 1.094 1.038 1.594s1.002.808 1.594 1.038c.572.222 1.227.375 2.185.418.96.044 1.266.054 3.71.054s2.75-.01 3.71-.054 1.613-.196 2.186-.418c.592-.23 1.094-.538 1.594-1.038s.808-1.002 1.038-1.594c.222-.572.375-1.227.418-2.185.044-.96.054-1.266.054-3.71s-.01-2.75-.054-3.71-.196-1.613-.418-2.186c-.23-.592-.538-1.094-1.038-1.594s-1.002-.808-1.594-1.038c-.572-.222-1.227-.375-2.185-.418C14.75 3.01 14.445 3 12 3zm0 4.378c-2.552 0-4.622 2.07-4.622 4.622s2.07 4.622 4.622 4.622 4.622-2.07 4.622-4.622S14.552 7.378 12 7.378zM12 15c-1.657 0-3-1.343-3-3s1.343-3 3-3 3 1.343 3 3-1.343 3-3 3zm4.804-8.884c-.596 0-1.08.484-1.08 1.08s.484 1.08 1.08 1.08c.596 0 1.08-.484 1.08-1.08s-.483-1.08-1.08-1.08z"})));e.embedInstagramIcon=w;var E={foreground:'#0073AA',src:(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24"},(0,c.createElement)(t.G,null,(0,c.createElement)(t.Path,{d:"M12.158 12.786l-2.698 7.84c.806.236 1.657.365 2.54.365 1.047 0 2.05-.18 2.986-.51-.024-.037-.046-.078-.065-.123l-2.762-7.57zM3.008 12c0 3.56 2.07 6.634 5.068 8.092L3.788 8.342c-.5 1.117-.78 2.354-.78 3.658zm15.06-.454c0-1.112-.398-1.88-.74-2.48-.456-.74-.883-1.368-.883-2.11 0-.825.627-1.595 1.51-1.595.04 0 .078.006.116.008-1.598-1.464-3.73-2.36-6.07-2.36-3.14 0-5.904 1.613-7.512 4.053.21.008.41.012.58.012.94 0 2.395-.114 2.395-.114.484-.028.54.684.057.74 0 0-.487.058-1.03.086l3.275 9.74 1.968-5.902-1.4-3.838c-.485-.028-.944-.085-.944-.085-.486-.03-.43-.77.056-.742 0 0 1.484.114 2.368.114.94 0 2.397-.114 2.397-.114.486-.028.543.684.058.74 0 0-.488.058-1.03.086l3.25 9.665.897-2.997c.456-1.17.684-2.137.684-2.907zm1.82-3.86c.04.286.06.593.06.924 0 .912-.17 1.938-.683 3.22l-2.746 7.94c2.672-1.558 4.47-4.454 4.47-7.77 0-1.564-.4-3.033-1.1-4.314zM12 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10z"})))};e.embedWordPressIcon=E;var b={foreground:'#1db954',src:(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24"},(0,c.createElement)(t.Path,{d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2m4.586 14.424c-.18.295-.563.387-.857.207-2.35-1.434-5.305-1.76-8.786-.963-.335.077-.67-.133-.746-.47-.077-.334.132-.67.47-.745 3.808-.87 7.076-.496 9.712 1.115.293.18.386.563.206.857M17.81 13.7c-.226.367-.706.482-1.072.257-2.687-1.652-6.785-2.13-9.965-1.166-.413.127-.848-.106-.973-.517-.125-.413.108-.848.52-.973 3.632-1.102 8.147-.568 11.234 1.328.366.226.48.707.256 1.072m.105-2.835C14.692 8.95 9.375 8.775 6.297 9.71c-.493.15-1.016-.13-1.166-.624-.148-.495.13-1.017.625-1.167 3.532-1.073 9.404-.866 13.115 1.337.445.264.59.838.327 1.282-.264.443-.838.59-1.282.325"}))};e.embedSpotifyIcon=b;var V=(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24"},(0,c.createElement)(t.Path,{d:"m6.5 7c-2.75 0-5 2.25-5 5s2.25 5 5 5 5-2.25 5-5-2.25-5-5-5zm11 0c-2.75 0-5 2.25-5 5s2.25 5 5 5 5-2.25 5-5-2.25-5-5-5z"}));e.embedFlickrIcon=V;var I={foreground:'#1ab7ea',src:(0,c.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,c.createElement)(t.G,null,(0,c.createElement)(t.Path,{d:"M22.396 7.164c-.093 2.026-1.507 4.8-4.245 8.32C15.323 19.16 12.93 21 10.97 21c-1.214 0-2.24-1.12-3.08-3.36-.56-2.052-1.118-4.105-1.68-6.158-.622-2.24-1.29-3.36-2.004-3.36-.156 0-.7.328-1.634.98l-.978-1.26c1.027-.903 2.04-1.806 3.037-2.71C6 3.95 7.03 3.328 7.716 3.265c1.62-.156 2.616.95 2.99 3.32.404 2.558.685 4.148.84 4.77.468 2.12.982 3.18 1.543 3.18.435 0 1.09-.687 1.963-2.064.872-1.376 1.34-2.422 1.402-3.142.125-1.187-.343-1.782-1.4-1.782-.5 0-1.013.115-1.542.34 1.023-3.35 2.977-4.976 5.862-4.883 2.14.063 3.148 1.45 3.024 4.16z"})))};e.embedVimeoIcon=I;var M=(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24"},(0,c.createElement)(t.Path,{d:"M22 11.816c0-1.256-1.02-2.277-2.277-2.277-.593 0-1.122.24-1.526.613-1.48-.965-3.455-1.594-5.647-1.69l1.17-3.702 3.18.75c.01 1.027.847 1.86 1.877 1.86 1.035 0 1.877-.84 1.877-1.877 0-1.035-.842-1.877-1.877-1.877-.77 0-1.43.466-1.72 1.13L13.55 3.92c-.204-.047-.4.067-.46.26l-1.35 4.27c-2.317.037-4.412.67-5.97 1.67-.402-.355-.917-.58-1.493-.58C3.02 9.54 2 10.56 2 11.815c0 .814.433 1.523 1.078 1.925-.037.222-.06.445-.06.673 0 3.292 4.01 5.97 8.94 5.97s8.94-2.678 8.94-5.97c0-.214-.02-.424-.052-.632.687-.39 1.154-1.12 1.154-1.964zm-3.224-7.422c.606 0 1.1.493 1.1 1.1s-.493 1.1-1.1 1.1-1.1-.494-1.1-1.1.493-1.1 1.1-1.1zm-16 7.422c0-.827.673-1.5 1.5-1.5.313 0 .598.103.838.27-.85.675-1.477 1.478-1.812 2.36-.32-.274-.525-.676-.525-1.13zm9.183 7.79c-4.502 0-8.165-2.33-8.165-5.193S7.457 9.22 11.96 9.22s8.163 2.33 8.163 5.193-3.663 5.193-8.164 5.193zM20.635 13c-.326-.89-.948-1.7-1.797-2.383.247-.186.55-.3.882-.3.827 0 1.5.672 1.5 1.5 0 .482-.23.91-.586 1.184zm-11.64 1.704c-.76 0-1.397-.616-1.397-1.376 0-.76.636-1.397 1.396-1.397.76 0 1.376.638 1.376 1.398 0 .76-.616 1.376-1.376 1.376zm7.405-1.376c0 .76-.615 1.376-1.375 1.376s-1.4-.616-1.4-1.376c0-.76.64-1.397 1.4-1.397.76 0 1.376.638 1.376 1.398zm-1.17 3.38c.15.152.15.398 0 .55-.675.674-1.728 1.002-3.22 1.002l-.01-.002-.012.002c-1.492 0-2.544-.328-3.218-1.002-.152-.152-.152-.398 0-.55.152-.152.4-.15.55 0 .52.52 1.394.775 2.67.775l.01.002.01-.002c1.276 0 2.15-.253 2.67-.775.15-.152.398-.152.55 0z"}));e.embedRedditIcon=M;var P={foreground:'#35465c',src:(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24"},(0,c.createElement)(t.Path,{d:"M19 3H5c-1.105 0-2 .895-2 2v14c0 1.105.895 2 2 2h14c1.105 0 2-.895 2-2V5c0-1.105-.895-2-2-2zm-5.57 14.265c-2.445.042-3.37-1.742-3.37-2.998V10.6H8.922V9.15c1.703-.615 2.113-2.15 2.21-3.026.006-.06.053-.084.08-.084h1.645V8.9h2.246v1.7H12.85v3.495c.008.476.182 1.13 1.08 1.107.3-.008.698-.094.907-.194l.54 1.6c-.205.297-1.12.642-1.946.657z"}))};e.embedTumblrIcon=P;var u=(0,c.createElement)(t.SVG,{viewBox:"0 0 24 24"},(0,c.createElement)(t.Path,{d:"M18.42 14.58c-.51-.66-1.05-1.23-1.05-2.5V7.87c0-1.8.15-3.45-1.2-4.68-1.05-1.02-2.79-1.35-4.14-1.35-2.6 0-5.52.96-6.12 4.14-.06.36.18.54.4.57l2.66.3c.24-.03.42-.27.48-.5.24-1.12 1.17-1.63 2.2-1.63.56 0 1.22.21 1.55.7.4.56.33 1.31.33 1.97v.36c-1.59.18-3.66.27-5.16.93a4.63 4.63 0 0 0-2.93 4.44c0 2.82 1.8 4.23 4.1 4.23 1.95 0 3.03-.45 4.53-1.98.51.72.66 1.08 1.59 1.83.18.09.45.09.63-.1v.04l2.1-1.8c.24-.21.2-.48.03-.75zm-5.4-1.2c-.45.75-1.14 1.23-1.92 1.23-1.05 0-1.65-.81-1.65-1.98 0-2.31 2.1-2.73 4.08-2.73v.6c0 1.05.03 1.92-.5 2.88z"}),(0,c.createElement)(t.Path,{d:"M21.69 19.2a17.62 17.62 0 0 1-21.6-1.57c-.23-.2 0-.5.28-.33a23.88 23.88 0 0 0 20.93 1.3c.45-.19.84.3.39.6z"}),(0,c.createElement)(t.Path,{d:"M22.8 17.96c-.36-.45-2.22-.2-3.1-.12-.23.03-.3-.18-.05-.36 1.5-1.05 3.96-.75 4.26-.39.3.36-.1 2.82-1.5 4.02-.21.18-.42.1-.3-.15.3-.8 1.02-2.58.69-3z"}));e.embedAmazonIcon=u},1567,[3,1170]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.WORDPRESS_EMBED_BLOCK=e.DEFAULT_EMBED_BLOCK=e.ASPECT_RATIOS=e.HOSTS_NO_PREVIEWS=void 0;e.HOSTS_NO_PREVIEWS=['facebook.com','smugmug.com'];e.ASPECT_RATIOS=[{ratio:'2.33',className:'wp-embed-aspect-21-9'},{ratio:'2.00',className:'wp-embed-aspect-18-9'},{ratio:'1.78',className:'wp-embed-aspect-16-9'},{ratio:'1.33',className:'wp-embed-aspect-4-3'},{ratio:'1.00',className:'wp-embed-aspect-1-1'},{ratio:'0.56',className:'wp-embed-aspect-9-16'},{ratio:'0.50',className:'wp-embed-aspect-1-2'}];e.DEFAULT_EMBED_BLOCK='core/embed';e.WORDPRESS_EMBED_BLOCK='core-embed/wordpress'},1568,[]); +__d(function(g,r,i,a,m,e,d){!(function(){'use strict';var n=(function(){function n(){}function t(n,t){for(var o=t.length,f=0;f0&&void 0!==arguments[0]?arguments[0]:null,o=this.props.categories;return o&&o.length?null===t?o:o.filter(function(o){return o.parent===t}):[]}},{key:"getCategoryListClassName",value:function(t){return"wp-block-categories__list wp-block-categories__list-level-"+t}},{key:"renderCategoryName",value:function(t){return t.name?(0,p.unescape)(t.name).trim():(0,v.__)('(Untitled)')}},{key:"renderCategoryList",value:function(){var t=this,n=this.props.attributes.showHierarchy?0:null,s=this.getCategories(n);return(0,o.createElement)("ul",{className:this.getCategoryListClassName(0)},s.map(function(o){return t.renderCategoryListItem(o,0)}))}},{key:"renderCategoryListItem",value:function(t,n){var s=this,l=this.props.attributes,c=l.showHierarchy,u=l.showPostCounts,h=this.getCategories(t.id);return(0,o.createElement)("li",{key:t.id},(0,o.createElement)("a",{href:t.link,target:"_blank",rel:"noreferrer noopener"},this.renderCategoryName(t)),u&&(0,o.createElement)("span",{className:"wp-block-categories__post-count"},' ',"(",t.count,")"),c&&!!h.length&&(0,o.createElement)("ul",{className:this.getCategoryListClassName(n+1)},h.map(function(t){return s.renderCategoryListItem(t,n+1)})))}},{key:"renderCategoryDropdown",value:function(){var t=this,n=this.props.instanceId,s=this.props.attributes.showHierarchy?0:null,l=this.getCategories(s),c="blocks-category-select-"+n;return(0,o.createElement)(o.Fragment,null,(0,o.createElement)("label",{htmlFor:c,className:"screen-reader-text"},(0,v.__)('Categories')),(0,o.createElement)("select",{id:c,className:"wp-block-categories__dropdown"},l.map(function(o){return t.renderCategoryDropdownItem(o,0)})))}},{key:"renderCategoryDropdownItem",value:function(t,n){var s=this,l=this.props.attributes,c=l.showHierarchy,u=l.showPostCounts,h=this.getCategories(t.id);return[(0,o.createElement)("option",{key:t.id},(0,p.times)(3*n,function(){return'\xa0'}),this.renderCategoryName(t),u?" ("+t.count+")":''),c&&!!h.length&&h.map(function(t){return s.renderCategoryDropdownItem(t,n+1)})]}},{key:"render",value:function(){var t=this.props,n=t.attributes,s=t.isRequesting,l=n.displayAsDropdown,c=n.showHierarchy,u=n.showPostCounts,h=(0,o.createElement)(f.InspectorControls,null,(0,o.createElement)(y.PanelBody,{title:(0,v.__)('Categories Settings')},(0,o.createElement)(y.ToggleControl,{label:(0,v.__)('Display as Dropdown'),checked:l,onChange:this.toggleDisplayAsDropdown}),(0,o.createElement)(y.ToggleControl,{label:(0,v.__)('Show Hierarchy'),checked:c,onChange:this.toggleShowHierarchy}),(0,o.createElement)(y.ToggleControl,{label:(0,v.__)('Show Post Counts'),checked:u,onChange:this.toggleShowPostCounts})));return s?(0,o.createElement)(o.Fragment,null,h,(0,o.createElement)(y.Placeholder,{icon:"admin-post",label:(0,v.__)('Categories')},(0,o.createElement)(y.Spinner,null))):(0,o.createElement)(o.Fragment,null,h,(0,o.createElement)("div",{className:this.props.className},l?this.renderCategoryDropdown():this.renderCategoryList()))}}]),C})(o.Component),b=(0,C.compose)((0,w.withSelect)(function(t){var o=t('core').getEntityRecords,n=t('core/data').isResolving,s={per_page:-1,hide_empty:!0};return{categories:o('taxonomy','category',s),isRequesting:n('core','getEntityRecords',['taxonomy','category',s])}}),C.withInstanceId)(_);e.default=b},1583,[2,3,34,35,42,45,44,48,21,1170,975,911,1044,347]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),l=r(d[1]),h=(0,t.createElement)(l.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)(l.Path,{d:"M0,0h24v24H0V0z",fill:"none"}),(0,t.createElement)(l.Path,{d:"M12,2l-5.5,9h11L12,2z M12,5.84L13.93,9h-3.87L12,5.84z"}),(0,t.createElement)(l.Path,{d:"m17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"}),(0,t.createElement)(l.Path,{d:"m3 21.5h8v-8h-8v8zm2-6h4v4h-4v-4z"}));e.default=h},1584,[3,1170]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return u.default}}),e.settings=e.name=void 0;var n=r(d[1]),s=t(r(d[2])),o=t(r(d[3])),u=t(r(d[4])),c=t(r(d[5])),l=t(r(d[6])),p=u.default.name;e.name=p;var f={title:(0,n.__)('Code'),description:(0,n.__)('Display code snippets that respect your spacing and tabs.'),icon:o.default,example:{attributes:{content:(0,n.__)('// A "block" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );')}},supports:{html:!1},transforms:l.default,edit:s.default,save:c.default};e.settings=f},1585,[2,347,1586,1588,1589,1590,1592]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.CodeEdit=s,e.default=void 0;var l=r(d[1]),o=r(d[2]),n=r(d[3]),u=r(d[4]),c=r(d[5]),f=t(r(d[6]));function s(t){var c=t.attributes,s=t.setAttributes,C=t.onFocus,h=t.onBlur,_=t.getStylesFromColorScheme,v=_(f.default.blockCode,f.default.blockCodeDark),b=_(f.default.placeholder,f.default.placeholderDark);return(0,l.createElement)(o.View,null,(0,l.createElement)(n.PlainText,{value:c.content,style:v,multiline:!0,underlineColorAndroid:"transparent",onChange:function(t){return s({content:t})},placeholder:(0,u.__)('Write code\u2026'),"aria-label":(0,u.__)('Code'),isSelected:t.isSelected,onFocus:C,onBlur:h,placeholderTextColor:b.color}))}var C=(0,c.withPreferredColorScheme)(s);e.default=C},1586,[2,3,25,1044,347,975,1587]); +__d(function(g,r,i,a,m,e,d){m.exports={blockCode:{fontFamily:"monospace",fontSize:14,paddingTop:12,paddingRight:16,paddingBottom:12,paddingLeft:16,borderRadius:4,backgroundColor:"#f3f6f8"},blockCodeDark:{color:"#fff",backgroundColor:"#101517"},placeholder:{color:"#87a6bc"},placeholderDark:{color:"#646970"}}},1587,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[0]),t=r(d[1]),n=(0,l.createElement)(t.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)(t.Path,{d:"M0,0h24v24H0V0z",fill:"none"}),(0,l.createElement)(t.Path,{d:"M9.4,16.6L4.8,12l4.6-4.6L8,6l-6,6l6,6L9.4,16.6z M14.6,16.6l4.6-4.6l-4.6-4.6L16,6l6,6l-6,6L14.6,16.6z"}));e.default=n},1588,[3,1170]); +__d(function(t,e,o,c,r,n,s){r.exports={name:"core/code",category:"formatting",attributes:{content:{type:"string",source:"text",selector:"code"}}}},1589,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(l){var u=l.attributes;return(0,t.createElement)("pre",null,(0,t.createElement)("code",null,(0,n.escape)(u.content)))};var t=r(d[0]),n=r(d[1])},1590,[3,1591]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.escape=function(o){return(0,n.flow)(t.escapeEditableHTML,c,u)(o||'')};var n=r(d[0]),t=r(d[1]);function c(n){return n.replace(/\[/g,'[')}function u(n){return n.replace(/^(\s*https?:)\/\/([^\s<>"]+\s*)$/m,'$1//$2')}},1591,[21,344]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),n={from:[{type:'enter',regExp:/^```$/,transform:function(){return(0,t.createBlock)('core/code')}},{type:'raw',isMatch:function(t){return'PRE'===t.nodeName&&1===t.children.length&&'CODE'===t.firstChild.nodeName},schema:{pre:{children:{code:{children:{'#text':{}}}}}}}]};e.default=n},1592,[1045]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return l.default}}),e.settings=e.name=void 0;var n=r(d[1]),s=t(r(d[2])),o=t(r(d[3])),u=t(r(d[4])),l=t(r(d[5])),c=t(r(d[6])),p=t(r(d[7])),f=l.default.name;e.name=f;var _={title:(0,n.__)('Columns'),icon:u.default,description:(0,n.__)('Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.'),supports:{align:['wide','full'],html:!1},patterns:c.default,example:{innerBlocks:[{name:'core/column',innerBlocks:[{name:'core/paragraph',attributes:{content:(0,n.__)('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.')}},{name:'core/image',attributes:{url:'https://s.w.org/images/core/5.3/Windbuchencom.jpg'}},{name:'core/paragraph',attributes:{content:(0,n.__)('Suspendisse commodo neque lacus, a dictum orci interdum et.')}}]},{name:'core/column',innerBlocks:[{name:'core/paragraph',attributes:{content:(0,n.__)('Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.')}},{name:'core/paragraph',attributes:{content:(0,n.__)('Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.')}}]}]},deprecated:s.default,edit:o.default,save:p.default};e.settings=_},1593,[2,347,1594,1595,1597,1598,1599,1600]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),o=t(r(d[2])),u=r(d[3]),l=t(r(d[4])),c=r(d[5]),s=r(d[6]);function f(t){var n,o=f.doc;o||(o=document.implementation.createHTMLDocument(''),f.doc=o),o.body.innerHTML=t;var u=o.body.firstChild.classList,l=Array.isArray(u),c=0;for(u=l?u:u["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var s;if(l){if(c>=u.length)break;s=u[c++]}else{if((c=u.next()).done)break;s=c.value}if(n=s.match(/^layout-column-(\d+)$/))return Number(n[1])-1}}var v=[{attributes:{columns:{type:'number',default:2}},isEligible:function(t,n){return!!n.some(function(t){return/layout-column-\d+/.test(t.originalContent)})&&n.some(function(t){return void 0!==f(t.originalContent)})},migrate:function(t,n){var o=n.reduce(function(t,n){var o=f(n.originalContent);return void 0===o&&(o=0),t[o]||(t[o]=[]),t[o].push(n),t},[]).map(function(t){return(0,c.createBlock)('core/column',{},t)});return[(0,u.omit)(t,['columns']),o]},save:function(t){var o=t.attributes.columns;return(0,n.createElement)("div",{className:"has-"+o+"-columns"},(0,n.createElement)(s.InnerBlocks.Content,null))}},{attributes:{columns:{type:'number',default:2}},migrate:function(t,n){return[t=(0,u.omit)(t,['columns']),n]},save:function(t){var u=t.attributes,c=u.verticalAlignment,f=u.columns,v=(0,l.default)("has-"+f+"-columns",(0,o.default)({},"are-vertically-aligned-"+c,c));return(0,n.createElement)("div",{className:v},(0,n.createElement)(s.InnerBlocks.Content,null))}}];e.default=v},1594,[2,3,18,21,1166,1045,1044]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),l=t(r(d[2])),c=t(r(d[3])),o=t(r(d[4])),u=t(r(d[5])),s=r(d[6]),k=r(d[7]),f=r(d[8]),p=r(d[9]),v=r(d[10]),B=r(d[11]),b=r(d[12]),h=['core/column'];var C=(0,v.withDispatch)(function(t,n,l){return{updateAlignment:function(c){var o=n.clientId,u=n.setAttributes,s=t('core/block-editor').updateBlockAttributes,k=l.select('core/block-editor').getBlockOrder;u({verticalAlignment:c}),k(o).forEach(function(t){s(t,{verticalAlignment:c})})},updateColumns:function(o,u){var k=n.clientId,f=t('core/block-editor').replaceInnerBlocks,p=(0,l.select('core/block-editor').getBlocks)(k),v=(0,b.hasExplicitColumnWidths)(p),h=u>o;if(h&&v){var C=(0,b.toWidthPrecision)(100/u),E=(0,b.getRedistributedColumnWidths)(p,100-C);p=[].concat((0,c.default)((0,b.getMappedColumnWidths)(p,E)),(0,c.default)((0,s.times)(u-o,function(){return(0,B.createBlock)('core/column',{width:C})})))}else if(h)p=[].concat((0,c.default)(p),(0,c.default)((0,s.times)(u-o,function(){return(0,B.createBlock)('core/column')})));else if(p=(0,s.dropRight)(p,o-u),v){var _=(0,b.getRedistributedColumnWidths)(p,100);p=(0,b.getMappedColumnWidths)(p,_)}f(k,p,!1)}}})(function(t){var l=t.attributes,c=t.className,s=t.updateAlignment,B=t.updateColumns,b=t.clientId,C=l.verticalAlignment,E=(0,v.useSelect)(function(t){return{count:t('core/block-editor').getBlockCount(b)}},[b]).count,_=(0,u.default)(c,(0,o.default)({},"are-vertically-aligned-"+C,C));return(0,n.createElement)(n.Fragment,null,(0,n.createElement)(p.InspectorControls,null,(0,n.createElement)(f.PanelBody,null,(0,n.createElement)(f.RangeControl,{label:(0,k.__)('Columns'),value:E,onChange:function(t){return B(E,t)},min:2,max:6}))),(0,n.createElement)(p.BlockControls,null,(0,n.createElement)(p.BlockVerticalAlignmentToolbar,{onChange:s,value:C})),(0,n.createElement)("div",{className:_},(0,n.createElement)(p.InnerBlocks,{templateLock:"all",allowedBlocks:h})))}),E=function t(n){return(0,s.map)(n,function(n){var c=(0,l.default)(n,3),o=c[0],u=c[1],s=c[2],k=void 0===s?[]:s;return(0,B.createBlock)(o,u,t(k))})},_=function(t){var l=t.clientId,c=t.name,o=(0,v.useSelect)(function(t){var n=t('core/blocks'),o=n.__experimentalGetBlockPatterns,u=n.getBlockType,s=n.__experimentalGetDefaultBlockPattern;return{blockType:u(c),defaultPattern:s(c),hasInnerBlocks:t('core/block-editor').getBlocks(l).length>0,patterns:o(c)}},[l,c]),u=o.blockType,k=o.defaultPattern,f=o.hasInnerBlocks,B=o.patterns,b=(0,v.useDispatch)('core/block-editor').replaceInnerBlocks;return f?(0,n.createElement)(C,t):(0,n.createElement)(p.__experimentalBlockPatternPicker,{icon:(0,s.get)(u,['icon','src']),label:(0,s.get)(u,['title']),patterns:B,onSelect:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:k;n.attributes&&t.setAttributes(n.attributes),n.innerBlocks&&b(t.clientId,E(n.innerBlocks))},allowSkip:!0})};e.default=_},1595,[2,3,5,9,18,1166,21,347,1170,1044,911,1045,1596]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.getAdjacentBlocks=function(t,n){var u=(0,o.findIndex)(t,{clientId:n});return u===t.length-1?t.slice(0,u):t.slice(u+1)},e.getEffectiveColumnWidth=c,e.getTotalColumnsWidth=s,e.getColumnWidths=f,e.getRedistributedColumnWidths=function(t,n){var u=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t.length,c=s(t,u),h=(n-c)/t.length;return(0,o.mapValues)(f(t,u),function(t){return l(t+h)})},e.hasExplicitColumnWidths=function(t){return t.some(function(t){return Number.isFinite(t.attributes.width)})},e.getMappedColumnWidths=function(t,n){return t.map(function(t){return(0,o.merge)({},t,{attributes:{width:n[t.clientId]}})})},e.toWidthPrecision=void 0;var n=t(r(d[1])),u=t(r(d[2])),o=r(d[3]),l=function(t){return Number.isFinite(t)?parseFloat(t.toFixed(2)):void 0};function c(t,n){var u=t.attributes.width;return l(void 0===u?100/n:u)}function s(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:t.length;return(0,o.sumBy)(t,function(t){return c(t,n)})}function f(t){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:t.length;return t.reduce(function(t,l){var s=c(l,o);return(0,u.default)(t,(0,n.default)({},l.clientId,s))},{})}e.toWidthPrecision=l},1596,[2,18,16,21]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),l=r(d[1]),n=(0,t.createElement)(l.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)(l.Path,{fill:"none",d:"M0 0h24v24H0V0z"}),(0,t.createElement)(l.G,null,(0,t.createElement)(l.Path,{d:"M4,4H20a2,2,0,0,1,2,2V18a2,2,0,0,1-2,2H4a2,2,0,0,1-2-2V6A2,2,0,0,1,4,4ZM4 6V18H8V6Zm6 0V18h4V6Zm6 0V18h4V6Z"})));e.default=n},1597,[3,1170]); +__d(function(t,e,n,o,r,a,c){r.exports={name:"core/columns",category:"layout",attributes:{verticalAlignment:{type:"string"}}}},1598,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[0]),o=r(d[1]),t=r(d[2]),n=[{name:'two-columns-equal',label:(0,t.__)('Two columns; equal split'),icon:(0,l.createElement)(o.SVG,{width:"48",height:"48",viewBox:"0 0 48 48",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)(o.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M39 12C40.1046 12 41 12.8954 41 14V34C41 35.1046 40.1046 36 39 36H9C7.89543 36 7 35.1046 7 34V14C7 12.8954 7.89543 12 9 12H39ZM39 34V14H25V34H39ZM23 34H9V14H23V34Z"})),isDefault:!0,innerBlocks:[['core/column'],['core/column']]},{name:'two-columns-one-third-two-thirds',label:(0,t.__)('Two columns; one-third, two-thirds split'),icon:(0,l.createElement)(o.SVG,{width:"48",height:"48",viewBox:"0 0 48 48",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)(o.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M39 12C40.1046 12 41 12.8954 41 14V34C41 35.1046 40.1046 36 39 36H9C7.89543 36 7 35.1046 7 34V14C7 12.8954 7.89543 12 9 12H39ZM39 34V14H20V34H39ZM18 34H9V14H18V34Z"})),innerBlocks:[['core/column',{width:33.33}],['core/column',{width:66.66}]]},{name:'two-columns-two-thirds-one-third',label:(0,t.__)('Two columns; two-thirds, one-third split'),icon:(0,l.createElement)(o.SVG,{width:"48",height:"48",viewBox:"0 0 48 48",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)(o.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M39 12C40.1046 12 41 12.8954 41 14V34C41 35.1046 40.1046 36 39 36H9C7.89543 36 7 35.1046 7 34V14C7 12.8954 7.89543 12 9 12H39ZM39 34V14H30V34H39ZM28 34H9V14H28V34Z"})),innerBlocks:[['core/column',{width:66.66}],['core/column',{width:33.33}]]},{name:'three-columns-equal',label:(0,t.__)('Three columns; equal split'),icon:(0,l.createElement)(o.SVG,{width:"48",height:"48",viewBox:"0 0 48 48",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)(o.Path,{fillRule:"evenodd",d:"M41 14a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h30a2 2 0 0 0 2-2V14zM28.5 34h-9V14h9v20zm2 0V14H39v20h-8.5zm-13 0H9V14h8.5v20z"})),innerBlocks:[['core/column'],['core/column'],['core/column']]},{name:'three-columns-wider-center',label:(0,t.__)('Three columns; wide center column'),icon:(0,l.createElement)(o.SVG,{width:"48",height:"48",viewBox:"0 0 48 48",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)(o.Path,{fillRule:"evenodd",d:"M41 14a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h30a2 2 0 0 0 2-2V14zM31 34H17V14h14v20zm2 0V14h6v20h-6zm-18 0H9V14h6v20z"})),innerBlocks:[['core/column',{width:25}],['core/column',{width:50}],['core/column',{width:25}]]}];e.default=n},1599,[3,1170,347]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var v=t.attributes.verticalAlignment,f=(0,u.default)((0,n.default)({},"are-vertically-aligned-"+v,v));return(0,l.createElement)("div",{className:f},(0,l.createElement)(c.InnerBlocks.Content,null))};var l=r(d[1]),n=t(r(d[2])),u=t(r(d[3])),c=r(d[4])},1600,[2,3,18,1166,1044]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return s.default}}),e.settings=e.name=void 0;var n=r(d[1]),u=t(r(d[2])),l=t(r(d[3])),s=t(r(d[4])),o=t(r(d[5])),c=s.default.name;e.name=c;var f={title:(0,n.__)('Column'),parent:['core/columns'],icon:l.default,description:(0,n.__)('A single column within a columns block.'),supports:{inserter:!1,reusable:!1,html:!1},getEditWrapperProps:function(t){var n=t.width;if(Number.isFinite(n))return{style:{flexBasis:n+'%'}}},edit:u.default,save:o.default};e.settings=f},1601,[2,347,1602,1603,1604,1605]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),l=t(r(d[2])),o=t(r(d[3])),c=t(r(d[4])),u=r(d[5]),s=r(d[6]),f=r(d[7]),p=r(d[8]),b=r(d[9]),h=r(d[10]),k=r(d[11]);function v(t,n){var l=Object.keys(t);return Object.getOwnPropertySymbols&&l.push.apply(l,Object.getOwnPropertySymbols(t)),n&&(l=l.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),l}function O(t){for(var n=1;n0}}),(0,p.withDispatch)(function(t,n,c){return{updateAlignment:function(l){var o=n.clientId,u=n.setAttributes,s=t('core/block-editor').updateBlockAttributes,f=c.select('core/block-editor').getBlockRootClientId;u({verticalAlignment:l}),s(f(o),{verticalAlignment:null})},updateWidth:function(s){var f=n.clientId,p=t('core/block-editor').updateBlockAttributes,b=c.select('core/block-editor'),h=b.getBlockRootClientId,v=(0,b.getBlocks)(h(f)),B=(0,k.getAdjacentBlocks)(v,f),y=s+(0,k.getTotalColumnsWidth)((0,u.difference)(v,[(0,u.find)(v,{clientId:f})].concat((0,l.default)(B)))),C=O({},(0,k.getColumnWidths)(v,v.length),(0,o.default)({},f,(0,k.toWidthPrecision)(s)),(0,k.getRedistributedColumnWidths)(B,100-y,v.length));(0,u.forEach)(C,function(t,n){p(n,{width:t})})}}}))(function(t){var l=t.attributes,u=t.className,p=t.updateAlignment,b=t.updateWidth,k=t.hasChildBlocks,v=l.verticalAlignment,O=l.width,B=(0,c.default)(u,'block-core-columns',(0,o.default)({},"is-vertically-aligned-"+v,v));return(0,n.createElement)("div",{className:B},(0,n.createElement)(s.BlockControls,null,(0,n.createElement)(s.BlockVerticalAlignmentToolbar,{onChange:p,value:v})),(0,n.createElement)(s.InspectorControls,null,(0,n.createElement)(f.PanelBody,{title:(0,h.__)('Column Settings')},(0,n.createElement)(f.RangeControl,{label:(0,h.__)('Percentage width'),value:O||'',onChange:b,min:0,max:100,required:!0,allowReset:!0}))),(0,n.createElement)(s.InnerBlocks,{templateLock:!1,renderAppender:k?void 0:function(){return(0,n.createElement)(s.InnerBlocks.ButtonBlockAppender,null)}}))});e.default=B},1602,[2,3,9,18,1166,21,1044,1170,911,975,347,1596]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),l=r(d[1]),n=(0,t.createElement)(l.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,t.createElement)(l.Path,{fill:"none",d:"M0 0h24v24H0V0z"}),(0,t.createElement)(l.Path,{d:"M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16zm0-11.47L17.74 9 12 13.47 6.26 9 12 4.53z"}));e.default=n},1603,[3,1170]); +__d(function(t,e,n,m,i,o,r){i.exports={name:"core/column",category:"common",attributes:{verticalAlignment:{type:"string"},width:{type:"number",min:0,max:100}}}},1604,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var c,f=t.attributes,v=f.verticalAlignment,o=f.width,_=(0,u.default)((0,n.default)({},"is-vertically-aligned-"+v,v));Number.isFinite(o)&&(c={flexBasis:o+'%'});return(0,l.createElement)("div",{className:_,style:c},(0,l.createElement)(s.InnerBlocks.Content,null))};var l=r(d[1]),n=t(r(d[2])),u=t(r(d[3])),s=r(d[4])},1605,[2,3,18,1166,1044]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return u.default}}),e.settings=e.name=void 0;var n=r(d[1]),o=t(r(d[2])),s=t(r(d[3])),l=t(r(d[4])),u=t(r(d[5])),c=t(r(d[6])),f=t(r(d[7])),p=u.default.name;e.name=p;var v={title:(0,n.__)('Cover'),description:(0,n.__)('Add an image or video with a text overlay \u2014 great for headers.'),icon:l.default,supports:{align:!0,html:!1},example:{attributes:{customOverlayColor:'#065174',dimRatio:40,url:'https://s.w.org/images/core/5.3/Windbuchencom.jpg'},innerBlocks:[{name:'core/paragraph',attributes:{customFontSize:48,content:(0,n.__)('Snow Patrol'),align:'center'}}]},transforms:f.default,save:c.default,edit:s.default,deprecated:o.default};e.settings=v},1606,[2,347,1607,1609,1611,1612,1613,1614]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[1]),n=t(r(d[2])),o=r(d[3]),c=t(r(d[4])),s=r(d[5]),u=r(d[6]),p=r(d[7]),y=r(d[8]);function b(t,l){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),l&&(n=n.filter(function(l){return Object.getOwnPropertyDescriptor(t,l).enumerable})),n}function f(t){for(var l=1;l1&&void 0!==arguments[1]?arguments[1]:50,c=arguments.length>2?arguments[2]:void 0,u=arguments.length>3?arguments[3]:void 0,f=(0,n.useState)(!1),v=(0,l.default)(f,2),_=v[0],E=v[1];return(0,n.useEffect)(function(){t&&o<=50&&u.current&&k().getColorAsync(u.current,function(t){E(t.isDark)})},[t,t&&o<=50&&u.current,E]),(0,n.useEffect)(function(){if(o>50||!t){if(!c)return void E(!0);E((0,s.default)(c).isDark())}},[c,o>50||!t,E]),(0,n.useEffect)(function(){t||c||E(!1)},[!t&&!c,E]),_}var D=(0,v.compose)([(0,p.withDispatch)(function(t){return{toggleSelection:t('core/block-editor').toggleSelection}}),(0,_.withColors)({overlayColor:'background-color'}),f.withNotices,v.withInstanceId])(function(t){var u,s=t.attributes,v=t.setAttributes,p=t.isSelected,C=t.className,k=t.noticeUI,N=t.overlayColor,D=t.setOverlayColor,S=t.toggleSelection,B=t.noticeOperations,T=s.backgroundType,w=s.dimRatio,M=s.focalPoint,U=s.hasParallax,H=s.id,x=s.minHeight,z=s.url,K=(0,_.__experimentalUseGradient)(),Y=K.gradientClass,j=K.gradientValue,V=K.setGradient,F=I(v),L=(0,n.useRef)(),q=A(z,w,N.color,L),W=(0,n.useState)(null),J=(0,l.default)(W,2),Q=J[0],X=J[1],Z=B.removeAllNotices,$=B.createErrorNotice,ee=y({},T===h.IMAGE_BACKGROUND_TYPE?(0,h.backgroundImageStyles)(z):{},{backgroundColor:N.color,minHeight:Q||x});j&&!z&&(ee.background=j),M&&(ee.backgroundPosition=100*M.x+"% "+100*M.y+"%");var te=!!(z||N.color||j),ne=(0,n.createElement)(n.Fragment,null,(0,n.createElement)(_.BlockControls,null,te&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(_.MediaUploadCheck,null,(0,n.createElement)(f.ToolbarGroup,null,(0,n.createElement)(_.MediaUpload,{onSelect:F,allowedTypes:P,value:H,render:function(t){var o=t.open;return(0,n.createElement)(f.IconButton,{className:"components-toolbar__control",label:(0,E.__)('Edit media'),icon:"edit",onClick:o})}}))))),(0,n.createElement)(_.InspectorControls,null,!!z&&(0,n.createElement)(f.PanelBody,{title:(0,E.__)('Media Settings')},h.IMAGE_BACKGROUND_TYPE===T&&(0,n.createElement)(f.ToggleControl,{label:(0,E.__)('Fixed Background'),checked:U,onChange:function(){v(y({hasParallax:!U},U?{}:{focalPoint:void 0}))}}),h.IMAGE_BACKGROUND_TYPE===T&&!U&&(0,n.createElement)(f.FocalPointPicker,{label:(0,E.__)('Focal Point Picker'),url:z,value:M,onChange:function(t){return v({focalPoint:t})}}),h.VIDEO_BACKGROUND_TYPE===T&&(0,n.createElement)("video",{autoPlay:!0,muted:!0,loop:!0,src:z}),(0,n.createElement)(f.PanelRow,null,(0,n.createElement)(f.Button,{isSecondary:!0,isSmall:!0,className:"block-library-cover__reset-button",onClick:function(){return v({url:void 0,id:void 0,backgroundType:void 0,dimRatio:void 0,focalPoint:void 0,hasParallax:void 0})}},(0,E.__)('Clear Media')))),te&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(f.PanelBody,{title:(0,E.__)('Dimensions')},(0,n.createElement)(R,{value:Q||x,onChange:function(t){return v({minHeight:t})}})),(0,n.createElement)(_.PanelColorSettings,{title:(0,E.__)('Overlay'),initialOpen:!0,colorSettings:[{value:N.color,onChange:function(){v({customGradient:void 0}),D.apply(void 0,arguments)},label:(0,E.__)('Overlay Color')}]},(0,n.createElement)(_.__experimentalGradientPickerControl,{label:(0,E.__)('Overlay Gradient'),onChange:function(t){V(t),v({overlayColor:void 0})},value:j}),!!z&&(0,n.createElement)(f.RangeControl,{label:(0,E.__)('Background Opacity'),value:w,onChange:function(t){return v({dimRatio:t})},min:0,max:100,step:10,required:!0})))));if(!te){var ae=(0,n.createElement)(_.BlockIcon,{icon:b.default}),oe=(0,E.__)('Cover');return(0,n.createElement)(n.Fragment,null,ne,(0,n.createElement)(_.MediaPlaceholder,{icon:ae,className:C,labels:{title:oe,instructions:(0,E.__)('Upload an image or video file, or pick one from your media library.')},onSelect:F,accept:"image/*,video/*",allowedTypes:P,notices:k,onError:function(t){Z(),$(t)}},(0,n.createElement)("div",{className:"wp-block-cover__placeholder-background-options"},(0,n.createElement)(_.ColorPalette,{disableCustomColors:!0,value:N.color,onChange:D,clearable:!1}),(0,n.createElement)(_.__experimentalGradientPicker,{disableCustomGradients:!0,onChange:function(t){V(t),v({overlayColor:void 0})},value:j,clearable:!1}))))}var re=(0,c.default)(C,(0,h.dimRatioToClass)(w),(u={'is-dark-theme':q,'has-background-dim':0!==w,'has-parallax':U},(0,o.default)(u,N.class,N.class),(0,o.default)(u,'has-background-gradient',j),(0,o.default)(u,Y,!z&&Y),u));return(0,n.createElement)(n.Fragment,null,ne,(0,n.createElement)(G,{className:(0,c.default)('block-library-cover__resize-container',{'is-selected':p}),onResizeStart:function(){return S(!1)},onResize:X,onResizeStop:function(t){S(!0),v({minHeight:t}),X(null)}},(0,n.createElement)("div",{"data-url":z,style:ee,className:re},h.IMAGE_BACKGROUND_TYPE===T&&(0,n.createElement)("img",{ref:L,"aria-hidden":!0,alt:"",style:{display:'none'},src:z}),z&&j&&0!==w&&(0,n.createElement)("span",{"aria-hidden":"true",className:(0,c.default)('wp-block-cover__gradient-background',Y),style:{background:j}}),h.VIDEO_BACKGROUND_TYPE===T&&(0,n.createElement)("video",{ref:L,className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:z}),(0,n.createElement)("div",{className:"wp-block-cover__inner-container"},(0,n.createElement)(_.InnerBlocks,{template:O})))))});e.default=D},1609,[2,3,18,5,1166,1610,1057,1170,975,1044,347,911,1611,1608]); +__d(function(g,r,i,a,m,e,d){var t,n;t=this,n=function(){'use strict';function t(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function n(t,n){for(var o=0;ou?(f=h/u,c=100,l=Math.round(c/f)):(f=u/h,l=100,c=Math.round(l/f)),(c>h||l>u||c<10||l<10)&&(c=h,l=u),{srcLeft:o,srcTop:s,srcWidth:h,srcHeight:u,destWidth:c,destHeight:l}}},{key:"_simpleAlgorithm",value:function(t,n,o){for(var s=0,h=0,u=0,c=0,l=0,f=0;fs?-1:o===s?0:1})[0],5),y=p[0],k=p[1],w=p[2],C=p[3],M=p[4];return C?[Math.round(y/C),Math.round(k/C),Math.round(w/C),Math.round(C/M)]:[0,0,0,0]}},{key:"_bindImageEvents",value:function(t,n,o){var s=this,h=(o=o||{})&&o.data,u=this._getDefaultColor(o),c=function(){v(),n.call(t,s.getColor(t,o),h)},l=function(){v(),n.call(t,s._prepareResult(u,new Error('Image error')),h)},f=function(){v(),n.call(t,s._prepareResult(u,new Error('Image abort')),h)},v=function(){t.removeEventListener('load',c),t.removeEventListener('error',l),t.removeEventListener('abort',f)};t.addEventListener('load',c),t.addEventListener('error',l),t.addEventListener('abort',f)}},{key:"_prepareResult",value:function(t,n){var o=t.slice(0,3),s=[].concat(o,t[3]/255),h=this._isDark(t);return{error:n,value:t,rgb:'rgb('+o.join(',')+')',rgba:'rgba('+s.join(',')+')',hex:this._arrayToHex(o),hexa:this._arrayToHex(t),isDark:h,isLight:!h}}},{key:"_getOriginalSize",value:function(t){return t instanceof HTMLImageElement?{width:t.naturalWidth,height:t.naturalHeight}:t instanceof HTMLVideoElement?{width:t.videoWidth,height:t.videoHeight}:{width:t.width,height:t.height}}},{key:"_toHex",value:function(t){var n=t.toString(16);return 1===n.length?'0'+n:n}},{key:"_arrayToHex",value:function(t){return'#'+t.map(this._toHex).join('')}},{key:"_isDark",value:function(t){return(299*t[0]+587*t[1]+114*t[2])/1e3<128}},{key:"_makeCanvas",value:function(){return'undefined'==typeof window?new OffscreenCanvas(1,1):document.createElement('canvas')}}])&&n(h.prototype,u),c&&n(h,c),s})()},'object'==typeof e&&void 0!==m?m.exports=n():'function'==typeof define&&define.amd?define(n):t.FastAverageColor=n()},1610,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),v=r(d[1]),h=(0,t.createElement)(v.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,t.createElement)(v.Path,{d:"M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z"}),(0,t.createElement)(v.Path,{d:"M0 0h24v24H0z",fill:"none"}));e.default=h},1611,[3,1170]); +__d(function(t,e,r,o,a,n,i){a.exports={name:"core/cover",category:"common",attributes:{url:{type:"string"},id:{type:"number"},hasParallax:{type:"boolean",default:!1},dimRatio:{type:"number",default:50},overlayColor:{type:"string"},customOverlayColor:{type:"string"},backgroundType:{type:"string",default:"image"},focalPoint:{type:"object"},minHeight:{type:"number"},gradient:{type:"string"},customGradient:{type:"string"}}}},1612,[]); +__d(function(g,r,i,a,m,e,d){var o=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(o){var u=o.attributes,b=u.backgroundType,v=u.gradient,_=u.customGradient,k=u.customOverlayColor,C=u.dimRatio,p=u.focalPoint,y=u.hasParallax,E=u.overlayColor,f=u.url,h=u.minHeight,N=(0,c.getColorClassName)('background-color',E),P=(0,c.__experimentalGetGradientClass)(v),G=b===s.IMAGE_BACKGROUND_TYPE?(0,s.backgroundImageStyles)(f):{};N||(G.backgroundColor=k);p&&!y&&(G.backgroundPosition=100*p.x+"% "+100*p.y+"%");_&&!f&&(G.background=_);G.minHeight=h||void 0;var O=(0,n.default)((0,s.dimRatioToClass)(C),N,(0,l.default)({'has-background-dim':0!==C,'has-parallax':y,'has-background-gradient':_},P,!f&&P));return(0,t.createElement)("div",{className:O,style:G},f&&(v||_)&&0!==C&&(0,t.createElement)("span",{"aria-hidden":"true",className:(0,n.default)('wp-block-cover__gradient-background',P),style:_?{background:_}:void 0}),s.VIDEO_BACKGROUND_TYPE===b&&f&&(0,t.createElement)("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:f}),(0,t.createElement)("div",{className:"wp-block-cover__inner-container"},(0,t.createElement)(c.InnerBlocks.Content,null)))};var t=r(d[1]),l=o(r(d[2])),n=o(r(d[3])),c=r(d[4]),s=r(d[5])},1613,[2,3,18,1166,1044,1608]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[0]),t=r(d[1]),c={from:[{type:'block',blocks:['core/image'],transform:function(t){var c=t.caption,l=t.url,n=t.align,u=t.id;return(0,o.createBlock)('core/cover',{title:c,url:l,align:n,id:u})}},{type:'block',blocks:['core/video'],transform:function(c){var l=c.caption,n=c.src,u=c.align,v=c.id;return(0,o.createBlock)('core/cover',{title:l,url:n,align:u,id:v,backgroundType:t.VIDEO_BACKGROUND_TYPE})}}],to:[{type:'block',blocks:['core/image'],isMatch:function(o){var c=o.backgroundType,l=o.url,n=o.overlayColor,u=o.customOverlayColor,v=o.gradient,s=o.customGradient;return l?c===t.IMAGE_BACKGROUND_TYPE:!(n||u||v||s)},transform:function(t){var c=t.title,l=t.url,n=t.align,u=t.id;return(0,o.createBlock)('core/image',{caption:c,url:l,align:n,id:u})}},{type:'block',blocks:['core/video'],isMatch:function(o){var c=o.backgroundType,l=o.url,n=o.overlayColor,u=o.customOverlayColor,v=o.gradient,s=o.customGradient;return l?c===t.VIDEO_BACKGROUND_TYPE:!(n||u||v||s)},transform:function(t){var c=t.title,l=t.url,n=t.align,u=t.id;return(0,o.createBlock)('core/video',{caption:c,src:l,id:u,align:n})}}]};e.default=c},1614,[1045,1608]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.others=e.common=e.settings=e.name=void 0;var n=t(r(d[1])),o=r(d[2]),s=r(d[3]),c=r(d[4]),u=r(d[5]),b=r(d[6]);function f(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function p(t){for(var o=1;o2&&void 0!==arguments[2])||arguments[2];return(function(O){function P(){var t;return(0,o.default)(this,P),(t=(0,l.default)(this,(0,u.default)(P).apply(this,arguments))).switchBackToURLInput=t.switchBackToURLInput.bind((0,c.default)(t)),t.setUrl=t.setUrl.bind((0,c.default)(t)),t.getMergedAttributes=t.getMergedAttributes.bind((0,c.default)(t)),t.setMergedAttributes=t.setMergedAttributes.bind((0,c.default)(t)),t.getResponsiveHelp=t.getResponsiveHelp.bind((0,c.default)(t)),t.toggleResponsive=t.toggleResponsive.bind((0,c.default)(t)),t.handleIncomingPreview=t.handleIncomingPreview.bind((0,c.default)(t)),t.state={editingURL:!1,url:t.props.attributes.url},t.props.preview&&t.handleIncomingPreview(),t}return(0,h.default)(P,O),(0,p.default)(P,[{key:"handleIncomingPreview",value:function(){if(this.setMergedAttributes(),this.props.onReplace){var t=(0,v.createUpgradedEmbedBlock)(this.props,this.getMergedAttributes());t&&this.props.onReplace(t)}}},{key:"componentDidUpdate",value:function(t){var s=void 0!==this.props.preview,n=void 0!==t.preview,o=t.preview&&this.props.preview&&this.props.preview.html!==t.preview.html,p=o||s&&!n,l=this.props.attributes.url!==t.attributes.url;if(p||l){if(this.props.cannotEmbed)return void(this.props.fetching||this.resubmitWithoutTrailingSlash());this.handleIncomingPreview()}}},{key:"resubmitWithoutTrailingSlash",value:function(){this.setState(function(t){return{url:t.url.replace(/\/$/,'')}},this.setUrl)}},{key:"setUrl",value:function(t){t&&t.preventDefault();var s=this.state.url,n=this.props.setAttributes;this.setState({editingURL:!1}),n({url:s})}},{key:"getMergedAttributes",value:function(){var s=this.props.preview,n=this.props.attributes,o=n.className,p=n.allowResponsive;return U({},this.props.attributes,{},(0,v.getAttributesFromPreview)(s,t,o,A,p))}},{key:"setMergedAttributes",value:function(){var t=this.props.setAttributes;t(this.getMergedAttributes())}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"getResponsiveHelp",value:function(t){return t?(0,k.__)('This embed will preserve its aspect ratio when the browser is resized.'):(0,k.__)('This embed may not preserve its aspect ratio when the browser is resized.')}},{key:"toggleResponsive",value:function(){var t=this.props.attributes,s=t.allowResponsive,n=t.className,o=this.props.preview.html,p=!s;this.props.setAttributes({allowResponsive:p,className:(0,v.getClassNames)(o,n,A&&p)})}},{key:"render",value:function(){var o=this,p=this.state,l=p.url,u=p.editingURL,c=this.props,h=c.fetching,U=c.setAttributes,O=c.isSelected,P=c.preview,E=c.cannotEmbed,S=c.themeSupportsResponsive,M=c.tryAgain;if(h)return(0,s.createElement)(b.default,null);var j=(0,k.sprintf)((0,k.__)('%s URL'),t);if(!P||E||u)return(0,s.createElement)(w.default,{icon:n,label:j,onSubmit:this.setUrl,value:l,cannotEmbed:E,onChange:function(t){return o.setState({url:t.target.value})},fallback:function(){return(0,v.fallback)(l,o.props.onReplace)},tryAgain:M});var I=this.getMergedAttributes(),L=I.caption,_=I.type,T=I.allowResponsive,B=(0,y.default)(I.className,this.props.className);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(f.default,{showEditButton:P&&!E,themeSupportsResponsive:S,blockSupportsResponsive:A,allowResponsive:T,getResponsiveHelp:this.getResponsiveHelp,toggleResponsive:this.toggleResponsive,switchBackToURLInput:this.switchBackToURLInput}),(0,s.createElement)(R.default,{preview:P,className:B,url:l,type:_,caption:L,onCaptionChange:function(t){return U({caption:t})},isSelected:O,icon:n,label:j}))}}]),P})(s.Component)};var s=r(d[1]),n=t(r(d[2])),o=t(r(d[3])),p=t(r(d[4])),l=t(r(d[5])),u=t(r(d[6])),c=t(r(d[7])),h=t(r(d[8])),v=r(d[9]),f=t(r(d[10])),b=t(r(d[11])),w=t(r(d[12])),R=t(r(d[13])),y=t(r(d[14])),k=r(d[15]);function A(t,s){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),s&&(n=n.filter(function(s){return Object.getOwnPropertyDescriptor(t,s).enumerable})),n}function U(t){for(var s=1;s0},priority:15,transform:function(t){var n=[];return t.forEach(function(t){var f=(0,c.createBlobURL)(t);n.push((0,o.createBlock)('core/file',{href:f,fileName:t.name,textLinkHref:f}))}),n}},{type:'block',blocks:['core/audio'],transform:function(t){return(0,o.createBlock)('core/file',{href:t.src,fileName:t.caption,textLinkHref:t.src,id:t.id})}},{type:'block',blocks:['core/video'],transform:function(t){return(0,o.createBlock)('core/file',{href:t.src,fileName:t.caption,textLinkHref:t.src,id:t.id})}},{type:'block',blocks:['core/image'],transform:function(t){return(0,o.createBlock)('core/file',{href:t.url,fileName:t.caption,textLinkHref:t.url,id:t.id})}}],to:[{type:'block',blocks:['core/audio'],isMatch:function(c){var o=c.id;if(!o)return!1;var f=(0,(0,n.select)('core').getMedia)(o);return!!f&&(0,t.includes)(f.mime_type,'audio')},transform:function(t){return(0,o.createBlock)('core/audio',{src:t.href,caption:t.fileName,id:t.id})}},{type:'block',blocks:['core/video'],isMatch:function(c){var o=c.id;if(!o)return!1;var f=(0,(0,n.select)('core').getMedia)(o);return!!f&&(0,t.includes)(f.mime_type,'video')},transform:function(t){return(0,o.createBlock)('core/video',{src:t.href,caption:t.fileName,id:t.id})}},{type:'block',blocks:['core/image'],isMatch:function(c){var o=c.id;if(!o)return!1;var f=(0,(0,n.select)('core').getMedia)(o);return!!f&&(0,t.includes)(f.mime_type,'image')},transform:function(t){return(0,o.createBlock)('core/image',{url:t.href,caption:t.fileName,id:t.id})}}]};e.default=f},1629,[21,1520,1045,911]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return n.default}}),e.settings=e.name=void 0;var o=r(d[1]),s=t(r(d[2])),u=t(r(d[3])),n=t(r(d[4])),l=t(r(d[5])),c=t(r(d[6])),f=n.default.name;e.name=f;var _={title:(0,o.__)('Custom HTML'),description:(0,o.__)('Add custom HTML code and preview it as you edit.'),icon:u.default,keywords:[(0,o.__)('embed')],example:{attributes:{content:''+(0,o.__)('Welcome to the wonderful world of blocks\u2026')+''}},supports:{customClassName:!1,className:!1,html:!1},transforms:c.default,edit:s.default,save:l.default};e.settings=_},1630,[2,347,1631,1632,1633,1634,1635]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),s=t(r(d[2])),l=t(r(d[3])),o=t(r(d[4])),c=t(r(d[5])),u=t(r(d[6])),h=t(r(d[7])),v=t(r(d[8])),f=r(d[9]),p=r(d[10]),w=r(d[11]),T=r(d[12]),b=(function(t){function T(){var t;return(0,l.default)(this,T),(t=(0,c.default)(this,(0,u.default)(T).apply(this,arguments))).state={isPreview:!1,styles:[]},t.switchToHTML=t.switchToHTML.bind((0,h.default)(t)),t.switchToPreview=t.switchToPreview.bind((0,h.default)(t)),t}return(0,v.default)(T,t),(0,o.default)(T,[{key:"componentDidMount",value:function(){var t=this.props.styles;this.setState({styles:["\n\t\t\thtml,body,:root {\n\t\t\t\tmargin: 0 !important;\n\t\t\t\tpadding: 0 !important;\n\t\t\t\toverflow: visible !important;\n\t\t\t\tmin-height: auto !important;\n\t\t\t}\n\t\t"].concat((0,s.default)((0,p.transformStyles)(t)))})}},{key:"switchToPreview",value:function(){this.setState({isPreview:!0})}},{key:"switchToHTML",value:function(){this.setState({isPreview:!1})}},{key:"render",value:function(){var t=this.props,s=t.attributes,l=t.setAttributes,o=this.state,c=o.isPreview,u=o.styles;return(0,n.createElement)("div",{className:"wp-block-html"},(0,n.createElement)(p.BlockControls,null,(0,n.createElement)(w.ToolbarGroup,null,(0,n.createElement)(w.Button,{className:"components-tab-button",isPressed:!c,onClick:this.switchToHTML},(0,n.createElement)("span",null,"HTML")),(0,n.createElement)(w.Button,{className:"components-tab-button",isPressed:c,onClick:this.switchToPreview},(0,n.createElement)("span",null,(0,f.__)('Preview'))))),(0,n.createElement)(w.Disabled.Consumer,null,function(t){return c||t?(0,n.createElement)(w.SandBox,{html:s.content,styles:u}):(0,n.createElement)(p.PlainText,{value:s.content,onChange:function(t){return l({content:t})},placeholder:(0,f.__)('Write HTML\u2026'),"aria-label":(0,f.__)('HTML')})}))}}]),T})(n.Component),y=(0,T.withSelect)(function(t){return{styles:(0,t('core/block-editor').getSettings)().styles}})(b);e.default=y},1631,[2,3,9,34,35,42,45,44,48,347,1044,1170,911]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),v=r(d[1]),V=(0,t.createElement)(v.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)(v.Path,{d:"M4.5,11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5V11z M7,10.5h1.5V15H10v-4.5h1.5V9H7V10.5z M14.5,10l-1-1H12v6h1.5v-3.9 l1,1l1-1V15H17V9h-1.5L14.5,10z M19.5,13.5V9H18v6h5v-1.5H19.5z"}));e.default=V},1632,[3,1170]); +__d(function(t,e,n,o,r,c,a){r.exports={name:"core/html",category:"formatting",attributes:{content:{type:"string",source:"html"}}}},1633,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(n){var u=n.attributes;return(0,t.createElement)(t.RawHTML,null,u.content)};var t=r(d[0])},1634,[3]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t={from:[{type:'raw',isMatch:function(t){return'FIGURE'===t.nodeName&&!!t.querySelector('iframe')},schema:function(t){return{figure:{require:['iframe'],children:{iframe:{attributes:['src','allowfullscreen','height','width']},figcaption:{children:t.phrasingContentSchema}}}}}}]};e.default=t},1635,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return u.default}}),e.settings=e.name=void 0;var s=r(d[1]),n=t(r(d[2])),o=t(r(d[3])),l=t(r(d[4])),u=t(r(d[5])),_=t(r(d[6])),c=t(r(d[7])),f=u.default.name;e.name=f;var p={title:(0,s.__)('Media & Text'),description:(0,s.__)('Set media and words side-by-side for a richer layout.'),icon:l.default,keywords:[(0,s.__)('image'),(0,s.__)('video')],supports:{align:['wide','full'],html:!1},example:{attributes:{mediaType:'image',mediaUrl:'https://s.w.org/images/core/5.3/Biologia_Centrali-Americana_-_Cantorchilus_semibadius_1902.jpg'},innerBlocks:[{name:'core/paragraph',attributes:{content:(0,s.__)('The wren
Earns his living
Noiselessly.')}},{name:'core/paragraph',attributes:{content:(0,s.__)('\u2014 Kobayashi Issa (\u4e00\u8336)')}}]},transforms:c.default,edit:o.default,save:_.default,deprecated:n.default};e.settings=p},1636,[2,347,1637,1643,1644,1645,1646,1647]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),l=t(r(d[2])),n=t(r(d[3])),c=r(d[4]),u=r(d[5]),s=r(d[6]);function f(t,o){var l=Object.keys(t);return Object.getOwnPropertySymbols&&l.push.apply(l,Object.getOwnPropertySymbols(t)),o&&(l=l.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),l}var b={align:{type:'string',default:'wide'},backgroundColor:{type:'string'},customBackgroundColor:{type:'string'},mediaAlt:{type:'string',source:'attribute',selector:'figure img',attribute:'alt',default:''},mediaPosition:{type:'string',default:'left'},mediaId:{type:'number'},mediaUrl:{type:'string',source:'attribute',selector:'figure video,figure img',attribute:'src'},mediaType:{type:'string'},mediaWidth:{type:'number',default:50},isStackedOnMobile:{type:'boolean',default:!1}},p=[{attributes:(function(t){for(var o=1;oS?u.slice(0,S):u,A=[{icon:'list-view',title:(0,E.__)('List view'),onClick:function(){return c({postLayout:'list'})},isActive:'list'===v},{icon:'grid-view',title:(0,E.__)('Grid view'),onClick:function(){return c({postLayout:'grid'})},isActive:'grid'===v}],N=(0,b.__experimentalGetSettings)().formats.date;return(0,n.createElement)(n.Fragment,null,T,(0,n.createElement)(w.BlockControls,null,(0,n.createElement)(y.ToolbarGroup,{controls:A})),(0,n.createElement)("ul",{className:(0,h.default)(this.props.className,(0,o.default)({'wp-block-latest-posts__list':!0,'is-grid':'grid'===v,'has-dates':C},"columns-"+k,'grid'===v))},B.map(function(t,o){var l=t.title.rendered.trim(),s=t.excerpt.rendered;''===t.excerpt.raw&&(s=t.content.raw);var c=document.createElement('div');return c.innerHTML=s,s=c.textContent||c.innerText||'',(0,n.createElement)("li",{key:o},(0,n.createElement)("a",{href:t.link,target:"_blank",rel:"noreferrer noopener"},l?(0,n.createElement)(n.RawHTML,null,l):(0,E.__)('(no title)')),C&&t.date_gmt&&(0,n.createElement)("time",{dateTime:(0,b.format)('c',t.date_gmt),className:"wp-block-latest-posts__post-date"},(0,b.dateI18n)(N,t.date_gmt)),f&&'excerpt'===_&&(0,n.createElement)("div",{className:"wp-block-latest-posts__post-excerpt"},(0,n.createElement)(n.RawHTML,{key:"html"},M'+(0,E.__)('Read more')+'':s.trim().split(' ',M).join(' '))),f&&'full_post'===_&&(0,n.createElement)("div",{className:"wp-block-latest-posts__post-full-content"},(0,n.createElement)(n.RawHTML,{key:"html"},t.content.raw.trim())))})))}}]),f})(n.Component),L=(0,k.withSelect)(function(t,n){var o=n.attributes,l=o.postsToShow,s=o.order,c=o.orderBy,u=o.categories;return{latestPosts:(0,t('core').getEntityRecords)('postType','post',(0,f.pickBy)({categories:u,order:s,orderby:c,per_page:l},function(t){return!(0,f.isUndefined)(t)}))}})(x);e.default=L},1652,[2,3,18,16,34,35,42,45,48,21,1166,1170,875,881,347,1469,1044,911]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),h=r(d[1]),c=(0,t.createElement)(h.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)(h.Path,{d:"M0,0h24v24H0V0z",fill:"none"}),(0,t.createElement)(h.Rect,{x:"11",y:"7",width:"6",height:"2"}),(0,t.createElement)(h.Rect,{x:"11",y:"11",width:"6",height:"2"}),(0,t.createElement)(h.Rect,{x:"11",y:"15",width:"6",height:"2"}),(0,t.createElement)(h.Rect,{x:"7",y:"7",width:"2",height:"2"}),(0,t.createElement)(h.Rect,{x:"7",y:"11",width:"2",height:"2"}),(0,t.createElement)(h.Rect,{x:"7",y:"15",width:"2",height:"2"}),(0,t.createElement)(h.Path,{d:"M20.1,3H3.9C3.4,3,3,3.4,3,3.9v16.2C3,20.5,3.4,21,3.9,21h16.2c0.4,0,0.9-0.5,0.9-0.9V3.9C21,3.4,20.5,3,20.1,3z M19,19H5V5h14V19z"}));e.default=c},1653,[3,1170]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return u.default}}),e.settings=e.name=void 0;var l=t(r(d[1])),n=r(d[2]),o=t(r(d[3])),s=t(r(d[4])),u=t(r(d[5])),c=t(r(d[6])),f=t(r(d[7]));function b(t,l){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),l&&(n=n.filter(function(l){return Object.getOwnPropertyDescriptor(t,l).enumerable})),n}function p(t){for(var n=1;nAlice.
  • The White Rabbit.
  • The Cheshire Cat.
  • The Mad Hatter.
  • The Queen of Hearts.
  • '}},transforms:f.default,merge:function(t,l){var n=l.values;return n&&'
  • '!==n?p({},t,{values:t.values+n}):t},edit:o.default,save:c.default};e.settings=v},1654,[2,18,347,1655,1657,1658,1659,1660]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var o=t.attributes,y=t.setAttributes,h=t.mergeBlocks,v=t.onReplace,O=t.className,I=o.ordered,k=o.values,L=o.type,C=o.reversed,E=o.start,S=I?'ol':'ul';return(0,n.createElement)(n.Fragment,null,(0,n.createElement)(s.RichText,{identifier:"values",multiline:"li",tagName:S,onChange:function(t){return y({values:t})},value:k,className:O,placeholder:(0,c.__)('Write list\u2026'),onMerge:h,onSplit:function(t){return(0,l.createBlock)(p.name,f({},o,{values:t}))},__unstableOnSplitMiddle:function(){return(0,l.createBlock)('core/paragraph')},onReplace:v,onRemove:function(){return v([])},start:E,reversed:C,type:L},function(t){var o=t.value,l=t.onChange;return(0,n.createElement)(n.Fragment,null,(0,n.createElement)(s.RichTextShortcut,{type:"primary",character:"[",onUse:function(){l((0,_.__unstableOutdentListItems)(o))}}),(0,n.createElement)(s.RichTextShortcut,{type:"primary",character:"]",onUse:function(){l((0,_.__unstableIndentListItems)(o,{type:S}))}}),(0,n.createElement)(s.RichTextShortcut,{type:"primary",character:"m",onUse:function(){l((0,_.__unstableIndentListItems)(o,{type:S}))}}),(0,n.createElement)(s.RichTextShortcut,{type:"primaryShift",character:"m",onUse:function(){l((0,_.__unstableOutdentListItems)(o))}}),(0,n.createElement)(s.BlockControls,null,(0,n.createElement)(u.ToolbarGroup,{controls:[{icon:'editor-ul',title:(0,c.__)('Convert to unordered list'),isActive:(0,_.__unstableIsActiveListType)(o,'ul',S),onClick:function(){l((0,_.__unstableChangeListType)(o,{type:'ul'})),(0,_.__unstableIsListRootSelected)(o)&&y({ordered:!1})}},{icon:'editor-ol',title:(0,c.__)('Convert to ordered list'),isActive:(0,_.__unstableIsActiveListType)(o,'ol',S),onClick:function(){l((0,_.__unstableChangeListType)(o,{type:'ol'})),(0,_.__unstableIsListRootSelected)(o)&&y({ordered:!0})}},{icon:'editor-outdent',title:(0,c.__)('Outdent list item'),shortcut:(0,c._x)('Backspace','keyboard key'),isDisabled:!(0,_.__unstableCanOutdentListItems)(o),onClick:function(){l((0,_.__unstableOutdentListItems)(o))}},{icon:'editor-indent',title:(0,c.__)('Indent list item'),shortcut:(0,c._x)('Space','keyboard key'),isDisabled:!(0,_.__unstableCanIndentListItems)(o),onClick:function(){l((0,_.__unstableIndentListItems)(o,{type:S}))}}]})))}),I&&(0,n.createElement)(b.default,{setAttributes:y,ordered:I,reversed:C,start:E}))};var n=r(d[1]),o=t(r(d[2])),c=r(d[3]),l=r(d[4]),s=r(d[5]),u=r(d[6]),_=r(d[7]),p=r(d[8]),b=t(r(d[9]));function y(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function f(t){for(var n=1;n1?l:(0,c.replace)(l,/\n/g,c.__UNSTABLE_LINE_SEPARATOR)}),c.__UNSTABLE_LINE_SEPARATOR),multilineTag:'li'})})}},{type:'block',blocks:['core/quote'],transform:function(t){var o=t.value;return(0,l.createBlock)('core/list',{values:(0,c.toHTMLString)({value:(0,c.create)({html:o,multilineTag:'p'}),multilineTag:'li'})})}},{type:'raw',selector:'ol,ul',schema:function(t){return{ol:p(t).ol,ul:p(t).ul}},transform:function(t){var o={ordered:'OL'===t.nodeName};if(o.ordered){var n=t.getAttribute('type');n&&(o.type=n),null!==t.getAttribute('reversed')&&(o.reversed=!0);var c=parseInt(t.getAttribute('start'),10);isNaN(c)||1===c&&!o.reversed||(o.start=c)}return(0,l.createBlock)('core/list',s({},(0,l.getBlockAttributes)('core/list',t.outerHTML),{},o))}}].concat((0,o.default)(['*','-'].map(function(t){return{type:'prefix',prefix:t,transform:function(t){return(0,l.createBlock)('core/list',{values:"
  • "+t+"
  • "})}}})),(0,o.default)(['1.','1)'].map(function(t){return{type:'prefix',prefix:t,transform:function(t){return(0,l.createBlock)('core/list',{ordered:!0,values:"
  • "+t+"
  • "})}}}))),to:[{type:'block',blocks:['core/paragraph'],transform:function(t){var o=t.values;return(0,c.split)((0,c.create)({html:o,multilineTag:'li',multilineWrapperTags:['ul','ol']}),c.__UNSTABLE_LINE_SEPARATOR).map(function(t){return(0,l.createBlock)('core/paragraph',{content:(0,c.toHTMLString)({value:t})})})}},{type:'block',blocks:['core/quote'],transform:function(t){var o=t.values;return(0,l.createBlock)('core/quote',{value:(0,c.toHTMLString)({value:(0,c.create)({html:o,multilineTag:'li',multilineWrapperTags:['ul','ol']}),multilineTag:'p'})})}}]};e.default=f},1660,[2,9,18,1045,1103]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return c.metadata}}),Object.defineProperty(e,"name",{enumerable:!0,get:function(){return c.name}}),e.settings=void 0;var n=t(r(d[1])),o=r(d[2]),c=r(d[3]);function s(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}var u=(function(t){for(var o=1;o'+(0,l.__)('One of the hardest things to do in technology is disrupt yourself.')+'

    ',citation:(0,l.__)('Matt Mullenweg')}},styles:[{name:'default',label:(0,l._x)('Default','block style'),isDefault:!0},{name:u.SOLID_COLOR_STYLE_NAME,label:(0,l.__)('Solid Color')}],supports:{align:['left','right','wide','full']},edit:n.default,save:_.default,deprecated:o.default};e.settings=c},1690,[2,347,1691,1692,1693,1694,1695,1696]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.SOLID_COLOR_CLASS=e.SOLID_COLOR_STYLE_NAME=void 0;e.SOLID_COLOR_STYLE_NAME='solid-color';e.SOLID_COLOR_CLASS="is-style-solid-color"},1691,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),l=t(r(d[2])),n=t(r(d[3])),c=t(r(d[4])),u=r(d[5]),s=r(d[6]),f=r(d[7]),C=r(d[8]);function v(t,o){var l=Object.keys(t);return Object.getOwnPropertySymbols&&l.push.apply(l,Object.getOwnPropertySymbols(t)),o&&(l=l.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),l}function b(t){for(var o=1;o500?2*v:500)},[]);var P=_(h.default.staticSpacer,h.default.staticDarkSpacer);return(0,l.createElement)(u.View,{style:[P,c&&h.default.selectedSpacer,{height:v}]},(0,l.createElement)(s.InspectorControls,null,(0,l.createElement)(o.PanelBody,{title:(0,f.__)('Spacer Settings')},(0,l.createElement)(o.RangeControl,{label:(0,f.__)('Height in pixels'),minimumValue:20,maximumValue:E,separatorType:'none',value:v,onChange:function(t){p({height:t})},style:h.default.rangeCellContainer}))))});e.default=S},1717,[2,3,5,25,1170,975,1044,347,1718]); +__d(function(g,r,i,a,m,e,d){m.exports={staticSpacer:{height:20,backgroundColor:"transparent",borderWidth:1,borderColor:"#e2e4e7",borderStyle:"dashed",borderRadius:1},staticDarkSpacer:{borderWidth:1,borderColor:"rgba(226, 228, 231, 0.3)",borderStyle:"dashed"},selectedSpacer:{borderWidth:2,borderColor:"#5198d9",borderStyle:"solid"},rangeCellContainer:{paddingBottom:16}}},1718,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),l=r(d[1]),n=(0,t.createElement)(l.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)(l.G,null,(0,t.createElement)(l.Path,{d:"M13 4v2h3.59L6 16.59V13H4v7h7v-2H7.41L18 7.41V11h2V4h-7"})));e.default=n},1719,[3,1170]); +__d(function(e,t,a,r,o,u,c){o.exports={name:"core/spacer",category:"layout",attributes:{height:{type:"number",default:100}}}},1720,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(n){var u=n.attributes;return(0,t.createElement)("div",{style:{height:u.height},"aria-hidden":!0})};var t=r(d[0])},1721,[3]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return l.default}}),e.settings=e.name=void 0;var n=r(d[1]),s=t(r(d[2])),u=t(r(d[3])),l=t(r(d[4])),o=t(r(d[5])),f=t(r(d[6])),c=l.default.name;e.name=c;var p={title:(0,n.__)('Subheading (deprecated)'),description:(0,n.__)('This block is deprecated. Please use the Paragraph block instead.'),icon:u.default,supports:{inserter:!1,multiple:!1},transforms:f.default,edit:s.default,save:o.default};e.settings=p},1722,[2,347,1723,1724,1725,1726,1727]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){var u=t.attributes,s=t.setAttributes,h=t.className,b=u.align,f=u.content,v=u.placeholder;return(0,l.default)('The Subheading block',{alternative:'the Paragraph block',plugin:'Gutenberg'}),(0,n.createElement)(n.Fragment,null,(0,n.createElement)(o.BlockControls,null,(0,n.createElement)(o.AlignmentToolbar,{value:b,onChange:function(t){s({align:t})}})),(0,n.createElement)(o.RichText,{tagName:"p",value:f,onChange:function(t){s({content:t})},style:{textAlign:b},className:h,placeholder:v||(0,c.__)('Write subheading\u2026')}))};var n=r(d[1]),l=t(r(d[2])),c=r(d[3]),o=r(d[4])},1723,[2,3,959,347,1044]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),l=r(d[1]),n=(0,t.createElement)(l.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,t.createElement)(l.Path,{d:"M7.1 6l-.5 3h4.5L9.4 19h3l1.8-10h4.5l.5-3H7.1z"}));e.default=n},1724,[3,1170]); +__d(function(t,e,n,o,r,c,s){r.exports={name:"core/subhead",category:"common",attributes:{align:{type:"string"},content:{type:"string",source:"html",selector:"p"}}}},1725,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(l){var u=l.attributes,c=u.align,o=u.content;return(0,t.createElement)(n.RichText.Content,{tagName:"p",style:{textAlign:c},value:o})};var t=r(d[0]),n=r(d[1])},1726,[3,1044]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[0]),t={to:[{type:'block',blocks:['core/paragraph'],transform:function(t){return(0,o.createBlock)('core/paragraph',t)}}]};e.default=t},1727,[1045]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return o.default}}),e.settings=e.name=void 0;var n=r(d[1]),l=t(r(d[2])),s=t(r(d[3])),c=t(r(d[4])),o=t(r(d[5])),_=t(r(d[6])),u=t(r(d[7])),f=o.default.name;e.name=f;var b={title:(0,n.__)('Table'),description:(0,n.__)('Insert a table \u2014 perfect for sharing charts and data.'),icon:c.default,example:{attributes:{head:[{cells:[{content:(0,n.__)('Version'),tag:'th'},{content:(0,n.__)('Jazz Musician'),tag:'th'},{content:(0,n.__)('Release Date'),tag:'th'}]}],body:[{cells:[{content:'5.2',tag:'td'},{content:'Jaco Pastorius',tag:'td'},{content:(0,n.__)('May 7, 2019'),tag:'td'}]},{cells:[{content:'5.1',tag:'td'},{content:'Betty Carter',tag:'td'},{content:(0,n.__)('February 21, 2019'),tag:'td'}]},{cells:[{content:'5.0',tag:'td'},{content:'Bebo Vald\xe9s',tag:'td'},{content:(0,n.__)('December 6, 2018'),tag:'td'}]}]}},styles:[{name:'regular',label:(0,n._x)('Default','block style'),isDefault:!0},{name:'stripes',label:(0,n.__)('Stripes')}],supports:{align:!0},transforms:u.default,edit:s.default,save:_.default,deprecated:l.default};e.settings=b},1728,[2,347,1729,1730,1732,1733,1734,1735]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),u=t(r(d[2])),s=r(d[3]),l=[{attributes:{hasFixedLayout:{type:'boolean',default:!1},backgroundColor:{type:'string'},head:{type:'array',default:[],source:'query',selector:'thead tr',query:{cells:{type:'array',default:[],source:'query',selector:'td,th',query:{content:{type:'string',source:'html'},tag:{type:'string',default:'td',source:'tag'},scope:{type:'string',source:'attribute',attribute:'scope'}}}}},body:{type:'array',default:[],source:'query',selector:'tbody tr',query:{cells:{type:'array',default:[],source:'query',selector:'td,th',query:{content:{type:'string',source:'html'},tag:{type:'string',default:'td',source:'tag'},scope:{type:'string',source:'attribute',attribute:'scope'}}}}},foot:{type:'array',default:[],source:'query',selector:'tfoot tr',query:{cells:{type:'array',default:[],source:'query',selector:'td,th',query:{content:{type:'string',source:'html'},tag:{type:'string',default:'td',source:'tag'},scope:{type:'string',source:'attribute',attribute:'scope'}}}}}},supports:{align:!0},save:function(t){var l=t.attributes,c=l.hasFixedLayout,n=l.head,y=l.body,p=l.foot,f=l.backgroundColor;if(!n.length&&!y.length&&!p.length)return null;var h=(0,s.getColorClassName)('background-color',f),b=(0,u.default)(h,{'has-fixed-layout':c,'has-background':!!h}),v=function(t){var u=t.type,l=t.rows;if(!l.length)return null;var c="t"+u;return(0,o.createElement)(c,null,l.map(function(t,u){var l=t.cells;return(0,o.createElement)("tr",{key:u},l.map(function(t,u){var l=t.content,c=t.tag,n=t.scope;return(0,o.createElement)(s.RichText.Content,{tagName:c,value:l,key:u,scope:'th'===c?n:void 0})}))}))};return(0,o.createElement)("table",{className:b},(0,o.createElement)(v,{type:"head",rows:n}),(0,o.createElement)(v,{type:"body",rows:y}),(0,o.createElement)(v,{type:"foot",rows:p}))}}];e.default=l},1729,[2,3,1166,1044]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.TableEdit=void 0;var n=r(d[1]),l=t(r(d[2])),o=t(r(d[3])),s=t(r(d[4])),u=t(r(d[5])),c=t(r(d[6])),C=t(r(d[7])),b=t(r(d[8])),f=t(r(d[9])),h=r(d[10]),p=r(d[11]),v=r(d[12]),y=r(d[13]),_=t(r(d[14]));function w(t,n){var l=Object.keys(t);return Object.getOwnPropertySymbols&&l.push.apply(l,Object.getOwnPropertySymbols(t)),n&&(l=l.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),l}function I(t){for(var n=1;n0&&void 0!==arguments[0]?arguments[0]:0,n=this.state.selectedCell;if(n){var l=this.props,o=l.attributes,s=l.setAttributes,u=n.columnIndex;this.setState({selectedCell:null}),s((0,y.insertColumn)(o,{columnIndex:u+t}))}}},{key:"onInsertColumnBefore",value:function(){this.onInsertColumn(0)}},{key:"onInsertColumnAfter",value:function(){this.onInsertColumn(1)}},{key:"onDeleteColumn",value:function(){var t=this.state.selectedCell;if(t){var n=this.props,l=n.attributes,o=n.setAttributes,s=t.sectionName,u=t.columnIndex;this.setState({selectedCell:null}),o((0,y.deleteColumn)(l,{sectionName:s,columnIndex:u}))}}},{key:"createOnFocus",value:function(t){var n=this;return function(){n.setState({selectedCell:I({},t,{type:'cell'})})}}},{key:"getTableControls",value:function(){var t=this.state.selectedCell;return[{icon:'table-row-before',title:(0,p.__)('Add Row Before'),isDisabled:!t,onClick:this.onInsertRowBefore},{icon:'table-row-after',title:(0,p.__)('Add Row After'),isDisabled:!t,onClick:this.onInsertRowAfter},{icon:'table-row-delete',title:(0,p.__)('Delete Row'),isDisabled:!t,onClick:this.onDeleteRow},{icon:'table-col-before',title:(0,p.__)('Add Column Before'),isDisabled:!t,onClick:this.onInsertColumnBefore},{icon:'table-col-after',title:(0,p.__)('Add Column After'),isDisabled:!t,onClick:this.onInsertColumnAfter},{icon:'table-col-delete',title:(0,p.__)('Delete Column'),isDisabled:!t,onClick:this.onDeleteColumn}]}},{key:"renderSection",value:function(t){var o=this,s=t.name,u=t.rows;if((0,y.isEmptyTableSection)(u))return null;var c="t"+s;return(0,n.createElement)(c,null,u.map(function(t,u){var c=t.cells;return(0,n.createElement)("tr",{key:u},c.map(function(t,c){var C=t.content,b=t.tag,p=t.scope,v=t.align,y={sectionName:s,rowIndex:u,columnIndex:c},_=(0,f.default)((0,l.default)({},"has-text-align-"+v,v),'wp-block-table__cell-content');return(0,n.createElement)(h.RichText,{tagName:b,key:c,className:_,scope:'th'===b?p:void 0,value:C,onChange:o.onChange,unstableOnFocus:o.createOnFocus(y)})}))}))}},{key:"componentDidUpdate",value:function(){var t=this.props.isSelected,n=this.state.selectedCell;!t&&n&&this.setState({selectedCell:null})}},{key:"render",value:function(){var t=this,l=this.props,o=l.attributes,s=l.className,u=l.backgroundColor,c=l.setBackgroundColor,C=l.setAttributes,b=this.state,w=b.initialRowCount,I=b.initialColumnCount,A=o.hasFixedLayout,E=o.caption,T=o.head,R=o.body,x=o.foot,D=(0,y.isEmptyTableSection)(T)&&(0,y.isEmptyTableSection)(R)&&(0,y.isEmptyTableSection)(x),O=this.renderSection;if(D)return(0,n.createElement)(v.Placeholder,{label:(0,p.__)('Table'),icon:(0,n.createElement)(h.BlockIcon,{icon:_.default,showColors:!0}),instructions:(0,p.__)('Insert a table for sharing data.'),isColumnLayout:!0},(0,n.createElement)("form",{className:"wp-block-table__placeholder-form",onSubmit:this.onCreateTable},(0,n.createElement)(v.TextControl,{type:"number",label:(0,p.__)('Column Count'),value:I,onChange:this.onChangeInitialColumnCount,min:"1",className:"wp-block-table__placeholder-input"}),(0,n.createElement)(v.TextControl,{type:"number",label:(0,p.__)('Row Count'),value:w,onChange:this.onChangeInitialRowCount,min:"1",className:"wp-block-table__placeholder-input"}),(0,n.createElement)(v.Button,{className:"wp-block-table__placeholder-button",isSecondary:!0,type:"submit"},(0,p.__)('Create Table'))));var F=(0,f.default)(u.class,{'has-fixed-layout':A,'has-background':!!u.color});return(0,n.createElement)(n.Fragment,null,(0,n.createElement)(h.BlockControls,null,(0,n.createElement)(v.ToolbarGroup,null,(0,n.createElement)(v.DropdownMenu,{hasArrowIndicator:!0,icon:"editor-table",label:(0,p.__)('Edit table'),controls:this.getTableControls()})),(0,n.createElement)(h.AlignmentToolbar,{label:(0,p.__)('Change column alignment'),alignmentControls:S,value:this.getCellAlignment(),onChange:function(n){return t.onChangeColumnAlignment(n)},onHover:this.onHoverAlignment})),(0,n.createElement)(h.InspectorControls,null,(0,n.createElement)(v.PanelBody,{title:(0,p.__)('Table Settings'),className:"blocks-table-settings"},(0,n.createElement)(v.ToggleControl,{label:(0,p.__)('Fixed width table cells'),checked:!!A,onChange:this.onChangeFixedLayout}),(0,n.createElement)(v.ToggleControl,{label:(0,p.__)('Header section'),checked:!(!T||!T.length),onChange:this.onToggleHeaderSection}),(0,n.createElement)(v.ToggleControl,{label:(0,p.__)('Footer section'),checked:!(!x||!x.length),onChange:this.onToggleFooterSection})),(0,n.createElement)(h.PanelColorSettings,{title:(0,p.__)('Color Settings'),initialOpen:!1,colorSettings:[{value:u.color,onChange:c,label:(0,p.__)('Background Color'),disableCustomColors:!0,colors:k}]})),(0,n.createElement)("figure",{className:s},(0,n.createElement)("table",{className:F},(0,n.createElement)(O,{name:"head",rows:T}),(0,n.createElement)(O,{name:"body",rows:R}),(0,n.createElement)(O,{name:"foot",rows:x})),(0,n.createElement)(h.RichText,{tagName:"figcaption",placeholder:(0,p.__)('Write caption\u2026'),value:E,onChange:function(t){return C({caption:t})},unstableOnFocus:function(){return t.setState({selectedCell:null})}})))}}]),w})(n.Component);e.TableEdit=E;var T=A('backgroundColor')(E);e.default=T},1730,[2,3,18,34,35,42,45,44,48,1166,1044,347,1170,1731,1732]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.createTable=function(t){var n=t.rowCount,o=t.columnCount;return{body:(0,c.times)(n,function(){return{cells:(0,c.times)(o,function(){return{content:'',tag:'td'}})}})}},e.getFirstRow=f,e.getCellAttribute=function(t,n,o){var l=n.sectionName,u=n.rowIndex,s=n.columnIndex;return(0,c.get)(t,[l,u,'cells',s,o])},e.updateSelectedCell=function(t,n,o){if(!n)return t;var l=(0,c.pick)(t,['head','body','foot']),u=n.sectionName,s=n.rowIndex;return(0,c.mapValues)(l,function(t,c){return u&&u!==c?t:t.map(function(t,l){return s&&s!==l?t:{cells:t.cells.map(function(t,u){var s={sectionName:c,columnIndex:u,rowIndex:l};return p(s,n)?o(t):t})}})})},e.isCellSelected=p,e.insertRow=y,e.deleteRow=function(t,o){var c=o.sectionName,l=o.rowIndex;return(0,n.default)({},c,t[c].filter(function(t,n){return n!==l}))},e.insertColumn=function(t,n){var l=n.columnIndex,u=(0,c.pick)(t,['head','body','foot']);return(0,c.mapValues)(u,function(t,n){return b(t)?t:t.map(function(t){return h(t)||t.cells.length=o?t.cells.filter(function(t,n){return n!==o}):t.cells}}).filter(function(t){return t.cells.length})})},e.toggleSection=function(t,o){if(!b(t[o]))return(0,n.default)({},o,[]);var l=(0,c.get)(t,['body',0,'cells','length'],1);return y(t,{sectionName:o,rowIndex:0,columnCount:l})},e.isEmptyTableSection=b,e.isEmptyRow=h;var n=t(r(d[1])),o=t(r(d[2])),c=r(d[3]);function l(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function u(t){for(var o=1;o0&&U,l&&(0,o.createElement)(S.Text,{style:I.default.uploadFailedText},c)))}}),(0,o.createElement)(P.Caption,{clientId:this.props.clientId,isSelected:this.state.isCaptionSelected,onFocus:this.onFocusCaption,onBlur:this.props.onBlur}))):(0,o.createElement)(S.View,{style:{flex:1}},(0,o.createElement)(P.MediaPlaceholder,{allowedTypes:[P.MEDIA_TYPE_VIDEO],onSelect:this.onSelectMediaUploadOption,icon:this.getIcon(!1,!0),onFocus:this.props.onFocus}))}}],[{key:"getDerivedStateFromProps",value:function(t,o){return{isCaptionSelected:t.isSelected&&o.isCaptionSelected}}}]),n})(y.default.Component),_=(0,b.withPreferredColorScheme)(D);e.default=_},1749,[2,3,18,16,34,35,42,45,44,48,13,25,821,1170,975,1044,347,881,960,1750,1751,1752,1753]); +__d(function(g,r,i,a,m,e,d){m.exports={video:{width:"100%"},videoContainer:{flexGrow:1,flexShrink:1,flexBasis:0,backgroundColor:"#000"},placeholder:{flexGrow:1,flexShrink:1,flexBasis:0,justifyContent:"center",alignItems:"center"},placeholderIcon:{justifyContent:"center",alignItems:"center",fill:"#2e4453",backgroundColor:"#e9eff3"},uploadFailedText:{color:"#2e4453",fontSize:14,marginTop:5},modalIcon:{width:40,height:40,justifyContent:"center",alignItems:"center"},modalIconRetry:{width:80,height:80,justifyContent:"center",alignItems:"center"},container:{flexGrow:1,flexShrink:1,flexBasis:0},containerFocused:{flexGrow:1,flexShrink:1,flexBasis:0,borderColor:"#00aadc",borderWidth:2,borderStyle:"solid"},icon:{fill:"#2e4453",width:"100%",height:"100%"},iconDark:{fill:"#fff"},iconUploading:{fill:"#c8d7e1",width:"100%",height:"100%"}}},1750,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var l=r(d[0]),t=r(d[1]),h=(0,l.createElement)(t.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)(t.Path,{fill:"none",d:"M0 0h24v24H0V0z"}),(0,l.createElement)(t.Path,{d:"M4 6.47L5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z"}));e.default=h},1751,[3,1170]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),l=r(d[1]),c=(0,t.createElement)(l.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,t.createElement)(l.Path,{d:"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"}),(0,t.createElement)(l.Path,{d:"M0 0h24v24H0z",fill:"none"}));e.default=c},1752,[3,1170]); +__d(function(g,r,i,a,m,e,d){var l=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[1]),o=l(r(d[2])),n=r(d[3]),u=r(d[4]),c=function(l){var c=l.setAttributes,_=l.attributes,s=_.autoplay,b=_.controls,p=_.loop,C=_.muted,h=_.playsInline,f=_.preload,v=function(l){return function(t){c((0,o.default)({},l,t))}};return(0,t.createElement)(t.Fragment,null,(0,t.createElement)(u.ToggleControl,{label:(0,n.__)('Autoplay'),onChange:v('autoplay'),checked:s,help:function(l){return l?(0,n.__)('Note: Autoplaying videos may cause usability issues for some visitors.'):null}}),(0,t.createElement)(u.ToggleControl,{label:(0,n.__)('Loop'),onChange:v('loop'),checked:p}),(0,t.createElement)(u.ToggleControl,{label:(0,n.__)('Muted'),onChange:v('muted'),checked:C}),(0,t.createElement)(u.ToggleControl,{label:(0,n.__)('Playback Controls'),onChange:v('controls'),checked:b}),(0,t.createElement)(u.ToggleControl,{label:(0,n.__)('Play inline'),onChange:v('playsInline'),checked:h}),(0,t.createElement)(u.SelectControl,{label:(0,n.__)('Preload'),value:f,onChange:function(l){return c({preload:l})},options:[{value:'auto',label:(0,n.__)('Auto')},{value:'metadata',label:(0,n.__)('Metadata')},{value:'none',label:(0,n.__)('None')}]}))};e.default=c},1753,[2,3,18,347,1170]); +__d(function(t,e,o,r,a,i,u){a.exports={name:"core/video",category:"common",attributes:{autoplay:{type:"boolean",source:"attribute",selector:"video",attribute:"autoplay"},caption:{type:"string",source:"html",selector:"figcaption"},controls:{type:"boolean",source:"attribute",selector:"video",attribute:"controls",default:!0},id:{type:"number"},loop:{type:"boolean",source:"attribute",selector:"video",attribute:"loop"},muted:{type:"boolean",source:"attribute",selector:"video",attribute:"muted"},poster:{type:"string",source:"attribute",selector:"video",attribute:"poster"},preload:{type:"string",source:"attribute",selector:"video",attribute:"preload",default:"metadata"},src:{type:"string",source:"attribute",selector:"video",attribute:"src"},playsInline:{type:"boolean",source:"attribute",selector:"video",attribute:"playsinline"}}}},1754,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(l){var n=l.attributes,c=n.autoplay,u=n.caption,p=n.controls,s=n.loop,f=n.muted,v=n.poster,y=n.preload,E=n.src,_=n.playsInline;return(0,t.createElement)("figure",null,E&&(0,t.createElement)("video",{autoPlay:c,controls:p,loop:s,muted:f,poster:v,preload:'metadata'!==y?y:void 0,src:E,playsInline:_}),!o.RichText.isEmpty(u)&&(0,t.createElement)(o.RichText.Content,{tagName:"figcaption",value:u}))};var t=r(d[0]),o=r(d[1])},1755,[3,1044]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[0]),o=r(d[1]),n={from:[{type:'files',isMatch:function(t){return 1===t.length&&0===t[0].type.indexOf('video/')},transform:function(n){var c=n[0];return(0,o.createBlock)('core/video',{src:(0,t.createBlobURL)(c)})}},{type:'shortcode',tag:'video',attributes:{src:{type:'string',shortcode:function(t){var o=t.named,n=o.src,c=o.mp4,u=o.m4v,s=o.webm,p=o.ogv,f=o.flv;return n||c||u||s||p||f}},poster:{type:'string',shortcode:function(t){return t.named.poster}},loop:{type:'string',shortcode:function(t){return t.named.loop}},autoplay:{type:'string',shortcode:function(t){return t.named.autoplay}},preload:{type:'string',shortcode:function(t){return t.named.preload}}}}]};e.default=n},1756,[1520,1045]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.settings=e.name=void 0;var o=r(d[1]),s=t(r(d[2]));e.name='core/tag-cloud';var n={title:(0,o.__)('Tag Cloud'),description:(0,o.__)('A cloud of your most used tags.'),icon:'tag',category:'widgets',supports:{html:!1,align:!0},edit:s.default};e.settings=n},1757,[2,347,1758]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),n=t(r(d[2])),l=t(r(d[3])),u=t(r(d[4])),s=t(r(d[5])),c=t(r(d[6])),h=t(r(d[7])),f=t(r(d[8])),p=r(d[9]),y=r(d[10]),T=r(d[11]),b=r(d[12]),v=r(d[13]),C=t(r(d[14])),x=(function(t){function T(){var t;return(0,l.default)(this,T),(t=(0,s.default)(this,(0,c.default)(T).apply(this,arguments))).state={editing:!t.props.attributes.taxonomy},t.setTaxonomy=t.setTaxonomy.bind((0,h.default)(t)),t.toggleShowTagCounts=t.toggleShowTagCounts.bind((0,h.default)(t)),t}return(0,f.default)(T,t),(0,u.default)(T,[{key:"getTaxonomyOptions",value:function(){var t=(0,p.filter)(this.props.taxonomies,'show_cloud'),o={label:(0,b.__)('- Select -'),value:'',disabled:!0},l=(0,p.map)(t,function(t){return{value:t.slug,label:t.name}});return[o].concat((0,n.default)(l))}},{key:"setTaxonomy",value:function(t){(0,this.props.setAttributes)({taxonomy:t})}},{key:"toggleShowTagCounts",value:function(){var t=this.props,o=t.attributes;(0,t.setAttributes)({showTagCounts:!o.showTagCounts})}},{key:"render",value:function(){var t=this.props.attributes,n=t.taxonomy,l=t.showTagCounts,u=this.getTaxonomyOptions(),s=(0,o.createElement)(v.InspectorControls,null,(0,o.createElement)(y.PanelBody,{title:(0,b.__)('Tag Cloud Settings')},(0,o.createElement)(y.SelectControl,{label:(0,b.__)('Taxonomy'),options:u,value:n,onChange:this.setTaxonomy}),(0,o.createElement)(y.ToggleControl,{label:(0,b.__)('Show post counts'),checked:l,onChange:this.toggleShowTagCounts})));return(0,o.createElement)(o.Fragment,null,s,(0,o.createElement)(C.default,{key:"tag-cloud",block:"core/tag-cloud",attributes:t}))}}]),T})(o.Component),_=(0,T.withSelect)(function(t){return{taxonomies:t('core').getTaxonomies()}})(x);e.default=_},1758,[2,3,9,34,35,42,45,44,48,21,1170,911,347,1044,1558]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"metadata",{enumerable:!0,get:function(){return f.default}}),e.settings=e.name=void 0;var o=r(d[1]),n=r(d[2]),c=t(r(d[3])),u=t(r(d[4])),l=t(r(d[5])),f=t(r(d[6])),s=t(r(d[7])),_=f.default.name;e.name=_;var p={title:(0,o.__)('Group'),icon:l.default,description:(0,o.__)('A block that groups other blocks.'),keywords:[(0,o.__)('container'),(0,o.__)('wrapper'),(0,o.__)('row'),(0,o.__)('section')],example:{attributes:{customBackgroundColor:'#ffffff'},innerBlocks:[{name:'core/paragraph',attributes:{customTextColor:'#cf2e2e',fontSize:'large',content:(0,o.__)('One.')}},{name:'core/paragraph',attributes:{customTextColor:'#ff6900',fontSize:'large',content:(0,o.__)('Two.')}},{name:'core/paragraph',attributes:{customTextColor:'#fcb900',fontSize:'large',content:(0,o.__)('Three.')}},{name:'core/paragraph',attributes:{customTextColor:'#00d084',fontSize:'large',content:(0,o.__)('Four.')}},{name:'core/paragraph',attributes:{customTextColor:'#0693e3',fontSize:'large',content:(0,o.__)('Five.')}},{name:'core/paragraph',attributes:{customTextColor:'#9b51e0',fontSize:'large',content:(0,o.__)('Six.')}}]},supports:{align:['wide','full'],anchor:!0,html:!1},transforms:{from:[{type:'block',isMultiBlock:!0,blocks:['*'],__experimentalConvert:function(t){if(1!==t.length||'core/group'!==t[0].name){var o=['wide','full'],c=t.reduce(function(t,n){var c=n.attributes.align;return o.indexOf(c)>o.indexOf(t)?c:t},void 0),u=t.map(function(t){return(0,n.createBlock)(t.name,t.attributes,t.innerBlocks)});return(0,n.createBlock)('core/group',{align:c},u)}}}]},edit:u.default,save:s.default,deprecated:c.default};e.settings=p},1759,[2,347,1045,1760,1761,1763,1764,1765]); +__d(function(g,r,i,a,m,e,d){var o=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=r(d[1]),l=o(r(d[2])),n=r(d[3]),u=[{attributes:{backgroundColor:{type:'string'},customBackgroundColor:{type:'string'}},supports:{align:['wide','full'],anchor:!0,html:!1},save:function(o){var u=o.attributes,c=u.backgroundColor,s=u.customBackgroundColor,b=(0,n.getColorClassName)('background-color',c),k=(0,l.default)(b,{'has-background':c||s}),v={backgroundColor:b?void 0:s};return(0,t.createElement)("div",{className:k,style:v},(0,t.createElement)(n.InnerBlocks.Content,null))}}];e.default=u},1760,[2,3,1166,1044]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),n=t(r(d[2])),c=r(d[3]),l=r(d[4]),u=r(d[5]),s=r(d[6]),f=t(r(d[7]));function p(t,o){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),o&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n}function O(t){for(var o=1;o0&&void 0!==arguments[0]?arguments[0]:p,c=arguments.length>1?arguments[1]:void 0;return t(n,c)}})])({isGeneralSidebarDismissed:function(t,n){switch(n.type){case'OPEN_GENERAL_SIDEBAR':case'CLOSE_GENERAL_SIDEBAR':return'CLOSE_GENERAL_SIDEBAR'===n.type}return t},panels:function(t,n){switch(n.type){case'TOGGLE_PANEL_ENABLED':var u=n.panelName;return s({},t,(0,c.default)({},u,s({},t[u],{enabled:!(0,o.get)(t,[u,'enabled'],!0)})));case'TOGGLE_PANEL_OPENED':var E=n.panelName,l=!0===t[E]||(0,o.get)(t,[E,'opened'],!1);return s({},t,(0,c.default)({},E,s({},t[E],{opened:!l})))}return t},features:function(t,n){return'TOGGLE_FEATURE'===n.type?s({},t,(0,c.default)({},n.feature,!t[n.feature])):t},editorMode:function(t,n){return'SWITCH_MODE'===n.type?n.mode:t},pinnedPluginItems:function(t,n){return'TOGGLE_PINNED_PLUGIN_ITEM'===n.type?s({},t,(0,c.default)({},n.pluginName,!(0,o.get)(t,[n.pluginName],!0))):t},hiddenBlockTypes:function(t,c){switch(c.type){case'SHOW_BLOCK_TYPES':return o.without.apply(void 0,[t].concat((0,n.default)(c.blockNames)));case'HIDE_BLOCK_TYPES':return(0,o.union)(t,c.blockNames)}return t},preferredStyleVariations:function(t,n){switch(n.type){case'UPDATE_PREFERRED_STYLE_VARIATIONS':return n.blockName?n.blockStyle?s({},t,(0,c.default)({},n.blockName,n.blockStyle)):(0,o.omit)(t,[n.blockName]):t}return t},localAutosaveInterval:function(t,n){switch(n.type){case'UPDATE_LOCAL_AUTOSAVE_INTERVAL':return n.interval}return t}});function v(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],c=arguments.length>1?arguments[1]:void 0;switch(c.type){case'REMOVE_PANEL':if(!(0,o.includes)(t,c.panelName))return[].concat((0,n.default)(t),[c.panelName])}return t}function S(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:_,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'OPEN_GENERAL_SIDEBAR':return n.name}return t}function O(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'OPEN_MODAL':return n.name;case'CLOSE_MODAL':return null}return t}function A(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];switch((arguments.length>1?arguments[1]:void 0).type){case'OPEN_PUBLISH_SIDEBAR':return!0;case'CLOSE_PUBLISH_SIDEBAR':return!1;case'TOGGLE_PUBLISH_SIDEBAR':return!t}return t}function L(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];switch((arguments.length>1?arguments[1]:void 0).type){case'REQUEST_META_BOX_UPDATES':return!0;case'META_BOX_UPDATES_SUCCESS':return!1;default:return t}}function P(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;switch(n.type){case'SET_META_BOXES_PER_LOCATIONS':return n.metaBoxesPerLocation}return t}e.preferences=f;var h=(0,u.combineReducers)({isSaving:L,locations:P}),N=(0,u.combineReducers)({activeGeneralSidebar:S,activeModal:O,metaBoxes:h,preferences:f,publishSidebarActive:A,removedPanels:v});e.default=N},1776,[2,9,18,21,911,1777]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.PREFERENCES_DEFAULTS=void 0;e.PREFERENCES_DEFAULTS={editorMode:'visual',isGeneralSidebarDismissed:!0,panels:{'post-status':{opened:!0}},features:{fixedToolbar:!0},pinnedPluginItems:{},hiddenBlockTypes:[]}},1777,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=t(r(d[1])),o=r(d[2]),u=t(r(d[3])),l=t(r(d[4]));var c=function(t){var c,p=[(0,u.default)(l.default)],f=function(){throw new Error("Dispatching while constructing your middleware is not allowed. Other middleware would not be applied to this dispatch.")},h={getState:t.getState,dispatch:function(){return f.apply(void 0,arguments)}};return c=p.map(function(t){return t(h)}),f=o.flowRight.apply(void 0,(0,n.default)(c))(t.dispatch),t.dispatch=f,t};e.default=c},1778,[2,9,21,1445,1779]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o,s=t(r(d[1])),n=t(r(d[2])),c=r(d[3]),u=r(d[4]),l=r(d[5]),f=r(d[6]),_=t(r(d[7])),p=r(d[8]),v=r(d[9]),w=r(d[10]),S={SET_META_BOXES_PER_LOCATIONS:function(t,s){setTimeout(function(){var t=(0,u.select)('core/editor').getCurrentPostType();window.postboxes.page!==t&&window.postboxes.add_postbox_toggles(t)});var n=(0,u.select)('core/editor').isSavingPost(),c=(0,u.select)('core/editor').isAutosavingPost(),l=(0,u.select)('core/edit-post').hasMetaBoxes();o&&o(),o=(0,u.subscribe)(function(){var t=(0,u.select)('core/editor').isSavingPost(),o=(0,u.select)('core/editor').isAutosavingPost(),f=l&&n&&!t&&!c;n=t,c=o,f&&s.dispatch((0,p.requestMetaBoxUpdates)())})},REQUEST_META_BOX_UPDATES:function(t,o){window.tinyMCE&&window.tinyMCE.triggerSave();var l=o.getState(),f=(0,u.select)('core/editor').getCurrentPost(l),S=[!!f.comment_status&&['comment_status',f.comment_status],!!f.ping_status&&['ping_status',f.ping_status],!!f.sticky&&['sticky',f.sticky],!!f.author&&['post_author',f.author]].filter(Boolean),b=[new window.FormData(document.querySelector('.metabox-base-form'))].concat((0,n.default)((0,v.getActiveMetaBoxLocations)(l).map(function(t){return new window.FormData((0,w.getMetaBoxContainer)(t))}))),y=(0,c.reduce)(b,function(t,o){var n=o,c=Array.isArray(n),u=0;for(n=c?n:n["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var l;if(c){if(u>=n.length)break;l=n[u++]}else{if((u=n.next()).done)break;l=u.value}var f=l,_=(0,s.default)(f,2),p=_[0],v=_[1];t.append(p,v)}return t},new window.FormData);S.forEach(function(t){var o=(0,s.default)(t,2),n=o[0],c=o[1];return y.append(n,c)}),(0,_.default)({url:window._wpMetaBoxUrl,method:'POST',body:y,parse:!1}).then(function(){return o.dispatch((0,p.metaBoxUpdatesSuccess)())})},SWITCH_MODE:function(t){'visual'!==t.mode&&(0,u.dispatch)('core/block-editor').clearSelectedBlock();var o='visual'===t.mode?(0,f.__)('Visual editor selected'):(0,f.__)('Code editor selected');(0,l.speak)(o,'assertive')}};e.default=S},1779,[2,5,9,21,911,1231,347,875,1780,1781,1782]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.openGeneralSidebar=function(t){return{type:'OPEN_GENERAL_SIDEBAR',name:t}},e.closeGeneralSidebar=function(){return{type:'CLOSE_GENERAL_SIDEBAR'}},e.openModal=function(t){return{type:'OPEN_MODAL',name:t}},e.closeModal=function(){return{type:'CLOSE_MODAL'}},e.openPublishSidebar=function(){return{type:'OPEN_PUBLISH_SIDEBAR'}},e.closePublishSidebar=function(){return{type:'CLOSE_PUBLISH_SIDEBAR'}},e.togglePublishSidebar=function(){return{type:'TOGGLE_PUBLISH_SIDEBAR'}},e.toggleEditorPanelEnabled=function(t){return{type:'TOGGLE_PANEL_ENABLED',panelName:t}},e.toggleEditorPanelOpened=function(t){return{type:'TOGGLE_PANEL_OPENED',panelName:t}},e.removeEditorPanel=function(t){return{type:'REMOVE_PANEL',panelName:t}},e.toggleFeature=function(t){return{type:'TOGGLE_FEATURE',feature:t}},e.switchEditorMode=function(t){return{type:'SWITCH_MODE',mode:t}},e.togglePinnedPluginItem=function(t){return{type:'TOGGLE_PINNED_PLUGIN_ITEM',pluginName:t}},e.hideBlockTypes=function(n){return{type:'HIDE_BLOCK_TYPES',blockNames:(0,t.castArray)(n)}},e.updatePreferredStyleVariations=function(t,n){return{type:'UPDATE_PREFERRED_STYLE_VARIATIONS',blockName:t,blockStyle:n}},e.__experimentalUpdateLocalAutosaveInterval=function(t){return{type:'UPDATE_LOCAL_AUTOSAVE_INTERVAL',interval:t}},e.showBlockTypes=function(n){return{type:'SHOW_BLOCK_TYPES',blockNames:(0,t.castArray)(n)}},e.setAvailableMetaBoxesPerLocation=function(t){return{type:'SET_META_BOXES_PER_LOCATIONS',metaBoxesPerLocation:t}},e.requestMetaBoxUpdates=function(){return{type:'REQUEST_META_BOX_UPDATES'}},e.metaBoxUpdatesSuccess=function(){return{type:'META_BOX_UPDATES_SUCCESS'}};var t=r(d[0])},1780,[21]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.getEditorMode=function(t){return l(t,'editorMode','visual')},e.isEditorSidebarOpened=u,e.isPluginSidebarOpened=function(t){return!!s(t)&&!u(t)},e.getActiveGeneralSidebarName=s,e.getPreferences=c,e.getPreference=l,e.isPublishSidebarOpened=function(t){return t.publishSidebarActive},e.isEditorPanelRemoved=f,e.isEditorPanelEnabled=v,e.isEditorPanelOpened=function(t,n){var u=l(t,'panels');return!0===(0,o.get)(u,[n])||!0===(0,o.get)(u,[n,'opened'])},e.isModalActive=function(t,n){return t.activeModal===n},e.isFeatureActive=function(t,n){return(0,o.get)(t.preferences.features,[n],!1)},e.isPluginItemPinned=function(t,n){var u=l(t,'pinnedPluginItems',{});return(0,o.get)(u,[n],!0)},e.isMetaBoxLocationVisible=function(t,n){return x(t,n)&&(0,o.some)(B(t,n),function(n){var o=n.id;return v(t,"meta-box-"+o)})},e.isMetaBoxLocationActive=x,e.getMetaBoxesPerLocation=B,e.hasMetaBoxes=function(t){return b(t).length>0},e.isSavingMetaBoxes=function(t){return t.metaBoxes.isSaving},e.getAllMetaBoxes=e.getActiveMetaBoxLocations=void 0;var n=t(r(d[1])),o=r(d[2]);function u(t){var n=s(t);return(0,o.includes)(['edit-post/document','edit-post/block'],n)}function s(t){return l(t,'isGeneralSidebarDismissed',!1)?null:t.activeGeneralSidebar}function c(t){return t.preferences}function l(t,n,o){var u=c(t)[n];return void 0===u?o:u}function f(t,n){return(0,o.includes)(t.removedPanels,n)}function v(t,n){var u=l(t,'panels');return!f(t,n)&&(0,o.get)(u,[n,'enabled'],!0)}var b=(0,n.default)(function(t){return Object.keys(t.metaBoxes.locations).filter(function(n){return x(t,n)})},function(t){return[t.metaBoxes.locations]});function x(t,n){var o=B(t,n);return!!o&&0!==o.length}function B(t,n){return t.metaBoxes.locations[n]}e.getActiveMetaBoxLocations=b;var p=(0,n.default)(function(t){return(0,o.flatten)((0,o.values)(t.metaBoxes.locations))},function(t){return[t.metaBoxes.locations]});e.getAllMetaBoxes=p},1781,[2,1034,21]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.getMetaBoxContainer=void 0;e.getMetaBoxContainer=function(t){var o=document.querySelector(".edit-post-meta-boxes-area.is-"+t+" .metabox-location-"+t);return o||document.querySelector('#metaboxes .metabox-location-'+t)}},1782,[]); +__d(function(g,r,i,a,m,e,d){Object.defineProperty(e,"__esModule",{value:!0}),e.VIEW_AS_PREVIEW_LINK_SELECTOR=e.VIEW_AS_LINK_SELECTOR=e.STORE_KEY=void 0;e.STORE_KEY='core/edit-post';e.VIEW_AS_LINK_SELECTOR='#wp-admin-bar-view a';e.VIEW_AS_PREVIEW_LINK_SELECTOR='#wp-admin-bar-preview a'},1783,[]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(d[1]),n=t(r(d[2])),s=t(r(d[3])),l=t(r(d[4])),c=t(r(d[5])),u=t(r(d[6])),p=t(r(d[7])),f=t(r(d[8])),y=t(r(d[9])),T=t(r(d[10])),b=t(r(d[11])),h=t(r(d[12])),v=r(d[13]),O=r(d[14]),k=r(d[15]),E=r(d[16]),w=r(d[17]),P=r(d[18]),S=r(d[19]),M=t(r(d[20]));function j(t,o){var n=Object.keys(t);return Object.getOwnPropertySymbols&&n.push.apply(n,Object.getOwnPropertySymbols(t)),o&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n}function F(t){for(var o=1;o0){var u=!0===t.allowedBlockTypes?(0,v.map)(c,'name'):t.allowedBlockTypes||[];t.allowedBlockTypes=v.without.apply(void 0,[u].concat((0,l.default)(s)))}return t}},{key:"componentDidMount",value:function(){var t=this;this.subscriptionParentSetFocusOnTitle=(0,O.subscribeSetFocusOnTitle)(function(){t.postTitleRef&&t.postTitleRef.focus()})}},{key:"componentWillUnmount",value:function(){this.subscriptionParentSetFocusOnTitle&&this.subscriptionParentSetFocusOnTitle.remove()}},{key:"setTitleRef",value:function(t){this.postTitleRef=t}},{key:"render",value:function(){var t=this.props,l=t.settings,c=t.hasFixedToolbar,u=t.focusMode,p=t.initialEdits,f=t.hiddenBlockTypes,y=t.blockTypes,T=t.post,b=t.postType,h=(0,s.default)(t,["settings","hasFixedToolbar","focusMode","initialEdits","hiddenBlockTypes","blockTypes","post","postType"]),v=this.getEditorSettings(l,c,u,f,y),O=T||{id:1,title:{raw:h.initialTitle},content:{raw:(0,E.serialize)((0,E.parse)(h.initialHtml||''))},type:b,status:'draft',meta:[]};return(0,o.createElement)(S.SlotFillProvider,null,(0,o.createElement)(k.EditorProvider,(0,n.default)({settings:v,post:O,initialEdits:p,useSubRegistry:!1},h),(0,o.createElement)(M.default,{setTitleRef:this.setTitleRef})))}}]),c})(o.Component),B=(0,P.compose)([(0,w.withSelect)(function(t){var o=t('core/edit-post'),n=o.isFeatureActive,s=o.getEditorMode,l=o.getPreference,c=t('core/blocks').getBlockTypes;return{hasFixedToolbar:n('fixedToolbar'),focusMode:n('focusMode'),mode:s(),hiddenBlockTypes:l('hiddenBlockTypes'),blockTypes:c()}}),(0,w.withDispatch)(function(t){return{switchEditorMode:t('core/edit-post').switchEditorMode}})])(R);e.default=B},1784,[2,3,16,19,9,18,34,35,42,45,44,48,353,21,821,1451,1045,911,975,1170,1785]); +__d(function(g,r,i,a,m,e,d){var t=r(d[0]);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=r(d[1]),o=t(r(d[2])),s=t(r(d[3])),l=t(r(d[4])),u=t(r(d[5])),f=t(r(d[6])),c=t(r(d[7])),h=t(r(d[8])),y=r(d[9]),p=t(r(d[10])),v=r(d[11]),b=r(d[12]),w=r(d[13]),S=r(d[14]),V=r(d[15]),A=r(d[16]),E=t(r(d[17])),k=t(r(d[18])),I=t(r(d[19])),O=t(r(d[20]));function P(t,n){var o=Object.keys(t);return Object.getOwnPropertySymbols&&o.push.apply(o,Object.getOwnPropertySymbols(t)),n&&(o=o.filter(function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable})),o}function _(t){for(var n=1;n B -> A:\n\n cycle.push(cycle[0]);\n console.warn(\n \"Require cycle: \".concat(cycle.join(\" -> \"), \"\\n\\n\") +\n \"Require cycles are allowed, but can result in uninitialized values. \" +\n \"Consider refactoring to remove the need for a cycle.\"\n );\n }\n }\n\n var module = modules[moduleIdReallyIsNumber];\n return module && module.isInitialized\n ? module.publicModule.exports\n : guardedLoadModule(moduleIdReallyIsNumber, module);\n}\n\nfunction metroImportDefault(moduleId) {\n if (__DEV__ && typeof moduleId === \"string\") {\n var verboseName = moduleId;\n moduleId = verboseNamesToModuleIds[verboseName];\n } //$FlowFixMe: at this point we know that moduleId is a number\n\n var moduleIdReallyIsNumber = moduleId;\n\n if (\n modules[moduleIdReallyIsNumber] &&\n modules[moduleIdReallyIsNumber].importedDefault !== EMPTY\n ) {\n return modules[moduleIdReallyIsNumber].importedDefault;\n }\n\n var exports = metroRequire(moduleIdReallyIsNumber);\n var importedDefault =\n exports && exports.__esModule ? exports.default : exports;\n return (modules[moduleIdReallyIsNumber].importedDefault = importedDefault);\n}\n\nmetroRequire.importDefault = metroImportDefault;\n\nfunction metroImportAll(moduleId) {\n if (__DEV__ && typeof moduleId === \"string\") {\n var verboseName = moduleId;\n moduleId = verboseNamesToModuleIds[verboseName];\n } //$FlowFixMe: at this point we know that moduleId is a number\n\n var moduleIdReallyIsNumber = moduleId;\n\n if (\n modules[moduleIdReallyIsNumber] &&\n modules[moduleIdReallyIsNumber].importedAll !== EMPTY\n ) {\n return modules[moduleIdReallyIsNumber].importedAll;\n }\n\n var exports = metroRequire(moduleIdReallyIsNumber);\n var importedAll;\n\n if (exports && exports.__esModule) {\n importedAll = exports;\n } else {\n importedAll = {}; // Refrain from using Object.assign, it has to work in ES3 environments.\n\n if (exports) {\n for (var _key in exports) {\n if (hasOwnProperty.call(exports, _key)) {\n importedAll[_key] = exports[_key];\n }\n }\n }\n\n importedAll.default = exports;\n }\n\n return (modules[moduleIdReallyIsNumber].importedAll = importedAll);\n}\n\nmetroRequire.importAll = metroImportAll;\nvar inGuard = false;\n\nfunction guardedLoadModule(moduleId, module) {\n if (!inGuard && global.ErrorUtils) {\n inGuard = true;\n var returnValue;\n\n try {\n returnValue = loadModuleImplementation(moduleId, module);\n } catch (e) {\n global.ErrorUtils.reportFatalError(e);\n }\n\n inGuard = false;\n return returnValue;\n } else {\n return loadModuleImplementation(moduleId, module);\n }\n}\n\nvar ID_MASK_SHIFT = 16;\nvar LOCAL_ID_MASK = ~0 >>> ID_MASK_SHIFT;\n\nfunction unpackModuleId(moduleId) {\n var segmentId = moduleId >>> ID_MASK_SHIFT;\n var localId = moduleId & LOCAL_ID_MASK;\n return {\n segmentId: segmentId,\n localId: localId\n };\n}\n\nmetroRequire.unpackModuleId = unpackModuleId;\n\nfunction packModuleId(value) {\n return (value.segmentId << ID_MASK_SHIFT) + value.localId;\n}\n\nmetroRequire.packModuleId = packModuleId;\nvar hooks = [];\n\nfunction registerHook(cb) {\n var hook = {\n cb: cb\n };\n hooks.push(hook);\n return {\n release: function release() {\n for (var i = 0; i < hooks.length; ++i) {\n if (hooks[i] === hook) {\n hooks.splice(i, 1);\n break;\n }\n }\n }\n };\n}\n\nmetroRequire.registerHook = registerHook;\nvar moduleDefinersBySegmentID = [];\n\nfunction registerSegment(segmentID, moduleDefiner) {\n moduleDefinersBySegmentID[segmentID] = moduleDefiner;\n}\n\nfunction loadModuleImplementation(moduleId, module) {\n if (!module && moduleDefinersBySegmentID.length > 0) {\n var _unpackModuleId = unpackModuleId(moduleId),\n segmentId = _unpackModuleId.segmentId,\n localId = _unpackModuleId.localId;\n\n var definer = moduleDefinersBySegmentID[segmentId];\n\n if (definer != null) {\n definer(localId);\n module = modules[moduleId];\n }\n }\n\n var nativeRequire = global.nativeRequire;\n\n if (!module && nativeRequire) {\n var _unpackModuleId2 = unpackModuleId(moduleId),\n _segmentId = _unpackModuleId2.segmentId,\n _localId = _unpackModuleId2.localId;\n\n nativeRequire(_localId, _segmentId);\n module = modules[moduleId];\n }\n\n if (!module) {\n throw unknownModuleError(moduleId);\n }\n\n if (module.hasError) {\n throw moduleThrewError(moduleId, module.error);\n } // `metroRequire` calls into the require polyfill itself are not analyzed and\n // replaced so that they use numeric module IDs.\n // The systrace module will expose itself on the metroRequire function so that\n // it can be used here.\n // TODO(davidaurelio) Scan polyfills for dependencies, too (t9759686)\n\n if (__DEV__) {\n var Systrace = metroRequire.Systrace;\n } // We must optimistically mark module as initialized before running the\n // factory to keep any require cycles inside the factory from causing an\n // infinite require loop.\n\n module.isInitialized = true;\n var _module = module,\n factory = _module.factory,\n dependencyMap = _module.dependencyMap;\n\n if (__DEV__) {\n initializingModuleIds.push(moduleId);\n }\n\n try {\n if (__DEV__) {\n // $FlowFixMe: we know that __DEV__ is const and `Systrace` exists\n Systrace.beginEvent(\"JS_require_\" + (module.verboseName || moduleId));\n }\n\n var _moduleObject = module.publicModule;\n\n if (__DEV__) {\n if (module.hot) {\n _moduleObject.hot = module.hot;\n }\n }\n\n _moduleObject.id = moduleId;\n\n if (hooks.length > 0) {\n for (var i = 0; i < hooks.length; ++i) {\n hooks[i].cb(moduleId, _moduleObject);\n }\n } // keep args in sync with with defineModuleCode in\n // metro/src/Resolver/index.js\n // and metro/src/ModuleGraph/worker.js\n\n factory(\n global,\n metroRequire,\n metroImportDefault,\n metroImportAll,\n _moduleObject,\n _moduleObject.exports,\n dependencyMap\n ); // avoid removing factory in DEV mode as it breaks HMR\n\n if (!__DEV__) {\n // $FlowFixMe: This is only sound because we never access `factory` again\n module.factory = undefined;\n module.dependencyMap = undefined;\n }\n\n if (__DEV__) {\n // $FlowFixMe: we know that __DEV__ is const and `Systrace` exists\n Systrace.endEvent();\n }\n\n return _moduleObject.exports;\n } catch (e) {\n module.hasError = true;\n module.error = e;\n module.isInitialized = false;\n module.publicModule.exports = undefined;\n throw e;\n } finally {\n if (__DEV__) {\n if (initializingModuleIds.pop() !== moduleId) {\n throw new Error(\n \"initializingModuleIds is corrupt; something is terribly wrong\"\n );\n }\n }\n }\n}\n\nfunction unknownModuleError(id) {\n var message = 'Requiring unknown module \"' + id + '\".';\n\n if (__DEV__) {\n message +=\n \"If you are sure the module is there, try restarting Metro Bundler. \" +\n \"You may also want to run `yarn`, or `npm install` (depending on your environment).\";\n }\n\n return Error(message);\n}\n\nfunction moduleThrewError(id, error) {\n var displayName = (__DEV__ && modules[id] && modules[id].verboseName) || id;\n return Error(\n 'Requiring module \"' + displayName + '\", which threw an exception: ' + error\n );\n}\n\nif (__DEV__) {\n metroRequire.Systrace = {\n beginEvent: function beginEvent() {},\n endEvent: function endEvent() {}\n };\n\n metroRequire.getModules = function() {\n return modules;\n }; // HOT MODULE RELOADING\n\n var createHotReloadingObject = function createHotReloadingObject() {\n var hot = {\n acceptCallback: null,\n accept: function accept(callback) {\n hot.acceptCallback = callback;\n },\n disposeCallback: null,\n dispose: function dispose(callback) {\n hot.disposeCallback = callback;\n }\n };\n return hot;\n };\n\n var metroAcceptAll = function metroAcceptAll(\n dependentModules,\n inverseDependencies,\n patchedModules\n ) {\n if (!dependentModules || dependentModules.length === 0) {\n return true;\n }\n\n var notAccepted = dependentModules.filter(function(module) {\n return !metroAccept(\n module,\n /*factory*/\n undefined,\n /*dependencyMap*/\n undefined,\n inverseDependencies,\n patchedModules\n );\n });\n var parents = [];\n\n for (var i = 0; i < notAccepted.length; i++) {\n // if the module has no parents then the change cannot be hot loaded\n if (inverseDependencies[notAccepted[i]].length === 0) {\n return false;\n }\n\n parents.push.apply(parents, inverseDependencies[notAccepted[i]]);\n }\n\n return parents.length == 0;\n };\n\n var metroAccept = function metroAccept(\n id,\n factory,\n dependencyMap,\n inverseDependencies\n ) {\n var patchedModules =\n arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {};\n\n if (id in patchedModules) {\n // Do not patch the same module more that once during an update.\n return true;\n }\n\n patchedModules[id] = true;\n var mod = modules[id];\n\n if (!mod && factory) {\n // New modules are going to be handled by the define() method.\n return true;\n }\n\n var hot = mod.hot;\n\n if (!hot) {\n console.warn(\n \"Cannot accept module because Hot Module Replacement \" +\n \"API was not installed.\"\n );\n return false;\n }\n\n if (hot.disposeCallback) {\n try {\n hot.disposeCallback();\n } catch (error) {\n console.error(\n \"Error while calling dispose handler for module \".concat(id, \": \"),\n error\n );\n }\n } // replace and initialize factory\n\n if (factory) {\n mod.factory = factory;\n }\n\n if (dependencyMap) {\n mod.dependencyMap = dependencyMap;\n }\n\n mod.hasError = false;\n mod.isInitialized = false;\n metroRequire(id);\n\n if (hot.acceptCallback) {\n try {\n hot.acceptCallback();\n return true;\n } catch (error) {\n console.error(\n \"Error while calling accept handler for module \".concat(id, \": \"),\n error\n );\n }\n } // need to have inverseDependencies to bubble up accept\n\n if (!inverseDependencies) {\n throw new Error(\"Undefined `inverseDependencies`\");\n } // accept parent modules recursively up until all siblings are accepted\n\n return metroAcceptAll(\n inverseDependencies[id],\n inverseDependencies,\n patchedModules\n );\n };\n\n global.__accept = metroAccept;\n}\n","/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @polyfill\n * @nolint\n * @format\n */\n\n/* eslint-disable no-shadow, eqeqeq, curly, no-unused-vars, no-void, no-control-regex */\n\n/**\n * This pipes all of our console logging functions to native logging so that\n * JavaScript errors in required modules show up in Xcode via NSLog.\n */\nconst inspect = (function() {\n // Copyright Joyent, Inc. and other Node contributors.\n //\n // Permission is hereby granted, free of charge, to any person obtaining a\n // copy of this software and associated documentation files (the\n // \"Software\"), to deal in the Software without restriction, including\n // without limitation the rights to use, copy, modify, merge, publish,\n // distribute, sublicense, and/or sell copies of the Software, and to permit\n // persons to whom the Software is furnished to do so, subject to the\n // following conditions:\n //\n // The above copyright notice and this permission notice shall be included\n // in all copies or substantial portions of the Software.\n //\n // THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n //\n // https://github.com/joyent/node/blob/master/lib/util.js\n\n function inspect(obj, opts) {\n var ctx = {\n seen: [],\n stylize: stylizeNoColor,\n };\n return formatValue(ctx, obj, opts.depth);\n }\n\n function stylizeNoColor(str, styleType) {\n return str;\n }\n\n function arrayToHash(array) {\n var hash = {};\n\n array.forEach(function(val, idx) {\n hash[val] = true;\n });\n\n return hash;\n }\n\n function formatValue(ctx, value, recurseTimes) {\n // Primitive types cannot have properties\n var primitive = formatPrimitive(ctx, value);\n if (primitive) {\n return primitive;\n }\n\n // Look up the keys of the object.\n var keys = Object.keys(value);\n var visibleKeys = arrayToHash(keys);\n\n // IE doesn't make error fields non-enumerable\n // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx\n if (\n isError(value) &&\n (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)\n ) {\n return formatError(value);\n }\n\n // Some type of object without properties can be shortcutted.\n if (keys.length === 0) {\n if (isFunction(value)) {\n var name = value.name ? ': ' + value.name : '';\n return ctx.stylize('[Function' + name + ']', 'special');\n }\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n }\n if (isDate(value)) {\n return ctx.stylize(Date.prototype.toString.call(value), 'date');\n }\n if (isError(value)) {\n return formatError(value);\n }\n }\n\n var base = '',\n array = false,\n braces = ['{', '}'];\n\n // Make Array say that they are Array\n if (isArray(value)) {\n array = true;\n braces = ['[', ']'];\n }\n\n // Make functions say that they are functions\n if (isFunction(value)) {\n var n = value.name ? ': ' + value.name : '';\n base = ' [Function' + n + ']';\n }\n\n // Make RegExps say that they are RegExps\n if (isRegExp(value)) {\n base = ' ' + RegExp.prototype.toString.call(value);\n }\n\n // Make dates with properties first say the date\n if (isDate(value)) {\n base = ' ' + Date.prototype.toUTCString.call(value);\n }\n\n // Make error with message first say the error\n if (isError(value)) {\n base = ' ' + formatError(value);\n }\n\n if (keys.length === 0 && (!array || value.length == 0)) {\n return braces[0] + base + braces[1];\n }\n\n if (recurseTimes < 0) {\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n } else {\n return ctx.stylize('[Object]', 'special');\n }\n }\n\n ctx.seen.push(value);\n\n var output;\n if (array) {\n output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n } else {\n output = keys.map(function(key) {\n return formatProperty(\n ctx,\n value,\n recurseTimes,\n visibleKeys,\n key,\n array,\n );\n });\n }\n\n ctx.seen.pop();\n\n return reduceToSingleString(output, base, braces);\n }\n\n function formatPrimitive(ctx, value) {\n if (isUndefined(value)) return ctx.stylize('undefined', 'undefined');\n if (isString(value)) {\n var simple =\n \"'\" +\n JSON.stringify(value)\n .replace(/^\"|\"$/g, '')\n .replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"') +\n \"'\";\n return ctx.stylize(simple, 'string');\n }\n if (isNumber(value)) return ctx.stylize('' + value, 'number');\n if (isBoolean(value)) return ctx.stylize('' + value, 'boolean');\n // For some reason typeof null is \"object\", so special case here.\n if (isNull(value)) return ctx.stylize('null', 'null');\n }\n\n function formatError(value) {\n return '[' + Error.prototype.toString.call(value) + ']';\n }\n\n function formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n var output = [];\n for (var i = 0, l = value.length; i < l; ++i) {\n if (hasOwnProperty(value, String(i))) {\n output.push(\n formatProperty(\n ctx,\n value,\n recurseTimes,\n visibleKeys,\n String(i),\n true,\n ),\n );\n } else {\n output.push('');\n }\n }\n keys.forEach(function(key) {\n if (!key.match(/^\\d+$/)) {\n output.push(\n formatProperty(ctx, value, recurseTimes, visibleKeys, key, true),\n );\n }\n });\n return output;\n }\n\n function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n var name, str, desc;\n desc = Object.getOwnPropertyDescriptor(value, key) || {value: value[key]};\n if (desc.get) {\n if (desc.set) {\n str = ctx.stylize('[Getter/Setter]', 'special');\n } else {\n str = ctx.stylize('[Getter]', 'special');\n }\n } else {\n if (desc.set) {\n str = ctx.stylize('[Setter]', 'special');\n }\n }\n if (!hasOwnProperty(visibleKeys, key)) {\n name = '[' + key + ']';\n }\n if (!str) {\n if (ctx.seen.indexOf(desc.value) < 0) {\n if (isNull(recurseTimes)) {\n str = formatValue(ctx, desc.value, null);\n } else {\n str = formatValue(ctx, desc.value, recurseTimes - 1);\n }\n if (str.indexOf('\\n') > -1) {\n if (array) {\n str = str\n .split('\\n')\n .map(function(line) {\n return ' ' + line;\n })\n .join('\\n')\n .substr(2);\n } else {\n str =\n '\\n' +\n str\n .split('\\n')\n .map(function(line) {\n return ' ' + line;\n })\n .join('\\n');\n }\n }\n } else {\n str = ctx.stylize('[Circular]', 'special');\n }\n }\n if (isUndefined(name)) {\n if (array && key.match(/^\\d+$/)) {\n return str;\n }\n name = JSON.stringify('' + key);\n if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n name = name.substr(1, name.length - 2);\n name = ctx.stylize(name, 'name');\n } else {\n name = name\n .replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"')\n .replace(/(^\"|\"$)/g, \"'\");\n name = ctx.stylize(name, 'string');\n }\n }\n\n return name + ': ' + str;\n }\n\n function reduceToSingleString(output, base, braces) {\n var numLinesEst = 0;\n var length = output.reduce(function(prev, cur) {\n numLinesEst++;\n if (cur.indexOf('\\n') >= 0) numLinesEst++;\n return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n }, 0);\n\n if (length > 60) {\n return (\n braces[0] +\n (base === '' ? '' : base + '\\n ') +\n ' ' +\n output.join(',\\n ') +\n ' ' +\n braces[1]\n );\n }\n\n return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n }\n\n // NOTE: These type checking functions intentionally don't use `instanceof`\n // because it is fragile and can be easily faked with `Object.create()`.\n function isArray(ar) {\n return Array.isArray(ar);\n }\n\n function isBoolean(arg) {\n return typeof arg === 'boolean';\n }\n\n function isNull(arg) {\n return arg === null;\n }\n\n function isNullOrUndefined(arg) {\n return arg == null;\n }\n\n function isNumber(arg) {\n return typeof arg === 'number';\n }\n\n function isString(arg) {\n return typeof arg === 'string';\n }\n\n function isSymbol(arg) {\n return typeof arg === 'symbol';\n }\n\n function isUndefined(arg) {\n return arg === void 0;\n }\n\n function isRegExp(re) {\n return isObject(re) && objectToString(re) === '[object RegExp]';\n }\n\n function isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n }\n\n function isDate(d) {\n return isObject(d) && objectToString(d) === '[object Date]';\n }\n\n function isError(e) {\n return (\n isObject(e) &&\n (objectToString(e) === '[object Error]' || e instanceof Error)\n );\n }\n\n function isFunction(arg) {\n return typeof arg === 'function';\n }\n\n function objectToString(o) {\n return Object.prototype.toString.call(o);\n }\n\n function hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n }\n\n return inspect;\n})();\n\nconst OBJECT_COLUMN_NAME = '(index)';\nconst LOG_LEVELS = {\n trace: 0,\n info: 1,\n warn: 2,\n error: 3,\n};\nconst INSPECTOR_LEVELS = [];\nINSPECTOR_LEVELS[LOG_LEVELS.trace] = 'debug';\nINSPECTOR_LEVELS[LOG_LEVELS.info] = 'log';\nINSPECTOR_LEVELS[LOG_LEVELS.warn] = 'warning';\nINSPECTOR_LEVELS[LOG_LEVELS.error] = 'error';\n\n// Strip the inner function in getNativeLogFunction(), if in dev also\n// strip method printing to originalConsole.\nconst INSPECTOR_FRAMES_TO_SKIP = __DEV__ ? 2 : 1;\n\nfunction getNativeLogFunction(level) {\n return function() {\n let str;\n if (arguments.length === 1 && typeof arguments[0] === 'string') {\n str = arguments[0];\n } else {\n str = Array.prototype.map\n .call(arguments, function(arg) {\n return inspect(arg, {depth: 10});\n })\n .join(', ');\n }\n\n let logLevel = level;\n if (str.slice(0, 9) === 'Warning: ' && logLevel >= LOG_LEVELS.error) {\n // React warnings use console.error so that a stack trace is shown,\n // but we don't (currently) want these to show a redbox\n // (Note: Logic duplicated in ExceptionsManager.js.)\n logLevel = LOG_LEVELS.warn;\n }\n if (global.__inspectorLog) {\n global.__inspectorLog(\n INSPECTOR_LEVELS[logLevel],\n str,\n [].slice.call(arguments),\n INSPECTOR_FRAMES_TO_SKIP,\n );\n }\n if (groupStack.length) {\n str = groupFormat('', str);\n }\n global.nativeLoggingHook(str, logLevel);\n };\n}\n\nfunction repeat(element, n) {\n return Array.apply(null, Array(n)).map(function() {\n return element;\n });\n}\n\nfunction consoleTablePolyfill(rows) {\n // convert object -> array\n if (!Array.isArray(rows)) {\n var data = rows;\n rows = [];\n for (var key in data) {\n if (data.hasOwnProperty(key)) {\n var row = data[key];\n row[OBJECT_COLUMN_NAME] = key;\n rows.push(row);\n }\n }\n }\n if (rows.length === 0) {\n global.nativeLoggingHook('', LOG_LEVELS.info);\n return;\n }\n\n var columns = Object.keys(rows[0]).sort();\n var stringRows = [];\n var columnWidths = [];\n\n // Convert each cell to a string. Also\n // figure out max cell width for each column\n columns.forEach(function(k, i) {\n columnWidths[i] = k.length;\n for (var j = 0; j < rows.length; j++) {\n var cellStr = (rows[j][k] || '?').toString();\n stringRows[j] = stringRows[j] || [];\n stringRows[j][i] = cellStr;\n columnWidths[i] = Math.max(columnWidths[i], cellStr.length);\n }\n });\n\n // Join all elements in the row into a single string with | separators\n // (appends extra spaces to each cell to make separators | aligned)\n function joinRow(row, space) {\n var cells = row.map(function(cell, i) {\n var extraSpaces = repeat(' ', columnWidths[i] - cell.length).join('');\n return cell + extraSpaces;\n });\n space = space || ' ';\n return cells.join(space + '|' + space);\n }\n\n var separators = columnWidths.map(function(columnWidth) {\n return repeat('-', columnWidth).join('');\n });\n var separatorRow = joinRow(separators, '-');\n var header = joinRow(columns);\n var table = [header, separatorRow];\n\n for (var i = 0; i < rows.length; i++) {\n table.push(joinRow(stringRows[i]));\n }\n\n // Notice extra empty line at the beginning.\n // Native logging hook adds \"RCTLog >\" at the front of every\n // logged string, which would shift the header and screw up\n // the table\n global.nativeLoggingHook('\\n' + table.join('\\n'), LOG_LEVELS.info);\n}\n\nconst GROUP_PAD = '\\u2502'; // Box light vertical\nconst GROUP_OPEN = '\\u2510'; // Box light down+left\nconst GROUP_CLOSE = '\\u2518'; // Box light up+left\n\nconst groupStack = [];\n\nfunction groupFormat(prefix, msg) {\n // Insert group formatting before the console message\n return groupStack.join('') + prefix + ' ' + (msg || '');\n}\n\nfunction consoleGroupPolyfill(label) {\n global.nativeLoggingHook(groupFormat(GROUP_OPEN, label), LOG_LEVELS.info);\n groupStack.push(GROUP_PAD);\n}\n\nfunction consoleGroupCollapsedPolyfill(label) {\n global.nativeLoggingHook(groupFormat(GROUP_CLOSE, label), LOG_LEVELS.info);\n groupStack.push(GROUP_PAD);\n}\n\nfunction consoleGroupEndPolyfill() {\n groupStack.pop();\n global.nativeLoggingHook(groupFormat(GROUP_CLOSE), LOG_LEVELS.info);\n}\n\nfunction consoleAssertPolyfill(expression, label) {\n if (!expression) {\n global.nativeLoggingHook('Assertion failed: ' + label, LOG_LEVELS.error);\n }\n}\n\nif (global.nativeLoggingHook) {\n const originalConsole = global.console;\n // Preserve the original `console` as `originalConsole`\n if (__DEV__ && originalConsole) {\n const descriptor = Object.getOwnPropertyDescriptor(global, 'console');\n if (descriptor) {\n Object.defineProperty(global, 'originalConsole', descriptor);\n }\n }\n\n global.console = {\n error: getNativeLogFunction(LOG_LEVELS.error),\n info: getNativeLogFunction(LOG_LEVELS.info),\n log: getNativeLogFunction(LOG_LEVELS.info),\n warn: getNativeLogFunction(LOG_LEVELS.warn),\n trace: getNativeLogFunction(LOG_LEVELS.trace),\n debug: getNativeLogFunction(LOG_LEVELS.trace),\n table: consoleTablePolyfill,\n group: consoleGroupPolyfill,\n groupEnd: consoleGroupEndPolyfill,\n groupCollapsed: consoleGroupCollapsedPolyfill,\n assert: consoleAssertPolyfill,\n };\n\n // If available, also call the original `console` method since that is\n // sometimes useful. Ex: on OS X, this will let you see rich output in\n // the Safari Web Inspector console.\n if (__DEV__ && originalConsole) {\n Object.keys(console).forEach(methodName => {\n const reactNativeMethod = console[methodName];\n if (originalConsole[methodName]) {\n console[methodName] = function() {\n // TODO(T43930203): remove this special case once originalConsole.assert properly checks\n // the condition\n if (methodName === 'assert') {\n if (!arguments[0]) {\n originalConsole.assert(...arguments);\n }\n } else {\n originalConsole[methodName](...arguments);\n }\n reactNativeMethod.apply(console, arguments);\n };\n }\n });\n\n // The following methods are not supported by this polyfill but\n // we still should pass them to original console if they are\n // supported by it.\n [\n 'clear',\n 'dir',\n 'dirxml',\n 'groupCollapsed',\n 'profile',\n 'profileEnd',\n ].forEach(methodName => {\n if (typeof originalConsole[methodName] === 'function') {\n console[methodName] = function() {\n originalConsole[methodName](...arguments);\n };\n }\n });\n }\n} else if (!global.console) {\n const log = global.print || function consoleLoggingStub() {};\n global.console = {\n error: log,\n info: log,\n log: log,\n warn: log,\n trace: log,\n debug: log,\n table: log,\n };\n}\n","/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @format\n * @polyfill\n * @nolint\n */\n\nlet _inGuard = 0;\n\n/**\n * This is the error handler that is called when we encounter an exception\n * when loading a module. This will report any errors encountered before\n * ExceptionsManager is configured.\n */\nlet _globalHandler = function onError(e) {\n throw e;\n};\n\n/**\n * The particular require runtime that we are using looks for a global\n * `ErrorUtils` object and if it exists, then it requires modules with the\n * error handler specified via ErrorUtils.setGlobalHandler by calling the\n * require function with applyWithGuard. Since the require module is loaded\n * before any of the modules, this ErrorUtils must be defined (and the handler\n * set) globally before requiring anything.\n */\nconst ErrorUtils = {\n setGlobalHandler(fun) {\n _globalHandler = fun;\n },\n getGlobalHandler() {\n return _globalHandler;\n },\n reportError(error) {\n _globalHandler && _globalHandler(error);\n },\n reportFatalError(error) {\n _globalHandler && _globalHandler(error, true);\n },\n applyWithGuard(fun, context, args) {\n try {\n _inGuard++;\n return fun.apply(context, args);\n } catch (e) {\n ErrorUtils.reportError(e);\n } finally {\n _inGuard--;\n }\n return null;\n },\n applyWithGuardIfNeeded(fun, context, args) {\n if (ErrorUtils.inGuard()) {\n return fun.apply(context, args);\n } else {\n ErrorUtils.applyWithGuard(fun, context, args);\n }\n return null;\n },\n inGuard() {\n return _inGuard;\n },\n guard(fun, name, context) {\n if (typeof fun !== 'function') {\n console.warn('A function must be passed to ErrorUtils.guard, got ', fun);\n return null;\n }\n name = name || fun.name || '';\n function guarded() {\n return ErrorUtils.applyWithGuard(\n fun,\n context || this,\n arguments,\n null,\n name,\n );\n }\n\n return guarded;\n },\n};\n\nglobal.ErrorUtils = ErrorUtils;\n","/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @format\n * @polyfill\n * @nolint\n */\n\n(function() {\n 'use strict';\n\n const hasOwnProperty = Object.prototype.hasOwnProperty;\n\n /**\n * Returns an array of the given object's own enumerable entries.\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/entries\n */\n if (typeof Object.entries !== 'function') {\n Object.entries = function(object) {\n // `null` and `undefined` values are not allowed.\n if (object == null) {\n throw new TypeError('Object.entries called on non-object');\n }\n\n const entries = [];\n for (const key in object) {\n if (hasOwnProperty.call(object, key)) {\n entries.push([key, object[key]]);\n }\n }\n return entries;\n };\n }\n\n /**\n * Returns an array of the given object's own enumerable entries.\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/values\n */\n if (typeof Object.values !== 'function') {\n Object.values = function(object) {\n // `null` and `undefined` values are not allowed.\n if (object == null) {\n throw new TypeError('Object.values called on non-object');\n }\n\n const values = [];\n for (const key in object) {\n if (hasOwnProperty.call(object, key)) {\n values.push(object[key]);\n }\n }\n return values;\n };\n }\n})();\n","/** @flow\n * @format */\n\n/**\n * Internal dependencies\n */\nimport { registerApp } from './src';\n\nregisterApp();\n","/**\n * External dependencies\n *\n * @format\n */\n\n/**\n * External dependencies\n */\nimport { AppRegistry, I18nManager } from 'react-native';\nimport React from 'react';\n\n/**\n * WordPress dependencies\n */\nimport { setLocaleData } from '@wordpress/i18n';\n\n/**\n * Internal dependencies\n */\nimport './globals';\nimport { getTranslation } from '../i18n-cache';\nimport initialHtml from './initial-html';\nimport setupApiFetch from './api-fetch-setup';\n\nconst gutenbergSetup = () => {\n\tconst wpData = require( '@wordpress/data' );\n\n\t// wp-data\n\tconst userId = 1;\n\tconst storageKey = 'WP_DATA_USER_' + userId;\n\twpData.use( wpData.plugins.persistence, { storageKey } );\n};\n\nconst setupLocale = ( locale, extraTranslations ) => {\n\tI18nManager.forceRTL( false ); // Change to `true` to debug RTL layout easily.\n\n\tlet gutenbergTranslations = getTranslation( locale );\n\tif ( locale && ! gutenbergTranslations ) {\n\t\t// Try stripping out the regional\n\t\tlocale = locale.replace( /[-_][A-Za-z]+$/, '' );\n\t\tgutenbergTranslations = getTranslation( locale );\n\t}\n\tconst translations = Object.assign( {}, gutenbergTranslations, extraTranslations );\n\t// eslint-disable-next-line no-console\n\tconsole.log( 'locale', locale, translations );\n\t// Only change the locale if it's supported by gutenberg\n\tif ( gutenbergTranslations || extraTranslations ) {\n\t\tsetLocaleData( translations );\n\t}\n};\n\nexport class RootComponent extends React.Component {\n\tconstructor( props ) {\n\t\tsuper( props );\n\t\tsetupLocale( props.locale, props.translations );\n\t\tsetupApiFetch();\n\t\trequire( '@wordpress/edit-post' ).initializeEditor();\n\t}\n\n\trender() {\n\t\tconst { initialHtmlModeEnabled } = this.props;\n\t\tlet initialData = this.props.initialData;\n\t\tlet initialTitle = this.props.initialTitle;\n\t\tlet postType = this.props.postType;\n\n\t\tif ( initialData === undefined && __DEV__ ) {\n\t\t\tinitialData = initialHtml;\n\t\t}\n\t\tif ( initialTitle === undefined ) {\n\t\t\tinitialTitle = 'Welcome to Gutenberg!';\n\t\t}\n\t\tif ( postType === undefined ) {\n\t\t\tpostType = 'post';\n\t\t}\n\t\tconst Editor = require( '@wordpress/edit-post' ).Editor;\n\t\treturn (\n\t\t\t\n\t\t);\n\t}\n}\n\nexport function registerApp() {\n\t// Disable warnings as they disrupt the user experience in dev mode\n\t// eslint-disable-next-line no-console\n\tconsole.disableYellowBox = true;\n\n\tgutenbergSetup();\n\n\tAppRegistry.registerComponent( 'gutenberg', () => RootComponent );\n}\n","function _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n \"default\": obj\n };\n}\n\nmodule.exports = _interopRequireDefault;","export { default as __experimentalCreateInterpolateElement } from './create-interpolate-element';\nexport * from './react';\nexport * from './react-platform';\nexport * from './utils';\nexport { default as Platform } from './platform';\nexport { default as renderToString } from './serialize';\nexport { default as RawHTML } from './raw-html';\n","/**\n * External dependencies\n */\nimport { createElement, cloneElement, Fragment, isValidElement } from 'react';\n\nlet indoc,\n\toffset,\n\toutput,\n\tstack;\n\n/**\n * Matches tags in the localized string\n *\n * This is used for extracting the tag pattern groups for parsing the localized\n * string and along with the map converting it to a react element.\n *\n * There are four references extracted using this tokenizer:\n *\n * match: Full match of the tag (i.e. , ,
    )\n * isClosing: The closing slash, it it exists.\n * name: The name portion of the tag (strong, br) (if )\n * isSelfClosed: The slash on a self closing tag, if it exists.\n *\n * @type {RegExp}\n */\nconst tokenizer = /<(\\/)?(\\w+)\\s*(\\/)?>/g;\n\n/**\n * Tracks recursive-descent parse state.\n *\n * This is a Stack frame holding parent elements until all children have been\n * parsed.\n *\n * @private\n * @param {WPElement} element A parent element which may still have\n * nested children not yet parsed.\n * @param {number} tokenStart Offset at which parent element first\n * appears.\n * @param {number} tokenLength Length of string marking start of parent\n * element.\n * @param {number} prevOffset Running offset at which parsing should\n * continue.\n * @param {number} leadingTextStart Offset at which last closing element\n * finished, used for finding text between\n * elements\n *\n * @return {Frame} The stack frame tracking parse progress.\n */\nfunction Frame(\n\telement,\n\ttokenStart,\n\ttokenLength,\n\tprevOffset,\n\tleadingTextStart,\n) {\n\treturn {\n\t\telement,\n\t\ttokenStart,\n\t\ttokenLength,\n\t\tprevOffset,\n\t\tleadingTextStart,\n\t\tchildren: [],\n\t};\n}\n\n/**\n * This function creates an interpolated element from a passed in string with\n * specific tags matching how the string should be converted to an element via\n * the conversion map value.\n *\n * @example\n * For example, for the given string:\n *\n * \"This is a string with a link and a self-closing\n * tag\"\n *\n * You would have something like this as the conversionMap value:\n *\n * ```js\n * {\n * span: ,\n * a: ,\n * CustomComponentB: ,\n * }\n * ```\n *\n * @param {string} interpolatedString The interpolation string to be parsed.\n * @param {Object} conversionMap The map used to convert the string to\n * a react element.\n * @throws {TypeError}\n * @return {WPElement} A wp element.\n */\nconst createInterpolateElement = ( interpolatedString, conversionMap ) => {\n\tindoc = interpolatedString;\n\toffset = 0;\n\toutput = [];\n\tstack = [];\n\ttokenizer.lastIndex = 0;\n\n\tif ( ! isValidConversionMap( conversionMap ) ) {\n\t\tthrow new TypeError(\n\t\t\t'The conversionMap provided is not valid. It must be an object with values that are WPElements'\n\t\t);\n\t}\n\n\tdo {\n\t\t// twiddle our thumbs\n\t} while ( proceed( conversionMap ) );\n\treturn createElement( Fragment, null, ...output );\n};\n\n/**\n * Validate conversion map.\n *\n * A map is considered valid if it's an object and every value in the object\n * is a WPElement\n *\n * @private\n *\n * @param {Object} conversionMap The map being validated.\n *\n * @return {boolean} True means the map is valid.\n */\nconst isValidConversionMap = ( conversionMap ) => {\n\tconst isObject = typeof conversionMap === 'object';\n\tconst values = isObject && Object.values( conversionMap );\n\treturn isObject &&\n\t\tvalues.length &&\n\t\tvalues.every( ( element ) => isValidElement( element ) );\n};\n\n/**\n * This is the iterator over the matches in the string.\n *\n * @private\n *\n * @param {Object} conversionMap The conversion map for the string.\n *\n * @return {boolean} true for continuing to iterate, false for finished.\n */\nfunction proceed( conversionMap ) {\n\tconst next = nextToken();\n\tconst [ tokenType, name, startOffset, tokenLength ] = next;\n\tconst stackDepth = stack.length;\n\tconst leadingTextStart = startOffset > offset ? offset : null;\n\tif ( ! conversionMap[ name ] ) {\n\t\taddText();\n\t\treturn false;\n\t}\n\tswitch ( tokenType ) {\n\t\tcase 'no-more-tokens':\n\t\t\tif ( stackDepth !== 0 ) {\n\t\t\t\tconst { leadingTextStart: stackLeadingText, tokenStart } = stack.pop();\n\t\t\t\toutput.push( indoc.substr( stackLeadingText, tokenStart ) );\n\t\t\t}\n\t\t\taddText();\n\t\t\treturn false;\n\n\t\tcase 'self-closed':\n\t\t\tif ( 0 === stackDepth ) {\n\t\t\t\tif ( null !== leadingTextStart ) {\n\t\t\t\t\toutput.push(\n\t\t\t\t\t\tindoc.substr( leadingTextStart, startOffset - leadingTextStart )\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\toutput.push( conversionMap[ name ] );\n\t\t\t\toffset = startOffset + tokenLength;\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// otherwise we found an inner element\n\t\t\taddChild(\n\t\t\t\tnew Frame( conversionMap[ name ], startOffset, tokenLength )\n\t\t\t);\n\t\t\toffset = startOffset + tokenLength;\n\t\t\treturn true;\n\n\t\tcase 'opener':\n\t\t\tstack.push(\n\t\t\t\tnew Frame(\n\t\t\t\t\tconversionMap[ name ],\n\t\t\t\t\tstartOffset,\n\t\t\t\t\ttokenLength,\n\t\t\t\t\tstartOffset + tokenLength,\n\t\t\t\t\tleadingTextStart\n\t\t\t\t)\n\t\t\t);\n\t\t\toffset = startOffset + tokenLength;\n\t\t\treturn true;\n\n\t\tcase 'closer':\n\t\t\t// if we're not nesting then this is easy - close the block\n\t\t\tif ( 1 === stackDepth ) {\n\t\t\t\tcloseOuterElement( startOffset );\n\t\t\t\toffset = startOffset + tokenLength;\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// otherwise we're nested and we have to close out the current\n\t\t\t// block and add it as a innerBlock to the parent\n\t\t\tconst stackTop = stack.pop();\n\t\t\tconst text = indoc.substr(\n\t\t\t\tstackTop.prevOffset,\n\t\t\t\tstartOffset - stackTop.prevOffset\n\t\t\t);\n\t\t\tstackTop.children.push( text );\n\t\t\tstackTop.prevOffset = startOffset + tokenLength;\n\t\t\tconst frame = new Frame(\n\t\t\t\tstackTop.element,\n\t\t\t\tstackTop.tokenStart,\n\t\t\t\tstackTop.tokenLength,\n\t\t\t\tstartOffset + tokenLength,\n\t\t\t);\n\t\t\tframe.children = stackTop.children;\n\t\t\taddChild( frame );\n\t\t\toffset = startOffset + tokenLength;\n\t\t\treturn true;\n\n\t\tdefault:\n\t\t\taddText();\n\t\t\treturn false;\n\t}\n}\n\n/**\n * Grabs the next token match in the string and returns it's details.\n *\n * @private\n *\n * @return {Array} An array of details for the token matched.\n */\nfunction nextToken() {\n\tconst matches = tokenizer.exec( indoc );\n\t// we have no more tokens\n\tif ( null === matches ) {\n\t\treturn [ 'no-more-tokens' ];\n\t}\n\tconst startedAt = matches.index;\n\tconst [ match, isClosing, name, isSelfClosed ] = matches;\n\tconst length = match.length;\n\tif ( isSelfClosed ) {\n\t\treturn [ 'self-closed', name, startedAt, length ];\n\t}\n\tif ( isClosing ) {\n\t\treturn [ 'closer', name, startedAt, length ];\n\t}\n\treturn [ 'opener', name, startedAt, length ];\n}\n\n/**\n * Pushes text extracted from the indoc string to the output stack given the\n * current rawLength value and offset (if rawLength is provided ) or the\n * indoc.length and offset.\n *\n * @private\n */\nfunction addText() {\n\tconst length = indoc.length - offset;\n\tif ( 0 === length ) {\n\t\treturn;\n\t}\n\toutput.push( indoc.substr( offset, length ) );\n}\n\n/**\n * Pushes a child element to the associated parent element's children for the\n * parent currently active in the stack.\n *\n * @private\n *\n * @param {Frame} frame The Frame containing the child element and it's\n * token information.\n */\nfunction addChild( frame ) {\n\tconst { element, tokenStart, tokenLength, prevOffset, children } = frame;\n\tconst parent = stack[ stack.length - 1 ];\n\tconst text = indoc.substr( parent.prevOffset, tokenStart - parent.prevOffset );\n\n\tif ( text ) {\n\t\tparent.children.push( text );\n\t}\n\n\tparent.children.push(\n\t\tcloneElement( element, null, ...children )\n\t);\n\tparent.prevOffset = prevOffset ? prevOffset : tokenStart + tokenLength;\n}\n\n/**\n * This is called for closing tags. It creates the element currently active in\n * the stack.\n *\n * @private\n *\n * @param {number} endOffset Offset at which the closing tag for the element\n * begins in the string. If this is greater than the\n * prevOffset attached to the element, then this\n * helps capture any remaining nested text nodes in\n * the element.\n */\nfunction closeOuterElement( endOffset ) {\n\tconst { element, leadingTextStart, prevOffset, tokenStart, children } = stack.pop();\n\n\tconst text = endOffset ?\n\t\tindoc.substr( prevOffset, endOffset - prevOffset ) :\n\t\tindoc.substr( prevOffset );\n\n\tif ( text ) {\n\t\tchildren.push( text );\n\t}\n\n\tif ( null !== leadingTextStart ) {\n\t\toutput.push( indoc.substr( leadingTextStart, tokenStart - leadingTextStart ) );\n\t}\n\n\toutput.push(\n\t\tcloneElement(\n\t\t\telement,\n\t\t\tnull,\n\t\t\t...children\n\t\t)\n\t);\n}\n\nexport default createInterpolateElement;\n","var arrayWithHoles = require(\"./arrayWithHoles\");\n\nvar iterableToArrayLimit = require(\"./iterableToArrayLimit\");\n\nvar nonIterableRest = require(\"./nonIterableRest\");\n\nfunction _slicedToArray(arr, i) {\n return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || nonIterableRest();\n}\n\nmodule.exports = _slicedToArray;","function _arrayWithHoles(arr) {\n if (Array.isArray(arr)) return arr;\n}\n\nmodule.exports = _arrayWithHoles;","function _iterableToArrayLimit(arr, i) {\n var _arr = [];\n var _n = true;\n var _d = false;\n var _e = undefined;\n\n try {\n for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n\n return _arr;\n}\n\nmodule.exports = _iterableToArrayLimit;","function _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance\");\n}\n\nmodule.exports = _nonIterableRest;","var arrayWithoutHoles = require(\"./arrayWithoutHoles\");\n\nvar iterableToArray = require(\"./iterableToArray\");\n\nvar nonIterableSpread = require(\"./nonIterableSpread\");\n\nfunction _toConsumableArray(arr) {\n return arrayWithoutHoles(arr) || iterableToArray(arr) || nonIterableSpread();\n}\n\nmodule.exports = _toConsumableArray;","function _arrayWithoutHoles(arr) {\n if (Array.isArray(arr)) {\n for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) {\n arr2[i] = arr[i];\n }\n\n return arr2;\n }\n}\n\nmodule.exports = _arrayWithoutHoles;","function _iterableToArray(iter) {\n if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === \"[object Arguments]\") return Array.from(iter);\n}\n\nmodule.exports = _iterableToArray;","function _nonIterableSpread() {\n throw new TypeError(\"Invalid attempt to spread non-iterable instance\");\n}\n\nmodule.exports = _nonIterableSpread;","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react.production.min.js');\n} else {\n module.exports = require('./cjs/react.development.js');\n}\n","/** @license React v16.8.6\n * react.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';var k=require(\"object-assign\"),n=\"function\"===typeof Symbol&&Symbol.for,p=n?Symbol.for(\"react.element\"):60103,q=n?Symbol.for(\"react.portal\"):60106,r=n?Symbol.for(\"react.fragment\"):60107,t=n?Symbol.for(\"react.strict_mode\"):60108,u=n?Symbol.for(\"react.profiler\"):60114,v=n?Symbol.for(\"react.provider\"):60109,w=n?Symbol.for(\"react.context\"):60110,x=n?Symbol.for(\"react.concurrent_mode\"):60111,y=n?Symbol.for(\"react.forward_ref\"):60112,z=n?Symbol.for(\"react.suspense\"):60113,aa=n?Symbol.for(\"react.memo\"):\n60115,ba=n?Symbol.for(\"react.lazy\"):60116,A=\"function\"===typeof Symbol&&Symbol.iterator;function ca(a,b,d,c,e,g,h,f){if(!a){a=void 0;if(void 0===b)a=Error(\"Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.\");else{var l=[d,c,e,g,h,f],m=0;a=Error(b.replace(/%s/g,function(){return l[m++]}));a.name=\"Invariant Violation\"}a.framesToPop=1;throw a;}}\nfunction B(a){for(var b=arguments.length-1,d=\"https://reactjs.org/docs/error-decoder.html?invariant=\"+a,c=0;cP.length&&P.push(a)}\nfunction S(a,b,d,c){var e=typeof a;if(\"undefined\"===e||\"boolean\"===e)a=null;var g=!1;if(null===a)g=!0;else switch(e){case \"string\":case \"number\":g=!0;break;case \"object\":switch(a.$$typeof){case p:case q:g=!0}}if(g)return d(c,a,\"\"===b?\".\"+T(a,0):b),1;g=0;b=\"\"===b?\".\":b+\":\";if(Array.isArray(a))for(var h=0;h {\n\t\tChildren.forEach( children, ( child, j ) => {\n\t\t\tif ( child && 'string' !== typeof child ) {\n\t\t\t\tchild = cloneElement( child, {\n\t\t\t\t\tkey: [ i, j ].join(),\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\taccumulator.push( child );\n\t\t} );\n\n\t\treturn accumulator;\n\t}, [] );\n}\n\n/**\n * Switches the nodeName of all the elements in the children object.\n *\n * @param {?Object} children Children object.\n * @param {string} nodeName Node name.\n *\n * @return {?Object} The updated children object.\n */\nexport function switchChildrenNodeName( children, nodeName ) {\n\treturn children && Children.map( children, ( elt, index ) => {\n\t\tif ( isString( elt ) ) {\n\t\t\treturn createElement( nodeName, { key: index }, elt );\n\t\t}\n\t\tconst { children: childrenProp, ...props } = elt.props;\n\t\treturn createElement( nodeName, { key: index, ...props }, childrenProp );\n\t} );\n}\n","function _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nmodule.exports = _defineProperty;","var objectWithoutPropertiesLoose = require(\"./objectWithoutPropertiesLoose\");\n\nfunction _objectWithoutProperties(source, excluded) {\n if (source == null) return {};\n var target = objectWithoutPropertiesLoose(source, excluded);\n var key, i;\n\n if (Object.getOwnPropertySymbols) {\n var sourceSymbolKeys = Object.getOwnPropertySymbols(source);\n\n for (i = 0; i < sourceSymbolKeys.length; i++) {\n key = sourceSymbolKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;\n target[key] = source[key];\n }\n }\n\n return target;\n}\n\nmodule.exports = _objectWithoutProperties;","function _objectWithoutPropertiesLoose(source, excluded) {\n if (source == null) return {};\n var target = {};\n var sourceKeys = Object.keys(source);\n var key, i;\n\n for (i = 0; i < sourceKeys.length; i++) {\n key = sourceKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n target[key] = source[key];\n }\n\n return target;\n}\n\nmodule.exports = _objectWithoutPropertiesLoose;","/**\n * @license\n * Lodash \n * Copyright OpenJS Foundation and other contributors \n * Released under MIT license \n * Based on Underscore.js 1.8.3 \n * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n */\n;(function() {\n\n /** Used as a safe reference for `undefined` in pre-ES5 environments. */\n var undefined;\n\n /** Used as the semantic version number. */\n var VERSION = '4.17.14';\n\n /** Used as the size to enable large array optimizations. */\n var LARGE_ARRAY_SIZE = 200;\n\n /** Error message constants. */\n var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.',\n FUNC_ERROR_TEXT = 'Expected a function';\n\n /** Used to stand-in for `undefined` hash values. */\n var HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n /** Used as the maximum memoize cache size. */\n var MAX_MEMOIZE_SIZE = 500;\n\n /** Used as the internal argument placeholder. */\n var PLACEHOLDER = '__lodash_placeholder__';\n\n /** Used to compose bitmasks for cloning. */\n var CLONE_DEEP_FLAG = 1,\n CLONE_FLAT_FLAG = 2,\n CLONE_SYMBOLS_FLAG = 4;\n\n /** Used to compose bitmasks for value comparisons. */\n var COMPARE_PARTIAL_FLAG = 1,\n COMPARE_UNORDERED_FLAG = 2;\n\n /** Used to compose bitmasks for function metadata. */\n var WRAP_BIND_FLAG = 1,\n WRAP_BIND_KEY_FLAG = 2,\n WRAP_CURRY_BOUND_FLAG = 4,\n WRAP_CURRY_FLAG = 8,\n WRAP_CURRY_RIGHT_FLAG = 16,\n WRAP_PARTIAL_FLAG = 32,\n WRAP_PARTIAL_RIGHT_FLAG = 64,\n WRAP_ARY_FLAG = 128,\n WRAP_REARG_FLAG = 256,\n WRAP_FLIP_FLAG = 512;\n\n /** Used as default options for `_.truncate`. */\n var DEFAULT_TRUNC_LENGTH = 30,\n DEFAULT_TRUNC_OMISSION = '...';\n\n /** Used to detect hot functions by number of calls within a span of milliseconds. */\n var HOT_COUNT = 800,\n HOT_SPAN = 16;\n\n /** Used to indicate the type of lazy iteratees. */\n var LAZY_FILTER_FLAG = 1,\n LAZY_MAP_FLAG = 2,\n LAZY_WHILE_FLAG = 3;\n\n /** Used as references for various `Number` constants. */\n var INFINITY = 1 / 0,\n MAX_SAFE_INTEGER = 9007199254740991,\n MAX_INTEGER = 1.7976931348623157e+308,\n NAN = 0 / 0;\n\n /** Used as references for the maximum length and index of an array. */\n var MAX_ARRAY_LENGTH = 4294967295,\n MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1,\n HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1;\n\n /** Used to associate wrap methods with their bit flags. */\n var wrapFlags = [\n ['ary', WRAP_ARY_FLAG],\n ['bind', WRAP_BIND_FLAG],\n ['bindKey', WRAP_BIND_KEY_FLAG],\n ['curry', WRAP_CURRY_FLAG],\n ['curryRight', WRAP_CURRY_RIGHT_FLAG],\n ['flip', WRAP_FLIP_FLAG],\n ['partial', WRAP_PARTIAL_FLAG],\n ['partialRight', WRAP_PARTIAL_RIGHT_FLAG],\n ['rearg', WRAP_REARG_FLAG]\n ];\n\n /** `Object#toString` result references. */\n var argsTag = '[object Arguments]',\n arrayTag = '[object Array]',\n asyncTag = '[object AsyncFunction]',\n boolTag = '[object Boolean]',\n dateTag = '[object Date]',\n domExcTag = '[object DOMException]',\n errorTag = '[object Error]',\n funcTag = '[object Function]',\n genTag = '[object GeneratorFunction]',\n mapTag = '[object Map]',\n numberTag = '[object Number]',\n nullTag = '[object Null]',\n objectTag = '[object Object]',\n promiseTag = '[object Promise]',\n proxyTag = '[object Proxy]',\n regexpTag = '[object RegExp]',\n setTag = '[object Set]',\n stringTag = '[object String]',\n symbolTag = '[object Symbol]',\n undefinedTag = '[object Undefined]',\n weakMapTag = '[object WeakMap]',\n weakSetTag = '[object WeakSet]';\n\n var arrayBufferTag = '[object ArrayBuffer]',\n dataViewTag = '[object DataView]',\n float32Tag = '[object Float32Array]',\n float64Tag = '[object Float64Array]',\n int8Tag = '[object Int8Array]',\n int16Tag = '[object Int16Array]',\n int32Tag = '[object Int32Array]',\n uint8Tag = '[object Uint8Array]',\n uint8ClampedTag = '[object Uint8ClampedArray]',\n uint16Tag = '[object Uint16Array]',\n uint32Tag = '[object Uint32Array]';\n\n /** Used to match empty string literals in compiled template source. */\n var reEmptyStringLeading = /\\b__p \\+= '';/g,\n reEmptyStringMiddle = /\\b(__p \\+=) '' \\+/g,\n reEmptyStringTrailing = /(__e\\(.*?\\)|\\b__t\\)) \\+\\n'';/g;\n\n /** Used to match HTML entities and HTML characters. */\n var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g,\n reUnescapedHtml = /[&<>\"']/g,\n reHasEscapedHtml = RegExp(reEscapedHtml.source),\n reHasUnescapedHtml = RegExp(reUnescapedHtml.source);\n\n /** Used to match template delimiters. */\n var reEscape = /<%-([\\s\\S]+?)%>/g,\n reEvaluate = /<%([\\s\\S]+?)%>/g,\n reInterpolate = /<%=([\\s\\S]+?)%>/g;\n\n /** Used to match property names within property paths. */\n var reIsDeepProp = /\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/,\n reIsPlainProp = /^\\w*$/,\n rePropName = /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g;\n\n /**\n * Used to match `RegExp`\n * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n */\n var reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g,\n reHasRegExpChar = RegExp(reRegExpChar.source);\n\n /** Used to match leading and trailing whitespace. */\n var reTrim = /^\\s+|\\s+$/g,\n reTrimStart = /^\\s+/,\n reTrimEnd = /\\s+$/;\n\n /** Used to match wrap detail comments. */\n var reWrapComment = /\\{(?:\\n\\/\\* \\[wrapped with .+\\] \\*\\/)?\\n?/,\n reWrapDetails = /\\{\\n\\/\\* \\[wrapped with (.+)\\] \\*/,\n reSplitDetails = /,? & /;\n\n /** Used to match words composed of alphanumeric characters. */\n var reAsciiWord = /[^\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\x7f]+/g;\n\n /** Used to match backslashes in property paths. */\n var reEscapeChar = /\\\\(\\\\)?/g;\n\n /**\n * Used to match\n * [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexical-components).\n */\n var reEsTemplate = /\\$\\{([^\\\\}]*(?:\\\\.[^\\\\}]*)*)\\}/g;\n\n /** Used to match `RegExp` flags from their coerced string values. */\n var reFlags = /\\w*$/;\n\n /** Used to detect bad signed hexadecimal string values. */\n var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n\n /** Used to detect binary string values. */\n var reIsBinary = /^0b[01]+$/i;\n\n /** Used to detect host constructors (Safari). */\n var reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n /** Used to detect octal string values. */\n var reIsOctal = /^0o[0-7]+$/i;\n\n /** Used to detect unsigned integer values. */\n var reIsUint = /^(?:0|[1-9]\\d*)$/;\n\n /** Used to match Latin Unicode letters (excluding mathematical operators). */\n var reLatin = /[\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\xff\\u0100-\\u017f]/g;\n\n /** Used to ensure capturing order of template delimiters. */\n var reNoMatch = /($^)/;\n\n /** Used to match unescaped characters in compiled string literals. */\n var reUnescapedString = /['\\n\\r\\u2028\\u2029\\\\]/g;\n\n /** Used to compose unicode character classes. */\n var rsAstralRange = '\\\\ud800-\\\\udfff',\n rsComboMarksRange = '\\\\u0300-\\\\u036f',\n reComboHalfMarksRange = '\\\\ufe20-\\\\ufe2f',\n rsComboSymbolsRange = '\\\\u20d0-\\\\u20ff',\n rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange,\n rsDingbatRange = '\\\\u2700-\\\\u27bf',\n rsLowerRange = 'a-z\\\\xdf-\\\\xf6\\\\xf8-\\\\xff',\n rsMathOpRange = '\\\\xac\\\\xb1\\\\xd7\\\\xf7',\n rsNonCharRange = '\\\\x00-\\\\x2f\\\\x3a-\\\\x40\\\\x5b-\\\\x60\\\\x7b-\\\\xbf',\n rsPunctuationRange = '\\\\u2000-\\\\u206f',\n rsSpaceRange = ' \\\\t\\\\x0b\\\\f\\\\xa0\\\\ufeff\\\\n\\\\r\\\\u2028\\\\u2029\\\\u1680\\\\u180e\\\\u2000\\\\u2001\\\\u2002\\\\u2003\\\\u2004\\\\u2005\\\\u2006\\\\u2007\\\\u2008\\\\u2009\\\\u200a\\\\u202f\\\\u205f\\\\u3000',\n rsUpperRange = 'A-Z\\\\xc0-\\\\xd6\\\\xd8-\\\\xde',\n rsVarRange = '\\\\ufe0e\\\\ufe0f',\n rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange;\n\n /** Used to compose unicode capture groups. */\n var rsApos = \"['\\u2019]\",\n rsAstral = '[' + rsAstralRange + ']',\n rsBreak = '[' + rsBreakRange + ']',\n rsCombo = '[' + rsComboRange + ']',\n rsDigits = '\\\\d+',\n rsDingbat = '[' + rsDingbatRange + ']',\n rsLower = '[' + rsLowerRange + ']',\n rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']',\n rsFitz = '\\\\ud83c[\\\\udffb-\\\\udfff]',\n rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')',\n rsNonAstral = '[^' + rsAstralRange + ']',\n rsRegional = '(?:\\\\ud83c[\\\\udde6-\\\\uddff]){2}',\n rsSurrPair = '[\\\\ud800-\\\\udbff][\\\\udc00-\\\\udfff]',\n rsUpper = '[' + rsUpperRange + ']',\n rsZWJ = '\\\\u200d';\n\n /** Used to compose unicode regexes. */\n var rsMiscLower = '(?:' + rsLower + '|' + rsMisc + ')',\n rsMiscUpper = '(?:' + rsUpper + '|' + rsMisc + ')',\n rsOptContrLower = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?',\n rsOptContrUpper = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?',\n reOptMod = rsModifier + '?',\n rsOptVar = '[' + rsVarRange + ']?',\n rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*',\n rsOrdLower = '\\\\d*(?:1st|2nd|3rd|(?![123])\\\\dth)(?=\\\\b|[A-Z_])',\n rsOrdUpper = '\\\\d*(?:1ST|2ND|3RD|(?![123])\\\\dTH)(?=\\\\b|[a-z_])',\n rsSeq = rsOptVar + reOptMod + rsOptJoin,\n rsEmoji = '(?:' + [rsDingbat, rsRegional, rsSurrPair].join('|') + ')' + rsSeq,\n rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')';\n\n /** Used to match apostrophes. */\n var reApos = RegExp(rsApos, 'g');\n\n /**\n * Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks) and\n * [combining diacritical marks for symbols](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks_for_Symbols).\n */\n var reComboMark = RegExp(rsCombo, 'g');\n\n /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */\n var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g');\n\n /** Used to match complex or compound words. */\n var reUnicodeWord = RegExp([\n rsUpper + '?' + rsLower + '+' + rsOptContrLower + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')',\n rsMiscUpper + '+' + rsOptContrUpper + '(?=' + [rsBreak, rsUpper + rsMiscLower, '$'].join('|') + ')',\n rsUpper + '?' + rsMiscLower + '+' + rsOptContrLower,\n rsUpper + '+' + rsOptContrUpper,\n rsOrdUpper,\n rsOrdLower,\n rsDigits,\n rsEmoji\n ].join('|'), 'g');\n\n /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */\n var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']');\n\n /** Used to detect strings that need a more robust regexp to match words. */\n var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;\n\n /** Used to assign default `context` object properties. */\n var contextProps = [\n 'Array', 'Buffer', 'DataView', 'Date', 'Error', 'Float32Array', 'Float64Array',\n 'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Map', 'Math', 'Object',\n 'Promise', 'RegExp', 'Set', 'String', 'Symbol', 'TypeError', 'Uint8Array',\n 'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap',\n '_', 'clearTimeout', 'isFinite', 'parseInt', 'setTimeout'\n ];\n\n /** Used to make template sourceURLs easier to identify. */\n var templateCounter = -1;\n\n /** Used to identify `toStringTag` values of typed arrays. */\n var typedArrayTags = {};\n typedArrayTags[float32Tag] = typedArrayTags[float64Tag] =\n typedArrayTags[int8Tag] = typedArrayTags[int16Tag] =\n typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =\n typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =\n typedArrayTags[uint32Tag] = true;\n typedArrayTags[argsTag] = typedArrayTags[arrayTag] =\n typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =\n typedArrayTags[dataViewTag] = typedArrayTags[dateTag] =\n typedArrayTags[errorTag] = typedArrayTags[funcTag] =\n typedArrayTags[mapTag] = typedArrayTags[numberTag] =\n typedArrayTags[objectTag] = typedArrayTags[regexpTag] =\n typedArrayTags[setTag] = typedArrayTags[stringTag] =\n typedArrayTags[weakMapTag] = false;\n\n /** Used to identify `toStringTag` values supported by `_.clone`. */\n var cloneableTags = {};\n cloneableTags[argsTag] = cloneableTags[arrayTag] =\n cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] =\n cloneableTags[boolTag] = cloneableTags[dateTag] =\n cloneableTags[float32Tag] = cloneableTags[float64Tag] =\n cloneableTags[int8Tag] = cloneableTags[int16Tag] =\n cloneableTags[int32Tag] = cloneableTags[mapTag] =\n cloneableTags[numberTag] = cloneableTags[objectTag] =\n cloneableTags[regexpTag] = cloneableTags[setTag] =\n cloneableTags[stringTag] = cloneableTags[symbolTag] =\n cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] =\n cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;\n cloneableTags[errorTag] = cloneableTags[funcTag] =\n cloneableTags[weakMapTag] = false;\n\n /** Used to map Latin Unicode letters to basic Latin letters. */\n var deburredLetters = {\n // Latin-1 Supplement block.\n '\\xc0': 'A', '\\xc1': 'A', '\\xc2': 'A', '\\xc3': 'A', '\\xc4': 'A', '\\xc5': 'A',\n '\\xe0': 'a', '\\xe1': 'a', '\\xe2': 'a', '\\xe3': 'a', '\\xe4': 'a', '\\xe5': 'a',\n '\\xc7': 'C', '\\xe7': 'c',\n '\\xd0': 'D', '\\xf0': 'd',\n '\\xc8': 'E', '\\xc9': 'E', '\\xca': 'E', '\\xcb': 'E',\n '\\xe8': 'e', '\\xe9': 'e', '\\xea': 'e', '\\xeb': 'e',\n '\\xcc': 'I', '\\xcd': 'I', '\\xce': 'I', '\\xcf': 'I',\n '\\xec': 'i', '\\xed': 'i', '\\xee': 'i', '\\xef': 'i',\n '\\xd1': 'N', '\\xf1': 'n',\n '\\xd2': 'O', '\\xd3': 'O', '\\xd4': 'O', '\\xd5': 'O', '\\xd6': 'O', '\\xd8': 'O',\n '\\xf2': 'o', '\\xf3': 'o', '\\xf4': 'o', '\\xf5': 'o', '\\xf6': 'o', '\\xf8': 'o',\n '\\xd9': 'U', '\\xda': 'U', '\\xdb': 'U', '\\xdc': 'U',\n '\\xf9': 'u', '\\xfa': 'u', '\\xfb': 'u', '\\xfc': 'u',\n '\\xdd': 'Y', '\\xfd': 'y', '\\xff': 'y',\n '\\xc6': 'Ae', '\\xe6': 'ae',\n '\\xde': 'Th', '\\xfe': 'th',\n '\\xdf': 'ss',\n // Latin Extended-A block.\n '\\u0100': 'A', '\\u0102': 'A', '\\u0104': 'A',\n '\\u0101': 'a', '\\u0103': 'a', '\\u0105': 'a',\n '\\u0106': 'C', '\\u0108': 'C', '\\u010a': 'C', '\\u010c': 'C',\n '\\u0107': 'c', '\\u0109': 'c', '\\u010b': 'c', '\\u010d': 'c',\n '\\u010e': 'D', '\\u0110': 'D', '\\u010f': 'd', '\\u0111': 'd',\n '\\u0112': 'E', '\\u0114': 'E', '\\u0116': 'E', '\\u0118': 'E', '\\u011a': 'E',\n '\\u0113': 'e', '\\u0115': 'e', '\\u0117': 'e', '\\u0119': 'e', '\\u011b': 'e',\n '\\u011c': 'G', '\\u011e': 'G', '\\u0120': 'G', '\\u0122': 'G',\n '\\u011d': 'g', '\\u011f': 'g', '\\u0121': 'g', '\\u0123': 'g',\n '\\u0124': 'H', '\\u0126': 'H', '\\u0125': 'h', '\\u0127': 'h',\n '\\u0128': 'I', '\\u012a': 'I', '\\u012c': 'I', '\\u012e': 'I', '\\u0130': 'I',\n '\\u0129': 'i', '\\u012b': 'i', '\\u012d': 'i', '\\u012f': 'i', '\\u0131': 'i',\n '\\u0134': 'J', '\\u0135': 'j',\n '\\u0136': 'K', '\\u0137': 'k', '\\u0138': 'k',\n '\\u0139': 'L', '\\u013b': 'L', '\\u013d': 'L', '\\u013f': 'L', '\\u0141': 'L',\n '\\u013a': 'l', '\\u013c': 'l', '\\u013e': 'l', '\\u0140': 'l', '\\u0142': 'l',\n '\\u0143': 'N', '\\u0145': 'N', '\\u0147': 'N', '\\u014a': 'N',\n '\\u0144': 'n', '\\u0146': 'n', '\\u0148': 'n', '\\u014b': 'n',\n '\\u014c': 'O', '\\u014e': 'O', '\\u0150': 'O',\n '\\u014d': 'o', '\\u014f': 'o', '\\u0151': 'o',\n '\\u0154': 'R', '\\u0156': 'R', '\\u0158': 'R',\n '\\u0155': 'r', '\\u0157': 'r', '\\u0159': 'r',\n '\\u015a': 'S', '\\u015c': 'S', '\\u015e': 'S', '\\u0160': 'S',\n '\\u015b': 's', '\\u015d': 's', '\\u015f': 's', '\\u0161': 's',\n '\\u0162': 'T', '\\u0164': 'T', '\\u0166': 'T',\n '\\u0163': 't', '\\u0165': 't', '\\u0167': 't',\n '\\u0168': 'U', '\\u016a': 'U', '\\u016c': 'U', '\\u016e': 'U', '\\u0170': 'U', '\\u0172': 'U',\n '\\u0169': 'u', '\\u016b': 'u', '\\u016d': 'u', '\\u016f': 'u', '\\u0171': 'u', '\\u0173': 'u',\n '\\u0174': 'W', '\\u0175': 'w',\n '\\u0176': 'Y', '\\u0177': 'y', '\\u0178': 'Y',\n '\\u0179': 'Z', '\\u017b': 'Z', '\\u017d': 'Z',\n '\\u017a': 'z', '\\u017c': 'z', '\\u017e': 'z',\n '\\u0132': 'IJ', '\\u0133': 'ij',\n '\\u0152': 'Oe', '\\u0153': 'oe',\n '\\u0149': \"'n\", '\\u017f': 's'\n };\n\n /** Used to map characters to HTML entities. */\n var htmlEscapes = {\n '&': '&',\n '<': '<',\n '>': '>',\n '\"': '"',\n \"'\": '''\n };\n\n /** Used to map HTML entities to characters. */\n var htmlUnescapes = {\n '&': '&',\n '<': '<',\n '>': '>',\n '"': '\"',\n ''': \"'\"\n };\n\n /** Used to escape characters for inclusion in compiled string literals. */\n var stringEscapes = {\n '\\\\': '\\\\',\n \"'\": \"'\",\n '\\n': 'n',\n '\\r': 'r',\n '\\u2028': 'u2028',\n '\\u2029': 'u2029'\n };\n\n /** Built-in method references without a dependency on `root`. */\n var freeParseFloat = parseFloat,\n freeParseInt = parseInt;\n\n /** Detect free variable `global` from Node.js. */\n var freeGlobal = typeof global == 'object' && global && global.Object === Object && global;\n\n /** Detect free variable `self`. */\n var freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n /** Used as a reference to the global object. */\n var root = freeGlobal || freeSelf || Function('return this')();\n\n /** Detect free variable `exports`. */\n var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;\n\n /** Detect free variable `module`. */\n var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\n\n /** Detect the popular CommonJS extension `module.exports`. */\n var moduleExports = freeModule && freeModule.exports === freeExports;\n\n /** Detect free variable `process` from Node.js. */\n var freeProcess = moduleExports && freeGlobal.process;\n\n /** Used to access faster Node.js helpers. */\n var nodeUtil = (function() {\n try {\n // Use `util.types` for Node.js 10+.\n var types = freeModule && freeModule.require && freeModule.require('util').types;\n\n if (types) {\n return types;\n }\n\n // Legacy `process.binding('util')` for Node.js < 10.\n return freeProcess && freeProcess.binding && freeProcess.binding('util');\n } catch (e) {}\n }());\n\n /* Node.js helper references. */\n var nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer,\n nodeIsDate = nodeUtil && nodeUtil.isDate,\n nodeIsMap = nodeUtil && nodeUtil.isMap,\n nodeIsRegExp = nodeUtil && nodeUtil.isRegExp,\n nodeIsSet = nodeUtil && nodeUtil.isSet,\n nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\n\n /*--------------------------------------------------------------------------*/\n\n /**\n * A faster alternative to `Function#apply`, this function invokes `func`\n * with the `this` binding of `thisArg` and the arguments of `args`.\n *\n * @private\n * @param {Function} func The function to invoke.\n * @param {*} thisArg The `this` binding of `func`.\n * @param {Array} args The arguments to invoke `func` with.\n * @returns {*} Returns the result of `func`.\n */\n function apply(func, thisArg, args) {\n switch (args.length) {\n case 0: return func.call(thisArg);\n case 1: return func.call(thisArg, args[0]);\n case 2: return func.call(thisArg, args[0], args[1]);\n case 3: return func.call(thisArg, args[0], args[1], args[2]);\n }\n return func.apply(thisArg, args);\n }\n\n /**\n * A specialized version of `baseAggregator` for arrays.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} setter The function to set `accumulator` values.\n * @param {Function} iteratee The iteratee to transform keys.\n * @param {Object} accumulator The initial aggregated object.\n * @returns {Function} Returns `accumulator`.\n */\n function arrayAggregator(array, setter, iteratee, accumulator) {\n var index = -1,\n length = array == null ? 0 : array.length;\n\n while (++index < length) {\n var value = array[index];\n setter(accumulator, value, iteratee(value), array);\n }\n return accumulator;\n }\n\n /**\n * A specialized version of `_.forEach` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns `array`.\n */\n function arrayEach(array, iteratee) {\n var index = -1,\n length = array == null ? 0 : array.length;\n\n while (++index < length) {\n if (iteratee(array[index], index, array) === false) {\n break;\n }\n }\n return array;\n }\n\n /**\n * A specialized version of `_.forEachRight` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns `array`.\n */\n function arrayEachRight(array, iteratee) {\n var length = array == null ? 0 : array.length;\n\n while (length--) {\n if (iteratee(array[length], length, array) === false) {\n break;\n }\n }\n return array;\n }\n\n /**\n * A specialized version of `_.every` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {boolean} Returns `true` if all elements pass the predicate check,\n * else `false`.\n */\n function arrayEvery(array, predicate) {\n var index = -1,\n length = array == null ? 0 : array.length;\n\n while (++index < length) {\n if (!predicate(array[index], index, array)) {\n return false;\n }\n }\n return true;\n }\n\n /**\n * A specialized version of `_.filter` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n */\n function arrayFilter(array, predicate) {\n var index = -1,\n length = array == null ? 0 : array.length,\n resIndex = 0,\n result = [];\n\n while (++index < length) {\n var value = array[index];\n if (predicate(value, index, array)) {\n result[resIndex++] = value;\n }\n }\n return result;\n }\n\n /**\n * A specialized version of `_.includes` for arrays without support for\n * specifying an index to search from.\n *\n * @private\n * @param {Array} [array] The array to inspect.\n * @param {*} target The value to search for.\n * @returns {boolean} Returns `true` if `target` is found, else `false`.\n */\n function arrayIncludes(array, value) {\n var length = array == null ? 0 : array.length;\n return !!length && baseIndexOf(array, value, 0) > -1;\n }\n\n /**\n * This function is like `arrayIncludes` except that it accepts a comparator.\n *\n * @private\n * @param {Array} [array] The array to inspect.\n * @param {*} target The value to search for.\n * @param {Function} comparator The comparator invoked per element.\n * @returns {boolean} Returns `true` if `target` is found, else `false`.\n */\n function arrayIncludesWith(array, value, comparator) {\n var index = -1,\n length = array == null ? 0 : array.length;\n\n while (++index < length) {\n if (comparator(value, array[index])) {\n return true;\n }\n }\n return false;\n }\n\n /**\n * A specialized version of `_.map` for arrays without support for iteratee\n * shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the new mapped array.\n */\n function arrayMap(array, iteratee) {\n var index = -1,\n length = array == null ? 0 : array.length,\n result = Array(length);\n\n while (++index < length) {\n result[index] = iteratee(array[index], index, array);\n }\n return result;\n }\n\n /**\n * Appends the elements of `values` to `array`.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {Array} values The values to append.\n * @returns {Array} Returns `array`.\n */\n function arrayPush(array, values) {\n var index = -1,\n length = values.length,\n offset = array.length;\n\n while (++index < length) {\n array[offset + index] = values[index];\n }\n return array;\n }\n\n /**\n * A specialized version of `_.reduce` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {*} [accumulator] The initial value.\n * @param {boolean} [initAccum] Specify using the first element of `array` as\n * the initial value.\n * @returns {*} Returns the accumulated value.\n */\n function arrayReduce(array, iteratee, accumulator, initAccum) {\n var index = -1,\n length = array == null ? 0 : array.length;\n\n if (initAccum && length) {\n accumulator = array[++index];\n }\n while (++index < length) {\n accumulator = iteratee(accumulator, array[index], index, array);\n }\n return accumulator;\n }\n\n /**\n * A specialized version of `_.reduceRight` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {*} [accumulator] The initial value.\n * @param {boolean} [initAccum] Specify using the last element of `array` as\n * the initial value.\n * @returns {*} Returns the accumulated value.\n */\n function arrayReduceRight(array, iteratee, accumulator, initAccum) {\n var length = array == null ? 0 : array.length;\n if (initAccum && length) {\n accumulator = array[--length];\n }\n while (length--) {\n accumulator = iteratee(accumulator, array[length], length, array);\n }\n return accumulator;\n }\n\n /**\n * A specialized version of `_.some` for arrays without support for iteratee\n * shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {boolean} Returns `true` if any element passes the predicate check,\n * else `false`.\n */\n function arraySome(array, predicate) {\n var index = -1,\n length = array == null ? 0 : array.length;\n\n while (++index < length) {\n if (predicate(array[index], index, array)) {\n return true;\n }\n }\n return false;\n }\n\n /**\n * Gets the size of an ASCII `string`.\n *\n * @private\n * @param {string} string The string inspect.\n * @returns {number} Returns the string size.\n */\n var asciiSize = baseProperty('length');\n\n /**\n * Converts an ASCII `string` to an array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the converted array.\n */\n function asciiToArray(string) {\n return string.split('');\n }\n\n /**\n * Splits an ASCII `string` into an array of its words.\n *\n * @private\n * @param {string} The string to inspect.\n * @returns {Array} Returns the words of `string`.\n */\n function asciiWords(string) {\n return string.match(reAsciiWord) || [];\n }\n\n /**\n * The base implementation of methods like `_.findKey` and `_.findLastKey`,\n * without support for iteratee shorthands, which iterates over `collection`\n * using `eachFunc`.\n *\n * @private\n * @param {Array|Object} collection The collection to inspect.\n * @param {Function} predicate The function invoked per iteration.\n * @param {Function} eachFunc The function to iterate over `collection`.\n * @returns {*} Returns the found element or its key, else `undefined`.\n */\n function baseFindKey(collection, predicate, eachFunc) {\n var result;\n eachFunc(collection, function(value, key, collection) {\n if (predicate(value, key, collection)) {\n result = key;\n return false;\n }\n });\n return result;\n }\n\n /**\n * The base implementation of `_.findIndex` and `_.findLastIndex` without\n * support for iteratee shorthands.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {Function} predicate The function invoked per iteration.\n * @param {number} fromIndex The index to search from.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\n function baseFindIndex(array, predicate, fromIndex, fromRight) {\n var length = array.length,\n index = fromIndex + (fromRight ? 1 : -1);\n\n while ((fromRight ? index-- : ++index < length)) {\n if (predicate(array[index], index, array)) {\n return index;\n }\n }\n return -1;\n }\n\n /**\n * The base implementation of `_.indexOf` without `fromIndex` bounds checks.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @param {number} fromIndex The index to search from.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\n function baseIndexOf(array, value, fromIndex) {\n return value === value\n ? strictIndexOf(array, value, fromIndex)\n : baseFindIndex(array, baseIsNaN, fromIndex);\n }\n\n /**\n * This function is like `baseIndexOf` except that it accepts a comparator.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @param {number} fromIndex The index to search from.\n * @param {Function} comparator The comparator invoked per element.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\n function baseIndexOfWith(array, value, fromIndex, comparator) {\n var index = fromIndex - 1,\n length = array.length;\n\n while (++index < length) {\n if (comparator(array[index], value)) {\n return index;\n }\n }\n return -1;\n }\n\n /**\n * The base implementation of `_.isNaN` without support for number objects.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\n */\n function baseIsNaN(value) {\n return value !== value;\n }\n\n /**\n * The base implementation of `_.mean` and `_.meanBy` without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {number} Returns the mean.\n */\n function baseMean(array, iteratee) {\n var length = array == null ? 0 : array.length;\n return length ? (baseSum(array, iteratee) / length) : NAN;\n }\n\n /**\n * The base implementation of `_.property` without support for deep paths.\n *\n * @private\n * @param {string} key The key of the property to get.\n * @returns {Function} Returns the new accessor function.\n */\n function baseProperty(key) {\n return function(object) {\n return object == null ? undefined : object[key];\n };\n }\n\n /**\n * The base implementation of `_.propertyOf` without support for deep paths.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Function} Returns the new accessor function.\n */\n function basePropertyOf(object) {\n return function(key) {\n return object == null ? undefined : object[key];\n };\n }\n\n /**\n * The base implementation of `_.reduce` and `_.reduceRight`, without support\n * for iteratee shorthands, which iterates over `collection` using `eachFunc`.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {*} accumulator The initial value.\n * @param {boolean} initAccum Specify using the first or last element of\n * `collection` as the initial value.\n * @param {Function} eachFunc The function to iterate over `collection`.\n * @returns {*} Returns the accumulated value.\n */\n function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) {\n eachFunc(collection, function(value, index, collection) {\n accumulator = initAccum\n ? (initAccum = false, value)\n : iteratee(accumulator, value, index, collection);\n });\n return accumulator;\n }\n\n /**\n * The base implementation of `_.sortBy` which uses `comparer` to define the\n * sort order of `array` and replaces criteria objects with their corresponding\n * values.\n *\n * @private\n * @param {Array} array The array to sort.\n * @param {Function} comparer The function to define sort order.\n * @returns {Array} Returns `array`.\n */\n function baseSortBy(array, comparer) {\n var length = array.length;\n\n array.sort(comparer);\n while (length--) {\n array[length] = array[length].value;\n }\n return array;\n }\n\n /**\n * The base implementation of `_.sum` and `_.sumBy` without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {number} Returns the sum.\n */\n function baseSum(array, iteratee) {\n var result,\n index = -1,\n length = array.length;\n\n while (++index < length) {\n var current = iteratee(array[index]);\n if (current !== undefined) {\n result = result === undefined ? current : (result + current);\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `_.times` without support for iteratee shorthands\n * or max array length checks.\n *\n * @private\n * @param {number} n The number of times to invoke `iteratee`.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the array of results.\n */\n function baseTimes(n, iteratee) {\n var index = -1,\n result = Array(n);\n\n while (++index < n) {\n result[index] = iteratee(index);\n }\n return result;\n }\n\n /**\n * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array\n * of key-value pairs for `object` corresponding to the property names of `props`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array} props The property names to get values for.\n * @returns {Object} Returns the key-value pairs.\n */\n function baseToPairs(object, props) {\n return arrayMap(props, function(key) {\n return [key, object[key]];\n });\n }\n\n /**\n * The base implementation of `_.unary` without support for storing metadata.\n *\n * @private\n * @param {Function} func The function to cap arguments for.\n * @returns {Function} Returns the new capped function.\n */\n function baseUnary(func) {\n return function(value) {\n return func(value);\n };\n }\n\n /**\n * The base implementation of `_.values` and `_.valuesIn` which creates an\n * array of `object` property values corresponding to the property names\n * of `props`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array} props The property names to get values for.\n * @returns {Object} Returns the array of property values.\n */\n function baseValues(object, props) {\n return arrayMap(props, function(key) {\n return object[key];\n });\n }\n\n /**\n * Checks if a `cache` value for `key` exists.\n *\n * @private\n * @param {Object} cache The cache to query.\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\n function cacheHas(cache, key) {\n return cache.has(key);\n }\n\n /**\n * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol\n * that is not found in the character symbols.\n *\n * @private\n * @param {Array} strSymbols The string symbols to inspect.\n * @param {Array} chrSymbols The character symbols to find.\n * @returns {number} Returns the index of the first unmatched string symbol.\n */\n function charsStartIndex(strSymbols, chrSymbols) {\n var index = -1,\n length = strSymbols.length;\n\n while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}\n return index;\n }\n\n /**\n * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol\n * that is not found in the character symbols.\n *\n * @private\n * @param {Array} strSymbols The string symbols to inspect.\n * @param {Array} chrSymbols The character symbols to find.\n * @returns {number} Returns the index of the last unmatched string symbol.\n */\n function charsEndIndex(strSymbols, chrSymbols) {\n var index = strSymbols.length;\n\n while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}\n return index;\n }\n\n /**\n * Gets the number of `placeholder` occurrences in `array`.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} placeholder The placeholder to search for.\n * @returns {number} Returns the placeholder count.\n */\n function countHolders(array, placeholder) {\n var length = array.length,\n result = 0;\n\n while (length--) {\n if (array[length] === placeholder) {\n ++result;\n }\n }\n return result;\n }\n\n /**\n * Used by `_.deburr` to convert Latin-1 Supplement and Latin Extended-A\n * letters to basic Latin letters.\n *\n * @private\n * @param {string} letter The matched letter to deburr.\n * @returns {string} Returns the deburred letter.\n */\n var deburrLetter = basePropertyOf(deburredLetters);\n\n /**\n * Used by `_.escape` to convert characters to HTML entities.\n *\n * @private\n * @param {string} chr The matched character to escape.\n * @returns {string} Returns the escaped character.\n */\n var escapeHtmlChar = basePropertyOf(htmlEscapes);\n\n /**\n * Used by `_.template` to escape characters for inclusion in compiled string literals.\n *\n * @private\n * @param {string} chr The matched character to escape.\n * @returns {string} Returns the escaped character.\n */\n function escapeStringChar(chr) {\n return '\\\\' + stringEscapes[chr];\n }\n\n /**\n * Gets the value at `key` of `object`.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\n function getValue(object, key) {\n return object == null ? undefined : object[key];\n }\n\n /**\n * Checks if `string` contains Unicode symbols.\n *\n * @private\n * @param {string} string The string to inspect.\n * @returns {boolean} Returns `true` if a symbol is found, else `false`.\n */\n function hasUnicode(string) {\n return reHasUnicode.test(string);\n }\n\n /**\n * Checks if `string` contains a word composed of Unicode symbols.\n *\n * @private\n * @param {string} string The string to inspect.\n * @returns {boolean} Returns `true` if a word is found, else `false`.\n */\n function hasUnicodeWord(string) {\n return reHasUnicodeWord.test(string);\n }\n\n /**\n * Converts `iterator` to an array.\n *\n * @private\n * @param {Object} iterator The iterator to convert.\n * @returns {Array} Returns the converted array.\n */\n function iteratorToArray(iterator) {\n var data,\n result = [];\n\n while (!(data = iterator.next()).done) {\n result.push(data.value);\n }\n return result;\n }\n\n /**\n * Converts `map` to its key-value pairs.\n *\n * @private\n * @param {Object} map The map to convert.\n * @returns {Array} Returns the key-value pairs.\n */\n function mapToArray(map) {\n var index = -1,\n result = Array(map.size);\n\n map.forEach(function(value, key) {\n result[++index] = [key, value];\n });\n return result;\n }\n\n /**\n * Creates a unary function that invokes `func` with its argument transformed.\n *\n * @private\n * @param {Function} func The function to wrap.\n * @param {Function} transform The argument transform.\n * @returns {Function} Returns the new function.\n */\n function overArg(func, transform) {\n return function(arg) {\n return func(transform(arg));\n };\n }\n\n /**\n * Replaces all `placeholder` elements in `array` with an internal placeholder\n * and returns an array of their indexes.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {*} placeholder The placeholder to replace.\n * @returns {Array} Returns the new array of placeholder indexes.\n */\n function replaceHolders(array, placeholder) {\n var index = -1,\n length = array.length,\n resIndex = 0,\n result = [];\n\n while (++index < length) {\n var value = array[index];\n if (value === placeholder || value === PLACEHOLDER) {\n array[index] = PLACEHOLDER;\n result[resIndex++] = index;\n }\n }\n return result;\n }\n\n /**\n * Converts `set` to an array of its values.\n *\n * @private\n * @param {Object} set The set to convert.\n * @returns {Array} Returns the values.\n */\n function setToArray(set) {\n var index = -1,\n result = Array(set.size);\n\n set.forEach(function(value) {\n result[++index] = value;\n });\n return result;\n }\n\n /**\n * Converts `set` to its value-value pairs.\n *\n * @private\n * @param {Object} set The set to convert.\n * @returns {Array} Returns the value-value pairs.\n */\n function setToPairs(set) {\n var index = -1,\n result = Array(set.size);\n\n set.forEach(function(value) {\n result[++index] = [value, value];\n });\n return result;\n }\n\n /**\n * A specialized version of `_.indexOf` which performs strict equality\n * comparisons of values, i.e. `===`.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @param {number} fromIndex The index to search from.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\n function strictIndexOf(array, value, fromIndex) {\n var index = fromIndex - 1,\n length = array.length;\n\n while (++index < length) {\n if (array[index] === value) {\n return index;\n }\n }\n return -1;\n }\n\n /**\n * A specialized version of `_.lastIndexOf` which performs strict equality\n * comparisons of values, i.e. `===`.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @param {number} fromIndex The index to search from.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\n function strictLastIndexOf(array, value, fromIndex) {\n var index = fromIndex + 1;\n while (index--) {\n if (array[index] === value) {\n return index;\n }\n }\n return index;\n }\n\n /**\n * Gets the number of symbols in `string`.\n *\n * @private\n * @param {string} string The string to inspect.\n * @returns {number} Returns the string size.\n */\n function stringSize(string) {\n return hasUnicode(string)\n ? unicodeSize(string)\n : asciiSize(string);\n }\n\n /**\n * Converts `string` to an array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the converted array.\n */\n function stringToArray(string) {\n return hasUnicode(string)\n ? unicodeToArray(string)\n : asciiToArray(string);\n }\n\n /**\n * Used by `_.unescape` to convert HTML entities to characters.\n *\n * @private\n * @param {string} chr The matched character to unescape.\n * @returns {string} Returns the unescaped character.\n */\n var unescapeHtmlChar = basePropertyOf(htmlUnescapes);\n\n /**\n * Gets the size of a Unicode `string`.\n *\n * @private\n * @param {string} string The string inspect.\n * @returns {number} Returns the string size.\n */\n function unicodeSize(string) {\n var result = reUnicode.lastIndex = 0;\n while (reUnicode.test(string)) {\n ++result;\n }\n return result;\n }\n\n /**\n * Converts a Unicode `string` to an array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the converted array.\n */\n function unicodeToArray(string) {\n return string.match(reUnicode) || [];\n }\n\n /**\n * Splits a Unicode `string` into an array of its words.\n *\n * @private\n * @param {string} The string to inspect.\n * @returns {Array} Returns the words of `string`.\n */\n function unicodeWords(string) {\n return string.match(reUnicodeWord) || [];\n }\n\n /*--------------------------------------------------------------------------*/\n\n /**\n * Create a new pristine `lodash` function using the `context` object.\n *\n * @static\n * @memberOf _\n * @since 1.1.0\n * @category Util\n * @param {Object} [context=root] The context object.\n * @returns {Function} Returns a new `lodash` function.\n * @example\n *\n * _.mixin({ 'foo': _.constant('foo') });\n *\n * var lodash = _.runInContext();\n * lodash.mixin({ 'bar': lodash.constant('bar') });\n *\n * _.isFunction(_.foo);\n * // => true\n * _.isFunction(_.bar);\n * // => false\n *\n * lodash.isFunction(lodash.foo);\n * // => false\n * lodash.isFunction(lodash.bar);\n * // => true\n *\n * // Create a suped-up `defer` in Node.js.\n * var defer = _.runInContext({ 'setTimeout': setImmediate }).defer;\n */\n var runInContext = (function runInContext(context) {\n context = context == null ? root : _.defaults(root.Object(), context, _.pick(root, contextProps));\n\n /** Built-in constructor references. */\n var Array = context.Array,\n Date = context.Date,\n Error = context.Error,\n Function = context.Function,\n Math = context.Math,\n Object = context.Object,\n RegExp = context.RegExp,\n String = context.String,\n TypeError = context.TypeError;\n\n /** Used for built-in method references. */\n var arrayProto = Array.prototype,\n funcProto = Function.prototype,\n objectProto = Object.prototype;\n\n /** Used to detect overreaching core-js shims. */\n var coreJsData = context['__core-js_shared__'];\n\n /** Used to resolve the decompiled source of functions. */\n var funcToString = funcProto.toString;\n\n /** Used to check objects for own properties. */\n var hasOwnProperty = objectProto.hasOwnProperty;\n\n /** Used to generate unique IDs. */\n var idCounter = 0;\n\n /** Used to detect methods masquerading as native. */\n var maskSrcKey = (function() {\n var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\n return uid ? ('Symbol(src)_1.' + uid) : '';\n }());\n\n /**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\n var nativeObjectToString = objectProto.toString;\n\n /** Used to infer the `Object` constructor. */\n var objectCtorString = funcToString.call(Object);\n\n /** Used to restore the original `_` reference in `_.noConflict`. */\n var oldDash = root._;\n\n /** Used to detect if a method is native. */\n var reIsNative = RegExp('^' +\n funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\$&')\n .replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$'\n );\n\n /** Built-in value references. */\n var Buffer = moduleExports ? context.Buffer : undefined,\n Symbol = context.Symbol,\n Uint8Array = context.Uint8Array,\n allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined,\n getPrototype = overArg(Object.getPrototypeOf, Object),\n objectCreate = Object.create,\n propertyIsEnumerable = objectProto.propertyIsEnumerable,\n splice = arrayProto.splice,\n spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined,\n symIterator = Symbol ? Symbol.iterator : undefined,\n symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n var defineProperty = (function() {\n try {\n var func = getNative(Object, 'defineProperty');\n func({}, '', {});\n return func;\n } catch (e) {}\n }());\n\n /** Mocked built-ins. */\n var ctxClearTimeout = context.clearTimeout !== root.clearTimeout && context.clearTimeout,\n ctxNow = Date && Date.now !== root.Date.now && Date.now,\n ctxSetTimeout = context.setTimeout !== root.setTimeout && context.setTimeout;\n\n /* Built-in method references for those with the same name as other `lodash` methods. */\n var nativeCeil = Math.ceil,\n nativeFloor = Math.floor,\n nativeGetSymbols = Object.getOwnPropertySymbols,\n nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined,\n nativeIsFinite = context.isFinite,\n nativeJoin = arrayProto.join,\n nativeKeys = overArg(Object.keys, Object),\n nativeMax = Math.max,\n nativeMin = Math.min,\n nativeNow = Date.now,\n nativeParseInt = context.parseInt,\n nativeRandom = Math.random,\n nativeReverse = arrayProto.reverse;\n\n /* Built-in method references that are verified to be native. */\n var DataView = getNative(context, 'DataView'),\n Map = getNative(context, 'Map'),\n Promise = getNative(context, 'Promise'),\n Set = getNative(context, 'Set'),\n WeakMap = getNative(context, 'WeakMap'),\n nativeCreate = getNative(Object, 'create');\n\n /** Used to store function metadata. */\n var metaMap = WeakMap && new WeakMap;\n\n /** Used to lookup unminified function names. */\n var realNames = {};\n\n /** Used to detect maps, sets, and weakmaps. */\n var dataViewCtorString = toSource(DataView),\n mapCtorString = toSource(Map),\n promiseCtorString = toSource(Promise),\n setCtorString = toSource(Set),\n weakMapCtorString = toSource(WeakMap);\n\n /** Used to convert symbols to primitives and strings. */\n var symbolProto = Symbol ? Symbol.prototype : undefined,\n symbolValueOf = symbolProto ? symbolProto.valueOf : undefined,\n symbolToString = symbolProto ? symbolProto.toString : undefined;\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a `lodash` object which wraps `value` to enable implicit method\n * chain sequences. Methods that operate on and return arrays, collections,\n * and functions can be chained together. Methods that retrieve a single value\n * or may return a primitive value will automatically end the chain sequence\n * and return the unwrapped value. Otherwise, the value must be unwrapped\n * with `_#value`.\n *\n * Explicit chain sequences, which must be unwrapped with `_#value`, may be\n * enabled using `_.chain`.\n *\n * The execution of chained methods is lazy, that is, it's deferred until\n * `_#value` is implicitly or explicitly called.\n *\n * Lazy evaluation allows several methods to support shortcut fusion.\n * Shortcut fusion is an optimization to merge iteratee calls; this avoids\n * the creation of intermediate arrays and can greatly reduce the number of\n * iteratee executions. Sections of a chain sequence qualify for shortcut\n * fusion if the section is applied to an array and iteratees accept only\n * one argument. The heuristic for whether a section qualifies for shortcut\n * fusion is subject to change.\n *\n * Chaining is supported in custom builds as long as the `_#value` method is\n * directly or indirectly included in the build.\n *\n * In addition to lodash methods, wrappers have `Array` and `String` methods.\n *\n * The wrapper `Array` methods are:\n * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift`\n *\n * The wrapper `String` methods are:\n * `replace` and `split`\n *\n * The wrapper methods that support shortcut fusion are:\n * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`,\n * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`,\n * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray`\n *\n * The chainable wrapper methods are:\n * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`,\n * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`,\n * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`,\n * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`,\n * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`,\n * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`,\n * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`,\n * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`,\n * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`,\n * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`,\n * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`,\n * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`,\n * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`,\n * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`,\n * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`,\n * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`,\n * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`,\n * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`,\n * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`,\n * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`,\n * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`,\n * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`,\n * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`,\n * `zipObject`, `zipObjectDeep`, and `zipWith`\n *\n * The wrapper methods that are **not** chainable by default are:\n * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`,\n * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`,\n * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`,\n * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`,\n * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`,\n * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`,\n * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`,\n * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`,\n * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`,\n * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`,\n * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`,\n * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`,\n * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`,\n * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`,\n * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`,\n * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`,\n * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`,\n * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`,\n * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`,\n * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`,\n * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`,\n * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`,\n * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`,\n * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`,\n * `upperFirst`, `value`, and `words`\n *\n * @name _\n * @constructor\n * @category Seq\n * @param {*} value The value to wrap in a `lodash` instance.\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * function square(n) {\n * return n * n;\n * }\n *\n * var wrapped = _([1, 2, 3]);\n *\n * // Returns an unwrapped value.\n * wrapped.reduce(_.add);\n * // => 6\n *\n * // Returns a wrapped value.\n * var squares = wrapped.map(square);\n *\n * _.isArray(squares);\n * // => false\n *\n * _.isArray(squares.value());\n * // => true\n */\n function lodash(value) {\n if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) {\n if (value instanceof LodashWrapper) {\n return value;\n }\n if (hasOwnProperty.call(value, '__wrapped__')) {\n return wrapperClone(value);\n }\n }\n return new LodashWrapper(value);\n }\n\n /**\n * The base implementation of `_.create` without support for assigning\n * properties to the created object.\n *\n * @private\n * @param {Object} proto The object to inherit from.\n * @returns {Object} Returns the new object.\n */\n var baseCreate = (function() {\n function object() {}\n return function(proto) {\n if (!isObject(proto)) {\n return {};\n }\n if (objectCreate) {\n return objectCreate(proto);\n }\n object.prototype = proto;\n var result = new object;\n object.prototype = undefined;\n return result;\n };\n }());\n\n /**\n * The function whose prototype chain sequence wrappers inherit from.\n *\n * @private\n */\n function baseLodash() {\n // No operation performed.\n }\n\n /**\n * The base constructor for creating `lodash` wrapper objects.\n *\n * @private\n * @param {*} value The value to wrap.\n * @param {boolean} [chainAll] Enable explicit method chain sequences.\n */\n function LodashWrapper(value, chainAll) {\n this.__wrapped__ = value;\n this.__actions__ = [];\n this.__chain__ = !!chainAll;\n this.__index__ = 0;\n this.__values__ = undefined;\n }\n\n /**\n * By default, the template delimiters used by lodash are like those in\n * embedded Ruby (ERB) as well as ES2015 template strings. Change the\n * following template settings to use alternative delimiters.\n *\n * @static\n * @memberOf _\n * @type {Object}\n */\n lodash.templateSettings = {\n\n /**\n * Used to detect `data` property values to be HTML-escaped.\n *\n * @memberOf _.templateSettings\n * @type {RegExp}\n */\n 'escape': reEscape,\n\n /**\n * Used to detect code to be evaluated.\n *\n * @memberOf _.templateSettings\n * @type {RegExp}\n */\n 'evaluate': reEvaluate,\n\n /**\n * Used to detect `data` property values to inject.\n *\n * @memberOf _.templateSettings\n * @type {RegExp}\n */\n 'interpolate': reInterpolate,\n\n /**\n * Used to reference the data object in the template text.\n *\n * @memberOf _.templateSettings\n * @type {string}\n */\n 'variable': '',\n\n /**\n * Used to import variables into the compiled template.\n *\n * @memberOf _.templateSettings\n * @type {Object}\n */\n 'imports': {\n\n /**\n * A reference to the `lodash` function.\n *\n * @memberOf _.templateSettings.imports\n * @type {Function}\n */\n '_': lodash\n }\n };\n\n // Ensure wrappers are instances of `baseLodash`.\n lodash.prototype = baseLodash.prototype;\n lodash.prototype.constructor = lodash;\n\n LodashWrapper.prototype = baseCreate(baseLodash.prototype);\n LodashWrapper.prototype.constructor = LodashWrapper;\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation.\n *\n * @private\n * @constructor\n * @param {*} value The value to wrap.\n */\n function LazyWrapper(value) {\n this.__wrapped__ = value;\n this.__actions__ = [];\n this.__dir__ = 1;\n this.__filtered__ = false;\n this.__iteratees__ = [];\n this.__takeCount__ = MAX_ARRAY_LENGTH;\n this.__views__ = [];\n }\n\n /**\n * Creates a clone of the lazy wrapper object.\n *\n * @private\n * @name clone\n * @memberOf LazyWrapper\n * @returns {Object} Returns the cloned `LazyWrapper` object.\n */\n function lazyClone() {\n var result = new LazyWrapper(this.__wrapped__);\n result.__actions__ = copyArray(this.__actions__);\n result.__dir__ = this.__dir__;\n result.__filtered__ = this.__filtered__;\n result.__iteratees__ = copyArray(this.__iteratees__);\n result.__takeCount__ = this.__takeCount__;\n result.__views__ = copyArray(this.__views__);\n return result;\n }\n\n /**\n * Reverses the direction of lazy iteration.\n *\n * @private\n * @name reverse\n * @memberOf LazyWrapper\n * @returns {Object} Returns the new reversed `LazyWrapper` object.\n */\n function lazyReverse() {\n if (this.__filtered__) {\n var result = new LazyWrapper(this);\n result.__dir__ = -1;\n result.__filtered__ = true;\n } else {\n result = this.clone();\n result.__dir__ *= -1;\n }\n return result;\n }\n\n /**\n * Extracts the unwrapped value from its lazy wrapper.\n *\n * @private\n * @name value\n * @memberOf LazyWrapper\n * @returns {*} Returns the unwrapped value.\n */\n function lazyValue() {\n var array = this.__wrapped__.value(),\n dir = this.__dir__,\n isArr = isArray(array),\n isRight = dir < 0,\n arrLength = isArr ? array.length : 0,\n view = getView(0, arrLength, this.__views__),\n start = view.start,\n end = view.end,\n length = end - start,\n index = isRight ? end : (start - 1),\n iteratees = this.__iteratees__,\n iterLength = iteratees.length,\n resIndex = 0,\n takeCount = nativeMin(length, this.__takeCount__);\n\n if (!isArr || (!isRight && arrLength == length && takeCount == length)) {\n return baseWrapperValue(array, this.__actions__);\n }\n var result = [];\n\n outer:\n while (length-- && resIndex < takeCount) {\n index += dir;\n\n var iterIndex = -1,\n value = array[index];\n\n while (++iterIndex < iterLength) {\n var data = iteratees[iterIndex],\n iteratee = data.iteratee,\n type = data.type,\n computed = iteratee(value);\n\n if (type == LAZY_MAP_FLAG) {\n value = computed;\n } else if (!computed) {\n if (type == LAZY_FILTER_FLAG) {\n continue outer;\n } else {\n break outer;\n }\n }\n }\n result[resIndex++] = value;\n }\n return result;\n }\n\n // Ensure `LazyWrapper` is an instance of `baseLodash`.\n LazyWrapper.prototype = baseCreate(baseLodash.prototype);\n LazyWrapper.prototype.constructor = LazyWrapper;\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a hash object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\n function Hash(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n }\n\n /**\n * Removes all key-value entries from the hash.\n *\n * @private\n * @name clear\n * @memberOf Hash\n */\n function hashClear() {\n this.__data__ = nativeCreate ? nativeCreate(null) : {};\n this.size = 0;\n }\n\n /**\n * Removes `key` and its value from the hash.\n *\n * @private\n * @name delete\n * @memberOf Hash\n * @param {Object} hash The hash to modify.\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\n function hashDelete(key) {\n var result = this.has(key) && delete this.__data__[key];\n this.size -= result ? 1 : 0;\n return result;\n }\n\n /**\n * Gets the hash value for `key`.\n *\n * @private\n * @name get\n * @memberOf Hash\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\n function hashGet(key) {\n var data = this.__data__;\n if (nativeCreate) {\n var result = data[key];\n return result === HASH_UNDEFINED ? undefined : result;\n }\n return hasOwnProperty.call(data, key) ? data[key] : undefined;\n }\n\n /**\n * Checks if a hash value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Hash\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\n function hashHas(key) {\n var data = this.__data__;\n return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);\n }\n\n /**\n * Sets the hash `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Hash\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the hash instance.\n */\n function hashSet(key, value) {\n var data = this.__data__;\n this.size += this.has(key) ? 0 : 1;\n data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;\n return this;\n }\n\n // Add methods to `Hash`.\n Hash.prototype.clear = hashClear;\n Hash.prototype['delete'] = hashDelete;\n Hash.prototype.get = hashGet;\n Hash.prototype.has = hashHas;\n Hash.prototype.set = hashSet;\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates an list cache object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\n function ListCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n }\n\n /**\n * Removes all key-value entries from the list cache.\n *\n * @private\n * @name clear\n * @memberOf ListCache\n */\n function listCacheClear() {\n this.__data__ = [];\n this.size = 0;\n }\n\n /**\n * Removes `key` and its value from the list cache.\n *\n * @private\n * @name delete\n * @memberOf ListCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\n function listCacheDelete(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n return false;\n }\n var lastIndex = data.length - 1;\n if (index == lastIndex) {\n data.pop();\n } else {\n splice.call(data, index, 1);\n }\n --this.size;\n return true;\n }\n\n /**\n * Gets the list cache value for `key`.\n *\n * @private\n * @name get\n * @memberOf ListCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\n function listCacheGet(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n return index < 0 ? undefined : data[index][1];\n }\n\n /**\n * Checks if a list cache value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf ListCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\n function listCacheHas(key) {\n return assocIndexOf(this.__data__, key) > -1;\n }\n\n /**\n * Sets the list cache `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf ListCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the list cache instance.\n */\n function listCacheSet(key, value) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n ++this.size;\n data.push([key, value]);\n } else {\n data[index][1] = value;\n }\n return this;\n }\n\n // Add methods to `ListCache`.\n ListCache.prototype.clear = listCacheClear;\n ListCache.prototype['delete'] = listCacheDelete;\n ListCache.prototype.get = listCacheGet;\n ListCache.prototype.has = listCacheHas;\n ListCache.prototype.set = listCacheSet;\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a map cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\n function MapCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n }\n\n /**\n * Removes all key-value entries from the map.\n *\n * @private\n * @name clear\n * @memberOf MapCache\n */\n function mapCacheClear() {\n this.size = 0;\n this.__data__ = {\n 'hash': new Hash,\n 'map': new (Map || ListCache),\n 'string': new Hash\n };\n }\n\n /**\n * Removes `key` and its value from the map.\n *\n * @private\n * @name delete\n * @memberOf MapCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\n function mapCacheDelete(key) {\n var result = getMapData(this, key)['delete'](key);\n this.size -= result ? 1 : 0;\n return result;\n }\n\n /**\n * Gets the map value for `key`.\n *\n * @private\n * @name get\n * @memberOf MapCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\n function mapCacheGet(key) {\n return getMapData(this, key).get(key);\n }\n\n /**\n * Checks if a map value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf MapCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\n function mapCacheHas(key) {\n return getMapData(this, key).has(key);\n }\n\n /**\n * Sets the map `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf MapCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the map cache instance.\n */\n function mapCacheSet(key, value) {\n var data = getMapData(this, key),\n size = data.size;\n\n data.set(key, value);\n this.size += data.size == size ? 0 : 1;\n return this;\n }\n\n // Add methods to `MapCache`.\n MapCache.prototype.clear = mapCacheClear;\n MapCache.prototype['delete'] = mapCacheDelete;\n MapCache.prototype.get = mapCacheGet;\n MapCache.prototype.has = mapCacheHas;\n MapCache.prototype.set = mapCacheSet;\n\n /*------------------------------------------------------------------------*/\n\n /**\n *\n * Creates an array cache object to store unique values.\n *\n * @private\n * @constructor\n * @param {Array} [values] The values to cache.\n */\n function SetCache(values) {\n var index = -1,\n length = values == null ? 0 : values.length;\n\n this.__data__ = new MapCache;\n while (++index < length) {\n this.add(values[index]);\n }\n }\n\n /**\n * Adds `value` to the array cache.\n *\n * @private\n * @name add\n * @memberOf SetCache\n * @alias push\n * @param {*} value The value to cache.\n * @returns {Object} Returns the cache instance.\n */\n function setCacheAdd(value) {\n this.__data__.set(value, HASH_UNDEFINED);\n return this;\n }\n\n /**\n * Checks if `value` is in the array cache.\n *\n * @private\n * @name has\n * @memberOf SetCache\n * @param {*} value The value to search for.\n * @returns {number} Returns `true` if `value` is found, else `false`.\n */\n function setCacheHas(value) {\n return this.__data__.has(value);\n }\n\n // Add methods to `SetCache`.\n SetCache.prototype.add = SetCache.prototype.push = setCacheAdd;\n SetCache.prototype.has = setCacheHas;\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a stack cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\n function Stack(entries) {\n var data = this.__data__ = new ListCache(entries);\n this.size = data.size;\n }\n\n /**\n * Removes all key-value entries from the stack.\n *\n * @private\n * @name clear\n * @memberOf Stack\n */\n function stackClear() {\n this.__data__ = new ListCache;\n this.size = 0;\n }\n\n /**\n * Removes `key` and its value from the stack.\n *\n * @private\n * @name delete\n * @memberOf Stack\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\n function stackDelete(key) {\n var data = this.__data__,\n result = data['delete'](key);\n\n this.size = data.size;\n return result;\n }\n\n /**\n * Gets the stack value for `key`.\n *\n * @private\n * @name get\n * @memberOf Stack\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\n function stackGet(key) {\n return this.__data__.get(key);\n }\n\n /**\n * Checks if a stack value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Stack\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\n function stackHas(key) {\n return this.__data__.has(key);\n }\n\n /**\n * Sets the stack `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Stack\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the stack cache instance.\n */\n function stackSet(key, value) {\n var data = this.__data__;\n if (data instanceof ListCache) {\n var pairs = data.__data__;\n if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {\n pairs.push([key, value]);\n this.size = ++data.size;\n return this;\n }\n data = this.__data__ = new MapCache(pairs);\n }\n data.set(key, value);\n this.size = data.size;\n return this;\n }\n\n // Add methods to `Stack`.\n Stack.prototype.clear = stackClear;\n Stack.prototype['delete'] = stackDelete;\n Stack.prototype.get = stackGet;\n Stack.prototype.has = stackHas;\n Stack.prototype.set = stackSet;\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates an array of the enumerable property names of the array-like `value`.\n *\n * @private\n * @param {*} value The value to query.\n * @param {boolean} inherited Specify returning inherited property names.\n * @returns {Array} Returns the array of property names.\n */\n function arrayLikeKeys(value, inherited) {\n var isArr = isArray(value),\n isArg = !isArr && isArguments(value),\n isBuff = !isArr && !isArg && isBuffer(value),\n isType = !isArr && !isArg && !isBuff && isTypedArray(value),\n skipIndexes = isArr || isArg || isBuff || isType,\n result = skipIndexes ? baseTimes(value.length, String) : [],\n length = result.length;\n\n for (var key in value) {\n if ((inherited || hasOwnProperty.call(value, key)) &&\n !(skipIndexes && (\n // Safari 9 has enumerable `arguments.length` in strict mode.\n key == 'length' ||\n // Node.js 0.10 has enumerable non-index properties on buffers.\n (isBuff && (key == 'offset' || key == 'parent')) ||\n // PhantomJS 2 has enumerable non-index properties on typed arrays.\n (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||\n // Skip index properties.\n isIndex(key, length)\n ))) {\n result.push(key);\n }\n }\n return result;\n }\n\n /**\n * A specialized version of `_.sample` for arrays.\n *\n * @private\n * @param {Array} array The array to sample.\n * @returns {*} Returns the random element.\n */\n function arraySample(array) {\n var length = array.length;\n return length ? array[baseRandom(0, length - 1)] : undefined;\n }\n\n /**\n * A specialized version of `_.sampleSize` for arrays.\n *\n * @private\n * @param {Array} array The array to sample.\n * @param {number} n The number of elements to sample.\n * @returns {Array} Returns the random elements.\n */\n function arraySampleSize(array, n) {\n return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length));\n }\n\n /**\n * A specialized version of `_.shuffle` for arrays.\n *\n * @private\n * @param {Array} array The array to shuffle.\n * @returns {Array} Returns the new shuffled array.\n */\n function arrayShuffle(array) {\n return shuffleSelf(copyArray(array));\n }\n\n /**\n * This function is like `assignValue` except that it doesn't assign\n * `undefined` values.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\n function assignMergeValue(object, key, value) {\n if ((value !== undefined && !eq(object[key], value)) ||\n (value === undefined && !(key in object))) {\n baseAssignValue(object, key, value);\n }\n }\n\n /**\n * Assigns `value` to `key` of `object` if the existing value is not equivalent\n * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\n function assignValue(object, key, value) {\n var objValue = object[key];\n if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||\n (value === undefined && !(key in object))) {\n baseAssignValue(object, key, value);\n }\n }\n\n /**\n * Gets the index at which the `key` is found in `array` of key-value pairs.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} key The key to search for.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\n function assocIndexOf(array, key) {\n var length = array.length;\n while (length--) {\n if (eq(array[length][0], key)) {\n return length;\n }\n }\n return -1;\n }\n\n /**\n * Aggregates elements of `collection` on `accumulator` with keys transformed\n * by `iteratee` and values set by `setter`.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} setter The function to set `accumulator` values.\n * @param {Function} iteratee The iteratee to transform keys.\n * @param {Object} accumulator The initial aggregated object.\n * @returns {Function} Returns `accumulator`.\n */\n function baseAggregator(collection, setter, iteratee, accumulator) {\n baseEach(collection, function(value, key, collection) {\n setter(accumulator, value, iteratee(value), collection);\n });\n return accumulator;\n }\n\n /**\n * The base implementation of `_.assign` without support for multiple sources\n * or `customizer` functions.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @returns {Object} Returns `object`.\n */\n function baseAssign(object, source) {\n return object && copyObject(source, keys(source), object);\n }\n\n /**\n * The base implementation of `_.assignIn` without support for multiple sources\n * or `customizer` functions.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @returns {Object} Returns `object`.\n */\n function baseAssignIn(object, source) {\n return object && copyObject(source, keysIn(source), object);\n }\n\n /**\n * The base implementation of `assignValue` and `assignMergeValue` without\n * value checks.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\n function baseAssignValue(object, key, value) {\n if (key == '__proto__' && defineProperty) {\n defineProperty(object, key, {\n 'configurable': true,\n 'enumerable': true,\n 'value': value,\n 'writable': true\n });\n } else {\n object[key] = value;\n }\n }\n\n /**\n * The base implementation of `_.at` without support for individual paths.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {string[]} paths The property paths to pick.\n * @returns {Array} Returns the picked elements.\n */\n function baseAt(object, paths) {\n var index = -1,\n length = paths.length,\n result = Array(length),\n skip = object == null;\n\n while (++index < length) {\n result[index] = skip ? undefined : get(object, paths[index]);\n }\n return result;\n }\n\n /**\n * The base implementation of `_.clamp` which doesn't coerce arguments.\n *\n * @private\n * @param {number} number The number to clamp.\n * @param {number} [lower] The lower bound.\n * @param {number} upper The upper bound.\n * @returns {number} Returns the clamped number.\n */\n function baseClamp(number, lower, upper) {\n if (number === number) {\n if (upper !== undefined) {\n number = number <= upper ? number : upper;\n }\n if (lower !== undefined) {\n number = number >= lower ? number : lower;\n }\n }\n return number;\n }\n\n /**\n * The base implementation of `_.clone` and `_.cloneDeep` which tracks\n * traversed objects.\n *\n * @private\n * @param {*} value The value to clone.\n * @param {boolean} bitmask The bitmask flags.\n * 1 - Deep clone\n * 2 - Flatten inherited properties\n * 4 - Clone symbols\n * @param {Function} [customizer] The function to customize cloning.\n * @param {string} [key] The key of `value`.\n * @param {Object} [object] The parent object of `value`.\n * @param {Object} [stack] Tracks traversed objects and their clone counterparts.\n * @returns {*} Returns the cloned value.\n */\n function baseClone(value, bitmask, customizer, key, object, stack) {\n var result,\n isDeep = bitmask & CLONE_DEEP_FLAG,\n isFlat = bitmask & CLONE_FLAT_FLAG,\n isFull = bitmask & CLONE_SYMBOLS_FLAG;\n\n if (customizer) {\n result = object ? customizer(value, key, object, stack) : customizer(value);\n }\n if (result !== undefined) {\n return result;\n }\n if (!isObject(value)) {\n return value;\n }\n var isArr = isArray(value);\n if (isArr) {\n result = initCloneArray(value);\n if (!isDeep) {\n return copyArray(value, result);\n }\n } else {\n var tag = getTag(value),\n isFunc = tag == funcTag || tag == genTag;\n\n if (isBuffer(value)) {\n return cloneBuffer(value, isDeep);\n }\n if (tag == objectTag || tag == argsTag || (isFunc && !object)) {\n result = (isFlat || isFunc) ? {} : initCloneObject(value);\n if (!isDeep) {\n return isFlat\n ? copySymbolsIn(value, baseAssignIn(result, value))\n : copySymbols(value, baseAssign(result, value));\n }\n } else {\n if (!cloneableTags[tag]) {\n return object ? value : {};\n }\n result = initCloneByTag(value, tag, isDeep);\n }\n }\n // Check for circular references and return its corresponding clone.\n stack || (stack = new Stack);\n var stacked = stack.get(value);\n if (stacked) {\n return stacked;\n }\n stack.set(value, result);\n\n if (isSet(value)) {\n value.forEach(function(subValue) {\n result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack));\n });\n } else if (isMap(value)) {\n value.forEach(function(subValue, key) {\n result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack));\n });\n }\n\n var keysFunc = isFull\n ? (isFlat ? getAllKeysIn : getAllKeys)\n : (isFlat ? keysIn : keys);\n\n var props = isArr ? undefined : keysFunc(value);\n arrayEach(props || value, function(subValue, key) {\n if (props) {\n key = subValue;\n subValue = value[key];\n }\n // Recursively populate clone (susceptible to call stack limits).\n assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack));\n });\n return result;\n }\n\n /**\n * The base implementation of `_.conforms` which doesn't clone `source`.\n *\n * @private\n * @param {Object} source The object of property predicates to conform to.\n * @returns {Function} Returns the new spec function.\n */\n function baseConforms(source) {\n var props = keys(source);\n return function(object) {\n return baseConformsTo(object, source, props);\n };\n }\n\n /**\n * The base implementation of `_.conformsTo` which accepts `props` to check.\n *\n * @private\n * @param {Object} object The object to inspect.\n * @param {Object} source The object of property predicates to conform to.\n * @returns {boolean} Returns `true` if `object` conforms, else `false`.\n */\n function baseConformsTo(object, source, props) {\n var length = props.length;\n if (object == null) {\n return !length;\n }\n object = Object(object);\n while (length--) {\n var key = props[length],\n predicate = source[key],\n value = object[key];\n\n if ((value === undefined && !(key in object)) || !predicate(value)) {\n return false;\n }\n }\n return true;\n }\n\n /**\n * The base implementation of `_.delay` and `_.defer` which accepts `args`\n * to provide to `func`.\n *\n * @private\n * @param {Function} func The function to delay.\n * @param {number} wait The number of milliseconds to delay invocation.\n * @param {Array} args The arguments to provide to `func`.\n * @returns {number|Object} Returns the timer id or timeout object.\n */\n function baseDelay(func, wait, args) {\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n return setTimeout(function() { func.apply(undefined, args); }, wait);\n }\n\n /**\n * The base implementation of methods like `_.difference` without support\n * for excluding multiple arrays or iteratee shorthands.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {Array} values The values to exclude.\n * @param {Function} [iteratee] The iteratee invoked per element.\n * @param {Function} [comparator] The comparator invoked per element.\n * @returns {Array} Returns the new array of filtered values.\n */\n function baseDifference(array, values, iteratee, comparator) {\n var index = -1,\n includes = arrayIncludes,\n isCommon = true,\n length = array.length,\n result = [],\n valuesLength = values.length;\n\n if (!length) {\n return result;\n }\n if (iteratee) {\n values = arrayMap(values, baseUnary(iteratee));\n }\n if (comparator) {\n includes = arrayIncludesWith;\n isCommon = false;\n }\n else if (values.length >= LARGE_ARRAY_SIZE) {\n includes = cacheHas;\n isCommon = false;\n values = new SetCache(values);\n }\n outer:\n while (++index < length) {\n var value = array[index],\n computed = iteratee == null ? value : iteratee(value);\n\n value = (comparator || value !== 0) ? value : 0;\n if (isCommon && computed === computed) {\n var valuesIndex = valuesLength;\n while (valuesIndex--) {\n if (values[valuesIndex] === computed) {\n continue outer;\n }\n }\n result.push(value);\n }\n else if (!includes(values, computed, comparator)) {\n result.push(value);\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `_.forEach` without support for iteratee shorthands.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array|Object} Returns `collection`.\n */\n var baseEach = createBaseEach(baseForOwn);\n\n /**\n * The base implementation of `_.forEachRight` without support for iteratee shorthands.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array|Object} Returns `collection`.\n */\n var baseEachRight = createBaseEach(baseForOwnRight, true);\n\n /**\n * The base implementation of `_.every` without support for iteratee shorthands.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {boolean} Returns `true` if all elements pass the predicate check,\n * else `false`\n */\n function baseEvery(collection, predicate) {\n var result = true;\n baseEach(collection, function(value, index, collection) {\n result = !!predicate(value, index, collection);\n return result;\n });\n return result;\n }\n\n /**\n * The base implementation of methods like `_.max` and `_.min` which accepts a\n * `comparator` to determine the extremum value.\n *\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} iteratee The iteratee invoked per iteration.\n * @param {Function} comparator The comparator used to compare values.\n * @returns {*} Returns the extremum value.\n */\n function baseExtremum(array, iteratee, comparator) {\n var index = -1,\n length = array.length;\n\n while (++index < length) {\n var value = array[index],\n current = iteratee(value);\n\n if (current != null && (computed === undefined\n ? (current === current && !isSymbol(current))\n : comparator(current, computed)\n )) {\n var computed = current,\n result = value;\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `_.fill` without an iteratee call guard.\n *\n * @private\n * @param {Array} array The array to fill.\n * @param {*} value The value to fill `array` with.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns `array`.\n */\n function baseFill(array, value, start, end) {\n var length = array.length;\n\n start = toInteger(start);\n if (start < 0) {\n start = -start > length ? 0 : (length + start);\n }\n end = (end === undefined || end > length) ? length : toInteger(end);\n if (end < 0) {\n end += length;\n }\n end = start > end ? 0 : toLength(end);\n while (start < end) {\n array[start++] = value;\n }\n return array;\n }\n\n /**\n * The base implementation of `_.filter` without support for iteratee shorthands.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n */\n function baseFilter(collection, predicate) {\n var result = [];\n baseEach(collection, function(value, index, collection) {\n if (predicate(value, index, collection)) {\n result.push(value);\n }\n });\n return result;\n }\n\n /**\n * The base implementation of `_.flatten` with support for restricting flattening.\n *\n * @private\n * @param {Array} array The array to flatten.\n * @param {number} depth The maximum recursion depth.\n * @param {boolean} [predicate=isFlattenable] The function invoked per iteration.\n * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks.\n * @param {Array} [result=[]] The initial result value.\n * @returns {Array} Returns the new flattened array.\n */\n function baseFlatten(array, depth, predicate, isStrict, result) {\n var index = -1,\n length = array.length;\n\n predicate || (predicate = isFlattenable);\n result || (result = []);\n\n while (++index < length) {\n var value = array[index];\n if (depth > 0 && predicate(value)) {\n if (depth > 1) {\n // Recursively flatten arrays (susceptible to call stack limits).\n baseFlatten(value, depth - 1, predicate, isStrict, result);\n } else {\n arrayPush(result, value);\n }\n } else if (!isStrict) {\n result[result.length] = value;\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `baseForOwn` which iterates over `object`\n * properties returned by `keysFunc` and invokes `iteratee` for each property.\n * Iteratee functions may exit iteration early by explicitly returning `false`.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @returns {Object} Returns `object`.\n */\n var baseFor = createBaseFor();\n\n /**\n * This function is like `baseFor` except that it iterates over properties\n * in the opposite order.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @returns {Object} Returns `object`.\n */\n var baseForRight = createBaseFor(true);\n\n /**\n * The base implementation of `_.forOwn` without support for iteratee shorthands.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Object} Returns `object`.\n */\n function baseForOwn(object, iteratee) {\n return object && baseFor(object, iteratee, keys);\n }\n\n /**\n * The base implementation of `_.forOwnRight` without support for iteratee shorthands.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Object} Returns `object`.\n */\n function baseForOwnRight(object, iteratee) {\n return object && baseForRight(object, iteratee, keys);\n }\n\n /**\n * The base implementation of `_.functions` which creates an array of\n * `object` function property names filtered from `props`.\n *\n * @private\n * @param {Object} object The object to inspect.\n * @param {Array} props The property names to filter.\n * @returns {Array} Returns the function names.\n */\n function baseFunctions(object, props) {\n return arrayFilter(props, function(key) {\n return isFunction(object[key]);\n });\n }\n\n /**\n * The base implementation of `_.get` without support for default values.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the property to get.\n * @returns {*} Returns the resolved value.\n */\n function baseGet(object, path) {\n path = castPath(path, object);\n\n var index = 0,\n length = path.length;\n\n while (object != null && index < length) {\n object = object[toKey(path[index++])];\n }\n return (index && index == length) ? object : undefined;\n }\n\n /**\n * The base implementation of `getAllKeys` and `getAllKeysIn` which uses\n * `keysFunc` and `symbolsFunc` to get the enumerable property names and\n * symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @param {Function} symbolsFunc The function to get the symbols of `object`.\n * @returns {Array} Returns the array of property names and symbols.\n */\n function baseGetAllKeys(object, keysFunc, symbolsFunc) {\n var result = keysFunc(object);\n return isArray(object) ? result : arrayPush(result, symbolsFunc(object));\n }\n\n /**\n * The base implementation of `getTag` without fallbacks for buggy environments.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\n function baseGetTag(value) {\n if (value == null) {\n return value === undefined ? undefinedTag : nullTag;\n }\n return (symToStringTag && symToStringTag in Object(value))\n ? getRawTag(value)\n : objectToString(value);\n }\n\n /**\n * The base implementation of `_.gt` which doesn't coerce arguments.\n *\n * @private\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if `value` is greater than `other`,\n * else `false`.\n */\n function baseGt(value, other) {\n return value > other;\n }\n\n /**\n * The base implementation of `_.has` without support for deep paths.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {Array|string} key The key to check.\n * @returns {boolean} Returns `true` if `key` exists, else `false`.\n */\n function baseHas(object, key) {\n return object != null && hasOwnProperty.call(object, key);\n }\n\n /**\n * The base implementation of `_.hasIn` without support for deep paths.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {Array|string} key The key to check.\n * @returns {boolean} Returns `true` if `key` exists, else `false`.\n */\n function baseHasIn(object, key) {\n return object != null && key in Object(object);\n }\n\n /**\n * The base implementation of `_.inRange` which doesn't coerce arguments.\n *\n * @private\n * @param {number} number The number to check.\n * @param {number} start The start of the range.\n * @param {number} end The end of the range.\n * @returns {boolean} Returns `true` if `number` is in the range, else `false`.\n */\n function baseInRange(number, start, end) {\n return number >= nativeMin(start, end) && number < nativeMax(start, end);\n }\n\n /**\n * The base implementation of methods like `_.intersection`, without support\n * for iteratee shorthands, that accepts an array of arrays to inspect.\n *\n * @private\n * @param {Array} arrays The arrays to inspect.\n * @param {Function} [iteratee] The iteratee invoked per element.\n * @param {Function} [comparator] The comparator invoked per element.\n * @returns {Array} Returns the new array of shared values.\n */\n function baseIntersection(arrays, iteratee, comparator) {\n var includes = comparator ? arrayIncludesWith : arrayIncludes,\n length = arrays[0].length,\n othLength = arrays.length,\n othIndex = othLength,\n caches = Array(othLength),\n maxLength = Infinity,\n result = [];\n\n while (othIndex--) {\n var array = arrays[othIndex];\n if (othIndex && iteratee) {\n array = arrayMap(array, baseUnary(iteratee));\n }\n maxLength = nativeMin(array.length, maxLength);\n caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120))\n ? new SetCache(othIndex && array)\n : undefined;\n }\n array = arrays[0];\n\n var index = -1,\n seen = caches[0];\n\n outer:\n while (++index < length && result.length < maxLength) {\n var value = array[index],\n computed = iteratee ? iteratee(value) : value;\n\n value = (comparator || value !== 0) ? value : 0;\n if (!(seen\n ? cacheHas(seen, computed)\n : includes(result, computed, comparator)\n )) {\n othIndex = othLength;\n while (--othIndex) {\n var cache = caches[othIndex];\n if (!(cache\n ? cacheHas(cache, computed)\n : includes(arrays[othIndex], computed, comparator))\n ) {\n continue outer;\n }\n }\n if (seen) {\n seen.push(computed);\n }\n result.push(value);\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `_.invert` and `_.invertBy` which inverts\n * `object` with values transformed by `iteratee` and set by `setter`.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} setter The function to set `accumulator` values.\n * @param {Function} iteratee The iteratee to transform values.\n * @param {Object} accumulator The initial inverted object.\n * @returns {Function} Returns `accumulator`.\n */\n function baseInverter(object, setter, iteratee, accumulator) {\n baseForOwn(object, function(value, key, object) {\n setter(accumulator, iteratee(value), key, object);\n });\n return accumulator;\n }\n\n /**\n * The base implementation of `_.invoke` without support for individual\n * method arguments.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the method to invoke.\n * @param {Array} args The arguments to invoke the method with.\n * @returns {*} Returns the result of the invoked method.\n */\n function baseInvoke(object, path, args) {\n path = castPath(path, object);\n object = parent(object, path);\n var func = object == null ? object : object[toKey(last(path))];\n return func == null ? undefined : apply(func, object, args);\n }\n\n /**\n * The base implementation of `_.isArguments`.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n */\n function baseIsArguments(value) {\n return isObjectLike(value) && baseGetTag(value) == argsTag;\n }\n\n /**\n * The base implementation of `_.isArrayBuffer` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`.\n */\n function baseIsArrayBuffer(value) {\n return isObjectLike(value) && baseGetTag(value) == arrayBufferTag;\n }\n\n /**\n * The base implementation of `_.isDate` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a date object, else `false`.\n */\n function baseIsDate(value) {\n return isObjectLike(value) && baseGetTag(value) == dateTag;\n }\n\n /**\n * The base implementation of `_.isEqual` which supports partial comparisons\n * and tracks traversed objects.\n *\n * @private\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @param {boolean} bitmask The bitmask flags.\n * 1 - Unordered comparison\n * 2 - Partial comparison\n * @param {Function} [customizer] The function to customize comparisons.\n * @param {Object} [stack] Tracks traversed `value` and `other` objects.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n */\n function baseIsEqual(value, other, bitmask, customizer, stack) {\n if (value === other) {\n return true;\n }\n if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) {\n return value !== value && other !== other;\n }\n return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);\n }\n\n /**\n * A specialized version of `baseIsEqual` for arrays and objects which performs\n * deep comparisons and tracks traversed objects enabling objects with circular\n * references to be compared.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n * @param {Function} customizer The function to customize comparisons.\n * @param {Function} equalFunc The function to determine equivalents of values.\n * @param {Object} [stack] Tracks traversed `object` and `other` objects.\n * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n */\n function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {\n var objIsArr = isArray(object),\n othIsArr = isArray(other),\n objTag = objIsArr ? arrayTag : getTag(object),\n othTag = othIsArr ? arrayTag : getTag(other);\n\n objTag = objTag == argsTag ? objectTag : objTag;\n othTag = othTag == argsTag ? objectTag : othTag;\n\n var objIsObj = objTag == objectTag,\n othIsObj = othTag == objectTag,\n isSameTag = objTag == othTag;\n\n if (isSameTag && isBuffer(object)) {\n if (!isBuffer(other)) {\n return false;\n }\n objIsArr = true;\n objIsObj = false;\n }\n if (isSameTag && !objIsObj) {\n stack || (stack = new Stack);\n return (objIsArr || isTypedArray(object))\n ? equalArrays(object, other, bitmask, customizer, equalFunc, stack)\n : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);\n }\n if (!(bitmask & COMPARE_PARTIAL_FLAG)) {\n var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),\n othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');\n\n if (objIsWrapped || othIsWrapped) {\n var objUnwrapped = objIsWrapped ? object.value() : object,\n othUnwrapped = othIsWrapped ? other.value() : other;\n\n stack || (stack = new Stack);\n return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);\n }\n }\n if (!isSameTag) {\n return false;\n }\n stack || (stack = new Stack);\n return equalObjects(object, other, bitmask, customizer, equalFunc, stack);\n }\n\n /**\n * The base implementation of `_.isMap` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a map, else `false`.\n */\n function baseIsMap(value) {\n return isObjectLike(value) && getTag(value) == mapTag;\n }\n\n /**\n * The base implementation of `_.isMatch` without support for iteratee shorthands.\n *\n * @private\n * @param {Object} object The object to inspect.\n * @param {Object} source The object of property values to match.\n * @param {Array} matchData The property names, values, and compare flags to match.\n * @param {Function} [customizer] The function to customize comparisons.\n * @returns {boolean} Returns `true` if `object` is a match, else `false`.\n */\n function baseIsMatch(object, source, matchData, customizer) {\n var index = matchData.length,\n length = index,\n noCustomizer = !customizer;\n\n if (object == null) {\n return !length;\n }\n object = Object(object);\n while (index--) {\n var data = matchData[index];\n if ((noCustomizer && data[2])\n ? data[1] !== object[data[0]]\n : !(data[0] in object)\n ) {\n return false;\n }\n }\n while (++index < length) {\n data = matchData[index];\n var key = data[0],\n objValue = object[key],\n srcValue = data[1];\n\n if (noCustomizer && data[2]) {\n if (objValue === undefined && !(key in object)) {\n return false;\n }\n } else {\n var stack = new Stack;\n if (customizer) {\n var result = customizer(objValue, srcValue, key, object, source, stack);\n }\n if (!(result === undefined\n ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack)\n : result\n )) {\n return false;\n }\n }\n }\n return true;\n }\n\n /**\n * The base implementation of `_.isNative` without bad shim checks.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a native function,\n * else `false`.\n */\n function baseIsNative(value) {\n if (!isObject(value) || isMasked(value)) {\n return false;\n }\n var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\n return pattern.test(toSource(value));\n }\n\n /**\n * The base implementation of `_.isRegExp` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.\n */\n function baseIsRegExp(value) {\n return isObjectLike(value) && baseGetTag(value) == regexpTag;\n }\n\n /**\n * The base implementation of `_.isSet` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a set, else `false`.\n */\n function baseIsSet(value) {\n return isObjectLike(value) && getTag(value) == setTag;\n }\n\n /**\n * The base implementation of `_.isTypedArray` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n */\n function baseIsTypedArray(value) {\n return isObjectLike(value) &&\n isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\n }\n\n /**\n * The base implementation of `_.iteratee`.\n *\n * @private\n * @param {*} [value=_.identity] The value to convert to an iteratee.\n * @returns {Function} Returns the iteratee.\n */\n function baseIteratee(value) {\n // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9.\n // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details.\n if (typeof value == 'function') {\n return value;\n }\n if (value == null) {\n return identity;\n }\n if (typeof value == 'object') {\n return isArray(value)\n ? baseMatchesProperty(value[0], value[1])\n : baseMatches(value);\n }\n return property(value);\n }\n\n /**\n * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\n function baseKeys(object) {\n if (!isPrototype(object)) {\n return nativeKeys(object);\n }\n var result = [];\n for (var key in Object(object)) {\n if (hasOwnProperty.call(object, key) && key != 'constructor') {\n result.push(key);\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\n function baseKeysIn(object) {\n if (!isObject(object)) {\n return nativeKeysIn(object);\n }\n var isProto = isPrototype(object),\n result = [];\n\n for (var key in object) {\n if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\n result.push(key);\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `_.lt` which doesn't coerce arguments.\n *\n * @private\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if `value` is less than `other`,\n * else `false`.\n */\n function baseLt(value, other) {\n return value < other;\n }\n\n /**\n * The base implementation of `_.map` without support for iteratee shorthands.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the new mapped array.\n */\n function baseMap(collection, iteratee) {\n var index = -1,\n result = isArrayLike(collection) ? Array(collection.length) : [];\n\n baseEach(collection, function(value, key, collection) {\n result[++index] = iteratee(value, key, collection);\n });\n return result;\n }\n\n /**\n * The base implementation of `_.matches` which doesn't clone `source`.\n *\n * @private\n * @param {Object} source The object of property values to match.\n * @returns {Function} Returns the new spec function.\n */\n function baseMatches(source) {\n var matchData = getMatchData(source);\n if (matchData.length == 1 && matchData[0][2]) {\n return matchesStrictComparable(matchData[0][0], matchData[0][1]);\n }\n return function(object) {\n return object === source || baseIsMatch(object, source, matchData);\n };\n }\n\n /**\n * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`.\n *\n * @private\n * @param {string} path The path of the property to get.\n * @param {*} srcValue The value to match.\n * @returns {Function} Returns the new spec function.\n */\n function baseMatchesProperty(path, srcValue) {\n if (isKey(path) && isStrictComparable(srcValue)) {\n return matchesStrictComparable(toKey(path), srcValue);\n }\n return function(object) {\n var objValue = get(object, path);\n return (objValue === undefined && objValue === srcValue)\n ? hasIn(object, path)\n : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);\n };\n }\n\n /**\n * The base implementation of `_.merge` without support for multiple sources.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @param {number} srcIndex The index of `source`.\n * @param {Function} [customizer] The function to customize merged values.\n * @param {Object} [stack] Tracks traversed source values and their merged\n * counterparts.\n */\n function baseMerge(object, source, srcIndex, customizer, stack) {\n if (object === source) {\n return;\n }\n baseFor(source, function(srcValue, key) {\n stack || (stack = new Stack);\n if (isObject(srcValue)) {\n baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);\n }\n else {\n var newValue = customizer\n ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack)\n : undefined;\n\n if (newValue === undefined) {\n newValue = srcValue;\n }\n assignMergeValue(object, key, newValue);\n }\n }, keysIn);\n }\n\n /**\n * A specialized version of `baseMerge` for arrays and objects which performs\n * deep merges and tracks traversed objects enabling objects with circular\n * references to be merged.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @param {string} key The key of the value to merge.\n * @param {number} srcIndex The index of `source`.\n * @param {Function} mergeFunc The function to merge values.\n * @param {Function} [customizer] The function to customize assigned values.\n * @param {Object} [stack] Tracks traversed source values and their merged\n * counterparts.\n */\n function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {\n var objValue = safeGet(object, key),\n srcValue = safeGet(source, key),\n stacked = stack.get(srcValue);\n\n if (stacked) {\n assignMergeValue(object, key, stacked);\n return;\n }\n var newValue = customizer\n ? customizer(objValue, srcValue, (key + ''), object, source, stack)\n : undefined;\n\n var isCommon = newValue === undefined;\n\n if (isCommon) {\n var isArr = isArray(srcValue),\n isBuff = !isArr && isBuffer(srcValue),\n isTyped = !isArr && !isBuff && isTypedArray(srcValue);\n\n newValue = srcValue;\n if (isArr || isBuff || isTyped) {\n if (isArray(objValue)) {\n newValue = objValue;\n }\n else if (isArrayLikeObject(objValue)) {\n newValue = copyArray(objValue);\n }\n else if (isBuff) {\n isCommon = false;\n newValue = cloneBuffer(srcValue, true);\n }\n else if (isTyped) {\n isCommon = false;\n newValue = cloneTypedArray(srcValue, true);\n }\n else {\n newValue = [];\n }\n }\n else if (isPlainObject(srcValue) || isArguments(srcValue)) {\n newValue = objValue;\n if (isArguments(objValue)) {\n newValue = toPlainObject(objValue);\n }\n else if (!isObject(objValue) || isFunction(objValue)) {\n newValue = initCloneObject(srcValue);\n }\n }\n else {\n isCommon = false;\n }\n }\n if (isCommon) {\n // Recursively merge objects and arrays (susceptible to call stack limits).\n stack.set(srcValue, newValue);\n mergeFunc(newValue, srcValue, srcIndex, customizer, stack);\n stack['delete'](srcValue);\n }\n assignMergeValue(object, key, newValue);\n }\n\n /**\n * The base implementation of `_.nth` which doesn't coerce arguments.\n *\n * @private\n * @param {Array} array The array to query.\n * @param {number} n The index of the element to return.\n * @returns {*} Returns the nth element of `array`.\n */\n function baseNth(array, n) {\n var length = array.length;\n if (!length) {\n return;\n }\n n += n < 0 ? length : 0;\n return isIndex(n, length) ? array[n] : undefined;\n }\n\n /**\n * The base implementation of `_.orderBy` without param guards.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by.\n * @param {string[]} orders The sort orders of `iteratees`.\n * @returns {Array} Returns the new sorted array.\n */\n function baseOrderBy(collection, iteratees, orders) {\n var index = -1;\n iteratees = arrayMap(iteratees.length ? iteratees : [identity], baseUnary(getIteratee()));\n\n var result = baseMap(collection, function(value, key, collection) {\n var criteria = arrayMap(iteratees, function(iteratee) {\n return iteratee(value);\n });\n return { 'criteria': criteria, 'index': ++index, 'value': value };\n });\n\n return baseSortBy(result, function(object, other) {\n return compareMultiple(object, other, orders);\n });\n }\n\n /**\n * The base implementation of `_.pick` without support for individual\n * property identifiers.\n *\n * @private\n * @param {Object} object The source object.\n * @param {string[]} paths The property paths to pick.\n * @returns {Object} Returns the new object.\n */\n function basePick(object, paths) {\n return basePickBy(object, paths, function(value, path) {\n return hasIn(object, path);\n });\n }\n\n /**\n * The base implementation of `_.pickBy` without support for iteratee shorthands.\n *\n * @private\n * @param {Object} object The source object.\n * @param {string[]} paths The property paths to pick.\n * @param {Function} predicate The function invoked per property.\n * @returns {Object} Returns the new object.\n */\n function basePickBy(object, paths, predicate) {\n var index = -1,\n length = paths.length,\n result = {};\n\n while (++index < length) {\n var path = paths[index],\n value = baseGet(object, path);\n\n if (predicate(value, path)) {\n baseSet(result, castPath(path, object), value);\n }\n }\n return result;\n }\n\n /**\n * A specialized version of `baseProperty` which supports deep paths.\n *\n * @private\n * @param {Array|string} path The path of the property to get.\n * @returns {Function} Returns the new accessor function.\n */\n function basePropertyDeep(path) {\n return function(object) {\n return baseGet(object, path);\n };\n }\n\n /**\n * The base implementation of `_.pullAllBy` without support for iteratee\n * shorthands.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {Array} values The values to remove.\n * @param {Function} [iteratee] The iteratee invoked per element.\n * @param {Function} [comparator] The comparator invoked per element.\n * @returns {Array} Returns `array`.\n */\n function basePullAll(array, values, iteratee, comparator) {\n var indexOf = comparator ? baseIndexOfWith : baseIndexOf,\n index = -1,\n length = values.length,\n seen = array;\n\n if (array === values) {\n values = copyArray(values);\n }\n if (iteratee) {\n seen = arrayMap(array, baseUnary(iteratee));\n }\n while (++index < length) {\n var fromIndex = 0,\n value = values[index],\n computed = iteratee ? iteratee(value) : value;\n\n while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) {\n if (seen !== array) {\n splice.call(seen, fromIndex, 1);\n }\n splice.call(array, fromIndex, 1);\n }\n }\n return array;\n }\n\n /**\n * The base implementation of `_.pullAt` without support for individual\n * indexes or capturing the removed elements.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {number[]} indexes The indexes of elements to remove.\n * @returns {Array} Returns `array`.\n */\n function basePullAt(array, indexes) {\n var length = array ? indexes.length : 0,\n lastIndex = length - 1;\n\n while (length--) {\n var index = indexes[length];\n if (length == lastIndex || index !== previous) {\n var previous = index;\n if (isIndex(index)) {\n splice.call(array, index, 1);\n } else {\n baseUnset(array, index);\n }\n }\n }\n return array;\n }\n\n /**\n * The base implementation of `_.random` without support for returning\n * floating-point numbers.\n *\n * @private\n * @param {number} lower The lower bound.\n * @param {number} upper The upper bound.\n * @returns {number} Returns the random number.\n */\n function baseRandom(lower, upper) {\n return lower + nativeFloor(nativeRandom() * (upper - lower + 1));\n }\n\n /**\n * The base implementation of `_.range` and `_.rangeRight` which doesn't\n * coerce arguments.\n *\n * @private\n * @param {number} start The start of the range.\n * @param {number} end The end of the range.\n * @param {number} step The value to increment or decrement by.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Array} Returns the range of numbers.\n */\n function baseRange(start, end, step, fromRight) {\n var index = -1,\n length = nativeMax(nativeCeil((end - start) / (step || 1)), 0),\n result = Array(length);\n\n while (length--) {\n result[fromRight ? length : ++index] = start;\n start += step;\n }\n return result;\n }\n\n /**\n * The base implementation of `_.repeat` which doesn't coerce arguments.\n *\n * @private\n * @param {string} string The string to repeat.\n * @param {number} n The number of times to repeat the string.\n * @returns {string} Returns the repeated string.\n */\n function baseRepeat(string, n) {\n var result = '';\n if (!string || n < 1 || n > MAX_SAFE_INTEGER) {\n return result;\n }\n // Leverage the exponentiation by squaring algorithm for a faster repeat.\n // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details.\n do {\n if (n % 2) {\n result += string;\n }\n n = nativeFloor(n / 2);\n if (n) {\n string += string;\n }\n } while (n);\n\n return result;\n }\n\n /**\n * The base implementation of `_.rest` which doesn't validate or coerce arguments.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @returns {Function} Returns the new function.\n */\n function baseRest(func, start) {\n return setToString(overRest(func, start, identity), func + '');\n }\n\n /**\n * The base implementation of `_.sample`.\n *\n * @private\n * @param {Array|Object} collection The collection to sample.\n * @returns {*} Returns the random element.\n */\n function baseSample(collection) {\n return arraySample(values(collection));\n }\n\n /**\n * The base implementation of `_.sampleSize` without param guards.\n *\n * @private\n * @param {Array|Object} collection The collection to sample.\n * @param {number} n The number of elements to sample.\n * @returns {Array} Returns the random elements.\n */\n function baseSampleSize(collection, n) {\n var array = values(collection);\n return shuffleSelf(array, baseClamp(n, 0, array.length));\n }\n\n /**\n * The base implementation of `_.set`.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {Array|string} path The path of the property to set.\n * @param {*} value The value to set.\n * @param {Function} [customizer] The function to customize path creation.\n * @returns {Object} Returns `object`.\n */\n function baseSet(object, path, value, customizer) {\n if (!isObject(object)) {\n return object;\n }\n path = castPath(path, object);\n\n var index = -1,\n length = path.length,\n lastIndex = length - 1,\n nested = object;\n\n while (nested != null && ++index < length) {\n var key = toKey(path[index]),\n newValue = value;\n\n if (index != lastIndex) {\n var objValue = nested[key];\n newValue = customizer ? customizer(objValue, key, nested) : undefined;\n if (newValue === undefined) {\n newValue = isObject(objValue)\n ? objValue\n : (isIndex(path[index + 1]) ? [] : {});\n }\n }\n assignValue(nested, key, newValue);\n nested = nested[key];\n }\n return object;\n }\n\n /**\n * The base implementation of `setData` without support for hot loop shorting.\n *\n * @private\n * @param {Function} func The function to associate metadata with.\n * @param {*} data The metadata.\n * @returns {Function} Returns `func`.\n */\n var baseSetData = !metaMap ? identity : function(func, data) {\n metaMap.set(func, data);\n return func;\n };\n\n /**\n * The base implementation of `setToString` without support for hot loop shorting.\n *\n * @private\n * @param {Function} func The function to modify.\n * @param {Function} string The `toString` result.\n * @returns {Function} Returns `func`.\n */\n var baseSetToString = !defineProperty ? identity : function(func, string) {\n return defineProperty(func, 'toString', {\n 'configurable': true,\n 'enumerable': false,\n 'value': constant(string),\n 'writable': true\n });\n };\n\n /**\n * The base implementation of `_.shuffle`.\n *\n * @private\n * @param {Array|Object} collection The collection to shuffle.\n * @returns {Array} Returns the new shuffled array.\n */\n function baseShuffle(collection) {\n return shuffleSelf(values(collection));\n }\n\n /**\n * The base implementation of `_.slice` without an iteratee call guard.\n *\n * @private\n * @param {Array} array The array to slice.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the slice of `array`.\n */\n function baseSlice(array, start, end) {\n var index = -1,\n length = array.length;\n\n if (start < 0) {\n start = -start > length ? 0 : (length + start);\n }\n end = end > length ? length : end;\n if (end < 0) {\n end += length;\n }\n length = start > end ? 0 : ((end - start) >>> 0);\n start >>>= 0;\n\n var result = Array(length);\n while (++index < length) {\n result[index] = array[index + start];\n }\n return result;\n }\n\n /**\n * The base implementation of `_.some` without support for iteratee shorthands.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {boolean} Returns `true` if any element passes the predicate check,\n * else `false`.\n */\n function baseSome(collection, predicate) {\n var result;\n\n baseEach(collection, function(value, index, collection) {\n result = predicate(value, index, collection);\n return !result;\n });\n return !!result;\n }\n\n /**\n * The base implementation of `_.sortedIndex` and `_.sortedLastIndex` which\n * performs a binary search of `array` to determine the index at which `value`\n * should be inserted into `array` in order to maintain its sort order.\n *\n * @private\n * @param {Array} array The sorted array to inspect.\n * @param {*} value The value to evaluate.\n * @param {boolean} [retHighest] Specify returning the highest qualified index.\n * @returns {number} Returns the index at which `value` should be inserted\n * into `array`.\n */\n function baseSortedIndex(array, value, retHighest) {\n var low = 0,\n high = array == null ? low : array.length;\n\n if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) {\n while (low < high) {\n var mid = (low + high) >>> 1,\n computed = array[mid];\n\n if (computed !== null && !isSymbol(computed) &&\n (retHighest ? (computed <= value) : (computed < value))) {\n low = mid + 1;\n } else {\n high = mid;\n }\n }\n return high;\n }\n return baseSortedIndexBy(array, value, identity, retHighest);\n }\n\n /**\n * The base implementation of `_.sortedIndexBy` and `_.sortedLastIndexBy`\n * which invokes `iteratee` for `value` and each element of `array` to compute\n * their sort ranking. The iteratee is invoked with one argument; (value).\n *\n * @private\n * @param {Array} array The sorted array to inspect.\n * @param {*} value The value to evaluate.\n * @param {Function} iteratee The iteratee invoked per element.\n * @param {boolean} [retHighest] Specify returning the highest qualified index.\n * @returns {number} Returns the index at which `value` should be inserted\n * into `array`.\n */\n function baseSortedIndexBy(array, value, iteratee, retHighest) {\n value = iteratee(value);\n\n var low = 0,\n high = array == null ? 0 : array.length,\n valIsNaN = value !== value,\n valIsNull = value === null,\n valIsSymbol = isSymbol(value),\n valIsUndefined = value === undefined;\n\n while (low < high) {\n var mid = nativeFloor((low + high) / 2),\n computed = iteratee(array[mid]),\n othIsDefined = computed !== undefined,\n othIsNull = computed === null,\n othIsReflexive = computed === computed,\n othIsSymbol = isSymbol(computed);\n\n if (valIsNaN) {\n var setLow = retHighest || othIsReflexive;\n } else if (valIsUndefined) {\n setLow = othIsReflexive && (retHighest || othIsDefined);\n } else if (valIsNull) {\n setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull);\n } else if (valIsSymbol) {\n setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol);\n } else if (othIsNull || othIsSymbol) {\n setLow = false;\n } else {\n setLow = retHighest ? (computed <= value) : (computed < value);\n }\n if (setLow) {\n low = mid + 1;\n } else {\n high = mid;\n }\n }\n return nativeMin(high, MAX_ARRAY_INDEX);\n }\n\n /**\n * The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without\n * support for iteratee shorthands.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {Function} [iteratee] The iteratee invoked per element.\n * @returns {Array} Returns the new duplicate free array.\n */\n function baseSortedUniq(array, iteratee) {\n var index = -1,\n length = array.length,\n resIndex = 0,\n result = [];\n\n while (++index < length) {\n var value = array[index],\n computed = iteratee ? iteratee(value) : value;\n\n if (!index || !eq(computed, seen)) {\n var seen = computed;\n result[resIndex++] = value === 0 ? 0 : value;\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `_.toNumber` which doesn't ensure correct\n * conversions of binary, hexadecimal, or octal string values.\n *\n * @private\n * @param {*} value The value to process.\n * @returns {number} Returns the number.\n */\n function baseToNumber(value) {\n if (typeof value == 'number') {\n return value;\n }\n if (isSymbol(value)) {\n return NAN;\n }\n return +value;\n }\n\n /**\n * The base implementation of `_.toString` which doesn't convert nullish\n * values to empty strings.\n *\n * @private\n * @param {*} value The value to process.\n * @returns {string} Returns the string.\n */\n function baseToString(value) {\n // Exit early for strings to avoid a performance hit in some environments.\n if (typeof value == 'string') {\n return value;\n }\n if (isArray(value)) {\n // Recursively convert values (susceptible to call stack limits).\n return arrayMap(value, baseToString) + '';\n }\n if (isSymbol(value)) {\n return symbolToString ? symbolToString.call(value) : '';\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n }\n\n /**\n * The base implementation of `_.uniqBy` without support for iteratee shorthands.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {Function} [iteratee] The iteratee invoked per element.\n * @param {Function} [comparator] The comparator invoked per element.\n * @returns {Array} Returns the new duplicate free array.\n */\n function baseUniq(array, iteratee, comparator) {\n var index = -1,\n includes = arrayIncludes,\n length = array.length,\n isCommon = true,\n result = [],\n seen = result;\n\n if (comparator) {\n isCommon = false;\n includes = arrayIncludesWith;\n }\n else if (length >= LARGE_ARRAY_SIZE) {\n var set = iteratee ? null : createSet(array);\n if (set) {\n return setToArray(set);\n }\n isCommon = false;\n includes = cacheHas;\n seen = new SetCache;\n }\n else {\n seen = iteratee ? [] : result;\n }\n outer:\n while (++index < length) {\n var value = array[index],\n computed = iteratee ? iteratee(value) : value;\n\n value = (comparator || value !== 0) ? value : 0;\n if (isCommon && computed === computed) {\n var seenIndex = seen.length;\n while (seenIndex--) {\n if (seen[seenIndex] === computed) {\n continue outer;\n }\n }\n if (iteratee) {\n seen.push(computed);\n }\n result.push(value);\n }\n else if (!includes(seen, computed, comparator)) {\n if (seen !== result) {\n seen.push(computed);\n }\n result.push(value);\n }\n }\n return result;\n }\n\n /**\n * The base implementation of `_.unset`.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {Array|string} path The property path to unset.\n * @returns {boolean} Returns `true` if the property is deleted, else `false`.\n */\n function baseUnset(object, path) {\n path = castPath(path, object);\n object = parent(object, path);\n return object == null || delete object[toKey(last(path))];\n }\n\n /**\n * The base implementation of `_.update`.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {Array|string} path The path of the property to update.\n * @param {Function} updater The function to produce the updated value.\n * @param {Function} [customizer] The function to customize path creation.\n * @returns {Object} Returns `object`.\n */\n function baseUpdate(object, path, updater, customizer) {\n return baseSet(object, path, updater(baseGet(object, path)), customizer);\n }\n\n /**\n * The base implementation of methods like `_.dropWhile` and `_.takeWhile`\n * without support for iteratee shorthands.\n *\n * @private\n * @param {Array} array The array to query.\n * @param {Function} predicate The function invoked per iteration.\n * @param {boolean} [isDrop] Specify dropping elements instead of taking them.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Array} Returns the slice of `array`.\n */\n function baseWhile(array, predicate, isDrop, fromRight) {\n var length = array.length,\n index = fromRight ? length : -1;\n\n while ((fromRight ? index-- : ++index < length) &&\n predicate(array[index], index, array)) {}\n\n return isDrop\n ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length))\n : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index));\n }\n\n /**\n * The base implementation of `wrapperValue` which returns the result of\n * performing a sequence of actions on the unwrapped `value`, where each\n * successive action is supplied the return value of the previous.\n *\n * @private\n * @param {*} value The unwrapped value.\n * @param {Array} actions Actions to perform to resolve the unwrapped value.\n * @returns {*} Returns the resolved value.\n */\n function baseWrapperValue(value, actions) {\n var result = value;\n if (result instanceof LazyWrapper) {\n result = result.value();\n }\n return arrayReduce(actions, function(result, action) {\n return action.func.apply(action.thisArg, arrayPush([result], action.args));\n }, result);\n }\n\n /**\n * The base implementation of methods like `_.xor`, without support for\n * iteratee shorthands, that accepts an array of arrays to inspect.\n *\n * @private\n * @param {Array} arrays The arrays to inspect.\n * @param {Function} [iteratee] The iteratee invoked per element.\n * @param {Function} [comparator] The comparator invoked per element.\n * @returns {Array} Returns the new array of values.\n */\n function baseXor(arrays, iteratee, comparator) {\n var length = arrays.length;\n if (length < 2) {\n return length ? baseUniq(arrays[0]) : [];\n }\n var index = -1,\n result = Array(length);\n\n while (++index < length) {\n var array = arrays[index],\n othIndex = -1;\n\n while (++othIndex < length) {\n if (othIndex != index) {\n result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator);\n }\n }\n }\n return baseUniq(baseFlatten(result, 1), iteratee, comparator);\n }\n\n /**\n * This base implementation of `_.zipObject` which assigns values using `assignFunc`.\n *\n * @private\n * @param {Array} props The property identifiers.\n * @param {Array} values The property values.\n * @param {Function} assignFunc The function to assign values.\n * @returns {Object} Returns the new object.\n */\n function baseZipObject(props, values, assignFunc) {\n var index = -1,\n length = props.length,\n valsLength = values.length,\n result = {};\n\n while (++index < length) {\n var value = index < valsLength ? values[index] : undefined;\n assignFunc(result, props[index], value);\n }\n return result;\n }\n\n /**\n * Casts `value` to an empty array if it's not an array like object.\n *\n * @private\n * @param {*} value The value to inspect.\n * @returns {Array|Object} Returns the cast array-like object.\n */\n function castArrayLikeObject(value) {\n return isArrayLikeObject(value) ? value : [];\n }\n\n /**\n * Casts `value` to `identity` if it's not a function.\n *\n * @private\n * @param {*} value The value to inspect.\n * @returns {Function} Returns cast function.\n */\n function castFunction(value) {\n return typeof value == 'function' ? value : identity;\n }\n\n /**\n * Casts `value` to a path array if it's not one.\n *\n * @private\n * @param {*} value The value to inspect.\n * @param {Object} [object] The object to query keys on.\n * @returns {Array} Returns the cast property path array.\n */\n function castPath(value, object) {\n if (isArray(value)) {\n return value;\n }\n return isKey(value, object) ? [value] : stringToPath(toString(value));\n }\n\n /**\n * A `baseRest` alias which can be replaced with `identity` by module\n * replacement plugins.\n *\n * @private\n * @type {Function}\n * @param {Function} func The function to apply a rest parameter to.\n * @returns {Function} Returns the new function.\n */\n var castRest = baseRest;\n\n /**\n * Casts `array` to a slice if it's needed.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {number} start The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the cast slice.\n */\n function castSlice(array, start, end) {\n var length = array.length;\n end = end === undefined ? length : end;\n return (!start && end >= length) ? array : baseSlice(array, start, end);\n }\n\n /**\n * A simple wrapper around the global [`clearTimeout`](https://mdn.io/clearTimeout).\n *\n * @private\n * @param {number|Object} id The timer id or timeout object of the timer to clear.\n */\n var clearTimeout = ctxClearTimeout || function(id) {\n return root.clearTimeout(id);\n };\n\n /**\n * Creates a clone of `buffer`.\n *\n * @private\n * @param {Buffer} buffer The buffer to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Buffer} Returns the cloned buffer.\n */\n function cloneBuffer(buffer, isDeep) {\n if (isDeep) {\n return buffer.slice();\n }\n var length = buffer.length,\n result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);\n\n buffer.copy(result);\n return result;\n }\n\n /**\n * Creates a clone of `arrayBuffer`.\n *\n * @private\n * @param {ArrayBuffer} arrayBuffer The array buffer to clone.\n * @returns {ArrayBuffer} Returns the cloned array buffer.\n */\n function cloneArrayBuffer(arrayBuffer) {\n var result = new arrayBuffer.constructor(arrayBuffer.byteLength);\n new Uint8Array(result).set(new Uint8Array(arrayBuffer));\n return result;\n }\n\n /**\n * Creates a clone of `dataView`.\n *\n * @private\n * @param {Object} dataView The data view to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Object} Returns the cloned data view.\n */\n function cloneDataView(dataView, isDeep) {\n var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;\n return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);\n }\n\n /**\n * Creates a clone of `regexp`.\n *\n * @private\n * @param {Object} regexp The regexp to clone.\n * @returns {Object} Returns the cloned regexp.\n */\n function cloneRegExp(regexp) {\n var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));\n result.lastIndex = regexp.lastIndex;\n return result;\n }\n\n /**\n * Creates a clone of the `symbol` object.\n *\n * @private\n * @param {Object} symbol The symbol object to clone.\n * @returns {Object} Returns the cloned symbol object.\n */\n function cloneSymbol(symbol) {\n return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};\n }\n\n /**\n * Creates a clone of `typedArray`.\n *\n * @private\n * @param {Object} typedArray The typed array to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Object} Returns the cloned typed array.\n */\n function cloneTypedArray(typedArray, isDeep) {\n var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;\n return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);\n }\n\n /**\n * Compares values to sort them in ascending order.\n *\n * @private\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {number} Returns the sort order indicator for `value`.\n */\n function compareAscending(value, other) {\n if (value !== other) {\n var valIsDefined = value !== undefined,\n valIsNull = value === null,\n valIsReflexive = value === value,\n valIsSymbol = isSymbol(value);\n\n var othIsDefined = other !== undefined,\n othIsNull = other === null,\n othIsReflexive = other === other,\n othIsSymbol = isSymbol(other);\n\n if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) ||\n (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) ||\n (valIsNull && othIsDefined && othIsReflexive) ||\n (!valIsDefined && othIsReflexive) ||\n !valIsReflexive) {\n return 1;\n }\n if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) ||\n (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) ||\n (othIsNull && valIsDefined && valIsReflexive) ||\n (!othIsDefined && valIsReflexive) ||\n !othIsReflexive) {\n return -1;\n }\n }\n return 0;\n }\n\n /**\n * Used by `_.orderBy` to compare multiple properties of a value to another\n * and stable sort them.\n *\n * If `orders` is unspecified, all values are sorted in ascending order. Otherwise,\n * specify an order of \"desc\" for descending or \"asc\" for ascending sort order\n * of corresponding values.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {boolean[]|string[]} orders The order to sort by for each property.\n * @returns {number} Returns the sort order indicator for `object`.\n */\n function compareMultiple(object, other, orders) {\n var index = -1,\n objCriteria = object.criteria,\n othCriteria = other.criteria,\n length = objCriteria.length,\n ordersLength = orders.length;\n\n while (++index < length) {\n var result = compareAscending(objCriteria[index], othCriteria[index]);\n if (result) {\n if (index >= ordersLength) {\n return result;\n }\n var order = orders[index];\n return result * (order == 'desc' ? -1 : 1);\n }\n }\n // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications\n // that causes it, under certain circumstances, to provide the same value for\n // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247\n // for more details.\n //\n // This also ensures a stable sort in V8 and other engines.\n // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details.\n return object.index - other.index;\n }\n\n /**\n * Creates an array that is the composition of partially applied arguments,\n * placeholders, and provided arguments into a single array of arguments.\n *\n * @private\n * @param {Array} args The provided arguments.\n * @param {Array} partials The arguments to prepend to those provided.\n * @param {Array} holders The `partials` placeholder indexes.\n * @params {boolean} [isCurried] Specify composing for a curried function.\n * @returns {Array} Returns the new array of composed arguments.\n */\n function composeArgs(args, partials, holders, isCurried) {\n var argsIndex = -1,\n argsLength = args.length,\n holdersLength = holders.length,\n leftIndex = -1,\n leftLength = partials.length,\n rangeLength = nativeMax(argsLength - holdersLength, 0),\n result = Array(leftLength + rangeLength),\n isUncurried = !isCurried;\n\n while (++leftIndex < leftLength) {\n result[leftIndex] = partials[leftIndex];\n }\n while (++argsIndex < holdersLength) {\n if (isUncurried || argsIndex < argsLength) {\n result[holders[argsIndex]] = args[argsIndex];\n }\n }\n while (rangeLength--) {\n result[leftIndex++] = args[argsIndex++];\n }\n return result;\n }\n\n /**\n * This function is like `composeArgs` except that the arguments composition\n * is tailored for `_.partialRight`.\n *\n * @private\n * @param {Array} args The provided arguments.\n * @param {Array} partials The arguments to append to those provided.\n * @param {Array} holders The `partials` placeholder indexes.\n * @params {boolean} [isCurried] Specify composing for a curried function.\n * @returns {Array} Returns the new array of composed arguments.\n */\n function composeArgsRight(args, partials, holders, isCurried) {\n var argsIndex = -1,\n argsLength = args.length,\n holdersIndex = -1,\n holdersLength = holders.length,\n rightIndex = -1,\n rightLength = partials.length,\n rangeLength = nativeMax(argsLength - holdersLength, 0),\n result = Array(rangeLength + rightLength),\n isUncurried = !isCurried;\n\n while (++argsIndex < rangeLength) {\n result[argsIndex] = args[argsIndex];\n }\n var offset = argsIndex;\n while (++rightIndex < rightLength) {\n result[offset + rightIndex] = partials[rightIndex];\n }\n while (++holdersIndex < holdersLength) {\n if (isUncurried || argsIndex < argsLength) {\n result[offset + holders[holdersIndex]] = args[argsIndex++];\n }\n }\n return result;\n }\n\n /**\n * Copies the values of `source` to `array`.\n *\n * @private\n * @param {Array} source The array to copy values from.\n * @param {Array} [array=[]] The array to copy values to.\n * @returns {Array} Returns `array`.\n */\n function copyArray(source, array) {\n var index = -1,\n length = source.length;\n\n array || (array = Array(length));\n while (++index < length) {\n array[index] = source[index];\n }\n return array;\n }\n\n /**\n * Copies properties of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy properties from.\n * @param {Array} props The property identifiers to copy.\n * @param {Object} [object={}] The object to copy properties to.\n * @param {Function} [customizer] The function to customize copied values.\n * @returns {Object} Returns `object`.\n */\n function copyObject(source, props, object, customizer) {\n var isNew = !object;\n object || (object = {});\n\n var index = -1,\n length = props.length;\n\n while (++index < length) {\n var key = props[index];\n\n var newValue = customizer\n ? customizer(object[key], source[key], key, object, source)\n : undefined;\n\n if (newValue === undefined) {\n newValue = source[key];\n }\n if (isNew) {\n baseAssignValue(object, key, newValue);\n } else {\n assignValue(object, key, newValue);\n }\n }\n return object;\n }\n\n /**\n * Copies own symbols of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy symbols from.\n * @param {Object} [object={}] The object to copy symbols to.\n * @returns {Object} Returns `object`.\n */\n function copySymbols(source, object) {\n return copyObject(source, getSymbols(source), object);\n }\n\n /**\n * Copies own and inherited symbols of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy symbols from.\n * @param {Object} [object={}] The object to copy symbols to.\n * @returns {Object} Returns `object`.\n */\n function copySymbolsIn(source, object) {\n return copyObject(source, getSymbolsIn(source), object);\n }\n\n /**\n * Creates a function like `_.groupBy`.\n *\n * @private\n * @param {Function} setter The function to set accumulator values.\n * @param {Function} [initializer] The accumulator object initializer.\n * @returns {Function} Returns the new aggregator function.\n */\n function createAggregator(setter, initializer) {\n return function(collection, iteratee) {\n var func = isArray(collection) ? arrayAggregator : baseAggregator,\n accumulator = initializer ? initializer() : {};\n\n return func(collection, setter, getIteratee(iteratee, 2), accumulator);\n };\n }\n\n /**\n * Creates a function like `_.assign`.\n *\n * @private\n * @param {Function} assigner The function to assign values.\n * @returns {Function} Returns the new assigner function.\n */\n function createAssigner(assigner) {\n return baseRest(function(object, sources) {\n var index = -1,\n length = sources.length,\n customizer = length > 1 ? sources[length - 1] : undefined,\n guard = length > 2 ? sources[2] : undefined;\n\n customizer = (assigner.length > 3 && typeof customizer == 'function')\n ? (length--, customizer)\n : undefined;\n\n if (guard && isIterateeCall(sources[0], sources[1], guard)) {\n customizer = length < 3 ? undefined : customizer;\n length = 1;\n }\n object = Object(object);\n while (++index < length) {\n var source = sources[index];\n if (source) {\n assigner(object, source, index, customizer);\n }\n }\n return object;\n });\n }\n\n /**\n * Creates a `baseEach` or `baseEachRight` function.\n *\n * @private\n * @param {Function} eachFunc The function to iterate over a collection.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\n function createBaseEach(eachFunc, fromRight) {\n return function(collection, iteratee) {\n if (collection == null) {\n return collection;\n }\n if (!isArrayLike(collection)) {\n return eachFunc(collection, iteratee);\n }\n var length = collection.length,\n index = fromRight ? length : -1,\n iterable = Object(collection);\n\n while ((fromRight ? index-- : ++index < length)) {\n if (iteratee(iterable[index], index, iterable) === false) {\n break;\n }\n }\n return collection;\n };\n }\n\n /**\n * Creates a base function for methods like `_.forIn` and `_.forOwn`.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\n function createBaseFor(fromRight) {\n return function(object, iteratee, keysFunc) {\n var index = -1,\n iterable = Object(object),\n props = keysFunc(object),\n length = props.length;\n\n while (length--) {\n var key = props[fromRight ? length : ++index];\n if (iteratee(iterable[key], key, iterable) === false) {\n break;\n }\n }\n return object;\n };\n }\n\n /**\n * Creates a function that wraps `func` to invoke it with the optional `this`\n * binding of `thisArg`.\n *\n * @private\n * @param {Function} func The function to wrap.\n * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\n * @param {*} [thisArg] The `this` binding of `func`.\n * @returns {Function} Returns the new wrapped function.\n */\n function createBind(func, bitmask, thisArg) {\n var isBind = bitmask & WRAP_BIND_FLAG,\n Ctor = createCtor(func);\n\n function wrapper() {\n var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;\n return fn.apply(isBind ? thisArg : this, arguments);\n }\n return wrapper;\n }\n\n /**\n * Creates a function like `_.lowerFirst`.\n *\n * @private\n * @param {string} methodName The name of the `String` case method to use.\n * @returns {Function} Returns the new case function.\n */\n function createCaseFirst(methodName) {\n return function(string) {\n string = toString(string);\n\n var strSymbols = hasUnicode(string)\n ? stringToArray(string)\n : undefined;\n\n var chr = strSymbols\n ? strSymbols[0]\n : string.charAt(0);\n\n var trailing = strSymbols\n ? castSlice(strSymbols, 1).join('')\n : string.slice(1);\n\n return chr[methodName]() + trailing;\n };\n }\n\n /**\n * Creates a function like `_.camelCase`.\n *\n * @private\n * @param {Function} callback The function to combine each word.\n * @returns {Function} Returns the new compounder function.\n */\n function createCompounder(callback) {\n return function(string) {\n return arrayReduce(words(deburr(string).replace(reApos, '')), callback, '');\n };\n }\n\n /**\n * Creates a function that produces an instance of `Ctor` regardless of\n * whether it was invoked as part of a `new` expression or by `call` or `apply`.\n *\n * @private\n * @param {Function} Ctor The constructor to wrap.\n * @returns {Function} Returns the new wrapped function.\n */\n function createCtor(Ctor) {\n return function() {\n // Use a `switch` statement to work with class constructors. See\n // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist\n // for more details.\n var args = arguments;\n switch (args.length) {\n case 0: return new Ctor;\n case 1: return new Ctor(args[0]);\n case 2: return new Ctor(args[0], args[1]);\n case 3: return new Ctor(args[0], args[1], args[2]);\n case 4: return new Ctor(args[0], args[1], args[2], args[3]);\n case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]);\n case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]);\n case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);\n }\n var thisBinding = baseCreate(Ctor.prototype),\n result = Ctor.apply(thisBinding, args);\n\n // Mimic the constructor's `return` behavior.\n // See https://es5.github.io/#x13.2.2 for more details.\n return isObject(result) ? result : thisBinding;\n };\n }\n\n /**\n * Creates a function that wraps `func` to enable currying.\n *\n * @private\n * @param {Function} func The function to wrap.\n * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\n * @param {number} arity The arity of `func`.\n * @returns {Function} Returns the new wrapped function.\n */\n function createCurry(func, bitmask, arity) {\n var Ctor = createCtor(func);\n\n function wrapper() {\n var length = arguments.length,\n args = Array(length),\n index = length,\n placeholder = getHolder(wrapper);\n\n while (index--) {\n args[index] = arguments[index];\n }\n var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder)\n ? []\n : replaceHolders(args, placeholder);\n\n length -= holders.length;\n if (length < arity) {\n return createRecurry(\n func, bitmask, createHybrid, wrapper.placeholder, undefined,\n args, holders, undefined, undefined, arity - length);\n }\n var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;\n return apply(fn, this, args);\n }\n return wrapper;\n }\n\n /**\n * Creates a `_.find` or `_.findLast` function.\n *\n * @private\n * @param {Function} findIndexFunc The function to find the collection index.\n * @returns {Function} Returns the new find function.\n */\n function createFind(findIndexFunc) {\n return function(collection, predicate, fromIndex) {\n var iterable = Object(collection);\n if (!isArrayLike(collection)) {\n var iteratee = getIteratee(predicate, 3);\n collection = keys(collection);\n predicate = function(key) { return iteratee(iterable[key], key, iterable); };\n }\n var index = findIndexFunc(collection, predicate, fromIndex);\n return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined;\n };\n }\n\n /**\n * Creates a `_.flow` or `_.flowRight` function.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new flow function.\n */\n function createFlow(fromRight) {\n return flatRest(function(funcs) {\n var length = funcs.length,\n index = length,\n prereq = LodashWrapper.prototype.thru;\n\n if (fromRight) {\n funcs.reverse();\n }\n while (index--) {\n var func = funcs[index];\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n if (prereq && !wrapper && getFuncName(func) == 'wrapper') {\n var wrapper = new LodashWrapper([], true);\n }\n }\n index = wrapper ? index : length;\n while (++index < length) {\n func = funcs[index];\n\n var funcName = getFuncName(func),\n data = funcName == 'wrapper' ? getData(func) : undefined;\n\n if (data && isLaziable(data[0]) &&\n data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) &&\n !data[4].length && data[9] == 1\n ) {\n wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]);\n } else {\n wrapper = (func.length == 1 && isLaziable(func))\n ? wrapper[funcName]()\n : wrapper.thru(func);\n }\n }\n return function() {\n var args = arguments,\n value = args[0];\n\n if (wrapper && args.length == 1 && isArray(value)) {\n return wrapper.plant(value).value();\n }\n var index = 0,\n result = length ? funcs[index].apply(this, args) : value;\n\n while (++index < length) {\n result = funcs[index].call(this, result);\n }\n return result;\n };\n });\n }\n\n /**\n * Creates a function that wraps `func` to invoke it with optional `this`\n * binding of `thisArg`, partial application, and currying.\n *\n * @private\n * @param {Function|string} func The function or method name to wrap.\n * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\n * @param {*} [thisArg] The `this` binding of `func`.\n * @param {Array} [partials] The arguments to prepend to those provided to\n * the new function.\n * @param {Array} [holders] The `partials` placeholder indexes.\n * @param {Array} [partialsRight] The arguments to append to those provided\n * to the new function.\n * @param {Array} [holdersRight] The `partialsRight` placeholder indexes.\n * @param {Array} [argPos] The argument positions of the new function.\n * @param {number} [ary] The arity cap of `func`.\n * @param {number} [arity] The arity of `func`.\n * @returns {Function} Returns the new wrapped function.\n */\n function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) {\n var isAry = bitmask & WRAP_ARY_FLAG,\n isBind = bitmask & WRAP_BIND_FLAG,\n isBindKey = bitmask & WRAP_BIND_KEY_FLAG,\n isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG),\n isFlip = bitmask & WRAP_FLIP_FLAG,\n Ctor = isBindKey ? undefined : createCtor(func);\n\n function wrapper() {\n var length = arguments.length,\n args = Array(length),\n index = length;\n\n while (index--) {\n args[index] = arguments[index];\n }\n if (isCurried) {\n var placeholder = getHolder(wrapper),\n holdersCount = countHolders(args, placeholder);\n }\n if (partials) {\n args = composeArgs(args, partials, holders, isCurried);\n }\n if (partialsRight) {\n args = composeArgsRight(args, partialsRight, holdersRight, isCurried);\n }\n length -= holdersCount;\n if (isCurried && length < arity) {\n var newHolders = replaceHolders(args, placeholder);\n return createRecurry(\n func, bitmask, createHybrid, wrapper.placeholder, thisArg,\n args, newHolders, argPos, ary, arity - length\n );\n }\n var thisBinding = isBind ? thisArg : this,\n fn = isBindKey ? thisBinding[func] : func;\n\n length = args.length;\n if (argPos) {\n args = reorder(args, argPos);\n } else if (isFlip && length > 1) {\n args.reverse();\n }\n if (isAry && ary < length) {\n args.length = ary;\n }\n if (this && this !== root && this instanceof wrapper) {\n fn = Ctor || createCtor(fn);\n }\n return fn.apply(thisBinding, args);\n }\n return wrapper;\n }\n\n /**\n * Creates a function like `_.invertBy`.\n *\n * @private\n * @param {Function} setter The function to set accumulator values.\n * @param {Function} toIteratee The function to resolve iteratees.\n * @returns {Function} Returns the new inverter function.\n */\n function createInverter(setter, toIteratee) {\n return function(object, iteratee) {\n return baseInverter(object, setter, toIteratee(iteratee), {});\n };\n }\n\n /**\n * Creates a function that performs a mathematical operation on two values.\n *\n * @private\n * @param {Function} operator The function to perform the operation.\n * @param {number} [defaultValue] The value used for `undefined` arguments.\n * @returns {Function} Returns the new mathematical operation function.\n */\n function createMathOperation(operator, defaultValue) {\n return function(value, other) {\n var result;\n if (value === undefined && other === undefined) {\n return defaultValue;\n }\n if (value !== undefined) {\n result = value;\n }\n if (other !== undefined) {\n if (result === undefined) {\n return other;\n }\n if (typeof value == 'string' || typeof other == 'string') {\n value = baseToString(value);\n other = baseToString(other);\n } else {\n value = baseToNumber(value);\n other = baseToNumber(other);\n }\n result = operator(value, other);\n }\n return result;\n };\n }\n\n /**\n * Creates a function like `_.over`.\n *\n * @private\n * @param {Function} arrayFunc The function to iterate over iteratees.\n * @returns {Function} Returns the new over function.\n */\n function createOver(arrayFunc) {\n return flatRest(function(iteratees) {\n iteratees = arrayMap(iteratees, baseUnary(getIteratee()));\n return baseRest(function(args) {\n var thisArg = this;\n return arrayFunc(iteratees, function(iteratee) {\n return apply(iteratee, thisArg, args);\n });\n });\n });\n }\n\n /**\n * Creates the padding for `string` based on `length`. The `chars` string\n * is truncated if the number of characters exceeds `length`.\n *\n * @private\n * @param {number} length The padding length.\n * @param {string} [chars=' '] The string used as padding.\n * @returns {string} Returns the padding for `string`.\n */\n function createPadding(length, chars) {\n chars = chars === undefined ? ' ' : baseToString(chars);\n\n var charsLength = chars.length;\n if (charsLength < 2) {\n return charsLength ? baseRepeat(chars, length) : chars;\n }\n var result = baseRepeat(chars, nativeCeil(length / stringSize(chars)));\n return hasUnicode(chars)\n ? castSlice(stringToArray(result), 0, length).join('')\n : result.slice(0, length);\n }\n\n /**\n * Creates a function that wraps `func` to invoke it with the `this` binding\n * of `thisArg` and `partials` prepended to the arguments it receives.\n *\n * @private\n * @param {Function} func The function to wrap.\n * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\n * @param {*} thisArg The `this` binding of `func`.\n * @param {Array} partials The arguments to prepend to those provided to\n * the new function.\n * @returns {Function} Returns the new wrapped function.\n */\n function createPartial(func, bitmask, thisArg, partials) {\n var isBind = bitmask & WRAP_BIND_FLAG,\n Ctor = createCtor(func);\n\n function wrapper() {\n var argsIndex = -1,\n argsLength = arguments.length,\n leftIndex = -1,\n leftLength = partials.length,\n args = Array(leftLength + argsLength),\n fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;\n\n while (++leftIndex < leftLength) {\n args[leftIndex] = partials[leftIndex];\n }\n while (argsLength--) {\n args[leftIndex++] = arguments[++argsIndex];\n }\n return apply(fn, isBind ? thisArg : this, args);\n }\n return wrapper;\n }\n\n /**\n * Creates a `_.range` or `_.rangeRight` function.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new range function.\n */\n function createRange(fromRight) {\n return function(start, end, step) {\n if (step && typeof step != 'number' && isIterateeCall(start, end, step)) {\n end = step = undefined;\n }\n // Ensure the sign of `-0` is preserved.\n start = toFinite(start);\n if (end === undefined) {\n end = start;\n start = 0;\n } else {\n end = toFinite(end);\n }\n step = step === undefined ? (start < end ? 1 : -1) : toFinite(step);\n return baseRange(start, end, step, fromRight);\n };\n }\n\n /**\n * Creates a function that performs a relational operation on two values.\n *\n * @private\n * @param {Function} operator The function to perform the operation.\n * @returns {Function} Returns the new relational operation function.\n */\n function createRelationalOperation(operator) {\n return function(value, other) {\n if (!(typeof value == 'string' && typeof other == 'string')) {\n value = toNumber(value);\n other = toNumber(other);\n }\n return operator(value, other);\n };\n }\n\n /**\n * Creates a function that wraps `func` to continue currying.\n *\n * @private\n * @param {Function} func The function to wrap.\n * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\n * @param {Function} wrapFunc The function to create the `func` wrapper.\n * @param {*} placeholder The placeholder value.\n * @param {*} [thisArg] The `this` binding of `func`.\n * @param {Array} [partials] The arguments to prepend to those provided to\n * the new function.\n * @param {Array} [holders] The `partials` placeholder indexes.\n * @param {Array} [argPos] The argument positions of the new function.\n * @param {number} [ary] The arity cap of `func`.\n * @param {number} [arity] The arity of `func`.\n * @returns {Function} Returns the new wrapped function.\n */\n function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) {\n var isCurry = bitmask & WRAP_CURRY_FLAG,\n newHolders = isCurry ? holders : undefined,\n newHoldersRight = isCurry ? undefined : holders,\n newPartials = isCurry ? partials : undefined,\n newPartialsRight = isCurry ? undefined : partials;\n\n bitmask |= (isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG);\n bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG);\n\n if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) {\n bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG);\n }\n var newData = [\n func, bitmask, thisArg, newPartials, newHolders, newPartialsRight,\n newHoldersRight, argPos, ary, arity\n ];\n\n var result = wrapFunc.apply(undefined, newData);\n if (isLaziable(func)) {\n setData(result, newData);\n }\n result.placeholder = placeholder;\n return setWrapToString(result, func, bitmask);\n }\n\n /**\n * Creates a function like `_.round`.\n *\n * @private\n * @param {string} methodName The name of the `Math` method to use when rounding.\n * @returns {Function} Returns the new round function.\n */\n function createRound(methodName) {\n var func = Math[methodName];\n return function(number, precision) {\n number = toNumber(number);\n precision = precision == null ? 0 : nativeMin(toInteger(precision), 292);\n if (precision && nativeIsFinite(number)) {\n // Shift with exponential notation to avoid floating-point issues.\n // See [MDN](https://mdn.io/round#Examples) for more details.\n var pair = (toString(number) + 'e').split('e'),\n value = func(pair[0] + 'e' + (+pair[1] + precision));\n\n pair = (toString(value) + 'e').split('e');\n return +(pair[0] + 'e' + (+pair[1] - precision));\n }\n return func(number);\n };\n }\n\n /**\n * Creates a set object of `values`.\n *\n * @private\n * @param {Array} values The values to add to the set.\n * @returns {Object} Returns the new set.\n */\n var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) {\n return new Set(values);\n };\n\n /**\n * Creates a `_.toPairs` or `_.toPairsIn` function.\n *\n * @private\n * @param {Function} keysFunc The function to get the keys of a given object.\n * @returns {Function} Returns the new pairs function.\n */\n function createToPairs(keysFunc) {\n return function(object) {\n var tag = getTag(object);\n if (tag == mapTag) {\n return mapToArray(object);\n }\n if (tag == setTag) {\n return setToPairs(object);\n }\n return baseToPairs(object, keysFunc(object));\n };\n }\n\n /**\n * Creates a function that either curries or invokes `func` with optional\n * `this` binding and partially applied arguments.\n *\n * @private\n * @param {Function|string} func The function or method name to wrap.\n * @param {number} bitmask The bitmask flags.\n * 1 - `_.bind`\n * 2 - `_.bindKey`\n * 4 - `_.curry` or `_.curryRight` of a bound function\n * 8 - `_.curry`\n * 16 - `_.curryRight`\n * 32 - `_.partial`\n * 64 - `_.partialRight`\n * 128 - `_.rearg`\n * 256 - `_.ary`\n * 512 - `_.flip`\n * @param {*} [thisArg] The `this` binding of `func`.\n * @param {Array} [partials] The arguments to be partially applied.\n * @param {Array} [holders] The `partials` placeholder indexes.\n * @param {Array} [argPos] The argument positions of the new function.\n * @param {number} [ary] The arity cap of `func`.\n * @param {number} [arity] The arity of `func`.\n * @returns {Function} Returns the new wrapped function.\n */\n function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) {\n var isBindKey = bitmask & WRAP_BIND_KEY_FLAG;\n if (!isBindKey && typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n var length = partials ? partials.length : 0;\n if (!length) {\n bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG);\n partials = holders = undefined;\n }\n ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0);\n arity = arity === undefined ? arity : toInteger(arity);\n length -= holders ? holders.length : 0;\n\n if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) {\n var partialsRight = partials,\n holdersRight = holders;\n\n partials = holders = undefined;\n }\n var data = isBindKey ? undefined : getData(func);\n\n var newData = [\n func, bitmask, thisArg, partials, holders, partialsRight, holdersRight,\n argPos, ary, arity\n ];\n\n if (data) {\n mergeData(newData, data);\n }\n func = newData[0];\n bitmask = newData[1];\n thisArg = newData[2];\n partials = newData[3];\n holders = newData[4];\n arity = newData[9] = newData[9] === undefined\n ? (isBindKey ? 0 : func.length)\n : nativeMax(newData[9] - length, 0);\n\n if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) {\n bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG);\n }\n if (!bitmask || bitmask == WRAP_BIND_FLAG) {\n var result = createBind(func, bitmask, thisArg);\n } else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) {\n result = createCurry(func, bitmask, arity);\n } else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) {\n result = createPartial(func, bitmask, thisArg, partials);\n } else {\n result = createHybrid.apply(undefined, newData);\n }\n var setter = data ? baseSetData : setData;\n return setWrapToString(setter(result, newData), func, bitmask);\n }\n\n /**\n * Used by `_.defaults` to customize its `_.assignIn` use to assign properties\n * of source objects to the destination object for all destination properties\n * that resolve to `undefined`.\n *\n * @private\n * @param {*} objValue The destination value.\n * @param {*} srcValue The source value.\n * @param {string} key The key of the property to assign.\n * @param {Object} object The parent object of `objValue`.\n * @returns {*} Returns the value to assign.\n */\n function customDefaultsAssignIn(objValue, srcValue, key, object) {\n if (objValue === undefined ||\n (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) {\n return srcValue;\n }\n return objValue;\n }\n\n /**\n * Used by `_.defaultsDeep` to customize its `_.merge` use to merge source\n * objects into destination objects that are passed thru.\n *\n * @private\n * @param {*} objValue The destination value.\n * @param {*} srcValue The source value.\n * @param {string} key The key of the property to merge.\n * @param {Object} object The parent object of `objValue`.\n * @param {Object} source The parent object of `srcValue`.\n * @param {Object} [stack] Tracks traversed source values and their merged\n * counterparts.\n * @returns {*} Returns the value to assign.\n */\n function customDefaultsMerge(objValue, srcValue, key, object, source, stack) {\n if (isObject(objValue) && isObject(srcValue)) {\n // Recursively merge objects and arrays (susceptible to call stack limits).\n stack.set(srcValue, objValue);\n baseMerge(objValue, srcValue, undefined, customDefaultsMerge, stack);\n stack['delete'](srcValue);\n }\n return objValue;\n }\n\n /**\n * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain\n * objects.\n *\n * @private\n * @param {*} value The value to inspect.\n * @param {string} key The key of the property to inspect.\n * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.\n */\n function customOmitClone(value) {\n return isPlainObject(value) ? undefined : value;\n }\n\n /**\n * A specialized version of `baseIsEqualDeep` for arrays with support for\n * partial deep comparisons.\n *\n * @private\n * @param {Array} array The array to compare.\n * @param {Array} other The other array to compare.\n * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n * @param {Function} customizer The function to customize comparisons.\n * @param {Function} equalFunc The function to determine equivalents of values.\n * @param {Object} stack Tracks traversed `array` and `other` objects.\n * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.\n */\n function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {\n var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\n arrLength = array.length,\n othLength = other.length;\n\n if (arrLength != othLength && !(isPartial && othLength > arrLength)) {\n return false;\n }\n // Assume cyclic values are equal.\n var stacked = stack.get(array);\n if (stacked && stack.get(other)) {\n return stacked == other;\n }\n var index = -1,\n result = true,\n seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined;\n\n stack.set(array, other);\n stack.set(other, array);\n\n // Ignore non-index properties.\n while (++index < arrLength) {\n var arrValue = array[index],\n othValue = other[index];\n\n if (customizer) {\n var compared = isPartial\n ? customizer(othValue, arrValue, index, other, array, stack)\n : customizer(arrValue, othValue, index, array, other, stack);\n }\n if (compared !== undefined) {\n if (compared) {\n continue;\n }\n result = false;\n break;\n }\n // Recursively compare arrays (susceptible to call stack limits).\n if (seen) {\n if (!arraySome(other, function(othValue, othIndex) {\n if (!cacheHas(seen, othIndex) &&\n (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {\n return seen.push(othIndex);\n }\n })) {\n result = false;\n break;\n }\n } else if (!(\n arrValue === othValue ||\n equalFunc(arrValue, othValue, bitmask, customizer, stack)\n )) {\n result = false;\n break;\n }\n }\n stack['delete'](array);\n stack['delete'](other);\n return result;\n }\n\n /**\n * A specialized version of `baseIsEqualDeep` for comparing objects of\n * the same `toStringTag`.\n *\n * **Note:** This function only supports comparing values with tags of\n * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {string} tag The `toStringTag` of the objects to compare.\n * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n * @param {Function} customizer The function to customize comparisons.\n * @param {Function} equalFunc The function to determine equivalents of values.\n * @param {Object} stack Tracks traversed `object` and `other` objects.\n * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n */\n function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {\n switch (tag) {\n case dataViewTag:\n if ((object.byteLength != other.byteLength) ||\n (object.byteOffset != other.byteOffset)) {\n return false;\n }\n object = object.buffer;\n other = other.buffer;\n\n case arrayBufferTag:\n if ((object.byteLength != other.byteLength) ||\n !equalFunc(new Uint8Array(object), new Uint8Array(other))) {\n return false;\n }\n return true;\n\n case boolTag:\n case dateTag:\n case numberTag:\n // Coerce booleans to `1` or `0` and dates to milliseconds.\n // Invalid dates are coerced to `NaN`.\n return eq(+object, +other);\n\n case errorTag:\n return object.name == other.name && object.message == other.message;\n\n case regexpTag:\n case stringTag:\n // Coerce regexes to strings and treat strings, primitives and objects,\n // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring\n // for more details.\n return object == (other + '');\n\n case mapTag:\n var convert = mapToArray;\n\n case setTag:\n var isPartial = bitmask & COMPARE_PARTIAL_FLAG;\n convert || (convert = setToArray);\n\n if (object.size != other.size && !isPartial) {\n return false;\n }\n // Assume cyclic values are equal.\n var stacked = stack.get(object);\n if (stacked) {\n return stacked == other;\n }\n bitmask |= COMPARE_UNORDERED_FLAG;\n\n // Recursively compare objects (susceptible to call stack limits).\n stack.set(object, other);\n var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);\n stack['delete'](object);\n return result;\n\n case symbolTag:\n if (symbolValueOf) {\n return symbolValueOf.call(object) == symbolValueOf.call(other);\n }\n }\n return false;\n }\n\n /**\n * A specialized version of `baseIsEqualDeep` for objects with support for\n * partial deep comparisons.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n * @param {Function} customizer The function to customize comparisons.\n * @param {Function} equalFunc The function to determine equivalents of values.\n * @param {Object} stack Tracks traversed `object` and `other` objects.\n * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n */\n function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {\n var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\n objProps = getAllKeys(object),\n objLength = objProps.length,\n othProps = getAllKeys(other),\n othLength = othProps.length;\n\n if (objLength != othLength && !isPartial) {\n return false;\n }\n var index = objLength;\n while (index--) {\n var key = objProps[index];\n if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {\n return false;\n }\n }\n // Assume cyclic values are equal.\n var stacked = stack.get(object);\n if (stacked && stack.get(other)) {\n return stacked == other;\n }\n var result = true;\n stack.set(object, other);\n stack.set(other, object);\n\n var skipCtor = isPartial;\n while (++index < objLength) {\n key = objProps[index];\n var objValue = object[key],\n othValue = other[key];\n\n if (customizer) {\n var compared = isPartial\n ? customizer(othValue, objValue, key, other, object, stack)\n : customizer(objValue, othValue, key, object, other, stack);\n }\n // Recursively compare objects (susceptible to call stack limits).\n if (!(compared === undefined\n ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack))\n : compared\n )) {\n result = false;\n break;\n }\n skipCtor || (skipCtor = key == 'constructor');\n }\n if (result && !skipCtor) {\n var objCtor = object.constructor,\n othCtor = other.constructor;\n\n // Non `Object` object instances with different constructors are not equal.\n if (objCtor != othCtor &&\n ('constructor' in object && 'constructor' in other) &&\n !(typeof objCtor == 'function' && objCtor instanceof objCtor &&\n typeof othCtor == 'function' && othCtor instanceof othCtor)) {\n result = false;\n }\n }\n stack['delete'](object);\n stack['delete'](other);\n return result;\n }\n\n /**\n * A specialized version of `baseRest` which flattens the rest array.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @returns {Function} Returns the new function.\n */\n function flatRest(func) {\n return setToString(overRest(func, undefined, flatten), func + '');\n }\n\n /**\n * Creates an array of own enumerable property names and symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names and symbols.\n */\n function getAllKeys(object) {\n return baseGetAllKeys(object, keys, getSymbols);\n }\n\n /**\n * Creates an array of own and inherited enumerable property names and\n * symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names and symbols.\n */\n function getAllKeysIn(object) {\n return baseGetAllKeys(object, keysIn, getSymbolsIn);\n }\n\n /**\n * Gets metadata for `func`.\n *\n * @private\n * @param {Function} func The function to query.\n * @returns {*} Returns the metadata for `func`.\n */\n var getData = !metaMap ? noop : function(func) {\n return metaMap.get(func);\n };\n\n /**\n * Gets the name of `func`.\n *\n * @private\n * @param {Function} func The function to query.\n * @returns {string} Returns the function name.\n */\n function getFuncName(func) {\n var result = (func.name + ''),\n array = realNames[result],\n length = hasOwnProperty.call(realNames, result) ? array.length : 0;\n\n while (length--) {\n var data = array[length],\n otherFunc = data.func;\n if (otherFunc == null || otherFunc == func) {\n return data.name;\n }\n }\n return result;\n }\n\n /**\n * Gets the argument placeholder value for `func`.\n *\n * @private\n * @param {Function} func The function to inspect.\n * @returns {*} Returns the placeholder value.\n */\n function getHolder(func) {\n var object = hasOwnProperty.call(lodash, 'placeholder') ? lodash : func;\n return object.placeholder;\n }\n\n /**\n * Gets the appropriate \"iteratee\" function. If `_.iteratee` is customized,\n * this function returns the custom method, otherwise it returns `baseIteratee`.\n * If arguments are provided, the chosen function is invoked with them and\n * its result is returned.\n *\n * @private\n * @param {*} [value] The value to convert to an iteratee.\n * @param {number} [arity] The arity of the created iteratee.\n * @returns {Function} Returns the chosen function or its result.\n */\n function getIteratee() {\n var result = lodash.iteratee || iteratee;\n result = result === iteratee ? baseIteratee : result;\n return arguments.length ? result(arguments[0], arguments[1]) : result;\n }\n\n /**\n * Gets the data for `map`.\n *\n * @private\n * @param {Object} map The map to query.\n * @param {string} key The reference key.\n * @returns {*} Returns the map data.\n */\n function getMapData(map, key) {\n var data = map.__data__;\n return isKeyable(key)\n ? data[typeof key == 'string' ? 'string' : 'hash']\n : data.map;\n }\n\n /**\n * Gets the property names, values, and compare flags of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the match data of `object`.\n */\n function getMatchData(object) {\n var result = keys(object),\n length = result.length;\n\n while (length--) {\n var key = result[length],\n value = object[key];\n\n result[length] = [key, value, isStrictComparable(value)];\n }\n return result;\n }\n\n /**\n * Gets the native function at `key` of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the method to get.\n * @returns {*} Returns the function if it's native, else `undefined`.\n */\n function getNative(object, key) {\n var value = getValue(object, key);\n return baseIsNative(value) ? value : undefined;\n }\n\n /**\n * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the raw `toStringTag`.\n */\n function getRawTag(value) {\n var isOwn = hasOwnProperty.call(value, symToStringTag),\n tag = value[symToStringTag];\n\n try {\n value[symToStringTag] = undefined;\n var unmasked = true;\n } catch (e) {}\n\n var result = nativeObjectToString.call(value);\n if (unmasked) {\n if (isOwn) {\n value[symToStringTag] = tag;\n } else {\n delete value[symToStringTag];\n }\n }\n return result;\n }\n\n /**\n * Creates an array of the own enumerable symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of symbols.\n */\n var getSymbols = !nativeGetSymbols ? stubArray : function(object) {\n if (object == null) {\n return [];\n }\n object = Object(object);\n return arrayFilter(nativeGetSymbols(object), function(symbol) {\n return propertyIsEnumerable.call(object, symbol);\n });\n };\n\n /**\n * Creates an array of the own and inherited enumerable symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of symbols.\n */\n var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) {\n var result = [];\n while (object) {\n arrayPush(result, getSymbols(object));\n object = getPrototype(object);\n }\n return result;\n };\n\n /**\n * Gets the `toStringTag` of `value`.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\n var getTag = baseGetTag;\n\n // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6.\n if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) ||\n (Map && getTag(new Map) != mapTag) ||\n (Promise && getTag(Promise.resolve()) != promiseTag) ||\n (Set && getTag(new Set) != setTag) ||\n (WeakMap && getTag(new WeakMap) != weakMapTag)) {\n getTag = function(value) {\n var result = baseGetTag(value),\n Ctor = result == objectTag ? value.constructor : undefined,\n ctorString = Ctor ? toSource(Ctor) : '';\n\n if (ctorString) {\n switch (ctorString) {\n case dataViewCtorString: return dataViewTag;\n case mapCtorString: return mapTag;\n case promiseCtorString: return promiseTag;\n case setCtorString: return setTag;\n case weakMapCtorString: return weakMapTag;\n }\n }\n return result;\n };\n }\n\n /**\n * Gets the view, applying any `transforms` to the `start` and `end` positions.\n *\n * @private\n * @param {number} start The start of the view.\n * @param {number} end The end of the view.\n * @param {Array} transforms The transformations to apply to the view.\n * @returns {Object} Returns an object containing the `start` and `end`\n * positions of the view.\n */\n function getView(start, end, transforms) {\n var index = -1,\n length = transforms.length;\n\n while (++index < length) {\n var data = transforms[index],\n size = data.size;\n\n switch (data.type) {\n case 'drop': start += size; break;\n case 'dropRight': end -= size; break;\n case 'take': end = nativeMin(end, start + size); break;\n case 'takeRight': start = nativeMax(start, end - size); break;\n }\n }\n return { 'start': start, 'end': end };\n }\n\n /**\n * Extracts wrapper details from the `source` body comment.\n *\n * @private\n * @param {string} source The source to inspect.\n * @returns {Array} Returns the wrapper details.\n */\n function getWrapDetails(source) {\n var match = source.match(reWrapDetails);\n return match ? match[1].split(reSplitDetails) : [];\n }\n\n /**\n * Checks if `path` exists on `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array|string} path The path to check.\n * @param {Function} hasFunc The function to check properties.\n * @returns {boolean} Returns `true` if `path` exists, else `false`.\n */\n function hasPath(object, path, hasFunc) {\n path = castPath(path, object);\n\n var index = -1,\n length = path.length,\n result = false;\n\n while (++index < length) {\n var key = toKey(path[index]);\n if (!(result = object != null && hasFunc(object, key))) {\n break;\n }\n object = object[key];\n }\n if (result || ++index != length) {\n return result;\n }\n length = object == null ? 0 : object.length;\n return !!length && isLength(length) && isIndex(key, length) &&\n (isArray(object) || isArguments(object));\n }\n\n /**\n * Initializes an array clone.\n *\n * @private\n * @param {Array} array The array to clone.\n * @returns {Array} Returns the initialized clone.\n */\n function initCloneArray(array) {\n var length = array.length,\n result = new array.constructor(length);\n\n // Add properties assigned by `RegExp#exec`.\n if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) {\n result.index = array.index;\n result.input = array.input;\n }\n return result;\n }\n\n /**\n * Initializes an object clone.\n *\n * @private\n * @param {Object} object The object to clone.\n * @returns {Object} Returns the initialized clone.\n */\n function initCloneObject(object) {\n return (typeof object.constructor == 'function' && !isPrototype(object))\n ? baseCreate(getPrototype(object))\n : {};\n }\n\n /**\n * Initializes an object clone based on its `toStringTag`.\n *\n * **Note:** This function only supports cloning values with tags of\n * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`.\n *\n * @private\n * @param {Object} object The object to clone.\n * @param {string} tag The `toStringTag` of the object to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Object} Returns the initialized clone.\n */\n function initCloneByTag(object, tag, isDeep) {\n var Ctor = object.constructor;\n switch (tag) {\n case arrayBufferTag:\n return cloneArrayBuffer(object);\n\n case boolTag:\n case dateTag:\n return new Ctor(+object);\n\n case dataViewTag:\n return cloneDataView(object, isDeep);\n\n case float32Tag: case float64Tag:\n case int8Tag: case int16Tag: case int32Tag:\n case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag:\n return cloneTypedArray(object, isDeep);\n\n case mapTag:\n return new Ctor;\n\n case numberTag:\n case stringTag:\n return new Ctor(object);\n\n case regexpTag:\n return cloneRegExp(object);\n\n case setTag:\n return new Ctor;\n\n case symbolTag:\n return cloneSymbol(object);\n }\n }\n\n /**\n * Inserts wrapper `details` in a comment at the top of the `source` body.\n *\n * @private\n * @param {string} source The source to modify.\n * @returns {Array} details The details to insert.\n * @returns {string} Returns the modified source.\n */\n function insertWrapDetails(source, details) {\n var length = details.length;\n if (!length) {\n return source;\n }\n var lastIndex = length - 1;\n details[lastIndex] = (length > 1 ? '& ' : '') + details[lastIndex];\n details = details.join(length > 2 ? ', ' : ' ');\n return source.replace(reWrapComment, '{\\n/* [wrapped with ' + details + '] */\\n');\n }\n\n /**\n * Checks if `value` is a flattenable `arguments` object or array.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is flattenable, else `false`.\n */\n function isFlattenable(value) {\n return isArray(value) || isArguments(value) ||\n !!(spreadableSymbol && value && value[spreadableSymbol]);\n }\n\n /**\n * Checks if `value` is a valid array-like index.\n *\n * @private\n * @param {*} value The value to check.\n * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n */\n function isIndex(value, length) {\n var type = typeof value;\n length = length == null ? MAX_SAFE_INTEGER : length;\n\n return !!length &&\n (type == 'number' ||\n (type != 'symbol' && reIsUint.test(value))) &&\n (value > -1 && value % 1 == 0 && value < length);\n }\n\n /**\n * Checks if the given arguments are from an iteratee call.\n *\n * @private\n * @param {*} value The potential iteratee value argument.\n * @param {*} index The potential iteratee index or key argument.\n * @param {*} object The potential iteratee object argument.\n * @returns {boolean} Returns `true` if the arguments are from an iteratee call,\n * else `false`.\n */\n function isIterateeCall(value, index, object) {\n if (!isObject(object)) {\n return false;\n }\n var type = typeof index;\n if (type == 'number'\n ? (isArrayLike(object) && isIndex(index, object.length))\n : (type == 'string' && index in object)\n ) {\n return eq(object[index], value);\n }\n return false;\n }\n\n /**\n * Checks if `value` is a property name and not a property path.\n *\n * @private\n * @param {*} value The value to check.\n * @param {Object} [object] The object to query keys on.\n * @returns {boolean} Returns `true` if `value` is a property name, else `false`.\n */\n function isKey(value, object) {\n if (isArray(value)) {\n return false;\n }\n var type = typeof value;\n if (type == 'number' || type == 'symbol' || type == 'boolean' ||\n value == null || isSymbol(value)) {\n return true;\n }\n return reIsPlainProp.test(value) || !reIsDeepProp.test(value) ||\n (object != null && value in Object(object));\n }\n\n /**\n * Checks if `value` is suitable for use as unique object key.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\n */\n function isKeyable(value) {\n var type = typeof value;\n return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')\n ? (value !== '__proto__')\n : (value === null);\n }\n\n /**\n * Checks if `func` has a lazy counterpart.\n *\n * @private\n * @param {Function} func The function to check.\n * @returns {boolean} Returns `true` if `func` has a lazy counterpart,\n * else `false`.\n */\n function isLaziable(func) {\n var funcName = getFuncName(func),\n other = lodash[funcName];\n\n if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) {\n return false;\n }\n if (func === other) {\n return true;\n }\n var data = getData(other);\n return !!data && func === data[0];\n }\n\n /**\n * Checks if `func` has its source masked.\n *\n * @private\n * @param {Function} func The function to check.\n * @returns {boolean} Returns `true` if `func` is masked, else `false`.\n */\n function isMasked(func) {\n return !!maskSrcKey && (maskSrcKey in func);\n }\n\n /**\n * Checks if `func` is capable of being masked.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `func` is maskable, else `false`.\n */\n var isMaskable = coreJsData ? isFunction : stubFalse;\n\n /**\n * Checks if `value` is likely a prototype object.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\n */\n function isPrototype(value) {\n var Ctor = value && value.constructor,\n proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;\n\n return value === proto;\n }\n\n /**\n * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` if suitable for strict\n * equality comparisons, else `false`.\n */\n function isStrictComparable(value) {\n return value === value && !isObject(value);\n }\n\n /**\n * A specialized version of `matchesProperty` for source values suitable\n * for strict equality comparisons, i.e. `===`.\n *\n * @private\n * @param {string} key The key of the property to get.\n * @param {*} srcValue The value to match.\n * @returns {Function} Returns the new spec function.\n */\n function matchesStrictComparable(key, srcValue) {\n return function(object) {\n if (object == null) {\n return false;\n }\n return object[key] === srcValue &&\n (srcValue !== undefined || (key in Object(object)));\n };\n }\n\n /**\n * A specialized version of `_.memoize` which clears the memoized function's\n * cache when it exceeds `MAX_MEMOIZE_SIZE`.\n *\n * @private\n * @param {Function} func The function to have its output memoized.\n * @returns {Function} Returns the new memoized function.\n */\n function memoizeCapped(func) {\n var result = memoize(func, function(key) {\n if (cache.size === MAX_MEMOIZE_SIZE) {\n cache.clear();\n }\n return key;\n });\n\n var cache = result.cache;\n return result;\n }\n\n /**\n * Merges the function metadata of `source` into `data`.\n *\n * Merging metadata reduces the number of wrappers used to invoke a function.\n * This is possible because methods like `_.bind`, `_.curry`, and `_.partial`\n * may be applied regardless of execution order. Methods like `_.ary` and\n * `_.rearg` modify function arguments, making the order in which they are\n * executed important, preventing the merging of metadata. However, we make\n * an exception for a safe combined case where curried functions have `_.ary`\n * and or `_.rearg` applied.\n *\n * @private\n * @param {Array} data The destination metadata.\n * @param {Array} source The source metadata.\n * @returns {Array} Returns `data`.\n */\n function mergeData(data, source) {\n var bitmask = data[1],\n srcBitmask = source[1],\n newBitmask = bitmask | srcBitmask,\n isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG);\n\n var isCombo =\n ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_CURRY_FLAG)) ||\n ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) ||\n ((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask == WRAP_CURRY_FLAG));\n\n // Exit early if metadata can't be merged.\n if (!(isCommon || isCombo)) {\n return data;\n }\n // Use source `thisArg` if available.\n if (srcBitmask & WRAP_BIND_FLAG) {\n data[2] = source[2];\n // Set when currying a bound function.\n newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG;\n }\n // Compose partial arguments.\n var value = source[3];\n if (value) {\n var partials = data[3];\n data[3] = partials ? composeArgs(partials, value, source[4]) : value;\n data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4];\n }\n // Compose partial right arguments.\n value = source[5];\n if (value) {\n partials = data[5];\n data[5] = partials ? composeArgsRight(partials, value, source[6]) : value;\n data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6];\n }\n // Use source `argPos` if available.\n value = source[7];\n if (value) {\n data[7] = value;\n }\n // Use source `ary` if it's smaller.\n if (srcBitmask & WRAP_ARY_FLAG) {\n data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]);\n }\n // Use source `arity` if one is not provided.\n if (data[9] == null) {\n data[9] = source[9];\n }\n // Use source `func` and merge bitmasks.\n data[0] = source[0];\n data[1] = newBitmask;\n\n return data;\n }\n\n /**\n * This function is like\n * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * except that it includes inherited enumerable properties.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\n function nativeKeysIn(object) {\n var result = [];\n if (object != null) {\n for (var key in Object(object)) {\n result.push(key);\n }\n }\n return result;\n }\n\n /**\n * Converts `value` to a string using `Object.prototype.toString`.\n *\n * @private\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n */\n function objectToString(value) {\n return nativeObjectToString.call(value);\n }\n\n /**\n * A specialized version of `baseRest` which transforms the rest array.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @param {Function} transform The rest array transform.\n * @returns {Function} Returns the new function.\n */\n function overRest(func, start, transform) {\n start = nativeMax(start === undefined ? (func.length - 1) : start, 0);\n return function() {\n var args = arguments,\n index = -1,\n length = nativeMax(args.length - start, 0),\n array = Array(length);\n\n while (++index < length) {\n array[index] = args[start + index];\n }\n index = -1;\n var otherArgs = Array(start + 1);\n while (++index < start) {\n otherArgs[index] = args[index];\n }\n otherArgs[start] = transform(array);\n return apply(func, this, otherArgs);\n };\n }\n\n /**\n * Gets the parent value at `path` of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array} path The path to get the parent value of.\n * @returns {*} Returns the parent value.\n */\n function parent(object, path) {\n return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1));\n }\n\n /**\n * Reorder `array` according to the specified indexes where the element at\n * the first index is assigned as the first element, the element at\n * the second index is assigned as the second element, and so on.\n *\n * @private\n * @param {Array} array The array to reorder.\n * @param {Array} indexes The arranged array indexes.\n * @returns {Array} Returns `array`.\n */\n function reorder(array, indexes) {\n var arrLength = array.length,\n length = nativeMin(indexes.length, arrLength),\n oldArray = copyArray(array);\n\n while (length--) {\n var index = indexes[length];\n array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined;\n }\n return array;\n }\n\n /**\n * Gets the value at `key`, unless `key` is \"__proto__\" or \"constructor\".\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\n function safeGet(object, key) {\n if (key === 'constructor' && typeof object[key] === 'function') {\n return;\n }\n\n if (key == '__proto__') {\n return;\n }\n\n return object[key];\n }\n\n /**\n * Sets metadata for `func`.\n *\n * **Note:** If this function becomes hot, i.e. is invoked a lot in a short\n * period of time, it will trip its breaker and transition to an identity\n * function to avoid garbage collection pauses in V8. See\n * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070)\n * for more details.\n *\n * @private\n * @param {Function} func The function to associate metadata with.\n * @param {*} data The metadata.\n * @returns {Function} Returns `func`.\n */\n var setData = shortOut(baseSetData);\n\n /**\n * A simple wrapper around the global [`setTimeout`](https://mdn.io/setTimeout).\n *\n * @private\n * @param {Function} func The function to delay.\n * @param {number} wait The number of milliseconds to delay invocation.\n * @returns {number|Object} Returns the timer id or timeout object.\n */\n var setTimeout = ctxSetTimeout || function(func, wait) {\n return root.setTimeout(func, wait);\n };\n\n /**\n * Sets the `toString` method of `func` to return `string`.\n *\n * @private\n * @param {Function} func The function to modify.\n * @param {Function} string The `toString` result.\n * @returns {Function} Returns `func`.\n */\n var setToString = shortOut(baseSetToString);\n\n /**\n * Sets the `toString` method of `wrapper` to mimic the source of `reference`\n * with wrapper details in a comment at the top of the source body.\n *\n * @private\n * @param {Function} wrapper The function to modify.\n * @param {Function} reference The reference function.\n * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\n * @returns {Function} Returns `wrapper`.\n */\n function setWrapToString(wrapper, reference, bitmask) {\n var source = (reference + '');\n return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask)));\n }\n\n /**\n * Creates a function that'll short out and invoke `identity` instead\n * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`\n * milliseconds.\n *\n * @private\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new shortable function.\n */\n function shortOut(func) {\n var count = 0,\n lastCalled = 0;\n\n return function() {\n var stamp = nativeNow(),\n remaining = HOT_SPAN - (stamp - lastCalled);\n\n lastCalled = stamp;\n if (remaining > 0) {\n if (++count >= HOT_COUNT) {\n return arguments[0];\n }\n } else {\n count = 0;\n }\n return func.apply(undefined, arguments);\n };\n }\n\n /**\n * A specialized version of `_.shuffle` which mutates and sets the size of `array`.\n *\n * @private\n * @param {Array} array The array to shuffle.\n * @param {number} [size=array.length] The size of `array`.\n * @returns {Array} Returns `array`.\n */\n function shuffleSelf(array, size) {\n var index = -1,\n length = array.length,\n lastIndex = length - 1;\n\n size = size === undefined ? length : size;\n while (++index < size) {\n var rand = baseRandom(index, lastIndex),\n value = array[rand];\n\n array[rand] = array[index];\n array[index] = value;\n }\n array.length = size;\n return array;\n }\n\n /**\n * Converts `string` to a property path array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the property path array.\n */\n var stringToPath = memoizeCapped(function(string) {\n var result = [];\n if (string.charCodeAt(0) === 46 /* . */) {\n result.push('');\n }\n string.replace(rePropName, function(match, number, quote, subString) {\n result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match));\n });\n return result;\n });\n\n /**\n * Converts `value` to a string key if it's not a string or symbol.\n *\n * @private\n * @param {*} value The value to inspect.\n * @returns {string|symbol} Returns the key.\n */\n function toKey(value) {\n if (typeof value == 'string' || isSymbol(value)) {\n return value;\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n }\n\n /**\n * Converts `func` to its source code.\n *\n * @private\n * @param {Function} func The function to convert.\n * @returns {string} Returns the source code.\n */\n function toSource(func) {\n if (func != null) {\n try {\n return funcToString.call(func);\n } catch (e) {}\n try {\n return (func + '');\n } catch (e) {}\n }\n return '';\n }\n\n /**\n * Updates wrapper `details` based on `bitmask` flags.\n *\n * @private\n * @returns {Array} details The details to modify.\n * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\n * @returns {Array} Returns `details`.\n */\n function updateWrapDetails(details, bitmask) {\n arrayEach(wrapFlags, function(pair) {\n var value = '_.' + pair[0];\n if ((bitmask & pair[1]) && !arrayIncludes(details, value)) {\n details.push(value);\n }\n });\n return details.sort();\n }\n\n /**\n * Creates a clone of `wrapper`.\n *\n * @private\n * @param {Object} wrapper The wrapper to clone.\n * @returns {Object} Returns the cloned wrapper.\n */\n function wrapperClone(wrapper) {\n if (wrapper instanceof LazyWrapper) {\n return wrapper.clone();\n }\n var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__);\n result.__actions__ = copyArray(wrapper.__actions__);\n result.__index__ = wrapper.__index__;\n result.__values__ = wrapper.__values__;\n return result;\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates an array of elements split into groups the length of `size`.\n * If `array` can't be split evenly, the final chunk will be the remaining\n * elements.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The array to process.\n * @param {number} [size=1] The length of each chunk\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Array} Returns the new array of chunks.\n * @example\n *\n * _.chunk(['a', 'b', 'c', 'd'], 2);\n * // => [['a', 'b'], ['c', 'd']]\n *\n * _.chunk(['a', 'b', 'c', 'd'], 3);\n * // => [['a', 'b', 'c'], ['d']]\n */\n function chunk(array, size, guard) {\n if ((guard ? isIterateeCall(array, size, guard) : size === undefined)) {\n size = 1;\n } else {\n size = nativeMax(toInteger(size), 0);\n }\n var length = array == null ? 0 : array.length;\n if (!length || size < 1) {\n return [];\n }\n var index = 0,\n resIndex = 0,\n result = Array(nativeCeil(length / size));\n\n while (index < length) {\n result[resIndex++] = baseSlice(array, index, (index += size));\n }\n return result;\n }\n\n /**\n * Creates an array with all falsey values removed. The values `false`, `null`,\n * `0`, `\"\"`, `undefined`, and `NaN` are falsey.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to compact.\n * @returns {Array} Returns the new array of filtered values.\n * @example\n *\n * _.compact([0, 1, false, 2, '', 3]);\n * // => [1, 2, 3]\n */\n function compact(array) {\n var index = -1,\n length = array == null ? 0 : array.length,\n resIndex = 0,\n result = [];\n\n while (++index < length) {\n var value = array[index];\n if (value) {\n result[resIndex++] = value;\n }\n }\n return result;\n }\n\n /**\n * Creates a new array concatenating `array` with any additional arrays\n * and/or values.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to concatenate.\n * @param {...*} [values] The values to concatenate.\n * @returns {Array} Returns the new concatenated array.\n * @example\n *\n * var array = [1];\n * var other = _.concat(array, 2, [3], [[4]]);\n *\n * console.log(other);\n * // => [1, 2, 3, [4]]\n *\n * console.log(array);\n * // => [1]\n */\n function concat() {\n var length = arguments.length;\n if (!length) {\n return [];\n }\n var args = Array(length - 1),\n array = arguments[0],\n index = length;\n\n while (index--) {\n args[index - 1] = arguments[index];\n }\n return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1));\n }\n\n /**\n * Creates an array of `array` values not included in the other given arrays\n * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons. The order and references of result values are\n * determined by the first array.\n *\n * **Note:** Unlike `_.pullAll`, this method returns a new array.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {...Array} [values] The values to exclude.\n * @returns {Array} Returns the new array of filtered values.\n * @see _.without, _.xor\n * @example\n *\n * _.difference([2, 1], [2, 3]);\n * // => [1]\n */\n var difference = baseRest(function(array, values) {\n return isArrayLikeObject(array)\n ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true))\n : [];\n });\n\n /**\n * This method is like `_.difference` except that it accepts `iteratee` which\n * is invoked for each element of `array` and `values` to generate the criterion\n * by which they're compared. The order and references of result values are\n * determined by the first array. The iteratee is invoked with one argument:\n * (value).\n *\n * **Note:** Unlike `_.pullAllBy`, this method returns a new array.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {...Array} [values] The values to exclude.\n * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\n * @returns {Array} Returns the new array of filtered values.\n * @example\n *\n * _.differenceBy([2.1, 1.2], [2.3, 3.4], Math.floor);\n * // => [1.2]\n *\n * // The `_.property` iteratee shorthand.\n * _.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x');\n * // => [{ 'x': 2 }]\n */\n var differenceBy = baseRest(function(array, values) {\n var iteratee = last(values);\n if (isArrayLikeObject(iteratee)) {\n iteratee = undefined;\n }\n return isArrayLikeObject(array)\n ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), getIteratee(iteratee, 2))\n : [];\n });\n\n /**\n * This method is like `_.difference` except that it accepts `comparator`\n * which is invoked to compare elements of `array` to `values`. The order and\n * references of result values are determined by the first array. The comparator\n * is invoked with two arguments: (arrVal, othVal).\n *\n * **Note:** Unlike `_.pullAllWith`, this method returns a new array.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {...Array} [values] The values to exclude.\n * @param {Function} [comparator] The comparator invoked per element.\n * @returns {Array} Returns the new array of filtered values.\n * @example\n *\n * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\n *\n * _.differenceWith(objects, [{ 'x': 1, 'y': 2 }], _.isEqual);\n * // => [{ 'x': 2, 'y': 1 }]\n */\n var differenceWith = baseRest(function(array, values) {\n var comparator = last(values);\n if (isArrayLikeObject(comparator)) {\n comparator = undefined;\n }\n return isArrayLikeObject(array)\n ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), undefined, comparator)\n : [];\n });\n\n /**\n * Creates a slice of `array` with `n` elements dropped from the beginning.\n *\n * @static\n * @memberOf _\n * @since 0.5.0\n * @category Array\n * @param {Array} array The array to query.\n * @param {number} [n=1] The number of elements to drop.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.drop([1, 2, 3]);\n * // => [2, 3]\n *\n * _.drop([1, 2, 3], 2);\n * // => [3]\n *\n * _.drop([1, 2, 3], 5);\n * // => []\n *\n * _.drop([1, 2, 3], 0);\n * // => [1, 2, 3]\n */\n function drop(array, n, guard) {\n var length = array == null ? 0 : array.length;\n if (!length) {\n return [];\n }\n n = (guard || n === undefined) ? 1 : toInteger(n);\n return baseSlice(array, n < 0 ? 0 : n, length);\n }\n\n /**\n * Creates a slice of `array` with `n` elements dropped from the end.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The array to query.\n * @param {number} [n=1] The number of elements to drop.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.dropRight([1, 2, 3]);\n * // => [1, 2]\n *\n * _.dropRight([1, 2, 3], 2);\n * // => [1]\n *\n * _.dropRight([1, 2, 3], 5);\n * // => []\n *\n * _.dropRight([1, 2, 3], 0);\n * // => [1, 2, 3]\n */\n function dropRight(array, n, guard) {\n var length = array == null ? 0 : array.length;\n if (!length) {\n return [];\n }\n n = (guard || n === undefined) ? 1 : toInteger(n);\n n = length - n;\n return baseSlice(array, 0, n < 0 ? 0 : n);\n }\n\n /**\n * Creates a slice of `array` excluding elements dropped from the end.\n * Elements are dropped until `predicate` returns falsey. The predicate is\n * invoked with three arguments: (value, index, array).\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The array to query.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'active': true },\n * { 'user': 'fred', 'active': false },\n * { 'user': 'pebbles', 'active': false }\n * ];\n *\n * _.dropRightWhile(users, function(o) { return !o.active; });\n * // => objects for ['barney']\n *\n * // The `_.matches` iteratee shorthand.\n * _.dropRightWhile(users, { 'user': 'pebbles', 'active': false });\n * // => objects for ['barney', 'fred']\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.dropRightWhile(users, ['active', false]);\n * // => objects for ['barney']\n *\n * // The `_.property` iteratee shorthand.\n * _.dropRightWhile(users, 'active');\n * // => objects for ['barney', 'fred', 'pebbles']\n */\n function dropRightWhile(array, predicate) {\n return (array && array.length)\n ? baseWhile(array, getIteratee(predicate, 3), true, true)\n : [];\n }\n\n /**\n * Creates a slice of `array` excluding elements dropped from the beginning.\n * Elements are dropped until `predicate` returns falsey. The predicate is\n * invoked with three arguments: (value, index, array).\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The array to query.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'active': false },\n * { 'user': 'fred', 'active': false },\n * { 'user': 'pebbles', 'active': true }\n * ];\n *\n * _.dropWhile(users, function(o) { return !o.active; });\n * // => objects for ['pebbles']\n *\n * // The `_.matches` iteratee shorthand.\n * _.dropWhile(users, { 'user': 'barney', 'active': false });\n * // => objects for ['fred', 'pebbles']\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.dropWhile(users, ['active', false]);\n * // => objects for ['pebbles']\n *\n * // The `_.property` iteratee shorthand.\n * _.dropWhile(users, 'active');\n * // => objects for ['barney', 'fred', 'pebbles']\n */\n function dropWhile(array, predicate) {\n return (array && array.length)\n ? baseWhile(array, getIteratee(predicate, 3), true)\n : [];\n }\n\n /**\n * Fills elements of `array` with `value` from `start` up to, but not\n * including, `end`.\n *\n * **Note:** This method mutates `array`.\n *\n * @static\n * @memberOf _\n * @since 3.2.0\n * @category Array\n * @param {Array} array The array to fill.\n * @param {*} value The value to fill `array` with.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns `array`.\n * @example\n *\n * var array = [1, 2, 3];\n *\n * _.fill(array, 'a');\n * console.log(array);\n * // => ['a', 'a', 'a']\n *\n * _.fill(Array(3), 2);\n * // => [2, 2, 2]\n *\n * _.fill([4, 6, 8, 10], '*', 1, 3);\n * // => [4, '*', '*', 10]\n */\n function fill(array, value, start, end) {\n var length = array == null ? 0 : array.length;\n if (!length) {\n return [];\n }\n if (start && typeof start != 'number' && isIterateeCall(array, value, start)) {\n start = 0;\n end = length;\n }\n return baseFill(array, value, start, end);\n }\n\n /**\n * This method is like `_.find` except that it returns the index of the first\n * element `predicate` returns truthy for instead of the element itself.\n *\n * @static\n * @memberOf _\n * @since 1.1.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @param {number} [fromIndex=0] The index to search from.\n * @returns {number} Returns the index of the found element, else `-1`.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'active': false },\n * { 'user': 'fred', 'active': false },\n * { 'user': 'pebbles', 'active': true }\n * ];\n *\n * _.findIndex(users, function(o) { return o.user == 'barney'; });\n * // => 0\n *\n * // The `_.matches` iteratee shorthand.\n * _.findIndex(users, { 'user': 'fred', 'active': false });\n * // => 1\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.findIndex(users, ['active', false]);\n * // => 0\n *\n * // The `_.property` iteratee shorthand.\n * _.findIndex(users, 'active');\n * // => 2\n */\n function findIndex(array, predicate, fromIndex) {\n var length = array == null ? 0 : array.length;\n if (!length) {\n return -1;\n }\n var index = fromIndex == null ? 0 : toInteger(fromIndex);\n if (index < 0) {\n index = nativeMax(length + index, 0);\n }\n return baseFindIndex(array, getIteratee(predicate, 3), index);\n }\n\n /**\n * This method is like `_.findIndex` except that it iterates over elements\n * of `collection` from right to left.\n *\n * @static\n * @memberOf _\n * @since 2.0.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @param {number} [fromIndex=array.length-1] The index to search from.\n * @returns {number} Returns the index of the found element, else `-1`.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'active': true },\n * { 'user': 'fred', 'active': false },\n * { 'user': 'pebbles', 'active': false }\n * ];\n *\n * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; });\n * // => 2\n *\n * // The `_.matches` iteratee shorthand.\n * _.findLastIndex(users, { 'user': 'barney', 'active': true });\n * // => 0\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.findLastIndex(users, ['active', false]);\n * // => 2\n *\n * // The `_.property` iteratee shorthand.\n * _.findLastIndex(users, 'active');\n * // => 0\n */\n function findLastIndex(array, predicate, fromIndex) {\n var length = array == null ? 0 : array.length;\n if (!length) {\n return -1;\n }\n var index = length - 1;\n if (fromIndex !== undefined) {\n index = toInteger(fromIndex);\n index = fromIndex < 0\n ? nativeMax(length + index, 0)\n : nativeMin(index, length - 1);\n }\n return baseFindIndex(array, getIteratee(predicate, 3), index, true);\n }\n\n /**\n * Flattens `array` a single level deep.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to flatten.\n * @returns {Array} Returns the new flattened array.\n * @example\n *\n * _.flatten([1, [2, [3, [4]], 5]]);\n * // => [1, 2, [3, [4]], 5]\n */\n function flatten(array) {\n var length = array == null ? 0 : array.length;\n return length ? baseFlatten(array, 1) : [];\n }\n\n /**\n * Recursively flattens `array`.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The array to flatten.\n * @returns {Array} Returns the new flattened array.\n * @example\n *\n * _.flattenDeep([1, [2, [3, [4]], 5]]);\n * // => [1, 2, 3, 4, 5]\n */\n function flattenDeep(array) {\n var length = array == null ? 0 : array.length;\n return length ? baseFlatten(array, INFINITY) : [];\n }\n\n /**\n * Recursively flatten `array` up to `depth` times.\n *\n * @static\n * @memberOf _\n * @since 4.4.0\n * @category Array\n * @param {Array} array The array to flatten.\n * @param {number} [depth=1] The maximum recursion depth.\n * @returns {Array} Returns the new flattened array.\n * @example\n *\n * var array = [1, [2, [3, [4]], 5]];\n *\n * _.flattenDepth(array, 1);\n * // => [1, 2, [3, [4]], 5]\n *\n * _.flattenDepth(array, 2);\n * // => [1, 2, 3, [4], 5]\n */\n function flattenDepth(array, depth) {\n var length = array == null ? 0 : array.length;\n if (!length) {\n return [];\n }\n depth = depth === undefined ? 1 : toInteger(depth);\n return baseFlatten(array, depth);\n }\n\n /**\n * The inverse of `_.toPairs`; this method returns an object composed\n * from key-value `pairs`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} pairs The key-value pairs.\n * @returns {Object} Returns the new object.\n * @example\n *\n * _.fromPairs([['a', 1], ['b', 2]]);\n * // => { 'a': 1, 'b': 2 }\n */\n function fromPairs(pairs) {\n var index = -1,\n length = pairs == null ? 0 : pairs.length,\n result = {};\n\n while (++index < length) {\n var pair = pairs[index];\n result[pair[0]] = pair[1];\n }\n return result;\n }\n\n /**\n * Gets the first element of `array`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @alias first\n * @category Array\n * @param {Array} array The array to query.\n * @returns {*} Returns the first element of `array`.\n * @example\n *\n * _.head([1, 2, 3]);\n * // => 1\n *\n * _.head([]);\n * // => undefined\n */\n function head(array) {\n return (array && array.length) ? array[0] : undefined;\n }\n\n /**\n * Gets the index at which the first occurrence of `value` is found in `array`\n * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons. If `fromIndex` is negative, it's used as the\n * offset from the end of `array`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @param {number} [fromIndex=0] The index to search from.\n * @returns {number} Returns the index of the matched value, else `-1`.\n * @example\n *\n * _.indexOf([1, 2, 1, 2], 2);\n * // => 1\n *\n * // Search from the `fromIndex`.\n * _.indexOf([1, 2, 1, 2], 2, 2);\n * // => 3\n */\n function indexOf(array, value, fromIndex) {\n var length = array == null ? 0 : array.length;\n if (!length) {\n return -1;\n }\n var index = fromIndex == null ? 0 : toInteger(fromIndex);\n if (index < 0) {\n index = nativeMax(length + index, 0);\n }\n return baseIndexOf(array, value, index);\n }\n\n /**\n * Gets all but the last element of `array`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to query.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.initial([1, 2, 3]);\n * // => [1, 2]\n */\n function initial(array) {\n var length = array == null ? 0 : array.length;\n return length ? baseSlice(array, 0, -1) : [];\n }\n\n /**\n * Creates an array of unique values that are included in all given arrays\n * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons. The order and references of result values are\n * determined by the first array.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @returns {Array} Returns the new array of intersecting values.\n * @example\n *\n * _.intersection([2, 1], [2, 3]);\n * // => [2]\n */\n var intersection = baseRest(function(arrays) {\n var mapped = arrayMap(arrays, castArrayLikeObject);\n return (mapped.length && mapped[0] === arrays[0])\n ? baseIntersection(mapped)\n : [];\n });\n\n /**\n * This method is like `_.intersection` except that it accepts `iteratee`\n * which is invoked for each element of each `arrays` to generate the criterion\n * by which they're compared. The order and references of result values are\n * determined by the first array. The iteratee is invoked with one argument:\n * (value).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\n * @returns {Array} Returns the new array of intersecting values.\n * @example\n *\n * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor);\n * // => [2.1]\n *\n * // The `_.property` iteratee shorthand.\n * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');\n * // => [{ 'x': 1 }]\n */\n var intersectionBy = baseRest(function(arrays) {\n var iteratee = last(arrays),\n mapped = arrayMap(arrays, castArrayLikeObject);\n\n if (iteratee === last(mapped)) {\n iteratee = undefined;\n } else {\n mapped.pop();\n }\n return (mapped.length && mapped[0] === arrays[0])\n ? baseIntersection(mapped, getIteratee(iteratee, 2))\n : [];\n });\n\n /**\n * This method is like `_.intersection` except that it accepts `comparator`\n * which is invoked to compare elements of `arrays`. The order and references\n * of result values are determined by the first array. The comparator is\n * invoked with two arguments: (arrVal, othVal).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @param {Function} [comparator] The comparator invoked per element.\n * @returns {Array} Returns the new array of intersecting values.\n * @example\n *\n * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\n * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];\n *\n * _.intersectionWith(objects, others, _.isEqual);\n * // => [{ 'x': 1, 'y': 2 }]\n */\n var intersectionWith = baseRest(function(arrays) {\n var comparator = last(arrays),\n mapped = arrayMap(arrays, castArrayLikeObject);\n\n comparator = typeof comparator == 'function' ? comparator : undefined;\n if (comparator) {\n mapped.pop();\n }\n return (mapped.length && mapped[0] === arrays[0])\n ? baseIntersection(mapped, undefined, comparator)\n : [];\n });\n\n /**\n * Converts all elements in `array` into a string separated by `separator`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to convert.\n * @param {string} [separator=','] The element separator.\n * @returns {string} Returns the joined string.\n * @example\n *\n * _.join(['a', 'b', 'c'], '~');\n * // => 'a~b~c'\n */\n function join(array, separator) {\n return array == null ? '' : nativeJoin.call(array, separator);\n }\n\n /**\n * Gets the last element of `array`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to query.\n * @returns {*} Returns the last element of `array`.\n * @example\n *\n * _.last([1, 2, 3]);\n * // => 3\n */\n function last(array) {\n var length = array == null ? 0 : array.length;\n return length ? array[length - 1] : undefined;\n }\n\n /**\n * This method is like `_.indexOf` except that it iterates over elements of\n * `array` from right to left.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @param {number} [fromIndex=array.length-1] The index to search from.\n * @returns {number} Returns the index of the matched value, else `-1`.\n * @example\n *\n * _.lastIndexOf([1, 2, 1, 2], 2);\n * // => 3\n *\n * // Search from the `fromIndex`.\n * _.lastIndexOf([1, 2, 1, 2], 2, 2);\n * // => 1\n */\n function lastIndexOf(array, value, fromIndex) {\n var length = array == null ? 0 : array.length;\n if (!length) {\n return -1;\n }\n var index = length;\n if (fromIndex !== undefined) {\n index = toInteger(fromIndex);\n index = index < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1);\n }\n return value === value\n ? strictLastIndexOf(array, value, index)\n : baseFindIndex(array, baseIsNaN, index, true);\n }\n\n /**\n * Gets the element at index `n` of `array`. If `n` is negative, the nth\n * element from the end is returned.\n *\n * @static\n * @memberOf _\n * @since 4.11.0\n * @category Array\n * @param {Array} array The array to query.\n * @param {number} [n=0] The index of the element to return.\n * @returns {*} Returns the nth element of `array`.\n * @example\n *\n * var array = ['a', 'b', 'c', 'd'];\n *\n * _.nth(array, 1);\n * // => 'b'\n *\n * _.nth(array, -2);\n * // => 'c';\n */\n function nth(array, n) {\n return (array && array.length) ? baseNth(array, toInteger(n)) : undefined;\n }\n\n /**\n * Removes all given values from `array` using\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * **Note:** Unlike `_.without`, this method mutates `array`. Use `_.remove`\n * to remove elements from an array by predicate.\n *\n * @static\n * @memberOf _\n * @since 2.0.0\n * @category Array\n * @param {Array} array The array to modify.\n * @param {...*} [values] The values to remove.\n * @returns {Array} Returns `array`.\n * @example\n *\n * var array = ['a', 'b', 'c', 'a', 'b', 'c'];\n *\n * _.pull(array, 'a', 'c');\n * console.log(array);\n * // => ['b', 'b']\n */\n var pull = baseRest(pullAll);\n\n /**\n * This method is like `_.pull` except that it accepts an array of values to remove.\n *\n * **Note:** Unlike `_.difference`, this method mutates `array`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to modify.\n * @param {Array} values The values to remove.\n * @returns {Array} Returns `array`.\n * @example\n *\n * var array = ['a', 'b', 'c', 'a', 'b', 'c'];\n *\n * _.pullAll(array, ['a', 'c']);\n * console.log(array);\n * // => ['b', 'b']\n */\n function pullAll(array, values) {\n return (array && array.length && values && values.length)\n ? basePullAll(array, values)\n : array;\n }\n\n /**\n * This method is like `_.pullAll` except that it accepts `iteratee` which is\n * invoked for each element of `array` and `values` to generate the criterion\n * by which they're compared. The iteratee is invoked with one argument: (value).\n *\n * **Note:** Unlike `_.differenceBy`, this method mutates `array`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to modify.\n * @param {Array} values The values to remove.\n * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\n * @returns {Array} Returns `array`.\n * @example\n *\n * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }];\n *\n * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x');\n * console.log(array);\n * // => [{ 'x': 2 }]\n */\n function pullAllBy(array, values, iteratee) {\n return (array && array.length && values && values.length)\n ? basePullAll(array, values, getIteratee(iteratee, 2))\n : array;\n }\n\n /**\n * This method is like `_.pullAll` except that it accepts `comparator` which\n * is invoked to compare elements of `array` to `values`. The comparator is\n * invoked with two arguments: (arrVal, othVal).\n *\n * **Note:** Unlike `_.differenceWith`, this method mutates `array`.\n *\n * @static\n * @memberOf _\n * @since 4.6.0\n * @category Array\n * @param {Array} array The array to modify.\n * @param {Array} values The values to remove.\n * @param {Function} [comparator] The comparator invoked per element.\n * @returns {Array} Returns `array`.\n * @example\n *\n * var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }];\n *\n * _.pullAllWith(array, [{ 'x': 3, 'y': 4 }], _.isEqual);\n * console.log(array);\n * // => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }]\n */\n function pullAllWith(array, values, comparator) {\n return (array && array.length && values && values.length)\n ? basePullAll(array, values, undefined, comparator)\n : array;\n }\n\n /**\n * Removes elements from `array` corresponding to `indexes` and returns an\n * array of removed elements.\n *\n * **Note:** Unlike `_.at`, this method mutates `array`.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The array to modify.\n * @param {...(number|number[])} [indexes] The indexes of elements to remove.\n * @returns {Array} Returns the new array of removed elements.\n * @example\n *\n * var array = ['a', 'b', 'c', 'd'];\n * var pulled = _.pullAt(array, [1, 3]);\n *\n * console.log(array);\n * // => ['a', 'c']\n *\n * console.log(pulled);\n * // => ['b', 'd']\n */\n var pullAt = flatRest(function(array, indexes) {\n var length = array == null ? 0 : array.length,\n result = baseAt(array, indexes);\n\n basePullAt(array, arrayMap(indexes, function(index) {\n return isIndex(index, length) ? +index : index;\n }).sort(compareAscending));\n\n return result;\n });\n\n /**\n * Removes all elements from `array` that `predicate` returns truthy for\n * and returns an array of the removed elements. The predicate is invoked\n * with three arguments: (value, index, array).\n *\n * **Note:** Unlike `_.filter`, this method mutates `array`. Use `_.pull`\n * to pull elements from an array by value.\n *\n * @static\n * @memberOf _\n * @since 2.0.0\n * @category Array\n * @param {Array} array The array to modify.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the new array of removed elements.\n * @example\n *\n * var array = [1, 2, 3, 4];\n * var evens = _.remove(array, function(n) {\n * return n % 2 == 0;\n * });\n *\n * console.log(array);\n * // => [1, 3]\n *\n * console.log(evens);\n * // => [2, 4]\n */\n function remove(array, predicate) {\n var result = [];\n if (!(array && array.length)) {\n return result;\n }\n var index = -1,\n indexes = [],\n length = array.length;\n\n predicate = getIteratee(predicate, 3);\n while (++index < length) {\n var value = array[index];\n if (predicate(value, index, array)) {\n result.push(value);\n indexes.push(index);\n }\n }\n basePullAt(array, indexes);\n return result;\n }\n\n /**\n * Reverses `array` so that the first element becomes the last, the second\n * element becomes the second to last, and so on.\n *\n * **Note:** This method mutates `array` and is based on\n * [`Array#reverse`](https://mdn.io/Array/reverse).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to modify.\n * @returns {Array} Returns `array`.\n * @example\n *\n * var array = [1, 2, 3];\n *\n * _.reverse(array);\n * // => [3, 2, 1]\n *\n * console.log(array);\n * // => [3, 2, 1]\n */\n function reverse(array) {\n return array == null ? array : nativeReverse.call(array);\n }\n\n /**\n * Creates a slice of `array` from `start` up to, but not including, `end`.\n *\n * **Note:** This method is used instead of\n * [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are\n * returned.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The array to slice.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the slice of `array`.\n */\n function slice(array, start, end) {\n var length = array == null ? 0 : array.length;\n if (!length) {\n return [];\n }\n if (end && typeof end != 'number' && isIterateeCall(array, start, end)) {\n start = 0;\n end = length;\n }\n else {\n start = start == null ? 0 : toInteger(start);\n end = end === undefined ? length : toInteger(end);\n }\n return baseSlice(array, start, end);\n }\n\n /**\n * Uses a binary search to determine the lowest index at which `value`\n * should be inserted into `array` in order to maintain its sort order.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The sorted array to inspect.\n * @param {*} value The value to evaluate.\n * @returns {number} Returns the index at which `value` should be inserted\n * into `array`.\n * @example\n *\n * _.sortedIndex([30, 50], 40);\n * // => 1\n */\n function sortedIndex(array, value) {\n return baseSortedIndex(array, value);\n }\n\n /**\n * This method is like `_.sortedIndex` except that it accepts `iteratee`\n * which is invoked for `value` and each element of `array` to compute their\n * sort ranking. The iteratee is invoked with one argument: (value).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The sorted array to inspect.\n * @param {*} value The value to evaluate.\n * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\n * @returns {number} Returns the index at which `value` should be inserted\n * into `array`.\n * @example\n *\n * var objects = [{ 'x': 4 }, { 'x': 5 }];\n *\n * _.sortedIndexBy(objects, { 'x': 4 }, function(o) { return o.x; });\n * // => 0\n *\n * // The `_.property` iteratee shorthand.\n * _.sortedIndexBy(objects, { 'x': 4 }, 'x');\n * // => 0\n */\n function sortedIndexBy(array, value, iteratee) {\n return baseSortedIndexBy(array, value, getIteratee(iteratee, 2));\n }\n\n /**\n * This method is like `_.indexOf` except that it performs a binary\n * search on a sorted `array`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @returns {number} Returns the index of the matched value, else `-1`.\n * @example\n *\n * _.sortedIndexOf([4, 5, 5, 5, 6], 5);\n * // => 1\n */\n function sortedIndexOf(array, value) {\n var length = array == null ? 0 : array.length;\n if (length) {\n var index = baseSortedIndex(array, value);\n if (index < length && eq(array[index], value)) {\n return index;\n }\n }\n return -1;\n }\n\n /**\n * This method is like `_.sortedIndex` except that it returns the highest\n * index at which `value` should be inserted into `array` in order to\n * maintain its sort order.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The sorted array to inspect.\n * @param {*} value The value to evaluate.\n * @returns {number} Returns the index at which `value` should be inserted\n * into `array`.\n * @example\n *\n * _.sortedLastIndex([4, 5, 5, 5, 6], 5);\n * // => 4\n */\n function sortedLastIndex(array, value) {\n return baseSortedIndex(array, value, true);\n }\n\n /**\n * This method is like `_.sortedLastIndex` except that it accepts `iteratee`\n * which is invoked for `value` and each element of `array` to compute their\n * sort ranking. The iteratee is invoked with one argument: (value).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The sorted array to inspect.\n * @param {*} value The value to evaluate.\n * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\n * @returns {number} Returns the index at which `value` should be inserted\n * into `array`.\n * @example\n *\n * var objects = [{ 'x': 4 }, { 'x': 5 }];\n *\n * _.sortedLastIndexBy(objects, { 'x': 4 }, function(o) { return o.x; });\n * // => 1\n *\n * // The `_.property` iteratee shorthand.\n * _.sortedLastIndexBy(objects, { 'x': 4 }, 'x');\n * // => 1\n */\n function sortedLastIndexBy(array, value, iteratee) {\n return baseSortedIndexBy(array, value, getIteratee(iteratee, 2), true);\n }\n\n /**\n * This method is like `_.lastIndexOf` except that it performs a binary\n * search on a sorted `array`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {*} value The value to search for.\n * @returns {number} Returns the index of the matched value, else `-1`.\n * @example\n *\n * _.sortedLastIndexOf([4, 5, 5, 5, 6], 5);\n * // => 3\n */\n function sortedLastIndexOf(array, value) {\n var length = array == null ? 0 : array.length;\n if (length) {\n var index = baseSortedIndex(array, value, true) - 1;\n if (eq(array[index], value)) {\n return index;\n }\n }\n return -1;\n }\n\n /**\n * This method is like `_.uniq` except that it's designed and optimized\n * for sorted arrays.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @returns {Array} Returns the new duplicate free array.\n * @example\n *\n * _.sortedUniq([1, 1, 2]);\n * // => [1, 2]\n */\n function sortedUniq(array) {\n return (array && array.length)\n ? baseSortedUniq(array)\n : [];\n }\n\n /**\n * This method is like `_.uniqBy` except that it's designed and optimized\n * for sorted arrays.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {Function} [iteratee] The iteratee invoked per element.\n * @returns {Array} Returns the new duplicate free array.\n * @example\n *\n * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor);\n * // => [1.1, 2.3]\n */\n function sortedUniqBy(array, iteratee) {\n return (array && array.length)\n ? baseSortedUniq(array, getIteratee(iteratee, 2))\n : [];\n }\n\n /**\n * Gets all but the first element of `array`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to query.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.tail([1, 2, 3]);\n * // => [2, 3]\n */\n function tail(array) {\n var length = array == null ? 0 : array.length;\n return length ? baseSlice(array, 1, length) : [];\n }\n\n /**\n * Creates a slice of `array` with `n` elements taken from the beginning.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to query.\n * @param {number} [n=1] The number of elements to take.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.take([1, 2, 3]);\n * // => [1]\n *\n * _.take([1, 2, 3], 2);\n * // => [1, 2]\n *\n * _.take([1, 2, 3], 5);\n * // => [1, 2, 3]\n *\n * _.take([1, 2, 3], 0);\n * // => []\n */\n function take(array, n, guard) {\n if (!(array && array.length)) {\n return [];\n }\n n = (guard || n === undefined) ? 1 : toInteger(n);\n return baseSlice(array, 0, n < 0 ? 0 : n);\n }\n\n /**\n * Creates a slice of `array` with `n` elements taken from the end.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The array to query.\n * @param {number} [n=1] The number of elements to take.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.takeRight([1, 2, 3]);\n * // => [3]\n *\n * _.takeRight([1, 2, 3], 2);\n * // => [2, 3]\n *\n * _.takeRight([1, 2, 3], 5);\n * // => [1, 2, 3]\n *\n * _.takeRight([1, 2, 3], 0);\n * // => []\n */\n function takeRight(array, n, guard) {\n var length = array == null ? 0 : array.length;\n if (!length) {\n return [];\n }\n n = (guard || n === undefined) ? 1 : toInteger(n);\n n = length - n;\n return baseSlice(array, n < 0 ? 0 : n, length);\n }\n\n /**\n * Creates a slice of `array` with elements taken from the end. Elements are\n * taken until `predicate` returns falsey. The predicate is invoked with\n * three arguments: (value, index, array).\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The array to query.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'active': true },\n * { 'user': 'fred', 'active': false },\n * { 'user': 'pebbles', 'active': false }\n * ];\n *\n * _.takeRightWhile(users, function(o) { return !o.active; });\n * // => objects for ['fred', 'pebbles']\n *\n * // The `_.matches` iteratee shorthand.\n * _.takeRightWhile(users, { 'user': 'pebbles', 'active': false });\n * // => objects for ['pebbles']\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.takeRightWhile(users, ['active', false]);\n * // => objects for ['fred', 'pebbles']\n *\n * // The `_.property` iteratee shorthand.\n * _.takeRightWhile(users, 'active');\n * // => []\n */\n function takeRightWhile(array, predicate) {\n return (array && array.length)\n ? baseWhile(array, getIteratee(predicate, 3), false, true)\n : [];\n }\n\n /**\n * Creates a slice of `array` with elements taken from the beginning. Elements\n * are taken until `predicate` returns falsey. The predicate is invoked with\n * three arguments: (value, index, array).\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The array to query.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'active': false },\n * { 'user': 'fred', 'active': false },\n * { 'user': 'pebbles', 'active': true }\n * ];\n *\n * _.takeWhile(users, function(o) { return !o.active; });\n * // => objects for ['barney', 'fred']\n *\n * // The `_.matches` iteratee shorthand.\n * _.takeWhile(users, { 'user': 'barney', 'active': false });\n * // => objects for ['barney']\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.takeWhile(users, ['active', false]);\n * // => objects for ['barney', 'fred']\n *\n * // The `_.property` iteratee shorthand.\n * _.takeWhile(users, 'active');\n * // => []\n */\n function takeWhile(array, predicate) {\n return (array && array.length)\n ? baseWhile(array, getIteratee(predicate, 3))\n : [];\n }\n\n /**\n * Creates an array of unique values, in order, from all given arrays using\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @returns {Array} Returns the new array of combined values.\n * @example\n *\n * _.union([2], [1, 2]);\n * // => [2, 1]\n */\n var union = baseRest(function(arrays) {\n return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true));\n });\n\n /**\n * This method is like `_.union` except that it accepts `iteratee` which is\n * invoked for each element of each `arrays` to generate the criterion by\n * which uniqueness is computed. Result values are chosen from the first\n * array in which the value occurs. The iteratee is invoked with one argument:\n * (value).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\n * @returns {Array} Returns the new array of combined values.\n * @example\n *\n * _.unionBy([2.1], [1.2, 2.3], Math.floor);\n * // => [2.1, 1.2]\n *\n * // The `_.property` iteratee shorthand.\n * _.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');\n * // => [{ 'x': 1 }, { 'x': 2 }]\n */\n var unionBy = baseRest(function(arrays) {\n var iteratee = last(arrays);\n if (isArrayLikeObject(iteratee)) {\n iteratee = undefined;\n }\n return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), getIteratee(iteratee, 2));\n });\n\n /**\n * This method is like `_.union` except that it accepts `comparator` which\n * is invoked to compare elements of `arrays`. Result values are chosen from\n * the first array in which the value occurs. The comparator is invoked\n * with two arguments: (arrVal, othVal).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @param {Function} [comparator] The comparator invoked per element.\n * @returns {Array} Returns the new array of combined values.\n * @example\n *\n * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\n * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];\n *\n * _.unionWith(objects, others, _.isEqual);\n * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }]\n */\n var unionWith = baseRest(function(arrays) {\n var comparator = last(arrays);\n comparator = typeof comparator == 'function' ? comparator : undefined;\n return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), undefined, comparator);\n });\n\n /**\n * Creates a duplicate-free version of an array, using\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons, in which only the first occurrence of each element\n * is kept. The order of result values is determined by the order they occur\n * in the array.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @returns {Array} Returns the new duplicate free array.\n * @example\n *\n * _.uniq([2, 1, 2]);\n * // => [2, 1]\n */\n function uniq(array) {\n return (array && array.length) ? baseUniq(array) : [];\n }\n\n /**\n * This method is like `_.uniq` except that it accepts `iteratee` which is\n * invoked for each element in `array` to generate the criterion by which\n * uniqueness is computed. The order of result values is determined by the\n * order they occur in the array. The iteratee is invoked with one argument:\n * (value).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\n * @returns {Array} Returns the new duplicate free array.\n * @example\n *\n * _.uniqBy([2.1, 1.2, 2.3], Math.floor);\n * // => [2.1, 1.2]\n *\n * // The `_.property` iteratee shorthand.\n * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x');\n * // => [{ 'x': 1 }, { 'x': 2 }]\n */\n function uniqBy(array, iteratee) {\n return (array && array.length) ? baseUniq(array, getIteratee(iteratee, 2)) : [];\n }\n\n /**\n * This method is like `_.uniq` except that it accepts `comparator` which\n * is invoked to compare elements of `array`. The order of result values is\n * determined by the order they occur in the array.The comparator is invoked\n * with two arguments: (arrVal, othVal).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {Function} [comparator] The comparator invoked per element.\n * @returns {Array} Returns the new duplicate free array.\n * @example\n *\n * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }];\n *\n * _.uniqWith(objects, _.isEqual);\n * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]\n */\n function uniqWith(array, comparator) {\n comparator = typeof comparator == 'function' ? comparator : undefined;\n return (array && array.length) ? baseUniq(array, undefined, comparator) : [];\n }\n\n /**\n * This method is like `_.zip` except that it accepts an array of grouped\n * elements and creates an array regrouping the elements to their pre-zip\n * configuration.\n *\n * @static\n * @memberOf _\n * @since 1.2.0\n * @category Array\n * @param {Array} array The array of grouped elements to process.\n * @returns {Array} Returns the new array of regrouped elements.\n * @example\n *\n * var zipped = _.zip(['a', 'b'], [1, 2], [true, false]);\n * // => [['a', 1, true], ['b', 2, false]]\n *\n * _.unzip(zipped);\n * // => [['a', 'b'], [1, 2], [true, false]]\n */\n function unzip(array) {\n if (!(array && array.length)) {\n return [];\n }\n var length = 0;\n array = arrayFilter(array, function(group) {\n if (isArrayLikeObject(group)) {\n length = nativeMax(group.length, length);\n return true;\n }\n });\n return baseTimes(length, function(index) {\n return arrayMap(array, baseProperty(index));\n });\n }\n\n /**\n * This method is like `_.unzip` except that it accepts `iteratee` to specify\n * how regrouped values should be combined. The iteratee is invoked with the\n * elements of each group: (...group).\n *\n * @static\n * @memberOf _\n * @since 3.8.0\n * @category Array\n * @param {Array} array The array of grouped elements to process.\n * @param {Function} [iteratee=_.identity] The function to combine\n * regrouped values.\n * @returns {Array} Returns the new array of regrouped elements.\n * @example\n *\n * var zipped = _.zip([1, 2], [10, 20], [100, 200]);\n * // => [[1, 10, 100], [2, 20, 200]]\n *\n * _.unzipWith(zipped, _.add);\n * // => [3, 30, 300]\n */\n function unzipWith(array, iteratee) {\n if (!(array && array.length)) {\n return [];\n }\n var result = unzip(array);\n if (iteratee == null) {\n return result;\n }\n return arrayMap(result, function(group) {\n return apply(iteratee, undefined, group);\n });\n }\n\n /**\n * Creates an array excluding all given values using\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * **Note:** Unlike `_.pull`, this method returns a new array.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to inspect.\n * @param {...*} [values] The values to exclude.\n * @returns {Array} Returns the new array of filtered values.\n * @see _.difference, _.xor\n * @example\n *\n * _.without([2, 1, 2, 3], 1, 2);\n * // => [3]\n */\n var without = baseRest(function(array, values) {\n return isArrayLikeObject(array)\n ? baseDifference(array, values)\n : [];\n });\n\n /**\n * Creates an array of unique values that is the\n * [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference)\n * of the given arrays. The order of result values is determined by the order\n * they occur in the arrays.\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @returns {Array} Returns the new array of filtered values.\n * @see _.difference, _.without\n * @example\n *\n * _.xor([2, 1], [2, 3]);\n * // => [1, 3]\n */\n var xor = baseRest(function(arrays) {\n return baseXor(arrayFilter(arrays, isArrayLikeObject));\n });\n\n /**\n * This method is like `_.xor` except that it accepts `iteratee` which is\n * invoked for each element of each `arrays` to generate the criterion by\n * which by which they're compared. The order of result values is determined\n * by the order they occur in the arrays. The iteratee is invoked with one\n * argument: (value).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\n * @returns {Array} Returns the new array of filtered values.\n * @example\n *\n * _.xorBy([2.1, 1.2], [2.3, 3.4], Math.floor);\n * // => [1.2, 3.4]\n *\n * // The `_.property` iteratee shorthand.\n * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');\n * // => [{ 'x': 2 }]\n */\n var xorBy = baseRest(function(arrays) {\n var iteratee = last(arrays);\n if (isArrayLikeObject(iteratee)) {\n iteratee = undefined;\n }\n return baseXor(arrayFilter(arrays, isArrayLikeObject), getIteratee(iteratee, 2));\n });\n\n /**\n * This method is like `_.xor` except that it accepts `comparator` which is\n * invoked to compare elements of `arrays`. The order of result values is\n * determined by the order they occur in the arrays. The comparator is invoked\n * with two arguments: (arrVal, othVal).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {...Array} [arrays] The arrays to inspect.\n * @param {Function} [comparator] The comparator invoked per element.\n * @returns {Array} Returns the new array of filtered values.\n * @example\n *\n * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\n * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];\n *\n * _.xorWith(objects, others, _.isEqual);\n * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }]\n */\n var xorWith = baseRest(function(arrays) {\n var comparator = last(arrays);\n comparator = typeof comparator == 'function' ? comparator : undefined;\n return baseXor(arrayFilter(arrays, isArrayLikeObject), undefined, comparator);\n });\n\n /**\n * Creates an array of grouped elements, the first of which contains the\n * first elements of the given arrays, the second of which contains the\n * second elements of the given arrays, and so on.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {...Array} [arrays] The arrays to process.\n * @returns {Array} Returns the new array of grouped elements.\n * @example\n *\n * _.zip(['a', 'b'], [1, 2], [true, false]);\n * // => [['a', 1, true], ['b', 2, false]]\n */\n var zip = baseRest(unzip);\n\n /**\n * This method is like `_.fromPairs` except that it accepts two arrays,\n * one of property identifiers and one of corresponding values.\n *\n * @static\n * @memberOf _\n * @since 0.4.0\n * @category Array\n * @param {Array} [props=[]] The property identifiers.\n * @param {Array} [values=[]] The property values.\n * @returns {Object} Returns the new object.\n * @example\n *\n * _.zipObject(['a', 'b'], [1, 2]);\n * // => { 'a': 1, 'b': 2 }\n */\n function zipObject(props, values) {\n return baseZipObject(props || [], values || [], assignValue);\n }\n\n /**\n * This method is like `_.zipObject` except that it supports property paths.\n *\n * @static\n * @memberOf _\n * @since 4.1.0\n * @category Array\n * @param {Array} [props=[]] The property identifiers.\n * @param {Array} [values=[]] The property values.\n * @returns {Object} Returns the new object.\n * @example\n *\n * _.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]);\n * // => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } }\n */\n function zipObjectDeep(props, values) {\n return baseZipObject(props || [], values || [], baseSet);\n }\n\n /**\n * This method is like `_.zip` except that it accepts `iteratee` to specify\n * how grouped values should be combined. The iteratee is invoked with the\n * elements of each group: (...group).\n *\n * @static\n * @memberOf _\n * @since 3.8.0\n * @category Array\n * @param {...Array} [arrays] The arrays to process.\n * @param {Function} [iteratee=_.identity] The function to combine\n * grouped values.\n * @returns {Array} Returns the new array of grouped elements.\n * @example\n *\n * _.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) {\n * return a + b + c;\n * });\n * // => [111, 222]\n */\n var zipWith = baseRest(function(arrays) {\n var length = arrays.length,\n iteratee = length > 1 ? arrays[length - 1] : undefined;\n\n iteratee = typeof iteratee == 'function' ? (arrays.pop(), iteratee) : undefined;\n return unzipWith(arrays, iteratee);\n });\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates a `lodash` wrapper instance that wraps `value` with explicit method\n * chain sequences enabled. The result of such sequences must be unwrapped\n * with `_#value`.\n *\n * @static\n * @memberOf _\n * @since 1.3.0\n * @category Seq\n * @param {*} value The value to wrap.\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36 },\n * { 'user': 'fred', 'age': 40 },\n * { 'user': 'pebbles', 'age': 1 }\n * ];\n *\n * var youngest = _\n * .chain(users)\n * .sortBy('age')\n * .map(function(o) {\n * return o.user + ' is ' + o.age;\n * })\n * .head()\n * .value();\n * // => 'pebbles is 1'\n */\n function chain(value) {\n var result = lodash(value);\n result.__chain__ = true;\n return result;\n }\n\n /**\n * This method invokes `interceptor` and returns `value`. The interceptor\n * is invoked with one argument; (value). The purpose of this method is to\n * \"tap into\" a method chain sequence in order to modify intermediate results.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Seq\n * @param {*} value The value to provide to `interceptor`.\n * @param {Function} interceptor The function to invoke.\n * @returns {*} Returns `value`.\n * @example\n *\n * _([1, 2, 3])\n * .tap(function(array) {\n * // Mutate input array.\n * array.pop();\n * })\n * .reverse()\n * .value();\n * // => [2, 1]\n */\n function tap(value, interceptor) {\n interceptor(value);\n return value;\n }\n\n /**\n * This method is like `_.tap` except that it returns the result of `interceptor`.\n * The purpose of this method is to \"pass thru\" values replacing intermediate\n * results in a method chain sequence.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Seq\n * @param {*} value The value to provide to `interceptor`.\n * @param {Function} interceptor The function to invoke.\n * @returns {*} Returns the result of `interceptor`.\n * @example\n *\n * _(' abc ')\n * .chain()\n * .trim()\n * .thru(function(value) {\n * return [value];\n * })\n * .value();\n * // => ['abc']\n */\n function thru(value, interceptor) {\n return interceptor(value);\n }\n\n /**\n * This method is the wrapper version of `_.at`.\n *\n * @name at\n * @memberOf _\n * @since 1.0.0\n * @category Seq\n * @param {...(string|string[])} [paths] The property paths to pick.\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };\n *\n * _(object).at(['a[0].b.c', 'a[1]']).value();\n * // => [3, 4]\n */\n var wrapperAt = flatRest(function(paths) {\n var length = paths.length,\n start = length ? paths[0] : 0,\n value = this.__wrapped__,\n interceptor = function(object) { return baseAt(object, paths); };\n\n if (length > 1 || this.__actions__.length ||\n !(value instanceof LazyWrapper) || !isIndex(start)) {\n return this.thru(interceptor);\n }\n value = value.slice(start, +start + (length ? 1 : 0));\n value.__actions__.push({\n 'func': thru,\n 'args': [interceptor],\n 'thisArg': undefined\n });\n return new LodashWrapper(value, this.__chain__).thru(function(array) {\n if (length && !array.length) {\n array.push(undefined);\n }\n return array;\n });\n });\n\n /**\n * Creates a `lodash` wrapper instance with explicit method chain sequences enabled.\n *\n * @name chain\n * @memberOf _\n * @since 0.1.0\n * @category Seq\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36 },\n * { 'user': 'fred', 'age': 40 }\n * ];\n *\n * // A sequence without explicit chaining.\n * _(users).head();\n * // => { 'user': 'barney', 'age': 36 }\n *\n * // A sequence with explicit chaining.\n * _(users)\n * .chain()\n * .head()\n * .pick('user')\n * .value();\n * // => { 'user': 'barney' }\n */\n function wrapperChain() {\n return chain(this);\n }\n\n /**\n * Executes the chain sequence and returns the wrapped result.\n *\n * @name commit\n * @memberOf _\n * @since 3.2.0\n * @category Seq\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * var array = [1, 2];\n * var wrapped = _(array).push(3);\n *\n * console.log(array);\n * // => [1, 2]\n *\n * wrapped = wrapped.commit();\n * console.log(array);\n * // => [1, 2, 3]\n *\n * wrapped.last();\n * // => 3\n *\n * console.log(array);\n * // => [1, 2, 3]\n */\n function wrapperCommit() {\n return new LodashWrapper(this.value(), this.__chain__);\n }\n\n /**\n * Gets the next value on a wrapped object following the\n * [iterator protocol](https://mdn.io/iteration_protocols#iterator).\n *\n * @name next\n * @memberOf _\n * @since 4.0.0\n * @category Seq\n * @returns {Object} Returns the next iterator value.\n * @example\n *\n * var wrapped = _([1, 2]);\n *\n * wrapped.next();\n * // => { 'done': false, 'value': 1 }\n *\n * wrapped.next();\n * // => { 'done': false, 'value': 2 }\n *\n * wrapped.next();\n * // => { 'done': true, 'value': undefined }\n */\n function wrapperNext() {\n if (this.__values__ === undefined) {\n this.__values__ = toArray(this.value());\n }\n var done = this.__index__ >= this.__values__.length,\n value = done ? undefined : this.__values__[this.__index__++];\n\n return { 'done': done, 'value': value };\n }\n\n /**\n * Enables the wrapper to be iterable.\n *\n * @name Symbol.iterator\n * @memberOf _\n * @since 4.0.0\n * @category Seq\n * @returns {Object} Returns the wrapper object.\n * @example\n *\n * var wrapped = _([1, 2]);\n *\n * wrapped[Symbol.iterator]() === wrapped;\n * // => true\n *\n * Array.from(wrapped);\n * // => [1, 2]\n */\n function wrapperToIterator() {\n return this;\n }\n\n /**\n * Creates a clone of the chain sequence planting `value` as the wrapped value.\n *\n * @name plant\n * @memberOf _\n * @since 3.2.0\n * @category Seq\n * @param {*} value The value to plant.\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * function square(n) {\n * return n * n;\n * }\n *\n * var wrapped = _([1, 2]).map(square);\n * var other = wrapped.plant([3, 4]);\n *\n * other.value();\n * // => [9, 16]\n *\n * wrapped.value();\n * // => [1, 4]\n */\n function wrapperPlant(value) {\n var result,\n parent = this;\n\n while (parent instanceof baseLodash) {\n var clone = wrapperClone(parent);\n clone.__index__ = 0;\n clone.__values__ = undefined;\n if (result) {\n previous.__wrapped__ = clone;\n } else {\n result = clone;\n }\n var previous = clone;\n parent = parent.__wrapped__;\n }\n previous.__wrapped__ = value;\n return result;\n }\n\n /**\n * This method is the wrapper version of `_.reverse`.\n *\n * **Note:** This method mutates the wrapped array.\n *\n * @name reverse\n * @memberOf _\n * @since 0.1.0\n * @category Seq\n * @returns {Object} Returns the new `lodash` wrapper instance.\n * @example\n *\n * var array = [1, 2, 3];\n *\n * _(array).reverse().value()\n * // => [3, 2, 1]\n *\n * console.log(array);\n * // => [3, 2, 1]\n */\n function wrapperReverse() {\n var value = this.__wrapped__;\n if (value instanceof LazyWrapper) {\n var wrapped = value;\n if (this.__actions__.length) {\n wrapped = new LazyWrapper(this);\n }\n wrapped = wrapped.reverse();\n wrapped.__actions__.push({\n 'func': thru,\n 'args': [reverse],\n 'thisArg': undefined\n });\n return new LodashWrapper(wrapped, this.__chain__);\n }\n return this.thru(reverse);\n }\n\n /**\n * Executes the chain sequence to resolve the unwrapped value.\n *\n * @name value\n * @memberOf _\n * @since 0.1.0\n * @alias toJSON, valueOf\n * @category Seq\n * @returns {*} Returns the resolved unwrapped value.\n * @example\n *\n * _([1, 2, 3]).value();\n * // => [1, 2, 3]\n */\n function wrapperValue() {\n return baseWrapperValue(this.__wrapped__, this.__actions__);\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Creates an object composed of keys generated from the results of running\n * each element of `collection` thru `iteratee`. The corresponding value of\n * each key is the number of times the key was returned by `iteratee`. The\n * iteratee is invoked with one argument: (value).\n *\n * @static\n * @memberOf _\n * @since 0.5.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The iteratee to transform keys.\n * @returns {Object} Returns the composed aggregate object.\n * @example\n *\n * _.countBy([6.1, 4.2, 6.3], Math.floor);\n * // => { '4': 1, '6': 2 }\n *\n * // The `_.property` iteratee shorthand.\n * _.countBy(['one', 'two', 'three'], 'length');\n * // => { '3': 2, '5': 1 }\n */\n var countBy = createAggregator(function(result, value, key) {\n if (hasOwnProperty.call(result, key)) {\n ++result[key];\n } else {\n baseAssignValue(result, key, 1);\n }\n });\n\n /**\n * Checks if `predicate` returns truthy for **all** elements of `collection`.\n * Iteration is stopped once `predicate` returns falsey. The predicate is\n * invoked with three arguments: (value, index|key, collection).\n *\n * **Note:** This method returns `true` for\n * [empty collections](https://en.wikipedia.org/wiki/Empty_set) because\n * [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of\n * elements of empty collections.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {boolean} Returns `true` if all elements pass the predicate check,\n * else `false`.\n * @example\n *\n * _.every([true, 1, null, 'yes'], Boolean);\n * // => false\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': false },\n * { 'user': 'fred', 'age': 40, 'active': false }\n * ];\n *\n * // The `_.matches` iteratee shorthand.\n * _.every(users, { 'user': 'barney', 'active': false });\n * // => false\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.every(users, ['active', false]);\n * // => true\n *\n * // The `_.property` iteratee shorthand.\n * _.every(users, 'active');\n * // => false\n */\n function every(collection, predicate, guard) {\n var func = isArray(collection) ? arrayEvery : baseEvery;\n if (guard && isIterateeCall(collection, predicate, guard)) {\n predicate = undefined;\n }\n return func(collection, getIteratee(predicate, 3));\n }\n\n /**\n * Iterates over elements of `collection`, returning an array of all elements\n * `predicate` returns truthy for. The predicate is invoked with three\n * arguments: (value, index|key, collection).\n *\n * **Note:** Unlike `_.remove`, this method returns a new array.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n * @see _.reject\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': true },\n * { 'user': 'fred', 'age': 40, 'active': false }\n * ];\n *\n * _.filter(users, function(o) { return !o.active; });\n * // => objects for ['fred']\n *\n * // The `_.matches` iteratee shorthand.\n * _.filter(users, { 'age': 36, 'active': true });\n * // => objects for ['barney']\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.filter(users, ['active', false]);\n * // => objects for ['fred']\n *\n * // The `_.property` iteratee shorthand.\n * _.filter(users, 'active');\n * // => objects for ['barney']\n */\n function filter(collection, predicate) {\n var func = isArray(collection) ? arrayFilter : baseFilter;\n return func(collection, getIteratee(predicate, 3));\n }\n\n /**\n * Iterates over elements of `collection`, returning the first element\n * `predicate` returns truthy for. The predicate is invoked with three\n * arguments: (value, index|key, collection).\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to inspect.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @param {number} [fromIndex=0] The index to search from.\n * @returns {*} Returns the matched element, else `undefined`.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': true },\n * { 'user': 'fred', 'age': 40, 'active': false },\n * { 'user': 'pebbles', 'age': 1, 'active': true }\n * ];\n *\n * _.find(users, function(o) { return o.age < 40; });\n * // => object for 'barney'\n *\n * // The `_.matches` iteratee shorthand.\n * _.find(users, { 'age': 1, 'active': true });\n * // => object for 'pebbles'\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.find(users, ['active', false]);\n * // => object for 'fred'\n *\n * // The `_.property` iteratee shorthand.\n * _.find(users, 'active');\n * // => object for 'barney'\n */\n var find = createFind(findIndex);\n\n /**\n * This method is like `_.find` except that it iterates over elements of\n * `collection` from right to left.\n *\n * @static\n * @memberOf _\n * @since 2.0.0\n * @category Collection\n * @param {Array|Object} collection The collection to inspect.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @param {number} [fromIndex=collection.length-1] The index to search from.\n * @returns {*} Returns the matched element, else `undefined`.\n * @example\n *\n * _.findLast([1, 2, 3, 4], function(n) {\n * return n % 2 == 1;\n * });\n * // => 3\n */\n var findLast = createFind(findLastIndex);\n\n /**\n * Creates a flattened array of values by running each element in `collection`\n * thru `iteratee` and flattening the mapped results. The iteratee is invoked\n * with three arguments: (value, index|key, collection).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the new flattened array.\n * @example\n *\n * function duplicate(n) {\n * return [n, n];\n * }\n *\n * _.flatMap([1, 2], duplicate);\n * // => [1, 1, 2, 2]\n */\n function flatMap(collection, iteratee) {\n return baseFlatten(map(collection, iteratee), 1);\n }\n\n /**\n * This method is like `_.flatMap` except that it recursively flattens the\n * mapped results.\n *\n * @static\n * @memberOf _\n * @since 4.7.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the new flattened array.\n * @example\n *\n * function duplicate(n) {\n * return [[[n, n]]];\n * }\n *\n * _.flatMapDeep([1, 2], duplicate);\n * // => [1, 1, 2, 2]\n */\n function flatMapDeep(collection, iteratee) {\n return baseFlatten(map(collection, iteratee), INFINITY);\n }\n\n /**\n * This method is like `_.flatMap` except that it recursively flattens the\n * mapped results up to `depth` times.\n *\n * @static\n * @memberOf _\n * @since 4.7.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {number} [depth=1] The maximum recursion depth.\n * @returns {Array} Returns the new flattened array.\n * @example\n *\n * function duplicate(n) {\n * return [[[n, n]]];\n * }\n *\n * _.flatMapDepth([1, 2], duplicate, 2);\n * // => [[1, 1], [2, 2]]\n */\n function flatMapDepth(collection, iteratee, depth) {\n depth = depth === undefined ? 1 : toInteger(depth);\n return baseFlatten(map(collection, iteratee), depth);\n }\n\n /**\n * Iterates over elements of `collection` and invokes `iteratee` for each element.\n * The iteratee is invoked with three arguments: (value, index|key, collection).\n * Iteratee functions may exit iteration early by explicitly returning `false`.\n *\n * **Note:** As with other \"Collections\" methods, objects with a \"length\"\n * property are iterated like arrays. To avoid this behavior use `_.forIn`\n * or `_.forOwn` for object iteration.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @alias each\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Array|Object} Returns `collection`.\n * @see _.forEachRight\n * @example\n *\n * _.forEach([1, 2], function(value) {\n * console.log(value);\n * });\n * // => Logs `1` then `2`.\n *\n * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) {\n * console.log(key);\n * });\n * // => Logs 'a' then 'b' (iteration order is not guaranteed).\n */\n function forEach(collection, iteratee) {\n var func = isArray(collection) ? arrayEach : baseEach;\n return func(collection, getIteratee(iteratee, 3));\n }\n\n /**\n * This method is like `_.forEach` except that it iterates over elements of\n * `collection` from right to left.\n *\n * @static\n * @memberOf _\n * @since 2.0.0\n * @alias eachRight\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Array|Object} Returns `collection`.\n * @see _.forEach\n * @example\n *\n * _.forEachRight([1, 2], function(value) {\n * console.log(value);\n * });\n * // => Logs `2` then `1`.\n */\n function forEachRight(collection, iteratee) {\n var func = isArray(collection) ? arrayEachRight : baseEachRight;\n return func(collection, getIteratee(iteratee, 3));\n }\n\n /**\n * Creates an object composed of keys generated from the results of running\n * each element of `collection` thru `iteratee`. The order of grouped values\n * is determined by the order they occur in `collection`. The corresponding\n * value of each key is an array of elements responsible for generating the\n * key. The iteratee is invoked with one argument: (value).\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The iteratee to transform keys.\n * @returns {Object} Returns the composed aggregate object.\n * @example\n *\n * _.groupBy([6.1, 4.2, 6.3], Math.floor);\n * // => { '4': [4.2], '6': [6.1, 6.3] }\n *\n * // The `_.property` iteratee shorthand.\n * _.groupBy(['one', 'two', 'three'], 'length');\n * // => { '3': ['one', 'two'], '5': ['three'] }\n */\n var groupBy = createAggregator(function(result, value, key) {\n if (hasOwnProperty.call(result, key)) {\n result[key].push(value);\n } else {\n baseAssignValue(result, key, [value]);\n }\n });\n\n /**\n * Checks if `value` is in `collection`. If `collection` is a string, it's\n * checked for a substring of `value`, otherwise\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * is used for equality comparisons. If `fromIndex` is negative, it's used as\n * the offset from the end of `collection`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object|string} collection The collection to inspect.\n * @param {*} value The value to search for.\n * @param {number} [fromIndex=0] The index to search from.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`.\n * @returns {boolean} Returns `true` if `value` is found, else `false`.\n * @example\n *\n * _.includes([1, 2, 3], 1);\n * // => true\n *\n * _.includes([1, 2, 3], 1, 2);\n * // => false\n *\n * _.includes({ 'a': 1, 'b': 2 }, 1);\n * // => true\n *\n * _.includes('abcd', 'bc');\n * // => true\n */\n function includes(collection, value, fromIndex, guard) {\n collection = isArrayLike(collection) ? collection : values(collection);\n fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0;\n\n var length = collection.length;\n if (fromIndex < 0) {\n fromIndex = nativeMax(length + fromIndex, 0);\n }\n return isString(collection)\n ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1)\n : (!!length && baseIndexOf(collection, value, fromIndex) > -1);\n }\n\n /**\n * Invokes the method at `path` of each element in `collection`, returning\n * an array of the results of each invoked method. Any additional arguments\n * are provided to each invoked method. If `path` is a function, it's invoked\n * for, and `this` bound to, each element in `collection`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Array|Function|string} path The path of the method to invoke or\n * the function invoked per iteration.\n * @param {...*} [args] The arguments to invoke each method with.\n * @returns {Array} Returns the array of results.\n * @example\n *\n * _.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort');\n * // => [[1, 5, 7], [1, 2, 3]]\n *\n * _.invokeMap([123, 456], String.prototype.split, '');\n * // => [['1', '2', '3'], ['4', '5', '6']]\n */\n var invokeMap = baseRest(function(collection, path, args) {\n var index = -1,\n isFunc = typeof path == 'function',\n result = isArrayLike(collection) ? Array(collection.length) : [];\n\n baseEach(collection, function(value) {\n result[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args);\n });\n return result;\n });\n\n /**\n * Creates an object composed of keys generated from the results of running\n * each element of `collection` thru `iteratee`. The corresponding value of\n * each key is the last element responsible for generating the key. The\n * iteratee is invoked with one argument: (value).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The iteratee to transform keys.\n * @returns {Object} Returns the composed aggregate object.\n * @example\n *\n * var array = [\n * { 'dir': 'left', 'code': 97 },\n * { 'dir': 'right', 'code': 100 }\n * ];\n *\n * _.keyBy(array, function(o) {\n * return String.fromCharCode(o.code);\n * });\n * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }\n *\n * _.keyBy(array, 'dir');\n * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } }\n */\n var keyBy = createAggregator(function(result, value, key) {\n baseAssignValue(result, key, value);\n });\n\n /**\n * Creates an array of values by running each element in `collection` thru\n * `iteratee`. The iteratee is invoked with three arguments:\n * (value, index|key, collection).\n *\n * Many lodash methods are guarded to work as iteratees for methods like\n * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`.\n *\n * The guarded methods are:\n * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`,\n * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`,\n * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`,\n * `template`, `trim`, `trimEnd`, `trimStart`, and `words`\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the new mapped array.\n * @example\n *\n * function square(n) {\n * return n * n;\n * }\n *\n * _.map([4, 8], square);\n * // => [16, 64]\n *\n * _.map({ 'a': 4, 'b': 8 }, square);\n * // => [16, 64] (iteration order is not guaranteed)\n *\n * var users = [\n * { 'user': 'barney' },\n * { 'user': 'fred' }\n * ];\n *\n * // The `_.property` iteratee shorthand.\n * _.map(users, 'user');\n * // => ['barney', 'fred']\n */\n function map(collection, iteratee) {\n var func = isArray(collection) ? arrayMap : baseMap;\n return func(collection, getIteratee(iteratee, 3));\n }\n\n /**\n * This method is like `_.sortBy` except that it allows specifying the sort\n * orders of the iteratees to sort by. If `orders` is unspecified, all values\n * are sorted in ascending order. Otherwise, specify an order of \"desc\" for\n * descending or \"asc\" for ascending sort order of corresponding values.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]]\n * The iteratees to sort by.\n * @param {string[]} [orders] The sort orders of `iteratees`.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`.\n * @returns {Array} Returns the new sorted array.\n * @example\n *\n * var users = [\n * { 'user': 'fred', 'age': 48 },\n * { 'user': 'barney', 'age': 34 },\n * { 'user': 'fred', 'age': 40 },\n * { 'user': 'barney', 'age': 36 }\n * ];\n *\n * // Sort by `user` in ascending order and by `age` in descending order.\n * _.orderBy(users, ['user', 'age'], ['asc', 'desc']);\n * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]]\n */\n function orderBy(collection, iteratees, orders, guard) {\n if (collection == null) {\n return [];\n }\n if (!isArray(iteratees)) {\n iteratees = iteratees == null ? [] : [iteratees];\n }\n orders = guard ? undefined : orders;\n if (!isArray(orders)) {\n orders = orders == null ? [] : [orders];\n }\n return baseOrderBy(collection, iteratees, orders);\n }\n\n /**\n * Creates an array of elements split into two groups, the first of which\n * contains elements `predicate` returns truthy for, the second of which\n * contains elements `predicate` returns falsey for. The predicate is\n * invoked with one argument: (value).\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the array of grouped elements.\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': false },\n * { 'user': 'fred', 'age': 40, 'active': true },\n * { 'user': 'pebbles', 'age': 1, 'active': false }\n * ];\n *\n * _.partition(users, function(o) { return o.active; });\n * // => objects for [['fred'], ['barney', 'pebbles']]\n *\n * // The `_.matches` iteratee shorthand.\n * _.partition(users, { 'age': 1, 'active': false });\n * // => objects for [['pebbles'], ['barney', 'fred']]\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.partition(users, ['active', false]);\n * // => objects for [['barney', 'pebbles'], ['fred']]\n *\n * // The `_.property` iteratee shorthand.\n * _.partition(users, 'active');\n * // => objects for [['fred'], ['barney', 'pebbles']]\n */\n var partition = createAggregator(function(result, value, key) {\n result[key ? 0 : 1].push(value);\n }, function() { return [[], []]; });\n\n /**\n * Reduces `collection` to a value which is the accumulated result of running\n * each element in `collection` thru `iteratee`, where each successive\n * invocation is supplied the return value of the previous. If `accumulator`\n * is not given, the first element of `collection` is used as the initial\n * value. The iteratee is invoked with four arguments:\n * (accumulator, value, index|key, collection).\n *\n * Many lodash methods are guarded to work as iteratees for methods like\n * `_.reduce`, `_.reduceRight`, and `_.transform`.\n *\n * The guarded methods are:\n * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`,\n * and `sortBy`\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [accumulator] The initial value.\n * @returns {*} Returns the accumulated value.\n * @see _.reduceRight\n * @example\n *\n * _.reduce([1, 2], function(sum, n) {\n * return sum + n;\n * }, 0);\n * // => 3\n *\n * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {\n * (result[value] || (result[value] = [])).push(key);\n * return result;\n * }, {});\n * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed)\n */\n function reduce(collection, iteratee, accumulator) {\n var func = isArray(collection) ? arrayReduce : baseReduce,\n initAccum = arguments.length < 3;\n\n return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEach);\n }\n\n /**\n * This method is like `_.reduce` except that it iterates over elements of\n * `collection` from right to left.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [accumulator] The initial value.\n * @returns {*} Returns the accumulated value.\n * @see _.reduce\n * @example\n *\n * var array = [[0, 1], [2, 3], [4, 5]];\n *\n * _.reduceRight(array, function(flattened, other) {\n * return flattened.concat(other);\n * }, []);\n * // => [4, 5, 2, 3, 0, 1]\n */\n function reduceRight(collection, iteratee, accumulator) {\n var func = isArray(collection) ? arrayReduceRight : baseReduce,\n initAccum = arguments.length < 3;\n\n return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEachRight);\n }\n\n /**\n * The opposite of `_.filter`; this method returns the elements of `collection`\n * that `predicate` does **not** return truthy for.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n * @see _.filter\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': false },\n * { 'user': 'fred', 'age': 40, 'active': true }\n * ];\n *\n * _.reject(users, function(o) { return !o.active; });\n * // => objects for ['fred']\n *\n * // The `_.matches` iteratee shorthand.\n * _.reject(users, { 'age': 40, 'active': true });\n * // => objects for ['barney']\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.reject(users, ['active', false]);\n * // => objects for ['fred']\n *\n * // The `_.property` iteratee shorthand.\n * _.reject(users, 'active');\n * // => objects for ['barney']\n */\n function reject(collection, predicate) {\n var func = isArray(collection) ? arrayFilter : baseFilter;\n return func(collection, negate(getIteratee(predicate, 3)));\n }\n\n /**\n * Gets a random element from `collection`.\n *\n * @static\n * @memberOf _\n * @since 2.0.0\n * @category Collection\n * @param {Array|Object} collection The collection to sample.\n * @returns {*} Returns the random element.\n * @example\n *\n * _.sample([1, 2, 3, 4]);\n * // => 2\n */\n function sample(collection) {\n var func = isArray(collection) ? arraySample : baseSample;\n return func(collection);\n }\n\n /**\n * Gets `n` random elements at unique keys from `collection` up to the\n * size of `collection`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Collection\n * @param {Array|Object} collection The collection to sample.\n * @param {number} [n=1] The number of elements to sample.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Array} Returns the random elements.\n * @example\n *\n * _.sampleSize([1, 2, 3], 2);\n * // => [3, 1]\n *\n * _.sampleSize([1, 2, 3], 4);\n * // => [2, 3, 1]\n */\n function sampleSize(collection, n, guard) {\n if ((guard ? isIterateeCall(collection, n, guard) : n === undefined)) {\n n = 1;\n } else {\n n = toInteger(n);\n }\n var func = isArray(collection) ? arraySampleSize : baseSampleSize;\n return func(collection, n);\n }\n\n /**\n * Creates an array of shuffled values, using a version of the\n * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle).\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to shuffle.\n * @returns {Array} Returns the new shuffled array.\n * @example\n *\n * _.shuffle([1, 2, 3, 4]);\n * // => [4, 1, 3, 2]\n */\n function shuffle(collection) {\n var func = isArray(collection) ? arrayShuffle : baseShuffle;\n return func(collection);\n }\n\n /**\n * Gets the size of `collection` by returning its length for array-like\n * values or the number of own enumerable string keyed properties for objects.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object|string} collection The collection to inspect.\n * @returns {number} Returns the collection size.\n * @example\n *\n * _.size([1, 2, 3]);\n * // => 3\n *\n * _.size({ 'a': 1, 'b': 2 });\n * // => 2\n *\n * _.size('pebbles');\n * // => 7\n */\n function size(collection) {\n if (collection == null) {\n return 0;\n }\n if (isArrayLike(collection)) {\n return isString(collection) ? stringSize(collection) : collection.length;\n }\n var tag = getTag(collection);\n if (tag == mapTag || tag == setTag) {\n return collection.size;\n }\n return baseKeys(collection).length;\n }\n\n /**\n * Checks if `predicate` returns truthy for **any** element of `collection`.\n * Iteration is stopped once `predicate` returns truthy. The predicate is\n * invoked with three arguments: (value, index|key, collection).\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {boolean} Returns `true` if any element passes the predicate check,\n * else `false`.\n * @example\n *\n * _.some([null, 0, 'yes', false], Boolean);\n * // => true\n *\n * var users = [\n * { 'user': 'barney', 'active': true },\n * { 'user': 'fred', 'active': false }\n * ];\n *\n * // The `_.matches` iteratee shorthand.\n * _.some(users, { 'user': 'barney', 'active': false });\n * // => false\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.some(users, ['active', false]);\n * // => true\n *\n * // The `_.property` iteratee shorthand.\n * _.some(users, 'active');\n * // => true\n */\n function some(collection, predicate, guard) {\n var func = isArray(collection) ? arraySome : baseSome;\n if (guard && isIterateeCall(collection, predicate, guard)) {\n predicate = undefined;\n }\n return func(collection, getIteratee(predicate, 3));\n }\n\n /**\n * Creates an array of elements, sorted in ascending order by the results of\n * running each element in a collection thru each iteratee. This method\n * performs a stable sort, that is, it preserves the original sort order of\n * equal elements. The iteratees are invoked with one argument: (value).\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {...(Function|Function[])} [iteratees=[_.identity]]\n * The iteratees to sort by.\n * @returns {Array} Returns the new sorted array.\n * @example\n *\n * var users = [\n * { 'user': 'fred', 'age': 48 },\n * { 'user': 'barney', 'age': 36 },\n * { 'user': 'fred', 'age': 40 },\n * { 'user': 'barney', 'age': 34 }\n * ];\n *\n * _.sortBy(users, [function(o) { return o.user; }]);\n * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]]\n *\n * _.sortBy(users, ['user', 'age']);\n * // => objects for [['barney', 34], ['barney', 36], ['fred', 40], ['fred', 48]]\n */\n var sortBy = baseRest(function(collection, iteratees) {\n if (collection == null) {\n return [];\n }\n var length = iteratees.length;\n if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) {\n iteratees = [];\n } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) {\n iteratees = [iteratees[0]];\n }\n return baseOrderBy(collection, baseFlatten(iteratees, 1), []);\n });\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Gets the timestamp of the number of milliseconds that have elapsed since\n * the Unix epoch (1 January 1970 00:00:00 UTC).\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Date\n * @returns {number} Returns the timestamp.\n * @example\n *\n * _.defer(function(stamp) {\n * console.log(_.now() - stamp);\n * }, _.now());\n * // => Logs the number of milliseconds it took for the deferred invocation.\n */\n var now = ctxNow || function() {\n return root.Date.now();\n };\n\n /*------------------------------------------------------------------------*/\n\n /**\n * The opposite of `_.before`; this method creates a function that invokes\n * `func` once it's called `n` or more times.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {number} n The number of calls before `func` is invoked.\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new restricted function.\n * @example\n *\n * var saves = ['profile', 'settings'];\n *\n * var done = _.after(saves.length, function() {\n * console.log('done saving!');\n * });\n *\n * _.forEach(saves, function(type) {\n * asyncSave({ 'type': type, 'complete': done });\n * });\n * // => Logs 'done saving!' after the two async saves have completed.\n */\n function after(n, func) {\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n n = toInteger(n);\n return function() {\n if (--n < 1) {\n return func.apply(this, arguments);\n }\n };\n }\n\n /**\n * Creates a function that invokes `func`, with up to `n` arguments,\n * ignoring any additional arguments.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Function\n * @param {Function} func The function to cap arguments for.\n * @param {number} [n=func.length] The arity cap.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Function} Returns the new capped function.\n * @example\n *\n * _.map(['6', '8', '10'], _.ary(parseInt, 1));\n * // => [6, 8, 10]\n */\n function ary(func, n, guard) {\n n = guard ? undefined : n;\n n = (func && n == null) ? func.length : n;\n return createWrap(func, WRAP_ARY_FLAG, undefined, undefined, undefined, undefined, n);\n }\n\n /**\n * Creates a function that invokes `func`, with the `this` binding and arguments\n * of the created function, while it's called less than `n` times. Subsequent\n * calls to the created function return the result of the last `func` invocation.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Function\n * @param {number} n The number of calls at which `func` is no longer invoked.\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new restricted function.\n * @example\n *\n * jQuery(element).on('click', _.before(5, addContactToList));\n * // => Allows adding up to 4 contacts to the list.\n */\n function before(n, func) {\n var result;\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n n = toInteger(n);\n return function() {\n if (--n > 0) {\n result = func.apply(this, arguments);\n }\n if (n <= 1) {\n func = undefined;\n }\n return result;\n };\n }\n\n /**\n * Creates a function that invokes `func` with the `this` binding of `thisArg`\n * and `partials` prepended to the arguments it receives.\n *\n * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds,\n * may be used as a placeholder for partially applied arguments.\n *\n * **Note:** Unlike native `Function#bind`, this method doesn't set the \"length\"\n * property of bound functions.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to bind.\n * @param {*} thisArg The `this` binding of `func`.\n * @param {...*} [partials] The arguments to be partially applied.\n * @returns {Function} Returns the new bound function.\n * @example\n *\n * function greet(greeting, punctuation) {\n * return greeting + ' ' + this.user + punctuation;\n * }\n *\n * var object = { 'user': 'fred' };\n *\n * var bound = _.bind(greet, object, 'hi');\n * bound('!');\n * // => 'hi fred!'\n *\n * // Bound with placeholders.\n * var bound = _.bind(greet, object, _, '!');\n * bound('hi');\n * // => 'hi fred!'\n */\n var bind = baseRest(function(func, thisArg, partials) {\n var bitmask = WRAP_BIND_FLAG;\n if (partials.length) {\n var holders = replaceHolders(partials, getHolder(bind));\n bitmask |= WRAP_PARTIAL_FLAG;\n }\n return createWrap(func, bitmask, thisArg, partials, holders);\n });\n\n /**\n * Creates a function that invokes the method at `object[key]` with `partials`\n * prepended to the arguments it receives.\n *\n * This method differs from `_.bind` by allowing bound functions to reference\n * methods that may be redefined or don't yet exist. See\n * [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern)\n * for more details.\n *\n * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic\n * builds, may be used as a placeholder for partially applied arguments.\n *\n * @static\n * @memberOf _\n * @since 0.10.0\n * @category Function\n * @param {Object} object The object to invoke the method on.\n * @param {string} key The key of the method.\n * @param {...*} [partials] The arguments to be partially applied.\n * @returns {Function} Returns the new bound function.\n * @example\n *\n * var object = {\n * 'user': 'fred',\n * 'greet': function(greeting, punctuation) {\n * return greeting + ' ' + this.user + punctuation;\n * }\n * };\n *\n * var bound = _.bindKey(object, 'greet', 'hi');\n * bound('!');\n * // => 'hi fred!'\n *\n * object.greet = function(greeting, punctuation) {\n * return greeting + 'ya ' + this.user + punctuation;\n * };\n *\n * bound('!');\n * // => 'hiya fred!'\n *\n * // Bound with placeholders.\n * var bound = _.bindKey(object, 'greet', _, '!');\n * bound('hi');\n * // => 'hiya fred!'\n */\n var bindKey = baseRest(function(object, key, partials) {\n var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG;\n if (partials.length) {\n var holders = replaceHolders(partials, getHolder(bindKey));\n bitmask |= WRAP_PARTIAL_FLAG;\n }\n return createWrap(key, bitmask, object, partials, holders);\n });\n\n /**\n * Creates a function that accepts arguments of `func` and either invokes\n * `func` returning its result, if at least `arity` number of arguments have\n * been provided, or returns a function that accepts the remaining `func`\n * arguments, and so on. The arity of `func` may be specified if `func.length`\n * is not sufficient.\n *\n * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds,\n * may be used as a placeholder for provided arguments.\n *\n * **Note:** This method doesn't set the \"length\" property of curried functions.\n *\n * @static\n * @memberOf _\n * @since 2.0.0\n * @category Function\n * @param {Function} func The function to curry.\n * @param {number} [arity=func.length] The arity of `func`.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Function} Returns the new curried function.\n * @example\n *\n * var abc = function(a, b, c) {\n * return [a, b, c];\n * };\n *\n * var curried = _.curry(abc);\n *\n * curried(1)(2)(3);\n * // => [1, 2, 3]\n *\n * curried(1, 2)(3);\n * // => [1, 2, 3]\n *\n * curried(1, 2, 3);\n * // => [1, 2, 3]\n *\n * // Curried with placeholders.\n * curried(1)(_, 3)(2);\n * // => [1, 2, 3]\n */\n function curry(func, arity, guard) {\n arity = guard ? undefined : arity;\n var result = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity);\n result.placeholder = curry.placeholder;\n return result;\n }\n\n /**\n * This method is like `_.curry` except that arguments are applied to `func`\n * in the manner of `_.partialRight` instead of `_.partial`.\n *\n * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic\n * builds, may be used as a placeholder for provided arguments.\n *\n * **Note:** This method doesn't set the \"length\" property of curried functions.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Function\n * @param {Function} func The function to curry.\n * @param {number} [arity=func.length] The arity of `func`.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Function} Returns the new curried function.\n * @example\n *\n * var abc = function(a, b, c) {\n * return [a, b, c];\n * };\n *\n * var curried = _.curryRight(abc);\n *\n * curried(3)(2)(1);\n * // => [1, 2, 3]\n *\n * curried(2, 3)(1);\n * // => [1, 2, 3]\n *\n * curried(1, 2, 3);\n * // => [1, 2, 3]\n *\n * // Curried with placeholders.\n * curried(3)(1, _)(2);\n * // => [1, 2, 3]\n */\n function curryRight(func, arity, guard) {\n arity = guard ? undefined : arity;\n var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity);\n result.placeholder = curryRight.placeholder;\n return result;\n }\n\n /**\n * Creates a debounced function that delays invoking `func` until after `wait`\n * milliseconds have elapsed since the last time the debounced function was\n * invoked. The debounced function comes with a `cancel` method to cancel\n * delayed `func` invocations and a `flush` method to immediately invoke them.\n * Provide `options` to indicate whether `func` should be invoked on the\n * leading and/or trailing edge of the `wait` timeout. The `func` is invoked\n * with the last arguments provided to the debounced function. Subsequent\n * calls to the debounced function return the result of the last `func`\n * invocation.\n *\n * **Note:** If `leading` and `trailing` options are `true`, `func` is\n * invoked on the trailing edge of the timeout only if the debounced function\n * is invoked more than once during the `wait` timeout.\n *\n * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\n * until to the next tick, similar to `setTimeout` with a timeout of `0`.\n *\n * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\n * for details over the differences between `_.debounce` and `_.throttle`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to debounce.\n * @param {number} [wait=0] The number of milliseconds to delay.\n * @param {Object} [options={}] The options object.\n * @param {boolean} [options.leading=false]\n * Specify invoking on the leading edge of the timeout.\n * @param {number} [options.maxWait]\n * The maximum time `func` is allowed to be delayed before it's invoked.\n * @param {boolean} [options.trailing=true]\n * Specify invoking on the trailing edge of the timeout.\n * @returns {Function} Returns the new debounced function.\n * @example\n *\n * // Avoid costly calculations while the window size is in flux.\n * jQuery(window).on('resize', _.debounce(calculateLayout, 150));\n *\n * // Invoke `sendMail` when clicked, debouncing subsequent calls.\n * jQuery(element).on('click', _.debounce(sendMail, 300, {\n * 'leading': true,\n * 'trailing': false\n * }));\n *\n * // Ensure `batchLog` is invoked once after 1 second of debounced calls.\n * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 });\n * var source = new EventSource('/stream');\n * jQuery(source).on('message', debounced);\n *\n * // Cancel the trailing debounced invocation.\n * jQuery(window).on('popstate', debounced.cancel);\n */\n function debounce(func, wait, options) {\n var lastArgs,\n lastThis,\n maxWait,\n result,\n timerId,\n lastCallTime,\n lastInvokeTime = 0,\n leading = false,\n maxing = false,\n trailing = true;\n\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n wait = toNumber(wait) || 0;\n if (isObject(options)) {\n leading = !!options.leading;\n maxing = 'maxWait' in options;\n maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;\n trailing = 'trailing' in options ? !!options.trailing : trailing;\n }\n\n function invokeFunc(time) {\n var args = lastArgs,\n thisArg = lastThis;\n\n lastArgs = lastThis = undefined;\n lastInvokeTime = time;\n result = func.apply(thisArg, args);\n return result;\n }\n\n function leadingEdge(time) {\n // Reset any `maxWait` timer.\n lastInvokeTime = time;\n // Start the timer for the trailing edge.\n timerId = setTimeout(timerExpired, wait);\n // Invoke the leading edge.\n return leading ? invokeFunc(time) : result;\n }\n\n function remainingWait(time) {\n var timeSinceLastCall = time - lastCallTime,\n timeSinceLastInvoke = time - lastInvokeTime,\n timeWaiting = wait - timeSinceLastCall;\n\n return maxing\n ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke)\n : timeWaiting;\n }\n\n function shouldInvoke(time) {\n var timeSinceLastCall = time - lastCallTime,\n timeSinceLastInvoke = time - lastInvokeTime;\n\n // Either this is the first call, activity has stopped and we're at the\n // trailing edge, the system time has gone backwards and we're treating\n // it as the trailing edge, or we've hit the `maxWait` limit.\n return (lastCallTime === undefined || (timeSinceLastCall >= wait) ||\n (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait));\n }\n\n function timerExpired() {\n var time = now();\n if (shouldInvoke(time)) {\n return trailingEdge(time);\n }\n // Restart the timer.\n timerId = setTimeout(timerExpired, remainingWait(time));\n }\n\n function trailingEdge(time) {\n timerId = undefined;\n\n // Only invoke if we have `lastArgs` which means `func` has been\n // debounced at least once.\n if (trailing && lastArgs) {\n return invokeFunc(time);\n }\n lastArgs = lastThis = undefined;\n return result;\n }\n\n function cancel() {\n if (timerId !== undefined) {\n clearTimeout(timerId);\n }\n lastInvokeTime = 0;\n lastArgs = lastCallTime = lastThis = timerId = undefined;\n }\n\n function flush() {\n return timerId === undefined ? result : trailingEdge(now());\n }\n\n function debounced() {\n var time = now(),\n isInvoking = shouldInvoke(time);\n\n lastArgs = arguments;\n lastThis = this;\n lastCallTime = time;\n\n if (isInvoking) {\n if (timerId === undefined) {\n return leadingEdge(lastCallTime);\n }\n if (maxing) {\n // Handle invocations in a tight loop.\n clearTimeout(timerId);\n timerId = setTimeout(timerExpired, wait);\n return invokeFunc(lastCallTime);\n }\n }\n if (timerId === undefined) {\n timerId = setTimeout(timerExpired, wait);\n }\n return result;\n }\n debounced.cancel = cancel;\n debounced.flush = flush;\n return debounced;\n }\n\n /**\n * Defers invoking the `func` until the current call stack has cleared. Any\n * additional arguments are provided to `func` when it's invoked.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to defer.\n * @param {...*} [args] The arguments to invoke `func` with.\n * @returns {number} Returns the timer id.\n * @example\n *\n * _.defer(function(text) {\n * console.log(text);\n * }, 'deferred');\n * // => Logs 'deferred' after one millisecond.\n */\n var defer = baseRest(function(func, args) {\n return baseDelay(func, 1, args);\n });\n\n /**\n * Invokes `func` after `wait` milliseconds. Any additional arguments are\n * provided to `func` when it's invoked.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to delay.\n * @param {number} wait The number of milliseconds to delay invocation.\n * @param {...*} [args] The arguments to invoke `func` with.\n * @returns {number} Returns the timer id.\n * @example\n *\n * _.delay(function(text) {\n * console.log(text);\n * }, 1000, 'later');\n * // => Logs 'later' after one second.\n */\n var delay = baseRest(function(func, wait, args) {\n return baseDelay(func, toNumber(wait) || 0, args);\n });\n\n /**\n * Creates a function that invokes `func` with arguments reversed.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Function\n * @param {Function} func The function to flip arguments for.\n * @returns {Function} Returns the new flipped function.\n * @example\n *\n * var flipped = _.flip(function() {\n * return _.toArray(arguments);\n * });\n *\n * flipped('a', 'b', 'c', 'd');\n * // => ['d', 'c', 'b', 'a']\n */\n function flip(func) {\n return createWrap(func, WRAP_FLIP_FLAG);\n }\n\n /**\n * Creates a function that memoizes the result of `func`. If `resolver` is\n * provided, it determines the cache key for storing the result based on the\n * arguments provided to the memoized function. By default, the first argument\n * provided to the memoized function is used as the map cache key. The `func`\n * is invoked with the `this` binding of the memoized function.\n *\n * **Note:** The cache is exposed as the `cache` property on the memoized\n * function. Its creation may be customized by replacing the `_.memoize.Cache`\n * constructor with one whose instances implement the\n * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)\n * method interface of `clear`, `delete`, `get`, `has`, and `set`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to have its output memoized.\n * @param {Function} [resolver] The function to resolve the cache key.\n * @returns {Function} Returns the new memoized function.\n * @example\n *\n * var object = { 'a': 1, 'b': 2 };\n * var other = { 'c': 3, 'd': 4 };\n *\n * var values = _.memoize(_.values);\n * values(object);\n * // => [1, 2]\n *\n * values(other);\n * // => [3, 4]\n *\n * object.a = 2;\n * values(object);\n * // => [1, 2]\n *\n * // Modify the result cache.\n * values.cache.set(object, ['a', 'b']);\n * values(object);\n * // => ['a', 'b']\n *\n * // Replace `_.memoize.Cache`.\n * _.memoize.Cache = WeakMap;\n */\n function memoize(func, resolver) {\n if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n var memoized = function() {\n var args = arguments,\n key = resolver ? resolver.apply(this, args) : args[0],\n cache = memoized.cache;\n\n if (cache.has(key)) {\n return cache.get(key);\n }\n var result = func.apply(this, args);\n memoized.cache = cache.set(key, result) || cache;\n return result;\n };\n memoized.cache = new (memoize.Cache || MapCache);\n return memoized;\n }\n\n // Expose `MapCache`.\n memoize.Cache = MapCache;\n\n /**\n * Creates a function that negates the result of the predicate `func`. The\n * `func` predicate is invoked with the `this` binding and arguments of the\n * created function.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Function\n * @param {Function} predicate The predicate to negate.\n * @returns {Function} Returns the new negated function.\n * @example\n *\n * function isEven(n) {\n * return n % 2 == 0;\n * }\n *\n * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven));\n * // => [1, 3, 5]\n */\n function negate(predicate) {\n if (typeof predicate != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n return function() {\n var args = arguments;\n switch (args.length) {\n case 0: return !predicate.call(this);\n case 1: return !predicate.call(this, args[0]);\n case 2: return !predicate.call(this, args[0], args[1]);\n case 3: return !predicate.call(this, args[0], args[1], args[2]);\n }\n return !predicate.apply(this, args);\n };\n }\n\n /**\n * Creates a function that is restricted to invoking `func` once. Repeat calls\n * to the function return the value of the first invocation. The `func` is\n * invoked with the `this` binding and arguments of the created function.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new restricted function.\n * @example\n *\n * var initialize = _.once(createApplication);\n * initialize();\n * initialize();\n * // => `createApplication` is invoked once\n */\n function once(func) {\n return before(2, func);\n }\n\n /**\n * Creates a function that invokes `func` with its arguments transformed.\n *\n * @static\n * @since 4.0.0\n * @memberOf _\n * @category Function\n * @param {Function} func The function to wrap.\n * @param {...(Function|Function[])} [transforms=[_.identity]]\n * The argument transforms.\n * @returns {Function} Returns the new function.\n * @example\n *\n * function doubled(n) {\n * return n * 2;\n * }\n *\n * function square(n) {\n * return n * n;\n * }\n *\n * var func = _.overArgs(function(x, y) {\n * return [x, y];\n * }, [square, doubled]);\n *\n * func(9, 3);\n * // => [81, 6]\n *\n * func(10, 5);\n * // => [100, 10]\n */\n var overArgs = castRest(function(func, transforms) {\n transforms = (transforms.length == 1 && isArray(transforms[0]))\n ? arrayMap(transforms[0], baseUnary(getIteratee()))\n : arrayMap(baseFlatten(transforms, 1), baseUnary(getIteratee()));\n\n var funcsLength = transforms.length;\n return baseRest(function(args) {\n var index = -1,\n length = nativeMin(args.length, funcsLength);\n\n while (++index < length) {\n args[index] = transforms[index].call(this, args[index]);\n }\n return apply(func, this, args);\n });\n });\n\n /**\n * Creates a function that invokes `func` with `partials` prepended to the\n * arguments it receives. This method is like `_.bind` except it does **not**\n * alter the `this` binding.\n *\n * The `_.partial.placeholder` value, which defaults to `_` in monolithic\n * builds, may be used as a placeholder for partially applied arguments.\n *\n * **Note:** This method doesn't set the \"length\" property of partially\n * applied functions.\n *\n * @static\n * @memberOf _\n * @since 0.2.0\n * @category Function\n * @param {Function} func The function to partially apply arguments to.\n * @param {...*} [partials] The arguments to be partially applied.\n * @returns {Function} Returns the new partially applied function.\n * @example\n *\n * function greet(greeting, name) {\n * return greeting + ' ' + name;\n * }\n *\n * var sayHelloTo = _.partial(greet, 'hello');\n * sayHelloTo('fred');\n * // => 'hello fred'\n *\n * // Partially applied with placeholders.\n * var greetFred = _.partial(greet, _, 'fred');\n * greetFred('hi');\n * // => 'hi fred'\n */\n var partial = baseRest(function(func, partials) {\n var holders = replaceHolders(partials, getHolder(partial));\n return createWrap(func, WRAP_PARTIAL_FLAG, undefined, partials, holders);\n });\n\n /**\n * This method is like `_.partial` except that partially applied arguments\n * are appended to the arguments it receives.\n *\n * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic\n * builds, may be used as a placeholder for partially applied arguments.\n *\n * **Note:** This method doesn't set the \"length\" property of partially\n * applied functions.\n *\n * @static\n * @memberOf _\n * @since 1.0.0\n * @category Function\n * @param {Function} func The function to partially apply arguments to.\n * @param {...*} [partials] The arguments to be partially applied.\n * @returns {Function} Returns the new partially applied function.\n * @example\n *\n * function greet(greeting, name) {\n * return greeting + ' ' + name;\n * }\n *\n * var greetFred = _.partialRight(greet, 'fred');\n * greetFred('hi');\n * // => 'hi fred'\n *\n * // Partially applied with placeholders.\n * var sayHelloTo = _.partialRight(greet, 'hello', _);\n * sayHelloTo('fred');\n * // => 'hello fred'\n */\n var partialRight = baseRest(function(func, partials) {\n var holders = replaceHolders(partials, getHolder(partialRight));\n return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined, partials, holders);\n });\n\n /**\n * Creates a function that invokes `func` with arguments arranged according\n * to the specified `indexes` where the argument value at the first index is\n * provided as the first argument, the argument value at the second index is\n * provided as the second argument, and so on.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Function\n * @param {Function} func The function to rearrange arguments for.\n * @param {...(number|number[])} indexes The arranged argument indexes.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var rearged = _.rearg(function(a, b, c) {\n * return [a, b, c];\n * }, [2, 0, 1]);\n *\n * rearged('b', 'c', 'a')\n * // => ['a', 'b', 'c']\n */\n var rearg = flatRest(function(func, indexes) {\n return createWrap(func, WRAP_REARG_FLAG, undefined, undefined, undefined, indexes);\n });\n\n /**\n * Creates a function that invokes `func` with the `this` binding of the\n * created function and arguments from `start` and beyond provided as\n * an array.\n *\n * **Note:** This method is based on the\n * [rest parameter](https://mdn.io/rest_parameters).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Function\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var say = _.rest(function(what, names) {\n * return what + ' ' + _.initial(names).join(', ') +\n * (_.size(names) > 1 ? ', & ' : '') + _.last(names);\n * });\n *\n * say('hello', 'fred', 'barney', 'pebbles');\n * // => 'hello fred, barney, & pebbles'\n */\n function rest(func, start) {\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n start = start === undefined ? start : toInteger(start);\n return baseRest(func, start);\n }\n\n /**\n * Creates a function that invokes `func` with the `this` binding of the\n * create function and an array of arguments much like\n * [`Function#apply`](http://www.ecma-international.org/ecma-262/7.0/#sec-function.prototype.apply).\n *\n * **Note:** This method is based on the\n * [spread operator](https://mdn.io/spread_operator).\n *\n * @static\n * @memberOf _\n * @since 3.2.0\n * @category Function\n * @param {Function} func The function to spread arguments over.\n * @param {number} [start=0] The start position of the spread.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var say = _.spread(function(who, what) {\n * return who + ' says ' + what;\n * });\n *\n * say(['fred', 'hello']);\n * // => 'fred says hello'\n *\n * var numbers = Promise.all([\n * Promise.resolve(40),\n * Promise.resolve(36)\n * ]);\n *\n * numbers.then(_.spread(function(x, y) {\n * return x + y;\n * }));\n * // => a Promise of 76\n */\n function spread(func, start) {\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n start = start == null ? 0 : nativeMax(toInteger(start), 0);\n return baseRest(function(args) {\n var array = args[start],\n otherArgs = castSlice(args, 0, start);\n\n if (array) {\n arrayPush(otherArgs, array);\n }\n return apply(func, this, otherArgs);\n });\n }\n\n /**\n * Creates a throttled function that only invokes `func` at most once per\n * every `wait` milliseconds. The throttled function comes with a `cancel`\n * method to cancel delayed `func` invocations and a `flush` method to\n * immediately invoke them. Provide `options` to indicate whether `func`\n * should be invoked on the leading and/or trailing edge of the `wait`\n * timeout. The `func` is invoked with the last arguments provided to the\n * throttled function. Subsequent calls to the throttled function return the\n * result of the last `func` invocation.\n *\n * **Note:** If `leading` and `trailing` options are `true`, `func` is\n * invoked on the trailing edge of the timeout only if the throttled function\n * is invoked more than once during the `wait` timeout.\n *\n * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\n * until to the next tick, similar to `setTimeout` with a timeout of `0`.\n *\n * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\n * for details over the differences between `_.throttle` and `_.debounce`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to throttle.\n * @param {number} [wait=0] The number of milliseconds to throttle invocations to.\n * @param {Object} [options={}] The options object.\n * @param {boolean} [options.leading=true]\n * Specify invoking on the leading edge of the timeout.\n * @param {boolean} [options.trailing=true]\n * Specify invoking on the trailing edge of the timeout.\n * @returns {Function} Returns the new throttled function.\n * @example\n *\n * // Avoid excessively updating the position while scrolling.\n * jQuery(window).on('scroll', _.throttle(updatePosition, 100));\n *\n * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes.\n * var throttled = _.throttle(renewToken, 300000, { 'trailing': false });\n * jQuery(element).on('click', throttled);\n *\n * // Cancel the trailing throttled invocation.\n * jQuery(window).on('popstate', throttled.cancel);\n */\n function throttle(func, wait, options) {\n var leading = true,\n trailing = true;\n\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n if (isObject(options)) {\n leading = 'leading' in options ? !!options.leading : leading;\n trailing = 'trailing' in options ? !!options.trailing : trailing;\n }\n return debounce(func, wait, {\n 'leading': leading,\n 'maxWait': wait,\n 'trailing': trailing\n });\n }\n\n /**\n * Creates a function that accepts up to one argument, ignoring any\n * additional arguments.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Function\n * @param {Function} func The function to cap arguments for.\n * @returns {Function} Returns the new capped function.\n * @example\n *\n * _.map(['6', '8', '10'], _.unary(parseInt));\n * // => [6, 8, 10]\n */\n function unary(func) {\n return ary(func, 1);\n }\n\n /**\n * Creates a function that provides `value` to `wrapper` as its first\n * argument. Any additional arguments provided to the function are appended\n * to those provided to the `wrapper`. The wrapper is invoked with the `this`\n * binding of the created function.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {*} value The value to wrap.\n * @param {Function} [wrapper=identity] The wrapper function.\n * @returns {Function} Returns the new function.\n * @example\n *\n * var p = _.wrap(_.escape, function(func, text) {\n * return '

    ' + func(text) + '

    ';\n * });\n *\n * p('fred, barney, & pebbles');\n * // => '

    fred, barney, & pebbles

    '\n */\n function wrap(value, wrapper) {\n return partial(castFunction(wrapper), value);\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Casts `value` as an array if it's not one.\n *\n * @static\n * @memberOf _\n * @since 4.4.0\n * @category Lang\n * @param {*} value The value to inspect.\n * @returns {Array} Returns the cast array.\n * @example\n *\n * _.castArray(1);\n * // => [1]\n *\n * _.castArray({ 'a': 1 });\n * // => [{ 'a': 1 }]\n *\n * _.castArray('abc');\n * // => ['abc']\n *\n * _.castArray(null);\n * // => [null]\n *\n * _.castArray(undefined);\n * // => [undefined]\n *\n * _.castArray();\n * // => []\n *\n * var array = [1, 2, 3];\n * console.log(_.castArray(array) === array);\n * // => true\n */\n function castArray() {\n if (!arguments.length) {\n return [];\n }\n var value = arguments[0];\n return isArray(value) ? value : [value];\n }\n\n /**\n * Creates a shallow clone of `value`.\n *\n * **Note:** This method is loosely based on the\n * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm)\n * and supports cloning arrays, array buffers, booleans, date objects, maps,\n * numbers, `Object` objects, regexes, sets, strings, symbols, and typed\n * arrays. The own enumerable properties of `arguments` objects are cloned\n * as plain objects. An empty object is returned for uncloneable values such\n * as error objects, functions, DOM nodes, and WeakMaps.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to clone.\n * @returns {*} Returns the cloned value.\n * @see _.cloneDeep\n * @example\n *\n * var objects = [{ 'a': 1 }, { 'b': 2 }];\n *\n * var shallow = _.clone(objects);\n * console.log(shallow[0] === objects[0]);\n * // => true\n */\n function clone(value) {\n return baseClone(value, CLONE_SYMBOLS_FLAG);\n }\n\n /**\n * This method is like `_.clone` except that it accepts `customizer` which\n * is invoked to produce the cloned value. If `customizer` returns `undefined`,\n * cloning is handled by the method instead. The `customizer` is invoked with\n * up to four arguments; (value [, index|key, object, stack]).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to clone.\n * @param {Function} [customizer] The function to customize cloning.\n * @returns {*} Returns the cloned value.\n * @see _.cloneDeepWith\n * @example\n *\n * function customizer(value) {\n * if (_.isElement(value)) {\n * return value.cloneNode(false);\n * }\n * }\n *\n * var el = _.cloneWith(document.body, customizer);\n *\n * console.log(el === document.body);\n * // => false\n * console.log(el.nodeName);\n * // => 'BODY'\n * console.log(el.childNodes.length);\n * // => 0\n */\n function cloneWith(value, customizer) {\n customizer = typeof customizer == 'function' ? customizer : undefined;\n return baseClone(value, CLONE_SYMBOLS_FLAG, customizer);\n }\n\n /**\n * This method is like `_.clone` except that it recursively clones `value`.\n *\n * @static\n * @memberOf _\n * @since 1.0.0\n * @category Lang\n * @param {*} value The value to recursively clone.\n * @returns {*} Returns the deep cloned value.\n * @see _.clone\n * @example\n *\n * var objects = [{ 'a': 1 }, { 'b': 2 }];\n *\n * var deep = _.cloneDeep(objects);\n * console.log(deep[0] === objects[0]);\n * // => false\n */\n function cloneDeep(value) {\n return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG);\n }\n\n /**\n * This method is like `_.cloneWith` except that it recursively clones `value`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to recursively clone.\n * @param {Function} [customizer] The function to customize cloning.\n * @returns {*} Returns the deep cloned value.\n * @see _.cloneWith\n * @example\n *\n * function customizer(value) {\n * if (_.isElement(value)) {\n * return value.cloneNode(true);\n * }\n * }\n *\n * var el = _.cloneDeepWith(document.body, customizer);\n *\n * console.log(el === document.body);\n * // => false\n * console.log(el.nodeName);\n * // => 'BODY'\n * console.log(el.childNodes.length);\n * // => 20\n */\n function cloneDeepWith(value, customizer) {\n customizer = typeof customizer == 'function' ? customizer : undefined;\n return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer);\n }\n\n /**\n * Checks if `object` conforms to `source` by invoking the predicate\n * properties of `source` with the corresponding property values of `object`.\n *\n * **Note:** This method is equivalent to `_.conforms` when `source` is\n * partially applied.\n *\n * @static\n * @memberOf _\n * @since 4.14.0\n * @category Lang\n * @param {Object} object The object to inspect.\n * @param {Object} source The object of property predicates to conform to.\n * @returns {boolean} Returns `true` if `object` conforms, else `false`.\n * @example\n *\n * var object = { 'a': 1, 'b': 2 };\n *\n * _.conformsTo(object, { 'b': function(n) { return n > 1; } });\n * // => true\n *\n * _.conformsTo(object, { 'b': function(n) { return n > 2; } });\n * // => false\n */\n function conformsTo(object, source) {\n return source == null || baseConformsTo(object, source, keys(source));\n }\n\n /**\n * Performs a\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * comparison between two values to determine if they are equivalent.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * var object = { 'a': 1 };\n * var other = { 'a': 1 };\n *\n * _.eq(object, object);\n * // => true\n *\n * _.eq(object, other);\n * // => false\n *\n * _.eq('a', 'a');\n * // => true\n *\n * _.eq('a', Object('a'));\n * // => false\n *\n * _.eq(NaN, NaN);\n * // => true\n */\n function eq(value, other) {\n return value === other || (value !== value && other !== other);\n }\n\n /**\n * Checks if `value` is greater than `other`.\n *\n * @static\n * @memberOf _\n * @since 3.9.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if `value` is greater than `other`,\n * else `false`.\n * @see _.lt\n * @example\n *\n * _.gt(3, 1);\n * // => true\n *\n * _.gt(3, 3);\n * // => false\n *\n * _.gt(1, 3);\n * // => false\n */\n var gt = createRelationalOperation(baseGt);\n\n /**\n * Checks if `value` is greater than or equal to `other`.\n *\n * @static\n * @memberOf _\n * @since 3.9.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if `value` is greater than or equal to\n * `other`, else `false`.\n * @see _.lte\n * @example\n *\n * _.gte(3, 1);\n * // => true\n *\n * _.gte(3, 3);\n * // => true\n *\n * _.gte(1, 3);\n * // => false\n */\n var gte = createRelationalOperation(function(value, other) {\n return value >= other;\n });\n\n /**\n * Checks if `value` is likely an `arguments` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n * else `false`.\n * @example\n *\n * _.isArguments(function() { return arguments; }());\n * // => true\n *\n * _.isArguments([1, 2, 3]);\n * // => false\n */\n var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\n return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\n !propertyIsEnumerable.call(value, 'callee');\n };\n\n /**\n * Checks if `value` is classified as an `Array` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n * @example\n *\n * _.isArray([1, 2, 3]);\n * // => true\n *\n * _.isArray(document.body.children);\n * // => false\n *\n * _.isArray('abc');\n * // => false\n *\n * _.isArray(_.noop);\n * // => false\n */\n var isArray = Array.isArray;\n\n /**\n * Checks if `value` is classified as an `ArrayBuffer` object.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`.\n * @example\n *\n * _.isArrayBuffer(new ArrayBuffer(2));\n * // => true\n *\n * _.isArrayBuffer(new Array(2));\n * // => false\n */\n var isArrayBuffer = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer;\n\n /**\n * Checks if `value` is array-like. A value is considered array-like if it's\n * not a function and has a `value.length` that's an integer greater than or\n * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n * @example\n *\n * _.isArrayLike([1, 2, 3]);\n * // => true\n *\n * _.isArrayLike(document.body.children);\n * // => true\n *\n * _.isArrayLike('abc');\n * // => true\n *\n * _.isArrayLike(_.noop);\n * // => false\n */\n function isArrayLike(value) {\n return value != null && isLength(value.length) && !isFunction(value);\n }\n\n /**\n * This method is like `_.isArrayLike` except that it also checks if `value`\n * is an object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array-like object,\n * else `false`.\n * @example\n *\n * _.isArrayLikeObject([1, 2, 3]);\n * // => true\n *\n * _.isArrayLikeObject(document.body.children);\n * // => true\n *\n * _.isArrayLikeObject('abc');\n * // => false\n *\n * _.isArrayLikeObject(_.noop);\n * // => false\n */\n function isArrayLikeObject(value) {\n return isObjectLike(value) && isArrayLike(value);\n }\n\n /**\n * Checks if `value` is classified as a boolean primitive or object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a boolean, else `false`.\n * @example\n *\n * _.isBoolean(false);\n * // => true\n *\n * _.isBoolean(null);\n * // => false\n */\n function isBoolean(value) {\n return value === true || value === false ||\n (isObjectLike(value) && baseGetTag(value) == boolTag);\n }\n\n /**\n * Checks if `value` is a buffer.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\n * @example\n *\n * _.isBuffer(new Buffer(2));\n * // => true\n *\n * _.isBuffer(new Uint8Array(2));\n * // => false\n */\n var isBuffer = nativeIsBuffer || stubFalse;\n\n /**\n * Checks if `value` is classified as a `Date` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a date object, else `false`.\n * @example\n *\n * _.isDate(new Date);\n * // => true\n *\n * _.isDate('Mon April 23 2012');\n * // => false\n */\n var isDate = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate;\n\n /**\n * Checks if `value` is likely a DOM element.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`.\n * @example\n *\n * _.isElement(document.body);\n * // => true\n *\n * _.isElement('');\n * // => false\n */\n function isElement(value) {\n return isObjectLike(value) && value.nodeType === 1 && !isPlainObject(value);\n }\n\n /**\n * Checks if `value` is an empty object, collection, map, or set.\n *\n * Objects are considered empty if they have no own enumerable string keyed\n * properties.\n *\n * Array-like values such as `arguments` objects, arrays, buffers, strings, or\n * jQuery-like collections are considered empty if they have a `length` of `0`.\n * Similarly, maps and sets are considered empty if they have a `size` of `0`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is empty, else `false`.\n * @example\n *\n * _.isEmpty(null);\n * // => true\n *\n * _.isEmpty(true);\n * // => true\n *\n * _.isEmpty(1);\n * // => true\n *\n * _.isEmpty([1, 2, 3]);\n * // => false\n *\n * _.isEmpty({ 'a': 1 });\n * // => false\n */\n function isEmpty(value) {\n if (value == null) {\n return true;\n }\n if (isArrayLike(value) &&\n (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' ||\n isBuffer(value) || isTypedArray(value) || isArguments(value))) {\n return !value.length;\n }\n var tag = getTag(value);\n if (tag == mapTag || tag == setTag) {\n return !value.size;\n }\n if (isPrototype(value)) {\n return !baseKeys(value).length;\n }\n for (var key in value) {\n if (hasOwnProperty.call(value, key)) {\n return false;\n }\n }\n return true;\n }\n\n /**\n * Performs a deep comparison between two values to determine if they are\n * equivalent.\n *\n * **Note:** This method supports comparing arrays, array buffers, booleans,\n * date objects, error objects, maps, numbers, `Object` objects, regexes,\n * sets, strings, symbols, and typed arrays. `Object` objects are compared\n * by their own, not inherited, enumerable properties. Functions and DOM\n * nodes are compared by strict equality, i.e. `===`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * var object = { 'a': 1 };\n * var other = { 'a': 1 };\n *\n * _.isEqual(object, other);\n * // => true\n *\n * object === other;\n * // => false\n */\n function isEqual(value, other) {\n return baseIsEqual(value, other);\n }\n\n /**\n * This method is like `_.isEqual` except that it accepts `customizer` which\n * is invoked to compare values. If `customizer` returns `undefined`, comparisons\n * are handled by the method instead. The `customizer` is invoked with up to\n * six arguments: (objValue, othValue [, index|key, object, other, stack]).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @param {Function} [customizer] The function to customize comparisons.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * function isGreeting(value) {\n * return /^h(?:i|ello)$/.test(value);\n * }\n *\n * function customizer(objValue, othValue) {\n * if (isGreeting(objValue) && isGreeting(othValue)) {\n * return true;\n * }\n * }\n *\n * var array = ['hello', 'goodbye'];\n * var other = ['hi', 'goodbye'];\n *\n * _.isEqualWith(array, other, customizer);\n * // => true\n */\n function isEqualWith(value, other, customizer) {\n customizer = typeof customizer == 'function' ? customizer : undefined;\n var result = customizer ? customizer(value, other) : undefined;\n return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result;\n }\n\n /**\n * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`,\n * `SyntaxError`, `TypeError`, or `URIError` object.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an error object, else `false`.\n * @example\n *\n * _.isError(new Error);\n * // => true\n *\n * _.isError(Error);\n * // => false\n */\n function isError(value) {\n if (!isObjectLike(value)) {\n return false;\n }\n var tag = baseGetTag(value);\n return tag == errorTag || tag == domExcTag ||\n (typeof value.message == 'string' && typeof value.name == 'string' && !isPlainObject(value));\n }\n\n /**\n * Checks if `value` is a finite primitive number.\n *\n * **Note:** This method is based on\n * [`Number.isFinite`](https://mdn.io/Number/isFinite).\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a finite number, else `false`.\n * @example\n *\n * _.isFinite(3);\n * // => true\n *\n * _.isFinite(Number.MIN_VALUE);\n * // => true\n *\n * _.isFinite(Infinity);\n * // => false\n *\n * _.isFinite('3');\n * // => false\n */\n function isFinite(value) {\n return typeof value == 'number' && nativeIsFinite(value);\n }\n\n /**\n * Checks if `value` is classified as a `Function` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a function, else `false`.\n * @example\n *\n * _.isFunction(_);\n * // => true\n *\n * _.isFunction(/abc/);\n * // => false\n */\n function isFunction(value) {\n if (!isObject(value)) {\n return false;\n }\n // The use of `Object#toString` avoids issues with the `typeof` operator\n // in Safari 9 which returns 'object' for typed arrays and other constructors.\n var tag = baseGetTag(value);\n return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\n }\n\n /**\n * Checks if `value` is an integer.\n *\n * **Note:** This method is based on\n * [`Number.isInteger`](https://mdn.io/Number/isInteger).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an integer, else `false`.\n * @example\n *\n * _.isInteger(3);\n * // => true\n *\n * _.isInteger(Number.MIN_VALUE);\n * // => false\n *\n * _.isInteger(Infinity);\n * // => false\n *\n * _.isInteger('3');\n * // => false\n */\n function isInteger(value) {\n return typeof value == 'number' && value == toInteger(value);\n }\n\n /**\n * Checks if `value` is a valid array-like length.\n *\n * **Note:** This method is loosely based on\n * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n * @example\n *\n * _.isLength(3);\n * // => true\n *\n * _.isLength(Number.MIN_VALUE);\n * // => false\n *\n * _.isLength(Infinity);\n * // => false\n *\n * _.isLength('3');\n * // => false\n */\n function isLength(value) {\n return typeof value == 'number' &&\n value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n }\n\n /**\n * Checks if `value` is the\n * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n * @example\n *\n * _.isObject({});\n * // => true\n *\n * _.isObject([1, 2, 3]);\n * // => true\n *\n * _.isObject(_.noop);\n * // => true\n *\n * _.isObject(null);\n * // => false\n */\n function isObject(value) {\n var type = typeof value;\n return value != null && (type == 'object' || type == 'function');\n }\n\n /**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\n function isObjectLike(value) {\n return value != null && typeof value == 'object';\n }\n\n /**\n * Checks if `value` is classified as a `Map` object.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a map, else `false`.\n * @example\n *\n * _.isMap(new Map);\n * // => true\n *\n * _.isMap(new WeakMap);\n * // => false\n */\n var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap;\n\n /**\n * Performs a partial deep comparison between `object` and `source` to\n * determine if `object` contains equivalent property values.\n *\n * **Note:** This method is equivalent to `_.matches` when `source` is\n * partially applied.\n *\n * Partial comparisons will match empty array and empty object `source`\n * values against any array or object value, respectively. See `_.isEqual`\n * for a list of supported value comparisons.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {Object} object The object to inspect.\n * @param {Object} source The object of property values to match.\n * @returns {boolean} Returns `true` if `object` is a match, else `false`.\n * @example\n *\n * var object = { 'a': 1, 'b': 2 };\n *\n * _.isMatch(object, { 'b': 2 });\n * // => true\n *\n * _.isMatch(object, { 'b': 1 });\n * // => false\n */\n function isMatch(object, source) {\n return object === source || baseIsMatch(object, source, getMatchData(source));\n }\n\n /**\n * This method is like `_.isMatch` except that it accepts `customizer` which\n * is invoked to compare values. If `customizer` returns `undefined`, comparisons\n * are handled by the method instead. The `customizer` is invoked with five\n * arguments: (objValue, srcValue, index|key, object, source).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {Object} object The object to inspect.\n * @param {Object} source The object of property values to match.\n * @param {Function} [customizer] The function to customize comparisons.\n * @returns {boolean} Returns `true` if `object` is a match, else `false`.\n * @example\n *\n * function isGreeting(value) {\n * return /^h(?:i|ello)$/.test(value);\n * }\n *\n * function customizer(objValue, srcValue) {\n * if (isGreeting(objValue) && isGreeting(srcValue)) {\n * return true;\n * }\n * }\n *\n * var object = { 'greeting': 'hello' };\n * var source = { 'greeting': 'hi' };\n *\n * _.isMatchWith(object, source, customizer);\n * // => true\n */\n function isMatchWith(object, source, customizer) {\n customizer = typeof customizer == 'function' ? customizer : undefined;\n return baseIsMatch(object, source, getMatchData(source), customizer);\n }\n\n /**\n * Checks if `value` is `NaN`.\n *\n * **Note:** This method is based on\n * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as\n * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for\n * `undefined` and other non-number values.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\n * @example\n *\n * _.isNaN(NaN);\n * // => true\n *\n * _.isNaN(new Number(NaN));\n * // => true\n *\n * isNaN(undefined);\n * // => true\n *\n * _.isNaN(undefined);\n * // => false\n */\n function isNaN(value) {\n // An `NaN` primitive is the only value that is not equal to itself.\n // Perform the `toStringTag` check first to avoid errors with some\n // ActiveX objects in IE.\n return isNumber(value) && value != +value;\n }\n\n /**\n * Checks if `value` is a pristine native function.\n *\n * **Note:** This method can't reliably detect native functions in the presence\n * of the core-js package because core-js circumvents this kind of detection.\n * Despite multiple requests, the core-js maintainer has made it clear: any\n * attempt to fix the detection will be obstructed. As a result, we're left\n * with little choice but to throw an error. Unfortunately, this also affects\n * packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill),\n * which rely on core-js.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a native function,\n * else `false`.\n * @example\n *\n * _.isNative(Array.prototype.push);\n * // => true\n *\n * _.isNative(_);\n * // => false\n */\n function isNative(value) {\n if (isMaskable(value)) {\n throw new Error(CORE_ERROR_TEXT);\n }\n return baseIsNative(value);\n }\n\n /**\n * Checks if `value` is `null`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is `null`, else `false`.\n * @example\n *\n * _.isNull(null);\n * // => true\n *\n * _.isNull(void 0);\n * // => false\n */\n function isNull(value) {\n return value === null;\n }\n\n /**\n * Checks if `value` is `null` or `undefined`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is nullish, else `false`.\n * @example\n *\n * _.isNil(null);\n * // => true\n *\n * _.isNil(void 0);\n * // => true\n *\n * _.isNil(NaN);\n * // => false\n */\n function isNil(value) {\n return value == null;\n }\n\n /**\n * Checks if `value` is classified as a `Number` primitive or object.\n *\n * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are\n * classified as numbers, use the `_.isFinite` method.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a number, else `false`.\n * @example\n *\n * _.isNumber(3);\n * // => true\n *\n * _.isNumber(Number.MIN_VALUE);\n * // => true\n *\n * _.isNumber(Infinity);\n * // => true\n *\n * _.isNumber('3');\n * // => false\n */\n function isNumber(value) {\n return typeof value == 'number' ||\n (isObjectLike(value) && baseGetTag(value) == numberTag);\n }\n\n /**\n * Checks if `value` is a plain object, that is, an object created by the\n * `Object` constructor or one with a `[[Prototype]]` of `null`.\n *\n * @static\n * @memberOf _\n * @since 0.8.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * }\n *\n * _.isPlainObject(new Foo);\n * // => false\n *\n * _.isPlainObject([1, 2, 3]);\n * // => false\n *\n * _.isPlainObject({ 'x': 0, 'y': 0 });\n * // => true\n *\n * _.isPlainObject(Object.create(null));\n * // => true\n */\n function isPlainObject(value) {\n if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\n return false;\n }\n var proto = getPrototype(value);\n if (proto === null) {\n return true;\n }\n var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\n return typeof Ctor == 'function' && Ctor instanceof Ctor &&\n funcToString.call(Ctor) == objectCtorString;\n }\n\n /**\n * Checks if `value` is classified as a `RegExp` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.\n * @example\n *\n * _.isRegExp(/abc/);\n * // => true\n *\n * _.isRegExp('/abc/');\n * // => false\n */\n var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp;\n\n /**\n * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754\n * double precision number which isn't the result of a rounded unsafe integer.\n *\n * **Note:** This method is based on\n * [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`.\n * @example\n *\n * _.isSafeInteger(3);\n * // => true\n *\n * _.isSafeInteger(Number.MIN_VALUE);\n * // => false\n *\n * _.isSafeInteger(Infinity);\n * // => false\n *\n * _.isSafeInteger('3');\n * // => false\n */\n function isSafeInteger(value) {\n return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER;\n }\n\n /**\n * Checks if `value` is classified as a `Set` object.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a set, else `false`.\n * @example\n *\n * _.isSet(new Set);\n * // => true\n *\n * _.isSet(new WeakSet);\n * // => false\n */\n var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet;\n\n /**\n * Checks if `value` is classified as a `String` primitive or object.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a string, else `false`.\n * @example\n *\n * _.isString('abc');\n * // => true\n *\n * _.isString(1);\n * // => false\n */\n function isString(value) {\n return typeof value == 'string' ||\n (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag);\n }\n\n /**\n * Checks if `value` is classified as a `Symbol` primitive or object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\n * @example\n *\n * _.isSymbol(Symbol.iterator);\n * // => true\n *\n * _.isSymbol('abc');\n * // => false\n */\n function isSymbol(value) {\n return typeof value == 'symbol' ||\n (isObjectLike(value) && baseGetTag(value) == symbolTag);\n }\n\n /**\n * Checks if `value` is classified as a typed array.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n * @example\n *\n * _.isTypedArray(new Uint8Array);\n * // => true\n *\n * _.isTypedArray([]);\n * // => false\n */\n var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\n\n /**\n * Checks if `value` is `undefined`.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`.\n * @example\n *\n * _.isUndefined(void 0);\n * // => true\n *\n * _.isUndefined(null);\n * // => false\n */\n function isUndefined(value) {\n return value === undefined;\n }\n\n /**\n * Checks if `value` is classified as a `WeakMap` object.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a weak map, else `false`.\n * @example\n *\n * _.isWeakMap(new WeakMap);\n * // => true\n *\n * _.isWeakMap(new Map);\n * // => false\n */\n function isWeakMap(value) {\n return isObjectLike(value) && getTag(value) == weakMapTag;\n }\n\n /**\n * Checks if `value` is classified as a `WeakSet` object.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a weak set, else `false`.\n * @example\n *\n * _.isWeakSet(new WeakSet);\n * // => true\n *\n * _.isWeakSet(new Set);\n * // => false\n */\n function isWeakSet(value) {\n return isObjectLike(value) && baseGetTag(value) == weakSetTag;\n }\n\n /**\n * Checks if `value` is less than `other`.\n *\n * @static\n * @memberOf _\n * @since 3.9.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if `value` is less than `other`,\n * else `false`.\n * @see _.gt\n * @example\n *\n * _.lt(1, 3);\n * // => true\n *\n * _.lt(3, 3);\n * // => false\n *\n * _.lt(3, 1);\n * // => false\n */\n var lt = createRelationalOperation(baseLt);\n\n /**\n * Checks if `value` is less than or equal to `other`.\n *\n * @static\n * @memberOf _\n * @since 3.9.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if `value` is less than or equal to\n * `other`, else `false`.\n * @see _.gte\n * @example\n *\n * _.lte(1, 3);\n * // => true\n *\n * _.lte(3, 3);\n * // => true\n *\n * _.lte(3, 1);\n * // => false\n */\n var lte = createRelationalOperation(function(value, other) {\n return value <= other;\n });\n\n /**\n * Converts `value` to an array.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {Array} Returns the converted array.\n * @example\n *\n * _.toArray({ 'a': 1, 'b': 2 });\n * // => [1, 2]\n *\n * _.toArray('abc');\n * // => ['a', 'b', 'c']\n *\n * _.toArray(1);\n * // => []\n *\n * _.toArray(null);\n * // => []\n */\n function toArray(value) {\n if (!value) {\n return [];\n }\n if (isArrayLike(value)) {\n return isString(value) ? stringToArray(value) : copyArray(value);\n }\n if (symIterator && value[symIterator]) {\n return iteratorToArray(value[symIterator]());\n }\n var tag = getTag(value),\n func = tag == mapTag ? mapToArray : (tag == setTag ? setToArray : values);\n\n return func(value);\n }\n\n /**\n * Converts `value` to a finite number.\n *\n * @static\n * @memberOf _\n * @since 4.12.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {number} Returns the converted number.\n * @example\n *\n * _.toFinite(3.2);\n * // => 3.2\n *\n * _.toFinite(Number.MIN_VALUE);\n * // => 5e-324\n *\n * _.toFinite(Infinity);\n * // => 1.7976931348623157e+308\n *\n * _.toFinite('3.2');\n * // => 3.2\n */\n function toFinite(value) {\n if (!value) {\n return value === 0 ? value : 0;\n }\n value = toNumber(value);\n if (value === INFINITY || value === -INFINITY) {\n var sign = (value < 0 ? -1 : 1);\n return sign * MAX_INTEGER;\n }\n return value === value ? value : 0;\n }\n\n /**\n * Converts `value` to an integer.\n *\n * **Note:** This method is loosely based on\n * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {number} Returns the converted integer.\n * @example\n *\n * _.toInteger(3.2);\n * // => 3\n *\n * _.toInteger(Number.MIN_VALUE);\n * // => 0\n *\n * _.toInteger(Infinity);\n * // => 1.7976931348623157e+308\n *\n * _.toInteger('3.2');\n * // => 3\n */\n function toInteger(value) {\n var result = toFinite(value),\n remainder = result % 1;\n\n return result === result ? (remainder ? result - remainder : result) : 0;\n }\n\n /**\n * Converts `value` to an integer suitable for use as the length of an\n * array-like object.\n *\n * **Note:** This method is based on\n * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {number} Returns the converted integer.\n * @example\n *\n * _.toLength(3.2);\n * // => 3\n *\n * _.toLength(Number.MIN_VALUE);\n * // => 0\n *\n * _.toLength(Infinity);\n * // => 4294967295\n *\n * _.toLength('3.2');\n * // => 3\n */\n function toLength(value) {\n return value ? baseClamp(toInteger(value), 0, MAX_ARRAY_LENGTH) : 0;\n }\n\n /**\n * Converts `value` to a number.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to process.\n * @returns {number} Returns the number.\n * @example\n *\n * _.toNumber(3.2);\n * // => 3.2\n *\n * _.toNumber(Number.MIN_VALUE);\n * // => 5e-324\n *\n * _.toNumber(Infinity);\n * // => Infinity\n *\n * _.toNumber('3.2');\n * // => 3.2\n */\n function toNumber(value) {\n if (typeof value == 'number') {\n return value;\n }\n if (isSymbol(value)) {\n return NAN;\n }\n if (isObject(value)) {\n var other = typeof value.valueOf == 'function' ? value.valueOf() : value;\n value = isObject(other) ? (other + '') : other;\n }\n if (typeof value != 'string') {\n return value === 0 ? value : +value;\n }\n value = value.replace(reTrim, '');\n var isBinary = reIsBinary.test(value);\n return (isBinary || reIsOctal.test(value))\n ? freeParseInt(value.slice(2), isBinary ? 2 : 8)\n : (reIsBadHex.test(value) ? NAN : +value);\n }\n\n /**\n * Converts `value` to a plain object flattening inherited enumerable string\n * keyed properties of `value` to own properties of the plain object.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {Object} Returns the converted plain object.\n * @example\n *\n * function Foo() {\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.assign({ 'a': 1 }, new Foo);\n * // => { 'a': 1, 'b': 2 }\n *\n * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));\n * // => { 'a': 1, 'b': 2, 'c': 3 }\n */\n function toPlainObject(value) {\n return copyObject(value, keysIn(value));\n }\n\n /**\n * Converts `value` to a safe integer. A safe integer can be compared and\n * represented correctly.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {number} Returns the converted integer.\n * @example\n *\n * _.toSafeInteger(3.2);\n * // => 3\n *\n * _.toSafeInteger(Number.MIN_VALUE);\n * // => 0\n *\n * _.toSafeInteger(Infinity);\n * // => 9007199254740991\n *\n * _.toSafeInteger('3.2');\n * // => 3\n */\n function toSafeInteger(value) {\n return value\n ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER)\n : (value === 0 ? value : 0);\n }\n\n /**\n * Converts `value` to a string. An empty string is returned for `null`\n * and `undefined` values. The sign of `-0` is preserved.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n * @example\n *\n * _.toString(null);\n * // => ''\n *\n * _.toString(-0);\n * // => '-0'\n *\n * _.toString([1, 2, 3]);\n * // => '1,2,3'\n */\n function toString(value) {\n return value == null ? '' : baseToString(value);\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Assigns own enumerable string keyed properties of source objects to the\n * destination object. Source objects are applied from left to right.\n * Subsequent sources overwrite property assignments of previous sources.\n *\n * **Note:** This method mutates `object` and is loosely based on\n * [`Object.assign`](https://mdn.io/Object/assign).\n *\n * @static\n * @memberOf _\n * @since 0.10.0\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @returns {Object} Returns `object`.\n * @see _.assignIn\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * }\n *\n * function Bar() {\n * this.c = 3;\n * }\n *\n * Foo.prototype.b = 2;\n * Bar.prototype.d = 4;\n *\n * _.assign({ 'a': 0 }, new Foo, new Bar);\n * // => { 'a': 1, 'c': 3 }\n */\n var assign = createAssigner(function(object, source) {\n if (isPrototype(source) || isArrayLike(source)) {\n copyObject(source, keys(source), object);\n return;\n }\n for (var key in source) {\n if (hasOwnProperty.call(source, key)) {\n assignValue(object, key, source[key]);\n }\n }\n });\n\n /**\n * This method is like `_.assign` except that it iterates over own and\n * inherited source properties.\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @alias extend\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @returns {Object} Returns `object`.\n * @see _.assign\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * }\n *\n * function Bar() {\n * this.c = 3;\n * }\n *\n * Foo.prototype.b = 2;\n * Bar.prototype.d = 4;\n *\n * _.assignIn({ 'a': 0 }, new Foo, new Bar);\n * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 }\n */\n var assignIn = createAssigner(function(object, source) {\n copyObject(source, keysIn(source), object);\n });\n\n /**\n * This method is like `_.assignIn` except that it accepts `customizer`\n * which is invoked to produce the assigned values. If `customizer` returns\n * `undefined`, assignment is handled by the method instead. The `customizer`\n * is invoked with five arguments: (objValue, srcValue, key, object, source).\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @alias extendWith\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} sources The source objects.\n * @param {Function} [customizer] The function to customize assigned values.\n * @returns {Object} Returns `object`.\n * @see _.assignWith\n * @example\n *\n * function customizer(objValue, srcValue) {\n * return _.isUndefined(objValue) ? srcValue : objValue;\n * }\n *\n * var defaults = _.partialRight(_.assignInWith, customizer);\n *\n * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\n * // => { 'a': 1, 'b': 2 }\n */\n var assignInWith = createAssigner(function(object, source, srcIndex, customizer) {\n copyObject(source, keysIn(source), object, customizer);\n });\n\n /**\n * This method is like `_.assign` except that it accepts `customizer`\n * which is invoked to produce the assigned values. If `customizer` returns\n * `undefined`, assignment is handled by the method instead. The `customizer`\n * is invoked with five arguments: (objValue, srcValue, key, object, source).\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} sources The source objects.\n * @param {Function} [customizer] The function to customize assigned values.\n * @returns {Object} Returns `object`.\n * @see _.assignInWith\n * @example\n *\n * function customizer(objValue, srcValue) {\n * return _.isUndefined(objValue) ? srcValue : objValue;\n * }\n *\n * var defaults = _.partialRight(_.assignWith, customizer);\n *\n * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\n * // => { 'a': 1, 'b': 2 }\n */\n var assignWith = createAssigner(function(object, source, srcIndex, customizer) {\n copyObject(source, keys(source), object, customizer);\n });\n\n /**\n * Creates an array of values corresponding to `paths` of `object`.\n *\n * @static\n * @memberOf _\n * @since 1.0.0\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {...(string|string[])} [paths] The property paths to pick.\n * @returns {Array} Returns the picked values.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };\n *\n * _.at(object, ['a[0].b.c', 'a[1]']);\n * // => [3, 4]\n */\n var at = flatRest(baseAt);\n\n /**\n * Creates an object that inherits from the `prototype` object. If a\n * `properties` object is given, its own enumerable string keyed properties\n * are assigned to the created object.\n *\n * @static\n * @memberOf _\n * @since 2.3.0\n * @category Object\n * @param {Object} prototype The object to inherit from.\n * @param {Object} [properties] The properties to assign to the object.\n * @returns {Object} Returns the new object.\n * @example\n *\n * function Shape() {\n * this.x = 0;\n * this.y = 0;\n * }\n *\n * function Circle() {\n * Shape.call(this);\n * }\n *\n * Circle.prototype = _.create(Shape.prototype, {\n * 'constructor': Circle\n * });\n *\n * var circle = new Circle;\n * circle instanceof Circle;\n * // => true\n *\n * circle instanceof Shape;\n * // => true\n */\n function create(prototype, properties) {\n var result = baseCreate(prototype);\n return properties == null ? result : baseAssign(result, properties);\n }\n\n /**\n * Assigns own and inherited enumerable string keyed properties of source\n * objects to the destination object for all destination properties that\n * resolve to `undefined`. Source objects are applied from left to right.\n * Once a property is set, additional values of the same property are ignored.\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @returns {Object} Returns `object`.\n * @see _.defaultsDeep\n * @example\n *\n * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\n * // => { 'a': 1, 'b': 2 }\n */\n var defaults = baseRest(function(object, sources) {\n object = Object(object);\n\n var index = -1;\n var length = sources.length;\n var guard = length > 2 ? sources[2] : undefined;\n\n if (guard && isIterateeCall(sources[0], sources[1], guard)) {\n length = 1;\n }\n\n while (++index < length) {\n var source = sources[index];\n var props = keysIn(source);\n var propsIndex = -1;\n var propsLength = props.length;\n\n while (++propsIndex < propsLength) {\n var key = props[propsIndex];\n var value = object[key];\n\n if (value === undefined ||\n (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) {\n object[key] = source[key];\n }\n }\n }\n\n return object;\n });\n\n /**\n * This method is like `_.defaults` except that it recursively assigns\n * default properties.\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 3.10.0\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @returns {Object} Returns `object`.\n * @see _.defaults\n * @example\n *\n * _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } });\n * // => { 'a': { 'b': 2, 'c': 3 } }\n */\n var defaultsDeep = baseRest(function(args) {\n args.push(undefined, customDefaultsMerge);\n return apply(mergeWith, undefined, args);\n });\n\n /**\n * This method is like `_.find` except that it returns the key of the first\n * element `predicate` returns truthy for instead of the element itself.\n *\n * @static\n * @memberOf _\n * @since 1.1.0\n * @category Object\n * @param {Object} object The object to inspect.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @returns {string|undefined} Returns the key of the matched element,\n * else `undefined`.\n * @example\n *\n * var users = {\n * 'barney': { 'age': 36, 'active': true },\n * 'fred': { 'age': 40, 'active': false },\n * 'pebbles': { 'age': 1, 'active': true }\n * };\n *\n * _.findKey(users, function(o) { return o.age < 40; });\n * // => 'barney' (iteration order is not guaranteed)\n *\n * // The `_.matches` iteratee shorthand.\n * _.findKey(users, { 'age': 1, 'active': true });\n * // => 'pebbles'\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.findKey(users, ['active', false]);\n * // => 'fred'\n *\n * // The `_.property` iteratee shorthand.\n * _.findKey(users, 'active');\n * // => 'barney'\n */\n function findKey(object, predicate) {\n return baseFindKey(object, getIteratee(predicate, 3), baseForOwn);\n }\n\n /**\n * This method is like `_.findKey` except that it iterates over elements of\n * a collection in the opposite order.\n *\n * @static\n * @memberOf _\n * @since 2.0.0\n * @category Object\n * @param {Object} object The object to inspect.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @returns {string|undefined} Returns the key of the matched element,\n * else `undefined`.\n * @example\n *\n * var users = {\n * 'barney': { 'age': 36, 'active': true },\n * 'fred': { 'age': 40, 'active': false },\n * 'pebbles': { 'age': 1, 'active': true }\n * };\n *\n * _.findLastKey(users, function(o) { return o.age < 40; });\n * // => returns 'pebbles' assuming `_.findKey` returns 'barney'\n *\n * // The `_.matches` iteratee shorthand.\n * _.findLastKey(users, { 'age': 36, 'active': true });\n * // => 'barney'\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.findLastKey(users, ['active', false]);\n * // => 'fred'\n *\n * // The `_.property` iteratee shorthand.\n * _.findLastKey(users, 'active');\n * // => 'pebbles'\n */\n function findLastKey(object, predicate) {\n return baseFindKey(object, getIteratee(predicate, 3), baseForOwnRight);\n }\n\n /**\n * Iterates over own and inherited enumerable string keyed properties of an\n * object and invokes `iteratee` for each property. The iteratee is invoked\n * with three arguments: (value, key, object). Iteratee functions may exit\n * iteration early by explicitly returning `false`.\n *\n * @static\n * @memberOf _\n * @since 0.3.0\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Object} Returns `object`.\n * @see _.forInRight\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.forIn(new Foo, function(value, key) {\n * console.log(key);\n * });\n * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed).\n */\n function forIn(object, iteratee) {\n return object == null\n ? object\n : baseFor(object, getIteratee(iteratee, 3), keysIn);\n }\n\n /**\n * This method is like `_.forIn` except that it iterates over properties of\n * `object` in the opposite order.\n *\n * @static\n * @memberOf _\n * @since 2.0.0\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Object} Returns `object`.\n * @see _.forIn\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.forInRight(new Foo, function(value, key) {\n * console.log(key);\n * });\n * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'.\n */\n function forInRight(object, iteratee) {\n return object == null\n ? object\n : baseForRight(object, getIteratee(iteratee, 3), keysIn);\n }\n\n /**\n * Iterates over own enumerable string keyed properties of an object and\n * invokes `iteratee` for each property. The iteratee is invoked with three\n * arguments: (value, key, object). Iteratee functions may exit iteration\n * early by explicitly returning `false`.\n *\n * @static\n * @memberOf _\n * @since 0.3.0\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Object} Returns `object`.\n * @see _.forOwnRight\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.forOwn(new Foo, function(value, key) {\n * console.log(key);\n * });\n * // => Logs 'a' then 'b' (iteration order is not guaranteed).\n */\n function forOwn(object, iteratee) {\n return object && baseForOwn(object, getIteratee(iteratee, 3));\n }\n\n /**\n * This method is like `_.forOwn` except that it iterates over properties of\n * `object` in the opposite order.\n *\n * @static\n * @memberOf _\n * @since 2.0.0\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Object} Returns `object`.\n * @see _.forOwn\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.forOwnRight(new Foo, function(value, key) {\n * console.log(key);\n * });\n * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'.\n */\n function forOwnRight(object, iteratee) {\n return object && baseForOwnRight(object, getIteratee(iteratee, 3));\n }\n\n /**\n * Creates an array of function property names from own enumerable properties\n * of `object`.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The object to inspect.\n * @returns {Array} Returns the function names.\n * @see _.functionsIn\n * @example\n *\n * function Foo() {\n * this.a = _.constant('a');\n * this.b = _.constant('b');\n * }\n *\n * Foo.prototype.c = _.constant('c');\n *\n * _.functions(new Foo);\n * // => ['a', 'b']\n */\n function functions(object) {\n return object == null ? [] : baseFunctions(object, keys(object));\n }\n\n /**\n * Creates an array of function property names from own and inherited\n * enumerable properties of `object`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Object\n * @param {Object} object The object to inspect.\n * @returns {Array} Returns the function names.\n * @see _.functions\n * @example\n *\n * function Foo() {\n * this.a = _.constant('a');\n * this.b = _.constant('b');\n * }\n *\n * Foo.prototype.c = _.constant('c');\n *\n * _.functionsIn(new Foo);\n * // => ['a', 'b', 'c']\n */\n function functionsIn(object) {\n return object == null ? [] : baseFunctions(object, keysIn(object));\n }\n\n /**\n * Gets the value at `path` of `object`. If the resolved value is\n * `undefined`, the `defaultValue` is returned in its place.\n *\n * @static\n * @memberOf _\n * @since 3.7.0\n * @category Object\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the property to get.\n * @param {*} [defaultValue] The value returned for `undefined` resolved values.\n * @returns {*} Returns the resolved value.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c': 3 } }] };\n *\n * _.get(object, 'a[0].b.c');\n * // => 3\n *\n * _.get(object, ['a', '0', 'b', 'c']);\n * // => 3\n *\n * _.get(object, 'a.b.c', 'default');\n * // => 'default'\n */\n function get(object, path, defaultValue) {\n var result = object == null ? undefined : baseGet(object, path);\n return result === undefined ? defaultValue : result;\n }\n\n /**\n * Checks if `path` is a direct property of `object`.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @param {Array|string} path The path to check.\n * @returns {boolean} Returns `true` if `path` exists, else `false`.\n * @example\n *\n * var object = { 'a': { 'b': 2 } };\n * var other = _.create({ 'a': _.create({ 'b': 2 }) });\n *\n * _.has(object, 'a');\n * // => true\n *\n * _.has(object, 'a.b');\n * // => true\n *\n * _.has(object, ['a', 'b']);\n * // => true\n *\n * _.has(other, 'a');\n * // => false\n */\n function has(object, path) {\n return object != null && hasPath(object, path, baseHas);\n }\n\n /**\n * Checks if `path` is a direct or inherited property of `object`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Object\n * @param {Object} object The object to query.\n * @param {Array|string} path The path to check.\n * @returns {boolean} Returns `true` if `path` exists, else `false`.\n * @example\n *\n * var object = _.create({ 'a': _.create({ 'b': 2 }) });\n *\n * _.hasIn(object, 'a');\n * // => true\n *\n * _.hasIn(object, 'a.b');\n * // => true\n *\n * _.hasIn(object, ['a', 'b']);\n * // => true\n *\n * _.hasIn(object, 'b');\n * // => false\n */\n function hasIn(object, path) {\n return object != null && hasPath(object, path, baseHasIn);\n }\n\n /**\n * Creates an object composed of the inverted keys and values of `object`.\n * If `object` contains duplicate values, subsequent values overwrite\n * property assignments of previous values.\n *\n * @static\n * @memberOf _\n * @since 0.7.0\n * @category Object\n * @param {Object} object The object to invert.\n * @returns {Object} Returns the new inverted object.\n * @example\n *\n * var object = { 'a': 1, 'b': 2, 'c': 1 };\n *\n * _.invert(object);\n * // => { '1': 'c', '2': 'b' }\n */\n var invert = createInverter(function(result, value, key) {\n if (value != null &&\n typeof value.toString != 'function') {\n value = nativeObjectToString.call(value);\n }\n\n result[value] = key;\n }, constant(identity));\n\n /**\n * This method is like `_.invert` except that the inverted object is generated\n * from the results of running each element of `object` thru `iteratee`. The\n * corresponding inverted value of each inverted key is an array of keys\n * responsible for generating the inverted value. The iteratee is invoked\n * with one argument: (value).\n *\n * @static\n * @memberOf _\n * @since 4.1.0\n * @category Object\n * @param {Object} object The object to invert.\n * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\n * @returns {Object} Returns the new inverted object.\n * @example\n *\n * var object = { 'a': 1, 'b': 2, 'c': 1 };\n *\n * _.invertBy(object);\n * // => { '1': ['a', 'c'], '2': ['b'] }\n *\n * _.invertBy(object, function(value) {\n * return 'group' + value;\n * });\n * // => { 'group1': ['a', 'c'], 'group2': ['b'] }\n */\n var invertBy = createInverter(function(result, value, key) {\n if (value != null &&\n typeof value.toString != 'function') {\n value = nativeObjectToString.call(value);\n }\n\n if (hasOwnProperty.call(result, value)) {\n result[value].push(key);\n } else {\n result[value] = [key];\n }\n }, getIteratee);\n\n /**\n * Invokes the method at `path` of `object`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Object\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the method to invoke.\n * @param {...*} [args] The arguments to invoke the method with.\n * @returns {*} Returns the result of the invoked method.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] };\n *\n * _.invoke(object, 'a[0].b.c.slice', 1, 3);\n * // => [2, 3]\n */\n var invoke = baseRest(baseInvoke);\n\n /**\n * Creates an array of the own enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects. See the\n * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * for more details.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keys(new Foo);\n * // => ['a', 'b'] (iteration order is not guaranteed)\n *\n * _.keys('hi');\n * // => ['0', '1']\n */\n function keys(object) {\n return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);\n }\n\n /**\n * Creates an array of the own and inherited enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keysIn(new Foo);\n * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\n */\n function keysIn(object) {\n return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\n }\n\n /**\n * The opposite of `_.mapValues`; this method creates an object with the\n * same values as `object` and keys generated by running each own enumerable\n * string keyed property of `object` thru `iteratee`. The iteratee is invoked\n * with three arguments: (value, key, object).\n *\n * @static\n * @memberOf _\n * @since 3.8.0\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Object} Returns the new mapped object.\n * @see _.mapValues\n * @example\n *\n * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) {\n * return key + value;\n * });\n * // => { 'a1': 1, 'b2': 2 }\n */\n function mapKeys(object, iteratee) {\n var result = {};\n iteratee = getIteratee(iteratee, 3);\n\n baseForOwn(object, function(value, key, object) {\n baseAssignValue(result, iteratee(value, key, object), value);\n });\n return result;\n }\n\n /**\n * Creates an object with the same keys as `object` and values generated\n * by running each own enumerable string keyed property of `object` thru\n * `iteratee`. The iteratee is invoked with three arguments:\n * (value, key, object).\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Object} Returns the new mapped object.\n * @see _.mapKeys\n * @example\n *\n * var users = {\n * 'fred': { 'user': 'fred', 'age': 40 },\n * 'pebbles': { 'user': 'pebbles', 'age': 1 }\n * };\n *\n * _.mapValues(users, function(o) { return o.age; });\n * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)\n *\n * // The `_.property` iteratee shorthand.\n * _.mapValues(users, 'age');\n * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)\n */\n function mapValues(object, iteratee) {\n var result = {};\n iteratee = getIteratee(iteratee, 3);\n\n baseForOwn(object, function(value, key, object) {\n baseAssignValue(result, key, iteratee(value, key, object));\n });\n return result;\n }\n\n /**\n * This method is like `_.assign` except that it recursively merges own and\n * inherited enumerable string keyed properties of source objects into the\n * destination object. Source properties that resolve to `undefined` are\n * skipped if a destination value exists. Array and plain object properties\n * are merged recursively. Other objects and value types are overridden by\n * assignment. Source objects are applied from left to right. Subsequent\n * sources overwrite property assignments of previous sources.\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 0.5.0\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var object = {\n * 'a': [{ 'b': 2 }, { 'd': 4 }]\n * };\n *\n * var other = {\n * 'a': [{ 'c': 3 }, { 'e': 5 }]\n * };\n *\n * _.merge(object, other);\n * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] }\n */\n var merge = createAssigner(function(object, source, srcIndex) {\n baseMerge(object, source, srcIndex);\n });\n\n /**\n * This method is like `_.merge` except that it accepts `customizer` which\n * is invoked to produce the merged values of the destination and source\n * properties. If `customizer` returns `undefined`, merging is handled by the\n * method instead. The `customizer` is invoked with six arguments:\n * (objValue, srcValue, key, object, source, stack).\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} sources The source objects.\n * @param {Function} customizer The function to customize assigned values.\n * @returns {Object} Returns `object`.\n * @example\n *\n * function customizer(objValue, srcValue) {\n * if (_.isArray(objValue)) {\n * return objValue.concat(srcValue);\n * }\n * }\n *\n * var object = { 'a': [1], 'b': [2] };\n * var other = { 'a': [3], 'b': [4] };\n *\n * _.mergeWith(object, other, customizer);\n * // => { 'a': [1, 3], 'b': [2, 4] }\n */\n var mergeWith = createAssigner(function(object, source, srcIndex, customizer) {\n baseMerge(object, source, srcIndex, customizer);\n });\n\n /**\n * The opposite of `_.pick`; this method creates an object composed of the\n * own and inherited enumerable property paths of `object` that are not omitted.\n *\n * **Note:** This method is considerably slower than `_.pick`.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The source object.\n * @param {...(string|string[])} [paths] The property paths to omit.\n * @returns {Object} Returns the new object.\n * @example\n *\n * var object = { 'a': 1, 'b': '2', 'c': 3 };\n *\n * _.omit(object, ['a', 'c']);\n * // => { 'b': '2' }\n */\n var omit = flatRest(function(object, paths) {\n var result = {};\n if (object == null) {\n return result;\n }\n var isDeep = false;\n paths = arrayMap(paths, function(path) {\n path = castPath(path, object);\n isDeep || (isDeep = path.length > 1);\n return path;\n });\n copyObject(object, getAllKeysIn(object), result);\n if (isDeep) {\n result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone);\n }\n var length = paths.length;\n while (length--) {\n baseUnset(result, paths[length]);\n }\n return result;\n });\n\n /**\n * The opposite of `_.pickBy`; this method creates an object composed of\n * the own and inherited enumerable string keyed properties of `object` that\n * `predicate` doesn't return truthy for. The predicate is invoked with two\n * arguments: (value, key).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Object\n * @param {Object} object The source object.\n * @param {Function} [predicate=_.identity] The function invoked per property.\n * @returns {Object} Returns the new object.\n * @example\n *\n * var object = { 'a': 1, 'b': '2', 'c': 3 };\n *\n * _.omitBy(object, _.isNumber);\n * // => { 'b': '2' }\n */\n function omitBy(object, predicate) {\n return pickBy(object, negate(getIteratee(predicate)));\n }\n\n /**\n * Creates an object composed of the picked `object` properties.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The source object.\n * @param {...(string|string[])} [paths] The property paths to pick.\n * @returns {Object} Returns the new object.\n * @example\n *\n * var object = { 'a': 1, 'b': '2', 'c': 3 };\n *\n * _.pick(object, ['a', 'c']);\n * // => { 'a': 1, 'c': 3 }\n */\n var pick = flatRest(function(object, paths) {\n return object == null ? {} : basePick(object, paths);\n });\n\n /**\n * Creates an object composed of the `object` properties `predicate` returns\n * truthy for. The predicate is invoked with two arguments: (value, key).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Object\n * @param {Object} object The source object.\n * @param {Function} [predicate=_.identity] The function invoked per property.\n * @returns {Object} Returns the new object.\n * @example\n *\n * var object = { 'a': 1, 'b': '2', 'c': 3 };\n *\n * _.pickBy(object, _.isNumber);\n * // => { 'a': 1, 'c': 3 }\n */\n function pickBy(object, predicate) {\n if (object == null) {\n return {};\n }\n var props = arrayMap(getAllKeysIn(object), function(prop) {\n return [prop];\n });\n predicate = getIteratee(predicate);\n return basePickBy(object, props, function(value, path) {\n return predicate(value, path[0]);\n });\n }\n\n /**\n * This method is like `_.get` except that if the resolved value is a\n * function it's invoked with the `this` binding of its parent object and\n * its result is returned.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the property to resolve.\n * @param {*} [defaultValue] The value returned for `undefined` resolved values.\n * @returns {*} Returns the resolved value.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] };\n *\n * _.result(object, 'a[0].b.c1');\n * // => 3\n *\n * _.result(object, 'a[0].b.c2');\n * // => 4\n *\n * _.result(object, 'a[0].b.c3', 'default');\n * // => 'default'\n *\n * _.result(object, 'a[0].b.c3', _.constant('default'));\n * // => 'default'\n */\n function result(object, path, defaultValue) {\n path = castPath(path, object);\n\n var index = -1,\n length = path.length;\n\n // Ensure the loop is entered when path is empty.\n if (!length) {\n length = 1;\n object = undefined;\n }\n while (++index < length) {\n var value = object == null ? undefined : object[toKey(path[index])];\n if (value === undefined) {\n index = length;\n value = defaultValue;\n }\n object = isFunction(value) ? value.call(object) : value;\n }\n return object;\n }\n\n /**\n * Sets the value at `path` of `object`. If a portion of `path` doesn't exist,\n * it's created. Arrays are created for missing index properties while objects\n * are created for all other missing properties. Use `_.setWith` to customize\n * `path` creation.\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 3.7.0\n * @category Object\n * @param {Object} object The object to modify.\n * @param {Array|string} path The path of the property to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c': 3 } }] };\n *\n * _.set(object, 'a[0].b.c', 4);\n * console.log(object.a[0].b.c);\n * // => 4\n *\n * _.set(object, ['x', '0', 'y', 'z'], 5);\n * console.log(object.x[0].y.z);\n * // => 5\n */\n function set(object, path, value) {\n return object == null ? object : baseSet(object, path, value);\n }\n\n /**\n * This method is like `_.set` except that it accepts `customizer` which is\n * invoked to produce the objects of `path`. If `customizer` returns `undefined`\n * path creation is handled by the method instead. The `customizer` is invoked\n * with three arguments: (nsValue, key, nsObject).\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Object\n * @param {Object} object The object to modify.\n * @param {Array|string} path The path of the property to set.\n * @param {*} value The value to set.\n * @param {Function} [customizer] The function to customize assigned values.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var object = {};\n *\n * _.setWith(object, '[0][1]', 'a', Object);\n * // => { '0': { '1': 'a' } }\n */\n function setWith(object, path, value, customizer) {\n customizer = typeof customizer == 'function' ? customizer : undefined;\n return object == null ? object : baseSet(object, path, value, customizer);\n }\n\n /**\n * Creates an array of own enumerable string keyed-value pairs for `object`\n * which can be consumed by `_.fromPairs`. If `object` is a map or set, its\n * entries are returned.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @alias entries\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the key-value pairs.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.toPairs(new Foo);\n * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed)\n */\n var toPairs = createToPairs(keys);\n\n /**\n * Creates an array of own and inherited enumerable string keyed-value pairs\n * for `object` which can be consumed by `_.fromPairs`. If `object` is a map\n * or set, its entries are returned.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @alias entriesIn\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the key-value pairs.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.toPairsIn(new Foo);\n * // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed)\n */\n var toPairsIn = createToPairs(keysIn);\n\n /**\n * An alternative to `_.reduce`; this method transforms `object` to a new\n * `accumulator` object which is the result of running each of its own\n * enumerable string keyed properties thru `iteratee`, with each invocation\n * potentially mutating the `accumulator` object. If `accumulator` is not\n * provided, a new object with the same `[[Prototype]]` will be used. The\n * iteratee is invoked with four arguments: (accumulator, value, key, object).\n * Iteratee functions may exit iteration early by explicitly returning `false`.\n *\n * @static\n * @memberOf _\n * @since 1.3.0\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @param {*} [accumulator] The custom accumulator value.\n * @returns {*} Returns the accumulated value.\n * @example\n *\n * _.transform([2, 3, 4], function(result, n) {\n * result.push(n *= n);\n * return n % 2 == 0;\n * }, []);\n * // => [4, 9]\n *\n * _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {\n * (result[value] || (result[value] = [])).push(key);\n * }, {});\n * // => { '1': ['a', 'c'], '2': ['b'] }\n */\n function transform(object, iteratee, accumulator) {\n var isArr = isArray(object),\n isArrLike = isArr || isBuffer(object) || isTypedArray(object);\n\n iteratee = getIteratee(iteratee, 4);\n if (accumulator == null) {\n var Ctor = object && object.constructor;\n if (isArrLike) {\n accumulator = isArr ? new Ctor : [];\n }\n else if (isObject(object)) {\n accumulator = isFunction(Ctor) ? baseCreate(getPrototype(object)) : {};\n }\n else {\n accumulator = {};\n }\n }\n (isArrLike ? arrayEach : baseForOwn)(object, function(value, index, object) {\n return iteratee(accumulator, value, index, object);\n });\n return accumulator;\n }\n\n /**\n * Removes the property at `path` of `object`.\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Object\n * @param {Object} object The object to modify.\n * @param {Array|string} path The path of the property to unset.\n * @returns {boolean} Returns `true` if the property is deleted, else `false`.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c': 7 } }] };\n * _.unset(object, 'a[0].b.c');\n * // => true\n *\n * console.log(object);\n * // => { 'a': [{ 'b': {} }] };\n *\n * _.unset(object, ['a', '0', 'b', 'c']);\n * // => true\n *\n * console.log(object);\n * // => { 'a': [{ 'b': {} }] };\n */\n function unset(object, path) {\n return object == null ? true : baseUnset(object, path);\n }\n\n /**\n * This method is like `_.set` except that accepts `updater` to produce the\n * value to set. Use `_.updateWith` to customize `path` creation. The `updater`\n * is invoked with one argument: (value).\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 4.6.0\n * @category Object\n * @param {Object} object The object to modify.\n * @param {Array|string} path The path of the property to set.\n * @param {Function} updater The function to produce the updated value.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var object = { 'a': [{ 'b': { 'c': 3 } }] };\n *\n * _.update(object, 'a[0].b.c', function(n) { return n * n; });\n * console.log(object.a[0].b.c);\n * // => 9\n *\n * _.update(object, 'x[0].y.z', function(n) { return n ? n + 1 : 0; });\n * console.log(object.x[0].y.z);\n * // => 0\n */\n function update(object, path, updater) {\n return object == null ? object : baseUpdate(object, path, castFunction(updater));\n }\n\n /**\n * This method is like `_.update` except that it accepts `customizer` which is\n * invoked to produce the objects of `path`. If `customizer` returns `undefined`\n * path creation is handled by the method instead. The `customizer` is invoked\n * with three arguments: (nsValue, key, nsObject).\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 4.6.0\n * @category Object\n * @param {Object} object The object to modify.\n * @param {Array|string} path The path of the property to set.\n * @param {Function} updater The function to produce the updated value.\n * @param {Function} [customizer] The function to customize assigned values.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var object = {};\n *\n * _.updateWith(object, '[0][1]', _.constant('a'), Object);\n * // => { '0': { '1': 'a' } }\n */\n function updateWith(object, path, updater, customizer) {\n customizer = typeof customizer == 'function' ? customizer : undefined;\n return object == null ? object : baseUpdate(object, path, castFunction(updater), customizer);\n }\n\n /**\n * Creates an array of the own enumerable string keyed property values of `object`.\n *\n * **Note:** Non-object values are coerced to objects.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property values.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.values(new Foo);\n * // => [1, 2] (iteration order is not guaranteed)\n *\n * _.values('hi');\n * // => ['h', 'i']\n */\n function values(object) {\n return object == null ? [] : baseValues(object, keys(object));\n }\n\n /**\n * Creates an array of the own and inherited enumerable string keyed property\n * values of `object`.\n *\n * **Note:** Non-object values are coerced to objects.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property values.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.valuesIn(new Foo);\n * // => [1, 2, 3] (iteration order is not guaranteed)\n */\n function valuesIn(object) {\n return object == null ? [] : baseValues(object, keysIn(object));\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Clamps `number` within the inclusive `lower` and `upper` bounds.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Number\n * @param {number} number The number to clamp.\n * @param {number} [lower] The lower bound.\n * @param {number} upper The upper bound.\n * @returns {number} Returns the clamped number.\n * @example\n *\n * _.clamp(-10, -5, 5);\n * // => -5\n *\n * _.clamp(10, -5, 5);\n * // => 5\n */\n function clamp(number, lower, upper) {\n if (upper === undefined) {\n upper = lower;\n lower = undefined;\n }\n if (upper !== undefined) {\n upper = toNumber(upper);\n upper = upper === upper ? upper : 0;\n }\n if (lower !== undefined) {\n lower = toNumber(lower);\n lower = lower === lower ? lower : 0;\n }\n return baseClamp(toNumber(number), lower, upper);\n }\n\n /**\n * Checks if `n` is between `start` and up to, but not including, `end`. If\n * `end` is not specified, it's set to `start` with `start` then set to `0`.\n * If `start` is greater than `end` the params are swapped to support\n * negative ranges.\n *\n * @static\n * @memberOf _\n * @since 3.3.0\n * @category Number\n * @param {number} number The number to check.\n * @param {number} [start=0] The start of the range.\n * @param {number} end The end of the range.\n * @returns {boolean} Returns `true` if `number` is in the range, else `false`.\n * @see _.range, _.rangeRight\n * @example\n *\n * _.inRange(3, 2, 4);\n * // => true\n *\n * _.inRange(4, 8);\n * // => true\n *\n * _.inRange(4, 2);\n * // => false\n *\n * _.inRange(2, 2);\n * // => false\n *\n * _.inRange(1.2, 2);\n * // => true\n *\n * _.inRange(5.2, 4);\n * // => false\n *\n * _.inRange(-3, -2, -6);\n * // => true\n */\n function inRange(number, start, end) {\n start = toFinite(start);\n if (end === undefined) {\n end = start;\n start = 0;\n } else {\n end = toFinite(end);\n }\n number = toNumber(number);\n return baseInRange(number, start, end);\n }\n\n /**\n * Produces a random number between the inclusive `lower` and `upper` bounds.\n * If only one argument is provided a number between `0` and the given number\n * is returned. If `floating` is `true`, or either `lower` or `upper` are\n * floats, a floating-point number is returned instead of an integer.\n *\n * **Note:** JavaScript follows the IEEE-754 standard for resolving\n * floating-point values which can produce unexpected results.\n *\n * @static\n * @memberOf _\n * @since 0.7.0\n * @category Number\n * @param {number} [lower=0] The lower bound.\n * @param {number} [upper=1] The upper bound.\n * @param {boolean} [floating] Specify returning a floating-point number.\n * @returns {number} Returns the random number.\n * @example\n *\n * _.random(0, 5);\n * // => an integer between 0 and 5\n *\n * _.random(5);\n * // => also an integer between 0 and 5\n *\n * _.random(5, true);\n * // => a floating-point number between 0 and 5\n *\n * _.random(1.2, 5.2);\n * // => a floating-point number between 1.2 and 5.2\n */\n function random(lower, upper, floating) {\n if (floating && typeof floating != 'boolean' && isIterateeCall(lower, upper, floating)) {\n upper = floating = undefined;\n }\n if (floating === undefined) {\n if (typeof upper == 'boolean') {\n floating = upper;\n upper = undefined;\n }\n else if (typeof lower == 'boolean') {\n floating = lower;\n lower = undefined;\n }\n }\n if (lower === undefined && upper === undefined) {\n lower = 0;\n upper = 1;\n }\n else {\n lower = toFinite(lower);\n if (upper === undefined) {\n upper = lower;\n lower = 0;\n } else {\n upper = toFinite(upper);\n }\n }\n if (lower > upper) {\n var temp = lower;\n lower = upper;\n upper = temp;\n }\n if (floating || lower % 1 || upper % 1) {\n var rand = nativeRandom();\n return nativeMin(lower + (rand * (upper - lower + freeParseFloat('1e-' + ((rand + '').length - 1)))), upper);\n }\n return baseRandom(lower, upper);\n }\n\n /*------------------------------------------------------------------------*/\n\n /**\n * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase).\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to convert.\n * @returns {string} Returns the camel cased string.\n * @example\n *\n * _.camelCase('Foo Bar');\n * // => 'fooBar'\n *\n * _.camelCase('--foo-bar--');\n * // => 'fooBar'\n *\n * _.camelCase('__FOO_BAR__');\n * // => 'fooBar'\n */\n var camelCase = createCompounder(function(result, word, index) {\n word = word.toLowerCase();\n return result + (index ? capitalize(word) : word);\n });\n\n /**\n * Converts the first character of `string` to upper case and the remaining\n * to lower case.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to capitalize.\n * @returns {string} Returns the capitalized string.\n * @example\n *\n * _.capitalize('FRED');\n * // => 'Fred'\n */\n function capitalize(string) {\n return upperFirst(toString(string).toLowerCase());\n }\n\n /**\n * Deburrs `string` by converting\n * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table)\n * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A)\n * letters to basic Latin letters and removing\n * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks).\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to deburr.\n * @returns {string} Returns the deburred string.\n * @example\n *\n * _.deburr('déjà vu');\n * // => 'deja vu'\n */\n function deburr(string) {\n string = toString(string);\n return string && string.replace(reLatin, deburrLetter).replace(reComboMark, '');\n }\n\n /**\n * Checks if `string` ends with the given target string.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to inspect.\n * @param {string} [target] The string to search for.\n * @param {number} [position=string.length] The position to search up to.\n * @returns {boolean} Returns `true` if `string` ends with `target`,\n * else `false`.\n * @example\n *\n * _.endsWith('abc', 'c');\n * // => true\n *\n * _.endsWith('abc', 'b');\n * // => false\n *\n * _.endsWith('abc', 'b', 2);\n * // => true\n */\n function endsWith(string, target, position) {\n string = toString(string);\n target = baseToString(target);\n\n var length = string.length;\n position = position === undefined\n ? length\n : baseClamp(toInteger(position), 0, length);\n\n var end = position;\n position -= target.length;\n return position >= 0 && string.slice(position, end) == target;\n }\n\n /**\n * Converts the characters \"&\", \"<\", \">\", '\"', and \"'\" in `string` to their\n * corresponding HTML entities.\n *\n * **Note:** No other characters are escaped. To escape additional\n * characters use a third-party library like [_he_](https://mths.be/he).\n *\n * Though the \">\" character is escaped for symmetry, characters like\n * \">\" and \"/\" don't need escaping in HTML and have no special meaning\n * unless they're part of a tag or unquoted attribute value. See\n * [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands)\n * (under \"semi-related fun fact\") for more details.\n *\n * When working with HTML you should always\n * [quote attribute values](http://wonko.com/post/html-escaping) to reduce\n * XSS vectors.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category String\n * @param {string} [string=''] The string to escape.\n * @returns {string} Returns the escaped string.\n * @example\n *\n * _.escape('fred, barney, & pebbles');\n * // => 'fred, barney, & pebbles'\n */\n function escape(string) {\n string = toString(string);\n return (string && reHasUnescapedHtml.test(string))\n ? string.replace(reUnescapedHtml, escapeHtmlChar)\n : string;\n }\n\n /**\n * Escapes the `RegExp` special characters \"^\", \"$\", \"\\\", \".\", \"*\", \"+\",\n * \"?\", \"(\", \")\", \"[\", \"]\", \"{\", \"}\", and \"|\" in `string`.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to escape.\n * @returns {string} Returns the escaped string.\n * @example\n *\n * _.escapeRegExp('[lodash](https://lodash.com/)');\n * // => '\\[lodash\\]\\(https://lodash\\.com/\\)'\n */\n function escapeRegExp(string) {\n string = toString(string);\n return (string && reHasRegExpChar.test(string))\n ? string.replace(reRegExpChar, '\\\\$&')\n : string;\n }\n\n /**\n * Converts `string` to\n * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles).\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to convert.\n * @returns {string} Returns the kebab cased string.\n * @example\n *\n * _.kebabCase('Foo Bar');\n * // => 'foo-bar'\n *\n * _.kebabCase('fooBar');\n * // => 'foo-bar'\n *\n * _.kebabCase('__FOO_BAR__');\n * // => 'foo-bar'\n */\n var kebabCase = createCompounder(function(result, word, index) {\n return result + (index ? '-' : '') + word.toLowerCase();\n });\n\n /**\n * Converts `string`, as space separated words, to lower case.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category String\n * @param {string} [string=''] The string to convert.\n * @returns {string} Returns the lower cased string.\n * @example\n *\n * _.lowerCase('--Foo-Bar--');\n * // => 'foo bar'\n *\n * _.lowerCase('fooBar');\n * // => 'foo bar'\n *\n * _.lowerCase('__FOO_BAR__');\n * // => 'foo bar'\n */\n var lowerCase = createCompounder(function(result, word, index) {\n return result + (index ? ' ' : '') + word.toLowerCase();\n });\n\n /**\n * Converts the first character of `string` to lower case.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category String\n * @param {string} [string=''] The string to convert.\n * @returns {string} Returns the converted string.\n * @example\n *\n * _.lowerFirst('Fred');\n * // => 'fred'\n *\n * _.lowerFirst('FRED');\n * // => 'fRED'\n */\n var lowerFirst = createCaseFirst('toLowerCase');\n\n /**\n * Pads `string` on the left and right sides if it's shorter than `length`.\n * Padding characters are truncated if they can't be evenly divided by `length`.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to pad.\n * @param {number} [length=0] The padding length.\n * @param {string} [chars=' '] The string used as padding.\n * @returns {string} Returns the padded string.\n * @example\n *\n * _.pad('abc', 8);\n * // => ' abc '\n *\n * _.pad('abc', 8, '_-');\n * // => '_-abc_-_'\n *\n * _.pad('abc', 3);\n * // => 'abc'\n */\n function pad(string, length, chars) {\n string = toString(string);\n length = toInteger(length);\n\n var strLength = length ? stringSize(string) : 0;\n if (!length || strLength >= length) {\n return string;\n }\n var mid = (length - strLength) / 2;\n return (\n createPadding(nativeFloor(mid), chars) +\n string +\n createPadding(nativeCeil(mid), chars)\n );\n }\n\n /**\n * Pads `string` on the right side if it's shorter than `length`. Padding\n * characters are truncated if they exceed `length`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category String\n * @param {string} [string=''] The string to pad.\n * @param {number} [length=0] The padding length.\n * @param {string} [chars=' '] The string used as padding.\n * @returns {string} Returns the padded string.\n * @example\n *\n * _.padEnd('abc', 6);\n * // => 'abc '\n *\n * _.padEnd('abc', 6, '_-');\n * // => 'abc_-_'\n *\n * _.padEnd('abc', 3);\n * // => 'abc'\n */\n function padEnd(string, length, chars) {\n string = toString(string);\n length = toInteger(length);\n\n var strLength = length ? stringSize(string) : 0;\n return (length && strLength < length)\n ? (string + createPadding(length - strLength, chars))\n : string;\n }\n\n /**\n * Pads `string` on the left side if it's shorter than `length`. Padding\n * characters are truncated if they exceed `length`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category String\n * @param {string} [string=''] The string to pad.\n * @param {number} [length=0] The padding length.\n * @param {string} [chars=' '] The string used as padding.\n * @returns {string} Returns the padded string.\n * @example\n *\n * _.padStart('abc', 6);\n * // => ' abc'\n *\n * _.padStart('abc', 6, '_-');\n * // => '_-_abc'\n *\n * _.padStart('abc', 3);\n * // => 'abc'\n */\n function padStart(string, length, chars) {\n string = toString(string);\n length = toInteger(length);\n\n var strLength = length ? stringSize(string) : 0;\n return (length && strLength < length)\n ? (createPadding(length - strLength, chars) + string)\n : string;\n }\n\n /**\n * Converts `string` to an integer of the specified radix. If `radix` is\n * `undefined` or `0`, a `radix` of `10` is used unless `value` is a\n * hexadecimal, in which case a `radix` of `16` is used.\n *\n * **Note:** This method aligns with the\n * [ES5 implementation](https://es5.github.io/#x15.1.2.2) of `parseInt`.\n *\n * @static\n * @memberOf _\n * @since 1.1.0\n * @category String\n * @param {string} string The string to convert.\n * @param {number} [radix=10] The radix to interpret `value` by.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {number} Returns the converted integer.\n * @example\n *\n * _.parseInt('08');\n * // => 8\n *\n * _.map(['6', '08', '10'], _.parseInt);\n * // => [6, 8, 10]\n */\n function parseInt(string, radix, guard) {\n if (guard || radix == null) {\n radix = 0;\n } else if (radix) {\n radix = +radix;\n }\n return nativeParseInt(toString(string).replace(reTrimStart, ''), radix || 0);\n }\n\n /**\n * Repeats the given string `n` times.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to repeat.\n * @param {number} [n=1] The number of times to repeat the string.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {string} Returns the repeated string.\n * @example\n *\n * _.repeat('*', 3);\n * // => '***'\n *\n * _.repeat('abc', 2);\n * // => 'abcabc'\n *\n * _.repeat('abc', 0);\n * // => ''\n */\n function repeat(string, n, guard) {\n if ((guard ? isIterateeCall(string, n, guard) : n === undefined)) {\n n = 1;\n } else {\n n = toInteger(n);\n }\n return baseRepeat(toString(string), n);\n }\n\n /**\n * Replaces matches for `pattern` in `string` with `replacement`.\n *\n * **Note:** This method is based on\n * [`String#replace`](https://mdn.io/String/replace).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category String\n * @param {string} [string=''] The string to modify.\n * @param {RegExp|string} pattern The pattern to replace.\n * @param {Function|string} replacement The match replacement.\n * @returns {string} Returns the modified string.\n * @example\n *\n * _.replace('Hi Fred', 'Fred', 'Barney');\n * // => 'Hi Barney'\n */\n function replace() {\n var args = arguments,\n string = toString(args[0]);\n\n return args.length < 3 ? string : string.replace(args[1], args[2]);\n }\n\n /**\n * Converts `string` to\n * [snake case](https://en.wikipedia.org/wiki/Snake_case).\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to convert.\n * @returns {string} Returns the snake cased string.\n * @example\n *\n * _.snakeCase('Foo Bar');\n * // => 'foo_bar'\n *\n * _.snakeCase('fooBar');\n * // => 'foo_bar'\n *\n * _.snakeCase('--FOO-BAR--');\n * // => 'foo_bar'\n */\n var snakeCase = createCompounder(function(result, word, index) {\n return result + (index ? '_' : '') + word.toLowerCase();\n });\n\n /**\n * Splits `string` by `separator`.\n *\n * **Note:** This method is based on\n * [`String#split`](https://mdn.io/String/split).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category String\n * @param {string} [string=''] The string to split.\n * @param {RegExp|string} separator The separator pattern to split by.\n * @param {number} [limit] The length to truncate results to.\n * @returns {Array} Returns the string segments.\n * @example\n *\n * _.split('a-b-c', '-', 2);\n * // => ['a', 'b']\n */\n function split(string, separator, limit) {\n if (limit && typeof limit != 'number' && isIterateeCall(string, separator, limit)) {\n separator = limit = undefined;\n }\n limit = limit === undefined ? MAX_ARRAY_LENGTH : limit >>> 0;\n if (!limit) {\n return [];\n }\n string = toString(string);\n if (string && (\n typeof separator == 'string' ||\n (separator != null && !isRegExp(separator))\n )) {\n separator = baseToString(separator);\n if (!separator && hasUnicode(string)) {\n return castSlice(stringToArray(string), 0, limit);\n }\n }\n return string.split(separator, limit);\n }\n\n /**\n * Converts `string` to\n * [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage).\n *\n * @static\n * @memberOf _\n * @since 3.1.0\n * @category String\n * @param {string} [string=''] The string to convert.\n * @returns {string} Returns the start cased string.\n * @example\n *\n * _.startCase('--foo-bar--');\n * // => 'Foo Bar'\n *\n * _.startCase('fooBar');\n * // => 'Foo Bar'\n *\n * _.startCase('__FOO_BAR__');\n * // => 'FOO BAR'\n */\n var startCase = createCompounder(function(result, word, index) {\n return result + (index ? ' ' : '') + upperFirst(word);\n });\n\n /**\n * Checks if `string` starts with the given target string.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category String\n * @param {string} [string=''] The string to inspect.\n * @param {string} [target] The string to search for.\n * @param {number} [position=0] The position to search from.\n * @returns {boolean} Returns `true` if `string` starts with `target`,\n * else `false`.\n * @example\n *\n * _.startsWith('abc', 'a');\n * // => true\n *\n * _.startsWith('abc', 'b');\n * // => false\n *\n * _.startsWith('abc', 'b', 1);\n * // => true\n */\n function startsWith(string, target, position) {\n string = toString(string);\n position = position == null\n ? 0\n : baseClamp(toInteger(position), 0, string.length);\n\n target = baseToString(target);\n return string.slice(position, position + target.length) == target;\n }\n\n /**\n * Creates a compiled template function that can interpolate data properties\n * in \"interpolate\" delimiters, HTML-escape interpolated data properties in\n * \"escape\" delimiters, and execute JavaScript in \"evaluate\" delimiters. Data\n * properties may be accessed as free variables in the template. If a setting\n * object is given, it takes precedence over `_.templateSettings` values.\n *\n * **Note:** In the development build `_.template` utilizes\n * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl)\n * for easier debugging.\n *\n * For more information on precompiling templates see\n * [lodash's custom builds documentation](https://lodash.com/custom-builds).\n *\n * For more information on Chrome extension sandboxes see\n * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval).\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category String\n * @param {string} [string=''] The template string.\n * @param {Object} [options={}] The options object.\n * @param {RegExp} [options.escape=_.templateSettings.escape]\n * The HTML \"escape\" delimiter.\n * @param {RegExp} [options.evaluate=_.templateSettings.evaluate]\n * The \"evaluate\" delimiter.\n * @param {Object} [options.imports=_.templateSettings.imports]\n * An object to import into the template as free variables.\n * @param {RegExp} [options.interpolate=_.templateSettings.interpolate]\n * The \"interpolate\" delimiter.\n * @param {string} [options.sourceURL='lodash.templateSources[n]']\n * The sourceURL of the compiled template.\n * @param {string} [options.variable='obj']\n * The data object variable name.\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Function} Returns the compiled template function.\n * @example\n *\n * // Use the \"interpolate\" delimiter to create a compiled template.\n * var compiled = _.template('hello <%= user %>!');\n * compiled({ 'user': 'fred' });\n * // => 'hello fred!'\n *\n * // Use the HTML \"escape\" delimiter to escape data property values.\n * var compiled = _.template('<%- value %>');\n * compiled({ 'value': '